*{
    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: "ubuntu";
    src: url("fonts/ubuntu.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

html{
    scroll-behavior:smooth;
}


/*=========================
   LEARN MORE HERO
=========================*/

.builder-hero{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;

    padding:90px 6%;
    background:#09090b;
    overflow:hidden;
}

.builder-left{
    flex:1;
}

.builder-tag{
    display:inline-block;
font-family: general;
    color:#f56b16;
    font-size:14px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;

    margin-bottom:18px;
}

.builder-left h1{
font-family: clash;
    font-size:50px;
    line-height:1.05;
    font-weight:700;
    color:#fff;
    margin-bottom:24px;

}

.builder-left p{
font-family: ubuntu;
    max-width:620px;

    color:#c7c7c7;
    font-size:16px;
    line-height:1.8;

    margin-bottom:40px;

}

.builder-buttons{
font-family: general;
    display:flex;
    gap:18px;
    margin-bottom:60px;

}

.btn-orange{

    padding:18px 34px;

    background:#f56b16;
    color:#fff;
    text-decoration:none;

    border-radius:10px;
    font-weight:600;

    transition:.3s;

}

.btn-orange:hover{

    background:#ff7d2a;

}

.btn-outline{

    padding:18px 34px;

    border:2px solid rgba(255,255,255,.3);

    color:#fff;
    text-decoration:none;

    border-radius:10px;

    transition:.3s;

}

.btn-outline:hover{

    background:#fff;
    color:#09090b;

}

.builder-features{

    display:flex;
    gap:55px;

}

.builder-features h3{
font-family: general;
    color:#fff;
    font-size:30px;
    margin-bottom:8px;

}

.builder-features span{
font-family: general;
    color:#9b9b9b;
    font-size:15px;

}

.builder-right{

    flex:1;

    display:flex;
    justify-content:flex-end;

}

.builder-right img{

    width:100%;
    max-width:720px;
transform: translateY(-80px);
    border-radius:24px;

    box-shadow:
    0 30px 70px rgba(0,0,0,.45);

}
/* Hide on desktop & tablet */
.mobile-hero{
    display:none;
}

/*=========================
   TABLET
=========================*/

@media(max-width:1200px){

.builder-left h1{

    font-size:50px;

}

.builder-left p{

    font-size:18px;

}

.builder-right img{

    max-width:560px;

}

.builder-features{

    gap:35px;

}
/* Hide on desktop & tablet */
.mobile-hero{
    display:none;
}
}

/*=========================
   MOBILE
=========================*/

@media(max-width:768px){

.builder-hero{

    display:none;

}
/* Hide on desktop & tablet */
.mobile-hero{
    display:none;
}

/* MOBILE ONLY */
@media (max-width:768px){

.mobile-hero{
    display:block;
    background:linear-gradient(150deg,#080808,#09090b);
    padding:42px 22px 55px;
    overflow:hidden;
}

.mobile-hero-content{
    max-width:420px;
    margin:auto;
}

.mobile-hero h1{

    font-family:general;
    font-size:46px;
    line-height:1.03;
    font-weight:800;
    color:#fff;
    margin:0 0 28px;
    letter-spacing:-1.5px;
}


.mobile-hero h1 span{

    color: #f56b16;
}

.mobile-hero p{
    font-family: general;
    font-size:16px;
    line-height:1.65;
    color:rgba(255,255,255,.88);
    margin-bottom:34px;
    font-weight:400;
}

.mobile-buttons{
    font-family: general;
    display:flex;
    flex-direction:column;
    gap:16px;
    margin-bottom:38px;
}

.btn-primary,
.btn-outline{
    width:100%;
    height:62px;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    border-radius:10px;
    font-size:1.2rem;
    font-weight:700;
    transition:.3s;
}

.btn-primary{
    background:#f56512;
    color:#fff;
}

.btn-primary:active{
    transform:scale(.98);
}

.btn-outline{
    border:2px solid rgba(255,255,255,.9);
    color:#fff;
    background:transparent;
}

.btn-outline:active{
    background:rgba(255,255,255,.08);
}

.mobile-hero-image{
    border-radius:24px;
    overflow:hidden;
    margin-top:8px;
}

.mobile-hero-image img{
    width:100%;
    display:block;
    border-radius:24px;
    object-fit:cover;
}

}
}



@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;
}

html{
    scroll-behavior:smooth;
}

.comparison{
    width:100%;
    padding:90px 2%;
    background:#fff;
}

.comparison-box{
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:90px;
}

.comparison-column h2{
    font-family:general;
    font-size:24px;
    font-weight:700;
    color:#0d2c66;
    margin-bottom:45px;
    line-height:1.1;
}

.challenge-list,
.solution-list{
    list-style:none;
    padding:0;
    margin:0;
}

.challenge-list li,
.solution-list li{

    display:flex;
    align-items:flex-start;
    gap:18px;

    margin-bottom:32px;

    font-size:15px;
    line-height:1.6;
    color:#000;
    font-family:general,sans-serif;
    font-weight:400;
}

.cross{
    color:#ff3d3d;
    font-size:24px;
    font-weight:700;
    flex-shrink:0;
    margin-top:3px;
}

.tick{
    color:#17c95c;
    font-size:24px;
    font-weight:700;
    flex-shrink:0;
    margin-top:3px;
}

/* ---------------- MOBILE ---------------- */

@media(max-width:768px){

.comparison{

    padding:60px 20px;
}

.comparison-box{

    grid-template-columns:1fr;
    gap:50px;
}

.comparison-column h2{

    font-size:26px;
    margin-bottom:28px;
}

.challenge-list li,
.solution-list li{
color: #000;
    font-size:16px;
    line-height:1.7;
    gap:12px;
    margin-bottom:20px;
}

.cross,
.tick{

    font-size:20px;
}

}

/* ================= 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: general;
}

.faq-header p{

    max-width:620px;
    margin:auto;
    color:black;
    font-size:1.05rem;
    font-weight: 700px;
    line-height:1.8;
    font-family: general;
}

.faq-container{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.faq-item{
    font-family: general;
    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: general;
}

.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: general;
    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;
}
}


/*==============================
      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;
}




}
/* ===========================
   CTA SECTION
=========================== */

.cta-section{
    width:100%;
    background:#09090b;
    padding:90px 20px;
}

.cta-container{
    max-width:1200px;
    margin:auto;
    text-align:center;
}

.cta-container h2{
    font-size:40px;
    font-family: general;
    font-weight:700;
    color:#fff;
    margin-bottom:10px;
    line-height:1.5;
    letter-spacing:-1px;
}

.cta-container p{
    
    font-size:21px;
    font-family: general;
    color:#f5a623;
    margin-bottom:50px;
    font-weight:400;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:28px;
}

/* Orange Button */

.btn-primary{
    width:170px;
    height:40px;
    display:flex;
    justify-content:center;
    align-items:center;

    background:#f5a623;
    color:#fff;
    text-decoration:none;
    font-size:21px;
    font-weight:600;
    font-family: general;

    border-radius:14px;
    transition:.3s;
}

.btn-primary:hover{
    background:#e6540c;
    transform:translateY(-3px);
}

/* Outline Button */

.btn-outlin{
    width:200px;
    height:60px;
    display:flex;
    justify-content:center;
    align-items:center;

    border:3px solid #0d2a52;
    color:#0d2a52;
    text-decoration:none;
    font-size:20px;
    font-weight:600;
font-family: general;
    border-radius:14px;
    transition:.3s;
}

.btn-outlin:hover{
    background:#0d2a52;
    color:#fff;
    transform:translateY(-3px);
}

@media (max-width:768px){

.cta-section{
    padding:70px 20px;
}

.cta-container h2{
    font-size:34px;
    line-height:1.25;
    margin-bottom:15px;
}

.cta-container p{
    font-size:18px;
    line-height:1.6;
    margin-bottom:35px;
    padding:0 10px;
}

.cta-buttons{
    flex-direction:column;
    gap:18px;
}

.btn-primary,
.btn-outline{
    width:100%;
    max-width:340px;
    height:60px;
    font-size:21px;
    border-radius:10px;
}

.btn-outline{
    border-width:2px;
}

}



.footer{
    font-family: general;
    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{
font-family: general;
    color:#b7c0d4;

}
/*=====================================
        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;

}



.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{
font-size: 12px;
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;

}



.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;
}