/* ========================================
   MODERN UI - Clean & Production Ready
   ======================================== */

html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

::selection {
    background: rgba(54, 106, 246, 0.15);
    color: #222;
}

/* ========================================
   CONTAINER CONSISTENCY
   ======================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .container {
        max-width: 540px;
    }
}

/* ========================================
   HEADER TOP BAR
   ======================================== */
.header-topbar {
    background: linear-gradient(90deg, #1a1a2e, #16213e);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.topbar-left a {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 12.5px;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar-left a:hover {
    color: #fff !important;
}

.topbar-left a i {
    font-size: 12px;
    color: #29BA8F;
}

/* ========================================
   HEADER - Modern Clean
   ======================================== */
.header {
    background: rgba(10, 10, 20, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: none !important;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

.header.is--scrolled {
    background: rgba(5, 5, 15, 0.98) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
    padding: 0 !important;
}

/* Header flex layout */
.header .fflex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .logo {
    flex-shrink: 0;
}

.header .navigation {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* Hide hamburger on desktop by default */
.nav-hamburger {
    display: none;
}

/* Nav Links */
.navigation > ul > li > a {
    letter-spacing: 0.3px;
    font-size: 14px !important;
    font-weight: 500 !important;
    transition: color 0.3s ease !important;
}

.navigation > ul > li > a::before {
    display: none !important;
}

.navigation > ul > li:not(.dropdown) > a::after {
    display: none !important;
}

/* Active & hover nav - visible color */
.navigation > ul > li:hover > a,
.navigation > ul > li.is--active > a {
    color: #29BA8F !important;
}

/* Dropdown toggle arrow */
.navigation > ul > li.dropdown > a > i {
    transition: transform 0.3s ease;
    font-size: 10px !important;
    margin-left: 3px;
}

.navigation > ul > li.dropdown:hover > a > i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.navigation .dropdown ul {
    border-radius: 12px !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15) !important;
    background: #fff !important;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
    padding: 8px 0 !important;
    overflow: hidden;
    margin-top: 0 !important;
}

.navigation .dropdown ul li {
    min-width: 240px;
}

.navigation .dropdown ul li a,
.navigation .dropdown ul a {
    padding: 10px 20px !important;
    font-size: 12.5px !important;
    color: #444 !important;
    font-weight: 400 !important;
    transition: all 0.25s ease !important;
    position: relative;
    border-left: 3px solid transparent;
    text-align: left;
}

.navigation .dropdown ul li a:hover,
.navigation .dropdown ul a:hover {
    color: #366AF6 !important;
    background: rgba(54, 106, 246, 0.04) !important;
    border-left-color: #366AF6;
    padding-left: 24px !important;
}

.navigation .dropdown ul li.is--active a {
    color: #366AF6 !important;
    font-weight: 500 !important;
    border-left-color: #29BA8F;
    background: rgba(41, 186, 143, 0.04) !important;
}

/* CTA Button in header */
.header-cta-btn {
    display: inline-block !important;
    background: linear-gradient(135deg, #366AF6, #29BA8F) !important;
    color: #fff !important;
    padding: 8px 22px !important;
    border-radius: 8px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease !important;
    text-decoration: none !important;
}

.header-cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(54, 106, 246, 0.3);
    opacity: 0.9;
    color: #fff !important;
}

/* Gesture nav - kill the colored bar background */
.navigation .gesture-nav {
    background: none !important;
}

.navigation .gesture-nav::before {
    display: none !important;
    content: none !important;
    background: none !important;
    width: 0 !important;
    height: 0 !important;
}

/* Active nav link - keep white, not blue */
.navigation > ul > li:hover > a,
.navigation > ul > li.is--active > a {
    color: #fff !important;
}

/* Kill the green bar that appears on active/hover from original CSS */
.navigation > ul > li:hover > a::before,
.navigation > ul > li.is--active > a::before {
    display: none !important;
    content: none !important;
}

/* Logo - prevent shrinking on scroll */
.header .logo,
.header.is--scrolled .logo,
.header.sticky-header .logo {
    padding: 0 !important;
    flex: none !important;
    max-width: none !important;
}

.header .logo img,
.header.is--scrolled .logo img,
.header.sticky-header .logo img {
    max-height: 55px !important;
    height: auto !important;
    width: auto !important;
    transition: none !important;
    transform: none !important;
}

/* Desktop - Hide hamburger menu */
@media (min-width: 992px) {
    .nav-hamburger {
        display: none !important;
    }

    .header .navigation {
        display: flex !important;
        position: static !important;
        left: auto !important;
        width: auto !important;
        height: auto !important;
        max-height: none !important;
        background: transparent !important;
        padding: 0 !important;
        box-shadow: none !important;
        overflow: visible !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-end !important;
        flex-grow: 1 !important;
    }

    .navigation > ul {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-end !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
    }

    .navigation > ul > li {
        border: none !important;
        margin: 0 !important;
        position: relative;
        display: inline-block !important;
    }

    .navigation > ul > li > a {
        display: inline-block !important;
        padding: 10px 16px !important;
    }

    .navigation .gesture-nav {
        display: flex !important;
        align-items: center !important;
        margin: 0 0 0 20px !important;
        padding: 0 !important;
        border: none !important;
        background: none !important;
        list-style: none !important;
    }

    .navigation .gesture-nav li {
        display: inline-block !important;
        border: none !important;
    }

    .navigation .gesture-nav .header-cta-btn {
        display: inline-block !important;
        width: auto !important;
        padding: 8px 22px !important;
    }

    /* Desktop dropdown positioning */
    .navigation .dropdown ul {
        position: absolute !important;
        max-height: none !important;
        overflow: visible !important;
        padding: 8px 0 !important;
    }
}

/* ========================================
   FOOTER - Modern Design
   ======================================== */
.footer-modern {
    background: #0c0c1d !important;
    color: #fff;
}

.footer-top {
    padding: 60px 0 40px !important;
}

.footer-brand .footer-logo {
    display: inline-block;
    margin-bottom: 18px;
}

.footer-brand .footer-logo img {
    max-height: 55px;
}

.footer-brand .footer-desc {
    color: rgba(255, 255, 255, 0.55) !important;
    font-size: 13.5px !important;
    line-height: 1.7 !important;
    max-width: 300px;
    margin: 0 !important;
}

.footer-widget h5 {
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    margin-bottom: 20px !important;
    position: relative;
    padding-bottom: 12px;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.footer-widget h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #366AF6, #29BA8F);
    border-radius: 2px;
}

.footer-widget ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul li a {
    color: rgba(255, 255, 255, 0.55) !important;
    font-size: 13.5px !important;
    text-decoration: none !important;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer-widget ul li a:hover {
    color: #29BA8F !important;
    padding-left: 4px;
}

.footer-contact li a {
    display: flex !important;
    align-items: center;
    gap: 10px;
}

.footer-contact li a i {
    color: #29BA8F;
    font-size: 14px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgb(255 255 255 / 27%);
    padding: 18px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom-inner p {
    color: rgba(255, 255, 255, 0.4) !important;
    font-size: 13px !important;
    margin: 0 !important;
}

@media (max-width: 991px) {
    .header-topbar {
        display: none;
    }

    .footer-brand {
        margin-bottom: 30px;
    }

    .footer-widget {
        margin-bottom: 25px;
    }
}

/* ========================================
   BANNER - Modern Hero with Animations
   ======================================== */
.banner {
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
}

/* Modern gradient overlay */
.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(10, 15, 35, 0.90) 0%,
        rgba(25, 35, 60, 0.85) 50%,
        rgba(15, 25, 50, 0.88) 100%);
    z-index: 0;
    pointer-events: none;
}

.banner .container {
    position: relative;
    z-index: 2;
}

.banner .row {
    min-height: 500px;
    align-items: center;
}

/* Modern banner content card */
.banner-content {
    background: rgba(255, 255, 255, 0.08) !important;
    background-image: none !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px !important;
    padding: 50px 40px !important;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideInRight 0.8s ease-out;
    position: relative;
    overflow: hidden;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Shine effect on banner content */
.banner-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%);
    animation: shine 3s infinite;
    pointer-events: none;
}

@keyframes shine {
    0%, 100% { transform: translateX(-100%) translateY(-100%); }
    50% { transform: translateX(100%) translateY(100%); }
}

.banner-content h5 {
    color: #ebbb4e !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px !important;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5),
                 0 0 20px rgba(255, 169, 77, 0.4);
}

.banner-content h2 {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: calc(20px + (26 - 20) * (100vw - 320px) / (1920 - 320)) !important;
    font-weight: 400 !important;
    margin-bottom: 10px !important;
    line-height: 1.3 !important;
    animation: fadeInUp 0.8s ease-out 0.3s both;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4),
                 0 0 20px rgba(255, 255, 255, 0.1);
    letter-spacing: 0.3px;
}

.banner-content h1 {
    color: #fff !important;
    font-size: calc(32px + (48 - 32) * (100vw - 320px) / (1920 - 320)) !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin-bottom: 25px !important;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3),
                 0 4px 12px rgba(0, 0, 0, 0.2),
                 0 0 30px rgba(54, 106, 246, 0.15);
    letter-spacing: 0.5px;
}

