/* ══════════════════════════════════════════════════
   LYNXIFY — UNIFIED ROOT STYLES
   Every section references these. Add new section
   styles below in their own labeled block.
   ══════════════════════════════════════════════════ */

/* ── 1. RESET & BASE ── */
/* 1. Define Fonts & Variables */
* {
    margin: 0;
    padding: 0;
    /* color: #ffffff; */
    
    /* Body Text Defaults */
    font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
    font-weight: 400;
    line-height: 1.6; /* Standard line height for readability */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif;
    margin: 0;
}
h1 {
    font-weight: 800; /* ExtraBold */
    letter-spacing: -0.02em;
}

h2, h3 {
    font-weight: 700; /* Bold */
}


/* ── 2. SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 4px; }

/* ── 3. SHARED KEYFRAMES ── */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(35px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes subtlePulse {
    0%, 100% { opacity: 0.08; transform: scale(1); }
    50% { opacity: 0.14; transform: scale(1.05); }
}
@keyframes countDone {
    0% { transform: scale(1); }
    50% { transform: scale(1.04); }
    100% { transform: scale(1); }
}

/* ── 4. SCROLL-TRIGGERED BASE (used by all sections) ── */
.fade-up {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease;
}
.fade-in.visible {
    opacity: 1;
}
.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}
.scale-in {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* ── 5. NAVIGATION ── */
@media (min-width: 768px) {
  /* Jab ye class add hogi to logo hide ho jayega */
  .logo-hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-20px); /* Halka sa left slide effect */
    pointer-events: none;        /* Clickable nahi rahega hide hony par */
  }
}
.nav-glass {
    background: transparent;
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    border-bottom: 1px solid transparent;
}
.nav-glass.scrolled {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.nav-link {
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #9cd44e;
    border-radius: 1px;
    transition: width 0.3s ease, left 0.3s ease;
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
    left: 0;
}
.nav-link.active {
    color: #ffffff !important;
}

/* ── 6. MOBILE MENU ── */
.mobile-overlay {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.mobile-overlay.open {
    opacity: 1;
    pointer-events: auto;
}
.mobile-panel {
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.mobile-panel.open {
    transform: translateX(0);
}
.mobile-nav-link {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), color 0.2s ease;
}
.mobile-panel.open .mobile-nav-link:nth-child(1) { opacity: 1; transform: translateX(0); transition-delay: 0.15s; }
.mobile-panel.open .mobile-nav-link:nth-child(2) { opacity: 1; transform: translateX(0); transition-delay: 0.2s; }
.mobile-panel.open .mobile-nav-link:nth-child(3) { opacity: 1; transform: translateX(0); transition-delay: 0.25s; }
.mobile-panel.open .mobile-nav-link:nth-child(4) { opacity: 1; transform: translateX(0); transition-delay: 0.3s; }
.mobile-panel.open .mobile-nav-link:nth-child(5) { opacity: 1; transform: translateX(0); transition-delay: 0.35s; }
.mobile-panel.open .mobile-nav-cta { opacity: 1; transform: translateX(0); transition-delay: 0.4s; }
@media (max-width: 767px) {
    #navbar > div {
        background-color: rgba(17, 17, 17, 0.9); /* Dark background like your panel */
        backdrop-filter: blur(12px); /* Glass effect */
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 50px; /* Jo aapne kaha tha */
        padding: 0 15px;
        margin: 0 10px; /* Thoda side se gap taaki floating lage */
    }
    
    /* Mobile par hamburger icons white hi rahein */
    .hamburger-bar {
        background-color: white !important;
    }
}
/* ── 7. HERO ── */
:root {
    --bg-dark: #0a0a0a;
    --primary-teal: #9cd44e;
    --text-white: #fff;
    --anim-duration: 9s;
}

/* HERO TITLE */
.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.1;

    display: flex;
    align-items: center; /* PERFECT VERTICAL ALIGN */
    justify-content: center;
    gap: 18px;

    flex-wrap: nowrap; /* Desktop = single line */
    text-align: center;
}

/* ANIMATED WORD WRAPPER */
.headi-col {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--primary-teal);

    min-width: 341px;
    height: 1em;

    overflow: hidden;
}

/* WORDS */
.word {
    position: absolute;
    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);
    opacity: 0;

    white-space: nowrap;

    animation: elite-fade var(--anim-duration) infinite;
}

/* Animation delays */
.word:nth-child(1) {
    animation-delay: 0s;
}

.word:nth-child(2) {
    animation-delay: 3s;
}

.word:nth-child(3) {
    animation-delay: 6s;
}

