/* =====================================================
   HUNAIN DIGITAL STUDIO (HDS)
   STYLE.CSS - MAIN STYLESHEET
===================================================== */

/* =========================
   ROOT VARIABLES
========================= */

:root{

    /* Brand Colors */
    --primary:#0f62fe;
    --primary-dark:#0043ce;
    --secondary:#1e88e5;
    --accent:#06b6d4;

    /* Dark Colors */
    --dark:#0b0f1a;
    --dark-light:#1e293b;

    /* Text Colors */
    --text:#1f2937;
    --muted:#667085;
    --gray:#64748b;

    /* Background Colors */
    --white:#ffffff;
    --light:#f8fafc;
    --light-blue:#f5f9ff;

    /* Borders */
    --border:#e5e7eb;
    --border-light:rgba(15,98,254,.08);

    /* Shadows */
    --shadow:0 10px 30px rgba(15,98,254,.08);
    --shadow-hover:0 20px 50px rgba(15,98,254,.15);

    /* Radius */
    --radius:24px;
    --radius-sm:16px;
    --radius-lg:32px;

    /* Container */
    --container-width:1200px;

    /* Transition */
    --transition:.35s ease;

}

/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:"Inter",sans-serif;
    background:var(--light);
    color:var(--text);
    line-height:1.6;
    overflow-x:hidden;
    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
}

/* =========================
   GLOBAL ELEMENTS
========================= */

h1,
h2,
h3,
h4,
h5,
h6{
    font-family:"Inter",sans-serif;
    font-weight:700;
    color:var(--dark);
    line-height:1.2;
}

p{
    color:var(--muted);
}

a{
    text-decoration:none;
    color:inherit;
    transition:var(--transition);
}

img{
    max-width:100%;
    display:block;
}

ul{
    list-style:none;
}

.container{
    width:92%;
    max-width:1400px;
    margin:0 auto;
}

.section{
    padding:110px 0;
}

/* =========================
   GLOBAL SECTION HEADER
========================= */

.section-title{
    text-align:center;
    max-width:800px;
    margin:0 auto 60px;
}

.section-title span{
    display:inline-block;
    padding:10px 20px;
    border-radius:999px;
    background:rgba(15,98,254,.08);
    color:var(--primary);
    font-weight:700;
    font-size:14px;
    margin-bottom:18px;
}

.section-title h2{
    font-size:clamp(2rem,4vw,3rem);
    line-height:1.2;
    margin-bottom:15px;
}

.section-title p{
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

/* =========================
   BUTTONS
========================= */

.btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    padding:16px 30px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:var(--white);

    border:none;
    border-radius:var(--radius-sm);

    font-weight:700;

    transition:var(--transition);

    box-shadow:0 10px 25px rgba(15,98,254,.18);
}

.btn-primary:hover{
    transform:translateY(-4px);
    box-shadow:0 20px 40px rgba(15,98,254,.30);
}

.btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    padding:16px 30px;

    background:var(--white);

    color:var(--dark);

    border:1px solid var(--border);

    border-radius:var(--radius-sm);

    font-weight:700;

    transition:var(--transition);
}

.btn-secondary:hover{
    transform:translateY(-4px);
    background:var(--primary);
    color:var(--white);
    border-color:var(--primary);
}

/* =========================
   LOADER
========================= */

.loader-wrapper{
    position:fixed;
    inset:0;
    background:var(--dark);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:99999;
}

.loader-content{
    text-align:center;
    color:var(--white);
}

.loader-content img{
    width:90px;
    margin:0 auto 20px;
}

.loader-content h2{
    color:var(--white);
    font-size:22px;
}

.loader-content span{
    display:block;
    margin-top:8px;
    color:var(--accent);
}

.loader-line{
    width:220px;
    height:3px;
    margin:25px auto;
    background:rgba(255,255,255,.15);
    border-radius:999px;
    overflow:hidden;
    position:relative;
}

.loader-line::after{
    content:"";
    position:absolute;
    top:0;
    left:-50%;
    width:50%;
    height:100%;
    background:linear-gradient(
        90deg,
        var(--primary),
        var(--accent)
    );
    animation:loading 1.2s linear infinite;
}

/* =========================
   HERO
========================= */

.hero{

    position:relative;

    padding:120px 0 100px;

    overflow:hidden;

    background:linear-gradient(
        180deg,
        #ffffff,
        #f5f9ff
    );

}

.hero-container{

    display:grid;

    grid-template-columns:1.15fr 1fr;

    align-items:center;

    gap:70px;

}

.hero-content h1{

    font-size:clamp(3rem,6vw,5rem);

    line-height:1.05;

    font-weight:900;

    letter-spacing:-1px;

    margin-bottom:25px;

    color:var(--dark);

}

.hero-content h1 span{

    color:var(--primary);

}

.hero-content p{

    font-size:1.08rem;

    line-height:1.9;

    color:var(--muted);

    max-width:650px;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

    margin-bottom:40px;

}

.hero-stats{

    display:flex;

    flex-wrap:wrap;

    gap:35px;

}

.hero-stats div{

    background:#fff;

    padding:18px 25px;

    border-radius:20px;

    box-shadow:var(--shadow);

}

.hero-stats h3{

    color:var(--primary);

    font-size:1.8rem;

    margin-bottom:5px;

}

.hero-stats p{

    color:var(--muted);

    font-size:14px;

}

.hero-image{

    position:relative;

}

.hero-image img{

    width:100%;

    border-radius:32px;

    box-shadow:0 30px 60px rgba(15,98,254,.18);

}

/* =========================
   ABOUT
========================= */

.about-grid{

    display:grid;

    grid-template-columns:1.2fr .8fr;

    gap:70px;

    align-items:center;

}

.about-content h2{

    font-size:clamp(2rem,4vw,3rem);

    margin-bottom:20px;

    line-height:1.2;

}

.about-content p{

    color:var(--muted);

    line-height:1.9;

    margin-bottom:18px;

}

.features-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:15px;

    margin-top:30px;

}

.feature-item{

    display:flex;

    align-items:center;

    gap:12px;

    padding:18px 20px;

    background:#ffffff;

    border:1px solid var(--border-light);

    border-radius:20px;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.feature-item:hover{

    transform:translateY(-5px);

    box-shadow:var(--shadow-hover);

}

.feature-item i{

    color:var(--primary);

    font-size:18px;

    flex-shrink:0;

}

.feature-item span{

    font-weight:600;

    color:var(--dark);

}

/* =========================
   SERVICES
========================= */

.services-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

}

.service-card{

    position:relative;

    background:#ffffff;

    padding:35px;

    border-radius:28px;

    overflow:hidden;

    border:1px solid rgba(15,98,254,.08);

    box-shadow:0 15px 40px rgba(15,98,254,.08);

    transition:.4s ease;

}

.service-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:linear-gradient(
        90deg,
        var(--primary),
        var(--accent)
    );

    transform:scaleX(0);

    transition:.4s ease;

}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 60px rgba(15,98,254,.18);

}

.service-card:hover::before{

    transform:scaleX(1);

}

.service-card i{

    width:75px;
    height:75px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:20px;

    font-size:30px;

    color:var(--primary);

    background:rgba(15,98,254,.08);

    margin-bottom:25px;

    transition:.4s ease;

}

.service-card:hover i{

    background:var(--primary);

    color:#ffffff;

    transform:rotate(8deg);

}

.service-card h3{

    font-size:1.4rem;

    margin-bottom:15px;

    font-weight:800;

}

.service-card p{

    color:var(--muted);

    line-height:1.8;

    margin-bottom:20px;

}

.service-card a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    font-weight:700;

    color:var(--primary);

    transition:.3s ease;

}

.service-card a:hover{

    gap:14px;

}



/* =========================
   STATS
========================= */

.stats{

    position:relative;

    padding:90px 0;

    background:linear-gradient(
        135deg,
        #081120,
        #0f62fe
    );

    overflow:hidden;

}

.stats::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    background:rgba(255,255,255,.05);

    border-radius:50%;

    top:-250px;

    right:-200px;

}

.stats::after{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:rgba(255,255,255,.04);

    border-radius:50%;

    bottom:-180px;

    left:-120px;

}

.stats-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:30px;

}

.stat-box{
    
    animation:statFloat 5s ease-in-out infinite;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.12);

    border-radius:25px;

    padding:35px 25px;

    text-align:center;

    transition:.4s ease;

}

.stat-box:hover{

    transform:translateY(-10px);

    background:rgba(255,255,255,.12);

}

.stat-box h2{

    color:#ffffff;

    font-size:3rem;

    font-weight:900;

    margin-bottom:10px;

}

.stat-box p{

    color:rgba(255,255,255,.85);

    font-size:15px;

    letter-spacing:.5px;

}

/* =========================
   PROCESS
========================= */

.process-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

    margin-top:50px;

}

.process-card{

    position:relative;

    background:#ffffff;

    padding:35px 25px;

    border-radius:28px;

    text-align:center;

    border:1px solid rgba(15,98,254,.08);

    box-shadow:0 15px 40px rgba(15,98,254,.08);

    transition:.4s ease;

    overflow:hidden;

}

.process-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:linear-gradient(
        90deg,
        var(--primary),
        var(--accent)
    );

    transform:scaleX(0);

    transition:.4s ease;

}

.process-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(15,98,254,.18);

}

.process-card:hover::before{

    transform:scaleX(1);

}

.process-card span{

    display:flex;

    align-items:center;

    justify-content:center;

    width:70px;

    height:70px;

    margin:0 auto 20px;

    border-radius:50%;

    background:rgba(15,98,254,.08);

    color:var(--primary);

    font-size:24px;

    font-weight:800;

}

.process-card h3{

    font-size:1.3rem;

    margin-bottom:12px;

    font-weight:800;

}

.process-card p{

    color:var(--muted);

    line-height:1.8;

}

/* =========================
   CONTACT
========================= */

.contact-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

    align-items:start;

}

.contact-card{

    display:flex;

    align-items:flex-start;

    gap:18px;

    padding:22px;

    margin-bottom:20px;

    background:#ffffff;

    border-radius:24px;

    border:1px solid rgba(15,98,254,.08);

    box-shadow:0 15px 40px rgba(15,98,254,.08);

    transition:.4s ease;

}

.contact-card:hover{

    transform:translateY(-6px);

    box-shadow:0 25px 55px rgba(15,98,254,.15);

}

.contact-card i{

    width:55px;

    height:55px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:15px;

    background:rgba(15,98,254,.08);

    color:var(--primary);

    font-size:20px;

    flex-shrink:0;

}

.contact-card h4{

    margin-bottom:6px;

    font-size:18px;

    font-weight:700;

}

.contact-card p{

    margin:0;

    color:var(--muted);

}

.contact-form{

    background:#ffffff;

    padding:35px;

    border-radius:30px;

    box-shadow:0 20px 50px rgba(15,98,254,.08);

    border:1px solid rgba(15,98,254,.08);

    display:flex;

    flex-direction:column;

    gap:18px;

}

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:16px 18px;

    border:1px solid rgba(15,98,254,.12);

    border-radius:15px;

    background:#f8fbff;

    transition:.3s ease;

    font-size:15px;

}

.contact-form input:focus,
.contact-form textarea:focus{

    border-color:var(--primary);

    background:#ffffff;

    box-shadow:0 0 0 4px rgba(15,98,254,.08);

    outline:none;

}

.contact-form textarea{

    resize:none;

    min-height:160px;

}

/* =================
   FOOTER
================= */

.footer{

    background:linear-gradient(
        135deg,
        #081120,
        #111827
    );

    color:#ffffff;

    text-align:center;

    padding:60px 0 30px;

    position:relative;

    overflow:hidden;

}

.footer h2{

    color:#ffffff;

    font-size:2rem;

    font-weight:800;

    margin-bottom:15px;

}

.footer p{

    color:rgba(255,255,255,.75);

    line-height:1.8;

}

.footer a{

    color:rgba(255,255,255,.75);

    transition:.3s ease;

}

.footer a:hover{

    color:#ffffff;

}

.footer::before{

    content:"";

    position:absolute;

    width:300px;

    height:300px;

    border-radius:50%;

    background:rgba(15,98,254,.06);

    top:-150px;

    right:-120px;

}

/* =========================
   SCROLL TOP BUTTON
========================= */

#scrollTopBtn{

    position:fixed;

    right:25px;

    bottom:25px;

    width:55px;

    height:55px;

    display:none;

    align-items:center;

    justify-content:center;

    border:none;

    border-radius:50%;

    cursor:pointer;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--accent)
    );

    color:var(--white);

    font-size:18px;

    box-shadow:0 15px 35px rgba(15,98,254,.35);

    transition:.35s ease;

    z-index:9999;

}

#scrollTopBtn:hover{

    transform:translateY(-6px);

    box-shadow:0 25px 50px rgba(15,98,254,.45);

}

#scrollTopBtn:active{

    transform:scale(.95);

}


/* ==========================================
   SERVICE / PRICING TABS
========================================== */

.pricing-tabs{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:15px;

    margin-bottom:60px;

}

.pricing-tab{

    background:#ffffff;

    border:1px solid rgba(15,98,254,.15);

    color:var(--primary);

    padding:14px 24px;

    border-radius:50px;

    cursor:pointer;

    font-size:15px;

    font-weight:700;

    transition:.35s ease;

    box-shadow:0 10px 25px rgba(15,98,254,.06);

}

.pricing-tab:hover{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--accent)
    );

    color:#ffffff;

    transform:translateY(-4px);

    box-shadow:0 20px 40px rgba(15,98,254,.20);

}

.pricing-tab.active{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--accent)
    );

    color:#ffffff;

    border-color:transparent;

    box-shadow:0 20px 45px rgba(15,98,254,.30);

}


/* ==========================================
   PRICING CARDS
========================================== */

.pricing-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    align-items:stretch;

}

.pricing-card{

    position:relative;

    background:#ffffff;

    border-radius:30px;

    padding:40px;

    overflow:hidden;

    border:1px solid rgba(15,98,254,.08);

    box-shadow:0 15px 40px rgba(15,98,254,.08);

    transition:.4s ease;

}

.pricing-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:linear-gradient(
        90deg,
        var(--primary),
        var(--accent)
    );

}

.pricing-card:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 65px rgba(15,98,254,.18);

}