.banner-content h1 strong {
    background: linear-gradient(135deg, #ebbb4e, #FF8C42, #FFA94D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #ebbb4e;
    background-clip: text;
    position: relative;
    display: inline-block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5))
            drop-shadow(0 0 15px rgba(255, 169, 77, 0.3));
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner .banner-list {
    padding-top: 25px !important;
    list-style: none !important;
    margin: 0 !important;
    padding-left: 0 !important;
}

.banner .banner-list li {
    padding: 12px 0 !important;
    position: relative;
    padding-left: 35px !important;
    animation: fadeInUp 0.8s ease-out calc(0.5s + var(--delay, 0s)) both;
}

.banner .banner-list li:nth-child(1) { --delay: 0s; }
.banner .banner-list li:nth-child(2) { --delay: 0.1s; }
.banner .banner-list li:nth-child(3) { --delay: 0.2s; }

.banner .banner-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #ebbb4e, #FFA94D) !important;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(255, 169, 77, 0.5),
                0 0 20px rgba(255, 184, 77, 0.3);
}

.banner .banner-list li::after {
    content: '✓';
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.banner .banner-list li p {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3),
                 0 2px 8px rgba(0, 0, 0, 0.15);
}

.banner .banner-list li strong {
    color: #ebbb4e !important;
    font-weight: 600 !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* Inner page banners */
.banner.inner-banner {
    min-height: 450px;
}

/* Shapes floating animation */
.banner .shapes {
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.banner .shapes.position-1 { animation-delay: 0s; }
.banner .shapes.position-2 { animation-delay: 2s; }
.banner .shapes.position-3 { animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Responsive banner adjustments */
@media (max-width: 991px) {
    .banner {
        min-height: 500px;
        background-attachment: scroll !important;
    }

    .banner .row {
        min-height: 450px;
    }

    .banner-content {
        padding: 35px 25px !important;
        border-radius: 18px !important;
    }

    .banner-content h5 {
        font-size: 14px !important;
    }
}

@media (max-width: 767px) {
    .banner {
        min-height: 450px;
    }

    .banner .row {
        min-height: 400px;
    }

    .banner-content {
        padding: 25px 20px !important;
        border-radius: 14px !important;
    }

    .banner-content h1 {
        font-size: 28px !important;
    }

    .banner-content h2 {
        font-size: 18px !important;
    }

    .banner .banner-list li {
        padding: 10px 0 !important;
        padding-left: 30px !important;
    }

    .banner .banner-list li p {
        font-size: 14px !important;
    }
}

/* ========================================
   SECTIONS - Overflow Fix
   ======================================== */
.stripe {
    overflow: hidden;
}

/* ========================================
   SECTION HEADINGS
   ======================================== */
.top-heading {
    padding-bottom: 50px !important;
}

.top-heading h3 {
    font-size: calc(18px + (28 - 18) * (100vw - 320px) / (1920 - 320)) !important;
    font-weight: 400 !important;
    letter-spacing: 0.5px;
}

.top-heading h3 strong {
    font-weight: 700 !important;
}

.bdr-line::before {
    display: none !important;
}

/* ========================================
   BOX CARDS - Open Creative Layout
   ======================================== */
.box-wrap.sty1 {
    border-radius: 0 !important;
    padding: 30px 20px !important;
    box-shadow: none !important;
    border: none !important;
    border-top: 3px solid #366AF6 !important;
    background: transparent !important;
    text-align: center !important;
    transition: border-color 0.35s ease;
}

.box-wrap.sty1:hover {
    transform: none;
    box-shadow: none !important;
    border-top-color: #29BA8F !important;
}

.box-wrap.sty1 .box-ic {
    padding-bottom: 16px !important;
    transition: transform 0.35s ease;
}

.box-wrap.sty1 .box-ic i {
    font-size: 42px !important;
    background: linear-gradient(135deg, #366AF6, #29BA8F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.box-wrap.sty1:hover .box-ic {
    transform: translateY(-3px);
}

.box-wrap.sty1 .box-text h5 {
    font-size: 18px !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
    color: #1a1a2e;
}

.box-wrap.sty1 .box-text p {
    font-size: 14px !important;
    color: #666 !important;
    line-height: 1.7 !important;
    margin: 0;
}

/* Alternate border colors */
.col-lg-4:nth-child(2) .box-wrap.sty1 {
    border-top-color: #29BA8F !important;
}

.col-lg-4:nth-child(2) .box-wrap.sty1:hover {
    border-top-color: #366AF6 !important;
}

.col-lg-4:nth-child(3) .box-wrap.sty1 {
    border-top-color: #08C9F3 !important;
}

.col-lg-4:nth-child(3) .box-wrap.sty1:hover {
    border-top-color: #366AF6 !important;
}

/* ========================================
   STEPS - Card Style with Dark BG
   ======================================== */

/* Hide the old arrows completely */
.steps-arrow::before {
    display: none !important;
    content: none !important;
    border: none !important;
    width: 0 !important;
    height: 0 !important;
}

.steps-arrow::after {
    border: none !important;
    border-top: none !important;
    border-left: none !important;
    border-bottom: none !important;
    width: auto !important;
    height: auto !important;
    top: 14px !important;
    right: 20px !important;
}

.bg-gradient {
    background: linear-gradient(135deg, #0c0c1d 0%, #1a1a3e 100%) !important;
}

.bg-gradient .top-heading h3 {
    color: #fff !important;
}

.bg-gradient .top-heading h3 strong {
    color: #29BA8F !important;
}

/* Remove heading underline */
.bg-gradient .top-heading.bdr-line::after,
.bg-gradient .top-heading h3::after {
    display: none !important;
}

.steps-wrap {
    text-align: left !important;
    background: #fff !important;
    border: 1px solid #eee;
    border-left: 3px solid transparent !important;
    border-radius: 16px !important;
    padding: 28px 24px !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex !important;
    align-items: flex-start !important;
    gap: 18px;
    position: relative;
}

.steps-wrap:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.col-lg-4:nth-child(1) .steps-wrap { border-left-color: #366AF6 !important; }
.col-lg-4:nth-child(2) .steps-wrap { border-left-color: #29BA8F !important; }
.col-lg-4:nth-child(3) .steps-wrap { border-left-color: #08C9F3 !important; }

.steps-wrap .steps-ic {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    border-radius: 14px !important;
    margin: 0 !important;
    transition: transform 0.35s ease;
}

.steps-wrap .steps-ic i {
    font-size: 22px !important;
}

.steps-wrap:hover .steps-ic {
    transform: scale(1.08);
}

.steps-wrap .steps-text {
    text-align: left !important;
}

.steps-wrap .steps-text h4 {
    font-size: 17px !important;
    font-weight: 700 !important;
    margin-bottom: 6px !important;
    color: #1a1a2e !important;
}

.steps-wrap .steps-text p {
    font-size: 13px !important;
    line-height: 1.55 !important;
    color: #666 !important;
    margin: 0;
}

/* Step numbers */
.col-lg-4 .steps-wrap.steps-arrow::after,
.col-lg-4 .steps-wrap::after {
    position: absolute;
    top: 14px;
    right: 20px;
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #366AF6, #29BA8F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.18;
    line-height: 1;
    pointer-events: none;
    display: block !important;
}

.col-lg-4:nth-child(1) .steps-wrap::after,
.col-lg-4:nth-child(1) .steps-wrap.steps-arrow::after { content: "01" !important; }
.col-lg-4:nth-child(2) .steps-wrap::after,
.col-lg-4:nth-child(2) .steps-wrap.steps-arrow::after { content: "02" !important; }
.col-lg-4:nth-child(3) .steps-wrap::after,
.col-lg-4:nth-child(3) .steps-wrap.steps-arrow::after { content: "03" !important; }

/* Equal height */
.bg-gradient .row {
    display: flex !important;
    flex-wrap: wrap;
}

.bg-gradient .row > .col-lg-4 {
    display: flex;
}

.bg-gradient .row > .col-lg-4 .steps-wrap {
    width: 100%;
    min-height: 140px;
}

@media (max-width: 991px) {
    .steps-wrap {
        margin-bottom: 16px !important;
    }
}

/* ========================================
   ABOUT PARALLAX - Product Pages
   ======================================== */
.about-parallax {
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    background-repeat: no-repeat !important;
    padding: 80px 0 !important;
    overflow: hidden;
}

.about-parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 30, 0.82), rgba(54, 106, 246, 0.65));
    z-index: 1;
}

.about-parallax .container {
    position: relative;
    z-index: 2;
}

.about-parallax-content {
    /* max-width: 720px; */
    margin: 0 auto;
    text-align: center;
}

.about-parallax-content h4 {
    color: #fff !important;
    font-size: calc(22px + (34 - 22) * (100vw - 320px) / (1920 - 320)) !important;
    font-weight: 700 !important;
    margin-bottom: 12px !important;
    position: relative;
    display: inline-block;
    padding-bottom: 18px;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.about-parallax-content h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #29BA8F;
    border-radius: 3px;
}

.about-parallax-content p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 15px !important;
    line-height: 1.85 !important;
    margin-top: 18px !important;
    font-weight: 300;
}

.about-parallax-content .btn-wrap .btn {
    border-radius: 50px !important;
    padding: 11px 32px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 1px;
    border: 2px solid rgba(255, 255, 255, 0.6) !important;
    color: #fff !important;
    background: transparent !important;
    transition: all 0.3s ease;
}

.about-parallax-content .btn-wrap .btn:hover {
    background: #fff !important;
    color: #1a1a2e !important;
    border-color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
    .about-parallax {
        background-attachment: scroll !important;
        padding: 50px 0 !important;
    }

    .about-parallax-content {
        max-width: 100%;
    }
}

/* ========================================
   ABOUT SECTION (index.php)
   ======================================== */
.about-img-wrap {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-img-wrap:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
}

.about-sec .btn-wrap .btn {
    border-radius: 50px !important;
    padding: 12px 35px !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.about-sec .btn-wrap .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: #fff !important;
    color: #29BA8F !important;
}

@media (max-width: 991px) {
    .about-img-wrap {
        margin-bottom: 30px;
    }
}

/* ========================================
   FORM SECTION - New Card Design
   ======================================== */
.form-sec-new {
    background: #f5f7fb !important;
    padding: 80px 0 !important;
}

.form-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* Left image panel */
.form-image {
    position: relative;
    height: 100%;
    min-height: auto;
    overflow: hidden;
}

.form-image > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(54, 106, 246, 0.85) 0%, rgba(41, 186, 143, 0.9) 100%);
    display: flex;
    flex-direction: column;
    /* justify-content: flex-end; */
    padding: 30px 30px;
    z-index: 1;
}

.form-image-overlay h3 {
    color: #fff !important;
    font-size: 26px !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.form-image-overlay > p {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
    margin-bottom: 20px !important;
}

.form-contact-info {
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.form-contact-info a {
    display: block;
    color: #fff !important;
    font-size: 14px;
    margin-bottom: 12px;
    opacity: 0.9;
    transition: opacity 0.3s ease, padding-left 0.3s ease;
    text-decoration: none;
}

.form-contact-info a:hover {
    opacity: 1;
    padding-left: 5px;
}

.form-contact-info a i {
    margin-right: 8px;
    font-size: 14px;
}

/* Right form panel */
.form-body {
    padding: 30px 35px;
}

.form-body h4 {
    font-size: 26px !important;
    font-weight: 700 !important;
    color: #1a1a2e !important;
    margin-bottom: 6px !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.form-body .form-subtitle {
    font-size: 14px !important;
    color: #888 !important;
    margin-bottom: 18px !important;
}

.form-sec-new .field-wrap {
    margin-bottom: 14px;
}

.form-sec-new .field-wrap > label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.form-sec-new .field-wrap .form-control {
    border: 1.5px solid #e0e4ec !important;
    border-radius: 10px !important;
    padding: 10px 14px !important;
    font-size: 14px !important;
    background: #f9fafb !important;
    color: #333 !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    height: auto !important;
}

.form-sec-new .field-wrap .form-control::placeholder {
    color: #aab0bc;
    font-size: 13px;
}

.form-sec-new .field-wrap .form-control:focus {
    border-color: #366AF6 !important;
    box-shadow: 0 0 0 3px rgba(54, 106, 246, 0.08);
    background-color: #fff !important;
    outline: none;
}

.form-sec-new .checkbox-wrap {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
}

.form-sec-new .checkbox-wrap label {
    font-size: 13px;
    color: #555;
    cursor: pointer;
}

.form-sec-new .note {
    font-size: 11px !important;
    color: #999 !important;
    line-height: 1.5 !important;
    margin-bottom: 10px !important;
}

.form-sec-new .note a {
    color: #366AF6 !important;
}

.form-sec-new .btn-wrap .btn-primary {
    background: linear-gradient(135deg, #366AF6, #29BA8F) !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 13px 40px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px;
    color: #fff !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    text-transform: none !important;
}

.form-sec-new .btn-wrap .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(54, 106, 246, 0.3);
    opacity: 0.95;
}

/* Form status messages */
.form-status {
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 14px;
}

.form-status-success {
    background: #e8f8f0;
    color: #1a7a4c;
    border: 1px solid #b8e8d0;
}

.form-status-error {
    background: #fef2f2;
    color: #c53030;
    border: 1px solid #fecaca;
}

/* Error state on fields */
.form-sec-new .field-wrap .form-control.is-invalid {
    border-color: #e53e3e !important;
}

/* Responsive */
@media (max-width: 991px) {
    .form-image {
        min-height: 250px;
    }

    .form-body {
        padding: 25px 20px;
    }

    .form-sec-new .field-wrap .form-control {
        padding: 10px 14px !important;
    }
}

/* ========================================
   SERVICE SECTION - Modern Clean Layout
   ======================================== */
.service-sec {
    background: #f8f9fc !important;
}

.service-sec .row {
    background: #fff;
    border-radius: 14px;
    overflow: visible;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    margin-bottom: 0 !important;
    align-items: center !important;
    max-width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
    border: 1px solid #eef0f5;
    border-left: 4px solid #366AF6;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-sec .row:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(54, 106, 246, 0.1);
    border-left-color: #29BA8F;
}

/* Alternate cards - accent on right side */
.service-sec .row.mt-5:nth-of-type(odd) {
    border-left: 1px solid #eef0f5;
    border-right: 4px solid #29BA8F;
}

.service-sec .row.mt-5:nth-of-type(odd):hover {
    border-right-color: #366AF6;
}

.service-sec .row.mt-5 {
    margin-top: 24px !important;
}

.service-sec .section-content {
    padding: 30px 35px;
}

.service-sec .section-content p {
    font-size: 14px !important;
    line-height: 1.75 !important;
    color: #555 !important;
    margin: 0 !important;
}

/* Kill diamond clip-path, shapes, and triangles */
.service-sec .section-img {
    clip-path: none !important;
    -webkit-clip-path: none !important;
    width: 100% !important;
    margin: 0 !important;
}

.service-sec .section-img img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    display: block;
    transition: transform 0.5s ease;
}

.service-sec .image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 0 !important;
    padding: 15px !important;
}

.service-sec .image-wrap .section-img {
    border-radius: 10px;
    overflow: hidden;
}

.service-sec .image-wrap:hover .section-img img {
    transform: scale(1.04);
}

/* Hide all decorative shapes and triangles */
.service-sec .image-wrap .shapes,
.service-sec .image-wrap .triangle {
    display: none !important;
}

/* Remove col padding for clean layout */
.service-sec .row > [class*="col-"] {
    padding: 0 !important;
}

.service-sec .col-lg-5 {
    flex: 0 0 38% !important;
    max-width: 38% !important;
}

.service-sec .col-lg-7 {
    flex: 0 0 62% !important;
    max-width: 62% !important;
}

@media (max-width: 991px) {
    .service-sec .col-lg-5,
    .service-sec .col-lg-7 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        display: block !important;
        visibility: visible !important;
    }

    .service-sec .col-lg-5 {
        order: 1;
        margin-bottom: 0px;
    }

    .service-sec .col-lg-7 {
        order: 2;
    }

    .service-sec .image-wrap {
        display: block !important;
        visibility: visible !important;
        width: 100%;
        padding: 0 !important;
        margin-bottom: 20px;
    }

    .service-sec .section-img {
        display: block !important;
        visibility: visible !important;
        width: 100% !important;
        height: auto !important;
    }

    .service-sec .section-img img {
        display: block !important;
        visibility: visible !important;
        width: 100% !important;
        height: 250px !important;
        object-fit: cover !important;
    }

    .service-sec .section-content {
        padding: 20px;
    }

    .service-sec .row.mt-5 {
        margin-top: 16px !important;
    }

    .service-sec .row {
        display: flex;
        flex-direction: column;
    }
}

.service-sec .col-lg-7.align-self-center {
    align-self: center !important;
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .service-sec .image-wrap {
        min-height: 220px;
    }

    .service-sec .section-content {
        padding: 25px 20px;
    }

    .service-sec .row {
        margin-bottom: 0 !important;
    }

    .service-sec .row.mt-5 {
        margin-top: 20px !important;
    }
}

/* About sec on product pages */
.about-sec .section-content h4 {
    font-size: calc(18px + (30 - 18) * (100vw - 320px) / (1920 - 320)) !important;
}

.about-sec .section-content p {
    font-size: calc(13px + (16 - 13) * (100vw - 320px) / (1920 - 320)) !important;
    line-height: 1.75 !important;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-sec .section-content h3 {
    font-size: calc(18px + (28 - 18) * (100vw - 320px) / (1920 - 320)) !important;
    letter-spacing: 1px;
}

.cta-sec .section-content p {
    font-size: calc(13px + (16 - 13) * (100vw - 320px) / (1920 - 320)) !important;
    line-height: 1.6 !important;
    /* max-width: 700px; */
    margin-left: auto;
    margin-right: auto;
    margin-top: 16px;
}

/* ========================================
   POPUP - Modern
   ======================================== */
.popup.popup-style1 {
    border-radius: 16px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ========================================
   SCROLLBAR
   ======================================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #366AF6, #29BA8F);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #2a55c4, #1f9a74);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 991px) {
    /* Hide topbar on mobile */
    .header-topbar {
        display: none;
    }

    /* Header mobile adjustments */
    .header {
        padding: 15px 0 !important;
        position: relative;
        z-index: 1001;
    }

    .header .container {
        padding: 0 20px;
        max-width: 100%;
    }

    .header .fflex {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        position: relative;
        gap: 15px;
    }

    /* Ensure no black marks or overflow issues */
    .header,
    .header * {
        box-sizing: border-box;
    }

    /* Logo size on mobile - equal visual weight */
    .header .logo {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
    }

    .header .logo img {
        max-height: 42px !important;
        height: auto;
        width: auto;
    }

    /* Hamburger menu button - Simple & Clean */
    .nav-hamburger {
        display: block !important;
        width: 30px;
        height: 24px;
        cursor: pointer;
        z-index: 1000;
        position: relative;
        padding: 0;
        margin: 0;
        flex: 0 0 auto;
        -webkit-tap-highlight-color: transparent;
        background: transparent;
        border: none;
    }

    .nav-hamburger:active {
        opacity: 0.7;
    }

    .nav-hamburger span {
        display: block;
        height: 2px;
        width: 100%;
        background: #fff;
        border-radius: 2px;
        transition: all 0.25s ease-in-out;
        position: absolute;
        left: 0;
        transform-origin: center center;
    }

    /* Hamburger bars positioning - Normal State */
    .nav-hamburger span:nth-child(1) {
        top: 0;
    }

    .nav-hamburger span:nth-child(2) {
        top: 11px;
    }

    .nav-hamburger span:nth-child(3) {
        top: 22px;
    }

    /* Hide extra spans */
    .nav-hamburger span:nth-child(4),
    .nav-hamburger span:nth-child(5),
    .nav-hamburger span:nth-child(6) {
        display: none !important;
    }

    /* Hamburger active state - X icon */
    .nav-hamburger.is--active span:nth-child(1) {
        top: 11px;
        transform: rotate(45deg);
    }

    /* .nav-hamburger.is--active span:nth-child(2) {
        opacity: 0;
    } */

    .nav-hamburger.is--active span:nth-child(3) {
        top: 11px;
        transform: rotate(-45deg);
    }

    /* Hover effect */
    .nav-hamburger:hover span {
        background: #29BA8F;
    }

    /* Mobile nav - dark sidebar full override */
    .navigation,
    .header .navigation {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 290px !important;
        height: 100vh !important;
        max-height: 100vh !important;
        background: #0c0c1d !important;
        background-color: #0c0c1d !important;
        z-index: 999 !important;
        padding-top: 70px !important;
        padding-bottom: 20px !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.5) !important;
    }

    .navigation.is--open,
    .header .navigation.is--open {
        left: 0 !important;
    }

    .navigation > ul {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .navigation > ul > li {
        width: 100% !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        margin: 0 !important;
    }

    .navigation > ul > li > a {
        color: rgba(255, 255, 255, 0.9) !important;
        padding: 16px 20px !important;
        font-size: 15px !important;
        font-weight: 500 !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100%;
        display: flex !important;
        text-decoration: none;
        transition: all 0.3s ease !important;
        min-height: 48px;
        -webkit-tap-highlight-color: transparent;
    }

    .navigation > ul > li > a:active {
        background: rgba(41, 186, 143, 0.12);
    }

    .navigation > ul > li > a::after,
    .navigation > ul > li > a::before {
        display: none !important;
    }

    /* Dropdown arrow in mobile */
    .navigation > ul > li.dropdown > a {
        position: relative;
    }

    .navigation > ul > li.dropdown > a > i {
        margin-left: auto;
        transition: transform 0.3s ease;
    }

    .navigation > ul > li:hover > a,
    .navigation > ul > li.is--active > a {
        color: #29BA8F !important;
        background: rgba(41, 186, 143, 0.08);
    }

    /* Mobile dropdown - dark theme */
    .navigation .dropdown ul {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        background: rgba(255, 255, 255, 0.04) !important;
        background-color: rgba(255, 255, 255, 0.04) !important;
        border: none !important;
        border-top: 1px solid rgba(255, 255, 255, 0.03) !important;
        padding: 0 !important;
        margin: 0 !important;
        min-width: 0 !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
        display: block !important;
    }

    /* Show dropdown when parent is active (click on mobile) */
    .navigation .dropdown.is--active > ul {
        max-height: 600px;
        padding: 8px 0 !important;
    }

    /* Rotate arrow when dropdown is active */
    .navigation .dropdown.is--active > a > i {
        transform: rotate(180deg);
    }

    .navigation .dropdown ul li {
        min-width: 0 !important;
        width: 100% !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    }

    .navigation .dropdown ul li:last-child {
        border-bottom: none;
    }

    .navigation .dropdown ul li a,
    .navigation .dropdown ul a {
        color: rgba(255, 255, 255, 0.7) !important;
        padding: 13px 20px 13px 40px !important;
        font-size: 13.5px !important;
        font-weight: 400 !important;
        border-left: 3px solid transparent !important;
        background: transparent !important;
        display: block !important;
        transition: all 0.3s ease !important;
        position: relative;
        min-height: 44px;
        -webkit-tap-highlight-color: transparent;
    }

    .navigation .dropdown ul li a:active {
        background: rgba(41, 186, 143, 0.1) !important;
    }

    .navigation .dropdown ul li a::before {
        content: '›';
        position: absolute;
        left: 24px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 18px;
        opacity: 0.5;
        transition: all 0.3s ease;
    }

    .navigation .dropdown ul li a:hover,
    .navigation .dropdown ul a:hover {
        color: #29BA8F !important;
        background: rgba(41, 186, 143, 0.06) !important;
        border-left-color: #29BA8F !important;
        padding-left: 45px !important;
    }

    .navigation .dropdown ul li a:hover::before {
        opacity: 1;
        left: 28px;
    }

    .navigation .dropdown ul li.is--active a {
        color: #29BA8F !important;
        font-weight: 500 !important;
        border-left-color: #29BA8F !important;
        background: rgba(41, 186, 143, 0.06) !important;
    }

    /* CTA button in mobile nav */
    .navigation .gesture-nav {
        width: 100% !important;
        padding: 20px !important;
        background: none !important;
        background-color: transparent !important;
        margin: 0 !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 10px !important;
    }

    .navigation .gesture-nav::before {
        display: none !important;
        content: none !important;
    }

    .navigation .gesture-nav li {
        width: 100% !important;
        border: none !important;
    }

    .header-cta-btn {
        display: block !important;
        text-align: center !important;
        padding: 14px 24px !important;
        border-radius: 10px !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        width: 100% !important;
        box-shadow: 0 4px 15px rgba(41, 186, 143, 0.3);
    }

    /* Prevent body scroll when menu is open */
    body.is--menu {
        overflow: hidden;
        height: 100vh;
    }

    /* Overlay when nav open */
    .defaultOverlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.6) !important;
        backdrop-filter: blur(2px);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    body.is--menu .defaultOverlay {
        opacity: 1;
        visibility: visible;
    }

    /* Banner */
    .banner-content {
        border-radius: 14px !important;
        padding: 25px 20px !important;
    }

    .banner-content h1 {
        font-size: 24px !important;
    }

    .banner-content h2 {
        font-size: 16px !important;
    }

    .banner-content h5 {
        font-size: 13px !important;
    }

    /* Box cards */
    .box-wrap.sty1 {
        margin-bottom: 10px;
    }

    /* Form section */
    .form-card .row {
        flex-direction: column;
    }

    .form-card .col-lg-5,
    .form-card .col-lg-7 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .form-image {
        min-height: 220px !important;
    }

    .form-body {
        padding: 25px 20px;
    }

    /* Service section */
    .service-sec .col-lg-5,
    .service-sec .col-lg-7 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .service-sec .section-img img {
        height: 200px !important;
    }

    .service-sec .section-content {
        padding: 20px !important;
    }

    .service-sec .row.mt-5 {
        margin-top: 16px !important;
    }

    /* About parallax */
    .about-parallax {
        background-attachment: scroll !important;
        padding: 50px 0 !important;
    }

    .about-parallax-content {
        max-width: 100%;
    }

    .about-parallax-content h4 {
        font-size: 22px !important;
    }

    /* Steps */
    .steps-wrap {
        margin-bottom: 16px !important;
    }

    /* Footer */
    .footer-brand {
        margin-bottom: 30px;
    }

    .footer-widget {
        margin-bottom: 25px;
    }

    /* Section padding */
    .stripe {
        padding: 40px 0 !important;
    }
}

@media (max-width: 767px) {
    .box-wrap.sty1:hover,
    .steps-wrap:hover,
    .service-sec .image-wrap:hover {
        transform: none;
        box-shadow: none;
    }

    .banner-content {
        border-radius: 10px !important;
        padding: 20px 15px !important;
    }

    .banner-content h1 {
        font-size: 20px !important;
    }

    /* Form fields full width on small screens */
    .form-sec-new .col-md-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .top-heading h3 {
        font-size: 18px !important;
    }

    .service-sec .image-wrap {
        display: block !important;
        visibility: visible !important;
        padding: 0 !important;
        margin-bottom: 15px;
    }

    .service-sec .section-img {
        display: block !important;
        visibility: visible !important;
    }

    .service-sec .section-img img {
        display: block !important;
        visibility: visible !important;
        height: 220px !important;
        width: 100% !important;
        object-fit: cover !important;
    }

    .about-parallax-content h4 {
        font-size: 20px !important;
    }

    .about-parallax-content p {
        font-size: 14px !important;
    }

    /* Smaller mobile devices */
    .header .container {
        padding: 0 16px;
    }

    .header .logo img {
        max-height: 36px !important;
    }

    .navigation {
        width: 280px !important;
    }

    .nav-hamburger {
        width: 26px;
        height: 20px;
    }

    .nav-hamburger span {
        height: 2px;
    }

    .nav-hamburger span:nth-child(2) {
        top: 9px;
    }

    .nav-hamburger span:nth-child(3) {
        top: 18px;
    }

    .nav-hamburger.is--active span:nth-child(1),
    .nav-hamburger.is--active span:nth-child(3) {
        top: 9px;
    }
}

/* Mobile navigation scrollbar */
@media (max-width: 991px) {
    .navigation::-webkit-scrollbar {
        width: 4px;
    }

    .navigation::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
    }

    .navigation::-webkit-scrollbar-thumb {
        background: rgba(41, 186, 143, 0.5);
        border-radius: 10px;
    }

    .navigation::-webkit-scrollbar-thumb:hover {
        background: rgba(41, 186, 143, 0.7);
    }
}

/* ========================================
   ANIMATED DECORATIVE SHAPES
   ======================================== */
.animated-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    opacity: 0.15;
}

