*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,
body{
    width:100%;
    overflow-x:hidden;
      padding-top: 30px;
}
.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: 900;
    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;
}

.hero{
    position:relative;
    width:100%;
    height:534px;

    background:url("images/amc.png") center center/cover no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;
    overflow:auto;
}

.overlay{
    position:absolute;
    inset: 0px;
  
}

.hero-content{
    position:relative;
    z-index:2;
    width:800px;
    max-width:90%;
    text-align:center;
    color:#fff;
}

.hero-content h1{

    font-family: clash;
    font-size:45px;
    width: 760px;
    font-weight:600;
    line-height:1.15;
    margin-bottom:10px;
    transform:translateY(-70px);
  
  
}

.hero h1 span{
    color:#f5a623;
}

.hero-content p{
    font-family: AURORA;
    font-size:18px;
    line-height:1.8;
    color:#f5a623;
    margin: bottom 40px;
     transform:translateY(-60px);
     width: 680px;
    margin-left: 48px;
}

.hero-btn{
    font-family: GENERAL;
    display:inline-block;
    padding:10px 14px;
    background:#ffffff;
    color:black;
    text-decoration:none;
    border-radius:40px;
    font-size:17px;
    font-weight:600;
    transition:.35s;
      transform:translateY(-40px);
      margin-left:-40px;
}

.benefits-section{
    width:100%;
    padding:110px 5%;
    background-color: #09090b;
}

.section-title{
    text-align:center;
    max-width:750px;
    margin:auto;
    margin-bottom:70px;
    color: #ffffff;
}

.section-title h2{
    margin-top: -10px;
    font-family: general;
    font-size:54px;
    font-weight:700;
    color:#ffffff;
    margin-bottom:18px;
}

.section-title p{
    font-family: aurora;
    color:#fff;
    font-size:19px;
    line-height:1.9;
}

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:35px;
}

.benefit-card{
    background:white;
    border-radius:22px;
    padding:40px 30px;
    text-align:center;
    transition:.35s;
    border:1px solid #ececec;
}



.benefit-icon{
    width: 60px;
    height: 60px;
    margin:auto;
    border-radius:50%;
    background:black;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:20px;
    margin-top: -20px;
}

.benefit-icon i{
    color:#f5a623;
    font-size:30px;
}

.benefit-card h3{
    font-family: general;
    font-size:24px;
    color:black;
    margin-bottom:18px;
}

.benefit-card p{
    font-family: aurora;
    color:black;
    line-height:1.8;
    font-size:18px;
    margin-bottom: -20px;
}

/* Hide mobile section on desktop */
.amc-mobil{
    display:none;
}

@media (max-width:768px){

.amc-mobil{
    display:block;
    background:#09090b;
   
    padding:40px 22px 55px;
    overflow:hidden;
}

.amc-containe{
    text-align:center;
}

.amc-ta{
    display:block;
    color:#f56614;
    font-size:14px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:30px;
    margin-top: 30px;
}

.amc-mobil h1{
    font-family: general;
    font-size:34px;
    line-height:1.05;
    font-weight:800;
    margin-bottom:30px;
    letter-spacing: 1px;
    color: #fff;
}

.amc-tex{
    margin-top: 50px;
    font-size:16px;
    line-height:1.5;
    color:#fff;
    margin-bottom:50px;
}

.amc-bt{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:60px;
    background:#f56614;
    color:#fff;
    text-decoration:none;
    border-radius:16px;
    font-size:22px;
    font-weight:700;
    margin-bottom:34px;
}


.amc-stat{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:45px 15px;
}

.stat h2{
    margin-top:30px;
    color:#fff;
    font-size:24px;
    font-weight:800;
    line-height:1;
    margin-bottom:12px;
}

.stat p{
    font-size:14px;
    line-height:1.4;
    color:#dfe7ff;
}

}

@media(max-width:768px){


    .hero{
        display: none;

    }

.section-title h2{
    font-size:38px;
}

.benefits-section{
    padding:80px 6%;
}

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    
    font-family:general;
    background:#ffffff;
}

.why-us{
    width:100%;
    padding:90px 10%;
    background:#040404;
}

.section-title{
    margin-top: -2px;
    text-align:center;
    margin-bottom:70px;
}


.backsta{
border-radius: 40px;
background: #ffffff;
height: 320px;
padding:  18px;
}


.section-title span{
    display:inline-block;
    color:#2563eb;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:30px;
}

.section-title h2{
    font-size:46px;
    line-height:1.2;
    font-weight:700;
    color:#ffffff;
    margin-bottom:22px;
}