.pricing-card h3{

    font-size:2rem;

    font-weight:800;

    margin-bottom:10px;

    color:#111827;

}

.pricing-card p{

    color:var(--muted);

    margin-bottom:25px;

    line-height:1.7;

}

.price{

    font-size:4rem;

    font-weight:900;

    color:var(--primary);

    margin-bottom:25px;

    line-height:1;

}

.price span{

    font-size:16px;

    color:var(--muted);

    font-weight:600;

}

.pricing-card ul{

    list-style:none;

    margin:25px 0;

}

.pricing-card ul li{

    display:flex;

    align-items:center;

    gap:10px;

    margin-bottom:15px;

    color:#374151;

}

.pricing-card ul li i{

    color:var(--primary);

}

.pricing-card .btn-primary{

    width:100%;

    text-align:center;

}

/* FEATURED CARD */

.pricing-card.featured{

    transform:scale(1.05);

    border:2px solid var(--primary);

    box-shadow:0 30px 70px rgba(15,98,254,.20);

}

.pricing-card.featured:hover{

    transform:scale(1.05) translateY(-10px);

}

/* ==========================================
   FEATURED CARD
========================================== */

.pricing-card.featured{

    background:linear-gradient(
        135deg,
        #0f172a,
        #1e293b
    );

    color:#ffffff;

    border:none;

    transform:scale(1.05);

    box-shadow:
    0 25px 60px rgba(15,23,42,.30);

}

.pricing-card.featured:hover{

    transform:
    translateY(-10px)
    scale(1.05);

    box-shadow:
    0 35px 80px rgba(15,23,42,.40);

}

.pricing-card.featured h3,
.pricing-card.featured p,
.pricing-card.featured li,
.pricing-card.featured .price{

    color:#ffffff;

}

/* ==========================================
   POPULAR BADGE
========================================== */

.popular-badge{

    position:absolute;

    top:20px;
    right:20px;

    background:linear-gradient(
        135deg,
        #0f62fe,
        #22c1ff
    );

    color:#ffffff;

    padding:8px 16px;

    border-radius:50px;

    font-size:12px;

    font-weight:700;

    letter-spacing:.5px;

    box-shadow:
    0 10px 25px rgba(15,98,254,.35);

}

/* ==========================================
   FEATURES LIST
========================================== */

.pricing-features{

    list-style:none;

    margin:30px 0;

    padding:0;

}

.pricing-features li{

    display:flex;

    align-items:center;

    gap:10px;

    padding:12px 0;

    border-bottom:1px solid rgba(15,98,254,.08);

    color:#374151;

}

.pricing-features li:last-child{

    border-bottom:none;

}

.pricing-features li i{

    color:var(--primary);

    font-size:14px;

}

.pricing-card.featured .pricing-features li{

    border-bottom:1px solid rgba(255,255,255,.18);

}

.pricing-card.featured .pricing-features li i{

    color:#ffffff;

}

/* ==========================================
   PRICING BUTTONS
========================================== */

.pricing-btn{

    display:flex;
    align-items:center;
    justify-content:center;

    width:100%;

    padding:16px 24px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#ffffff;

    border-radius:14px;

    font-size:15px;
    font-weight:700;

    text-decoration:none;

    transition:.35s ease;

    box-shadow:
    0 12px 30px rgba(15,98,254,.25);

    position:relative;
    overflow:hidden;

}

.pricing-btn::before{

    content:"";

    position:absolute;

    top:0;
    left:-100%;

    width:100%;
    height:100%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.20),
        transparent
    );

    transition:.6s;

}

.pricing-btn:hover{

    transform:translateY(-4px);

    box-shadow:
    0 18px 40px rgba(15,98,254,.35);

}

.pricing-btn:hover::before{

    left:100%;

}

/* FEATURED CARD BUTTON */

.pricing-card.featured .pricing-btn{

    background:#ffffff;

    color:var(--primary);

    box-shadow:
    0 10px 25px rgba(255,255,255,.15);

}

.pricing-card.featured .pricing-btn:hover{

    background:#f8fafc;

    color:var(--secondary);

    transform:translateY(-4px);

}

/* ==========================================
   FEATURED CARD ANIMATION
========================================== */

@keyframes featuredGlow{

    0%{

        box-shadow:
        0 25px 60px rgba(15,23,42,.25);

    }

    50%{

        box-shadow:
        0 30px 80px rgba(15,98,254,.30);

    }

    100%{

        box-shadow:
        0 25px 60px rgba(15,23,42,.25);

    }

}

.pricing-card.featured{

    animation:
    featuredGlow 4s ease-in-out infinite;

}


/* ===================================
   HERO IMAGE
=================================== */

.hero-image-box{

    width:100%;
    max-width:560px;

    margin:auto;

    transition:.4s ease;

    position:relative;

}

.hero-image-box img{

    width:100%;
    display:block;

    border-radius:24px;

    cursor:pointer;

    transition:.45s ease;

    box-shadow:
    0 25px 60px rgba(15,23,42,.15);

}

.hero-image-box:hover img{

    transform:
    translateY(-10px)
    scale(1.03);

    box-shadow:
    0 35px 80px rgba(15,98,254,.25);

}

.hero-image-box:hover{

    filter:brightness(1.02);

}


/* ================= WHATSAPP FLOAT BUTTON ================= */

.whatsapp-float{

    position:fixed;

    right:20px;
    bottom:90px;

    z-index:9999;

    display:flex;
    align-items:center;
    gap:12px;

}

/* TEXT BOX */

.whatsapp-text{

    background:#ffffff;

    padding:14px 18px;

    border-radius:16px;

    box-shadow:
    0 20px 50px rgba(15,23,42,.12);

    display:flex;
    flex-direction:column;

    opacity:0;

    transform:translateX(20px);

    pointer-events:none;

    transition:.35s ease;

    font-size:14px;

    border:1px solid rgba(15,98,254,.08);

}

.whatsapp-text strong{

    color:var(--dark);

    font-size:14px;

    font-weight:700;

}

.whatsapp-text span{

    color:var(--muted);

    font-size:12px;

}

/* SHOW TEXT */

.whatsapp-float:hover .whatsapp-text{

    opacity:1;

    transform:translateX(0);

}

/* BUTTON */

.whatsapp-btn{

    width:62px;
    height:62px;

    border-radius:50%;

    background:#25D366;

    color:#ffffff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:30px;

    text-decoration:none;

    transition:.3s ease;

    box-shadow:
    0 15px 40px rgba(37,211,102,.35);

    animation:whatsappPulse 2.5s infinite;

}

.whatsapp-btn:hover{

    transform:scale(1.08);

    background:#1ebe5d;

    box-shadow:
    0 20px 55px rgba(37,211,102,.45);

}

/* PULSE */

@keyframes whatsappPulse{

    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.08);
    }

    100%{
        transform:scale(1);
    }

}

/* ==========================================
   PRICING SECTION
========================================== */

.pricing-section{
    padding:100px 0;
    background:linear-gradient(
        180deg,
        #ffffff,
        #f8fbff
    );
    position:relative;
}

/* ==========================================
   SECTION TITLE
========================================== */

.section-title{
    text-align:center;
    margin-bottom:55px;
}

.section-title span{
    display:inline-flex;
    align-items:center;
    gap:8px;

    background:rgba(15,98,254,.08);

    color:#0f62fe;

    padding:10px 22px;

    border-radius:50px;

    font-weight:700;

    margin-bottom:15px;
}

.section-title h2{
    font-size:2.6rem;
    color:#0b0f1a;
    line-height:1.2;
    max-width:750px;
    margin:auto;
}

/* ==========================================
   CATEGORY BUTTONS
========================================== */

.pricing-tabs{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:14px;
    margin-bottom:55px;
}

.pricing-tab{

    border:none;

    cursor:pointer;

    padding:14px 24px;

    border-radius:50px;

    background:#ffffff;

    color:#1c1c1c;

    font-weight:700;

    border:1px solid rgba(15,98,254,.12);

    box-shadow:
    0 8px 20px rgba(0,0,0,.04);

    transition:.35s ease;

}

.pricing-tab:hover{

    transform:
    translateY(-4px);

    background:#eef4ff;

    color:#0f62fe;

    box-shadow:
    0 12px 30px rgba(15,98,254,.12);

}

.pricing-tab.active{

    background:
    linear-gradient(
        135deg,
        #0f62fe,
        #1e88e5
    );

    color:#ffffff;

    box-shadow:
    0 15px 35px rgba(15,98,254,.25);

}

/* ==========================================
   PRICING GRID
========================================== */

.pricing-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

/* ==========================================
   PRICING CARD
========================================== */

.pricing-card{

    background:#ffffff;

    padding:35px;

    border-radius:24px;

    position:relative;

    overflow:hidden;

    border:1px solid rgba(15,98,254,.08);

    box-shadow:
    0 15px 40px rgba(0,0,0,.06);

    transition:.35s ease;

}

.pricing-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:
    linear-gradient(
        90deg,
        #0f62fe,
        #06b6d4
    );

}

.pricing-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 25px 60px rgba(15,98,254,.15);

}

/* ==========================================
   TEXTS
========================================== */

.pricing-card h3{

    font-size:1.35rem;

    font-weight:800;

    margin-bottom:10px;

    color:#0b0f1a;

}

.pricing-card p{

    color:#667085;

    margin-bottom:20px;

    font-size:15px;

    line-height:1.6;

}

.price{

    font-size:3rem;

    font-weight:900;

    color:#0f62fe;

    margin-bottom:20px;

    line-height:1;

}

.price span{

    font-size:14px;

    font-weight:600;

    color:#667085;

}

/* ==========================================
   FEATURES LIST
========================================== */

.pricing-features{

    list-style:none;

    margin:25px 0;

    padding:0;

}

.pricing-features li{

    display:flex;

    align-items:center;

    gap:12px;

    padding:10px 0;

    color:#374151;

    border-bottom:
    1px solid rgba(15,98,254,.06);

}

.pricing-features li:last-child{

    border-bottom:none;

}

.pricing-features li i{

    color:#0f62fe;

    font-size:14px;

}

/* ==========================================
   BUTTON
========================================== */

.pricing-btn{

    display:block;

    text-align:center;

    text-decoration:none;

    background:
    linear-gradient(
        135deg,
        #0f62fe,
        #1e88e5
    );

    color:#ffffff;

    padding:15px;

    border-radius:14px;

    font-weight:700;

    transition:.35s ease;

}

.pricing-btn:hover{

    transform:
    translateY(-3px);

    box-shadow:
    0 15px 35px rgba(15,98,254,.25);

}

/* ==========================================
   FEATURED CARD
========================================== */

.featured{

    border:2px solid #0f62fe;

    transform:scale(1.03);

    box-shadow:
    0 25px 60px rgba(15,98,254,.15);

}

.featured:hover{

    transform:
    scale(1.03)
    translateY(-8px);

}

/* ==========================================
   MOST POPULAR
========================================== */

.popular-badge{

    position:absolute;

    top:18px;
    right:18px;

    background:#0f62fe;

    color:#ffffff;

    padding:7px 14px;

    border-radius:30px;

    font-size:12px;

    font-weight:700;

    box-shadow:
    0 10px 25px rgba(15,98,254,.25);

}

/* ==========================================
   PRIMARY BUTTON
========================================== */

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    text-decoration:none;

    background:
    linear-gradient(
        135deg,
        #0f62fe,
        #1e88e5
    );

    color:#ffffff;

    padding:15px 30px;

    border-radius:14px;

    font-size:15px;

    font-weight:700;

    letter-spacing:.2px;

    border:none;

    cursor:pointer;

    transition:.35s ease;

    box-shadow:
    0 12px 30px rgba(15,98,254,.20);

    position:relative;

    overflow:hidden;

}

/* Shine Effect */

.btn-primary::before{

    content:"";

    position:absolute;

    top:0;
    left:-100%;

    width:100%;
    height:100%;

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.25),
        transparent
    );

    transition:.6s;

}

.btn-primary:hover{

    transform:
    translateY(-4px);

    box-shadow:
    0 18px 40px rgba(15,98,254,.30);

}

.btn-primary:hover::before{

    left:100%;

}

.btn-primary:active{

    transform:
    translateY(-1px);

}

/* ==========================================
PRICING RESPONSIVE
========================================== */

@media (max-width:992px){

    .pricing-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .featured{
        transform:none;
    }

    .featured:hover{
        transform:translateY(-10px);
    }

}

@media (max-width:768px){

    .section-title h2{
        font-size:2rem;
    }

    .pricing-card{
        padding:30px;
    }

    .price{
        font-size:2.4rem;
    }

}

/* ==========================================
ABOUT SECTION
========================================== */

.about-image-card{
    position:relative;
    height:500px;
    border-radius:35px;
    overflow:hidden;

    background:linear-gradient(
        135deg,
        #0f62fe,
        #2f7cff
    );

    box-shadow:
    0 25px 60px rgba(15,98,254,.25);
}

/* Animated Pattern */

.pattern-dots{
    position:absolute;
    inset:0;

    background-image:
    radial-gradient(
        rgba(255,255,255,.25) 2px,
        transparent 2px
    );

    background-size:30px 30px;

    animation:dotsMove 12s linear infinite;
}

@keyframes dotsMove{

    0%{
        transform:translate(0,0);
    }

    100%{
        transform:translate(-30px,-30px);
    }

}

/* Glow */

.about-image-card::before{

    content:"";

    position:absolute;

    width:300px;
    height:300px;

    background:
    rgba(255,255,255,.15);

    border-radius:50%;

    top:50%;
    left:50%;

    transform:
    translate(-50%,-50%);

    filter:blur(90px);
}

/* Center Layout */

.about-center{
    max-width:900px;
    margin:auto;
    text-align:center;
}

.about-center h2{
    font-size:3rem;
    margin:20px 0;
    color:#0b0f1a;
}

.about-center p{
    color:#667085;
    line-height:1.8;
    margin-bottom:20px;
}

.about-features{
    list-style:none;
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:25px;
    margin:35px 0;
}

.about-features li{
    font-weight:600;
    color:#374151;
}

.about-features i{
    color:#0f62fe;
    margin-right:8px;
}

/* ==========================================
   ABOUT HERO
========================================== */

