
:root{
    --primary:#0f172a;
    --secondary:#0ea5e9;
    --accent:#10b981;
    --light:#f8fbff;
    --cream:#fffdf7;
    --text:#334155;
    --white:#ffffff;
}

/* ======================================================
   GLOBAL
====================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'DM Sans', sans-serif;
    background:var(--light);
    color:var(--text);
    overflow-x:hidden;
}

h1,h2,h3,h4,h5{
    font-family:'Playfair Display', serif;
    font-weight:800;
    color:var(--primary);
}

a{
    text-decoration:none;
}

section{
    padding:100px 0;
}

.container{
    max-width:1320px;
}

/* ======================================================
   TOPBAR
====================================================== */

.topbar{
    background:rgba(0, 89, 255, 0.7) !important;
    backdrop-filter:blur(6px);
    -webkit-backdrop-filter:blur(6px);
    padding:8px 0;
    color:white;
    position:relative;
    z-index:999;
}

.topbar-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
}

.topbar-text{
    font-size:13px;
    font-weight:500;
    line-height:1.4;
    letter-spacing:0.3px;
}

.topbar-btn{
    background:white;
    color:#0059ff;
    padding:7px 20px;
    border-radius:50px;
    font-size:12px;
    font-weight:700;
    text-decoration:none;
    transition:0.4s ease;
    white-space:nowrap;
}

.topbar-btn:hover{
    background:#f05422;
    color:white;
    transform:translateY(-2px);
}

/* ======================================================
   MOBILE RESPONSIVE
====================================================== */

@media(max-width:768px){

    .topbar{
        padding:4px 0 !important;
    }

    .topbar-content{
        display:flex;
        flex-direction:row;
        justify-content:space-between;
        align-items:center;
        gap:8px;
    }

    .topbar-text{
        font-size:10px;
        line-height:1.2;
        margin:0;
    }

    .topbar-btn{
        padding:4px 12px;
        font-size:9px;
        border-radius:30px;
    }

}

/* ======================================================
   NAVBAR
====================================================== */

.custom-navbar{
    background:rgb(0, 136, 255) !important;
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    padding:10px 0;
    border-top:1px solid rgba(255,255,255,0.08);
    border-bottom:1px solid rgba(255,255,255,0.12);
    box-shadow:0 4px 20px rgba(0,0,0,0.08);
    position:sticky;
    top:0;
    z-index:999;
}

/* ======================================================
   LOGO
====================================================== */

.navbar-brand{
    font-size:24px !important;
    font-weight:800;
    color:white !important;
    letter-spacing:0.3px;
}

.navbar-brand span{
    color:#f05422;
}

/* ======================================================
   NAV LINKS
====================================================== */

.navbar-nav .nav-link{
    margin:0 10px;
    color:white !important;
    font-size:14px;
    font-weight:600;
    transition:0.3s ease;
    position:relative;
    padding:6px 0;
}

.navbar-nav .nav-link:hover{
    color:#f05422 !important;
}

.navbar-nav .nav-link::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-3px;
    width:0%;
    height:2px;
    background:#f05422;
    transition:0.3s ease;
}

.navbar-nav .nav-link:hover::after{
    width:100%;
}

/* ======================================================
   BUTTONS
====================================================== */

.login-btn{
    border:1px solid rgba(255,255,255,0.25);
    padding:8px 18px;
    border-radius:50px;
    color:white;
    font-size:13px;
    font-weight:700;
    transition:0.3s ease;
    text-decoration:none;
}

.login-btn:hover{
    background:#f05422;
    color:white;
    border-color:#f05422;
}

.order-btn{
    background:#f05422;
    color:white;
    padding:9px 20px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    text-decoration:none;
    transition:0.3s ease;
}

.order-btn:hover{
    transform:translateY(-2px);
    background:white;
    color:#0046ff;
}

/* ======================================================
   HAMBURGER MENU
====================================================== */

.navbar-toggler{
    border:none !important;
    box-shadow:none !important;
    padding:0 !important;
    background:transparent !important;
    outline:none !important;
}

.custom-toggler{
    width:14px;
    display:flex;
    flex-direction:column;
    gap:2px;
}

.custom-toggler span{
    width:14px;
    height:2px;
    background:white !important;
    border-radius:5px;
}

/* ======================================================
   MOBILE RESPONSIVE
====================================================== */

@media(max-width:991px){

    /* =========================================
       NAVBAR CONTAINER
    ========================================= */

    .custom-navbar{
        padding:4px 0 !important;
        min-height:auto;
    }

    /* =========================================
       LOGO
    ========================================= */

    .navbar-brand{
        font-size:15px !important;
        line-height:1;
        margin:0;
    }

    /* =========================================
       HAMBURGER BUTTON
    ========================================= */

    .navbar-toggler{
    border:none !important;
    box-shadow:none !important;
    padding:0 !important;
    background:transparent !important;
    outline:none !important;
    }

    /* HAMBURGER CONTAINER */
   .custom-toggler{
    width:14px;
    display:flex;
    flex-direction:column;
    gap:2px;
}

.custom-toggler span{
    width:14px;
    height:2px;
    background:white !important;
    border-radius:5px;
}

    /* =========================================
       MOBILE DROPDOWN MENU
    ========================================= */

    .navbar-collapse{
        background:#0057ff !important;
        padding:10px 12px;
        border-radius:14px;
        margin-top:8px;
        border:1px solid rgba(255,255,255,0.08);
    }

    .navbar-collapse.show{
        display:block !important;
    }

    /* =========================================
       MENU ITEMS
    ========================================= */

    .navbar-nav{
        text-align:center;
    }

    .navbar-nav .nav-item{
        margin:0 !important;
        padding:0 !important;
    }

    .navbar-nav .nav-link{
        font-size:12px !important;
        padding:7px 0 !important; /* REDUCED HEIGHT */
        margin:0 !important;
        line-height:1.2;
        color:white !important;
    }

    .navbar-nav .nav-link::after{
        display:none;
    }

    /* =========================================
       BUTTONS
    ========================================= */

    .navbar-buttons{
        display:flex;
        flex-direction:column;
        gap:8px;
        margin-top:10px;
    }

    .login-btn,
    .order-btn{
        width:100%;
        padding:8px;
        font-size:11px;
        text-align:center;
    }

}
/* ======================================================
   HERO SECTION
====================================================== */

.hero-section{
    position:relative;
    overflow:hidden;
    background:linear-gradient(135deg,#fffdf7 0%, #f1f7ff 100%);
    padding:20px 0 100px;
}

/* Floating Shapes */

.hero-shape{
    position:absolute;
    border-radius:50%;
    z-index:1;
}

.hero-shape-1{
    width:450px;
    height:450px;
    background:rgba(14,165,233,0.08);
    top:-150px;
    right:-120px;
}

.hero-shape-2{
    width:250px;
    height:250px;
    background:rgba(16,185,129,0.08);
    bottom:50px;
    left:-100px;
}

.hero-shape-3{
    width:120px;
    height:120px;
    background:rgba(15,23,42,0.06);
    top:220px;
    right:35%;
}

/* ======================================================
   HERO BADGE
====================================================== */

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:white;
    padding:8px 16px;
    border-radius:50px;
    box-shadow:0 8px 30px rgba(0,0,0,0.05);
    margin-bottom:30px;
    font-weight:600;
    color:var(--primary);
    position:relative;
    z-index:2;
}