.section-title p{
    max-width:680px;
    margin:auto;
    color:#70788c;
    font-size:19px;
    line-height:1.8;
}

.features-grid{
margin-top: 2px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:60px 60px;

}
.icon{
    width:72px;
    height:72px;
    border-radius:50%;
    background:black;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:28px;
    position:relative;

}

.icon i{
    position:relative;
    z-index:2;
    font-size:30px;
    color:#2563eb;
}


.backstar{
border-radius: 40px;
background: #ffffff;
height: 320px;
padding:  18px;
}

.feature-card h3{
    font-size:28px;
    font-weight:700;
    color:#040404;
    margin-bottom:18px;
}

.feature-card p{
    font-size:16px;
    color:#000;
    line-height:1.2;
    margin-bottom:22px;
}



@media(max-width:1100px){

.features-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.section-title h2{
font-size:38px;
}

.features-grid{
grid-template-columns:1fr;
gap:45px;
}

.feature-card h3{
font-size:28px;
}

}

.partners{
    margin-top: 2px;
    width:100%;
    background:#09090b;
    padding:80px 5%;
    margin-bottom: 2px;
}

.overlay2{

position:absolute;

right:-150px;

top:-80px;

width:650px;

height:900px;

background:rgba(255,255,255,.18);

filter:blur(90px);

border-radius:50%;
}

.partners p{

    text-align:center;

    font-family:clash;

    color:#fff;

    font-size:clamp(2rem,4vw,2.75rem);

    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 2%;

}

.logos{

grid-template-columns:repeat(3,1fr);

gap:25px;

}

.partners p{

font-size:32px;

}

}

@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:28px;

}

}


/*==============================
      AMC SECTION
==============================*/

.amc-section{
    max-height: 300px;
    width:100%;
    background:#f5a623;
    padding:90px 20px;
    display:flex;
    justify-content:center;
    align-items:center;
}

.amc-container{
    width:100%;
    max-width:1000px;
    text-align:center;
    color:#fff;
}

.amc-tag{
    font-family: general;
    color: #09090b;
    display:block;
    font-size:16px;
    letter-spacing:2px;
    text-transform:uppercase;
    opacity:.9;
    margin-bottom:20px;
    font-weight:600;
}

.amc-container h2{
    color: #09090b;
    font-family: general;
    font-size:32px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:20px;
}

.amc-container h2 i{
    margin-right:10px;
    font-size:34px;
    vertical-align:middle;

}

.amc-container p{
    color: #09090b;
    font-family: general;
    font-size:18px;
    line-height:1.2;
    opacity:.95;
    max-width:800px;
    margin:0 auto 40px;
}

.amc-btn{
   
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:200px;
    height:40px;
    border:2px solid #000;
    border-radius:12px;
    text-decoration:none;
    color:#000;
    font-size:18px;
    font-weight:600;
    transition:.35s;
    font-family: general;
}

.amc-btn:hover{
    background:#000;
    color:#fff;
}

/*==============================
      TABLET
==============================*/

@media(max-width:991px){

    .amc-section{
        padding:70px 25px;
    }

    .amc-container h2{
        font-size:42px;
    }

    .amc-container p{
        font-size:21px;
    }

    .amc-btn{
        width:300px;
        height:78px;
        font-size:28px;
    }

    
.amc-btn:hover{
    background:#000;
    color:#fff;
}


}


/*==============================
      MOBILE
==============================*/

@media(max-width:768px){

.amc-section{
    max-height: 300px;
    width:100%;
    background:#f5a623;
    padding:90px 20px;
    display:flex;
    justify-content:center;
    align-items:center;
}


    .amc-tag{
        display: flex;
        justify-content: center;
        align-items: center;
        font-size:12px;
        letter-spacing:2px;
    }

    .amc-container h2{
        display:flex;
        font-size:22px;
        line-height:1.3;
        align-items: center;
        justify-content: center;
    }

  .amc-container h2 i{
    margin-right:6px;
    font-size:26px;
    vertical-align:middle;
    transform: translateY(-13px);

}


    .amc-container p{
        font-family: general;
        font-size:16px;
        line-height:1.4;
        margin-bottom:30px;
    }

   
.amc-btn{
   
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:150px;
    height:40px;
    border:2px solid #000;
    border-radius:12px;
    text-decoration:none;
    color:#000;
    font-size:12px;
    font-weight:600;
    transition:.35s;
    font-family: general;
}




}




.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;

}

}


.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;
}