.about-hero{

    padding:140px 0 100px;

    text-align:center;

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #f7faff
    );

    position:relative;

    overflow:hidden;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:
    rgba(15,98,254,.08);

    color:#0f62fe;

    padding:12px 24px;

    border-radius:50px;

    font-weight:700;

    margin-bottom:25px;

    border:1px solid rgba(15,98,254,.10);

}

.about-hero h1{

    font-size:clamp(3rem,5vw,5rem);

    line-height:1.15;

    max-width:700px;

    margin-bottom:25px;
}

.about-hero h1 span{

    background:
    linear-gradient(
        135deg,
        #0f62fe,
        #06b6d4
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.about-hero p{

    max-width:850px;

    margin:30px auto;

    color:#667085;

    font-size:1.05rem;

    line-height:1.9;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:18px;

    margin-top:40px;

}

/* ==========================================
   WHO WE ARE
========================================== */

.who-we-are{

    padding:110px 0;

    background:#ffffff;

}

.about-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:55px;

}

.about-card{

    background:#ffffff;

    padding:40px;

    border-radius:24px;

    text-align:center;

    border:1px solid rgba(15,98,254,.08);

    box-shadow:
    0 15px 40px rgba(0,0,0,.06);

    transition:.4s ease;

    position:relative;

    overflow:hidden;

}

.about-card::before{

    content:"";

    position:absolute;

    top:-80px;
    right:-80px;

    width:160px;
    height:160px;

    background:
    rgba(15,98,254,.05);

    border-radius:50%;

    transition:.4s;

}

.about-card:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 25px 60px rgba(15,98,254,.15);

}

.about-card:hover::before{

    transform:scale(1.3);

}

.about-icon{

    width:82px;
    height:82px;

    margin:auto;

    margin-bottom:22px;

    border-radius:22px;

    background:
    linear-gradient(
        135deg,
        #0f62fe,
        #1e88e5
    );

    color:#ffffff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    box-shadow:
    0 15px 35px rgba(15,98,254,.25);

}

.about-card h3{

    font-size:1.4rem;

    margin-bottom:12px;

    color:#0b0f1a;

}

.about-card p{

    color:#667085;

    line-height:1.8;

}

/* ==========================================
   STATS
========================================== */

.about-stats{

    padding:120px 0;

    background:#f8fbff;

    position:relative;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.stat-card{

    text-align:center;

    background:#ffffff;

    padding:40px 25px;

    border-radius:24px;

    border:1px solid rgba(15,98,254,.08);

    box-shadow:
    0 15px 40px rgba(0,0,0,.06);

    transition:.4s ease;

    position:relative;

    overflow:hidden;

}

.stat-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:
    linear-gradient(
        90deg,
        #0f62fe,
        #06b6d4
    );

}

.stat-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 25px 60px rgba(15,98,254,.15);

}

.stat-card h2{

    color:#0f62fe;

    font-size:3rem;

    font-weight:900;

    margin-bottom:10px;

}

.stat-card p{

    color:#667085;

    font-weight:600;

}

/* ==========================================
   MISSION & VISION
========================================== */

.mission-vision{

    padding:120px 0;

    background:#ffffff;

}

.mv-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

    margin-top:60px;

}

.mv-card{

    background:#ffffff;

    padding:50px;

    border-radius:30px;

    text-align:center;

    border:1px solid rgba(15,98,254,.08);

    box-shadow:
    0 15px 40px rgba(0,0,0,.06);

    transition:.4s ease;

    position:relative;

    overflow:hidden;

}

.mv-card::before{

    content:"";

    position:absolute;

    top:-80px;
    right:-80px;

    width:180px;
    height:180px;

    border-radius:50%;

    background:
    rgba(15,98,254,.05);

    transition:.4s ease;

}

.mv-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 25px 60px rgba(15,98,254,.15);

}

.mv-card:hover::before{

    transform:scale(1.3);

}

.mv-icon{

    width:90px;
    height:90px;

    background:
    linear-gradient(
        135deg,
        #0f62fe,
        #1e88e5
    );

    color:#ffffff;

    font-size:32px;

    border-radius:25px;

    margin:0 auto 25px;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:
    0 15px 35px rgba(15,98,254,.25);

}

.mv-card h3{

    font-size:1.7rem;

    margin-bottom:15px;

    color:#0b0f1a;

}

.mv-card p{

    color:#667085;

    line-height:1.8;

}

/* ==========================================
   WHY HDS SECTION
========================================== */

.why-hds{

    padding:120px 0;

    background:#f8fbff;

}


.why-grid{

    display:grid;

    grid-template-columns:
    1fr 1fr;

    gap:70px;

    align-items:center;

}


/* BADGE */

.section-badge{

    display:inline-flex;

    align-items:center;

    gap:8px;

    background:
    rgba(15,98,254,.08);

    color:#0f62fe;

    padding:10px 22px;

    border-radius:50px;

    font-weight:700;

    margin-bottom:22px;

    border:
    1px solid rgba(15,98,254,.12);

}


/* CONTENT */

.why-content h2{

    font-size:clamp(2.2rem,4vw,3rem);

    line-height:1.15;

    margin-bottom:25px;

    color:#0b0f1a;

}


.why-content p{

    color:#667085;

    font-size:17px;

    line-height:1.9;

    margin-bottom:35px;

}


/* LIST */

.why-list{

    display:flex;

    flex-direction:column;

    gap:18px;

}


.why-item{

    display:flex;

    align-items:center;

    gap:14px;

    font-weight:600;

    color:#374151;

}


.why-item i{

    color:#0f62fe;

    font-size:18px;

}


/* ==========================================
   IMAGE AREA
========================================== */


.why-image{

    position:relative;

    min-height:550px;

    border-radius:35px;

    overflow:hidden;

    box-shadow:

    0 30px 80px rgba(15,98,254,.18);

}


.why-image::after{

    content:"";

    position:absolute;

    inset:0;

    background:

    linear-gradient(
        180deg,
        transparent,
        rgba(15,98,254,.15)
    );

}


/* OFFICE IMAGE */


.why-image img{

    width:100%;

    height:100%;

    min-height:550px;

    object-fit:cover;

    display:block;

    transition:.6s ease;

}


.why-image:hover img{

    transform:scale(1.06);

}



/* FLOATING BADGES */


.image-badge{

    position:absolute;

    z-index:2;

    background:#fff;

    padding:18px 25px;

    border-radius:18px;

    font-weight:700;

    color:#111827;

    box-shadow:

    0 20px 50px rgba(0,0,0,.15);

    display:flex;

    align-items:center;

    gap:10px;

    animation:
    floatBadge 4s ease-in-out infinite;

}


.image-badge i{

    color:#0f62fe;

    font-size:20px;

}



.badge-1{

    top:35px;

    left:35px;

}


.badge-2{

    bottom:35px;

    right:35px;

    animation-delay:1.5s;

}



/* ANIMATION */


@keyframes floatBadge{


    0%{

        transform:
        translateY(0);

    }


    50%{

        transform:
        translateY(-12px);

    }


    100%{

        transform:
        translateY(0);

    }

}



/* ==========================================
   RESPONSIVE
========================================== */


@media(max-width:992px){


    .why-grid{

        grid-template-columns:1fr;

        gap:50px;

    }


    .why-content{

        text-align:center;

    }


    .why-list{

        align-items:center;

    }


    .why-item{

        justify-content:center;

    }


    .why-image{

        min-height:450px;

    }


    .why-image img{

        min-height:450px;

    }


}



@media(max-width:768px){


    .why-hds{

        padding:80px 0;

    }


    .why-content h2{

        font-size:2rem;

    }


    .why-image{

        min-height:330px;

        border-radius:25px;

    }


    .why-image img{

        min-height:330px;

    }


    .image-badge{

        padding:14px 18px;

        font-size:14px;

    }


}

/* ==========================================
   PROCESS SECTION
========================================== */

.process-section{

    padding:120px 0;

    background:#ffffff;

}

.process-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:60px;

}

.process-card{

    background:#ffffff;

    border-radius:24px;

    padding:40px;

    text-align:center;

    border:1px solid rgba(15,98,254,.08);

    box-shadow:
    0 15px 40px rgba(0,0,0,.06);

    position:relative;

    overflow:hidden;

    transition:.4s ease;

}

.process-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:
    linear-gradient(
        90deg,
        #0f62fe,
        #06b6d4
    );

}

.process-card:hover{

    transform:
    translateY(-12px);

    box-shadow:
    0 25px 60px rgba(15,98,254,.15);

}

.process-number{

    width:85px;
    height:85px;

    margin:0 auto 25px;

    border-radius:50%;

    background:
    linear-gradient(
        135deg,
        #0f62fe,
        #1e88e5
    );

    color:#ffffff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:26px;

    font-weight:800;

    box-shadow:
    0 15px 35px rgba(15,98,254,.25);

    animation:
    floatProcess 4s ease-in-out infinite;

}

.process-card h3{

    margin-bottom:15px;

    color:#0b0f1a;

}

.process-card p{

    color:#667085;

    line-height:1.8;

}

@keyframes floatProcess{

    0%{transform:translateY(0);}
    50%{transform:translateY(-8px);}
    100%{transform:translateY(0);}

}

/* ==========================================
   TEAM SECTION
========================================== */

.team-preview{

    padding:120px 0;

    background:#f8fbff;

}

.team-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:60px;

}

.team-card{

    background:#ffffff;

    padding:40px;

    border-radius:25px;

    text-align:center;

    border:1px solid rgba(15,98,254,.08);

    box-shadow:
    0 15px 40px rgba(0,0,0,.06);

    transition:.4s ease;

    position:relative;

    overflow:hidden;

}

.team-card:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 25px 60px rgba(15,98,254,.15);

}

.team-img{

    width:120px;
    height:120px;

    margin:0 auto 25px;

    border-radius:50%;

    background:
    linear-gradient(
        135deg,
        #0f62fe,
        #1e88e5
    );

    color:#ffffff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:42px;

    box-shadow:
    0 15px 35px rgba(15,98,254,.25);

    animation:
    teamFloat 5s ease-in-out infinite;

}

.team-card h3{

    color:#0b0f1a;

    margin-bottom:8px;

}

.team-card p{

    color:#667085;

}

@keyframes teamFloat{

    0%{transform:translateY(0);}
    50%{transform:translateY(-10px);}
    100%{transform:translateY(0);}

}

/* ==========================================
   ACHIEVEMENTS
========================================== */

.achievements{

    padding:120px 0;

    background:#ffffff;

}

.achievement-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.achievement-card{

    text-align:center;

    padding:40px;

    border-radius:25px;

    background:#ffffff;

    border:1px solid rgba(15,98,254,.08);

    box-shadow:
    0 15px 40px rgba(0,0,0,.06);

    transition:.4s ease;

    position:relative;

    overflow:hidden;

}

.achievement-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:
    linear-gradient(
        90deg,
        #0f62fe,
        #06b6d4
    );

}

.achievement-card:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 25px 60px rgba(15,98,254,.15);

}

.achievement-card h2{

    font-size:3rem;

    font-weight:900;

    color:#0f62fe;

    margin-bottom:10px;

}

.achievement-card p{

    color:#667085;

    font-weight:600;

}

/* ==========================================
CTA SECTION
========================================== */

.about-cta{
    padding:120px 0;
    background:
    linear-gradient(
        180deg,
        #f8fbff,
        #ffffff
    );
}

.cta-box{

    position:relative;
    overflow:hidden;

    background:
    linear-gradient(
        135deg,
        #0f62fe,
        #1d4ed8
    );

    padding:90px 70px;

    border-radius:35px;

    text-align:center;

    color:#ffffff;

    box-shadow:
    0 30px 80px rgba(15,98,254,.25);

}

.cta-box::before{

    content:"";

    position:absolute;

    width:400px;
    height:400px;

    background:
    rgba(255,255,255,.08);

    border-radius:50%;

    top:-180px;
    right:-120px;

}

.cta-box::after{

    content:"";

    position:absolute;

    width:250px;
    height:250px;

    background:
    rgba(255,255,255,.05);

    border-radius:50%;

    bottom:-120px;
    left:-80px;

}

.cta-box h2{

    font-size:3rem;

    margin-bottom:20px;

    position:relative;
    z-index:2;

}

.cta-box p{

    max-width:750px;

    margin:auto;

    line-height:1.9;

    opacity:.95;

    position:relative;
    z-index:2;

}

.cta-buttons{

    margin-top:40px;

    display:flex;

    justify-content:center;

    gap:20px;

    position:relative;
    z-index:2;

}

.cta-buttons .btn-secondary{

    background:#ffffff;

    color:#0f62fe;

    font-weight:700;

}

/* ==========================================
TEAM HIERARCHY
========================================== */

.team-hierarchy{

    padding:120px 0;

    background:#f8fbff;

}

.team-row{

    display:flex;

    justify-content:center;

    gap:35px;

    flex-wrap:wrap;

    margin-top:45px;

}

.member-box{

    width:450px;

    background:#ffffff;

    border-radius:28px;

    padding:35px;

    text-align:center;

    border:1px solid rgba(15,98,254,.08);

    box-shadow:
    0 15px 40px rgba(0,0,0,.06);

    transition:.4s ease;

    position:relative;

    overflow:hidden;

}

.member-box::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:
    linear-gradient(
        90deg,
        #0f62fe,
        #06b6d4
    );

}

.member-box:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 25px 70px rgba(15,98,254,.15);

}

.member-box img{

    width:120px;

    height:120px;

    border-radius:24px;

    object-fit:cover;

    margin-bottom:18px;

    transition:.4s ease;

}

.member-box:hover img{

    transform:scale(1.05);

}

.member-box h3{

    font-size:1.6rem;

    margin-bottom:8px;

    color:#0b0f1a;

}

.role{

    color:#0f62fe;

    font-weight:700;

    margin-bottom:15px;

}

.mini-bio{

    color:#667085;

    line-height:1.8;

    margin-bottom:25px;

}

.member-btn{

    border:none;

    background:
    linear-gradient(
        135deg,
        #0f62fe,
        #1d4ed8
    );

    color:#ffffff;

    padding:14px 28px;

    border-radius:50px;

    cursor:pointer;

    font-weight:700;

    transition:.35s ease;

}

.member-btn:hover{

    transform:
    translateY(-3px);

    box-shadow:
    0 15px 35px rgba(15,98,254,.30);

}

/* ==========================================
TEAM MODAL
========================================== */