.hero-badge i{
    color:var(--accent);
    font-size:18px;
}

/* ======================================================
   HERO TITLE
====================================================== */

.hero-title{
    font-size:30px;
    line-height:0.95;
    margin-bottom:30px;
    position:relative;
    z-index:2;
}

.hero-title span{
    color:var(--secondary);
}

/* ======================================================
   HERO DESCRIPTION
====================================================== */

.hero-description{
    font-size:17px;
    line-height:1.9;
    color:#64748b;
    max-width:700px;
    margin-bottom:40px;
    position:relative;
    z-index:2;
}

/* ======================================================
   HERO BUTTONS
====================================================== */

.hero-buttons{
    display:flex;
    gap:20px;
    align-items:center;
    margin-bottom:55px;
    flex-wrap:wrap;
    position:relative;
    z-index:2;
    margin-top:-22px;
}



.hero-primary-btn{
    background:var(--primary);
    color:white;
    padding:18px 38px;
    border-radius:60px;
    font-weight:700;
    transition:0.4s;
    display:inline-flex;
    align-items:center;
    gap:10px;
}

.hero-primary-btn:hover{
    background:var(--secondary);
    color:white;
    transform:translateY(-3px);
}

.hero-secondary-btn{
    border:2px solid var(--secondary);
    color:var(--secondary);
    padding:17px 34px;
    border-radius:60px;
    font-weight:700;
    transition:0.4s;
}

.hero-secondary-btn:hover{
    background:var(--secondary);
    color:white;
}

/* ======================================================
   HERO STATS
====================================================== */


.hero-stats{
    display:flex;
    gap:40px;
    flex-wrap:wrap;
    position:relative;
    z-index:2;

    margin-top:-40px;
}

.hero-stat-box h3{
    font-size:42px;
    color:var(--primary);
    margin-bottom:8px;
}

.hero-stat-box p{
    color:#64748b;
    font-size:17px;
}

.hero-stat-box:first-child h3::after{
    content:'K+';
}

.hero-stat-box:nth-child(2) h3::after{
    content:'★';
}

.hero-stat-box:nth-child(3) h3::after{
    content:'/7';
}

/* ======================================================
   HERO IMAGE
====================================================== */

.hero-image-wrapper{
   position:relative;
    z-index:2;
    transform:translateY(-10px);
}

.hero-main-image{
    width:100%;
    animation:floatImage 4s ease-in-out infinite;
}

