
 :root{
    --bg:#F8FAFC;
    --surface:#FFFFFF;
    --surface-soft:#EEF9FB;

    --text:#082B5A;
    --muted:#64748B;

    /* Brand Colors */
    --primary:#082B5A;
    --primary-dark:#041A38;

    --accent:#28C4D3;
    --accent-dark:#1AAABA;

    --border:#E2E8F0;

    --shadow:0 25px 60px rgba(8,43,90,.12);
}

html{
    scroll-behavior:smooth;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    min-height:100vh;
    padding-top:98px;
    background:var(--bg);
    color:var(--text);
}

img{
    max-width:100%;
    display:block;
}

a{
    color:inherit;
}

button,
input,
textarea{
    font:inherit;
}

/* ======================
   HEADER
====================== */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(40,196,211,.15);
    box-shadow:0 4px 20px rgba(8,43,90,.05);
}

.container{
    max-width:1200px;
    margin:auto;
    padding:0 24px;
}

.navbar{
    min-height:94px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* ======================
   LOGO
====================== */

.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo img{
    transition:.4s ease;
}

.logo img:hover{
    transform:scale(1.05);
}

/* ======================
   NAVIGATION
====================== */

.nav-links{
    display:flex;
    align-items:center;
    gap:34px;
}

.nav-links a{
    text-decoration:none;
    color:var(--muted);
    font-size:15px;
    font-weight:500;
    position:relative;
    transition:.3s ease;
}

.nav-links a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:3px;
    border-radius:50px;
    background:var(--accent);
    transition:.3s ease;
}

.nav-links a:hover,
.nav-links a.active{
    color:var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after{
    width:100%;
}

/* ======================
   BUTTON
====================== */

.cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;

    background:linear-gradient(
        135deg,
        #28C4D3,
        #082B5A
    );

    color:#fff;
    padding:14px 30px;
    border-radius:999px;
    font-weight:600;
    font-size:15px;

    box-shadow:0 15px 40px rgba(40,196,211,.25);
    transition:.35s ease;
}

.cta-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 20px 50px rgba(8,43,90,.25);
}

/* ======================
   MOBILE MENU
====================== */

.menu-btn{
    display:none;
    font-size:32px;
    cursor:pointer;
    color:var(--primary);
}

/* ======================
   MOBILE
====================== */

@media(max-width:991px){

    .menu-btn{
        display:block;
    }

    .nav-links{
        position:absolute;
        top:94px;
        left:-100%;
        width:100%;
        background:#fff;
        flex-direction:column;
        padding:25px 0;
        gap:16px;
        box-shadow:0 20px 60px rgba(8,43,90,.08);
        transition:.4s ease;
        border-top:1px solid rgba(40,196,211,.15);
    }

    .nav-links.active{
        left:0;
    }

    .nav-links a{
        width:100%;
        padding:12px 22px;
    }

    .cta-btn{
        display:none;
    }
}

/* HERO SECTION */

/* =========================
   HERO SECTION
========================= */
.hero-section{
    position:relative;
    overflow:hidden;
    padding:50px 0 50px;

    background:
    radial-gradient(circle at top left,
    rgba(40,196,211,.12),
    transparent 35%),

    radial-gradient(circle at bottom right,
    rgba(8,43,90,.10),
    transparent 30%),

    linear-gradient(
    135deg,
    #F8FAFC 0%,
    #EEF9FB 100%
    );
}

.hero-section::before{
    content:'';
    position:absolute;
    inset:0;
    pointer-events:none;

    background-image:
    radial-gradient(circle at 15% 20%,
    rgba(40,196,211,.08),
    transparent 18%),

    radial-gradient(circle at 80% 15%,
    rgba(8,43,90,.08),
    transparent 16%);
}

.hero-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
    position:relative;
    z-index:2;
}

/* LEFT */

.hero-content{
    flex:1;
}

.hero-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:12px 22px;
    border-radius:50px;
    background:#fff;
    border:1px solid rgba(40,196,211,.25);
    color:#28C4D3;
    font-size:14px;
    font-weight:600;
    margin-bottom:25px;
    box-shadow:0 10px 25px rgba(40,196,211,.08);
}

.hero-content h1{
 font-size:55px;
    line-height:1.15;
    color:#082B5A;
    margin-bottom:13px;
    font-weight:700;



}