.team-modal{

    display:none;

    position:fixed;

    inset:0;

    background:
    rgba(15,23,42,.75);

    backdrop-filter:blur(8px);

    z-index:9999;

}

.modal-content{

    background:#ffffff;

    max-width:750px;

    width:92%;

    margin:60px auto;

    padding:45px;

    border-radius:30px;

    text-align:center;

    position:relative;

    animation:popup .35s ease;

}

.modal-content img{

    width:180px;

    height:180px;

    border-radius:24px;

    object-fit:cover;

    margin-bottom:20px;

}

.close-modal{

    position:absolute;

    top:20px;
    right:25px;

    font-size:32px;

    cursor:pointer;

    color:#0b0f1a;

    transition:.3s ease;

}

.close-modal:hover{

    color:#0f62fe;

    transform:rotate(90deg);

}

/* ==========================================
POPUP ANIMATION
========================================== */

@keyframes popup{

    from{

        opacity:0;

        transform:
        translateY(30px)
        scale(.95);

    }

    to{

        opacity:1;

        transform:
        translateY(0)
        scale(1);

    }

}

/* ==========================================
RESPONSIVE
========================================== */

@media(max-width:991px){

    .cta-box{

        padding:60px 35px;

    }

    .cta-box h2{

        font-size:2.2rem;

    }

    .cta-buttons{

        flex-direction:column;

    }

}

@media(max-width:768px){

    .member-box{

        width:100%;

    }

    .modal-content{

        padding:30px;

    }

}

/* ==========================================
   COMPANY ACHIEVEMENTS
========================================== */

.company-achievements{

    padding:120px 0;

    background:#ffffff;

}

.achievement-showcase{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

.achievement-box{

    background:#ffffff;

    padding:45px 35px;

    border-radius:28px;

    text-align:center;

    border:1px solid rgba(15,98,254,.08);

    box-shadow:
    0 15px 40px rgba(0,0,0,.06);

    transition:.4s ease;

    position:relative;

    overflow:hidden;

}

.achievement-box::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:
    linear-gradient(
        90deg,
        #0f62fe,
        #06b6d4
    );

}

.achievement-box:hover{

    transform:translateY(-12px);

    box-shadow:
    0 25px 60px rgba(15,98,254,.15);

}

.achievement-box i{

    font-size:50px;

    color:#0f62fe;

    margin-bottom:20px;

    animation:iconFloat 4s ease-in-out infinite;

}

.achievement-box h3{

    font-size:3rem;

    font-weight:900;

    color:#0f62fe;

    margin-bottom:10px;

}

.achievement-box p{

    color:#667085;

    line-height:1.8;

}

/* ==========================================
    JOURNEY SECTION
========================================== */

.journey-section{

    padding:120px 0;

    background:#f8fbff;

}

.journey-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

.journey-card{

    background:#ffffff;

    padding:40px;

    border-radius:28px;

    border:1px solid rgba(15,98,254,.08);

    box-shadow:
    0 15px 40px rgba(0,0,0,.06);

    transition:.4s ease;

    position:relative;

    overflow:hidden;

}

.journey-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:
    linear-gradient(
        90deg,
        #0f62fe,
        #06b6d4
    );

}

.journey-card:hover{

    transform:translateY(-12px);

    box-shadow:
    0 25px 60px rgba(15,98,254,.15);

}

.journey-card i{

    font-size:45px;

    color:#0f62fe;

    margin-bottom:20px;

    animation:iconFloat 4s ease-in-out infinite;

}

.journey-card h3{

    margin-bottom:15px;

    color:#0b0f1a;

    font-size:1.4rem;

}

.journey-card p{

    color:#667085;

    line-height:1.8;

}

/* ==========================================
   ICON FLOAT ANIMATION
========================================== */

@keyframes iconFloat{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-8px);
    }

    100%{
        transform:translateY(0);
    }

}

/* ==========================================
   FLOATING WHATSAPP
========================================== */

.floating-whatsapp{

    position:fixed;

    bottom:90px;

    right:20px;

    width:62px;

    height:62px;

    background:#25D366;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    color:#ffffff;

    font-size:30px;

    z-index:9999;

    box-shadow:
    0 15px 40px rgba(37,211,102,.35);

    animation:
    whatsappFloat 3s ease-in-out infinite;

    transition:.3s ease;

}

.floating-whatsapp:hover{

    transform:scale(1.08);

    background:#1ebe5d;

}

@keyframes whatsappFloat{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-8px);
    }

    100%{
        transform:translateY(0);
    }

}

/* ==========================================
   PREMIUM FOOTER
========================================== */

.footer{

    position:relative;

    overflow:hidden;

    background:
    linear-gradient(
        135deg,
        #0b0f1a,
        #111827
    );

    color:#ffffff;

    padding-top:100px;

}

.footer::before{

    content:"";

    position:absolute;

    top:-250px;
    right:-200px;

    width:500px;
    height:500px;

    border-radius:50%;

    background:
    rgba(15,98,254,.08);

    filter:blur(120px);

}

.footer-grid{

    display:grid;

    grid-template-columns:
    2fr 1fr 1fr 1.2fr;

    gap:50px;

    padding-bottom:70px;

    position:relative;
    z-index:2;

}

/* ==========================================
   LOGO AREA
========================================== */

.logo{

display:flex;
align-items:center;
gap:12px;

text-decoration:none;

}

.logo-image{

width:48px;
height:48px;

object-fit:contain;

flex-shrink:0;

}

.logo-text{

display:flex;
flex-direction:column;

}

.logo-text span:first-child{

font-size:16px;
font-weight:800;

color:var(--dark);

line-height:1.2;

}

.logo-text span:last-child{

font-size:11px;
font-weight:600;

color:var(--muted);

}

@media(max-width:768px){

.logo-image{

width:42px;
height:42px;

}

.logo-text span:first-child{

font-size:14px;

}

.logo-text span:last-child{

font-size:10px;

}

}

.footer-logo{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:25px;

}

.footer-logo-icon{

    width:65px;

    height:65px;

    border-radius:18px;

    background:
    linear-gradient(
        135deg,
        #0f62fe,
        #06b6d4
    );

    display:flex;

    align-items:center;

    justify-content:center;

    color:#ffffff;

    font-size:26px;

    font-weight:800;

    box-shadow:
    0 15px 35px rgba(15,98,254,.25);

}

.footer-description{

    color:rgba(255,255,255,.70);

    line-height:1.9;

    margin-bottom:25px;

    max-width:420px;

}

/* ==========================================
   FOOTER COLUMNS
========================================== */

.footer-column h4{

    color:#ffffff;

    margin-bottom:22px;

    font-size:18px;

    font-weight:700;

}

.footer-column ul{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-column li{

    margin-bottom:14px;

}

.footer-column a{

    text-decoration:none;

    color:rgba(255,255,255,.70);

    transition:.3s ease;

}

.footer-column a:hover{

    color:#0f62fe;

    padding-left:6px;

}

/* ==========================================
   SOCIAL ICONS
========================================== */

.footer-social{

    display:flex;

    gap:12px;

    flex-wrap:wrap;

}

.footer-social a{

    width:48px;

    height:48px;

    border-radius:14px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
    rgba(255,255,255,.08);

    color:#ffffff;

    text-decoration:none;

    transition:.35s ease;

}

.footer-social a:hover{

    background:
    linear-gradient(
        135deg,
        #0f62fe,
        #06b6d4
    );

    transform:
    translateY(-5px);

    box-shadow:
    0 15px 30px rgba(15,98,254,.25);

}

/* ==========================================
   FOOTER BOTTOM
========================================== */

.footer-bottom{

    position:relative;

    z-index:2;

    padding:25px 0;

    border-top:
    1px solid rgba(255,255,255,.08);

    text-align:center;

    color:
    rgba(255,255,255,.65);

    font-size:15px;

}

.footer-bottom strong{

    color:#0f62fe;

}

/* ==========================================
   FOOTER RESPONSIVE
========================================== */

@media(max-width:992px){

    .footer-grid{

        grid-template-columns:
        1fr 1fr;

        gap:40px;

    }

}

@media(max-width:768px){

    .footer{

        text-align:center;

        padding-top:80px;

    }

    .footer-grid{

        grid-template-columns:1fr;

        gap:35px;

    }

    .footer-logo{

        justify-content:center;

    }

    .footer-social{

        justify-content:center;

    }

    .footer-description{

        max-width:500px;

        margin-left:auto;
        margin-right:auto;

    }

    .footer-column{

        text-align:center;

    }

}

/* ==========================================
   PREMIUM NAVBAR
========================================== */

.navbar{

    position:sticky;

    top:0;

    z-index:9999;

    background:
    rgba(255,255,255,.92);

    backdrop-filter:blur(16px);

    -webkit-backdrop-filter:blur(16px);

    border-bottom:
    1px solid rgba(15,98,254,.08);

    box-shadow:
    0 4px 20px rgba(0,0,0,.03);

}

.nav-wrapper{

    width:min(1250px,94%);

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:16px 0;

}

/* ==========================================
   LOGO
========================================== */

.logo{

    display:flex;

    align-items:center;

    gap:14px;

    text-decoration:none;

}

.logo-icon{

    width:60px;
    height:60px;

    flex-shrink:0;

    display:flex;

    align-items:center;

    justify-content:center;

}

.logo-icon img{

    width:100%;
    height:100%;

    object-fit:contain;

    display:block;

}

.logo-text{

    display:flex;

    flex-direction:column;

}

.logo-text h3{

    font-size:1.2rem;

    font-weight:800;

    color:#0b0f1a;

    line-height:1.1;

}

.logo-text span{

    font-size:12px;

    color:#667085;

}

/* ==========================================
   NAV LINKS
========================================== */

.nav-links{

    display:flex;

    align-items:center;

    gap:30px;

}

.nav-links a{

    text-decoration:none;

    color:#374151;

    font-weight:600;

    position:relative;

    transition:.3s ease;

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-6px;

    width:0;
    height:2px;

    background:#0f62fe;

    transition:.3s ease;

}

.nav-links a:hover,
.nav-links a.active{

    color:#0f62fe;

}

.nav-links a:hover::after,
.nav-links a.active::after{

    width:100%;

}

/* ==========================================
   CTA BUTTON
========================================== */

.nav-btn{

    text-decoration:none;

    color:#ffffff;

    background:
    linear-gradient(
        135deg,
        #0f62fe,
        #1d4ed8
    );

    padding:14px 28px;

    border-radius:14px;

    font-weight:700;

    transition:.35s ease;

    box-shadow:
    0 12px 25px rgba(15,98,254,.20);

}

.nav-btn:hover{

    transform:
    translateY(-3px);

    box-shadow:
    0 18px 35px rgba(15,98,254,.30);

}

/* ==========================================
   MOBILE MENU BUTTON
========================================== */

.menu-toggle{

    display:none;

    border:none;

    background:none;

    font-size:26px;

    color:#0b0f1a;

    cursor:pointer;

}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:992px){

    .nav-links{

        display:none;

    }

    .nav-btn{

        display:none;

    }

    .menu-toggle{

        display:block;

    }

}

@media(max-width:768px){

    .nav-wrapper{

        padding:14px 0;

    }

    .logo-icon{

        width:52px;
        height:52px;

    }

    .logo-text h3{

        font-size:1rem;

    }

}

/* ==========================================
   PREMIUM NAVBAR
========================================== */

.navbar{
    position:sticky;
    top:0;
    z-index:9999;

    background:rgba(255,255,255,.94);
    backdrop-filter:blur(16px);

    border-bottom:1px solid rgba(15,98,254,.08);

    transition:all .35s ease;
}

.navbar.scrolled{
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.nav-wrapper{
    width:min(1280px,94%);
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:16px 0;
}

/* ==========================================
   LOGO
========================================== */

.logo{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}

.logo-icon{
    width:60px;
    height:60px;

    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;

    transition:.35s ease;
}

.logo-icon img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
}

.logo:hover .logo-icon{
    transform:scale(1.08) rotate(-5deg);
}

.logo-text{
    display:flex;
    flex-direction:column;
}

.logo-text span:first-child{
    font-size:18px;
    font-weight:800;
    color:#111827;
}

.logo-text span:last-child{
    font-size:12px;
    color:#6b7280;
    letter-spacing:.5px;
}

/* ==========================================
   NAVIGATION
========================================== */

.nav-links{
    display:flex;
    align-items:center;
    gap:30px;
}

.nav-links a{
    text-decoration:none;
    color:#374151;
    font-weight:600;

    position:relative;

    transition:.3s ease;
}

.nav-links a:hover,
.nav-links a.active{
    color:#0f62fe;
}