/* SMOOTH FADE */
@keyframes elite-fade {
    0% {
        opacity: 0;
        transform: translate(-50%, calc(-50% + 10px));
        filter: blur(5px);
    }

    10% {
        opacity: 1;
        transform: translate(-50%, -50%);
        filter: blur(0);
    }

    30% {
        opacity: 1;
        transform: translate(-50%, -50%);
        filter: blur(0);
    }

    40% {
        opacity: 0;
        transform: translate(-50%, calc(-50% - 10px));
        filter: blur(5px);
    }

    100% {
        opacity: 0;
    }
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

    .hero-title {
        flex-wrap: wrap; /* Mobile = break line */
        gap: 8px;
        font-size: clamp(2.2rem, 9vw, 4rem);
        line-height: 1.2;
    }

    .headi-col {
        min-width: 160px;
    }
}

@keyframes badgeSlide {
    from { opacity: 0; transform: translateY(-15px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(6px); opacity: 1; }
}
.hero-badge { animation: badgeSlide 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both; }
.hero-title-1 { animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both; }
.hero-title-2 { animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.55s both; }
.hero-desc { animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.7s both; }
.hero-cta { animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.85s both; }
.hero-scroll { animation: fadeIn 1s ease 1.2s both; }
.hero-scroll-dot { animation: scrollBounce 2s ease-in-out infinite; }
.glow-orb { animation: subtlePulse 6s ease-in-out infinite; }
.glow-orb-2 { animation: subtlePulse 8s ease-in-out 2s infinite; }
.avatar-stack > *:not(:first-child) { margin-left: -10px; }

/* ── 8. BUTTONS ── */
.btn-primary {
    background: #9cd44e;
    box-shadow: 0 0 40px rgba(156, 212, 78, 0.25), 0 4px 15px rgba(156, 212, 78, 0.3);
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn-primary:hover {
    background: #9cd44e;
    box-shadow: 0 0 60px rgba(156, 212, 78, 0.4), 0 8px 25px rgba(156, 212, 78, 0.35);
    transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
    border: 1px solid rgba(156, 212, 78, 0.35);
    color: #fff;
    transition: all 0.3s ease;
}
.btn-outline:hover {
    background: rgba(156, 212, 78, 0.1);
    border-color: rgba(156, 212, 78, 0.6);
    color: #fff;
    transform: translateY(-1px);
}

/* ── 9. CARD HOVER (reusable) ── */
.card-hover {
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.5s ease,
                border-color 0.5s ease;
}
.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px -15px rgba(156, 212, 78, 0.12);
    border-color: rgba(156, 212, 78, 0.25);
}

/* ── 10. STATS SECTION ── */
.stat-card {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.stat-card.visible { opacity: 1; transform: translateY(0); }
.stat-card:nth-child(2) { transition-delay: 0.15s; }
.stat-card:nth-child(3) { transition-delay: 0.3s; }

.stat-card-inner {
    position: relative;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.5s ease,
                border-color 0.5s ease;
}
.stat-card-inner:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px -15px rgba(156, 212, 78, 0.12);
    border-color: rgba(156, 212, 78, 0.25);
}
.stat-card-inner:hover .deco-shape { opacity: 1; }
.deco-shape { opacity: 0.6; transition: opacity 0.5s ease; }
.count-done { animation: countDone 0.4s ease; }

@keyframes floatSlow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(3deg); }
}
@keyframes floatMed {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(-4deg); }
}
@keyframes floatFast {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-6px) rotate(5deg); }
}
.deco-float-1 { animation: floatSlow 5s ease-in-out infinite; }
.deco-float-2 { animation: floatMed 6s ease-in-out 0.5s infinite; }
.deco-float-3 { animation: floatFast 4.5s ease-in-out 1s infinite; }

/* ── 11. ACCORDION SECTION ── */
.accordion-stagger > *:nth-child(1) { transition-delay: 0s; }
.accordion-stagger > *:nth-child(2) { transition-delay: 0.08s; }
.accordion-stagger > *:nth-child(3) { transition-delay: 0.16s; }
.accordion-stagger > *:nth-child(4) { transition-delay: 0.24s; }
.accordion-stagger > *:nth-child(5) { transition-delay: 0.32s; }

.acc-header {
    transition: background 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}
.acc-header:hover { background: rgba(255, 255, 255, 0.03); }
.acc-header.active { border-color: rgba(156, 212, 78, 0.2); background: rgba(156, 212, 78, 0.04); }

