



*{
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    /* line-height: 1.6; */
}
.nav-sec{
    height: 75px;
    background-color: #1A1A1A;
}
.wrapper{
    max-width: 1920px;
    margin: 0 auto;
}
.navbar-content {
    display: flex;
    justify-content: space-between;
    /* padding-top: 40px; */
    align-items: center;
    text-align: center;

}
.nav-img{
    height: auto;
    width: 100px;
}
.toggle-icon{
    display: none;
}
.navbar-navigation{
    display: flex;
    justify-content: space-evenly;
    padding-top: 15px;
}
.navbar-list{
    font-size: 16px;
    color: #FFFFFF;
    font-weight: 500;
    font-style: normal;
    padding-left: 20px;
}
.navbar-link{
    color: #FFFFFF;
    font-weight: 500;
    font-style: normal;
    text-decoration: none;
    position: relative;
}
.navbar-link:hover{
    color: #F9BF29;
}
.navbar-link:after{
    content: "";
    position: absolute;
    background-color: #F9BF29;
    height: 5px;
    width: 0px;
    left: 0;
    bottom: -8px;
    transition: 0.30s;
    margin-left: 20px;
}
.navbar-link:hover:after{
    width: 60%;
}
.nav-sec-btn {
    height: 42.5px;
    width: 148.22px;
    font-size: 15px;
    border-radius: 40px;
    border-color: #FFFFFF;
    color: #FFFFFF;
    font-weight: 500;
    font-style: normal;
    margin-left: 30px;
    transform: translateY(-10px);
    background-color: transparent;
    top: 50%;
    left: 50%;
    letter-spacing: 2px;
    overflow: hidden;
    box-sizing: border-box;
    text-align: center; /* Center text horizontally */
    line-height: 42.5px; /* Vertically center text */
}

.nav-sec-btn:before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    left: 0;
    bottom: 0;
    border-style: solid;
    border-color: transparent;
    border-width: 80px 100px; /* Adjust the size as needed */
    z-index: -1;
    transform: rotate(360deg);
    transition: 1s;
    transform-origin: left;
}
.nav-sec-btn-link{
    color: #FFFFFF;
}
.nav-sec-btn:hover:before {
    border-color: #1653DF;
    transform: rotate(60deg); /* Rotate on hover */
}