.nav-links a::after{
    content:"";

    position:absolute;
    left:0;
    bottom:-8px;

    width:0;
    height:2px;

    border-radius:20px;

    background:#0f62fe;

    transition:.35s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after{
    width:100%;
}

/* ==========================================
   NAV BUTTON
========================================== */

.nav-btn{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    text-decoration:none;

    padding:14px 28px;

    border-radius:14px;

    font-weight:700;

    color:#ffffff;

    background:
    linear-gradient(
        135deg,
        #0f62fe,
        #2563eb
    );

    box-shadow:
    0 12px 30px rgba(15,98,254,.22);

    transition:.35s ease;

}

.nav-btn:hover{

    transform:
    translateY(-4px);

    box-shadow:
    0 20px 40px rgba(15,98,254,.30);

}

/* ==========================================
   MOBILE MENU BUTTON
========================================== */

.menu-toggle{

    display:none;

    border:none;

    background:none;

    padding:0;

    cursor:pointer;

    color:#0f62fe;

    font-size:28px;

    transition:.3s ease;

}

.menu-toggle:hover{

    transform:scale(1.1);

    color:#2563eb;

}

/* ==========================================
NAVBAR RESPONSIVE
========================================== */

@media (max-width:1100px){

    .nav-links{
        display:none;
    }

    .nav-btn{
        display:none;
    }

    .menu-toggle{
        display:block;
    }

}

@media (max-width:768px){

    .logo-text span:first-child{
        font-size:15px;
    }

    .logo-text span:last-child{
        font-size:10px;
    }

    .logo-icon{
        width:55px;
        height:55px;
    }

}

/* ==========================================
ABOUT PAGE RESPONSIVE FIXES
========================================== */


/* LARGE TABLETS / SMALL LAPTOPS */

@media (max-width:1200px){

    .why-grid{

        gap:45px;

    }


    .why-content h2{

        font-size:2.6rem;

    }


}



/* TABLETS */

@media (max-width:992px){


    .about-grid,
    .stats-grid,
    .process-grid,
    .team-grid,
    .achievement-grid,
    .journey-grid{


        grid-template-columns:
        repeat(2,1fr);


    }



    .mv-grid,
    .why-grid{


        grid-template-columns:
        1fr;


        gap:50px;


    }



    /* NEW IMAGE DESIGN */

    .why-image{


        width:100%;

        min-height:450px;


    }


    .why-image img{


        min-height:450px;


    }



    .why-content{


        text-align:center;


    }



    .why-list{


        align-items:center;


    }



    .why-item{


        justify-content:center;


    }


}



/* MOBILE */

@media (max-width:768px){


    .about-grid,
    .stats-grid,
    .process-grid,
    .team-grid,
    .achievement-grid,
    .journey-grid{


        grid-template-columns:
        1fr;


    }



    .about-hero h1{


        font-size:2.3rem;


    }



    .why-content h2{


        font-size:2rem;


    }



    .why-image{


        min-height:330px;

        border-radius:25px;


    }



    .why-image img{


        min-height:330px;


    }



    .image-badge{


        padding:14px 18px;

        font-size:14px;


    }


}

/* ==========================================
MOBILE MENU
========================================== */

.mobile-overlay{

    position:fixed;
    inset:0;

    background:rgba(0,0,0,.45);

    opacity:0;
    visibility:hidden;

    transition:.3s;

    z-index:9998;
}

.mobile-overlay.active{

    opacity:1;
    visibility:visible;
}

.mobile-menu{

    position:fixed;

    top:0;
    right:-100%;

    width:320px;
    max-width:90%;

    height:100%;

    background:#ffffff;

    z-index:9999;

    padding:30px;

    transition:.4s ease;

    box-shadow:
    -15px 0 40px rgba(0,0,0,.10);
}

.mobile-menu.active{

    right:0;
}

.mobile-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:30px;
}

.close-menu{

    border:none;

    background:#f3f4f6;

    width:45px;
    height:45px;

    border-radius:12px;

    cursor:pointer;

    transition:.3s;
}

.close-menu:hover{

    background:#0f62fe;
    color:#ffffff;
}

.mobile-menu nav{

    display:flex;

    flex-direction:column;

    gap:15px;
}

.mobile-menu nav a{

    text-decoration:none;

    color:#111827;

    padding:14px 18px;

    border-radius:12px;

    font-weight:600;

    transition:.3s;
}

.mobile-menu nav a:hover{

    background:#0f62fe;

    color:#ffffff;
}

/* ==========================================
   WHO WE ARE
========================================== */

.who-we-are{

    padding:120px 0;

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #f9fbff
    );

    position:relative;

}


.section-subtitle{

    max-width:750px;

    margin:22px auto 0;

    color:#667085;

    line-height:1.9;

    font-size:17px;

    text-align:center;

}


/* GRID */

.about-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:32px;

    margin-top:65px;

}


/* CARD */

.about-card{

    background:#ffffff;

    border-radius:28px;

    padding:45px 35px;

    text-align:center;

    position:relative;

    overflow:hidden;

    border:
    1px solid rgba(15,98,254,.08);

    box-shadow:
    0 12px 35px rgba(0,0,0,.05);

    transition:
    transform .4s ease,
    box-shadow .4s ease;

}


/* TOP PREMIUM LINE */

.about-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:
    linear-gradient(
        90deg,
        #0f62fe,
        #06b6d4
    );

    opacity:0;

    transition:.4s;

}


/* FLOATING CIRCLE */

.about-card::after{

    content:"";

    position:absolute;

    width:180px;
    height:180px;

    top:-90px;
    right:-90px;

    border-radius:50%;

    background:
    rgba(15,98,254,.04);

    transition:.5s;

}


/* HOVER */

.about-card:hover{

    transform:
    translateY(-12px);

    box-shadow:
    0 30px 70px rgba(15,98,254,.15);

}


.about-card:hover::before{

    opacity:1;

}


.about-card:hover::after{

    transform:scale(1.3);

}


/* ICON */

.about-icon{

    width:90px;
    height:90px;

    margin:auto auto 28px;

    border-radius:24px;

    background:
    linear-gradient(
        135deg,
        #0f62fe,
        #3f86ff
    );

    display:flex;

    align-items:center;

    justify-content:center;

    color:#ffffff;

    font-size:34px;

    box-shadow:
    0 18px 40px rgba(15,98,254,.25);

    transition:.4s ease;

}


/* ICON HOVER */

.about-card:hover .about-icon{

    transform:
    rotate(-6deg)
    scale(1.08);

}


/* TITLE */

.about-card h3{

    font-size:24px;

    font-weight:800;

    color:#0b0f1a;

    margin-bottom:16px;

}


/* TEXT */

.about-card p{

    color:#667085;

    line-height:1.9;

    font-size:15.5px;

}


/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:992px){

    .about-grid{

        grid-template-columns:
        repeat(2,1fr);

    }

}


@media(max-width:768px){

    .about-grid{

        grid-template-columns:
        1fr;

    }

    .about-card{

        padding:35px 28px;

    }

    .about-icon{

        width:80px;
        height:80px;

        font-size:30px;

    }

}

/* ==========================================
   COMPANY STATS
========================================== */

.about-stats{

    padding:120px 0;

    background:
    linear-gradient(
        180deg,
        #f8fbff,
        #ffffff
    );

    position:relative;

}


.stats-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:30px;

    margin-top:60px;

}


/* CARD */

.stat-card{

    background:#ffffff;

    padding:45px 25px;

    text-align:center;

    border-radius:24px;

    position:relative;

    overflow:hidden;

    border:
    1px solid rgba(15,98,254,.08);

    box-shadow:
    0 12px 35px rgba(0,0,0,.05);

    transition:
    transform .4s ease,
    box-shadow .4s ease;

}


/* TOP GRADIENT LINE */

.stat-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:
    linear-gradient(
        90deg,
        #0f62fe,
        #06b6d4
    );

    opacity:0;

    transition:.4s;

}


/* DECORATIVE GLOW */

.stat-card::after{

    content:"";

    position:absolute;

    width:180px;
    height:180px;

    top:-90px;
    right:-90px;

    border-radius:50%;

    background:
    rgba(15,98,254,.04);

    transition:.5s;

}


/* HOVER */

.stat-card:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 25px 60px rgba(15,98,254,.15);

}


.stat-card:hover::before{

    opacity:1;

}


.stat-card:hover::after{

    transform:scale(1.3);

}


/* NUMBER */

.stat-card h2{

    font-size:48px;

    font-weight:900;

    line-height:1;

    margin-bottom:12px;

    background:
    linear-gradient(
        135deg,
        #0f62fe,
        #06b6d4
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}


/* LABEL */

.stat-card p{

    color:#667085;

    font-weight:700;

    font-size:15px;

    letter-spacing:.3px;

}

/* STAT ICON */

.stat-card i{

    display:block;

    font-size:30px;

    color:#0f62fe;

    margin-bottom:18px;

    transition:.4s ease;

}


/* ICON HOVER */

.stat-card:hover i{

    transform:
    translateY(-4px)
    scale(1.08);

}


/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:992px){

    .stats-grid{

        grid-template-columns:
        repeat(2,1fr);

    }

}


@media(max-width:768px){

    .stats-grid{

        grid-template-columns:
        1fr;

    }

    .stat-card{

        padding:35px 20px;

    }

    .stat-card h2{

        font-size:42px;

    }

}

/* ==========================================
   MISSION & VISION
========================================== */

.mission-vision{

    padding:120px 0;

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #f8fbff
    );

    position:relative;

}


.mv-grid{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:35px;

    margin-top:65px;

}


/* CARD */

.mv-card{

    background:#ffffff;

    padding:50px 40px;

    border-radius:30px;

    text-align:center;

    position:relative;

    overflow:hidden;

    border:
    1px solid rgba(15,98,254,.08);

    box-shadow:
    0 12px 35px rgba(0,0,0,.05);

    transition:
    transform .4s ease,
    box-shadow .4s ease;

}


/* TOP LINE */

.mv-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:
    linear-gradient(
        90deg,
        #0f62fe,
        #06b6d4
    );

    opacity:0;

    transition:.4s;

}


/* DECORATIVE GLOW */

.mv-card::after{

    content:"";

    position:absolute;

    width:200px;
    height:200px;

    top:-100px;
    right:-100px;

    border-radius:50%;

    background:
    rgba(15,98,254,.04);

    transition:.5s;

}


/* HOVER */

.mv-card:hover{

    transform:
    translateY(-12px);

    box-shadow:
    0 30px 70px rgba(15,98,254,.15);

}


.mv-card:hover::before{

    opacity:1;

}


.mv-card:hover::after{

    transform:scale(1.3);

}


/* ICON */

.mv-icon{

    width:95px;
    height:95px;

    margin:0 auto 28px;

    border-radius:26px;

    background:
    linear-gradient(
        135deg,
        #0f62fe,
        #3f86ff
    );

    display:flex;

    align-items:center;

    justify-content:center;

    color:#ffffff;

    font-size:36px;

    box-shadow:
    0 18px 40px rgba(15,98,254,.25);

    transition:.4s ease;

}


.mv-card:hover .mv-icon{

    transform:
    rotate(-6deg)
    scale(1.08);

}


/* TITLE */

.mv-card h3{

    font-size:28px;

    font-weight:800;

    color:#0b0f1a;

    margin-bottom:18px;

}


/* TEXT */

.mv-card p{

    color:#667085;

    line-height:1.9;

    font-size:16px;

}


/* ==========================================
   MISSION & VISION RESPONSIVE
========================================== */

@media(max-width:992px){

    .mv-grid{

        grid-template-columns:1fr;

        gap:30px;

    }

    .mv-card{

        max-width:700px;

        margin:0 auto;

    }

}


@media(max-width:768px){

    .mission-vision{

        padding:90px 0;

    }

    .mv-card{

        padding:35px 25px;

        border-radius:24px;

    }

    .mv-icon{

        width:80px;
        height:80px;

        font-size:30px;

        margin-bottom:20px;

    }

    .mv-card h3{

        font-size:24px;

    }

    .mv-card p{

        font-size:15px;

        line-height:1.8;

    }

}


@media(max-width:480px){

    .mv-card{

        padding:30px 22px;

    }

    .mv-icon{

        width:75px;
        height:75px;

        font-size:28px;

    }

    .mv-card h3{

        font-size:22px;

    }

}

/* ==========================================
   SERVICES HERO
========================================== */

.services-hero{

    position:relative;

    overflow:hidden;

    padding:160px 0 120px;

    background:
    linear-gradient(
        180deg,
        #f8fbff 0%,
        #ffffff 60%,
        #ffffff 100%
    );

}

/* BACKGROUND GLOWS */

.services-hero::before{

    content:"";

    position:absolute;

    width:650px;
    height:650px;

    top:-300px;
    right:-180px;

    border-radius:50%;

    background:
    radial-gradient(
        rgba(15,98,254,.10),
        transparent 70%
    );

}

.services-hero::after{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    bottom:-250px;
    left:-150px;

    border-radius:50%;

    background:
    radial-gradient(
        rgba(6,182,212,.08),
        transparent 70%
    );

}

.services-hero-content{

    position:relative;

    z-index:2;

    max-width:900px;

    margin:auto;

    text-align:center;

}

/* BADGE */

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 22px;

    border-radius:999px;

    background:
    rgba(15,98,254,.08);

    color:#0f62fe;

    font-weight:700;

    border:1px solid rgba(15,98,254,.12);

    margin-bottom:25px;

}

/* TITLE */

.services-hero h1{

    font-size:clamp(3rem,6vw,5rem);

    line-height:1.1;

    font-weight:800;

    color:#0b0f1a;

    margin-bottom:25px;

}

.services-hero h1 span{

    background:
    linear-gradient(
        135deg,
        #0f62fe,
        #06b6d4
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

}

/* DESCRIPTION */

.services-hero p{

    max-width:760px;

    margin:auto;

    font-size:1.1rem;

    line-height:1.9;

    color:#667085;

}

/* BUTTONS */

.hero-buttons{

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:18px;

    margin-top:45px;

}

/* PRIMARY */

.hero-btn-primary{

    background:
    linear-gradient(
        135deg,
        #0f62fe,
        #2f7cff
    );

    color:#ffffff;

    text-decoration:none;

    padding:18px 34px;

    border-radius:16px;

    font-weight:700;

    transition:.35s;

    box-shadow:
    0 20px 45px rgba(15,98,254,.25);

}

.hero-btn-primary:hover{

    transform:
    translateY(-5px);

    box-shadow:
    0 30px 60px rgba(15,98,254,.35);

}

/* SECONDARY */

.hero-btn-secondary{

    background:#ffffff;

    color:#0f62fe;

    text-decoration:none;

    padding:18px 34px;

    border-radius:16px;

    font-weight:700;

    border:2px solid rgba(15,98,254,.15);

    transition:.35s;

}

.hero-btn-secondary:hover{

    background:#0f62fe;

    color:#ffffff;

    border-color:#0f62fe;

    transform:
    translateY(-5px);

}

.services-hero-content{
    position:relative;
    z-index:2;
}

.hero-stats{

    display:flex;
    justify-content:center;
    gap:25px;
    margin-top:55px;
    flex-wrap:wrap;

}

.hero-stat{

    background:#ffffff;
    padding:20px 35px;
    border-radius:20px;

    border:1px solid rgba(15,98,254,.08);

    box-shadow:
    0 15px 40px rgba(0,0,0,.06);

    min-width:160px;

    transition:.35s;

}

.hero-stat:hover{

    transform:translateY(-8px);

    box-shadow:
    0 25px 50px rgba(15,98,254,.12);

}

.hero-stat h3{

    font-size:2rem;
    color:#0f62fe;
    margin-bottom:5px;

}

.hero-stat span{

    color:#667085;
    font-weight:600;

}

.hero-btn-primary i,
.hero-btn-secondary i{

    margin-right:10px;

}

@media(max-width:768px){

    .hero-stats{

        gap:15px;

    }

    .hero-stat{

        width:100%;

    }

}

/* ==========================================
   SERVICES HERO RESPONSIVE
========================================== */

@media(max-width:1200px){

    .services-hero h1{

        font-size:4rem;

    }

}

@media(max-width:992px){

    .services-hero{

        padding:130px 0 100px;

    }

    .services-hero h1{

        font-size:3.4rem;

    }

    .services-hero p{

        max-width:700px;

    }

    .hero-stats{

        justify-content:center;

    }

}

@media(max-width:768px){

    .services-hero{

        padding:110px 0 80px;

    }

    .services-hero h1{

        font-size:2.5rem;

        line-height:1.2;

    }

    .services-hero p{

        font-size:1rem;

        line-height:1.8;

    }

    .hero-buttons{

        flex-direction:column;

        align-items:center;

        gap:15px;

    }

    .hero-btn-primary,
    .hero-btn-secondary{

        width:100%;

        max-width:320px;

        text-align:center;

    }

    .hero-stats{

        flex-direction:column;

        align-items:center;

        gap:15px;

        margin-top:40px;

    }

    .hero-stat{

        width:100%;

        max-width:280px;

    }

}

@media(max-width:480px){

    .services-hero h1{

        font-size:2rem;

    }

    .hero-badge{

        font-size:.85rem;

        padding:10px 18px;

    }

    .hero-stat{

        padding:18px 25px;

    }

    .hero-stat h3{

        font-size:1.8rem;

    }

}

/* ==========================================
   PREMIUM SERVICES SECTION
========================================== */

.services-section{

    padding:130px 0;

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #f8fbff
    );

    position:relative;

    overflow:hidden;

}