.plus-icon { position: relative; width: 22px; height: 22px; flex-shrink: 0; }
.plus-icon span {
    position: absolute; top: 50%; left: 50%;
    display: block; width: 14px; height: 2px;
    background: #737373; border-radius: 1px;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease;
}
.plus-icon .plus-v { transform: translate(-50%, -50%) rotate(90deg); }
.plus-icon .plus-h { transform: translate(-50%, -50%) rotate(0deg); }
.acc-header.active .plus-icon .plus-v { transform: translate(-50%, -50%) rotate(0deg); background: #9cd44e; }
.acc-header.active .plus-icon .plus-h { transform: translate(-50%, -50%) rotate(0deg); background: #9cd44e; }
.acc-header:hover .plus-icon span { background: #a3a3a3; }
.acc-header.active:hover .plus-icon span { background: #9cd44e; }

.acc-slider {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.acc-slider.open { grid-template-rows: 1fr; }
.acc-slider > div { overflow: hidden; }

.acc-inner {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.45s ease 0.08s, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.08s;
}
.acc-slider.open .acc-inner { opacity: 1; transform: translateY(0); }

.sub-item { transition: color 0.2s ease, transform 0.2s ease; }
.sub-item:hover { color: #a9e851; transform: translateX(4px); }

.close-btn { transition: background 0.2s ease, transform 0.2s ease; }
.close-btn:hover { background: rgba(255, 255, 255, 0.1); transform: rotate(90deg); }

.panel-bg {
/* background: linear-gradient(135deg, #a9e851 0%, #95cf48 40%, #7fb53d 100%); */
    position: relative;
}
.panel-bg::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 10% 50%, rgba(156, 212, 78, 0.06) 0%, transparent 60%),
                radial-gradient(ellipse at 90% 20%, rgba(156, 212, 78, 0.04) 0%, transparent 50%);
    pointer-events: none;
}
/* marquee */


.marquee-perspective-container {
    background-color: var(--bg-dark);
    height: 400px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.marquee-wrapper {
    position: absolute;
    width: 150%; /* Wider than screen to cover edges when rotated */
    padding: 7px 0;
    white-space: nowrap;
    display: flex;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* THE CROSSING EFFECT */
.bar-one {
    background-color: var(--text-white);
    color: var(--primary-teal);
    transform: rotate(-3deg); /* Slanted Up */
    z-index: 2;
}

.bar-two {
    background-color: var(--primary-teal);
    color: #fff;
    transform: rotate(2deg); /* Slanted Down - This creates the Cross */
    z-index: 1;
}

.marquee-content {
    display: flex;
    align-items: center;
}

.item {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: clamp(1.5rem, 2vw, 2.8rem);
    padding: 0 15px;
    display: flex;
    align-items: center;
}

/* SPINNING STAR (GOL GOL) */
.spinning-star {
    display: inline-block;
    color: var(--star-green);
    margin-left: 34px;
    animation: spin 4s linear infinite;
}

.spinning-star-1 {
    display: inline-block;
    color: #fbfbf6;
    margin-left: 34px;
    animation: spin 4s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* INFINITE TEXT MOVE */
.move-left { animation: scroll-left 30s linear infinite; }
.move-right { animation: scroll-right 30s linear infinite; }

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Responsive Scaling */
@media (max-width: 768px) {
    .marquee-perspective-container { height: 300px; }
    .marquee-wrapper { width: 200%; padding: 15px 0; }
    .item { padding: 0 25px; }
}

/* Afer Hero Section Css */

.section-container {
    background-color: var(--bg-dark);
    padding: 100px 5%;
    /* max-width: 1200px; */
    margin: 0 auto;
    text-align: center;
}

.subtitle {
    color: var(--primary-teal);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 10px;
}

.main-title {
    font-size: clamp(2rem, 5vw, 3.5rem); /* Responsive font size */
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 60px;
    color: var(--bs-body-color);
}

/* 2. RESPONSIVE GRID */
.grid-layout {
    display: flex;
    flex-wrap: wrap; /* Allows cards to wrap on mobile */
    gap: 24px;
    justify-content: center;
}

/* .card {
    flex: 1 1 300px; 
    max-width: 380px;
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    text-align: left;
    color: #333;
    transition: transform 0.3s ease;
} */
 .card {
    flex: 1 1 300px; 
    max-width: 380px;

    background: rgba(255, 255, 255, 0.08) !important; /* transparent glass */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    border-radius: 20px;
    padding: 40px;
    text-align: left;
    color: #fff;

    border: 1px solid rgba(255, 255, 255, 0.2);

    box-shadow: 0 8px 32px rgba(0,0,0,0.25) !important;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px); /* Smooth hover lift */
}

/* 3. UNIQUE ELEMENTS */
.icon-box {
    width: 60px;
    height: 60px;
    background: var(--primary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.avatar-group {
    display: flex;
    margin: 20px 0;
}

.avatar-group img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid white;
    margin-right: -12px;
}

.card-dark-overlay {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('your-image.jpg');
    background-size: cover;
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-btn {
    background: none;
    border: none;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    cursor: pointer;
}

.arrow-circle {
    background: var(--primary-teal);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* slider */

   :root {
    --primary-teal: #9cd44e;
    --slider-gap: 20px;
}

.slider-outer-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

.slider-main-track {
    display: flex;
    gap: var(--slider-gap);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.custom-slide {
    /* Desktop: 2 slides (calc takes gap into account) */
    flex: 0 0 calc(50% - (var(--slider-gap) / 2));
    aspect-ratio: 16 / 10;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(156, 212, 78, 0.2);
    background: #111;
}

.custom-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Navigation Buttons */
.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--primary-teal);
    color: var(--primary-teal);
    cursor: pointer;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.slider-nav-btn:hover {
    background: var(--primary-teal);
    color: black;
}

.btn-prev { left: 10px; }
.btn-next { right: 10px; }

/* Mobile View Fix */
@media (max-width: 768px) {
    .custom-slide {
        flex: 0 0 100%; /* Mobile: 1 slide full width */
    }
    .slider-outer-container {
        padding: 10px;
    }
    .btn-prev, .btn-next { width: 35px; height: 35px; }
}

/* Container jo alignment handle karega */
.features-wrapper {
    display: flex;
    flex-wrap: wrap;       /* Mobile par auto-stack hone ke liye */
    gap: 15px;             /* Chips ke darmiyan space */
}

/* Unique Chip Design */
.feature-chip {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05); /* Subtle transparent look */
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 24px;
    border-radius: 100px;  /* Pill shape */
    transition: all 0.3s ease;
    cursor: default;
}

/* Purple Dot */
.dot {
    height: 12px;
    width: 12px;
    background-color: #9cd44e; /* Vibrant Green */
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;        /* Dot ko chota hony se rokta hai */
    box-shadow: 0 0 10px rgba(156, 212, 78, 0.5);
}

/* Text Styling */
.feature-chip p {
    color: #ffffff;
    margin: 0;
    font-family: 'Inter', sans-serif; /* Clean professional font */
    font-size: 15px;
    letter-spacing: 0.3px;
    white-space: nowrap;   /* Text ko ek line mein rakhta hai */
}

/* Hover State for "Elite" Feel */
.feature-chip:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #9cd44e;
    transform: translateY(-2px);
}

/* Responsive: Mobile par text wrap handle karne ke liye */
@media (max-width: 600px) {
    /* .feature-chip {
        width: 100%;     
        justify-content: flex-start;
    } */
     .accord-wid{
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
}
    .feature-chip p {
        white-space: normal;
    }
}
/* Base padding for mobile (optional, 600px se neechy k liye) */
.accord-wid {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* Tablets and small desktops */
@media (min-width: 600px) {
    .accord-wid {
        padding-top: 3.25rem;
        padding-bottom: 3.25rem;
    }
}

/* Large desktops */
@media (min-width: 1400px) {
    .accord-wid {
        padding-top: 4.25rem;
        padding-bottom: 4.25rem;
    }
}

   /* ── 12. CASES / PORTFOLIO SECTION ── */
/* ── 12. CASES / PORTFOLIO SECTION ── */
.laptop-frame {
    position: relative;
    border-radius: 10px 10px 0 0;
    /* padding: 10px 10px 0; */
    overflow: hidden;
}
.laptop-notch {
    width: 50px;
    height: 5px;
    background: #2a2a2a;
    border-radius: 0 0 4px 4px;
    margin: 0 auto 8px;
}
.laptop-screen {
    position: relative;
    width: 100%;
    /* aspect-ratio: 16 / 10; */
    border-radius: 4px;
    overflow: hidden;
    background: #111;
}

.mr-top-3{
margin-top: -241px;
}
@media (max-width: 1399px) {

.mr-top-3 {
  margin-top: -125px;
}
}
@media (min-width: 1399px) {

.mr-top-3 {
margin-top: -241px;}
}
@media (max-width: 600px) {
    .mr-top-3{
margin-top: 0px;
}
/* .as-text-content{
    margin-top: -36px;
  margin-left: -19px;
} */
}
.laptop-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                filter 0.5s ease;
}
.card-hover:hover .laptop-screen img {
    transform: scale(1.08);
    filter: brightness(1.1);
}
.laptop-base {
    height: 8px;
    background: linear-gradient(to bottom, #222, #1a1a1a);
    border-radius: 0 0 4px 4px;
    position: relative;
}
.laptop-base::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: linear-gradient(to bottom, #1a1a1a, transparent);
    border-radius: 0 0 6px 6px;
}

.brand-card-visual {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 4px;
}
.brand-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                filter 0.5s ease;
}
.card-hover:hover .brand-card-visual img {
    transform: scale(1.08);
    filter: brightness(1.1);
}
.brand-card-visual .brand-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.case-tag {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #9cd44e;
    background: rgba(156, 212, 78, 0.1);
    border: 1px solid rgba(156, 212, 78, 0.15);
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
    transition: background 0.3s ease, border-color 0.3s ease;
}
.card-hover:hover .case-tag {
    background: rgba(156, 212, 78, 0.18);
    border-color: rgba(156, 212, 78, 0.3);
}

.case-arrow {
    transition: transform 0.3s ease, color 0.3s ease;
    color: #525252;
}
.card-hover:hover .case-arrow {
    transform: translateX(4px);
    color: #ade85a;
}

/* cta */
/* ── 13. CTA BANNER SECTION ── */
.cta-banner {
    position: relative;
    background-color: rgb(156, 212, 78, 0.01);
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(156, 212, 78, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 50%, rgba(156, 212, 78, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

/* Floating diamonds */
@keyframes diamondFloat1 {
    0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.15; }
    50% { transform: rotate(45deg) translateY(-12px); opacity: 0.3; }
}
@keyframes diamondFloat2 {
    0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.1; }
    50% { transform: rotate(45deg) translateY(-8px); opacity: 0.22; }
}
@keyframes diamondFloat3 {
    0%, 100% { transform: rotate(45deg) translateY(0) translateX(0); opacity: 0.12; }
    50% { transform: rotate(45deg) translateY(-10px) translateX(4px); opacity: 0.25; }
}
.diamond {
    position: absolute;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 3px;
    pointer-events: none;
}
.diamond-1 {
    width: 40px; height: 40px;
    top: 15%; left: 8%;
    animation: diamondFloat1 6s ease-in-out infinite;
}
.diamond-2 {
    width: 24px; height: 24px;
    top: 25%; right: 12%;
    animation: diamondFloat2 5s ease-in-out 1s infinite;
}
.diamond-3 {
    width: 32px; height: 32px;
    bottom: 20%; left: 15%;
    animation: diamondFloat3 7s ease-in-out 0.5s infinite;
}
.diamond-4 {
    width: 18px; height: 18px;
    bottom: 30%; right: 8%;
    animation: diamondFloat1 5.5s ease-in-out 2s infinite;
}
.diamond-5 {
    width: 28px; height: 28px;
    top: 50%; left: 4%;
    animation: diamondFloat2 6.5s ease-in-out 1.5s infinite;
}
.diamond-6 {
    width: 14px; height: 14px;
    top: 10%; left: 45%;
    animation: diamondFloat3 4.5s ease-in-out 0.8s infinite;
}
.diamond-7 {
    width: 20px; height: 20px;
    bottom: 12%; right: 25%;
    animation: diamondFloat1 5s ease-in-out 3s infinite;
}

/* Filled diamond accent */
.diamond-fill {
    position: absolute;
    background: rgba(139, 92, 246, 0.12);
    border-radius: 3px;
    pointer-events: none;
}
.diamond-fill-1 {
    width: 10px; height: 10px;
    top: 35%; right: 20%;
    animation: diamondFloat2 4s ease-in-out 0.3s infinite;
}
.diamond-fill-2 {
    width: 8px; height: 8px;
    bottom: 40%; left: 30%;
    animation: diamondFloat3 5s ease-in-out 2.5s infinite;
}

/* CTA button variant for banner */
.btn-cta-banner {
    background: #9cd44e;
    box-shadow: 0 0 50px rgba(156, 212, 78, 0.3), 0 6px 20px rgba(156, 212, 78, 0.35);
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn-cta-banner:hover {
    background: #aeed54;
    box-shadow: 0 0 70px rgba(156, 212, 78, 0.45), 0 10px 30px rgba(156, 212, 78, 0.4);
    transform: translateY(-3px);
}
.btn-cta-banner:active { transform: translateY(0); }

/* launching */

/* ═══════════════════════════════════════════
   HWRP — scoped, zero-conflict styles
   Every selector starts with #hwrp or .hwrp-
   ═══════════════════════════════════════════ */

/* ── reset just for this section ── */
#hwrp-pin *, #hwrp-pin *::before, #hwrp-pin *::after,
#lp-mobile *, #lp-mobile *::before, #lp-mobile *::after {
  box-sizing: border-box;
  margin: 0;
}

/* ══════════════════════════════════════
   VISIBILITY SWITCH  ← this is the key
   ══════════════════════════════════════ */
#hwrp-pin  { display: block; }   /* desktop default: show arc */
#lp-mobile { display: none;  }   /* desktop default: hide mobile */

@media screen and (max-width: 767px) {
  #hwrp-pin  { display: none  !important; }
  #lp-mobile { display: block !important; }
}

/* ══════════════════════════════════════
   DESKTOP ARC
   ══════════════════════════════════════ */
#hwrp-pin { position: relative; }

#hwrp-panel {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.hwrp-title-row {
  flex-shrink: 0;
  padding: clamp(1.2rem, 3.5vh, 2.5rem) 1rem clamp(0.4rem, 1vh, 0.8rem);
  text-align: center;
  position: relative;
  z-index: 5;
}

.hwrp-main-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  font-weight: 400;
  color: #fff;
}

.hwrp-arc-area {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.hwrp-arc-ring {
  position: absolute;
  border-radius: 50%;
  /* background: rgb(238,234,234); */
box-shadow: inset 0 0 6px rgba(180, 180, 183, 0.18);
  pointer-events: none;
  z-index: 1;
}

.hwrp-arc-svg {
  position: absolute;
  bottom: 0; left: 0;
  overflow: visible;
  pointer-events: none;
  z-index: 5;
}

.hwrp-indicator {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 30;
  pointer-events: none;
  transform: translate(-50%, -50%);
  will-change: left, top;
}

.hwrp-ind-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #888;
  white-space: nowrap;
}

.hwrp-ind-badge {
  width: 50px; height: 50px;
  border-radius: 13px;
  background: #9cd44e;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 18px; font-weight: 500;
  display: flex; align-items: center; justify-content: center;
  transition: background .5s, box-shadow .5s;
  box-shadow: 0 4px 20px rgba(156, 212, 78, 0.35);
}

.hwrp-content-zone {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 88%; max-width: 480px;
  text-align: center;
  z-index: 20;
  pointer-events: none;
  min-height: 120px;
}

.hwrp-step-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(22px);
}

.hwrp-step-title {
  font-size: clamp(1.7rem, 5vw, 2.5rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: .4rem;
}

.hwrp-step-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(13px, 2vw, 15px);
  color: #666;
  line-height: 1.65;
  margin-bottom: .9rem;
}

.hwrp-step-tags { display: flex; justify-content: center; flex-wrap: wrap; }

.hwrp-step-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(11px, 1.8vw, 13px);
  color: #999;
}
.hwrp-step-tag + .hwrp-step-tag::before { content: ' \2022 '; color: #ccc; }

.hwrp-dots {
  position: absolute;
  bottom: clamp(.7rem, 1.8vh, 1.3rem);
  left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px;
  z-index: 25;
}
.hwrp-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #ccc;
  transition: width .35s, border-radius .35s, background .35s;
}
.hwrp-dot.hwrp-on {
  width: 22px; border-radius: 4px;
  background: #9cd44e;
}

.hwrp-hint {
  position: absolute;
  bottom: clamp(.7rem, 1.8vh, 1.3rem);
  right: 1.2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; color: #bbb;
  letter-spacing: .06em;
  z-index: 25;
  transition: opacity .4s;
}

/* ══════════════════════════════════════
   MOBILE VERTICAL STEPS
   ══════════════════════════════════════ */
#lp-mobile {
  /* background: #; */
  padding: 4rem 0 3.5rem;
}

.lp-inner {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.lp-heading {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.7rem, 7vw, 2.2rem);
  font-weight: 400;
  color: #1c1c1c;
  line-height: 1.15;
  margin-bottom: 2.8rem;
}

/* wrapper that holds both the line and all steps */
.lp-steps {
  position: relative;
}

/* vertical connecting line */
.lp-vline {
  position: absolute;
  left: 23px;          /* centre of 48px circle */
  top: 48px;
  bottom: 28px;
  width: 2px;
  background: rgba(156, 212, 78, 0.10);
  border-radius: 2px;
  overflow: hidden;
  z-index: 0;
}
.lp-vline-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #9cd44e, rgba(156, 212, 78, 0.12));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.1s cubic-bezier(.22,1,.36,1);
}
.lp-vline-fill.go { transform: scaleY(1); }

/* each step row */
.lp-step {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

/* numbered circle */
.lp-circle {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #ece9ff;
  border: 1.5px solid rgba(156, 212, 78, .2);
  color: #9cd44e;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: .04em;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  /* animate in */
  opacity: 0;
  transform: scale(.55);
  transition:
    opacity   .5s cubic-bezier(.22,1,.36,1),
    transform .5s cubic-bezier(.22,1,.36,1),
    background .35s ease .2s,
    border-color .35s ease .2s,
    color      .35s ease .2s,
    box-shadow .35s ease .2s;
}
.lp-circle.show {
  opacity: 1; transform: scale(1);
  background: #9cd44e; border-color: #9cd44e;
  color: #fff;
  box-shadow: 0 0 0 7px rgba(156, 212, 78, 0.11);
}

/* text block beside circle */
.lp-body {
  padding-top: 5px;
  padding-bottom: 2.5rem;
  opacity: 0;
  transform: translateX(20px);
  transition:
    opacity   .5s cubic-bezier(.22,1,.36,1) .08s,
    transform .5s cubic-bezier(.22,1,.36,1) .08s;
}
.lp-body.show { opacity: 1; transform: translateX(0); }

.lp-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #9cd44e;
  margin-bottom: 5px;
  opacity: 0; transform: translateY(7px);
  transition: opacity .4s ease .15s, transform .4s cubic-bezier(.22,1,.36,1) .15s;
}
.lp-body.show .lp-num { opacity: 1; transform: translateY(0); }

.lp-title {
  font-size: clamp(1.2rem, 5.5vw, 1.5rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 7px;
  opacity: 0; transform: translateY(7px);
  transition: opacity .4s ease .2s, transform .4s cubic-bezier(.22,1,.36,1) .2s;
}
.lp-body.show .lp-title { opacity: 1; transform: translateY(0); }

.lp-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; color: #666;
  line-height: 1.65;
  margin-bottom: 10px;
  opacity: 0; transform: translateY(7px);
  transition: opacity .4s ease .26s, transform .4s cubic-bezier(.22,1,.36,1) .26s;
}
.lp-body.show .lp-desc { opacity: 1; transform: translateY(0); }

.lp-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  opacity: 0; transform: translateY(5px);
  transition: opacity .4s ease .32s, transform .4s cubic-bezier(.22,1,.36,1) .32s;
}
.lp-body.show .lp-tags { opacity: 1; transform: translateY(0); }

.lp-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 500;
  color: #9cd44e;
  background: rgba(156, 212, 78, 0.08);
  border: 1px solid rgba(156, 212, 78, 0.18);
  border-radius: 20px;
  padding: 3px 11px;
}
/* clients testimonials */
  /* ── 15. TESTIMONIALS SECTION ── */