.hero-content h1 span{
    background:linear-gradient(
    90deg,
    #28C4D3,
    #082B5A
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero-content p{
    max-width:650px;
    font-size:15px;
    line-height:1.8;
    color:#64748B;
}


.hero-buttons{
    display:flex;
    gap:18px;
    margin:40px 0;
}

.gold-btn{
    background:linear-gradient(
    135deg,
    #28C4D3,
    #082B5A
    );

    color:#fff;
    padding:16px 34px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;

    box-shadow:
    0 15px 40px rgba(40,196,211,.25);

    transition:.4s;
}

.gold-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 20px 50px rgba(8,43,90,.20);
}

.outline-btn{
    background:#fff;
    border:1px solid #DDE5F2;
    color:#082B5A;
    padding:16px 34px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.4s;
}

.outline-btn:hover{
    border-color:#28C4D3;
    color:#28C4D3;
}


.hero-tags{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.hero-tags span{
    background:#fff;
    border:1px solid #E2E8F0;
    padding:11px 18px;
    border-radius:50px;
    font-size:14px;
    color:#475569;
    box-shadow:0 5px 15px rgba(0,0,0,.03);
}


.hero-profile{
    width:390px;
}

.profile-card{
    background:#fff;
    padding:30px;
    border-radius:30px;
    text-align:center;
    border:1px solid #E2E8F0;

    box-shadow:
    0 30px 70px rgba(8,43,90,.08);
}

.profile-image{
    width:130px;
    height:130px;
    margin:auto;
    border-radius:50%;

    background:linear-gradient(
    135deg,
    #28C4D3,
    #082B5A
    );

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:52px;
    font-weight:700;

    margin-bottom:15px;
}

.profile-card h3{
    font-size:30px;
    color:#082B5A;
    margin-bottom:10px;
}

.available{
    display:inline-block;

    background:#EAFBFD;
    color:#28C4D3;

    padding:8px 16px;
    border-radius:50px;

    font-size:13px;
    font-weight:600;
}

.location{
    margin-top:15px;
    color:#64748B;
}


.hero-stats{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:25px;
}

.stat-box{
    background:#F8FAFC;
    padding:4px;
    border-radius:18px;
    border:1px solid #E2E8F0;
    transition:.3s;
}

.stat-box:hover{
    transform:translateY(-4px);
    border-color:#28C4D3;
}

.stat-box h2{
    font-size:28px;
    margin-bottom:5px;
    color:#082B5A;
}

.stat-box p{
    font-size:13px;
    color:#64748B;
}

/* RESPONSIVE */

@media(max-width:991px){

    .hero-wrapper{
        flex-direction:column;
        text-align:center;
    }

    .hero-content h1{
        font-size:46px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-tags{
        justify-content:center;
    }

    .hero-profile{
        width:100%;
        max-width:400px;
    }
}

@media(max-width:576px){

    .hero-content h1{
        font-size:34px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .hero-stats{
        grid-template-columns:1fr;
    }
}
/* AI SEO SECTION */
/* =========================
   AI SEO SECTION
========================= */
.ai-seo-section{
    padding:60px 0;
    background:#ffffff;
    position:relative;
    overflow:hidden;
}

.ai-seo-section::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    top:-250px;
    right:-150px;
    border-radius:50%;
    background:rgba(40,196,211,.06);
    filter:blur(80px);
}

.ai-seo-section::after{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    bottom:-250px;
    left:-120px;
    border-radius:50%;
    background:rgba(8,43,90,.05);
    filter:blur(80px);
}

/* =========================
   HEADING
========================= */

.ai-heading{
    text-align:center;
    max-width:760px;
    margin:0 auto 60px;
    position:relative;
    z-index:2;
}

.ai-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 22px;
    border-radius:50px;

    background:#F8FAFC;
    border:1px solid rgba(40,196,211,.20);

    color:#28C4D3;

    font-size:13px;
    font-weight:600;

    margin-bottom:20px;
}

.ai-heading h2{
    font-size:48px;
    line-height:1.2;
    color:#082B5A;
    margin-bottom:18px;
    font-weight:700;
}

.ai-heading h2 span{
    background:linear-gradient(
        90deg,
        #28C4D3,
        #082B5A
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.ai-heading p{
    color:#64748B;
    font-size:17px;
    line-height:1.8;
}

/* =========================
   CARDS
========================= */

.ai-cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
    position:relative;
    z-index:2;
}

.ai-card{
    position:relative;
    background:#fff;
    padding:35px 30px;
    border-radius:24px;
    border:1px solid #E2E8F0;
    overflow:hidden;
    transition:all .45s ease;

    box-shadow:
    0 10px 30px rgba(8,43,90,.04);
}

.ai-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;

    background:linear-gradient(
        90deg,
        #28C4D3,
        #082B5A
    );

    transform:scaleX(0);
    transition:.4s ease;
}

.ai-card:hover{
    transform:translateY(-12px);

    border-color:rgba(40,196,211,.30);

    box-shadow:
    0 25px 60px rgba(8,43,90,.10);
}

.ai-card:hover::before{
    transform:scaleX(1);
}

.ai-icon{
    width:72px;
    height:72px;

    border-radius:18px;

    background:linear-gradient(
        135deg,
        rgba(40,196,211,.12),
        rgba(8,43,90,.12)
    );

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:22px;

    transition:.4s ease;
}

.ai-icon i{
    font-size:30px;
    color:#28C4D3;
}

.ai-card:hover .ai-icon{
    transform:rotate(-8deg) scale(1.08);
}

.ai-card h3{
    font-size:22px;
    color:#082B5A;
    margin-bottom:14px;
    line-height:1.4;
}

.ai-card p{
    font-size:15px;
    color:#64748B;
    line-height:1.8;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .ai-cards{
        grid-template-columns:1fr;
    }

    .ai-heading h2{
        font-size:36px;
    }
}

@media(max-width:576px){

    .ai-seo-section{
        padding:70px 0;
    }

    .ai-heading h2{
        font-size:30px;
    }

    .ai-card{
        padding:28px 22px;
    }
}
/* SERVICES SECTION */
/* =========================

   SERVICES SECTION
========================= */
.services-section{
    padding:60px 0;
    background:#F8FAFC;
    position:relative;
    overflow:hidden;
}

.services-section::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    top:-250px;
    right:-150px;
    border-radius:50%;
    background:rgba(40,196,211,.05);
    filter:blur(90px);
}

.services-section::after{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    bottom:-250px;
    left:-120px;
    border-radius:50%;
    background:rgba(8,43,90,.05);
    filter:blur(90px);
}

/* =========================
   HEADING
========================= */

.services-heading{
    text-align:center;
    max-width:760px;
    margin:0 auto 60px;
    position:relative;
    z-index:2;
}

.services-tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 22px;
    border-radius:50px;

    background:#fff;

    border:1px solid rgba(40,196,211,.20);

    color:#28C4D3;

    font-size:13px;
    font-weight:600;

    margin-bottom:18px;
}