.services-section::before{

    content:"";

    position:absolute;

    top:-250px;
    right:-250px;

    width:550px;
    height:550px;

    border-radius:50%;

    background:
    radial-gradient(
        rgba(15,98,254,.08),
        transparent 70%
    );

}

.services-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:30px;

    margin-top:70px;

    position:relative;

    z-index:2;

}

.service-card{

    background:#ffffff;

    padding:40px 30px;

    border-radius:30px;

    text-align:center;

    position:relative;

    overflow:hidden;

    border:1px solid rgba(15,98,254,.08);

    transition:.45s ease;

    box-shadow:
    0 15px 40px rgba(0,0,0,.05);

}

.service-card::before{

    content:"";

    position:absolute;

    top:-100px;
    right:-100px;

    width:220px;
    height:220px;

    border-radius:50%;

    background:
    rgba(15,98,254,.05);

    transition:.45s;

}

.service-card:hover{

    transform:
    translateY(-14px);

    box-shadow:
    0 30px 70px rgba(15,98,254,.16);

    border-color:
    rgba(15,98,254,.20);

}

.service-card:hover::before{

    transform:
    scale(1.3);

}

.service-card i{

    width:95px;
    height:95px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:auto auto 25px;

    border-radius:26px;

    background:
    linear-gradient(
        135deg,
        #0f62fe,
        #3f86ff
    );

    color:#ffffff;

    font-size:36px;

    box-shadow:
    0 18px 40px rgba(15,98,254,.25);

    transition:.4s;

}

.service-card:hover i{

    transform:
    rotate(-8deg)
    scale(1.08);

}

.service-card h3{

    font-size:1.45rem;

    margin-bottom:15px;

    color:#111827;

    font-weight:800;

}

.service-card p{

    color:#667085;

    line-height:1.9;

    font-size:15px;

}

.service-card::after{

    content:"";

    position:absolute;

    left:0;
    bottom:0;

    width:100%;
    height:4px;

    background:
    linear-gradient(
        90deg,
        #0f62fe,
        #3f86ff
    );

    transform:scaleX(0);

    transition:.4s;

}

.service-card:hover::after{

    transform:scaleX(1);

}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:1200px){

    .services-grid{

        grid-template-columns:
        repeat(3,1fr);

    }

}

@media(max-width:992px){

    .services-grid{

        grid-template-columns:
        repeat(2,1fr);

    }

}

@media(max-width:768px){

    .services-section{

        padding:100px 0;

    }

    .services-grid{

        grid-template-columns:1fr;

        gap:25px;

    }

    .service-card{

        padding:35px 25px;

    }

}

/* ==========================================
   SERVICES CTA
========================================== */

.services-cta{
    padding:140px 0;
    background:
    linear-gradient(
        180deg,
        #f8fbff,
        #ffffff
    );
    position:relative;
}

.cta-box{
    max-width:1100px;
    margin:auto;
    text-align:center;

    padding:90px 70px;

    border-radius:36px;

    background:
    linear-gradient(
        135deg,
        #0f62fe,
        #2f7cff
    );

    color:#fff;

    position:relative;
    overflow:hidden;

    box-shadow:
    0 35px 90px rgba(15,98,254,.28);
}

/* Background Glow Effects */

.cta-box::before{
    content:"";

    position:absolute;

    width:420px;
    height:420px;

    border-radius:50%;

    background:
    rgba(255,255,255,.08);

    top:-200px;
    right:-120px;
}

.cta-box::after{
    content:"";

    position:absolute;

    width:320px;
    height:320px;

    border-radius:50%;

    background:
    rgba(255,255,255,.06);

    bottom:-160px;
    left:-100px;
}

.cta-badge{
    display:inline-flex;

    align-items:center;
    gap:10px;

    padding:12px 22px;

    border-radius:999px;

    background:
    rgba(255,255,255,.15);

    border:
    1px solid rgba(255,255,255,.20);

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:25px;

    backdrop-filter:blur(10px);
}

.cta-box h2{
    font-size:clamp(2.5rem,5vw,4rem);
    line-height:1.15;
    margin-bottom:20px;
}

.cta-box p{
    max-width:760px;
    margin:auto;

    line-height:1.9;

    font-size:18px;

    color:
    rgba(255,255,255,.92);
}

.cta-buttons{
    margin-top:45px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;
}

/* Primary Button */

.cta-btn-primary{
    background:#ffffff;

    color:#0f62fe;

    text-decoration:none;

    padding:18px 36px;

    border-radius:16px;

    font-weight:700;

    transition:.35s ease;

    box-shadow:
    0 15px 35px rgba(0,0,0,.15);
}

.cta-btn-primary:hover{
    transform:
    translateY(-5px)
    scale(1.03);
}

/* Secondary Button */

.cta-btn-secondary{
    border:
    2px solid rgba(255,255,255,.25);

    color:#ffffff;

    text-decoration:none;

    padding:18px 36px;

    border-radius:16px;

    font-weight:700;

    display:flex;

    align-items:center;

    gap:10px;

    transition:.35s ease;

    backdrop-filter:blur(10px);
}

.cta-btn-secondary:hover{
    background:
    rgba(255,255,255,.12);

    transform:
    translateY(-5px);
}

/* ==========================================
   CTA RESPONSIVE
========================================== */

@media(max-width:992px){

    .cta-box{
        padding:70px 45px;
    }

}

@media(max-width:768px){

    .cta-box{
        padding:55px 25px;
        border-radius:28px;
    }

    .cta-box h2{
        font-size:2.2rem;
    }

    .cta-box p{
        font-size:1rem;
    }

    .cta-buttons{
        flex-direction:column;
        align-items:center;
    }

    .cta-btn-primary,
    .cta-btn-secondary{
        width:100%;
        max-width:320px;
        justify-content:center;
    }

}

/* ==========================================
PREMIUM FOOTER
========================================== */

.footer{
    background:#0b0f1a;
    color:#ffffff;
    padding-top:100px;
    margin-top:80px;
    position:relative;
    overflow:hidden;
}

.footer::before{
    content:"";

    position:absolute;

    top:-250px;
    right:-250px;

    width:500px;
    height:500px;

    border-radius:50%;

    background:
    rgba(15,98,254,.05);
}

.footer .container{
    position:relative;
    z-index:2;
}

.footer-grid{
    display:grid;

    grid-template-columns:
    2fr 1fr 1fr 1.2fr;

    gap:60px;

    padding-bottom:60px;
}

/* LOGO */

.footer-logo{
    display:flex;
    align-items:center;
    gap:15px;

    margin-bottom:22px;
}

.footer-logo-icon{
    width:60px;
    height:60px;

    border-radius:18px;

    background:
    linear-gradient(
        135deg,
        #0f62fe,
        #2f7cff
    );

    display:flex;
    align-items:center;
    justify-content:center;

    color:#ffffff;

    font-size:24px;
    font-weight:800;

    box-shadow:
    0 15px 35px rgba(15,98,254,.25);
}

.footer-logo-text h3{
    margin:0;
    color:#ffffff;
    font-size:20px;
}

.footer-logo-text p{
    margin-top:4px;
    color:rgba(255,255,255,.55);
    font-size:13px;
}

.footer-description{
    color:rgba(255,255,255,.65);
    line-height:1.9;
    margin-bottom:25px;
}

/* COLUMN TITLES */

.footer-column h4{
    color:#ffffff;
    font-size:18px;
    margin-bottom:22px;
}

/* LISTS */

.footer-column ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-column li{
    margin-bottom:14px;
}

/* LINKS */

.footer-column a{
    text-decoration:none;

    color:rgba(255,255,255,.65);

    transition:.3s ease;
}

.footer-column a:hover{
    color:#0f62fe;
    padding-left:6px;
}

/* SOCIALS */

.footer-social{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.footer-social a{
    width:48px;
    height:48px;

    border-radius:14px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    rgba(255,255,255,.08);

    color:#ffffff;

    text-decoration:none;

    transition:.35s ease;
}

.footer-social a:hover{
    background:#0f62fe;

    transform:
    translateY(-5px);
}

/* BOTTOM */

.footer-bottom{
    border-top:
    1px solid rgba(255,255,255,.08);

    padding:28px 0;

    text-align:center;

    color:rgba(255,255,255,.55);
}

/* ==========================================
FOOTER RESPONSIVE
========================================== */

@media(max-width:991px){

    .footer-grid{
        grid-template-columns:
        1fr 1fr;

        gap:40px;
    }

}

@media(max-width:768px){

    .footer{
        text-align:center;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }

    .footer-logo{
        justify-content:center;
    }

    .footer-social{
        justify-content:center;
    }

    .footer-description{
        margin-left:auto;
        margin-right:auto;
        max-width:500px;
    }

}

/* ==========================================
FLOATING WHATSAPP
========================================== */

.floating-whatsapp{
    position:fixed;

    right:25px;
    bottom:25px;

    width:65px;
    height:65px;

    border-radius:50%;

    background:
    linear-gradient(
        135deg,
        #25d366,
        #1ebe5d
    );

    color:#ffffff;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    font-size:30px;

    z-index:999;

    box-shadow:
    0 15px 35px rgba(37,211,102,.35);

    transition:.35s ease;

    animation:
    whatsappFloat 3s ease-in-out infinite;
}

.floating-whatsapp:hover{
    transform:
    translateY(-5px)
    scale(1.08);
}

@keyframes whatsappFloat{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-8px);
    }

}

/* ==========================================
BACK TO TOP BUTTON
========================================== */

#backToTop{

    position:fixed;

    right:25px;
    bottom:105px;

    width:58px;
    height:58px;

    border:none;

    border-radius:18px;

    background:
    linear-gradient(
        135deg,
        #0f62fe,
        #2f7cff
    );

    color:#ffffff;

    font-size:18px;

    cursor:pointer;

    display:none;

    z-index:998;

    box-shadow:
    0 15px 35px rgba(15,98,254,.25);

    transition:.35s ease;
}

#backToTop:hover{

    transform:
    translateY(-5px)
    scale(1.05);

}

/* ==========================================
NAVBAR ANIMATION
========================================== */

.navbar{

    animation:
    navbarDrop .8s ease;
}

@keyframes navbarDrop{

    from{

        opacity:0;

        transform:
        translateY(-20px);

    }

    to{

        opacity:1;

        transform:
        translateY(0);

    }

}

/* ==========================================
GLOBAL PAGE ANIMATIONS
========================================== */

.hero-badge,
.hero-title,
.hero h1,
.hero-text,
.hero p,
.hero-buttons{

    opacity:0;

    transform:
    translateY(40px);

    animation:
    fadeUp .8s ease forwards;
}

.hero-title,
.hero h1{
    animation-delay:.2s;
}

.hero-text,
.hero p{
    animation-delay:.4s;
}

.hero-buttons{
    animation-delay:.6s;
}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:
        translateY(40px);

    }

    to{

        opacity:1;

        transform:
        translateY(0);

    }

}

/* ==========================================
PAGE LOAD ANIMATION
========================================== */

body{

    animation:
    pageFade .5s ease;
}

@keyframes pageFade{

    from{
        opacity:0;
    }

    to{
        opacity:1;
    }

}

/* ==========================================
RESPONSIVE
========================================== */

@media(max-width:768px){

    .floating-whatsapp{

        width:58px;
        height:58px;

        right:15px;
        bottom:20px;
    }

    #backToTop{

        width:52px;
        height:52px;

        right:15px;
        bottom:90px;
    }

}

/* ==========================================
PRICING HERO
========================================== */

.pricing-hero{

    position:relative;

    overflow:hidden;

    padding:190px 0 130px;

    text-align:center;

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #f7faff
    );

}

.pricing-hero::before{

    content:"";

    position:absolute;

    top:-250px;
    right:-180px;

    width:500px;
    height:500px;

    border-radius:50%;

    background:
    rgba(15,98,254,.06);

    filter:blur(20px);

}

.pricing-hero::after{

    content:"";

    position:absolute;

    bottom:-220px;
    left:-180px;

    width:450px;
    height:450px;

    border-radius:50%;

    background:
    rgba(15,98,254,.05);

    filter:blur(20px);

}

.pricing-hero .container{

    position:relative;

    z-index:2;
}

.pricing-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 24px;

    border-radius:999px;

    background:
    rgba(15,98,254,.08);

    color:#0f62fe;

    font-weight:700;

    margin-bottom:25px;

    border:
    1px solid rgba(15,98,254,.10);
}

.pricing-badge i{

    font-size:15px;
}

.pricing-hero h1{

    font-size:clamp(3rem,5vw,5rem);

    line-height:1.05;

    font-weight:900;

    margin-bottom:25px;

    color:#0b0f1a;
}