@keyframes marqueeLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes marqueeRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.testi-marquee-mask {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.testi-track-left {
    display: flex;
    width: max-content;
    animation: marqueeLeft 50s linear infinite;
}
.testi-track-left:hover { animation-play-state: paused; }

.testi-track-right {
    display: flex;
    width: max-content;
    animation: marqueeRight 50s linear infinite;
}
.testi-track-right:hover { animation-play-state: paused; }

.testi-card {
    width: 380px;
    flex-shrink: 0;
    margin: 0 12px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
    border-radius: 16px;
    padding: 28px;
    transition: border-color 0.4s ease, background 0.4s ease;
}
.testi-card:hover {
    border-color: rgba(156, 212, 78, 0.2);
    background: rgba(156, 212, 78, 0.03);
}

.testi-stars { display: flex; gap: 3px; margin-bottom: 16px; }

.testi-quote {
    font-size: 14px;
    line-height: 1.7;
    color: #a3a3a3;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(156, 212, 78, 0.2);
}
.testi-name {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}
.testi-role {
    font-size: 12px;
    color: #525252;
    margin-top: 1px;
}

/* Mobile slider */
.testi-slider-wrap {
    display: none;
    overflow: hidden;
    border-radius: 16px;
}
.testi-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.testi-slider-track .testi-card {
    width: 100%;
    margin: 0;
}

.testi-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}
.testi-dot-btn {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1a1a1a;
    border: none;
    cursor: pointer;
    transition: all 0.35s ease;
    padding: 0;
}
.testi-dot-btn.testi-dot-on {
    width: 24px;
    border-radius: 4px;
    background: #9cd44e;
    box-shadow: 0 0 10px rgba(156, 212, 78, 0.4);
}

