*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f7f7f7;
    color:#111;
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

/* ================= NAVBAR ================= */

.navbar{
    background:#fff;
    padding:18px 0;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 2px 10px rgba(0,0,0,0.10);
}

.nav-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo img{
    width:150px;
}

.logo-text h2{
    font-size:34px;
    font-weight:800;
}

.logo-text p{
    font-size:12px;
    color:#555;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:35px;
}

.nav-links a{
    text-decoration:none;
    color:#0047b3;
    font-weight:600;
    transition:0.3s;
}

.nav-links a:hover{
    color:#ff7a2f;
}

.active{
    color:#ff7a2f !important;
    position:relative;
}

.active::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;
    width:100%;
    height:4px;
    background:#ff7a2f;
    border-radius:10px;
}

.btn{
    background:#ff7a2f;
    color:#fff;
    padding:12px 24px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
}

/* ================= HERO ================= */

.hero{
    padding:70px 0;
    background-image: url(../images/banner-1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-grid{
    display:grid;
    grid-template-columns:0.6fr;
    gap:50px;
    align-items:center;
}

.hero-text h1{
    font-size:70px;
    line-height:1.1;
    margin-bottom:20px;
    font-weight:800;
}

.blue{
    color:#004AAD;
}

.orange{
    color:#ff7a2f;
}

.hero-text p{
    font-size:20px;
    line-height:1.8;
    color:#444;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    gap:20px;
}

.primary-btn{
    background:#004AAD;
    color:#fff;
    padding:14px 28px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
}

.secondary-btn{
    border:2px solid #ff7a2f;
    color:#ff7a2f;
    padding:14px 28px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
}
.primary-btn:hover{
    background:#fff;
    color:#004AAD;
    border: 2px solid #004AAD;
}
.secondary-btn:hover{
    color:#fff;
    background-color: #ff7a2f;
}
.hero-image img{
    width:100%;
    border-radius:20px;
}

/* ================= SECTION TITLE ================= */

.section{
    padding:80px 0;
}
.solutionsandservices{
   background-color: #ececec;
}
.section.solutionsandservices .section-tag, .section.solutionsandservices .section-title {
    text-align: center;
}
.section-tag{
    color:#ff7a2f;
    font-weight:700;
    margin-bottom:15px;
    text-transform:uppercase;
}

.section-title{
    font-size:36px;
    color:#004AAD;
    margin-bottom:50px;
    font-weight:700;
}

/* ================= ABOUT ================= */

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.about-cards{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
}

.about-card{
     display:grid;
    grid-template-columns:0.2fr 1fr;
    gap:15px;
    background:#fff;
    padding:15px;
    border-radius:16px;
    box-shadow:0 5px 15px rgba(0,0,0,0.20);
}

.about-card h3{
    color:#004AAD;
    margin-bottom:10px;
}

.about-card p{
    color:#555;
    line-height:1.6;
    font-size: 14px;
}

.about-image img{
    width:100%;
}
.about-card .about-icon img{
    width: 45px;
}
/* ================= SERVICES ================= */

.services-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
}

.service-card{
    background:#fff;
    padding:25px 15px;
    border-radius:18px;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
    transition:0.3s;
    position: relative;
}

.service-card:hover{
    transform:translateY(-8px);
}

.service-card img{
    width:100%;
}
.service-card a{
    text-align: end;
    display: block;
    position: absolute;
    bottom: 0px;
    right: 8px;
}
.service-card a img{
    width: 25px;
    align-self: end;
    margin-bottom: 0;
}
.service-card h3{
    color:#004AAD;
    margin-bottom:15px;
}

.service-card ul{
    padding-left:18px;
}

.service-card li{
    margin-bottom:10px;
    color:#555;
}
.service-card li::marker{
   color: #FF7A27;
}
/* ================= INDUSTRIES ================= */

.industries-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:30px;
    text-align:center;
}