.pricing-hero h1 span{

    display:block;

    background:
    linear-gradient(
        135deg,
        #0f62fe,
        #3f86ff
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.pricing-hero p{

    max-width:820px;

    margin:auto;

    color:#667085;

    line-height:1.9;

    font-size:1.15rem;
}

/* ==========================================
PRICING SECTION
========================================== */

.pricing-section{

    padding:120px 0;

    background:#ffffff;
}

.pricing-tabs{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:16px;

    margin:60px 0;
}

.pricing-tab{

    border:none;

    cursor:pointer;

    padding:15px 28px;

    border-radius:999px;

    background:#f5f7fb;

    color:#374151;

    font-weight:700;

    transition:.35s ease;

    box-shadow:
    0 5px 15px rgba(0,0,0,.03);
}

.pricing-tab:hover{

    background:#0f62fe;

    color:#ffffff;

    transform:
    translateY(-4px);
}

.pricing-tab.active{

    background:
    linear-gradient(
        135deg,
        #0f62fe,
        #2f7cff
    );

    color:#ffffff;

    box-shadow:
    0 12px 30px rgba(15,98,254,.25);
}

/* ==========================================
RESPONSIVE
========================================== */

@media(max-width:768px){

    .pricing-hero{

        padding:150px 0 100px;
    }

    .pricing-hero p{

        font-size:1rem;
    }

    .pricing-tabs{

        gap:12px;
    }

    .pricing-tab{

        width:100%;
        max-width:320px;
    }

}

/* ==========================================
PRICING GRID
========================================== */

.pricing-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:35px;

    margin-top:40px;

    align-items:stretch;
}

.pricing-card{

    background:#ffffff;

    padding:45px 40px;

    border-radius:30px;

    position:relative;

    overflow:hidden;

    border:
    1px solid rgba(15,98,254,.08);

    box-shadow:
    0 15px 45px rgba(0,0,0,.06);

    transition:.4s ease;
}

.pricing-card::before{

    content:"";

    position:absolute;

    top:-100px;
    right:-100px;

    width:200px;
    height:200px;

    border-radius:50%;

    background:
    rgba(15,98,254,.04);

    transition:.4s;
}

.pricing-card:hover{

    transform:
    translateY(-12px);

    box-shadow:
    0 30px 70px rgba(15,98,254,.12);
}

.pricing-card:hover::before{

    transform:scale(1.3);
}

.pricing-card h3{

    font-size:28px;

    margin-bottom:10px;

    color:#0b0f1a;
}

.pricing-card p{

    color:#667085;

    line-height:1.8;

    margin-bottom:25px;
}

.price{

    font-size:60px;

    font-weight:900;

    color:#0f62fe;

    margin-bottom:25px;

    line-height:1;
}

.price span{

    font-size:18px;

    color:#667085;

    font-weight:600;
}

.pricing-features{

    list-style:none;

    padding:0;

    margin:0 0 35px;
}

.pricing-features li{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:16px;

    color:#374151;

    font-weight:500;
}

.pricing-features i{

    color:#22c55e;

    font-size:16px;
}

.pricing-btn{

    width:100%;

    display:block;

    text-align:center;

    text-decoration:none;

    padding:16px;

    border-radius:16px;

    font-weight:700;

    color:#ffffff;

    background:
    linear-gradient(
        135deg,
        #0f62fe,
        #2f7cff
    );

    box-shadow:
    0 12px 30px rgba(15,98,254,.20);

    transition:.35s ease;
}

.pricing-btn:hover{

    transform:
    translateY(-4px);
}

/* FEATURED PLAN */

.featured{

    border:
    2px solid #0f62fe;

    transform:
    scale(1.04);

    box-shadow:
    0 30px 80px rgba(15,98,254,.18);
}

.featured .pricing-btn{

    background:
    linear-gradient(
        135deg,
        #0f62fe,
        #3f86ff
    );
}

.popular-badge{

    position:absolute;

    top:18px;
    right:18px;

    background:
    linear-gradient(
        135deg,
        #0f62fe,
        #2f7cff
    );

    color:#ffffff;

    padding:8px 18px;

    border-radius:999px;

    font-size:12px;

    font-weight:800;

    letter-spacing:1px;

    box-shadow:
    0 10px 25px rgba(15,98,254,.25);
}

/* ==========================================
RESPONSIVE
========================================== */

@media(max-width:991px){

    .pricing-grid{

        grid-template-columns:
        repeat(2,1fr);
    }

    .featured{

        transform:none;
    }

}

@media(max-width:768px){

    .pricing-grid{

        grid-template-columns:1fr;
    }

    .pricing-card{

        padding:35px 30px;
    }

    .price{

        font-size:50px;
    }

}

@media(max-width:480px){

    .pricing-card{

        padding:30px 25px;
    }

    .price{

        font-size:44px;
    }

}

/* ==========================================
WHY CHOOSE HDS PREMIUM
========================================== */

.why-hds{

    padding:130px 0;

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #f7faff
    );

    position:relative;

    overflow:hidden;
}

/* BACKGROUND SHAPES */

.why-hds::before{

    content:"";

    position:absolute;

    top:-220px;
    right:-220px;

    width:550px;
    height:550px;

    border-radius:50%;

    background:
    rgba(15,98,254,.05);
}

.why-hds::after{

    content:"";

    position:absolute;

    bottom:-200px;
    left:-200px;

    width:450px;
    height:450px;

    border-radius:50%;

    background:
    rgba(15,98,254,.04);
}

/* GRID */

.why-grid{

    display:grid;

    grid-template-columns:
    1fr 1fr;

    gap:80px;

    align-items:center;

    position:relative;

    z-index:2;
}

/* CONTENT */

.why-content h2{

    font-size:
    clamp(2.5rem,4vw,3.5rem);

    line-height:1.15;

    color:#0b0f1a;

    margin-bottom:25px;
}

.why-content p{

    color:#667085;

    line-height:1.9;

    font-size:17px;

    max-width:650px;
}

/* CHECK LIST */

.why-list{

    margin-top:35px;

    display:flex;

    flex-direction:column;

    gap:18px;
}

.why-item{

    display:flex;

    align-items:center;

    gap:14px;

    font-weight:600;

    color:#374151;
}

.why-item i{

    color:#0f62fe;

    font-size:18px;
}

/* IMAGE */

.why-image{

    position:relative;

    border-radius:35px;

    overflow:hidden;

    min-height:600px;

    box-shadow:
    0 35px 90px rgba(15,98,254,.18);
}

.why-image img{

    width:100%;
    height:100%;

    min-height:600px;

    object-fit:cover;

    display:block;

    transition:.6s ease;
}

.why-image:hover img{

    transform:scale(1.08);
}

/* DARK OVERLAY */

.why-image::after{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.35),
        rgba(0,0,0,.05)
    );
}

/* FLOATING BADGES */

.image-badge{

    position:absolute;

    z-index:5;

    background:#ffffff;

    padding:18px 24px;

    border-radius:20px;

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:700;

    color:#0b0f1a;

    box-shadow:
    0 25px 60px rgba(0,0,0,.15);

    animation:
    badgeFloat 4s ease-in-out infinite;
}

.image-badge i{

    color:#0f62fe;

    font-size:18px;
}

.badge-1{

    top:30px;

    left:30px;
}

.badge-2{

    bottom:30px;

    right:30px;

    animation-delay:1.5s;
}

/* FLOAT ANIMATION */

@keyframes badgeFloat{

    0%,100%{

        transform:translateY(0);
    }

    50%{

        transform:translateY(-12px);
    }
}

/* TABLET */

@media(max-width:992px){

    .why-grid{

        grid-template-columns:1fr;

        gap:60px;
    }

    .why-content{

        text-align:center;
    }

    .why-content p{

        max-width:100%;

        margin:auto;
    }

    .why-list{

        align-items:center;
    }

    .why-item{

        justify-content:center;
    }

    .why-image{

        min-height:500px;
    }

    .why-image img{

        min-height:500px;
    }

}

/* MOBILE */

@media(max-width:768px){

    .why-hds{

        padding:90px 0;
    }

    .why-grid{

        gap:40px;
    }

    .why-content h2{

        font-size:2rem;
    }

    .why-image{

        min-height:320px;

        border-radius:25px;
    }

    .why-image img{

        min-height:320px;
    }

    .image-badge{

        padding:12px 16px;

        font-size:13px;
    }

    .badge-1{

        top:15px;
        left:15px;
    }

    .badge-2{

        bottom:15px;
        right:15px;
    }

}

/* ==========================================
CLIENT REVIEWS
========================================== */

.reviews-section{
    padding:120px 0;
    background:linear-gradient(
        180deg,
        #f8fbff,
        #ffffff
    );
    position:relative;
    overflow:hidden;
}

.reviews-section::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    background:rgba(15,98,254,.04);
    top:-200px;
    right:-150px;
}

.review-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:70px;
}

.review-card{
    background:#ffffff;
    border-radius:30px;
    padding:35px;
    position:relative;
    overflow:hidden;

    border:1px solid rgba(15,98,254,.08);

    box-shadow:
    0 15px 40px rgba(0,0,0,.05);

    transition:.4s ease;
}

.review-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;

    background:linear-gradient(
        90deg,
        #0f62fe,
        #4f8cff
    );
}

.review-card::after{
    content:"";
    position:absolute;

    width:140px;
    height:140px;

    border-radius:50%;

    background:
    rgba(15,98,254,.04);

    top:-70px;
    right:-70px;
}

.review-card:hover{
    transform:translateY(-12px);

    box-shadow:
    0 25px 60px rgba(15,98,254,.15);
}

.review-stars{
    display:flex;
    gap:6px;
    margin-bottom:18px;
}

.review-stars i{
    color:#fbbf24;
    font-size:17px;
}

.review-card p{
    color:#64748b;
    line-height:1.9;
    margin-bottom:25px;
}

.review-user{
    display:flex;
    align-items:center;
    gap:14px;
}

.review-avatar{
    width:55px;
    height:55px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        #0f62fe,
        #4f8cff
    );

    display:flex;
    align-items:center;
    justify-content:center;

    color:#ffffff;

    font-weight:800;
    font-size:18px;

    flex-shrink:0;
}

.review-user h4{
    color:#111827;
    font-size:16px;
    margin-bottom:4px;
    font-weight:700;
}

.review-user span{
    color:#6b7280;
    font-size:13px;
}

/* RESPONSIVE */

@media(max-width:1200px){

    .review-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .reviews-section{
        padding:80px 0;
    }

    .review-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .review-card{
        padding:30px;
    }

}

/* ==========================================
FLOATING ANIMATION
========================================== */

@keyframes floatCard{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-14px);
    }

}

/* ==========================================
CUSTOM QUOTE SECTION
========================================== */

.custom-quote{

    padding:120px 0;

    background:linear-gradient(
        135deg,
        #0f62fe,
        #3f86ff
    );

    position:relative;

    overflow:hidden;

}

.custom-quote::before{

    content:"";

    position:absolute;

    width:420px;
    height:420px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    top:-180px;
    right:-120px;

}

.custom-quote::after{

    content:"";

    position:absolute;

    width:280px;
    height:280px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    bottom:-120px;
    left:-80px;

}

.custom-quote-box{

    max-width:900px;

    margin:auto;

    text-align:center;

    color:#fff;

    position:relative;

    z-index:2;

}

.quote-badge{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:12px 24px;

    border-radius:999px;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(10px);

    font-weight:700;

    margin-bottom:25px;

}

.custom-quote h2{

    font-size:clamp(2.5rem,5vw,4rem);

    font-weight:900;

    line-height:1.1;

    margin-bottom:22px;

}

.custom-quote p{

    max-width:720px;

    margin:auto;

    font-size:18px;

    line-height:1.9;

    color:rgba(255,255,255,.92);

}

/* ==========================================
CONTACT CARDS
========================================== */

.pricing-contact{

    padding:120px 0;

    background:#ffffff;

}

.contact-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

    margin-top:60px;

}

.contact-card{

    text-decoration:none;

    text-align:center;

    padding:50px 40px;

    border-radius:32px;

    color:#fff;

    position:relative;

    overflow:hidden;

    transition:.4s ease;

    box-shadow:
    0 20px 50px rgba(0,0,0,.08);

}

.contact-card::before{

    content:"";

    position:absolute;

    width:180px;
    height:180px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    top:-80px;
    right:-80px;

}

.contact-card:hover{

    transform:translateY(-12px);

    box-shadow:
    0 30px 70px rgba(0,0,0,.15);

}

.contact-card i{

    font-size:64px;

    margin-bottom:22px;

    position:relative;

    z-index:2;

}

.contact-card h3{

    font-size:30px;

    font-weight:800;

    margin-bottom:12px;

    position:relative;

    z-index:2;

}

.contact-card p{

    color:rgba(255,255,255,.92);

    line-height:1.8;

    position:relative;

    z-index:2;

}

.whatsapp-card{

    background:linear-gradient(
        135deg,
        #22c55e,
        #16a34a
    );

}

.instagram-card{

    background:linear-gradient(
        135deg,
        #e1306c,
        #f77737
    );

}

/* ==========================================
RESPONSIVE
========================================== */

@media(max-width:768px){

    .custom-quote{

        padding:80px 0;

    }

    .contact-grid{

        grid-template-columns:1fr;

        gap:25px;

    }

    .contact-card{

        padding:40px 30px;

    }

    .contact-card h3{

        font-size:26px;

    }

}

/* ==========================================
FAQ SECTION
========================================== */

.faq-section{

    padding:120px 0;

    background:linear-gradient(
        180deg,
        #f8fbff,
        #ffffff
    );

}

.faq-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

    margin-top:60px;

}

.faq-card{

    background:#ffffff;

    padding:35px;

    border-radius:28px;

    border:1px solid rgba(15,98,254,.08);

    box-shadow:
    0 15px 40px rgba(0,0,0,.05);

    transition:.4s ease;

}

.faq-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 25px 60px rgba(15,98,254,.12);

}

.faq-card h3{

    font-size:22px;

    color:#111827;

    margin-bottom:15px;

    line-height:1.4;

}

.faq-card p{

    color:#64748b;

    line-height:1.9;

}

/* ==========================================
FLOATING WHATSAPP
========================================== */

.floating-whatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:#25d366;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:30px;

    text-decoration:none;

    z-index:9999;

    box-shadow:
    0 15px 35px rgba(37,211,102,.35);

    animation:whatsappFloat 3s ease-in-out infinite;

}

.floating-whatsapp:hover{

    transform:translateY(-5px);

}

