*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,
body{
    width:100%;
    overflow-x:hidden;
}
.site-header{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:#fff;
        position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 1000;
    background: #fff;
    padding: 10px 5%;
    border-bottom: 1px solid #eee;
}

.logo{
    display:flex;
    align-items:center;
    text-decoration:none;
    gap:8px;
    flex-shrink:0;
}

.logo-icon{
    font-size:34px;
    color:#011F7B;
}

.logo-name{
    height:36px;
    width:auto;
    display:block;
}




/* ===========================
   NAVIGATION
=========================== */
.main-nav{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:22px;
    flex:1;
}

.main-nav a{
    text-decoration:none;
    color:#000;
    font-family:general;
    font-size:15px;
    font-weight:600;
    padding:10px 14px;
    border-radius:10px;
    transition:.3s;
}

.main-nav a:hover{
    background:#f5a623;
}

/* ===========================
   RIGHT SIDE
=========================== */

.header-actions{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    flex-shrink:0;
}

.login-icon{
    width:46px;
    height:46px;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    color:#000;
    border-radius:50%;
    transition:.3s;
}

.login-icon:hover{
    background:#f3f3f3;
}

.login-icon i{
    font-size:28px;
}

/* Hide menu button on desktop */
.menu-toggle{
    display:none;
}
@media (max-width:768px){

.menu-toggle{
    display:block;
    background:none;
    border:none;
    font-size:28px;
    cursor:pointer;
    z-index:1001;
}
.login-icon{
    margin-right: -70px;
}

.main-nav{
    position:absolute;
    top:75px;
    left:0;
    width:100%;
    background:#fff;
    display:none;
    flex-direction:column;
    align-items:center;
    gap:20px;
    padding:25px 0;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.main-nav.active{
    display:flex;
}

}



@font-face {
    font-family: "clash";
    src: url("fonts/clash.otf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-size: medium;
}

@font-face {
    font-family: "aurora";
    src: url("fonts/aurora.otf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "general";
    src: url("fonts/general.otf") format("truetype");
    font-weight: 400;
    font-style: normal;

}

@font-face {
    font-family: "neue";
    src: url("fonts/neue.otf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "ubuntu";
    src: url("fonts/ubuntu.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}

body{
    padding-top: 60px; /* Adjust to your header height */
}

/*==========================
CONTAINER
===========================*/

.container{

width:min(1180px,92%);
margin:auto;

}

/*==========================
ABOUT HERO
===========================*/

.about-hero{
background-color: #09090b;
padding:60px 0 110px;

}

.about-grid{

display:grid;
grid-template-columns:1.05fr 1fr;
align-items:start;
gap:80px;

}

/*==========================
LEFT
===========================*/

.about-badge{
    font-family: general;
   display:inline-flex;
    width:fit-content;
    padding:8px 18px;
    margin-bottom:20px;
    border:1px solid rgba(255,255,255,.12);
    border-radius:50px;
    background:rgba(255,255,255,.05);
    color:#f5a623;
    font-size:13px;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
}

.about-content h1{

font-family:clash;

font-size:36px;

line-height:1.05;

font-weight:600;

background: linear-gradient(90deg,#06b6d4, #2563eb, #011f7b);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
color:transparent;

margin-bottom:20px;

}



.about-content p{
    font-family: ubuntu;
max-width:560px;

font-size:17px;
letter-spacing: 0px;
line-height:1.5;

color:#fff;

margin-bottom:46px;

}

/*==========================
FEATURES
===========================*/

.feature-list{

display:flex;

flex-direction:column;

gap:22px;

}

.feature-item{

display:flex;

align-items:flex-start;

gap:18px;

}

.feature-icon{

width:56px;

height:56px;

border-radius:16px;

background:linear-gradient(180deg,#f5a623,#fe7f42);

display:flex;

justify-content:center;

align-items:center;

font-size:24px;

color:#fff;


}

.feature-item h4{
font-family: general;
font-size:18px;

font-weight:600;

margin-bottom:8px;

color:white;

}

.feature-item span{
font-family: ubuntu;
display:block;

font-size:14px;

line-height:1.7;

color:#ffffff;

}

/*==========================
IMAGE
===========================*/

.about-image{

position:relative;

display:flex;

justify-content:center;

align-items:center;

}

.about-image img{

width:100%;

max-width:540px;

height:600px;

object-fit:cover;

border-radius:38px;

box-shadow:

0 35px 70px rgba(0,0,0,.12);

}



/*=========================================
TABLET
=========================================*/

@media (max-width:1024px){

.about-hero{
padding:80px 0;
}

.about-grid{

grid-template-columns:1fr;
gap:60px;

}

.about-content{

text-align:center;

}

.about-content p{

margin:auto;
margin-top:30px;
margin-bottom:45px;

}

.feature-list{

max-width:560px;
margin:auto;

}

.about-image{

order:-1;

}

.about-image img{

max-width:620px;
height:auto;

}
}

/*=========================================
MOBILE
=========================================*/

@media (max-width:768px){

.about-hero{

padding:60px 0;

}

.container{

width:92%;

}

.about-grid{

display:flex;
flex-direction:column;
gap:45px;

}

/* IMAGE FIRST */

.about-image{

order:-1;

width:100%;

}

.about-image img{

width:90%;
height:420px;
object-fit:cover;

border-radius:28px;

}


/* TEXT */

.about-content{

text-align:left;

}

.about-badge{

font-size:11px;
padding:7px 15px;
margin-bottom:18px;

}

.about-content h1{

font-size:42px;
line-height:1.15;

margin-bottom:22px;

}

.about-content p{

font-size:15px;
line-height:1.8;

margin-bottom:35px;

}

/* FEATURES */

.feature-list{

gap:22px;

}

.feature-item{

gap:15px;

}

.feature-icon{

width:50px;
height:50px;

font-size:20px;

border-radius:14px;

}

.feature-item h4{

font-size:17px;

margin-bottom:6px;

}

.feature-item span{

font-size:14px;

line-height:1.6;

}

}

/*=========================================
SMALL PHONES
=========================================*/

@media (max-width:480px){

.about-content h1{

font-size:34px;

}

.about-image img{

height:340px;

border-radius:24px;

}


.feature-icon{

width:46px;
height:46px;

font-size:18px;

}

.feature-item h4{

font-size:15px;

}

.feature-item span{

font-size:13px;

}

.about-content p{

font-size:14px;

}

}

/* ==========================
   COMPANY OVERVIEW
========================== */

.company-overview{
    width:100%;
    padding:70px 4%;
    background:#09090b;
    color:#fff;
    margin-top: 2px;
}

.company-container{
    max-width:1400px;
    margin:auto;
}

.company-grid{
    display:grid;
    grid-template-columns:1fr 1.1fr;
    align-items:center;
    gap:80px;
}

.company-image{
    display:flex;
    justify-content:center;
    align-items:center;
}

.company-image img{
    width:100%;
    max-width:560px;
    border-radius: 36px;
    height:auto;
    object-fit:contain;
}

.company-content{
    display:flex;
    flex-direction:column;
    justify-content:center;
}


.company-content h1{
  
    font-size:32px;
    line-height:1.1;
    font-weight:700;
    margin-bottom:25px;
    font-family:ubuntu;
}

.company-content h1 span{
    font-family: ubuntu;
    font-size: 18px;
    color:#f5a623;
}

.company-content p{
    font-family: ubuntu;
    font-size:16px;
    line-height:1.5;
    color:#bdbdbd;
    max-width:700px;
}


/* ==========================
      TABLET
========================== */

@media (max-width:1024px){

.company-grid{
    gap:50px;
}

.company-content h1{
    font-size:46px;
}

.company-content p{
    font-size:16px;
}

}


/* ==========================
        MOBILE
========================== */

@media (max-width:768px){

.company-overview{
    padding:70px 7%;
}

.company-grid{
    grid-template-columns:1fr;
    gap:45px;
}

.company-image{
    order:1;
}

.company-content{
    order:2;
    text-align:center;
    align-items:center;
}

.company-image img{
    width:100%;
    max-width:340px;
}

.company-badge{
    margin-bottom:16px;
    font-size:11px;
    letter-spacing:2px;
    padding:7px 16px;
}

.company-content h1{
    font-size:30px;
    margin-bottom:18px;
}

.company-content p{
    font-size:15px;
    line-height:1.8;
    max-width:100%;
    color:#cfcfcf;
}

}

.services{
    margin-top: 1px;
    background-color: #09090b;
    padding:80px 2%;
    margin-bottom: 1px;
}

.container{
    max-width:1400px;
    background-color: #09090b;
    margin:auto;
}

.service-heading h2{
    font-family: ubuntu;
    font-size:40px;
    font-weight:900;
    color:#fff
}



.services-grid{
    margin-top:55px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

.service-card{
    text-align:center;
}

.service-card img{
    width:100%;
    height:290px;
    object-fit:cover;
    display:block;
    transition:.4s;
    border-radius: 18px;
}

.service-card:hover img{
    transform:translateY(-6px);
}

.service-card h3{
    font-family: general;
    margin-top:22px;
    font-size:24px;
    font-weight:700;
    color:#fff;
}

.service-card p{
    font-family: ubuntu;
    margin-top:10px;
    font-size:15px;
    color:#666;
}

@media(max-width:768px){

.services{
    padding:55px 22px;
}

.service-heading{
    text-align:center;
}

.service-heading h2{
    font-size:36px;
}



.services-grid{
    grid-template-columns:1fr;
    gap:45px;
    margin-top:40px;
}

.service-card{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.service-card img{
    width:100%;
    max-width:350PX;
    height:270px;
    border-radius:18PX;
}

.service-card h3{
    margin-top:18px;
    font-size:17px;
}

.service-card p{
    margin-top:8px;
    font-size:13px;
}

}


/* TEAM SECTION */

.team-section{
    background: #09090b;;
    padding:10px 7%;
}

.team-container{
    max-width:1400px;
    margin:auto;
}

.team-title{
    margin-top: 80px;
    font-family: clash;
    text-align:center;
    font-size:48px;
    color:#fff;
    margin-bottom:90px;
    font-weight:700;
}

.team-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.team-card{
margin-top: 20px;
    position:relative;
    background:#0b1220;
    border-radius:22px;
    text-align:center;
    overflow:visible;
    padding-top:105px;
    transition:.35s;
    box-shadow:0 15px 40px rgba(0,0,0,.25);
    margin-bottom: 80px;

}


.team-img{

    position:absolute;
    top:-70px;
    left:50%;
    transform:translateX(-50%);

    width:165px;
    height:165px;

    border-radius:50%;
    background:#ffff;
    padding:6px;

    box-shadow:0 8px 20px rgba(0,0,0,.2);

}

.team-img img{

    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:50%;

}

.team-content{

    padding:0 30px 30px;

}

.team-content h3{
font-family: general;
    font-size:30px;
    
    margin-bottom:8px;
    color:#fffefe;

}

.designation{
font-family: clash;
    display:block;
    color:#FDBB2D;
    font-size:20px;
    font-weight:700;
    margin-bottom:25px;

}

.team-content p{
font-family: aurora;
    color:#ffffff;
    line-height:1.8;
    font-size:16px;

}

/* RESPONSIVE */

@media(max-width:992px){

.team-title{

font-size:40px;

}

}

@media(max-width:768px){

.team-section{

padding:70px 20px;

}

.team-title{

font-size:34px;
margin-bottom:70px;

}

.team-grid{

gap:90px;

}

}
/* =========================
      PARTNERS
========================= */

.partners{
    margin-top: 1px;
    width:100%;
    background:#09090b;
    padding:80px 2%;
    
}

.partners p{

    text-align:center;

    font-family:clash;

    color:#fff;

    font-size:34px;

    margin-bottom:50px;

    letter-spacing:1px;

}
.logos{

    display:grid;

    grid-template-columns:repeat(6,minmax(100px,1fr));

    gap:35px;

    justify-items:center;

    align-items:center;

}
.logos img{

    width:100%;

    max-width:130px;

    height:auto;

    border-radius:20px;

    transition:.3s ease;

}

.logos img:hover{

    transform:scale(1.05);

}

/*==========================
        PARTNERS
==========================*/

@media(max-width:992px){

.logos{

grid-template-columns:repeat(4,1fr);

gap:30px;

}

}

@media(max-width:768px){

.partners{

padding:70px 6%;

}

.logos{

grid-template-columns:repeat(3,1fr);

gap:25px;

}

.partners p{

font-size:20px;

}

}

@media(max-width:480px){

.partners{

padding:60px 20px;

}

.logos{

grid-template-columns:repeat(2,1fr);

gap:20px;

}

.logos img{

max-width:100px;

}

.partners p{

font-size:22px;

}
}


/* ================= FAQ ================= */

.faq-section{
    max-width:1200px;
    margin:120px auto;
    padding:0 10px;
}

.faq-header{
    text-align:center;
    margin-bottom:30px;
}

.faq-badge{
    font-family: general;
    display:inline-block;
    padding:8px 18px;
    border:1px solid rgba(255,255,255,.15);
    border-radius:50px;
    background:#171717;
    color:white;
    font-size:16px;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom: 10px;
}

.faq-header h2{
    margin:22px 0 16px;
    font-size:3rem;
    font-weight:600px;
    color:black;
    font-family: clash;
}

.faq-header p{
    max-width:620px;
    margin:auto;
    color:black;
    font-size:1.05rem;
    font-weight: 700px;
    line-height:1.8;
    font-family: Arial, sans-serif;
}

.faq-container{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.faq-item{
    background:#0b1220;
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    overflow:hidden;
    transition:.35s;
}

.faq-item:hover{
    border-color:rgba(255,255,255,.18);
}

.faq-item summary{
    list-style:none;
    cursor:pointer;
    padding:10px 18px;
    color:#fff;
    font-size:1.1rem;
    font-weight:400;
    letter-spacing: 1px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-family: clash;
}

.faq-item summary::-webkit-details-marker{
    display:none;
}

.faq-item summary::after{
    content:"+";
    font-size:1.7rem;
    color:white;
    transition:.3s;
}

.faq-item[open] summary::after{
    content:"−";
    color:#fff;
}

.faq-item p{
    font-family: arial;
    padding:0 30px 20px;
    color:white;
    line-height:1.8;
    font-size:.98rem;

}

@media(max-width:768px){

.faq-section{
    padding:0 20px;
}

.faq-header h2{
    font-size:2.2rem;
}

.faq-item summary{
    font-size:1rem;
    padding:20px;
}

.faq-item p{
    padding:0 20px 20px;
}
}


.footer{
    width:100%;
    background:#09090b;
    color:#fff;
    padding:80px 5% 40px;
    font-family:general;
}
.footer-p{
    margin-top: 2px;
    font-size: 12px;
}

.footer-top{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:80px;

    flex-wrap:wrap;

}

.footer-info{

    flex:1;

    min-width:280px;

    max-width:480px;

}

.footer-info h2{

    font-size:34px;

    margin-bottom:20px;

}

.footer-info p{

    line-height:1.8;

    color:#b7c0d4;

}
.footer-links{

    display:flex;

    flex:1;

    justify-content:space-between;

    gap:50px;

    flex-wrap:wrap;

}

.footer-links div{

    min-width:150px;

}

.footer-links h3{

    font-size:20px;

    margin-bottom:18px;

}

.footer-links a{

    display:block;

    margin-bottom:14px;

    text-decoration:none;

    color:#b7c0d4;

    transition:.3s;

    font-size:15px;

}

.footer-links a:hover{

    color:#fff;

}
.footer hr{
    border:none;
    border-top:1px solid rgba(255,255,255,.12);
    margin:60px 0 35px;
}
.social-icons{

    display:flex;

    gap:15px;

    justify-content:flex-start;

    flex-wrap:wrap;

    margin-top:35px;

}

.social-icons a{

    width:48px;

    height:48px;

    border:1px solid rgba(255,255,255,.15);

    border-radius:12px;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:20px;

    transition:.3s;

    text-decoration:none;

}

.social-icons a:hover{

    background:#fff;

    color:#000;

}
.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;

    margin-top:30px;

}

.footer-bottom p{

    color:#b7c0d4;

}
.footer-policy{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.footer-policy a{

    text-decoration:none;

    color:#b7c0d4;

    transition:.3s;

}

.footer-policy a:hover{

    color:#fff;

}
/*=====================================
        FOOTER RESPONSIVE
======================================*/

@media(max-width:992px){

.footer-top{

flex-direction:column;

gap:60px;

}

.footer-links{

width:100%;

justify-content:space-between;

}

.footer-bottom{

justify-content:center;

text-align:center;

}

.footer-policy{

justify-content:center;

}

.social-icons{

justify-content:center;

}

}

@media(max-width:768px){

.footer{

padding:70px 6% 35px;

}

.footer-info{

text-align:center;

max-width:100%;

}

.footer-links{

flex-direction:column;

gap:35px;

text-align:center;

}

.footer-links div{

width:100%;

}

.social-icons{

justify-content:center;

}

.footer-bottom{

flex-direction:column;

}

}

@media(max-width:480px){

.footer{

padding:60px 20px 30px;

}

.footer-info h2{

font-size:28px;

}

.footer-info p{

font-size:15px;

}

.footer-links h3{

font-size:18px;

}

.footer-links a{

font-size:14px;

}

.footer-policy{

flex-direction:column;

gap:12px;

align-items:center;

}

.social-icons a{

width:44px;

height:44px;

}

}

/* ======================================================
   RESPONSIVE DESIGN
====================================================== */

/* Large Laptop */
@media (max-width:1400px){

.hero{
    grid-template-columns:1fr 1fr;
    gap:40px;
    padding:40px 5%;
}

.hero-content h1{
    font-size:52px;
}

.hero-image{
    height:470px;
}

.hero-image img{
    height:100%;
}

}


/* Laptop */
@media (max-width:1200px){

.site-header{
    padding:15px 4%;
}

.main-nav{
    gap:12px;
}

.main-nav a{
    font-size:14px;
    padding:8px 10px;
}

.hero{
    grid-template-columns:1fr 1fr;
    gap:30px;
    padding:40px 4%;
}

.hero-content h1{
    font-size:42px;
}

.hero-content p{
    font-size:17px;
}

.hero-image{
    height:420px;
}

.info{
    grid-template-columns:1fr;
    gap:40px;
}

.info-right{
    margin:0;
    max-width:100%;
    max-height:none;
}

.quality{
    grid-template-columns:1fr;
    gap:40px;
}

.quality-image{
    justify-content:center;
}

}

@media (max-width:480px){

.logo-name{
    height:28px;
}

.logo-icon{
    font-size:28px;
}

.hero{
    padding:25px 18px;
}

.hero-image{
    height:280px;
}

.hero-content h1{
    font-size:30px;
    line-height:1.2;
}

.hero-content p{
    font-size:15px;
}

.btn{
    width:100%;
}

.info h2{
    font-size:30px;
}

.info p{
    font-size:16px;
}

.quality-content h1{
    font-size:30px;
}

.quality-content p{
    font-size:16px;
}

}

@media (max-width:1200px){

.hero{
    grid-template-columns:1fr 1fr;
    gap:35px;
    padding:60px 4%;
}

.hero-content h1{
    font-size:40px;
}

.hero-content p{
    font-size:18px;
}

}

@media (max-width:480px){

.hero{
    padding:40px 16px;
}

.hero-content h1{
    font-size:28px;
    letter-spacing:-1px;
}

.hero-content p{
    font-size:15px;
}

.btn{
    width:100%;
}

}


.whatsapp-float{
    position:fixed;
    bottom:25px;
    right:25px;

    width:50px;
    height:50px;

    background:#25D366;
    color:#fff;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    font-size:25px;

    text-decoration:none;

    box-shadow:0 12px 30px rgba(37,211,102,.35);

    z-index:9999;

    transition:.3s ease;
}

.whatsapp-float:hover{
    transform:scale(1.1);
    box-shadow:0 18px 40px rgba(37,211,102,.45);
}

.whatsapp-float i{
    line-height:1;
}

@media(max-width:768px){

.whatsapp-float{
    width: 45px;
    height:45px;

    right:18px;
    bottom:18px;

    font-size:30px;
}

}

@keyframes whatsappPulse{
    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.5);
    }
    70%{
        box-shadow:0 0 0 16px rgba(37,211,102,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }
}

.whatsapp-float{
    animation:whatsappPulse 2s infinite;
}