/* Circle Shapes */
.shape.circle {
    border-radius: 50%;
    background: linear-gradient(135deg, #ebbb4e, #FF8C42);
}

.shape.circle-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 5%;
    animation: float-1 8s ease-in-out infinite;
}

.shape.circle-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 8%;
    animation: float-2 10s ease-in-out infinite;
    background: linear-gradient(135deg, #366AF6, #08C9F3);
}

.shape.circle-3 {
    width: 60px;
    height: 60px;
    bottom: 15%;
    left: 10%;
    animation: float-3 7s ease-in-out infinite;
}

/* Square/Rectangle Shapes */
.shape.square {
    background: linear-gradient(135deg, rgba(255, 184, 77, 0.2), rgba(255, 140, 66, 0.2));
    border-radius: 12px;
    transform: rotate(45deg);
}

.shape.square-1 {
    width: 100px;
    height: 100px;
    top: 25%;
    right: 5%;
    animation: rotate-float 12s linear infinite;
}

.shape.square-2 {
    width: 70px;
    height: 70px;
    bottom: 20%;
    right: 12%;
    animation: rotate-float 15s linear infinite reverse;
}

/* Triangle Shapes */
.shape.triangle {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 90px solid rgba(54, 106, 246, 0.15);
}

.shape.triangle-1 {
    top: 40%;
    left: 3%;
    animation: float-1 9s ease-in-out infinite;
}