.industry{
    background:#fff;
    padding:35px 20px;
    border-radius:20px;
    box-shadow:0 5px 15px rgba(0,0,0,0.20);
    transition: 0.3s;
}
.industry:hover{
    transform: translateY(-8px);
}
.industry-icon{
    width:100px;
    height:100px;
    border-radius:50%;
    background:rgb(0, 74, 173, 0.25);
    margin:auto auto 20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
    color:#004AAD;
}

.industry h4{
    color:#004AAD;
}

/* ================= WHY US ================= */
.why-us{
    background-color: #ececec;
}
.why-us .section-title{
    font-size:42px;
    color:#ff7a2f;
    text-transform:uppercase;
}
.why-us .section-tag{
    color: #0047b3;
}
.why-grid{
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    gap:40px;
    align-items:center;
}

.why-item{
    margin-bottom:35px;
    display: grid;
    grid-template-columns: 0.2fr 1fr;
    gap: 10px;
    align-items: center;
}

.why-item h4{
    color:#004AAD;
    margin-bottom:10px;
}

.why-item p{
    color:#555;
    line-height:1.6;
}
.why-center{
    text-align: center;
}

.why-center img{
    width:80%;
}

/* ================= CONTACT ================= */

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

.contact-left h2{
    font-size:42px;
    color:#004AAD;
    margin-bottom:30px;
    text-transform:uppercase;
}

.contact-info{
    margin-bottom:25px;
}

.contact-info h4{
    color:#ff7a2f;
    margin-bottom:8px;
}