.nav-sec-btn:hover {
    border-color: #1653DF; /* Border color change on hover */
}
.sec-1{
    background: rgba(0, 0, 0, 0.40) url("../main-img/banner/blog.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: darken;
    background-size: 100% 100%;
    height: 80vh;
}
.sec-1-content{
    padding-top: 80px;
}
.sec-1-content-head{
    font-size: 14px;
    text-align: center;
    color: #FFFFFF;
}
.sec-1-content-sub-head{
    font-size: 56px;
    color: #FFFFFF;
    padding-top: 15px;
    text-align: center;
}

.sec-9{
    height: 208.2px;
    background-image: url("../main-img/22.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding-top: 100px;
}
.sec-9-content{
    padding-top: 60px;
}
.foot-sec{
    height: 700px;
    background-color: #050a13;
}
.foot-content{
    padding-top: 60px;
    display: flex;
    justify-content: space-evenly;
}
.logo-1{
    height: 74px;
    width: 148px;
}
.social-media{
    display: flex;
    justify-content: space-evenly;
}
.fb{
    height: 60px;
    width: 60px;
    border-radius: 100%;
    color: #FFFFFF;
    background-color: #282828;
    margin-left: 20px;
}
.fb:hover{
    background-color: #EB0E47;
}
.fb-1{
    padding-left: 23px;
    padding-top: 20px;
    height: 120px;
    width: 120px;
}
.foot-cnt-5{
    display: flex;
    justify-content: space-evenly;
    padding-top: 100px;
}
.foot-head{
    font-size: 26px;
    color: #FFFFFF;
    font-family: "Poppins", serif;
}
.foot-para{
    color: #FFFFFF;
    font-size: 16px;
    padding-top: 20px;
    height: 112px;
    width: 284px;
}
.foot-list{
    color: #FFFFFF;
    padding-top: 20px;
}
.foot-link{
    font-size: 16px;
    font-family: "Poppins", serif;
    color: #FFFFFF;
    padding-top: 20px;
}

.foot-link:hover{
    color: #F5B81E;
}





@media(max-width:575.98px){
    .nav-sec{
        height: 75px;
        background-color: #1A1A1A;
    }
    .wrapper{
        max-width: 100%;
        margin: 0 auto;
    }
    .navbar-content{
        flex-direction: column;
        align-items: center;
        padding-top: 20px;
        padding-bottom: 30px;
    }
    .nav-img{
        height: 60px;
        width: 80px;
    }
    .navbar-navigation{
        flex-direction: column;
        align-items: center;
        padding-top: 15px;
    }
    .navbar-list{
        font-size: 13px;
        color: #FFFFFF;
        font-weight: 500;
        font-style: normal;
        padding-left: 10px;
        padding-top: 15px;
    }
    .navbar-link{
        color: #FFFFFF;
        font-weight: 500;
        font-style: normal;
        text-decoration: none;
        position: relative;
    }
    .navbar-link:hover{
        color: #F9BF29;
    }
    .navbar-link:after{
        content: "";
        position: absolute;
        background-color: #F9BF29;
        height: 5px;
        width: 0px;
        left: 0;
        bottom: -8px;
        transition: 0.30s;
        margin-left: 20px;
    }
    .navbar-link:hover:after{
        width: 60%;
    }
    .nav-sec-btn {
        height: 42.5px;
        width: 150px;
        font-size: 15px;
        border-radius: 40px;
        border-color: #FFFFFF;
        margin-top: 20px;
        color: #FFFFFF;
        font-weight: 500;
        font-style: normal;
        margin-left: 30px;
        transform: translateY(0px);
        background-color: transparent;
        top: 50%;
        left: 50%;
        letter-spacing: 2px;
        overflow: hidden;
        box-sizing: border-box;
        text-align: center; /* Center text horizontally */
        line-height: 42.5px; /* Vertically center text */
    }
    
    .nav-sec-btn:before {
        content: '';
        position: absolute;
        width: 0;
        height: 0;
        left: 0;
        bottom: 0;
        border-style: solid;
        border-color: transparent;
        border-width: 80px 100px; /* Adjust the size as needed */
        z-index: -1;
        transform: rotate(360deg);
        transition: 1s;
        transform-origin: left;
    }
    .nav-sec-btn-link{
        color: #FFFFFF;
    }
    .nav-sec-btn:hover:before {
        border-color: #1653DF;
        transform: rotate(60deg); /* Rotate on hover */
    }
    
    .nav-sec-btn:hover {
        border-color: #1653DF; /* Border color change on hover */
    }
    .toggle-icon{
        position: absolute;
        top: 40px;
        right: 40px;
        display: block;
        color: #FFFFFF;
    }
    .sec-1{
        height: auto;
        background-image: url("../main-img/banner/blog.png");
        background-repeat: no-repeat;
        background-size: 100% 100%;
    }
    .sec-1-content{
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .sec-1-content-head{
        font-size: 13px;
        text-align: center;
        color: #FFFFFF;
    }
    .sec-1-content-sub-head{
        font-size: 22px;
        color: #FFFFFF;
        padding-top: 15px;
        text-align: center;
    }
   
    .sec-9{
        height: auto;
        background-image: url("../main-img/22.png");
        background-repeat: no-repeat;
        background-size: 100% 100%;
        padding-top: 60px;
    }
    .sec-9-content{
        padding-top: 30px;
    }
    .foot-sec{
        height: auto;
        background-color: #1653DF;
    }
    .foot-content{
        padding-top: 30px;
        padding-bottom: 30px;
        flex-direction: column;
        align-items: center;
    }
    .logo-1{
        height: 74px;
        width: 100px;
    }
    .social-media{
        display: flex;
        justify-content: space-evenly;
        padding-top: 30px;
    }
    .fb{
        height: 40px;
        width: 40px;
        border-radius: 100%;
        color: #FFFFFF;
        background-color: #282828;
        margin-left: 20px;
    }
    .fb:hover{
        background-color: #EB0E47;
    }
    .fb-1{
        padding-left: 13px;
        padding-top: 10px;
        height: 80px;
        width: 80px;
    }
    .foot-cnt-5{
        flex-direction: column;
        align-items: center;
        padding-top: 30px;
    }
    .foot-head{
        font-size: 18px;
        color: #FFFFFF;
        font-family: "Poppins", serif;
        text-align: center;
        padding-top: 30px;
    }
    .foot-para{
        color: #FFFFFF;
        font-size: 13px;
        padding-top: 20px;
        height: 50px;
        width: 250px;
        text-align: center;
    }
    .foot-list{
        color: #FFFFFF;
        padding-top: 20px;
        text-align: center;
    }
    .foot-link{
        font-size: 13px;
        font-family: "Poppins", serif;
        color: #FFFFFF;
        padding-top: 20px;
        text-align: center;
    }
    
    .foot-link:hover{
        color: #F5B81E;
    }
}
@media(min-width:576px) and (max-width:767.98px){
    .nav-sec{
        height: auto;
        background-color: #1A1A1A;
    }
    .wrapper{
        max-width: 100%;
        margin: 0 auto;
    }
    .navbar-content{
        flex-direction: column;
        align-items: center;
        padding-top: 20px;
        padding-bottom: 30px;
    }
    .nav-img{
        height: 60px;
        width: 80px;
    }
    .navbar-navigation{
        flex-direction: column;
        align-items: center;
        padding-top: 15px;
    }
    .navbar-list{
        font-size: 13px;
        color: #FFFFFF;
        font-weight: 500;
        font-style: normal;
        padding-left: 10px;
        padding-top: 15px;
    }
    .navbar-link{
        color: #FFFFFF;
        font-weight: 500;
        font-style: normal;
        text-decoration: none;
        position: relative;
    }
    .navbar-link:hover{
        color: #F9BF29;
    }
    .navbar-link:after{
        content: "";
        position: absolute;
        background-color: #F9BF29;
        height: 5px;
        width: 0px;
        left: 0;
        bottom: -8px;
        transition: 0.30s;
        margin-left: 20px;
    }
    .navbar-link:hover:after{
        width: 60%;
    }
    .nav-sec-btn {
        height: 42.5px;
        width: 150px;
        font-size: 15px;
        border-radius: 40px;
        border-color: #FFFFFF;
        margin-top: 20px;
        color: #FFFFFF;
        font-weight: 500;
        font-style: normal;
        margin-left: 30px;
        transform: translateY(0px);
        background-color: transparent;
        top: 50%;
        left: 50%;
        letter-spacing: 2px;
        overflow: hidden;
        box-sizing: border-box;
        text-align: center; /* Center text horizontally */
        line-height: 42.5px; /* Vertically center text */
    }
    
    .nav-sec-btn:before {
        content: '';
        position: absolute;
        width: 0;
        height: 0;
        left: 0;
        bottom: 0;
        border-style: solid;
        border-color: transparent;
        border-width: 80px 100px; /* Adjust the size as needed */
        z-index: -1;
        transform: rotate(360deg);
        transition: 1s;
        transform-origin: left;
    }
    .nav-sec-btn-link{
        color: #FFFFFF;
    }
    .nav-sec-btn:hover:before {
        border-color: #1653DF;
        transform: rotate(60deg); /* Rotate on hover */
    }
    
    .nav-sec-btn:hover {
        border-color: #1653DF; /* Border color change on hover */
    }
    .toggle-icon{
        position: absolute;
        top: 40px;
        right: 40px;
        display: block;
        color: #FFFFFF;
    }
    .sec-1{
        height: auto;
        background-image: url("../main-img/banner/blog.png");
        background-repeat: no-repeat;
        background-size: 100% 100%;
    }
    .sec-1-content{
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .sec-1-content-head{
        font-size: 13px;
        text-align: center;
        color: #FFFFFF;
    }
    .sec-1-content-sub-head{
        font-size: 22px;
        color: #FFFFFF;
        padding-top: 15px;
        text-align: center;
    }
    
    .sec-9{
        height: auto;
        background-image: url("../main-img/22.png");
        background-repeat: no-repeat;
        background-size: 100% 100%;
        padding-top: 60px;
    }
    .sec-9-content{
        padding-top: 30px;
    }
    .foot-sec{
        height: auto;
        background-color: #1653DF;
    }
    .foot-content{
        padding-top: 30px;
        padding-bottom: 30px;
        flex-direction: column;
        align-items: center;
    }
    .logo-1{
        height: 74px;
        width: 100px;
    }
    .social-media{
        display: flex;
        justify-content: space-evenly;
        padding-top: 30px;
    }
    .fb{
        height: 40px;
        width: 40px;
        border-radius: 100%;
        color: #FFFFFF;
        background-color: #282828;
        margin-left: 20px;
    }
    .fb:hover{
        background-color: #EB0E47;
    }
    .fb-1{
        padding-left: 13px;
        padding-top: 10px;
        height: 80px;
        width: 80px;
    }
    .foot-cnt-5{
        flex-direction: column;
        align-items: center;
        padding-top: 30px;
    }
    .foot-head{
        font-size: 18px;
        color: #FFFFFF;
        font-family: "Poppins", serif;
        text-align: center;
        padding-top: 30px;
    }
    .foot-para{
        color: #FFFFFF;
        font-size: 13px;
        padding-top: 20px;
        height: 50px;
        width: 250px;
        text-align: center;
    }
    .foot-list{
        color: #FFFFFF;
        padding-top: 20px;
        text-align: center;
    }
    .foot-link{
        font-size: 13px;
        font-family: "Poppins", serif;
        color: #FFFFFF;
        padding-top: 20px;
        text-align: center;
    }
   
    .foot-link:hover{
        color: #F5B81E;
    }
}
@media(min-width:768px) and (max-width:991.98px){
    .nav-sec{
        height: auto;
        background-color: #1A1A1A;
    }
    .wrapper{
        max-width: 100%;
        margin: 0 auto;
    }
    .navbar-content{
        flex-direction: column;
        align-items: center;
        padding-top: 20px;
        padding-bottom: 30px;
    }
    .nav-img{
        height: 60px;
        width: 80px;
    }
    .navbar-navigation{
        flex-direction: column;
        align-items: center;
        padding-top: 15px;
    }
    .navbar-list{
        font-size: 13px;
        color: #FFFFFF;
        font-weight: 500;
        font-style: normal;
        padding-left: 10px;
        padding-top: 15px;
    }
    .navbar-link{
        color: #FFFFFF;
        font-weight: 500;
        font-style: normal;
        text-decoration: none;
        position: relative;
    }
    .navbar-link:hover{
        color: #F9BF29;
    }
    .navbar-link:after{
        content: "";
        position: absolute;
        background-color: #F9BF29;
        height: 5px;
        width: 0px;
        left: 0;
        bottom: -8px;
        transition: 0.30s;
        margin-left: 20px;
    }
    .navbar-link:hover:after{
        width: 60%;
    }
    .nav-sec-btn {
        height: 42.5px;
        width: 150px;
        font-size: 15px;
        border-radius: 40px;
        border-color: #FFFFFF;
        margin-top: 20px;
        color: #FFFFFF;
        font-weight: 500;
        font-style: normal;
        margin-left: 30px;
        transform: translateY(0px);
        background-color: transparent;
        top: 50%;
        left: 50%;
        letter-spacing: 2px;
        overflow: hidden;
        box-sizing: border-box;
        text-align: center; /* Center text horizontally */
        line-height: 42.5px; /* Vertically center text */
    }
    
    .nav-sec-btn:before {
        content: '';
        position: absolute;
        width: 0;
        height: 0;
        left: 0;
        bottom: 0;
        border-style: solid;
        border-color: transparent;
        border-width: 80px 100px; /* Adjust the size as needed */
        z-index: -1;
        transform: rotate(360deg);
        transition: 1s;
        transform-origin: left;
    }
    .nav-sec-btn-link{
        color: #FFFFFF;
    }
    .nav-sec-btn:hover:before {
        border-color: #1653DF;
        transform: rotate(60deg); /* Rotate on hover */
    }
    
    .nav-sec-btn:hover {
        border-color: #1653DF; /* Border color change on hover */
    }
    .toggle-icon{
        position: absolute;
        top: 40px;
        right: 40px;
        display: block;
        color: #FFFFFF;
    }
    .sec-1{
        height: auto;
        background-image: url("../main-img/banner/blog.png");
        background-repeat: no-repeat;
        background-size: 100% 100%;
    }
    .sec-1-content{
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .sec-1-content-head{
        font-size: 13px;
        text-align: center;
        color: #FFFFFF;
    }
    .sec-1-content-sub-head{
        font-size: 22px;
        color: #FFFFFF;
        padding-top: 15px;
        text-align: center;
    }
    
    .sec-9{
        height: auto;
        background-image: url("../main-img/22.png");
        background-repeat: no-repeat;
        background-size: 100% 100%;
        padding-top: 60px;
    }
    .sec-9-content{
        padding-top: 30px;
    }
    .foot-sec{
        height: auto;
        background-color: #1653DF;
    }
    .foot-content{
        padding-top: 30px;
        padding-bottom: 30px;
        flex-direction: column;
        align-items: center;
    }
    .logo-1{
        height: 74px;
        width: 100px;
    }
    .social-media{
        display: flex;
        justify-content: space-evenly;
        padding-top: 30px;
    }
    .fb{
        height: 40px;
        width: 40px;
        border-radius: 100%;
        color: #FFFFFF;
        background-color: #282828;
        margin-left: 20px;
    }
    .fb:hover{
        background-color: #EB0E47;
    }
    .fb-1{
        padding-left: 13px;
        padding-top: 10px;
        height: 80px;
        width: 80px;
    }
    .foot-cnt-5{
        flex-direction: column;
        align-items: center;
        padding-top: 30px;
    }
    .foot-head{
        font-size: 18px;
        color: #FFFFFF;
        font-family: "Poppins", serif;
        text-align: center;
        padding-top: 30px;
    }
    .foot-para{
        color: #FFFFFF;
        font-size: 13px;
        padding-top: 20px;
        height: 50px;
        width: 250px;
        text-align: center;
    }
    .foot-list{
        color: #FFFFFF;
        padding-top: 20px;
        text-align: center;
    }
    .foot-link{
        font-size: 13px;
        font-family: "Poppins", serif;
        color: #FFFFFF;
        padding-top: 20px;
        text-align: center;
    }
   
    .foot-link:hover{
        color: #F5B81E;
    }
}


.blog-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-family: "DM Serif Display", serif;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
}

.featured-post {
    margin-bottom: 50px;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.blog-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.blog-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.blog-post {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-post:hover .blog-image img {
    transform: scale(1.05);
}

.blog-post:hover .image-overlay {
    opacity: 1;
}

.blog-content {
    padding: 30px;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.post-category {
    color: #1653DF;
    font-weight: 600;
    font-size: 14px;
}

.post-date {
    color: #666;
    font-size: 14px;
}

.blog-content h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-family: "DM Serif Display", serif;
}

.blog-content h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-family: "DM Serif Display", serif;
}

.blog-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.read-more {
    color: #1653DF;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.read-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: #34495e;
}

.read-more:hover i {
    transform: translateX(5px);
}

.post-stats {
    display: flex;
    gap: 15px;
}

.post-stats span {
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.post-stats i {
    margin-right: 5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .blog-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 36px;
    }

    .blog-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 32px;
    }

    .blog-content h2 {
        font-size: 24px;
    }

    .blog-content h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .blog-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .blog-content {
        padding: 20px;
    }

    .post-footer {
        flex-direction: column;
        gap: 15px;
    }

    .post-stats {
        width: 100%;
        justify-content: space-between;
    }
}



/* Contact Info Section Styles */
.foot-cnt-2 {
    margin: 20px 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-item i {
    color: #e7ecf1; /* Blue icon color */
    margin-right: 15px;
    font-size: 18px;
    margin-top: 3px;
}

.foot-para-1 {
    margin: 0;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

.foot-head {
    color: #fffcfc;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.foot-head:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #007bff;
}


.contact-item p {
    color: white;
}



/* Hamburger Icon */
.toggle-icon {
    font-size: 28px;
    color: #ffffff;
    cursor: pointer;
    display: none; /* Initially hidden */
    transition: transform 0.3s ease, color 0.3s ease; /* Smooth icon transition */
    z-index: 1000;
    position: absolute;
    right: 20px;
    top: 25px;
}

.toggle-icon:hover {
    color: #ffffff;
    transform: rotate(90deg); /* Rotate the icon on hover */
}

/* Navbar Responsive styles */
@media (max-width: 768px) {
    .navbar-navigation {
        display: flex;
        flex-direction: column;
        background-color: #0f0f0f;
        position: absolute;
        top: 70px;
        right: -300px; /* Initially positioned outside of screen */
        width: 100%;
        text-align: center;
        padding: 20px 0;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        opacity: 0;
    }

    .navbar-navigation.show-nav {
        transform: translateX(-300px); /* Slide in from right */
        opacity: 1;
    }

    .toggle-icon {
        display: block; /* Show the hamburger icon on mobile */
    }
}

/* Transition effect on navbar */
.navbar-navigation {
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