/* Dots Pattern */
.shape.dots {
    width: 150px;
    height: 150px;
    background-image: radial-gradient(circle, rgba(255, 184, 77, 0.3) 2px, transparent 2px);
    background-size: 20px 20px;
}

.shape.dots-1 {
    top: 5%;
    right: 15%;
    animation: float-2 11s ease-in-out infinite;
}

.shape.dots-2 {
    bottom: 10%;
    left: 8%;
    animation: float-3 13s ease-in-out infinite;
}

/* Gradient Blobs */
.shape.blob {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.15), rgba(247, 147, 30, 0.15));
}

.shape.blob-1 {
    width: 200px;
    height: 200px;
    top: 15%;
    right: 3%;
    animation: blob-morph 15s ease-in-out infinite;
}

.shape.blob-2 {
    width: 180px;
    height: 180px;
    bottom: 25%;
    left: 5%;
    animation: blob-morph 18s ease-in-out infinite reverse;
}

/* Animations */
@keyframes float-1 {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    25% {
        transform: translateY(-20px) translateX(10px);
    }
    50% {
        transform: translateY(-40px) translateX(-10px);
    }
    75% {
        transform: translateY(-20px) translateX(10px);
    }
}

@keyframes float-2 {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    33% {
        transform: translateY(20px) translateX(-15px);
    }
    66% {
        transform: translateY(-30px) translateX(15px);
    }
}

@keyframes float-3 {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
    }
    50% {
        transform: translateY(-25px) translateX(20px) scale(1.1);
    }
}

@keyframes rotate-float {
    0% {
        transform: rotate(0deg) translateY(0px);
    }
    25% {
        transform: rotate(90deg) translateY(-20px);
    }
    50% {
        transform: rotate(180deg) translateY(0px);
    }
    75% {
        transform: rotate(270deg) translateY(-20px);
    }
    100% {
        transform: rotate(360deg) translateY(0px);
    }
}

@keyframes blob-morph {
    0%, 100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: rotate(0deg);
    }
    25% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: rotate(90deg);
    }
    50% {
        border-radius: 30% 70% 40% 60% / 50% 60% 30% 60%;
        transform: rotate(180deg);
    }
    75% {
        border-radius: 70% 30% 60% 40% / 40% 70% 50% 60%;
        transform: rotate(270deg);
    }
}

/* Section Positioning */
.stripe {
    position: relative;
    overflow: hidden;
}

/* Responsive - Hide on mobile for performance */
@media (max-width: 767px) {
    .animated-shapes {
        display: none;
    }
}