@keyframes floatImage{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* ======================================================
   FLOATING CARDS
====================================================== */

.floating-card{
    position:absolute;
    background:white;
    padding:18px 24px;
    border-radius:24px;
    display:flex;
    align-items:center;
    gap:15px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    z-index:5;
    animation:floatingCard 4s ease-in-out infinite;
}

.floating-card i{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#e0f2fe;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--secondary);
    font-size:22px;
}

.floating-card h5{
    margin-bottom:3px;
    font-size:18px;
}

.floating-card small{
    color:#64748b;
}

.floating-card-1{
    top:30px;
    left:-40px;
}

.floating-card-2{
    bottom:40px;
    right:-30px;
}

@keyframes floatingCard{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* ======================================================
   RESPONSIVE HERO
====================================================== */

@media(max-width:1200px){

    .hero-title{
        font-size:72px;
    }

}

@media(max-width:991px){

    .hero-section{
        padding:90px 0 80px;
        text-align:center;
    }

    .hero-title{
        font-size:62px;
    }

    .hero-description{
        margin:auto auto 40px;
    }

    .hero-buttons{
        justify-content:center;
        padding:10px 0 100px;
    }

    .hero-stats{
        justify-content:center;
        margin-bottom:60px;
    }

    .floating-card-1{
        left:0;
    }

    .floating-card-2{
        right:0;
    }

}

@media(max-width:768px){

    .hero-section{
        padding-top:20px;
    }

    .hero-title{
        font-size:30px;
        line-height:1.1;
    }

    .hero-description{
        font-size:15px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
        padding:10px 0 40px;
        gap:12px;
    }

    .hero-primary-btn,
    .hero-secondary-btn{

        padding:10px 20px;
        font-size:13px;
        border-radius:40px;

    }

    .hero-stats{
        margin-top:-80px;
        font-size:13px;
        color:#64748b;
    }

    .floating-card{
        position:relative;
        margin-bottom:20px;
    }

    .floating-card-1,
    .floating-card-2{
        top:unset;
        bottom:unset;
        left:unset;
        right:unset;
    }

}


    /* ======================================================
   PREMIUM ORDER SECTION
====================================================== */

.premium-order-section{
    padding:120px 0;
    background:white;
}

.premium-order-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

/* ======================================================
   LEFT CONTENT
====================================================== */

.order-mini-badge{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#ecfeff;
    color:var(--secondary);
    padding:14px 24px;
    border-radius:50px;
    font-weight:700;
    margin-bottom:30px;
}

.order-main-title{
    font-size:68px;
    line-height:1.05;
    margin-bottom:30px;
}

.order-main-description{
    font-size:20px;
    line-height:1.9;
    color:#64748b;
    margin-bottom:40px;
}

.order-features{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:40px;
}

.order-feature-item{
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:600;
}

.order-feature-item i{
    color:var(--accent);
    font-size:20px;
}

.trust-box{
    background:#f8fbff;
    border:1px solid #e2e8f0;
    border-radius:24px;
    padding:25px;
    display:flex;
    align-items:center;
    gap:20px;
}

.trust-users{
    display:flex;
}

.trust-users img{
    width:55px;
    height:55px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid white;
    margin-left:-10px;
}

/* ======================================================
   ORDER CARD
====================================================== */

.premium-order-card{
    background:white;
    border-radius:40px;
    padding:45px;
    box-shadow:0 20px 60px rgba(0,0,0,0.08);
    border:1px solid #eef2f7;
    position:relative;
    overflow:hidden;
}

.premium-order-card::before{
    content:'';
    position:absolute;
    width:250px;
    height:250px;
    background:rgba(14,165,233,0.05);
    border-radius:50%;
    top:-120px;
    right:-100px;
}

.order-card-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:35px;
}

.order-label{
    color:var(--secondary);
    font-weight:800;
    letter-spacing:2px;
    font-size:13px;
}

.order-card-header h3{
    font-size:40px;
    margin-top:10px;
}

.urgency-badge{
    background:#fff7ed;
    color:#ea580c;
    padding:12px 18px;
    border-radius:50px;
    font-weight:700;
    display:flex;
    align-items:center;
    gap:10px;
}

/* ======================================================
   INPUTS
====================================================== */

.premium-label{
    display:block;
    margin-bottom:14px;
    font-weight:700;
    color:var(--primary);
}

.premium-input,
.premium-select{
    width:100%;
    height:65px;
    border-radius:20px;
    border:1px solid #dbe4ee;
    padding:15px 22px;
    font-size:17px;
    transition:0.4s;
    background:white;
}

.premium-input:focus,
.premium-select:focus{
    outline:none;
    border-color:var(--secondary);
    box-shadow:0 0 0 5px rgba(14,165,233,0.08);
}

/* ======================================================
   COUNTER
====================================================== */

.page-counter{
    display:flex;
    align-items:center;
    height:65px;
    border:1px solid #dbe4ee;
    border-radius:20px;
    overflow:hidden;
}

.counter-btn{
    width:70px;
    height:100%;
    border:none;
    background:#f8fbff;
    font-size:28px;
    font-weight:700;
}

.counter-input{
    flex:1;
    border:none;
    text-align:center;
    font-size:22px;
    font-weight:700;
}

.counter-input:focus{
    outline:none;
}

/* ======================================================
   UPLOAD BOX
====================================================== */

.upload-box{
    border:2px dashed #cbd5e1;
    border-radius:25px;
    padding:40px;
    text-align:center;
    background:#f8fbff;
    transition:0.4s;
    cursor:pointer;
}

.upload-box:hover{
    border-color:var(--secondary);
    background:#f0f9ff;
}

.upload-box i{
    font-size:55px;
    color:var(--secondary);
    margin-bottom:15px;
}

.upload-box p{
    font-size:18px;
    font-weight:700;
    margin-bottom:5px;
}

/* ======================================================
   PRICE PREVIEW
====================================================== */

.price-preview-box{
    background:#081120;
    color:white;
    border-radius:25px;
    padding:28px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
}

.price-preview-box h4{
    color:white;
    font-size:42px;
}

.delivery-time{
    background:rgba(255,255,255,0.1);
    padding:12px 18px;
    border-radius:50px;
    display:flex;
    align-items:center;
    gap:10px;
}

/* ======================================================
   SUBMIT BUTTON
====================================================== */

.premium-submit-btn{
    width:100%;
    height:68px;
    border:none;
    border-radius:25px;
    background:var(--secondary);
    color:white;
    font-size:18px;
    font-weight:700;
    transition:0.4s;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
}

.premium-submit-btn:hover{
    background:var(--primary);
    transform:translateY(-3px);
}

.secure-payment{
    margin-top:25px;
    text-align:center;
    color:#64748b;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media(max-width:1200px){

    .order-main-title{
        font-size:56px;
    }

}

@media(max-width:991px){

    .premium-order-wrapper{
        grid-template-columns:1fr;
    }

    .order-left-content{
        text-align:center;
    }

    .order-features{
        justify-content:center;
    }

    .trust-box{
        justify-content:center;
    }

}

@media(max-width:768px){

    .order-main-title{
        font-size:42px;
    }

    .order-features{
        grid-template-columns:1fr;
    }

    .order-card-header{
        flex-direction:column;
        align-items:flex-start;
        gap:20px;
    }

    .price-preview-box{
        flex-direction:column;
        gap:20px;
        align-items:flex-start;
    }

    .premium-order-card{
        padding:30px;
    }

}

/* ======================================================
   WHY CHOOSE SECTION
====================================================== */

.why-choose-section{
    position:relative;
    overflow:hidden;
    background:linear-gradient(135deg,#f8fbff 0%, #ffffff 100%);
    padding:120px 0;
}

/* Floating Shapes */

.choose-shape{
    position:absolute;
    border-radius:50%;
}

.choose-shape-1{
    width:350px;
    height:350px;
    background:rgba(14,165,233,0.05);
    top:-120px;
    left:-120px;
}

.choose-shape-2{
    width:220px;
    height:220px;
    background:rgba(16,185,129,0.05);
    bottom:-80px;
    right:-80px;
}

/* ======================================================
   SECTION HEADER
====================================================== */

.section-header{
    max-width:850px;
    margin:auto;
    margin-bottom:70px;
    position:relative;
    z-index:2;
}

.section-mini-title{
    color:var(--secondary);
    font-size:14px;
    font-weight:800;
    letter-spacing:3px;
    margin-bottom:20px;
}

.section-main-title{
    font-size:64px;
    line-height:1.1;
    margin-bottom:30px;
}

.section-description{
    font-size:20px;
    line-height:1.9;
    color:#64748b;
}

/* ======================================================
   FEATURE CARDS
====================================================== */

.choose-card{
    background:white;
    border-radius:35px;
    padding:45px;
    height:100%;
    transition:0.4s;
    position:relative;
    overflow:hidden;
    border:1px solid #edf2f7;
    box-shadow:0 10px 40px rgba(0,0,0,0.03);
    z-index:2;
}

.choose-card::before{
    content:'';
    position:absolute;
    width:100%;
    height:0%;
    background:linear-gradient(135deg,#0ea5e9,#10b981);
    left:0;
    bottom:0;
    transition:0.5s;
    z-index:-1;
}

.choose-card:hover::before{
    height:100%;
}

.choose-card:hover{
    transform:translateY(-10px);
}

.choose-card:hover h3,
.choose-card:hover p,
.choose-card:hover i{
    color:white;
}

.choose-icon{
    width:90px;
    height:90px;
    border-radius:30px;
    background:#f0f9ff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:30px;
    transition:0.4s;
}

.choose-icon i{
    font-size:38px;
    color:var(--secondary);
    transition:0.4s;
}

.choose-card h3{
    font-size:30px;
    margin-bottom:20px;
    transition:0.4s;
}

.choose-card p{
    color:#64748b;
    line-height:1.9;
    font-size:17px;
    transition:0.4s;
}

/* ======================================================
   TRUST STATISTICS
====================================================== */

.trust-statistics-wrapper{
    margin-top:90px;
}

.trust-stat-card{
    background:white;
    border-radius:30px;
    padding:45px 30px;
    text-align:center;
    border:1px solid #edf2f7;
    transition:0.4s;
    box-shadow:0 10px 40px rgba(0,0,0,0.03);
}

.trust-stat-card:hover{
    transform:translateY(-8px);
    background:var(--primary);
}

.trust-stat-card:hover h2,
.trust-stat-card:hover p{
    color:white;
}

.trust-stat-card h2{
    font-size:58px;
    margin-bottom:15px;
    color:var(--secondary);
    transition:0.4s;
}

.trust-stat-card p{
    color:#64748b;
    font-size:18px;
    transition:0.4s;
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media(max-width:1200px){

    .section-main-title{
        font-size:54px;
    }

}

@media(max-width:991px){

    .section-main-title{
        font-size:46px;
    }

}

@media(max-width:768px){

    .section-main-title{
        font-size:38px;
    }

    .section-description{
        font-size:18px;
    }

    .choose-card{
        padding:35px;
    }

    .trust-stat-card{
        margin-bottom:25px;
    }

  }

    /* ======================================================
   SERVICES SECTION
====================================================== */

.services-section{
    position:relative;
    overflow:hidden;
    padding:120px 0;
    background:white;
}

/* Floating Shapes */

.service-shape{
    position:absolute;
    border-radius:50%;
}

.service-shape-1{
    width:300px;
    height:300px;
    background:rgba(14,165,233,0.05);
    top:-100px;
    right:-100px;
}

.service-shape-2{
    width:180px;
    height:180px;
    background:rgba(16,185,129,0.06);
    bottom:-60px;
    left:-60px;
}

/* ======================================================
   SERVICE CARD
====================================================== */

.service-card{
    background:white;
    border-radius:35px;
    padding:40px;
    position:relative;
    overflow:hidden;
    border:1px solid #edf2f7;
    transition:0.5s;
    height:100%;
    box-shadow:0 12px 45px rgba(0,0,0,0.04);
}

.service-card::before{
    content:'';
    position:absolute;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,var(--secondary),var(--accent));
    top:0;
    left:0;
}

.service-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 60px rgba(0,0,0,0.08);
}

/* Featured */

.featured-service{
    background:linear-gradient(135deg,#081120 0%, #0f172a 100%);
}

.featured-service h3,
.featured-service p,
.featured-service li,
.featured-service .service-price,
.featured-service .service-price h4{
    color:white !important;
}

.featured-label{
    position:absolute;
    top:20px;
    right:-40px;
    background:var(--accent);
    color:white;
    padding:10px 50px;
    font-size:13px;
    font-weight:800;
    transform:rotate(45deg);
}

/* ======================================================
   TOP AREA
====================================================== */

.service-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
}

.service-icon{
    width:90px;
    height:90px;
    border-radius:28px;
    background:#f0f9ff;
    display:flex;
    align-items:center;
    justify-content:center;
}

.service-icon i{
    font-size:38px;
    color:var(--secondary);
}

.service-badge{
    background:#ecfeff;
    color:var(--secondary);
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
}

/* ======================================================
   CONTENT
====================================================== */

.service-card h3{
    font-size:32px;
    margin-bottom:20px;
}

.service-card p{
    color:#64748b;
    line-height:1.9;
    margin-bottom:30px;
}

/* ======================================================
   FEATURES
====================================================== */

.service-features{
    list-style:none;
    padding:0;
    margin:0 0 35px;
}

.service-features li{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:15px;
    font-weight:600;
    color:var(--primary);
}

.service-features li i{
    color:var(--accent);
}

/* ======================================================
   FOOTER
====================================================== */

.service-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-top:1px solid #edf2f7;
    padding-top:25px;
}

.service-price{
    color:#64748b;
    font-size:15px;
}

.service-price h4{
    font-size:38px;
    color:var(--primary);
    margin-top:8px;
}

.service-btn{
    width:60px;
    height:60px;
    border-radius:50%;
    background:var(--primary);
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    transition:0.4s;
}

.service-btn:hover{
    background:var(--secondary);
    color:white;
    transform:rotate(-45deg);
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media(max-width:1200px){

    .service-card h3{
        font-size:28px;
    }

}

@media(max-width:768px){

    .service-card{
        padding:30px;
    }

    .service-card h3{
        font-size:26px;
    }

    .service-footer{
        flex-direction:column;
        align-items:flex-start;
        gap:20px;
    }

  }

/* ======================================================
   ULTRA PREMIUM HOW IT WORKS SECTION
====================================================== */

.how-it-works-section{
    position: relative;
    overflow: hidden;
    padding: 140px 0;
    background:
        radial-gradient(circle at top left, rgba(14,165,233,0.08), transparent 30%),
        radial-gradient(circle at bottom right, rgba(16,185,129,0.08), transparent 30%),
        linear-gradient(135deg,#f8fbff 0%, #f1f7ff 50%, #ffffff 100%);
}

/* ======================================================
   FLOATING BACKGROUND SHAPES
====================================================== */

.works-shape{
    position:absolute;
    border-radius:50%;
    z-index:1;
    filter: blur(40px);
}

.works-shape-1{
    width:500px;
    height:500px;
    background:rgba(14,165,233,0.12);
    top:-220px;
    left:-180px;
}

.works-shape-2{
    width:350px;
    height:350px;
    background:rgba(16,185,129,0.10);
    bottom:-150px;
    right:-100px;
}

/* ======================================================
   SECTION HEADER
====================================================== */

.section-header{
    position: relative;
    z-index: 5;
    margin-bottom: 90px;
}

.section-mini-title{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(14,165,233,0.08);
    color:#0ea5e9;
    font-size:14px;
    font-weight:700;
    letter-spacing:4px;
    margin-bottom:28px;
    text-transform:uppercase;
    border:1px solid rgba(14,165,233,0.12);
}

.section-main-title{
    font-size:78px;
    line-height:1.1;
    font-weight:900;
    color:#081120;
    margin-bottom:35px;
    letter-spacing:-2px;
}

.section-description{
    max-width:850px;
    margin:auto;
    font-size:24px;
    line-height:1.9;
    color:#64748b;
}

/* ======================================================
   PROCESS WRAPPER
====================================================== */

.process-wrapper{
    position:relative;
    z-index:3;
}

/* ======================================================
   CONNECTION LINE
====================================================== */

.process-line{
    position:absolute;
    top:145px;
    left:8%;
    width:84%;
    height:8px;
    border-radius:50px;
    background:linear-gradient(90deg,#0ea5e9,#10b981);
    opacity:0.15;
    z-index:1;
}

/* ======================================================
   PROCESS CARD
====================================================== */

.process-card{
    position:relative;
    background:white;
    border-radius:35px;
    padding:50px 35px;
    text-align:left;
    transition:all 0.45s ease;
    overflow:hidden;
    z-index:5;
    height:100%;

    border:1px solid rgba(255,255,255,0.6);

    backdrop-filter: blur(12px);

    box-shadow:
        0 10px 40px rgba(0,0,0,0.04),
        0 2px 8px rgba(0,0,0,0.02);
}

/* CARD TOP BORDER */

.process-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:6px;
    background:linear-gradient(90deg,#0ea5e9,#10b981);
}

/* GLOW HOVER EFFECT */

.process-card::after{
    content:'';
    position:absolute;
    width:220px;
    height:220px;
    background:rgba(14,165,233,0.08);
    border-radius:50%;
    top:-100px;
    right:-100px;
    transition:0.5s;
}

.process-card:hover::after{
    transform:scale(1.3);
}

/* CARD HOVER */

.process-card:hover{
    transform:translateY(-15px);
    box-shadow:
        0 25px 70px rgba(14,165,233,0.15),
        0 10px 30px rgba(0,0,0,0.08);
}

/* ======================================================
   PROCESS NUMBER
====================================================== */

.process-number{
    position:absolute;
    top:25px;
    right:30px;
    font-size:70px;
    font-weight:900;
    color:rgba(14,165,233,0.08);
    line-height:1;
}

/* ======================================================
   ICON BOX
====================================================== */

.process-icon{
    width:95px;
    height:95px;
    border-radius:28px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:35px;

    background:linear-gradient(135deg,#0ea5e9,#10b981);

    position:relative;

    box-shadow:
        0 12px 30px rgba(14,165,233,0.25);

    transition:0.4s;
}

/* ICON INNER RING */

.process-icon::before{
    content:'';
    position:absolute;
    inset:8px;
    border:2px dashed rgba(255,255,255,0.35);
    border-radius:22px;
}

/* ICON */

.process-icon i{
    font-size:38px;
    color:white;
    position:relative;
    z-index:2;
}

/* ICON HOVER */

.process-card:hover .process-icon{
    transform:rotate(-8deg) scale(1.05);
}

/* ======================================================
   CARD CONTENT
====================================================== */

.process-card h3{
    font-size:34px;
    line-height:1.3;
    font-weight:800;
    color:#081120;
    margin-bottom:20px;
}

.process-card p{
    color:#64748b;
    line-height:1.9;
    font-size:18px;
    margin-bottom:0;
}

/* ======================================================
   CTA SECTION
====================================================== */

.process-bottom-cta{
    position:relative;
    overflow:hidden;

    margin-top:120px;

    padding:80px 70px;

    border-radius:40px;

    background:
        linear-gradient(135deg,#081120 0%, #0f172a 100%);

    box-shadow:
        0 25px 80px rgba(0,0,0,0.15);

    z-index:5;
}

/* CTA GLOW */

.process-bottom-cta::before{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    background:rgba(255,255,255,0.04);
    top:-220px;
    right:-180px;
}

/* ======================================================
   CTA CONTENT
====================================================== */

.cta-content{
    position:relative;
    z-index:5;
}

.cta-content h2{
    color:white;
    font-size:56px;
    line-height:1.2;
    font-weight:900;
    margin-bottom:22px;
}

.cta-content p{
    color:rgba(255,255,255,0.72);
    font-size:21px;
    line-height:1.9;
}

/* ======================================================
   CTA BUTTON
====================================================== */

.cta-process-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    padding:20px 42px;

    border-radius:70px;

    background:linear-gradient(135deg,#0ea5e9,#10b981);

    color:white;
    text-decoration:none;

    font-size:18px;
    font-weight:700;

    transition:all 0.4s ease;

    box-shadow:
        0 15px 35px rgba(14,165,233,0.25);

    position:relative;
    overflow:hidden;
}

/* BUTTON SHINE EFFECT */

.cta-process-btn::before{
    content:'';
    position:absolute;
    top:0;
    left:-120%;
    width:100%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.35),
        transparent
    );
    transition:0.8s;
}

.cta-process-btn:hover::before{
    left:120%;
}

.cta-process-btn:hover{
    transform:translateY(-5px);
    color:white;

    box-shadow:
        0 20px 45px rgba(14,165,233,0.35);
}

/* ======================================================
   RESPONSIVE DESIGN
====================================================== */

@media(max-width:1200px){

    .section-main-title{
        font-size:64px;
    }

    .cta-content h2{
        font-size:46px;
    }

}

@media(max-width:991px){

    .process-line{
        display:none;
    }

    .section-main-title{
        font-size:54px;
    }

    .section-description{
        font-size:21px;
    }

    .process-card{
        margin-bottom:25px;
    }

    .process-bottom-cta{
        text-align:center;
        padding:60px 35px;
    }

    .cta-content{
        margin-bottom:35px;
    }

    .cta-content h2{
        font-size:40px;
    }

}

@media(max-width:768px){

    .how-it-works-section{
        padding:100px 0;
    }

    .section-main-title{
        font-size:42px;
        line-height:1.2;
    }

    .section-description{
        font-size:18px;
    }

    .process-card{
        padding:40px 28px;
        border-radius:28px;
    }

    .process-card h3{
        font-size:28px;
    }

    .process-card p{
        font-size:16px;
    }

    .process-icon{
        width:85px;
        height:85px;
    }

    .process-icon i{
        font-size:32px;
    }

    .cta-content h2{
        font-size:32px;
    }

    .cta-content p{
        font-size:17px;
    }

    .cta-process-btn{
        width:100%;
    }

}

/* ======================================================
   TESTIMONIALS SECTION
====================================================== */

.testimonials-section{
    position:relative;
    overflow:hidden;
    padding:130px 0;
    background:white;
}

/* ======================================================
   FLOATING SHAPES
====================================================== */

.testimonial-shape{
    position:absolute;
    border-radius:50%;
    z-index:1;
}

.testimonial-shape-1{
    width:350px;
    height:350px;
    background:rgba(14,165,233,0.05);
    top:-120px;
    right:-120px;
}

.testimonial-shape-2{
    width:250px;
    height:250px;
    background:rgba(16,185,129,0.05);
    bottom:-100px;
    left:-100px;
}

/* ======================================================
   TESTIMONIAL CARD
====================================================== */

.testimonial-card{
    position:relative;
    background:white;
    border-radius:38px;
    padding:45px;
    border:1px solid #edf2f7;
    transition:0.5s;
    height:100%;
    overflow:hidden;
    z-index:2;
    box-shadow:0 15px 50px rgba(0,0,0,0.04);
}

/* TOP BORDER */

.testimonial-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:6px;
    background:linear-gradient(90deg,#0ea5e9,#10b981);
}

/* HOVER */

.testimonial-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 70px rgba(0,0,0,0.08);
}

/* ======================================================
   FEATURED TESTIMONIAL
====================================================== */

.featured-testimonial{
    background:linear-gradient(135deg,#081120 0%, #0f172a 100%);
}

.featured-testimonial .testimonial-text,
.featured-testimonial h5,
.featured-testimonial span,
.featured-testimonial i{
    color:white !important;
}

.top-review-badge{
    position:absolute;
    top:20px;
    right:-45px;
    background:var(--accent);
    color:white;
    padding:10px 55px;
    font-size:13px;
    font-weight:800;
    transform:rotate(45deg);
}

/* ======================================================
   QUOTE ICON
====================================================== */

.quote-icon{
    width:85px;
    height:85px;
    border-radius:28px;
    background:#f0f9ff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:30px;
}

.quote-icon i{
    font-size:42px;
    color:var(--secondary);
}

/* ======================================================
   STARS
====================================================== */

.testimonial-stars{
    display:flex;
    gap:8px;
    margin-bottom:25px;
}

.testimonial-stars i{
    color:#facc15;
    font-size:18px;
}

/* ======================================================
   TEXT
====================================================== */

.testimonial-text{
    font-size:18px;
    line-height:2;
    color:#64748b;
    margin-bottom:35px;
}

/* ======================================================
   USER
====================================================== */

.testimonial-user{
    display:flex;
    align-items:center;
    gap:18px;
}

.testimonial-user img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid #f1f5f9;
}

.testimonial-user h5{
    margin-bottom:5px;
    font-size:22px;
    color:var(--primary);
}

.testimonial-user span{
    color:#64748b;
    font-size:15px;
}

/* ======================================================
   TRUSTED UNIVERSITIES
====================================================== */

.trusted-universities{
    margin-top:100px;
    text-align:center;
    position:relative;
    z-index:2;
}

.trusted-universities p{
    color:#64748b;
    font-size:18px;
    margin-bottom:35px;
}

.university-logos{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:30px;
}

.university-logos span{
    background:#f8fbff;
    border:1px solid #edf2f7;
    padding:18px 32px;
    border-radius:60px;
    font-size:18px;
    font-weight:700;
    color:var(--primary);
    transition:0.4s;
}

.university-logos span:hover{
    background:var(--secondary);
    color:white;
    transform:translateY(-5px);
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media(max-width:991px){

    .testimonial-card{
        margin-bottom:20px;
    }

}

@media(max-width:768px){

    .testimonials-section{
        padding:100px 0;
    }

    .testimonial-card{
        padding:35px;
    }

    .testimonial-text{
        font-size:17px;
    }

    .university-logos{
        gap:15px;
    }

    .university-logos span{
        padding:14px 24px;
        font-size:16px;
    }

}

/* ======================================================
   FAQ SECTION
====================================================== */

.faq-section{
    position:relative;
    overflow:hidden;
    padding:130px 0;
    background:linear-gradient(135deg,#f8fbff 0%, #ffffff 100%);
}

/* ======================================================
   SHAPES
====================================================== */

.faq-shape{
    position:absolute;
    border-radius:50%;
    z-index:1;
}

.faq-shape-1{
    width:320px;
    height:320px;
    background:rgba(14,165,233,0.05);
    top:-120px;
    left:-120px;
}

.faq-shape-2{
    width:240px;
    height:240px;
    background:rgba(16,185,129,0.05);
    bottom:-80px;
    right:-80px;
}

/* ======================================================
   LEFT CONTENT
====================================================== */

.faq-left-content{
    position:relative;
    z-index:2;
    padding-right:30px;
}

/* ======================================================
   SUPPORT BOX
====================================================== */

.faq-support-box{
    margin-top:45px;
    background:white;
    border-radius:30px;
    padding:30px;
    display:flex;
    align-items:flex-start;
    gap:20px;
    box-shadow:0 15px 50px rgba(0,0,0,0.05);
    border:1px solid #edf2f7;
}

.faq-support-icon{
    width:75px;
    height:75px;
    border-radius:25px;
    background:linear-gradient(135deg,#0ea5e9,#10b981);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.faq-support-icon i{
    font-size:32px;
    color:white;
}

.faq-support-box h4{
    margin-bottom:10px;
    font-size:28px;
    color:var(--primary);
}

.faq-support-box p{
    color:#64748b;
    line-height:1.8;
    margin-bottom:0;
}

/* ======================================================
   ACCORDION
====================================================== */

.faq-accordion-wrapper{
    position:relative;
    z-index:2;
}

.custom-faq-item{
    border:none !important;
    margin-bottom:25px;
    background:white;
    border-radius:28px !important;
    overflow:hidden;
    box-shadow:0 15px 45px rgba(0,0,0,0.04);
}

/* ======================================================
   BUTTON
====================================================== */

.custom-faq-btn{
    background:white !important;
    border:none !important;
    box-shadow:none !important;
    padding:32px 35px !important;
    font-size:22px;
    font-weight:700;
    color:var(--primary) !important;
    border-radius:28px !important;
}

/* ACTIVE */

.custom-faq-btn:not(.collapsed){
    background:linear-gradient(135deg,#0ea5e9,#10b981) !important;
    color:white !important;
}

/* ICON */

.custom-faq-btn::after{
    filter:brightness(0);
}

.custom-faq-btn:not(.collapsed)::after{
    filter:brightness(100);
}

/* ======================================================
   BODY
====================================================== */

.custom-faq-body{
    padding:0 35px 35px 35px !important;
    font-size:18px;
    line-height:2;
    color:#64748b;
    background:white;
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media(max-width:991px){

    .faq-left-content{
        margin-bottom:60px;
        padding-right:0;
    }

}

@media(max-width:768px){

    .faq-section{
        padding:100px 0;
    }

    .custom-faq-btn{
        font-size:18px;
        padding:25px !important;
    }

    .custom-faq-body{
        font-size:16px;
        padding:0 25px 25px 25px !important;
    }

    .faq-support-box{
        flex-direction:column;
    }

}

/* ======================================================
   FOOTER SECTION
====================================================== */

.footer-section{
    position:relative;
    overflow:hidden;
    background:linear-gradient(135deg,#081120 0%, #0f172a 100%);
    padding-top:120px;
    color:white;
}

/* ======================================================
   FLOATING SHAPES
====================================================== */

.footer-shape{
    position:absolute;
    border-radius:50%;
}

.footer-shape-1{
    width:320px;
    height:320px;
    background:rgba(14,165,233,0.06);
    top:-120px;
    left:-120px;
}

.footer-shape-2{
    width:220px;
    height:220px;
    background:rgba(16,185,129,0.05);
    bottom:-80px;
    right:-80px;
}

/* ======================================================
   FOOTER TOP
====================================================== */

.footer-top{
    position:relative;
    z-index:2;
    padding-bottom:80px;
}

/* ======================================================
   LOGO
====================================================== */

.footer-logo{
    display:inline-block;
    font-size:42px;
    font-weight:900;
    color:white;
    margin-bottom:28px;
    text-decoration:none;
}

.footer-brand p{
    color:rgba(255,255,255,0.7);
    line-height:2;
    font-size:17px;
    margin-bottom:35px;
}

/* ======================================================
   TRUST BADGES
====================================================== */

.footer-trust-badges{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}

.footer-trust-badges span{
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    padding:14px 20px;
    border-radius:50px;
    display:flex;
    align-items:center;
    gap:10px;
    font-size:15px;
    color:white;
}

.footer-trust-badges i{
    color:var(--accent);
}

/* ======================================================
   FOOTER WIDGETS
====================================================== */

.footer-widget h4{
    font-size:28px;
    margin-bottom:30px;
    color:white;
}

.footer-widget ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-widget ul li{
    margin-bottom:18px;
}

.footer-widget ul li a{
    color:rgba(255,255,255,0.7);
    text-decoration:none;
    transition:0.4s;
    font-size:17px;
}

.footer-widget ul li a:hover{
    color:white;
    padding-left:6px;
}

/* ======================================================
   NEWSLETTER
====================================================== */

.footer-newsletter-text{
    color:rgba(255,255,255,0.7);
    line-height:1.9;
    margin-bottom:25px;
}

.footer-newsletter{
    position:relative;
    margin-bottom:30px;
}

.footer-newsletter input{
    width:100%;
    height:65px;
    border:none;
    border-radius:60px;
    padding:0 150px 0 25px;
    background:rgba(255,255,255,0.08);
    color:white;
    outline:none;
}

.footer-newsletter input::placeholder{
    color:rgba(255,255,255,0.5);
}

.footer-newsletter button{
    position:absolute;
    top:7px;
    right:7px;
    height:51px;
    border:none;
    border-radius:50px;
    padding:0 28px;
    background:linear-gradient(135deg,#0ea5e9,#10b981);
    color:white;
    font-weight:700;
    transition:0.4s;
}

.footer-newsletter button:hover{
    transform:translateY(-2px);
}

/* ======================================================
   SOCIALS
====================================================== */

.footer-socials{
    display:flex;
    gap:15px;
}

.footer-socials a{
    width:52px;
    height:52px;
    border-radius:50%;
    background:rgba(255,255,255,0.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-size:20px;
    transition:0.4s;
    text-decoration:none;
}

.footer-socials a:hover{
    background:linear-gradient(135deg,#0ea5e9,#10b981);
    transform:translateY(-4px);
}

/* ======================================================
   FOOTER BOTTOM
====================================================== */

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.08);
    padding:30px 0;
    position:relative;
    z-index:2;
}

.footer-bottom p{
    margin-bottom:0;
    color:rgba(255,255,255,0.65);
}

.footer-bottom-links{
    display:flex;
    justify-content:flex-end;
    gap:30px;
    flex-wrap:wrap;
}

.footer-bottom-links a{
    color:rgba(255,255,255,0.65);
    text-decoration:none;
    transition:0.4s;
}

.footer-bottom-links a:hover{
    color:white;
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media(max-width:991px){

    .footer-bottom{
        text-align:center;
    }

    .footer-bottom-links{
        justify-content:center;
        margin-top:20px;
    }

}

@media(max-width:768px){

    .footer-section{
        padding-top:90px;
    }

    .footer-logo{
        font-size:34px;
    }

    .footer-widget h4{
        font-size:24px;
    }

    .footer-newsletter input{
        padding-right:25px;
    }

    .footer-newsletter button{
        position:relative;
        width:100%;
        top:unset;
        right:unset;
        margin-top:15px;
    }

}

/* ======================================================
   BLOG SECTION
====================================================== */

.blog-section{
    position:relative;
    overflow:hidden;
    padding:130px 0;
    background:linear-gradient(135deg,#f8fbff 0%, #ffffff 100%);
}

/* ======================================================
   FLOATING SHAPES
====================================================== */

.blog-shape{
    position:absolute;
    border-radius:50%;
}

.blog-shape-1{
    width:350px;
    height:350px;
    background:rgba(14,165,233,0.05);
    top:-120px;
    right:-120px;
}

.blog-shape-2{
    width:220px;
    height:220px;
    background:rgba(16,185,129,0.05);
    bottom:-80px;
    left:-80px;
}

/* ======================================================
   FEATURED BLOG
====================================================== */

.featured-blog-card{
    background:white;
    border-radius:40px;
    overflow:hidden;
    border:1px solid #edf2f7;
    box-shadow:0 20px 60px rgba(0,0,0,0.05);
    height:100%;
    transition:0.5s;
    position:relative;
    z-index:2;
}

.featured-blog-card:hover{
    transform:translateY(-10px);
    box-shadow:0 30px 80px rgba(0,0,0,0.08);
}

/* ======================================================
   BLOG IMAGE
====================================================== */

.blog-image{
    position:relative;
    overflow:hidden;
}

.blog-image img{
    width:100%;
    height:380px;
    object-fit:cover;
    transition:0.5s;
}

.featured-blog-card:hover .blog-image img{
    transform:scale(1.05);
}

/* ======================================================
   CATEGORY
====================================================== */

.blog-category{
    position:absolute;
    top:25px;
    left:25px;
    background:linear-gradient(135deg,#0ea5e9,#10b981);
    color:white;
    padding:10px 20px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
}

/* ======================================================
   CONTENT
====================================================== */

.blog-content{
    padding:40px;
}

.blog-meta{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    margin-bottom:22px;
}

.blog-meta span{
    display:flex;
    align-items:center;
    gap:8px;
    color:#64748b;
    font-size:15px;
}

.blog-meta i{
    color:var(--secondary);
}

.featured-blog-card h3{
    font-size:38px;
    line-height:1.4;
    margin-bottom:22px;
    color:var(--primary);
}

.featured-blog-card p{
    color:#64748b;
    line-height:2;
    margin-bottom:35px;
    font-size:17px;
}

/* ======================================================
   READ BUTTON
====================================================== */

.blog-read-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:linear-gradient(135deg,#0ea5e9,#10b981);
    color:white;
    padding:18px 34px;
    border-radius:60px;
    font-weight:700;
    text-decoration:none;
    transition:0.4s;
}

.blog-read-btn:hover{
    color:white;
    transform:translateY(-3px);
}

/* ======================================================
   SMALL BLOG CARDS
====================================================== */

.blog-card{
    background:white;
    border-radius:32px;
    overflow:hidden;
    display:flex;
    align-items:center;
    border:1px solid #edf2f7;
    box-shadow:0 15px 50px rgba(0,0,0,0.04);
    transition:0.5s;
    position:relative;
    z-index:2;
}

.blog-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 70px rgba(0,0,0,0.08);
}

.blog-card-image{
    position:relative;
    flex:0 0 230px;
    overflow:hidden;
}

.blog-card-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s;
}

.blog-card:hover .blog-card-image img{
    transform:scale(1.05);
}

.blog-card-content{
    padding:30px;
}

.blog-card-content h4{
    font-size:28px;
    line-height:1.5;
    margin-bottom:20px;
    color:var(--primary);
}

/* ======================================================
   BLOG LINK
====================================================== */

.blog-link{
    display:inline-flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    font-weight:700;
    color:var(--secondary);
    transition:0.4s;
}

.blog-link:hover{
    gap:14px;
    color:var(--secondary);
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media(max-width:1200px){

    .featured-blog-card h3{
        font-size:32px;
    }

    .blog-card-content h4{
        font-size:24px;
    }

}

@media(max-width:991px){

    .featured-blog-card{
        margin-bottom:30px;
    }

}

@media(max-width:768px){

    .blog-section{
        padding:100px 0;
    }

    .blog-content{
        padding:30px;
    }

    .featured-blog-card h3{
        font-size:28px;
    }

    .blog-card{
        flex-direction:column;
    }

    .blog-card-image{
        width:100%;
        flex:unset;
    }

    .blog-card-image img{
        height:250px;
    }

    .blog-card-content{
        padding:25px;
    }

    .blog-card-content h4{
        font-size:22px;
    }

}

/* ======================================================
   PREMIUM CTA SECTION
====================================================== */

.premium-cta-section{
    position:relative;
    overflow:hidden;
    padding:130px 0;
    background:white;
}

/* ======================================================
   FLOATING SHAPES
====================================================== */

.cta-shape{
    position:absolute;
    border-radius:50%;
}

.cta-shape-1{
    width:350px;
    height:350px;
    background:rgba(14,165,233,0.05);
    top:-120px;
    left:-120px;
}

.cta-shape-2{
    width:260px;
    height:260px;
    background:rgba(16,185,129,0.05);
    bottom:-100px;
    right:-100px;
}

/* ======================================================
   CTA WRAPPER
====================================================== */

.premium-cta-wrapper{
    position:relative;
    background:linear-gradient(135deg,#081120 0%, #0f172a 100%);
    border-radius:50px;
    padding:80px;
    overflow:hidden;
    z-index:2;
    box-shadow:0 30px 100px rgba(0,0,0,0.12);
}

/* INNER GLOW */

.premium-cta-wrapper::before{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    background:rgba(255,255,255,0.04);
    top:-220px;
    right:-180px;
}

/* ======================================================
   CONTENT
====================================================== */

.premium-cta-content{
    position:relative;
    z-index:2;
}

/* BADGE */

.premium-cta-badge{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.08);
    padding:14px 24px;
    border-radius:60px;
    color:white;
    font-weight:700;
    margin-bottom:35px;
}

.premium-cta-badge i{
    color:#facc15;
}

/* TITLE */

.premium-cta-content h2{
    font-size:60px;
    line-height:1.2;
    color:white;
    margin-bottom:28px;
}

/* TEXT */

.premium-cta-content p{
    color:rgba(255,255,255,0.72);
    font-size:20px;
    line-height:2;
    margin-bottom:40px;
    max-width:720px;
}

/* ======================================================
   TRUST ITEMS
====================================================== */

.cta-trust-items{
    display:flex;
    flex-wrap:wrap;
    gap:25px;
}

.cta-trust-item{
    display:flex;
    align-items:center;
    gap:12px;
    color:white;
    font-weight:600;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    padding:14px 22px;
    border-radius:50px;
}

.cta-trust-item i{
    color:#10b981;
}

/* ======================================================
   ACTION BOX
====================================================== */

.premium-cta-action{
    position:relative;
    z-index:2;
    background:white;
    border-radius:35px;
    padding:45px;
    text-align:center;
    box-shadow:0 25px 80px rgba(0,0,0,0.15);
}

/* PRICE */

.cta-price-box span{
    color:#64748b;
    font-size:18px;
}

.cta-price-box h3{
    font-size:78px;
    color:var(--primary);
    margin:10px 0;
}

.cta-price-box p{
    color:#64748b;
    margin-bottom:35px;
}

/* ======================================================
   BUTTON
====================================================== */

.premium-cta-btn{
    width:100%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    background:linear-gradient(135deg,#0ea5e9,#10b981);
    color:white;
    padding:20px 35px;
    border-radius:60px;
    font-weight:700;
    text-decoration:none;
    transition:0.4s;
    margin-bottom:25px;
    font-size:18px;
}

.premium-cta-btn:hover{
    color:white;
    transform:translateY(-4px);
    box-shadow:0 20px 50px rgba(14,165,233,0.25);
}

/* NOTE */

.premium-cta-action small{
    color:#64748b;
    font-size:15px;
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media(max-width:1200px){

    .premium-cta-content h2{
        font-size:52px;
    }

}

@media(max-width:991px){

    .premium-cta-wrapper{
        padding:60px 40px;
    }

    .premium-cta-content{
        margin-bottom:50px;
        text-align:center;
    }

    .premium-cta-content p{
        margin:auto auto 40px;
    }

    .cta-trust-items{
        justify-content:center;
    }

}

@media(max-width:768px){

    .premium-cta-section{
        padding:100px 0;
    }

    .premium-cta-wrapper{
        padding:45px 25px;
        border-radius:35px;
    }

    .premium-cta-content h2{
        font-size:38px;
    }

    .premium-cta-content p{
        font-size:17px;
    }

    .cta-trust-items{
        gap:15px;
    }

    .cta-trust-item{
        width:100%;
        justify-content:center;
    }

    .premium-cta-action{
        padding:35px 25px;
    }

    .cta-price-box h3{
        font-size:60px;
    }

}

/* ======================================================
   PREMIUM MOBILE MENU
====================================================== */

.custom-toggler{
    border:none;
    background:transparent;
    padding:0;
    width:45px;
    height:45px;
    position:relative;
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:7px;
    box-shadow:none !important;
}

/* LINES */

.custom-toggler span{
    display:block;
    width:100%;
    height:4px;
    background:var(--primary);
    border-radius:50px;
    transition:0.4s;
}

/* ======================================================
   MOBILE MENU
====================================================== */

@media(max-width:991px){

    .navbar-collapse{
        background:white;
        margin-top:20px;
        padding:30px;
        border-radius:30px;
        box-shadow:0 20px 60px rgba(0,0,0,0.08);
    }

    .navbar-nav{
        gap:15px !important;
    }

    .nav-link{
        padding:14px 20px !important;
        border-radius:15px;
    }

    .nav-link:hover{
        background:#f8fbff;
    }

    .nav-buttons{
        margin-top:25px;
        flex-direction:column;
    }

    .login-btn,
    .order-btn{
        width:100%;
        justify-content:center;
    }

}

/* ======================================================
   FLOATING WHATSAPP BUTTON
====================================================== */

.floating-whatsapp{
    position:fixed;
    width:70px;
    height:70px;
    border-radius:50%;
    background:linear-gradient(135deg,#25d366,#128c7e);
    right:25px;
    bottom:110px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-size:34px;
    z-index:999;
    box-shadow:0 15px 45px rgba(37,211,102,0.35);
    transition:0.4s;
    animation:whatsappPulse 2s infinite;
}

.floating-whatsapp:hover{
    transform:translateY(-5px) scale(1.05);
    color:white;
}

/* PULSE */

@keyframes whatsappPulse{

    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,0.45);
    }

    70%{
        box-shadow:0 0 0 18px rgba(37,211,102,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }

}

/* ======================================================
   End of individual section styles
====================================================== */

/* ======================================================
   SCROLL TOP BUTTON
====================================================== */

.scroll-top-btn{
    position:fixed;
    width:65px;
    height:65px;
    border:none;
    border-radius:50%;
    background:linear-gradient(135deg,#0ea5e9,#10b981);
    right:25px;
    bottom:25px;
    color:white;
    font-size:24px;
    z-index:999;
    cursor:pointer;
    transition:0.4s;
    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    box-shadow:0 15px 40px rgba(14,165,233,0.3);
}

.scroll-top-btn.active{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.scroll-top-btn:hover{
    transform:translateY(-5px);
}

/* ======================================================
   STICKY NAVBAR EFFECT
====================================================== */

.main-navbar.sticky-active{
    padding:18px 0;
    background:rgba(255,255,255,0.92);
    backdrop-filter:blur(15px);
    box-shadow:0 12px 40px rgba(0,0,0,0.06);
}

/* ======================================================
   ACTIVE NAV LINK
====================================================== */

.nav-link.active{
    background:#f0f9ff;
    color:var(--secondary) !important;
}

/* ======================================================
   SMOOTH SCROLL
====================================================== */

html{
    scroll-behavior:smooth;
}

/* ======================================================
   SCROLL REVEAL ANIMATION
====================================================== */

.reveal-up{
    opacity:0;
    transform:translateY(60px);
    transition:1s ease;
}

.reveal-up.active-reveal{
    opacity:1;
    transform:translateY(0);
}

/* ======================================================
   FLOATING HOVER EFFECT
====================================================== */

.hover-float{
    transition:0.5s;
}

.hover-float:hover{
    transform:translateY(-10px);
}

/* ======================================================
   IMAGE HOVER ZOOM
====================================================== */

.image-hover-zoom{
    overflow:hidden;
    border-radius:inherit;
}

.image-hover-zoom img{
    transition:0.6s;
}

.image-hover-zoom:hover img{
    transform:scale(1.08);
}

/* ======================================================
   GLOW BUTTON EFFECT
====================================================== */

.glow-btn{
    position:relative;
    overflow:hidden;
}

.glow-btn::before{
    content:'';
    position:absolute;
    width:120px;
    height:120px;
    background:rgba(255,255,255,0.25);
    border-radius:50%;
    top:-40px;
    left:-40px;
    transition:0.6s;
}

.glow-btn:hover::before{
    transform:scale(2.5);
    opacity:0;
}

/* ======================================================
   SECTION TRANSITION
====================================================== */

section{
    transition:0.5s;
}

/* ======================================================
   IMAGE OPTIMIZATION
====================================================== */

img{
    max-width:100%;
    height:auto;
    display:block;
}

/* ======================================================
   GPU ACCELERATION
====================================================== */

.service-card,
.blog-card,
.testimonial-card,
.process-card{

    transform:translateZ(0);

}