.contact-info p{
    color:#555;
}
.contact-info i{
    color: #004AAD;
}
.contact-form{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.form-group{
    margin-bottom:20px;
}

.form-group input,
.form-group textarea{
    width:100%;
    padding:16px;
    border:1px solid #ddd;
    border-radius:10px;
    font-family:'Poppins',sans-serif;
}

.form-group textarea{
    height:80px;
    resize:none;
}

.submit-btn{
    width:100%;
    padding:16px;
    background:#ff7a2f;
    border:none;
    color:#fff;
    font-size:18px;
    border-radius:10px;
    cursor:pointer;
}
.map iframe{
    border-radius: 20px;
}
/* ================= FOOTER ================= */

.footer{
    background:#004AAD;
    color:#fff;
    padding:70px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1fr 1fr 1fr 1fr;
    gap:40px;
}

.footer h3{
    margin-bottom:20px;
}
.footer h3:nth-of-type(2) {
    margin-top: 20px;
    margin-bottom:5px;
}

.footer p,
.footer li{
    color:#ddd;
    line-height:1.8;    
    transition: 0.3s;
}
.footer li a{
    color:#fff;
    text-decoration: none;
}
.links li:hover{
    transform: translateY(-4px);
}
.footer li a:hover{
    color: #ff7a2f;
}
.footer ul{
    list-style: none;
    position: relative;
}
.footer ul.links li{
    padding-left: 15px;
}
.footer ul.links li::before {
  content: ">";
  position: absolute;
  left: 0px;
  color: #fff;
  font-weight: bold;
}

.footer-bottom{
    text-align:center;
    margin-top:50px;
    border-top:2px solid rgba(255,255,255,0.2);
    padding-top:20px;
    color:#ddd;
}
 .footer ul.social-links li{
    display: inline-block;
    padding-left: 15px;
    font-size: 25px;
    transition: 0.3s;
} 
 .footer ul.social-links li:first-child{
    padding-left: 0px;
} 
 .footer ul.social-links li:hover{
    transform:scale(1.3)
}
.footer-about img{
    width: 200px;
}
.footer-bottom a{
    color: #fff;
    text-decoration: none;
}
.footer-bottom a:hover{
    color: #ff7a2f;
}
/* About US page */
  /* ================= ABOUT PAGE ================= */

        .about-hero{
            padding:70px 0 40px;
            background:linear-gradient(90deg,#ffffff 45%,#eef5ff 100%);
            padding:70px 0;
            background-image: url(../images/aboutus-banner.png);
            background-size: cover;
            background-repeat: no-repeat;
        }

        .about-hero-grid{
            display:grid;
            grid-template-columns:1fr 1fr;
            align-items:center;
            gap:40px;
        }

        .about-left small{
            color:#ff7a2f;
            font-weight:700;
            text-transform:uppercase;
            letter-spacing:1px;
            display:inline-block;
            margin-bottom:20px;
            position:relative;
            font-size: 20px;
        }

        .about-left small::after{
            content:"";
            width:70px;
            height:2px;
            background:#8bc34a;
            position:absolute;
            top:50%;
            margin-left:10px;
        }

        .about-left h1{
            font-size:48px;
            line-height:1.1;
            color:#004AAD;
            margin-bottom:25px;
            font-weight:800;
        }

        .about-left h1 span{
            color:#FF7A27;
        }

        .about-left p{
            font-size:16px;
            line-height:1.8;
            color:#444;
            margin-bottom:40px;
        }

        .feature-icons{
            display:grid;
            grid-template-columns:repeat(3,1fr);
            gap:30px;
        }

        .feature-box{
            text-align:center;
            border-right:1px solid #ddd;
            padding-right:15px;
        }

        .feature-box:last-child{
            border-right:none;
        }

        .feature-box img{
            width:55px;
            margin-bottom:15px;
        }

        .feature-box h4{
            font-size:18px;
            line-height:1.6;
            color:#004AAD;
            font-weight:600;
        }
        /* ================= STORY ================= */

        .story-section{
            padding:40px 0 80px;
        }

        .story-card{
            background:#fff;
            border-radius:30px;
            padding:50px;
            box-shadow:0 5px 30px rgba(0,0,0,0.15);
        }

        .story-grid{
            display:grid;
            grid-template-columns:1.3fr 1fr;
            gap:50px;
            align-items:center;
        }

        .story-left small{
            color:#004AAD;
            font-weight:700;
            text-transform:uppercase;
            margin-bottom:20px;
            display:inline-block;
            position:relative;
            font-size: 20px;
        }

        .story-left small::after{
            content:"";
            width:70px;
            height:2px;
            background:#8bc34a;
            position:absolute;
            top:50%;
            margin-left:10px;
        }

        .story-left p{
            font-size:18px;
            line-height:1.9;
            color:#444;
            margin-bottom:20px;
        }

        .story-stats{
            display:grid;
            grid-template-columns:repeat(4,1fr);
            gap:25px;
            text-align:center;
        }

        .stat-box{
            border-left:1px solid #ddd;
            padding-left:20px;
        }

        .stat-box:first-child{
            border-left:none;
        }

        .stat-box img{
            width:55px;
            margin-bottom:15px;
        }

        .stat-box h2{
            color:#004AAD;
            font-size: 24px;
            margin-bottom: -8px;

        }

        .stat-box p{
            font-size:13px;
            color:#222;
            line-height:1.5;
        }

        .quote-box{
            margin-top:50px;
            background:rgb(0 74 173 / 15%);
            padding:30px;
            border-radius:20px;
            display:flex;
            justify-content:space-between;
            align-items:center;
            gap:30px;
            position: relative;
        }

        .quote-box p{
            font-size:22px;
            color:#355;
            line-height:1.8;
            max-width:60%;
        }

        .quote-box img{
            width: 50%;
            position: absolute;
            right: 0px;
            bottom: -48px;
        }

       /* ================= SERVICES SHOWCASE ================= */

.services-showcase{
    background:#f5f5f5;
    padding-bottom:60px;
}

/* Banner */

.services-banner{
    background:
    linear-gradient(rgba(0,40,100,0.15),rgba(0,40,100,0.25)),
    url('../images/services-banner.png');
    background-size:cover;
    background-position:bottom;
    padding:70px 0 140px;
    border-radius:0 0 40px 40px;
}

.banner-left h1{
    font-size:48px;
    font-weight:800;
    color:#0047b3;
    margin-bottom:20px;
}

.banner-left p{
    font-size:24px;
    line-height:1.7;
    color:#333;
    max-width:500px;
}

/* Sections */

.service-section{
    background:#fff;
    padding:35px;
    border-radius:30px;
    margin-bottom:35px;
    box-shadow:0 8px 30px rgba(0,0,0,0.08);
    position:relative;
    z-index:2;
}
.service-section:first-child{
    
    margin-top:-80px;
}
.section-head{
    display:flex;
    align-items:flex-start;
    gap:20px;
    margin-bottom:30px;
}

.section-number{
    font-size:58px;
    font-weight:800;
    line-height:1;
}

.section-head h2{
    font-size:34px;
    font-weight:800;
    margin-bottom:8px;
}

.section-head p{
    color:#555;
    font-size:16px;
}

/* Theme Colors */

.green-theme .section-number,
.green-theme h2{
    color:#3d8f40;
}

.blue-theme .section-number,
.blue-theme h2{
    color:#0056d6;
}

.orange-theme .section-number,
.orange-theme h2{
    color:#ff7a2f;
}

.purple-theme .section-number,
.purple-theme h2{
    color:#7d4de0;
}

/* Grid */

.service-grid{
    display:grid;
    gap:25px;
}

.four-grid{
    grid-template-columns:repeat(4,1fr);
}

.five-grid{
    grid-template-columns:repeat(5,1fr);
}

.three-grid{
    grid-template-columns:repeat(3,1fr);
}

/* Card */

.service-box{
    background:#fff;
    border:1px solid #e6e6e6;
    border-radius:24px;
    padding:25px;
    transition:0.3s;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.service-box:hover{
    transform:translateY(-6px);
    box-shadow:0 10px 25px rgba(0,0,0,0.25);
}

.service-title{
    display:flex;
    align-items:center;
    gap:14px;
}

.service-title img{
    width:42px;
}

.service-title h3,
.service-box h3{
    font-size:16px;
    color:#0047b3;
    font-weight:700;
    margin: auto auto 18px;
    text-wrap-mode: nowrap;
}

.service-img{
    width:100%;
    margin-bottom:18px;
}

.service-box p{
    color:#444;
    line-height:1.8;
    font-size:15px;
}

/* Security Banner */

.security-banner{
    background:
    linear-gradient(rgba(0,20,70,0.9),rgba(0,20,70,0.9)),
    url('../images/security-bg.jpg');
    background-size:cover;
    background-position:center;
    border-radius:35px;
    padding:50px;
    margin-bottom:35px;
    overflow:hidden;
}

.white-text h2,
.white-text p{
    color:#fff;
}

.security-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:35px;
}

.security-card{
    border:1px solid rgba(255,255,255,0.2);
    background:rgba(255,255,255,0.08);
    border-radius:20px;
    padding:25px;
    backdrop-filter:blur(8px);
}

.security-card h4{
    color:#fff;
    margin-bottom:10px;
    font-size:22px;
}

.security-card p{
    color:#d9d9d9;
    line-height:1.8;
}
.security-left .service-title {
    display: grid;
    grid-template-columns: 1fr 3fr;
}
.security-left .service-title img {
    width: 142px;
}
.service-grid.three-grid{
   text-align: center;
}
.service-grid.three-grid .service-box img{
   width: 70%;
}

/* ================= CONTACT HERO ================= */

.contact-hero{
    padding:70px 0 180px;
    background:#f5f5f5;
    overflow:hidden;
}

.contact-hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:50px;
}

.contact-hero-left small{
    color:#ff7a2f;
    font-size:24px;
    font-weight:800;
    text-transform:uppercase;
    display:block;
    margin-bottom:20px;
}

.contact-hero-left h1{
    font-size:48px;
    line-height:1.1;
    font-weight:800;
    color:#004AAD;
    margin-bottom:30px;
}

.contact-hero-left h1 .orange{
    color:#ff7a2f;
}

.contact-hero-left h1 .green{
    color:#37a93c;
}

.contact-hero-left p{
    font-size:20px;
    line-height:1.8;
    color:#333;
    max-width:700px;
}

.contact-hero-right{
    position:relative;
}

.contact-hero-right::before{
    content:"";
    position:absolute;
    left:-100px;
    top:0;
    width:200px;
    height:100%;
    background:linear-gradient(to right,#f5f5f5,transparent);
    z-index:2;
}

.contact-hero-right img{
    width:100%;
    border-radius:0 0 0 40px;
}

/* ================= CONTACT CARD ================= */
.contact-hero{
    padding: 70px 0;
    background-image: url(../images/contact-us-banner.png);
    background-size: cover;
    background-repeat: no-repeat;
}
.contact-card-section{
    margin-top:-60px;
    position:relative;
    z-index:5;
    margin-bottom: 60px;
}

.contact-card-wrapper{
    background:#fff;
    border-radius:40px;
    padding:50px;
    box-shadow:0 10px 40px rgba(0,0,0,0.12);
    display:grid;
    grid-template-columns:1.2fr 0.8fr;
    gap:60px;
}

.message-box h2,
.reach-box h2{
    color:#ff7a2f;
    font-size:38px;
    margin-bottom:15px;
    font-weight:800;
}

.message-box p,
.reach-desc{
    color:#444;
    line-height:1.8;
    margin-bottom:35px;
    font-size:18px;
}

/* Form */

.contact-form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.contact-card-wrapper .form-group{
    margin-bottom:20px;
}

.contact-card-wrapper input,
.contact-card-wrapper select,
.contact-card-wrapper textarea{
    width:100%;
    padding:18px;
    border:1px solid #dcdcdc;
    border-radius:12px;
    font-family:'Poppins',sans-serif;
    font-size:15px;
    outline:none;
}

.contact-card-wrapper textarea{
    height:140px;
    resize:none;
}

.contact-card-wrapper select{
    background:#fff;
}

.submit-flex{
    display:flex;
    align-items:center;
    gap:30px;
    margin-top:10px;
}

.contact-submit-btn{
    background:#004AAD;
    color:#fff;
    border:none;
    padding:18px 35px;
    border-radius:10px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.contact-submit-btn:hover{
    background:#00337a;
}

.privacy-text{
    display:flex;
    align-items:center;
    gap:12px;
}

.privacy-text p{
    margin-bottom:0;
    font-size:14px;
    line-height:1.5;
}

/* Reach */

.reach-info{
    margin-top:40px;
}

.reach-item{
    display:flex;
    gap:18px;
    margin-bottom:35px;
}

.reach-icon{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#e8f0ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    flex-shrink:0;
}

.reach-item h4{
    color:#004AAD;
    margin-bottom:6px;
    font-size:18px;
}

.reach-item p{
    color:#333;
    line-height:1.7;
    margin-bottom:4px;
}

.reach-item small{
    color:#777;
}

/* ================= MAP ================= */

.map-section{
    padding:50px 0 80px;
    background:#f5f5f5;
}

.map-box iframe{
    border-radius:30px;
    box-shadow:0 10px 25px rgba(0,0,0,0.10);
}

/* ================= RESPONSIVE ================= */

@media(max-width:1200px){

    .contact-hero-left h1{
        font-size:62px;
    }

}

@media(max-width:992px){

    .contact-hero-grid,
    .contact-card-wrapper{
        grid-template-columns:1fr;
    }

    .contact-hero{
        padding-bottom:120px;
    }

}

@media(max-width:768px){

    .contact-form-grid{
        grid-template-columns:1fr;
    }

    .submit-flex{
        flex-direction:column;
        align-items:flex-start;
    }

    .contact-card-wrapper{
        padding:30px;
    }

    .contact-hero-left h1{
        font-size:46px;
    }

    .contact-hero-left p{
        font-size:18px;
    }

    .message-box h2,
    .reach-box h2{
        font-size:30px;
    }

}
/* ================= RESPONSIVE ================= */

@media(max-width:1200px){

    .four-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .five-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

@media(max-width:992px){

    .three-grid,
    .security-grid{
        grid-template-columns:1fr;
    }

    .banner-left h1{
        font-size:52px;
    }

}

@media(max-width:768px){

    .four-grid,
    .five-grid,
    .three-grid{
        grid-template-columns:1fr;
    }

    .section-head{
        flex-direction:column;
    }

    .section-number{
        font-size:46px;
    }

    .section-head h2{
        font-size:28px;
    }

    .banner-left h1{
        font-size:40px;
    }

    .banner-left p{
        font-size:18px;
    }

    .service-section,
    .security-banner{
        padding:25px;
    }

}

        /* ================= RESPONSIVE ================= */

        @media(max-width:1200px){

            .about-left h1,
            .future-left h2{
                font-size:50px;
            }

        }

        @media(max-width:992px){

            .about-hero-grid,
            .story-grid,
            .future-grid,
            .bharat-grid{
                grid-template-columns:1fr;
            }

            .story-stats{
                grid-template-columns:repeat(2,1fr);
            }

            .feature-icons{
                grid-template-columns:1fr;
            }

            .future-features{
                grid-template-columns:1fr;
            }

        }

        @media(max-width:768px){

            .about-left h1,
            .future-left h2{
                font-size:42px;
            }

            .about-left p,
            .future-left p,
            .story-left p{
                font-size:18px;
            }
            .quote-box{
                flex-direction:column;
            }

            .quote-box p{
                max-width:100%;
            }

            .bharat-right{
                grid-template-columns:1fr;
            }
            .story-card{
                padding: 20px;
            }

        }


/* ================= RESPONSIVE ================= */

@media(max-width:1200px){

    .services-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .industries-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

@media(max-width:992px){

    .hero-grid,
    .about-grid,
    .why-grid,
    .contact-grid,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .hero-text h1{
        font-size:52px;
    }

}

@media(max-width:768px){

    .nav-wrapper{
        flex-direction:column;
        gap:25px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
    }

    .about-cards{
        grid-template-columns:1fr;
    }

    .services-grid,
    .industries-grid{
        grid-template-columns:1fr;
    }

    .section-title{
        font-size:36px;
    }

    .hero-text h1{
        font-size:42px;
    }

}

/* ================= MOBILE NAVIGATION ================= */

.menu-toggle{
    display:none;
    font-size:32px;
    cursor:pointer;
    color:#004AAD;
    font-weight:700;
}

/* Mobile Button Hidden in Desktop */
.mobile-btn{
    display:none;
}

/* ================= RESPONSIVE NAV ================= */

@media(max-width:768px){

    .navbar{
        padding:15px 0;
    }

    .nav-wrapper{
        position:relative;
        flex-direction:row !important;
        justify-content:space-between;
        align-items:center;
    }

    .logo img{
        width:140px;
    }

    /* Menu Icon */
    .menu-toggle{
        display:block;
    }

    /* Hide Desktop Button */
    .desktop-btn{
        display:none;
    }

    /* Navigation */
    .nav-links{
        position:absolute;
        top:80px;
        left:0;
        width:100%;
        background:#fff;
        flex-direction:column;
        align-items:flex-start;
        gap:0;
        padding:15px 0;
        border-radius:16px;
        box-shadow:0 10px 25px rgba(0,0,0,0.10);

        /* Hide Menu */
        opacity:0;
        visibility:hidden;
        transform:translateY(-10px);
        transition:0.3s;
        z-index:999;
    }

    /* Show Menu */
    .nav-links.show{
        opacity:1;
        visibility:visible;
        transform:translateY(0);
    }

    .nav-links a{
        width:100%;
        padding:14px 22px;
        border-bottom:1px solid #eee;
    }

    .nav-links a:last-child{
        border-bottom:none;
    }

    .active::after{
        display:none;
    }

    /* Mobile Button */
    .mobile-btn{
        display:block;
        background:#ff7a2f;
        color:#fff !important;
        margin:15px 20px 0;
        border-radius:8px;
        text-align:center;
        width:calc(100% - 40px) !important;
        font-weight:600;
    }

}