@media (max-width: 767px) {
    .testi-marquee-area { display: none !important; }
    .testi-slider-wrap { display: block; }
    .testi-dots { display: flex; }
    .testi-card { padding: 22px; }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .testi-card { width: 320px; }
}

/* form */

/* ── 16. CONTACT FORM SECTION ── */
.contact-shell {
    background-color: rgba(156, 212, 78, 0.01);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 32px;
    position: relative;
    overflow: hidden;
}
.contact-shell::before {
    content: '';
    position: absolute;
    top: -80px; left: -80px;
    width: 260px; height: 260px;
    background: rgba(156, 212, 78, 0.08);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: #d4d4d4;
}
.contact-pill-dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: #9cd44e;
    box-shadow: 0 0 12px rgba(156, 212, 78, 0.5);
    flex-shrink: 0;
}

.contact-input {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    padding: 14px 18px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-input::placeholder { color: #525252; }
.contact-input:focus {
    border-color: rgba(139,92,246,0.5);
    box-shadow: 0 0 0 3px rgba(139,92,246,0.08);
}

.contact-select-wrap {
    position: relative;
}
.contact-select-wrap select {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    padding: 14px 44px 14px 18px;
    color: #525252;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    appearance: none;
    outline: none;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-select-wrap select:focus {
    border-color: rgba(139,92,246,0.5);
    box-shadow: 0 0 0 3px rgba(139,92,246,0.08);
}
.contact-select-wrap .select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #525252;
}

.btn-contact-primary {
    display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  color: #000000;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 5px 17px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 52%;
}
.btn-contact-primary:hover { background: #f0f0f0; }
.btn-contact-primary:active { transform: scale(0.97); }
.btn-contact-icon {
    background: #0a0a0a;
    color: #fff;
    width: 35px; height: 36px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.3s ease;
}
.btn-contact-primary:hover .btn-contact-icon { transform: rotate(45deg); }

.btn-contact-submit {
    background: #ffffff;
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 36px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255,255,255,0.08);
}
.btn-contact-submit:hover { background: #f0f0f0; transform: scale(1.02); }
.btn-contact-submit:active { transform: scale(0.97); }

/* Toast */
.contact-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(156, 212, 78, 0.1);
    border: 1px solid rgba(156, 212, 78, 0.2);
    color: #9cd44e;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 14px 22px;
    border-radius: 14px;
    z-index: 9999;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}
.contact-toast.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.contact-toast.error {
    background: rgba(239,68,68,0.1);
    border-color: rgba(239,68,68,0.2);
    color: #ef4444;
}

@media (max-width: 1023px) {
    .contact-shell { border-radius: 24px; }
}
@media (max-width: 639px) {
    .contact-shell { border-radius: 20px; }
    .btn-contact-primary { width: 100%; justify-content: center; }
    .btn-contact-submit { width: 100%; text-align: center; }
}

/* footer */

/* ── 17. FOOTER SECTION ── */
.footer-shell {
    background-color: rgba(156, 212, 78, 0.1);
    position: relative;
    overflow: hidden;
    border-start-start-radius: 45px;
  border-start-end-radius: 45px;
}
.footer-shell::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 400px; height: 400px;
    background: rgba(156, 212, 78, 0.06);
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}
.footer-shell::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 300px; height: 300px;
    background: rgba(156, 212, 78, 0.04);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.footer-link {
    color: #737373;
    font-size: 14px;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}
.footer-link:hover {
    color: #a8e751;
    transform: translateX(3px);
}

.footer-heading {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #888;
    margin-bottom: 20px;
}

.footer-social {
    width: 40px; height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.03);
    display: flex; align-items: center; justify-content: center;
    color: #525252;
    transition: all 0.3s ease;
}
.footer-social:hover {
    border-color: rgba(156, 212, 78, 0.3);
    background: rgba(156, 212, 78, 0.08);
    color: #9cd44e;
    transform: translateY(-2px);
}

.footer-logo-text {
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 800;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, rgba(156, 212, 78, 0.25) 0%, rgba(255,255,255,0.08) 50%, rgba(156, 212, 78, 0.15) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    user-select: none;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(156, 212, 78, 0.12), transparent);
}

.footer-bottom-link {
    color: #404040;
    font-size: 13px;
    transition: color 0.2s ease;
}
.footer-bottom-link:hover { color: #737373; }

@keyframes footerFadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.footer-anim { animation: footerFadeUp 0.8s cubic-bezier(0.22,1,0.36,1) both; }
.footer-anim-d1 { animation-delay: 0.1s; }
.footer-anim-d2 { animation-delay: 0.2s; }
.footer-anim-d3 { animation-delay: 0.3s; }
.footer-anim-d4 { animation-delay: 0.4s; }
.footer-anim-d5 { animation-delay: 0.5s; }

@media (max-width: 767px) {
    .footer-logo-text { font-size: 36px; }
}