.services-heading h2{
    font-size:48px;
    line-height:1.2;
    color:#082B5A;
    margin-bottom:16px;
    font-weight:700;
}

.services-heading h2 span{
    background:linear-gradient(
        90deg,
        #28C4D3,
        #082B5A
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.services-heading p{
    color:#64748B;
    font-size:17px;
    line-height:1.8;
}

/* =========================
   GRID
========================= */

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
    position:relative;
    z-index:2;
}

/* =========================
   CARD
========================= */

.service-card{
    position:relative;
    background:#fff;
    padding:35px 30px;
    border-radius:24px;
    border:1px solid #E2E8F0;
    overflow:hidden;

    transition:.45s ease;

    box-shadow:
    0 10px 30px rgba(8,43,90,.04);
}

.service-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;

    background:linear-gradient(
        90deg,
        #28C4D3,
        #082B5A
    );

    transform:scaleX(0);
    transition:.45s ease;
}

.service-card:hover{
    transform:translateY(-12px);

    border-color:rgba(40,196,211,.30);

    box-shadow:
    0 25px 60px rgba(8,43,90,.10);
}

.service-card:hover::before{
    transform:scaleX(1);
}

/* =========================
   ICON
========================= */

.service-icon{
    width:72px;
    height:72px;

    border-radius:18px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:22px;

    background:linear-gradient(
        135deg,
        rgba(40,196,211,.12),
        rgba(8,43,90,.12)
    );

    transition:.45s ease;
}