@keyframes whatsappFloat{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-10px);
    }

}

/* ==========================================
WHAT OUR CLIENTS SAY
========================================== */

.pricing-testimonials{

    padding:120px 0;

    background:linear-gradient(
        180deg,
        #ffffff,
        #f8fbff
    );

}

.pricing-testimonials .section-title{

    text-align:center;

    margin-bottom:60px;

}

.pricing-testimonials .section-title span{

    color:#0f62fe;

    font-weight:700;

    letter-spacing:1px;

}

.pricing-testimonials .section-title h2{

    font-size:clamp(2.2rem,4vw,3.5rem);

    color:#111827;

    font-weight:900;

    margin-top:10px;

}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

}

.testimonial-card{

    background:#ffffff;

    padding:35px;

    border-radius:28px;

    border:1px solid rgba(15,98,254,.08);

    box-shadow:
    0 15px 40px rgba(0,0,0,.05);

    transition:.4s ease;

    position:relative;

    overflow:hidden;

}

.testimonial-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:linear-gradient(
        90deg,
        #0f62fe,
        #4f8cff
    );

}

.testimonial-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 25px 60px rgba(15,98,254,.15);

}

.stars{

    display:flex;

    gap:6px;

    margin-bottom:18px;

}

.stars i{

    color:#fbbf24;

    font-size:18px;

}

.testimonial-card p{

    color:#64748b;

    line-height:1.9;

    margin-bottom:20px;

}

.testimonial-card h4{

    color:#111827;

    font-weight:800;

    font-size:17px;

}

/* ==========================================
RESPONSIVE
========================================== */

@media(max-width:991px){

    .faq-grid,
    .testimonial-grid{

        grid-template-columns:1fr;

    }

    .custom-quote h2{

        font-size:40px;

    }

}

@media(max-width:768px){

    .faq-section,
    .pricing-testimonials{

        padding:80px 0;

    }

    .custom-quote{

        padding:80px 0;

    }

    .custom-quote h2{

        font-size:32px;

    }

    .contact-card{

        padding:35px;

    }

    .faq-card,
    .testimonial-card{

        padding:28px;

    }

}

/* ==========================================
   PRICING TESTIMONIALS
========================================== */

.pricing-testimonials{
    padding:120px 0;
    background:linear-gradient(
        180deg,
        #f8fbff 0%,
        #ffffff 100%
    );
}

.pricing-testimonials .section-title{
    text-align:center;
    margin-bottom:65px;
}

.pricing-testimonials .section-title span{
    display:inline-block;
    color:#0f62fe;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:10px;
}

.pricing-testimonials .section-title h2{
    font-size:clamp(2.2rem,4vw,3.2rem);
    font-weight:900;
    color:#0b1220;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.testimonial-card{
    background:#fff;
    padding:35px;
    border-radius:28px;
    border:1px solid rgba(15,98,254,.08);
    box-shadow:0 15px 45px rgba(15,23,42,.06);
    transition:.35s ease;
    position:relative;
    overflow:hidden;
}

.testimonial-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:4px;
    background:linear-gradient(
        90deg,
        #0f62fe,
        #3f86ff
    );
}

.testimonial-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(15,98,254,.15);
}

.stars{
    display:flex;
    gap:6px;
    margin-bottom:18px;
}

.stars i{
    color:#facc15;
    font-size:17px;
}

.testimonial-card p{
    color:#64748b;
    line-height:1.9;
    margin-bottom:22px;
}

.testimonial-card h4{
    color:#0b1220;
    font-weight:800;
    font-size:17px;
}



/* ==========================================
   BIG CTA SECTION
========================================== */

.home-cta{
    padding:120px 0;
    background:linear-gradient(
        135deg,
        #0f62fe,
        #3f86ff
    );
    position:relative;
    overflow:hidden;
}

.home-cta::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    top:-180px;
    right:-120px;
}

.home-cta::after{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    bottom:-120px;
    left:-120px;
}

.home-cta-box{
    position:relative;
    z-index:2;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:50px;

    padding:65px;

    border-radius:35px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.15);
}

.cta-mini{
    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:10px 18px;

    border-radius:999px;

    background:rgba(255,255,255,.15);

    color:#fff;

    font-size:13px;
    font-weight:700;

    margin-bottom:20px;
}

.cta-content h2{
    color:#fff;
    font-size:clamp(2.3rem,4vw,3.5rem);
    line-height:1.1;
    font-weight:900;
    margin-bottom:18px;
}

.cta-content p{
    color:rgba(255,255,255,.92);
    font-size:18px;
    line-height:1.9;
    max-width:650px;
}

.cta-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.cta-primary,
.cta-secondary{
    text-decoration:none;
    padding:16px 30px;
    border-radius:16px;
    font-weight:800;
    transition:.35s ease;
}

.cta-primary{
    background:#fff;
    color:#0f62fe;
}

.cta-primary:hover{
    transform:translateY(-5px);
}

.cta-secondary{
    background:rgba(255,255,255,.15);
    border:1px solid rgba(255,255,255,.2);
    color:#fff;
}

.cta-secondary:hover{
    background:#fff;
    color:#0f62fe;
    transform:translateY(-5px);
}



/* ==========================================
   FOLLOW OUR JOURNEY
========================================== */

.social-journey-section{
    position:relative;
    padding:120px 0;
    background:linear-gradient(
        180deg,
        #f8fbff,
        #ffffff
    );
    overflow:hidden;
}

.social-bg-shape{
    position:absolute;
    border-radius:50%;
}

.social-bg-shape-1{
    width:380px;
    height:380px;
    background:rgba(15,98,254,.06);
    top:-180px;
    left:-150px;
}

.social-bg-shape-2{
    width:500px;
    height:500px;
    background:rgba(15,98,254,.04);
    right:-220px;
    bottom:-220px;
}

.social-journey-section .container{
    position:relative;
    z-index:2;
}

.social-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:60px;
}

.social-card{
    text-decoration:none;
    text-align:center;

    background:#fff;

    padding:40px 30px;

    border-radius:28px;

    border:1px solid rgba(15,98,254,.08);

    box-shadow:0 15px 45px rgba(15,23,42,.06);

    transition:.4s ease;

    overflow:hidden;
    position:relative;
}

.social-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:4px;

    background:linear-gradient(
        90deg,
        #0f62fe,
        #3f86ff
    );
}

.social-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(15,98,254,.15);
}

.social-icon{
    width:90px;
    height:90px;

    margin:0 auto 25px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        #0f62fe,
        #3f86ff
    );

    display:flex;
    align-items:center;
    justify-content:center;
}

.social-icon i{
    color:#fff;
    font-size:34px;
}

.social-card h3{
    color:#0b1220;
    font-size:22px;
    margin-bottom:12px;
}

.social-card p{
    color:#64748b;
    line-height:1.8;
    margin-bottom:25px;
}

.social-link{
    display:inline-flex;
    align-items:center;
    gap:10px;

    color:#0f62fe;

    font-weight:700;

    transition:.3s;
}

.social-card:hover .social-link{
    gap:16px;
}

.instagram:hover .social-icon{
    background:linear-gradient(
        135deg,
        #fd5949,
        #d6249f
    );
}

.facebook:hover .social-icon{
    background:#1877f2;
}

.linkedin:hover .social-icon{
    background:#0a66c2;
}

.youtube:hover .social-icon{
    background:#ff0000;
}



/* ==========================================
   CUSTOM QUOTE SECTION
========================================== */

.custom-quote{
    padding:120px 0;
    background:#ffffff;
}

.custom-quote-box{
    max-width:950px;
    margin:auto;
    text-align:center;

    padding:70px 60px;

    background:#fff;

    border-radius:35px;

    border:1px solid rgba(15,98,254,.08);

    box-shadow:
    0 25px 70px rgba(15,23,42,.08);

    position:relative;
    overflow:hidden;
}

.custom-quote-box::before{
    content:"";
    position:absolute;

    width:250px;
    height:250px;

    border-radius:50%;

    background:rgba(15,98,254,.05);

    top:-120px;
    right:-100px;
}

.custom-quote-box::after{
    content:"";
    position:absolute;

    width:180px;
    height:180px;

    border-radius:50%;

    background:rgba(15,98,254,.04);

    bottom:-80px;
    left:-80px;
}

.quote-badge{
    display:inline-block;

    padding:10px 20px;

    border-radius:999px;

    background:rgba(15,98,254,.08);

    color:#0f62fe;

    font-size:13px;
    font-weight:700;
    letter-spacing:1px;

    margin-bottom:20px;
}

.custom-quote-box h2{
    font-size:clamp(2rem,4vw,3rem);
    color:#0b1220;
    margin-bottom:20px;
    font-weight:900;
}

.custom-quote-box p{
    max-width:720px;
    margin:auto;
    color:#64748b;
    line-height:1.9;
}

.quote-buttons{
    margin-top:35px;

    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.quote-primary-btn,
.quote-secondary-btn{
    text-decoration:none;

    padding:15px 30px;

    border-radius:16px;

    font-weight:700;

    transition:.35s ease;
}

.quote-primary-btn{
    background:#0f62fe;
    color:#fff;
}

.quote-primary-btn:hover{
    transform:translateY(-5px);
}

.quote-secondary-btn{
    border:2px solid #0f62fe;
    color:#0f62fe;
}

.quote-secondary-btn:hover{
    background:#0f62fe;
    color:#fff;
}



/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:991px){

    .home-cta-box{
        flex-direction:column;
        text-align:center;
    }

    .social-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .testimonial-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .home-cta,
    .pricing-testimonials,
    .social-journey-section,
    .custom-quote{
        padding:90px 0;
    }

    .home-cta-box{
        padding:40px 30px;
    }

    .social-grid{
        grid-template-columns:1fr;
    }

    .custom-quote-box{
        padding:50px 25px;
    }

    .cta-content h2{
        font-size:34px;
    }

}



/* ==========================================
FAQ SECTION - HDS PREMIUM
========================================== */

.faq-section{
    padding:120px 0;
    background:
    linear-gradient(
        180deg,
        #f7faff 0%,
        #eef5ff 100%
    );
    position:relative;
    overflow:hidden;
}

.faq-section::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    background:rgba(15,98,254,.05);
    top:-180px;
    left:-180px;
}

.faq-section::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(47,124,255,.06);
    bottom:-150px;
    right:-150px;
}

.faq-wrapper{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:50px;
    align-items:start;
    position:relative;
    z-index:2;
}

/* LEFT SIDE */

.faq-left h2{
    font-size:3rem;
    margin:15px 0;
    line-height:1.2;
    color:#111827;
}

.faq-left h2 span{
    color:#0f62fe;
}

.faq-left > p{
    color:#667085;
    margin-bottom:35px;
    font-size:17px;
}

/* FAQ ITEMS */

.faq-item{
    background:rgba(255,255,255,.85);
    backdrop-filter:blur(12px);
    border:1px solid rgba(15,98,254,.08);
    border-radius:22px;
    margin-bottom:18px;
    overflow:hidden;
    box-shadow:
    0 15px 35px rgba(15,98,254,.06);
    transition:.35s ease;
}

.faq-item:hover{
    transform:translateY(-4px);
    box-shadow:
    0 20px 45px rgba(15,98,254,.12);
}

.faq-question{
    width:100%;
    border:none;
    background:none;
    padding:24px 28px;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
    text-align:left;
    font-size:17px;
    font-weight:700;
    color:#101828;
}

.faq-question i{
    color:#0f62fe;
    font-size:18px;
    transition:.35s ease;
}

.faq-item.active .faq-question i{
    transform:rotate(45deg);
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .45s ease;
}

.faq-answer p{
    padding:0 28px 25px;
    color:#667085;
    line-height:1.9;
}

.faq-item.active .faq-answer{
    max-height:250px;
}

/* RIGHT CARD */

.faq-card{
    background:
    linear-gradient(
        135deg,
        #ffffff,
        #f7faff
    );
    border:1px solid rgba(15,98,254,.08);
    border-radius:35px;
    padding:55px;
    text-align:center;
    box-shadow:
    0 25px 60px rgba(15,98,254,.08);
    position:sticky;
    top:120px;
}

.faq-icon{
    width:120px;
    height:120px;
    margin:auto;
    margin-bottom:25px;
    border-radius:30px;
    background:
    linear-gradient(
        135deg,
        #0f62fe,
        #2f7cff
    );
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:50px;
    box-shadow:
    0 20px 45px rgba(15,98,254,.25);
}

.faq-card h3{
    font-size:2rem;
    margin-bottom:15px;
    color:#101828;
}

.faq-card p{
    color:#667085;
    line-height:1.8;
    margin-bottom:30px;
}

/* BUTTONS */

.faq-whatsapp,
.faq-contact{
    width:100%;
    padding:18px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    border-radius:16px;
    text-decoration:none;
    font-weight:700;
    transition:.35s ease;
}

.faq-whatsapp{
    background:
    linear-gradient(
        135deg,
        #0f62fe,
        #2f7cff
    );
    color:#fff;
    margin-bottom:15px;
    box-shadow:
    0 15px 35px rgba(15,98,254,.25);
}

.faq-whatsapp:hover{
    transform:translateY(-5px);
}

.faq-contact{
    border:2px solid #d0d5dd;
    color:#111827;
    background:#fff;
}

.faq-contact:hover{
    background:#f8fbff;
    transform:translateY(-5px);
}

/* RESPONSIVE */

@media(max-width:992px){

    .faq-wrapper{
        grid-template-columns:1fr;
    }

    .faq-card{
        position:relative;
        top:auto;
    }

}

@media(max-width:768px){

    .faq-section{
        padding:90px 0;
    }

    .faq-left h2{
        font-size:2.2rem;
    }

    .faq-question{
        font-size:15px;
        padding:20px;
    }

    .faq-answer p{
        padding:0 20px 20px;
    }

    .faq-card{
        padding:35px;
    }

    .faq-icon{
        width:90px;
        height:90px;
        font-size:38px;
    }

}

/* Tablets */
@media (max-width:1024px){

    .why-grid,
    .process-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* Mobile */
@media (max-width:768px){

    .why-grid,
    .process-grid,
    .pricing-grid{
        grid-template-columns:1fr;
    }

    .section-header h2{
        font-size:2rem;
    }

}

/* Small phones */
@media (max-width:480px){

    .container{
        width:94%;
    }

}