.service-icon i{
    font-size:30px;
    color:#28C4D3;
}

.service-card:hover .service-icon{
    transform:rotate(-8deg) scale(1.08);
}

/* =========================
   CONTENT
========================= */

.service-card h3{
    font-size:22px;
    color:#082B5A;
    margin-bottom:14px;
}

.service-card p{
    font-size:15px;
    line-height:1.8;
    color:#64748B;
    margin-bottom:22px;
}

/* =========================
   BADGE
========================= */

.service-card span{
    display:inline-flex;
    align-items:center;

    padding:8px 16px;

    border-radius:50px;

    background:#EAFBFD;

    color:#28C4D3;

    font-size:12px;
    font-weight:600;

    border:1px solid rgba(40,196,211,.15);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .services-heading h2{
        font-size:38px;
    }
}

@media(max-width:767px){

    .services-grid{
        grid-template-columns:1fr;
    }

    .services-heading h2{
        font-size:32px;
    }

    .service-card{
        padding:28px 24px;
    }
}
/* SKILLS SECTION */
/* =========================
   SKILLS SECTION
========================= */

/* FAQ SECTION */
.skills-section{
    padding:60px 0;
    background:#ffffff;
    position:relative;
    overflow:hidden;
}

.skills-section::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    top:-220px;
    right:-150px;
    border-radius:50%;
    background:rgba(40,196,211,.05);
    filter:blur(90px);
}

.skills-section::after{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    bottom:-220px;
    left:-150px;
    border-radius:50%;
    background:rgba(8,43,90,.05);
    filter:blur(90px);
}

/* =========================
   HEADING
========================= */

.skills-heading{
    text-align:center;
    margin-bottom:50px;
    position:relative;
    z-index:2;
}

.skills-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:10px 22px;

    border-radius:50px;

    background:#F8FAFC;

    border:1px solid rgba(40,196,211,.20);

    color:#28C4D3;

    font-size:13px;
    font-weight:600;

    margin-bottom:18px;
}

.skills-heading h2{
    font-size:46px;
    font-weight:700;
    color:#082B5A;
}

.skills-heading h2 span{
    background:linear-gradient(
        90deg,
        #28C4D3,
        #082B5A
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* =========================
   SKILLS LIST
========================= */

.skills-list{
    max-width:1100px;
    margin:auto;

    display:flex;
    justify-content:center;
    flex-wrap:wrap;

    gap:16px;

    position:relative;
    z-index:2;
}

/* =========================
   SKILL ITEM
========================= */

.skill-item{
    position:relative;

    padding:14px 24px;

    background:#fff;

    border:1px solid #E2E8F0;

    border-radius:50px;

    color:#475569;

    font-size:14px;
    font-weight:600;

    cursor:pointer;

    overflow:hidden;

    transition:all .4s ease;

    display:flex;
    align-items:center;
    justify-content:center;

    isolation:isolate;

    box-shadow:
    0 6px 20px rgba(8,43,90,.04);
}

.skill-item::before{
    content:"";

    position:absolute;
    inset:0;

    background:linear-gradient(
        135deg,
        #28C4D3,
        #082B5A
    );

    opacity:0;

    transition:.4s ease;

    z-index:-1;
}

.skill-item:hover{
    transform:
    translateY(-8px)
    scale(1.05);

    border-color:transparent;

    color:#fff;

    box-shadow:
    0 18px 40px rgba(8,43,90,.18);
}

.skill-item:hover::before{
    opacity:1;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

    .skills-section{
        padding:80px 0;
    }

    .skills-heading h2{
        font-size:34px;
    }

    .skill-item{
        padding:12px 18px;
        font-size:13px;
    }
}

@media(max-width:576px){

    .skills-heading h2{
        font-size:28px;
    }

    .skills-list{
        gap:12px;
    }
}
/* =========================
   FAQ SECTION
========================= */

/* CTA SECTION */
.faq-section{
    padding:60px 0;
    background:#fff;
    position:relative;
    overflow:hidden;
}

.faq-section::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    top:-220px;
    right:-150px;
    border-radius:50%;
    background:rgba(40,196,211,.05);
    filter:blur(90px);
}

.faq-section::after{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    bottom:-220px;
    left:-150px;
    border-radius:50%;
    background:rgba(8,43,90,.05);
    filter:blur(90px);
}

/* =========================
   HEADING
========================= */

.faq-heading{
    text-align:center;
    max-width:800px;
    margin:0 auto 60px;
    position:relative;
    z-index:2;
}

.faq-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:10px 20px;

    border-radius:50px;

    background:#EAFBFD;

    color:#28C4D3;

    border:1px solid rgba(40,196,211,.20);

    font-size:13px;
    font-weight:600;

    margin-bottom:20px;
}

.faq-heading h2{
    font-size:48px;
    line-height:1.2;
    color:#082B5A;
    margin-bottom:15px;
    font-weight:700;
}

.faq-heading h2 span{
    background:linear-gradient(
        90deg,
        #28C4D3,
        #082B5A
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.faq-heading p{
    color:#64748B;
    font-size:17px;
    line-height:1.8;
}

/* =========================
   FAQ GRID
========================= */

.faq-grid{
    max-width:900px;
    margin:auto;

    display:flex;
    flex-direction:column;
    gap:18px;

    position:relative;
    z-index:2;
}

/* =========================
   CARD
========================= */

.faq-card{
    background:#fff;

    border:1px solid #E2E8F0;

    border-radius:24px;

    padding:26px 28px;

    transition:.4s ease;

    box-shadow:
    0 10px 25px rgba(8,43,90,.04);
}

.faq-card:hover{
    transform:translateY(-4px);

    border-color:rgba(40,196,211,.30);

    box-shadow:
    0 20px 45px rgba(8,43,90,.08);
}

.faq-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.faq-top h3{
    font-size:18px;
    color:#082B5A;
    font-weight:600;
}

.faq-top i{
    width:40px;
    height:40px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#EAFBFD;

    color:#28C4D3;

    font-size:14px;

    transition:.3s ease;
}

.faq-card:hover .faq-top i{
    background:#28C4D3;
    color:#fff;
}

.faq-card p{
    margin-top:18px;

    color:#64748B;

    line-height:1.8;

    font-size:15px;
}

/* =========================
   ACTIVE CARD
========================= */

.faq-card.active{
    background:linear-gradient(
        135deg,
        #FFFFFF,
        #F5FCFD
    );

    border-color:rgba(40,196,211,.30);
}

.faq-card.active .faq-top i{
    background:linear-gradient(
        135deg,
        #28C4D3,
        #082B5A
    );

    color:#fff;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .faq-heading h2{
        font-size:34px;
    }

    .faq-card{
        padding:22px;
    }

    .faq-top h3{
        font-size:16px;
        padding-right:15px;
    }
}
/* =========================
   CTA SECTION
========================= */
.cta-section{
    padding:50px 0;
    background:#F8FAFC;
}

.cta-box{

    position:relative;
    overflow:hidden;

    max-width:960px;
    margin:auto;

    text-align:center;

    padding:20px 30px;

    border-radius:35px;

    background:
    linear-gradient(
    135deg,
    #041A38,
    #082B5A
    );

    box-shadow:
    0 30px 80px rgba(8,43,90,.25);
}

/* Glow Effects */

.cta-box::before{
    content:"";

    position:absolute;

    width:350px;
    height:350px;

    background:
    rgba(40,196,211,.20);

    border-radius:50%;

    top:-180px;
    right:-120px;

    filter:blur(90px);
}

.cta-box::after{
    content:"";

    position:absolute;

    width:300px;
    height:300px;

    background:
    rgba(40,196,211,.15);

    border-radius:50%;

    bottom:-150px;
    left:-100px;

    filter:blur(90px);
}

/* Badge */

.cta-badge{

    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:10px 22px;

    border-radius:50px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(40,196,211,.20);

    color:#E2E8F0;

    font-size:13px;
    font-weight:600;

    margin-bottom:25px;

    position:relative;
    z-index:2;
}

.cta-badge i{
    color:#28C4D3;
}

/* Heading */

.cta-box h2{

    font-size:38px;
    line-height:1.15;

    color:#fff;

    margin-bottom:20px;

    position:relative;
    z-index:2;
}

.cta-box h2 span{

    background:linear-gradient(
    90deg,
    #28C4D3,
    #7EE7F2
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* Text */

.cta-box p{

    max-width:700px;

    margin:auto;

    color:#CBD5E1;

    font-size:17px;

    line-height:1.9;

    margin-bottom:35px;

    position:relative;
    z-index:2;
}

/* Buttons */

.cta-buttons{

    display:flex;
    justify-content:center;
    gap:18px;

    position:relative;
    z-index:2;
}

.cta-primary{

    text-decoration:none;

    padding:16px 34px;

    border-radius:50px;

    background:linear-gradient(
    135deg,
    #28C4D3,
    #1AAABA
    );

    color:#fff;

    font-weight:600;

    transition:.4s;
}

.cta-primary:hover{

    transform:translateY(-5px);

    box-shadow:
    0 20px 40px rgba(40,196,211,.35);
}

.cta-secondary{

    text-decoration:none;

    padding:16px 34px;

    border-radius:50px;

    border:1px solid rgba(255,255,255,.15);

    color:#fff;

    font-weight:600;

    transition:.4s;
}

.cta-secondary:hover{

    background:rgba(40,196,211,.10);

    border-color:#28C4D3;

    transform:translateY(-5px);
}

/* Responsive */

@media(max-width:768px){

    .cta-section{
        padding:80px 0;
    }

    .cta-box{
        padding:50px 25px;
    }

    .cta-box h2{
        font-size:36px;
    }

    .cta-buttons{
        flex-direction:column;
    }
}
/* FOOTER */

.footer-section{

    position:relative;
    overflow:hidden;

    background:
    linear-gradient(
    135deg,
    #041A38,
    #082B5A
    );

    padding:36px 0 1px;
}

/* Glow Effects */

.footer-section::before{

    content:"";

    position:absolute;

    width:350px;
    height:350px;

    border-radius:50%;

    background:
    rgba(40,196,211,.15);

    top:-150px;
    right:-100px;

    filter:blur(100px);
}

.footer-section::after{

    content:"";

    position:absolute;

    width:300px;
    height:300px;

    border-radius:50%;

    background:
    rgba(40,196,211,.10);

    bottom:-120px;
    left:-80px;

    filter:blur(100px);
}

.footer-content{

    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:60px;
}

/* BRAND */

.footer-brand h2{

    color:#fff;

    font-size:34px;

    margin-bottom:15px;
}

.footer-brand h2 span{

    background:linear-gradient(
    90deg,
    #28C4D3,
    #7EE7F2
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.footer-brand p{

    color:#CBD5E1;

    line-height:1.9;

    max-width:420px;

    margin-bottom:25px;
}

/* SOCIAL */

.footer-social{

    display:flex;
    gap:12px;
}

.footer-social a{

    width:45px;
    height:45px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    color:#fff;

    background:
    rgba(255,255,255,.06);

    border:
    1px solid rgba(255,255,255,.08);

    transition:.4s;
}

.footer-social a:hover{

    transform:translateY(-5px);

    background:
    linear-gradient(
    135deg,
    #28C4D3,
    #082B5A
    );

    border-color:#28C4D3;
}

/* HEADINGS */

.footer-section h3{

    color:#fff;

    font-size:20px;

    margin-bottom:20px;
}

/* CONTACT */

.footer-info p{

    display:flex;
    align-items:center;
    gap:10px;

    color:#CBD5E1;

    margin-bottom:16px;

    font-size:15px;
}

.footer-info i{

    color:#28C4D3;

    width:20px;
}

/* MENU */

.footer-menu{

    display:flex;
    flex-direction:column;
}

.footer-menu a{

    color:#CBD5E1;

    text-decoration:none;

    margin-bottom:14px;

    transition:.35s;
}

.footer-menu a:hover{

    color:#28C4D3;

    transform:translateX(6px);
}

/* BOTTOM */

.footer-bottom{

    position:relative;
    z-index:2;

    border-top:
    1px solid rgba(255,255,255,.08);

    margin-top:60px;

    padding-top:25px;

    text-align:center;
}

.footer-bottom p{

    color:#94A3B8;

    font-size:14px;
}

/* MOBILE */

@media(max-width:991px){

    .footer-content{

        grid-template-columns:1fr;
        gap:40px;
    }
}

@media(max-width:768px){

    .footer-section{

        padding:70px 0 20px;
    }

    .footer-brand,
    .footer-info,
    .footer-menu{

        text-align:center;
    }

    .footer-brand p{

        margin:auto auto 25px;
    }

    .footer-social{

        justify-content:center;
    }

    .footer-info p{

        justify-content:center;
    }

    .footer-menu{

        align-items:center;
    }
}
/* =========================
   FOOTER
========================= */


/* =========================
   SERVICE ICON
========================= */

.service-icon{
    width:72px;
    height:72px;

    border-radius:18px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:22px;

    background:linear-gradient(
        135deg,
        rgba(124,58,237,.12),
        rgba(37,99,235,.12)
    );

    transition:.45s ease;
}

.service-icon i{
    font-size:30px;
    color:#7C3AED;
}

.service-card:hover .service-icon{
    transform:rotate(-8deg) scale(1.08);
}

.service-card:hover .service-icon i{
    color:#2563EB;
}

/* =========================
   AI ICON
========================= */

.ai-icon{
    width:80px;
    height:80px;

    border-radius:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:0 auto 25px;

    background:linear-gradient(
        135deg,
        rgba(124,58,237,.12),
        rgba(37,99,235,.12)
    );

    transition:.45s ease;
}

.ai-icon i{
    font-size:34px;
    color:#7C3AED;
}

.ai-card:hover .ai-icon{
    transform:translateY(-8px) rotate(-8deg);

    background:linear-gradient(
        135deg,
        #7C3AED,
        #2563EB
    );
}

.ai-card:hover .ai-icon i{
    color:#fff;
}
.service-card:hover .service-icon,
.ai-card:hover .ai-icon{
    box-shadow:
    0 15px 35px rgba(124,58,237,.30);
}











.faq-section{
    padding:20px 0;
    background:#fff;
    position:relative;
    overflow:hidden;
}

.faq-section::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    top:-200px;
    right:-150px;
    border-radius:50%;
    background:rgba(40,196,211,.05);
    filter:blur(100px);
}

.faq-section::after{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    bottom:-180px;
    left:-120px;
    border-radius:50%;
    background:rgba(8,43,90,.05);
    filter:blur(100px);
}

/* ======================
   HEADING
====================== */

.faq-heading{
    text-align:center;
    margin-bottom:60px;
    position:relative;
    z-index:2;
}

.faq-heading span{
    display:inline-block;

    padding:10px 22px;

    border-radius:50px;

    background:#EAFBFD;

    color:#28C4D3;

    border:1px solid rgba(40,196,211,.20);

    font-size:13px;
    font-weight:600;

    margin-bottom:18px;
}

.faq-heading h2{
    font-size:48px;
    color:#082B5A;
    font-weight:700;
}

/* ======================
   FAQ WRAPPER
====================== */

.faq-wrapper{
    max-width:900px;
    margin:auto;

    display:flex;
    flex-direction:column;
    gap:18px;

    position:relative;
    z-index:2;
}

/* ======================
   FAQ ITEM
====================== */

.faq-item{
    background:#fff;

    border:1px solid #E2E8F0;

    border-radius:22px;

    overflow:hidden;

    transition:.4s ease;

    box-shadow:
    0 10px 25px rgba(8,43,90,.04);
}

.faq-item:hover{
    transform:translateY(-4px);

    border-color:rgba(40,196,211,.25);

    box-shadow:
    0 20px 45px rgba(8,43,90,.08);
}

/* ======================
   QUESTION
====================== */

.faq-question{
    width:100%;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:24px 28px;

    background:none;
    border:none;

    cursor:pointer;

    text-align:left;

    font-size:18px;
    font-weight:600;

    color:#082B5A;
}

.faq-question b{

    min-width:38px;
    width:38px;
    height:38px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#EAFBFD;

    color:#28C4D3;

    font-size:20px;

    transition:.3s ease;
}

/* ======================
   ANSWER
====================== */

.faq-answer{
    max-height:0;
    overflow:hidden;

    transition:max-height .4s ease;
}

.faq-answer p{
    padding:0 28px 25px;

    color:#64748B;

    line-height:1.9;

    font-size:15px;
}

/* ======================
   ACTIVE
====================== */

.faq-item.active{

    border-color:rgba(40,196,211,.30);

    background:
    linear-gradient(
    135deg,
    #FFFFFF,
    #F5FCFD
    );
}

.faq-item.active .faq-question b{

    background:
    linear-gradient(
    135deg,
    #28C4D3,
    #082B5A
    );

    color:#fff;

    transform:rotate(45deg);
}

.faq-item.active .faq-answer{
    max-height:300px;
}

/* ======================
   MOBILE
====================== */

@media(max-width:768px){

    .faq-section{
        padding:80px 0;
    }

    .faq-heading h2{
        font-size:34px;
    }

    .faq-question{
        font-size:16px;
        padding:20px;
    }

    .faq-answer p{
        padding:0 20px 20px;
    }
}

@media(max-width:576px){

    .faq-heading h2{
        font-size:28px;
    }

    .faq-question{
        font-size:15px;
    }
}
/* 
.industries-section{
    padding:100px 0;
    background:#fff;
}

.industries-heading{
    text-align:center;
    margin-bottom:60px;
}

.industries-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 18px;
    border-radius:50px;
    background:#fff8e6;
    color:#c59d23;
    font-weight:600;
    margin-bottom:20px;
}

.industries-heading h2{
    font-size:42px;
    margin-bottom:15px;
}

.industries-heading p{
    max-width:700px;
    margin:auto;
    color:#666;
}

.industries-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.industry-card{
    background:#fff;
    border:1px solid #eee;
    border-radius:18px;
    padding:35px 20px;
    text-align:center;
    transition:.3s;
}

.industry-card i{
    font-size:32px;
    color:#c59d23;
    margin-bottom:15px;
}

.industry-card h3{
    font-size:18px;
    margin:0;
}

.industry-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

@media(max-width:768px){
    .industries-grid{
        grid-template-columns:repeat(2,1fr);
    }
} */
 /* .projects-worked{
    padding:70px 0;
}

.projects-mini{
    text-align:center;
    max-width:900px;
    margin:auto;
}

.projects-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 18px;
    border-radius:50px;
    background:#fff8e6;
    color:#c59d23;
    font-weight:600;
}

.projects-mini h2{
    margin:20px 0 35px;
    font-size:38px;
}

.projects-list{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
}

.projects-list span{
    padding:12px 22px;
    background:#fff;
    border:1px solid #eee;
    border-radius:50px;
    font-weight:500;
    transition:.3s;
}

.projects-list span:hover{
    border-color:#c59d23;
    transform:translateY(-3px);
} */
 /* .worked-projects{
    padding:60px 0;
}

.projects-mini{
    text-align:center;
}

.projects-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 18px;
    border-radius:50px;
    background:#fff8e6;
    color:#c59d23;
    font-weight:600;
}

.projects-mini h2{
    margin:20px 0 35px;
}

.project-tags{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
}

.project-tags span{
    padding:12px 22px;
    border-radius:50px;
    border:1px solid #eee;
    background:#fff;
    transition:.3s;
}

.project-tags span:hover{
    border-color:#c59d23;
    transform:translateY(-3px);
} */

.projects-showcase{
    padding:50px 0;
    background:#fff;
}

.projects-heading{
    text-align:center;
    margin-bottom:60px;
}

.projects-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 20px;
    border-radius:50px;
    border:1px solid rgba(40,199,222,.25);
    background:rgba(40,199,222,.08);
    color:#28C7DE;
    font-weight:600;
}

.projects-heading h2{
    font-size:48px;
    margin:20px 0 15px;
}

.projects-heading p{
    max-width:650px;
    margin:auto;
    color:#666;
}

.projects-slider{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:35px;
}

.project-item{
    text-decoration:none;
    text-align:center;
    width:180px;
}

.project-item img{
    width:160px;
    height:160px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #28C7DE;
    padding:6px;
    transition:.4s;
}

.project-item h4{
    margin-top:18px;
    font-size:18px;
    color:#111;
    transition:.3s;
}

.project-item:hover img{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(40,199,222,.25);
}

.project-item:hover h4{
    color:#28C7DE;
}

@media(max-width:768px){

    .projects-heading h2{
        font-size:34px;
    }

    .project-item{
        width:140px;
    }

    .project-item img{
        width:120px;
        height:120px;
    }

}
.projects-divider{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    margin:-40px 0 45px;
}

.projects-divider span{
    width:70px;
    height:2px;
    background:#28C7DE;
    border-radius:20px;
}

.projects-divider i{
    font-size:10px;
    color:#28C7DE;
}