@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Global scaling for mobile view (proportionally shrinks all rem-based text and spacing) */
@media (max-width: 768px) {
    html {
        font-size: 105%;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 95%;
    }
}

:root {
    --primary-orange: rgba(255, 191, 0);
    ;
    --bg-dark: #020617;
    --text-white: #ffffff;
    --text-gray: #94a3b8;
    --glass-bg: rgba(45, 57, 77, 0.4);
    --input-bg: #E2E2E2;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

h1,
h2 {
    font-size: 3.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4,
h5,
h6 {
    font-weight: 600;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    padding-top: 80px;
    /* Offset for sticky header */
}

/* Header Styles */
.main-header {
    width: 100%;
    height: 80px;
    background-color: #00121a;
    /* Dark navy from image */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
}

.header-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 400;
    transition: var(--transition);
    opacity: 0.9;
}

.nav-link:hover {
    color: var(--primary-orange);
    opacity: 1;
}

.btn-primary {
    background-color: rgba(255, 191, 0);
    color: rgb(255, 255, 255);
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    display: inline-block;
}

.btn-primary:hover {
    background-color: rgb(255, 145, 0);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 125, 33, 0.4);
}

.header-actions {
    margin-left: 3rem;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-white);
}

/* Background Banner with arrows as elements */
.hero-wrapper {
    width: 100%;
    min-height: 100vh;
    background-image: url('assets/hero/Banner1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.hero-container {
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    z-index: 2;
}

/* Left Content Section */
.hero-content {
    flex: 1;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 10;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    width: fit-content;
    padding: 0.5rem 1rem;
    border-radius: 99px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-orange);
}

.badge span {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-orange);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 600;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}

.hero-title span {
    color: var(--primary-orange);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 500px;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text-white);
    opacity: 0;
}

.feature-item:nth-child(1) {
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.9s forwards;
}

.feature-item:nth-child(2) {
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 1.1s forwards;
}

.feature-icon {
    color: var(--primary-orange);
    font-weight: bold;
}

/* Middle Arrow Decorations */
.arrow-decorations {
    position: absolute;
    left: -250px;
    /* Brought closer to give content more room */
    top: 0;
    bottom: 0;
    width: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
    z-index: 5;
    /* Place behind content if they overlap */
}

.decor-arrow {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.top-arrow {
    transform: translateY(115%);
    opacity: 0;
    animation: slideFromLeft 2.2s cubic-bezier(0.16, 1, 0.3, 1) 1.5s forwards;
}

.bottom-arrow {
    transform: translateY(-115%);
    opacity: 0;
    animation: slideFromRight 2.2s cubic-bezier(0.16, 1, 0.3, 1) 1.8s forwards;
}

@keyframes slideFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-150px) translateY(115%) scale(0.8);
    }

    100% {
        opacity: 1;
        transform: translateX(0) translateY(115%) scale(1);
    }
}

@keyframes slideFromRight {
    0% {
        opacity: 0;
        transform: translateX(150px) translateY(-115%) scale(0.8);
    }

    100% {
        opacity: 1;
        transform: translateX(0) translateY(-115%) scale(1);
    }
}

/* Entrance Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Form Section */
.form-card {
    position: relative;
    flex-shrink: 0;
    width: 480px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    opacity: 0;
    animation: fadeInRight 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.form-header-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
}

.form-header-title img {
    width: 80px;
    height: auto;
    animation: sunRotate 10s linear infinite;
}

.form-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-row {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-white);
    margin-bottom: 5px;
    font-weight: 500;
}

.input-field {
    width: 100%;
    padding: 0.85rem 1rem;
    background-color: var(--input-bg);
    border: none;
    border-radius: 8px;
    color: #333;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.input-field:focus {
    box-shadow: 0 0 0 2px var(--primary-orange);
}

.phone-input-wrapper {
    display: flex;
    width: 100%;
}

.phone-input-wrapper .input-field {
    flex: 1;
    width: 100%;
    min-width: 0;
}

.country-code {
    background-color: #000;
    color: white;
    padding: 0.85rem 0.75rem;
    border-radius: 8px 0 0 8px;
    font-size: 1rem;
    font-weight: 600;
}

.input-field[type="tel"] {
    border-radius: 0 8px 8px 0;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-gray);
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-orange);
    cursor: pointer;
}

.checkbox-group label {
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-orange);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px var(--primary-orange);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Responsive Scaling */
@media (max-width: 1280px) {
    .arrow-decorations {
        display: none;
    }
}

@media (max-width: 1080px) {
    .hero-container {
        justify-content: flex-start;
        text-align: left;
    }

    .hero-content {
        align-items: flex-start;
    }

    .hero-title {
        font-size: 3rem;
    }

    .form-card {
        width: 100%;
        max-width: 500px;
        padding: 2rem;
    }

    /* Mobile Header Styles */
    .header-container {
        padding: 0 1.5rem;
    }

    .mobile-menu-toggle {
        display: block;
        z-index: 1005;
        /* Above menu */
    }

    .logo {
        z-index: 1005;
        /* Above menu */
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -105%;
        /* Further right to hide shadow */
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #00121a 0%, #020617 100%);
        backdrop-filter: blur(15px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        transition: var(--transition);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
    }

    .nav-menu.active {
        right: 0;
        opacity: 1;
        visibility: visible;
        box-shadow: -15px 0 40px rgba(0, 0, 0, 0.6);
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        /* Changed to handle borders */
        text-align: center;
        margin-bottom: 3rem;
        width: 100%;
        max-width: 300px;
    }

    .nav-list li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-list li:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        padding: 1.5rem 0;
        font-size: 1.5rem;
        font-weight: 500;
        letter-spacing: 1px;
    }

    .header-actions {
        margin-left: 0;
        display: block;
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .header-actions .btn-primary {
        width: 100%;
        padding: 1.2rem;
        font-size: 1.1rem;
        box-shadow: 0 10px 25px rgba(255, 125, 33, 0.3);
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .form-card {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .form-title {
        font-size: 1.7rem;
    }

    .form-header-title img {
        width: 60px;
    }

    .form-group {
        margin-bottom: 0.8rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .hero-wrapper {
        padding: 1.5rem 1rem;
    }

    .logo img {
        height: 40px;
    }

    .hero-container {
        padding-top: 1rem;
        gap: 2.5rem;
    }
}

/* ================================================
   PROBLEMS SECTION — Pixel-perfect vs reference
   ================================================ */

.ps-section {
    width: 100%;
    background: linear-gradient(to bottom, #ffffff 0%, #ffffff 50%, #e7ecff 100%);
    overflow: hidden;
    position: relative;
    padding: 80px 0 0 0;
    /* Increased to avoid header overlap */
    /* padding-bottom: 250px; */
    /* More room at bottom */
}

.ps-body {
    /* max-width: 1440px; */
    margin: 0 auto;
    position: relative;
}

/* ---------- TWO-COLUMN MAIN LAYOUT ---------- */
.ps-main-layout {
    /* display: flex; */
    display: grid;
    align-items: flex-start;
    justify-content: space-between;
    padding: 20px 80px 0 60px;
    gap: 0;
    max-width: 1400px;
    margin-inline: auto;
    grid-template-columns: 1fr 1fr;
}

/* LEFT COLUMN: Sun + Advantage Card stacked */
.ps-left-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    width: 360px;
    gap: 16px;
    padding-top: 0;
}

/* RIGHT COLUMN: Heading + Problem Card, with Cube in corner */
.ps-right-col {
    flex: 1;
    /* width: 500px; */
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 30px 20px 0 50px;
}

.ps-sun-block {
    position: relative;
    width: 100px;
    height: 100px;
    opacity: 0;
    /* Hidden until GSAP triggers */
}

.ps-sun-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 191, 0, 0.573) 0%, rgba(255, 166, 0, 0.282) 60%, transparent 80%);
    border-radius: 50%;
    filter: blur(15px);
    z-index: 0;
    animation: sunPulse 4s ease-in-out infinite alternate;
}

@keyframes sunPulse {
    0% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.ps-sun-img {
    z-index: 1;
    width: 100px;
    height: auto;
    display: block;
    animation: sunRotate 8s linear infinite;
}

@keyframes sunRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Heading Area */
.ps-main-layout {
    margin-bottom: 80px;
    /* Space between heading and wave area */
}

.ps-heading {
    font-size: 3rem;
    /* Slightly smaller to prevent clutter */
    font-weight: 600;
    line-height: 1.1;
    color: #0d1b2a;
    text-align: left;
    position: relative;
    z-index: 50;
    /* width: 70%; */
}

.ps-blue {
    color: #1a9fd4;
}

/* Advantage Card (Main Top Card) */
#ps-adv-card-main {
    position: absolute;
    left: 15%;
    top: -100px;
    /* Moved down to avoid heading */
    width: 400px;
    transform: translateX(-50%);
    background: #ffffff;
    border-radius: 20px;
    padding: 20px 24px;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.12);
    z-index: 30;
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateX(-50%) translateY(30px);
}

.ps-adv-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0d1b2a;
    margin-bottom: 12px;
}

.ps-adv-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 16px;
}

.ps-adv-footer {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: rgb(255, 191, 0);
    font-weight: 600;
}

.ps-check-icon {
    color: rgba(255, 191, 0);
    margin-top: 4px;
}

/* Problem Cards */
.ps-prob-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 18px 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: absolute;
    z-index: 30;
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(30px);
}

/* Problem Cards Positioning */
#ps-p-low {
    left: 35%;
    /* Pushed left */
    top: 550px;
    width: 350px;
    transform: translateX(-50%) translateY(30px);
    opacity: 0;
}

#ps-p2 {
    left: 65%;
    /* Pushed right to avoid overlap with p-low */
    top: 480px;
    width: 350px;
    transform: translateX(-50%) translateY(30px);
    opacity: 0;
}

#ps-p1 {
    left: 60%;
    top: 80px;
    /* Moved down to avoid heading */
    width: 450px;
    transform: translateX(-50%) translateY(30px);
    opacity: 0;
}

/* 3D Cube — top-right corner of ps-right-col */
.ps-cube-wrap {
    position: absolute;
    top: 650px;
    right: 60px;
    width: 130px;
    height: 130px;
    perspective: 1000px;
    transform-style: preserve-3d;
    z-index: 12;
}

.ps-cube {
    width: 80px !important;
    height: 80px !important;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateX(25deg) rotateY(35deg);
    margin: 0 auto;
    transition: transform 0.5s ease;
}

#ps-cube,
#ps-cube-2 {
    width: 80px !important;
    height: 80px !important;
}

.ps-face {
    position: absolute;
    width: 80px !important;
    height: 80px !important;
    border: 1.5px solid rgba(25, 47, 56, 0.5);
    background: linear-gradient(135deg, rgba(26, 159, 212, 0.3) 0%, rgba(26, 159, 212, 0.1) 100%);
    backdrop-filter: blur(4px);
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.1);
    top: 0;
    left: 0;
}

.ps-front {
    transform: rotateY(0deg) translateZ(40px);
}

.ps-back {
    transform: rotateY(180deg) translateZ(40px);
}

.ps-right-f {
    transform: rotateY(90deg) translateZ(40px);
}

.ps-left-f {
    transform: rotateY(-90deg) translateZ(40px);
}

.ps-top-f {
    transform: rotateX(90deg) translateZ(40px);
}

.ps-bottom-f {
    transform: rotateX(-90deg) translateZ(40px);
}

/* Wave area container */
.ps-wave-area {
    position: relative;
    width: 100vw;
    height: 700px;
    /* Increased to house more floating content comfortably */
    margin-top: 50px;
    overflow: visible;
    perspective: 1500px;
    bottom: 150px;
}

/* Wave image/svg - Ensure it's full width and positioned correctly */
.ps-wave-img {
    width: 100%;
    height: 70%;
    position: absolute;
    top: 0px;
    left: 0;
    pointer-events: none;
    z-index: 10;
}

/* Rays connecting dots to cards */
.ps-ray {
    position: absolute;
    width: 300px;
    pointer-events: none;
    z-index: 20;
    opacity: 0;
    transform: scaleY(0);
}

.ps-ray-up {
    background: linear-gradient(to top, rgba(26, 159, 212, 0.6) 0%, rgba(26, 159, 212, 0.05) 90%, transparent 100%);
    clip-path: polygon(15% 0%, 85% 0%, 50% 100%);
    /* Sharper rays */
    transform: translateX(-50%);
    transform-origin: bottom center;
    border-bottom: none;
    filter: blur(2px);
}

.ps-ray-down {
    background: linear-gradient(to bottom, rgba(26, 159, 212, 0.6) 0%, rgba(26, 159, 212, 0.05) 90%, transparent 100%);
    clip-path: polygon(50% 0%, 15% 100%, 85% 100%);
    transform: translateX(-50%);
    transform-origin: top center;
    filter: blur(2px);
}

.ps-ray-down.right {
    transform: translateX(-50%) rotate(-30deg) !important;
}

.ps-ray-up.left {
    transform: translateX(-50%) rotate(-30deg) !important;
}

/* Dots on wave crests */
.ps-dot {
    position: absolute;
    width: 22px;
    height: 22px;
    background: #ffffff;
    border: 4px solid #1a9fd4;
    border-radius: 50%;
    z-index: 40;
    transform: translate(-50%, -50%);
    /* Corrected to center on dot position */
    box-shadow: 0 0 15px rgba(26, 159, 212, 0.5);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
}

.ps-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: rgba(26, 159, 212, 0.3);
    border-radius: 50%;
    animation: psDotPulse 2s infinite;
}

@keyframes psDotPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

.ps-prob-card p {
    font-size: 0.95rem;
    color: #2d3748;
    line-height: 1.5;
    margin: 0;
}

/* Cube Positioning - Bottom Left */
.ps-cube-bl {
    position: absolute;
    bottom: 320px;
    left: 8%;
    z-index: 15;
    width: 130px;
    height: 130px;
    perspective: 800px;
    /* Added perspective for 3D consistency */
    display: flex;
    align-items: center;
    justify-content: center;
}

.ps-cube-sm {
    transform: rotateX(25deg) rotateY(35deg);
}

/* ---------- FLOATING ANIMATIONS ---------- */
@keyframes psFloatA {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

@keyframes psFloatB {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes psFloatC {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.ps-float-a {
    animation: psFloatA 5s ease-in-out infinite;
}

.ps-float-b {
    animation: psFloatB 6s ease-in-out infinite 0.5s;
}

.ps-float-c {
    animation: psFloatC 4.5s ease-in-out infinite 1s;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
    .ps-heading {
        font-size: 3rem;
    }

    .ps-top {
        padding: 40px 40px 20px;
    }

    .ps-mid {
        padding: 0 40px;
        flex-wrap: wrap;
    }

    #ps-p1 {
        margin-top: 30px;
    }

    .ps-cube-wrap {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .ps-section {
        padding: 40px 0;
        overflow: hidden;
    }

    .ps-body {
        padding: 0;
    }

    .rays-container {
        padding: 0 20px !important;
        width: 100%;
        box-sizing: border-box;
    }

    /* Reset Table/Grid Layout to Block */
    .ps-main-layout {
        display: block !important;
        grid-template-columns: none !important;
        padding: 0 20px !important;
        margin-bottom: 30px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .ps-left-col {
        display: block !important;
        width: 100% !important;
        margin-bottom: 20px !important;
        padding: 0 !important;
        flex-direction: column;
    }

    .ps-sun-block {
        width: 80px !important;
        height: 80px !important;
        margin: 0 !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .ps-sun-img,
    .ps-sun-glow {
        width: 80px !important;
        height: 80px !important;
    }

    .ps-right-col {
        display: block !important;
        padding: 0 !important;
        width: 100% !important;
        margin: 0 !important;
    }

    .ps-heading {
        font-size: 2.2rem !important;
        line-height: 1.2;
        text-align: left;
        margin: 0 !important;
        left: 0 !important;
        width: 100% !important;
    }

    /* Hide Rays and Dots on Mobile */
    .ps-ray,
    .ps-dot {
        display: none !important;
    }

    .ps-wave-area {
        height: auto !important;
        display: flex;
        flex-direction: column;

        gap: 20px;
        margin-top: 20px;
        bottom: 0;
    }

    .ps-wave-img {
        position: relative;
        height: 120px;
        margin-bottom: -60px;
        /* Overlap with first card for style */
        z-index: 5;
    }



    /* Stack Cards Vertically */
    .ps-adv-card,
    .ps-prob-card {
        position: relative !important;
        left: 0 !important;
        top: 0 !important;
        width: 100% !important;
        transform: none !important;
        margin-bottom: 15px;
        opacity: 1 !important;
        /* Ensure visibility */
        box-sizing: border-box;
    }

    .ps-adv-card {
        z-index: 10;
        margin-top: 20px;
    }

    .ps-adv-title {
        font-size: 1.4rem;
    }

    #ps-p1 {
        order: 3;
    }

    #ps-p-low {
        order: 1;
    }

    #ps-p2 {
        order: 2;
    }

    /* Hide 3D Cubes on small screens */
    .ps-cube-wrap,
    .ps-cube-bl {
        display: none !important;
    }
}

.problems-section {
    position: relative;
    width: 100%;
    min-height: 120vh;
    background-color: #f8fafc;
    overflow: hidden;
    padding: 80px 0 0 0;
    color: #1e293b;
}

.problems-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    height: 900px;
}

/* Header with Sun Overlay */
.content-header {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 0 4rem;
    position: relative;
    z-index: 20;
}

.sun-glow-wrapper {
    position: relative;
    flex-shrink: 0;
}

.sun-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 191, 0, 0.4) 0%, rgba(255, 191, 0, 0) 70%);
    border-radius: 50%;
    filter: blur(15px);
}

.sun-image {
    width: 60px;
    height: auto;
    position: relative;
    z-index: 2;
}

.problems-heading h2 {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.1;
    color: #0f172a;
    max-width: 800px;
}

.problems-heading h2 span {
    color: #0284c7;
}

/* Advantage Card Positioning */
.advantage-card-wrapper {
    padding: 0 4rem;
    margin-top: 2rem;
    position: relative;
    z-index: 20;
}

.advantage-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    max-width: 450px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.advantage-card .card-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #0f172a;
}

.advantage-card .card-text {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.advantage-card .card-footer {
    display: flex;
    gap: 0.75rem;
    color: #f59e0b;
    font-size: 1rem;
    font-weight: 500;
}

/* Problem Items & Connectors */
.problem-item {
    position: absolute;
    z-index: 25;
}

.problem-card {
    background: #ffffff;
    padding: 1.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    max-width: 320px;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.problem-card p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.5;
    margin: 0;
}

.connector-line {
    position: absolute;
    background: rgba(2, 132, 199, 0.2);
    height: 1px;
    transform-origin: left center;
    z-index: -1;
}

.line-1 {
    width: 150px;
    top: 50%;
    left: 100%;
    transform: rotate(45deg);
}

/* Glassy 3D Cubes */
.cubes-layer {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 15;
}

.cube-container {
    position: absolute;
    perspective: 1000px;
}

.cube-right {
    top: 40%;
    right: 5%;
}

.glassy-cube {
    width: 200px;
    height: 200px;
    position: relative;
    transform-style: preserve-3d;
}

.glassy-cube .face {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(14, 165, 233, 0.05);
    border: 1.5px solid rgba(14, 165, 233, 0.2);
    backdrop-filter: blur(4px);
}

.glassy-cube .front {
    transform: rotateY(0deg) translateZ(100px);
}

.glassy-cube .back {
    transform: rotateY(180deg) translateZ(100px);
}

.glassy-cube .right {
    transform: rotateY(90deg) translateZ(100px);
}

.glassy-cube .left {
    transform: rotateY(-90deg) translateZ(100px);
}

.glassy-cube .top {
    transform: rotateX(90deg) translateZ(100px);
}

.glassy-cube .bottom {
    transform: rotateX(-90deg) translateZ(100px);
}

/* Wave & Data Points */
.wave-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: 10;
}

.main-wave {
    width: 100%;
    height: 100%;
}

.wave-dots .dot {
    position: absolute;
    width: 18px;
    height: 18px;
    background: #ffffff;
    border: 4px solid #0284c7;
    border-radius: 50%;
    z-index: 30;
    box-shadow: 0 0 20px rgba(2, 132, 199, 0.3);
}

.wave-dots .dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: rgba(2, 132, 199, 0.1);
    border-radius: 50%;
    animation: wavePulse 2.5s infinite;
}

@keyframes wavePulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

@media (max-width: 1024px) {
    .problems-heading h2 {
        font-size: 3rem;
    }

    .content-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* ================================================
   SUCCESS SECTION (SS) — The Final 4 Pillars
   ================================================ */

.ss-section {
    width: 100%;
    background-color: #ffffff;
    padding-block: 100px;
    overflow: hidden;
    position: relative;
    color: #0d1b2a;
}

.ss-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/background-bar.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.ss-container {
    max-width: 1400px;
    margin: 0 auto;
    /* padding: 0 60px; */
    display: flex;
    /* display: grid; */
    /* grid-template-columns: 1fr 1fr; */
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    position: relative;
    z-index: 10;
}

.ss-container p {
    margin-bottom: 30px;
}

.ss-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    /* Reduced gap */
}

.ss-heading {
    z-index: 100;
    font-size: 3.2rem;
    /* Reduced from 4rem */
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
}

.ss-heading .ss-blue {
    color: #1a9fd4;
}

.ss-illustration-wrap {
    position: relative;
    width: 100%;
    margin-top: 0px;
}

.ss-premium-mockup {
    position: relative;
    width: 100%;
    max-width: 550px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    z-index: 2;
}

.ss-mockup-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Blobs */
.ss-mockup-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    opacity: 0.4;
    animation: blobPulse 8s ease-in-out infinite alternate;
}

.ss-blob-primary {
    top: 10%;
    right: -10%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #216be1 0%, transparent 70%);
}

.ss-blob-secondary {
    bottom: 10%;
    left: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #ff7d21 0%, transparent 70%);
}

@keyframes blobPulse {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.3;
    }

    100% {
        transform: scale(1.2) translate(10px, 10px);
        opacity: 0.5;
    }
}

/* Mockup Cards */
.ss-mockup-card {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 4px solid #ffffff;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.ss-card-bottom {
    width: 80%;
    bottom: 50px;
    left: 30px;
    z-index: 10;
    transform: rotate(-3deg);
}

.ss-card-top {
    width: 80%;
    top: 50px;
    right: 30px;
    z-index: 20;
    transform: rotate(3deg);
}

.ss-mockup-card:hover {
    transform: rotate(0) scale(1.05);
    z-index: 50;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

.ss-mockup-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Browser Header Mockup */
.ss-browser-header {
    height: 1.8rem;
    background: #f9fafb;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

.ss-header-dots {
    display: flex;
    gap: 6px;
}

.ss-header-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot-red {
    background: #f87171;
}

.dot-amber {
    background: #fbbf24;
}

.dot-emerald {
    background: #34d399;
}

.ss-glass-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.03);
    pointer-events: none;
}

@media (max-width: 1024px) {
    .ss-premium-mockup {
        height: 400px;
        max-width: 500px;
        margin-inline: auto;
    }

    .ss-card-bottom {
        left: 0;
    }

    .ss-card-top {
        right: 0;
    }
}

@media (max-width: 640px) {
    .ss-premium-mockup {
        height: 300px;
    }

    .ss-card-bottom,
    .ss-card-top {
        width: 90%;
    }
}

.ss-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    /* max-width: 500px; */
}

.ss-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    opacity: 0;
    transform: translateX(50px);
}

.ss-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.ss-icon-box {
    width: 55px;
    height: 55px;
    background-color: rgba(26, 159, 212, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ss-icon-box i {
    font-size: 1.8rem;
    color: #1a9fd4;
}

.ss-card-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #0d1b2a;
}

.ss-card-info p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

/* Shared 3D Cube Decor on Success Section */
.ss-mini-cube-container {
    position: absolute;
    right: 0px;
    top: 0;
    z-index: 10;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
}

/* Ensure container allows absolute positioning of cube */
.ss-right {
    position: relative;
}

.ss-cube-tiny {
    width: 50px !important;
    height: 50px !important;
}

.ss-cube-tiny .ps-face {
    width: 50px !important;
    height: 50px !important;
}

/* Override fixed sizes for tiny cube faces */
.ss-cube-tiny .ps-front {
    transform: rotateY(0deg) translateZ(25px);
}

.ss-cube-tiny .ps-back {
    transform: rotateY(180deg) translateZ(25px);
}

.ss-cube-tiny .ps-right-f {
    transform: rotateY(90deg) translateZ(25px);
}

.ss-cube-tiny .ps-left-f {
    transform: rotateY(-90deg) translateZ(25px);
}

.ss-cube-tiny .ps-top-f {
    transform: rotateX(90deg) translateZ(25px);
}

.ss-cube-tiny .ps-bottom-f {
    transform: rotateX(-90deg) translateZ(25px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .ss-section {
        padding: 60px 0;
    }

    .ss-container {
        flex-direction: column;
        padding: 0 20px;
        text-align: center;
        gap: 50px;
    }

    .ss-container p {
        margin-bottom: 0px;
    }

    .ss-left {
        align-items: center;
        width: 100%;
    }

    .ss-heading {
        font-size: 3rem;
    }

    .ss-card {
        text-align: left;
    }
}

@media (max-width: 640px) {
    .ss-section {
        padding: 50px 0;
    }

    .ss-heading {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 0px;
    }

    .ss-premium-mockup {
        height: 280px;
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .ss-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 25px;
        gap: 15px;
    }

    .ss-icon-box {
        width: 50px;
        height: 50px;
    }

    .ss-right {
        gap: 12px;
        margin-top: -30px;
        /* Bring cards closer to illustration */
    }
}

/* ================================================
   PERFORMANCE METRICS SECTION
   ================================================ */
.pm-section {
    padding: 80px 0;
    position: relative;
    background-color: #f1f8fd;
    /* Match light blue section background from image */
    overflow: hidden;
}

.pm-bg-analytics {
    position: absolute;
    top: 10%;
    right: -15%;
    transform: translateY(-50%);
    width: 65%;
    height: 80%;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

.pm-bg-analytics img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pm-bg-sun {
    /* position: absolute;
    left: -40px;
    bottom: -40px;
    width: 380px;
    height: 380px;
    opacity: 0.25;
    z-index: 1;
    pointer-events: none; */
    position: absolute;
    top: 10%;
    right: -25%;
    transform: translateY(-50%);
    width: 65%;
    height: 20%;
    opacity: 0.35;
    z-index: 1;
    pointer-events: none;
    animation: rotate 10s linear infinite;
    /* rotate: 45deg; */
}

.pm-bg-sun .ps-sun-glow {
    background: radial-gradient(circle, rgba(255, 191, 0, 0.36) 0%, rgba(255, 166, 0, 0.338) 40%, transparent 60%);
    width: 500px !important;
    height: 500px !important;
    opacity: 0.15;

}

.pm-bg-sun img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* background-color: #ffffff; */
}

.pm-container {
    max-width: 1400px;
    margin: 0 auto;
    /* padding: 0 4rem; */
    position: relative;
    z-index: 10;
}

.pm-header {
    text-align: start;
    margin-bottom: 80px;
}

.pm-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: -2px;
}

.pm-blue {
    color: #2394c5;
    /* Match the light blue shade from image */
}

.pm-subtitle {
    font-size: 1.15rem;
    text-align: start;
    color: #333333;
    /* max-width: 750px; */
    margin: 0 auto;
    font-weight: 400;
}

.pm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pm-card {
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.04), 0 0 0 1.5px rgba(0, 0, 0, 0.06);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 320px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
}

.pm-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 45px 90px rgba(35, 148, 197, 0.15);
}

.pm-card-left {
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-left: 8px solid #2394c5;
}

.pm-card-bottom {
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: 8px solid #2394c5;
}

.pm-card-right {
    border-top: none;
    border-left: none;
    border-bottom: none;
    border-right: 8px solid #2394c5;
}

.pm-card-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.pm-card-stat {
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: 0px;
}

.pm-card-desc {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.5;
    max-width: fit-content;
    margin-top: auto;
    margin-bottom: 85px;
    /* Anchor to bottom side */
}

.pm-card-icon {
    position: absolute;
    bottom: 20px;
    right: 30px;
    width: 105px;
    height: 105px;
    transition: transform 0.5s ease;
}

.pm-card:hover .pm-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.pm-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 1200px) {
    .pm-container {
        padding: 0 20px;
    }

    .pm-card-stat {
        font-size: 2.8rem;
    }
}

@media (max-width: 1024px) {
    .pm-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .pm-section {
        padding: 60px 0;
    }

    .pm-header {
        margin-bottom: 20px;
    }

    .pm-grid {
        grid-template-columns: 1fr;
    }

    .pm-title {
        font-size: 1.8rem;
    }

    .pm-subtitle {
        font-size: 1rem;
    }

    .pm-subtitle span {
        font-size: 0.85rem !important;
    }

    .pm-card {
        min-height: auto;
        padding: 25px 20px 75px;
        /* Adjusted padding for smaller screens to reduce height */
    }

    /* Reset borders first */
    .pm-card-left,
    .pm-card-right,
    .pm-card-bottom {
        border: none;
    }

    /* Alternating borders ONLY */
    .pm-card:nth-child(odd) {
        border-left: 8px solid #2394c5;
    }

    .pm-card:nth-child(even) {
        border-right: 8px solid #2394c5;
    }

    /* Fix image cutting/overlap issues */
    .pm-card-icon {
        width: 65px;
        height: 65px;
        bottom: 15px;
        right: 15px;
    }

    .pm-card-label {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .pm-card-desc {
        max-width: 100%;
        /* Allow text to use full width */
        margin-bottom: 0px;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .pm-card-stat {
        font-size: 1.6rem !important;
        margin-bottom: 15px;
        letter-spacing: -1px;
    }

    .pm-bg-sun {
        width: 200px;
        height: 200px;
        top: 6%;
        right: -35%;
    }


}

/* ================= COMPARISON SECTION ================= */
.vs-section {
    padding: 80px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.vs-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.vs-header {
    text-align: center;
    margin-bottom: 60px;
}

.vs-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.vs-title span {
    color: #2394c5;
}

.vs-subtitle {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.vs-table-wrapper {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.04), 0 0 0 1.5px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.vs-grid-header,
.vs-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1.2fr;
}

.vs-row {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    transition: background 0.3s ease;
}

.vs-row:hover {
    background: #fcfcfc;
}

.vs-cell {
    padding: 24px 30px;
    display: flex;
    align-items: center;
    font-size: 1.05rem;
}

.vs-grid-header {
    background: #f8fafc;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.vs-feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #111;
}

.vs-dtg-title {
    font-size: 1.25rem;
    font-weight: 700;
    background: rgba(35, 148, 197, 0.08);
    color: #2394c5;
    border-bottom: 3px solid #2394c5;
}

.vs-generic-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #555;
}

.vs-dtg {
    background: rgba(35, 148, 197, 0.03);
    font-weight: 600;
    color: #111;
}

.vs-dtg i {
    color: #2394c5;
    margin-right: 12px;
    font-size: 1.2rem;
}

.vs-feature {
    font-weight: 600;
    color: #333;
}

.vs-generic {
    color: #666;
}

.vs-generic i {
    color: #ef4444;
    margin-right: 12px;
    font-size: 1.2rem;
}

@media (max-width: 992px) {
    .vs-container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .vs-section {
        padding: 60px 0;
    }

    .vs-title {
        font-size: 2.2rem;
    }

    .vs-table-wrapper {
        box-shadow: none;
        border: none;
        background: transparent;
    }

    .vs-grid-header {
        display: none;
    }

    .vs-row {
        display: flex;
        flex-direction: column;
        padding: 25px;
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.123);
        border-radius: 20px;
        margin-bottom: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    }

    .vs-cell {
        padding: 12px 0;
        display: block;
    }

    .vs-feature {
        font-size: 1.3rem;
        color: #2394c5;
        border-bottom: 1px dashed #eee;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .vs-dtg {
        background: transparent;
        padding-top: 0;
    }

    .vs-dtg::before {
        content: 'Digitalize The Globe:';
        font-weight: 700;
        display: block;
        margin-bottom: 6px;
        color: #111;
        font-size: 1rem;
    }

    .vs-generic::before {
        content: 'Generic Agencies:';
        font-weight: 700;
        display: block;
        margin-bottom: 6px;
        color: #555;
        font-size: 1rem;
    }
}

/* ================= SERVICES SECTION ================= */
.dtg-services-section {
    background: linear-gradient(to bottom, #f8f9fa 0%, #edf1fe 100%);
    padding-inline: 40px;
    padding-block: 80px;
    color: #111;
    overflow: hidden;
}

.dtg-services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.dtg-services-header {
    margin-bottom: 60px;
}

.dtg-services-header.text-center {
    text-align: center;
}

.dtg-services-header h2 {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}

.dtg-services-header h2 span {
    color: #1a9fd4;
}

.dtg-services-desc {
    max-width: 600px;
    font-size: 18px;
    color: #444;
    line-height: 1.6;
    margin: 0 auto;
}

.service-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
}



.service-pill-card {
    background: linear-gradient(90deg, #f5f7fb63 0%, #e1efff 100%);
    border-top-right-radius: 500px;
    border-bottom-right-radius: 500px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 350px;
    padding: 20px;
    /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05); */
    position: relative;
}

.service-pill-card.layout-right {
    background: linear-gradient(90deg, #e1efff 0%, #f2f5fc48 100%);
    border-top-left-radius: 500px;
    border-bottom-left-radius: 500px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.service-text-content {
    flex: 1;
    padding: 0 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.service-badge {
    background: #ffeb3b;
    color: #333;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
}

.service-desc {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    max-width: 90%;
}

.service-desc span {
    display: block;
}

.explore-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #FF731D;
    text-decoration: none;
    margin-top: 10px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.explore-link:hover {
    gap: 12px;
    color: #e6671a;
}

.service-image-container {
    width: 360px;
    height: 360px;
    flex-shrink: 0;
    position: relative;
    border-radius: 50%;
    /* background: #fff; */
    padding: 3px;
    /* box-shadow: 0 20px 50px rgba(26, 159, 212, 0.2); */
    /* Make the circle pop out slightly from the pill */
    margin: -30px 0;
}

.layout-left .service-image-container {
    margin-right: -30px;
}

.layout-right .service-image-container {
    margin-left: -30px;
}

.circle-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 5px solid #e1efff;
}

.circle-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-pill-card:hover .circle-wrapper img {
    transform: scale(1.05);
}

/* Mobile Adjustments */
@media (max-width: 992px) {
    .service-pill-card {
        flex-direction: column !important;
        border-radius: 40px !important;
        height: auto;
        padding: 40px 30px;
        gap: 30px;
    }

    .service-pill-card.layout-left {
        flex-direction: column-reverse !important;
    }

    .service-pill-card.layout-right {
        flex-direction: column !important;
    }

    .service-text-content {
        padding: 0;
        align-items: center;
        text-align: center;
    }

    .service-desc {
        max-width: 100%;
    }

    .service-image-container {
        width: 300px;
        height: 300px;
        margin: 0 !important;
    }
}

@media (max-width: 768px) {
    .dtg-services-section {
        padding-inline: 15px;
        padding-block: 40px;
    }

    .dtg-services-header {
        margin-bottom: 40px;
    }

    .dtg-services-header h2 {
        font-size: 2.2rem;
    }

    .dtg-services-desc {
        font-size: 1rem;
    }

    .service-title {
        font-size: 1.5rem;
    }

    .service-desc {
        font-size: 1rem;
    }

    .service-badge {
        font-size: 0.75rem;
        padding: 5px 12px;
    }

    .explore-link {
        font-size: 1rem;
    }

    .service-image-container {
        width: 250px;
        height: 250px;
    }
}

/* ====================================================
   TESTIMONIALS SECTION — "Client Trusted Story"
   Design Spec: Clean SaaS UI, 3-card layout, center highlighted
   ==================================================== */

.testimonials-section {
    padding: 80px 0;
    background-color: #F7F7F7;
    overflow: hidden;
    position: relative;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Heading --- */
.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: #000000;
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
}

.testimonials-title span {
    color: #2F8FA3;
}

/* --- Slider Container --- */
.testimonials-slider-container {
    position: relative;
    width: 100%;
    height: 250px;
    /* Slight increase for safety */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* CRITICAL: Must be flex-start for the JS offset math to work */
    overflow: visible;
}

/* --- Slider Arrows --- */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: #2F8FA3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: #2F8FA3;
    color: #ffffff;
    border-color: #2F8FA3;
    box-shadow: 0 6px 16px rgba(47, 143, 163, 0.3);
}

.slider-prev {
    left: -20px;
}

.slider-next {
    right: -20px;
}

.testimonials-track {
    display: flex;
    gap: 28px;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 30px 0;
    width: fit-content;
}

/* --- Base Card (hidden by default) --- */
.testimonial-card {
    min-width: 330px;
    max-width: 330px;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.5s ease;
    opacity: 0.1;
    /* Base opacity for all cards, helps with layout engine */
    pointer-events: none;
    transform: scale(0.9);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* --- Center Card (highlighted, primary focus) --- */
.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1.05);
    border: 2px solid #2F8FA3;
    box-shadow: 0px 16px 40px rgba(47, 143, 163, 0.15);
    z-index: 10;
}

/* --- Side Cards (supporting, slightly faded) --- */
.testimonial-card.visible-side {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(0.93);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.06);
    z-index: 5;
}

/* --- Card Header: avatar + name/role | stars --- */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.author-info {
    display: flex;
    gap: 12px;
    align-items: center;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: #e2f4f7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2F8FA3;
    font-size: 1rem;
    flex-shrink: 0;
    overflow: hidden;
}

.author-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    font-size: 15px;
    font-weight: 600;
    color: #000000;
    margin: 0;
    line-height: 1.3;
}

.author-role {
    font-size: 11px;
    color: #888888;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

/* --- Stars (top-right) --- */
.star-rating {
    display: flex;
    gap: 2px;
    color: #FF8A00;
    font-size: 1rem;
    flex-shrink: 0;
}

/* --- Testimonial Body Text --- */
.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555555;
    margin: 0;
}

/* --- Dots Navigation --- */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c0ccd8;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #2F8FA3;
    width: 24px;
    border-radius: 4px;
}

/* --- Hover Effects --- */
.testimonial-card.visible-side:hover {
    transform: scale(0.96) translateY(-4px);
}

.testimonial-card.active:hover {
    transform: scale(1.07) translateY(-4px);
}

/* --- Responsive: Tablet --- */
@media (max-width: 1024px) {
    .testimonial-card {
        min-width: 320px;
    }

    .testimonials-slider-container {
        height: 380px;
    }
}

/* --- Responsive: Mobile --- */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 40px 0;
    }

    .testimonials-title {
        font-size: 2.2rem;
    }

    .testimonials-header {
        margin-bottom: 20px;
    }

    .testimonials-slider-container {
        height: 350px;
    }

    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .slider-prev {
        left: -15px;
    }

    .slider-next {
        right: -15px;
    }

    .testimonial-card {
        min-width: 270px;
        max-width: 270px;
        padding: 24px 20px;
    }

    .card-header {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .star-rating {
        margin-left: 52px;
        /* Aligns with text (40px avatar + 12px gap) */
    }

    .slider-dots {
        margin-top: 20px;
    }
}

/* ================================================
   CTA LEADS SECTION
   ================================================ */
.cta-leads-section {
    padding: 100px 20px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.cta-leads-container {
    max-width: 1400px;
    width: 100%;
    min-height: 400px;
    background-color: #f0f7ff;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.05);
}

.cta-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.8;
}

.cta-leads-content {
    position: relative;
    z-index: 10;
    text-align: center;
    /* max-width: 800px; */
}

.cta-leads-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: #111827;
    line-height: 1.1;
    margin-bottom: 24px;
}

.cta-leads-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 700px;
    margin-inline: auto;
}

.cta-leads-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #FF7D21;
    color: #ffffff;
    text-decoration: none;
    padding: 18px 45px;
    border-radius: 99px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* box-shadow: 0 10px 25px rgba(255, 125, 33, 0.3); */
}

.cta-leads-btn i {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.cta-leads-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 125, 33, 0.4);
    background: #f56d0d;
}

.cta-leads-btn:hover i {
    transform: rotate(15deg) scale(1.1);
}

/* Mockups Positioning */
.cta-mockup-left,
.cta-mockup-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 300px;
    pointer-events: none;
    z-index: 5;
}

.cta-mockup-left {
    left: 0;
}

.cta-mockup-right {
    right: 0;
}

.cta-mockup-item {
    position: absolute;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    transition: transform 0.5s ease;
}

.cta-mockup-item img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

#mockup-welcome {
    width: 180px;
    left: 40px;
    top: 40px;
}

#mockup-leads {
    width: 280px;
    left: -20px;
    bottom: -40px;
}

#mockup-analytics {
    width: 280px;
    right: 20px;
    top: 30%;
    transform: translateY(-50%);
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.cta-mockup-item {
    animation: float 6s ease-in-out infinite;
}

#mockup-leads {
    animation-delay: 1s;
}

#mockup-analytics {
    animation-delay: 2s;
}

/* Responsive */
@media (max-width: 1024px) {
    .cta-leads-title {
        font-size: 3rem;
    }

    .cta-mockup-left,
    .cta-mockup-right {
        opacity: 0.3;
    }
}

@media (max-width: 768px) {
    .cta-leads-section {
        padding: 40px 15px;
    }

    .cta-leads-container {
        padding: 40px 15px;
        min-height: auto;
        border-radius: 20px;
    }

    .cta-leads-title {
        font-size: 1.8rem;
        margin-bottom: 16px;
    }

    .cta-leads-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .cta-leads-btn {
        padding: 14px 24px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }

    .cta-mockup-left,
    .cta-mockup-right {
        display: none;
    }
}

/* ================================================
   FAQ SECTION — pixel-perfect match to reference
   ================================================ */

.faq-section {
    background-color: #ffffff;
    padding-bottom: 100px;
    width: 100%;
    overflow: hidden;
}

/* Outer wrapper — two columns: [left panel] | [right cards] */
.faq-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 0;
}

/* ---- LEFT PANEL — heading text + blue shape side by side ---- */
.faq-left {
    flex: 0 0 44%;
    display: flex;
    align-items: stretch;
    position: relative;
    min-height: 400px;
}

/* Heading text block — left sub-column */
.faq-heading-wrap {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    padding-right: 24px;
    z-index: 4;
    /* Above the shape panel but below the bar */
}

.faq-heading {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.15;
    color: #111;
    font-family: 'Outfit', sans-serif;
    margin: 0;
    white-space: nowrap;
}

.faq-heading span {
    display: block;
    color: #2F8FA3;
    font-weight: 600;
}

/* Blue gradient shape panel — right sub-column, decorative separator */
.faq-shape-panel {
    flex: 1;
    position: relative;
    /* Soft glow that follows the beam shape and "emerges" from it */
    /* filter: drop-shadow(0 0 25px rgba(47, 143, 163, 0.4)); */
    min-width: 260px;
    z-index: 5;
    /* Sit on top of the heading wrap and the right panel */
}

/* Clipped background moved to pseudo-element to allow drop-shadow to be visible outside the clips */
.faq-shape-panel::before {
    content: '';
    position: absolute;
    inset: -20% 0;
    /* extra height for the beam to overflow */
    /* Gradient strongest at the line (right), fading to transparent at the text (left) */
    background: linear-gradient(to left, #018fbeaa, transparent);
    /* "Beam" shape: taller at the line (right), wider/overflowing near the text (left) */
    clip-path: polygon(0 -5%, 100% 5%, 100% 95%, 0 105%);
    height: 400px;
    margin-top: 80px;
}

/* Teal vertical bar — on the right edge of the shape panel */
.faq-left::after {
    content: '';
    position: absolute;
    right: 0;
    top: 5%;
    height: 90%;
    width: 4px;
    background-color: #2F8FA3;
    z-index: 6;
    /* Topmost element to ensure its glow is visible */
    border-radius: 4px;
    /* Strong glow emerging from the line towards both sides, matching reference style */
    box-shadow: 0 0 30px rgba(47, 143, 163, 0.5),
        -10px 0 20px rgba(47, 143, 163, 0.3);
}

/* ---- RIGHT PANEL — the accordion cards ---- */
.faq-right {
    flex: 1;
    padding-left: 56px;
    /* gap between the teal bar and first card */
    z-index: 1;
    /* Below the glow/shadow of the left panel */
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    position: relative;
    display: flex;
    align-items: center;
}

/* Horizontal connector line — spans from the teal bar to the card */
.faq-connector {
    position: absolute;
    left: -56px;
    /* negative of faq-right padding-left */
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    /* Slightly more than 56px to ensure overlap with card border */
    height: 2px;
    background-color: #2F8FA3;
    z-index: 1;
}

/* ---- CARD ---- */
.faq-card {
    background-color: #ffffff;
    border-radius: 18px;
    width: 100%;
    border: 1px solid #e2e8ec;
    /* Very soft shadow with a hint of teal to match the beam effect */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05),
        0 0 15px rgba(47, 143, 163, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* Removed overflow: hidden so shadows can emerge fully */
}

.faq-card:hover {
    box-shadow: 0 6px 24px rgba(47, 143, 163, 0.1);
}

.faq-item.active .faq-card {
    box-shadow: 0 6px 24px rgba(47, 143, 163, 0.14);
    border-color: rgba(47, 143, 163, 0.2);
}

/* ---- CARD HEADER ---- */
.faq-card-header {
    padding: 18px 20px;
    padding-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 14px;
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.4;
    font-family: 'Outfit', sans-serif;
}

/* ---- CIRCULAR TEAL TOGGLE ---- */
.faq-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #2F8FA3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.25s ease;
    flex-shrink: 0;
    font-size: 1rem;
}

.faq-toggle:hover {
    background-color: #247b8e;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
    background-color: #1f6e80;
}

/* ---- ACCORDION BODY ---- */
.faq-card-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer {
    padding: 0 20px 18px;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.65;
    margin: 0;
}

/* ---- RESPONSIVE: Tablet ---- */
@media (max-width: 991px) {
    .faq-container {
        flex-direction: column;
        gap: 48px;
        padding: 0 24px;
    }

    .faq-left {
        width: 100%;
        min-height: auto;
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .faq-heading-wrap {
        padding-right: 0;
        text-align: center;
    }

    .faq-heading {
        white-space: normal;
    }

    .faq-shape-panel {
        display: none;
        width: 100%;
        min-height: 80px;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        border-radius: 16px;
    }

    .faq-left::after {
        display: none;
    }

    .faq-right {
        width: 100%;
        padding-left: 0;
    }

    .faq-connector {
        display: none;
    }
}

/* ---- RESPONSIVE: Mobile ---- */
@media (max-width: 576px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-heading {
        font-size: 2.2rem;
        white-space: normal;
    }

    .faq-question {
        font-size: 14px;
    }
}

/* Modern Footer Section */
.modern-footer {
    background-color: #ffffff;
    padding: 100px 0 0;
    font-family: 'Outfit', sans-serif;
    color: #333;
}

.footer-top {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
}

.footer-logo {
    width: 150px;
    margin-bottom: 25px;
}

.footer-logo img {
    max-width: 100%;
}

.footer-brand-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    max-width: 320px;
}

.footer-brand-desc strong {
    color: #111;
    font-weight: 700;
}

.footer-column-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 25px;
}

.footer-column-links {
    list-style: none;
    padding: 0;
}

.footer-column-links li {
    margin-bottom: 12px;
}

.footer-column-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-column-links a:hover {
    color: #2394c5;
    padding-left: 5px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-item i {
    color: #1a9fd4;
    font-size: 1.1rem;
    margin-top: 3px;
}

.contact-item a {
    /* color: #1a9fd4; */
    text-decoration: none;
}

.contact-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 38px;
    height: 38px;
    background-color: #1a9fd4;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-icon:hover {
    background-color: #1a2a5a;
    transform: translateY(-3px);
}

/* Bottom Bar */
.footer-bottom-bar {
    background-color: #0d1b2a;
    color: #fff;
    padding: 25px 0;
}

.footer-bottom-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.bottom-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.bottom-links a:hover {
    opacity: 1;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-top {
        padding-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .modern-footer {
        padding-top: 60px;
    }
}

/* ================================================
   POP-UP MODAL STYLES
   ================================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    width: 100%;
    max-width: 700px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
    max-height: 90vh;
    overflow-y: auto;
    scrollbar-width: none;
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.modal-close:hover {
    background: var(--primary-orange);
    color: white;
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: #020617;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.5;
}

.modal-content .form-group .label {
    color: #111827;
    font-weight: 600;
}

.modal-content .input-field {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #111;
    padding: 1rem;
}

.modal-content .input-field::placeholder {
    color: #94a3b8;
}

.modal-content .input-field:focus {
    background: #ffffff;
    border-color: var(--primary-orange);
    box-shadow: 0 0 15px rgba(255, 125, 33, 0.1);
}

.modal-content .country-code {
    background: #000;
    border-radius: 12px 0 0 12px;
}

.modal-content .input-field[type="tel"] {
    border-radius: 0 12px 12px 0;
}

.modal-content .checkbox-group label {
    color: #4b5563;
}

.modal-content .submit-btn {
    margin-top: 1rem;
    height: 60px;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(255, 125, 33, 0.3);
}

/* Thank You Modal Styles */
.thank-you-container {
    max-width: 450px;
    text-align: center;
    overflow: hidden;
}

.thank-you-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.thank-you-sun {
    position: relative;
    width: 120px;
    height: 120px;
    right: 150px;
    top: -30px;
    margin-bottom: -70px;
    z-index: 0;
    opacity: 0.8;
}

.thank-you-sun::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    background: rgba(255, 166, 0, 0.849);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(25px);
    box-shadow: 0 0 50px rgba(255, 166, 0, 0.59);
    animation: sunGlow 4s ease-in-out infinite alternate;
}

@keyframes sunGlow {
    from {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    to {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.8;
    }
}

.thank-you-sun img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: sunRotate 12s linear infinite;
}

.success-icon-wrap {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 0.5rem;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.3);
    position: relative;
    z-index: 2;
    animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.thank-you-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #020617;
    margin: 0;
}

.thank-you-message {
    color: #4b5563;
    line-height: 1.6;
    font-size: 1.1rem;
    margin: 0;
}

.thank-you-footer {
    width: 100%;
}

.thank-you-footer .btn-primary {
    width: 100%;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Confetti Animation */
.confetti-piece {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary-orange);
    top: 50%;
    left: 50%;
    opacity: 0;
    z-index: 1;
}

.modal-overlay.active .confetti-piece:nth-child(1) {
    animation: confetti 1.2s ease-out forwards 0.2s;
    background: #FF7D21;
}

.modal-overlay.active .confetti-piece:nth-child(2) {
    animation: confetti2 1.2s ease-out forwards 0.3s;
    background: #10b981;
}

.modal-overlay.active .confetti-piece:nth-child(3) {
    animation: confetti3 1.2s ease-out forwards 0.4s;
    background: #3b82f6;
}

.modal-overlay.active .confetti-piece:nth-child(4) {
    animation: confetti4 1.2s ease-out forwards 0.5s;
    background: #f59e0b;
}

.modal-overlay.active .confetti-piece:nth-child(5) {
    animation: confetti5 1.2s ease-out forwards 0.6s;
    background: #ec4899;
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
    }

    60% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes confetti {
    100% {
        transform: translate(-80px, -60px) rotate(45deg);
        opacity: 1;
    }
}

@keyframes confetti2 {
    100% {
        transform: translate(70px, -80px) rotate(-30deg);
        opacity: 1;
    }
}

@keyframes confetti3 {
    100% {
        transform: translate(-60px, 90px) rotate(15deg);
        opacity: 1;
    }
}

@keyframes confetti4 {
    100% {
        transform: translate(90px, 50px) rotate(-60deg);
        opacity: 1;
    }
}

@keyframes confetti5 {
    100% {
        transform: translate(0, -90px) rotate(90deg);
        opacity: 1;
    }
}

@media (max-width: 640px) {
    .thank-you-title {
        font-size: 2rem;
    }

    .thank-you-message {
        font-size: 1rem;
    }
}


/* ================================================
   PREMIUM CONTACT SECTION
   ================================================ */
.contact-section {
    padding: 80px 20px;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.contact-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
    pointer-events: none;
}

.contact-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.contact-header {
    text-align: start;
    margin-bottom: 40px;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: #0d1b2a;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    /* max-width: 650px; */
    margin: 0 auto;
    line-height: 1.6;
}

.contact-content {
    display: flex;
    gap: 80px;
    align-items: stretch;
}

/* Left Side: Information cards */
.contact-info {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 25px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    border-color: var(--primary-orange);
}

.info-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-orange), #ff9852);
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(255, 125, 33, 0.2);
    flex-shrink: 0;
}

.info-text {
    flex: 1;
    min-width: 0;
}

.info-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.info-text a {
    font-size: 1rem;
    line-height: 1.4;
    cursor: pointer;
    color: #64748b;
    text-decoration: none;
    word-break: break-word;
    overflow-wrap: anywhere;
    display: inline-block;
}

.info-text p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.4;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.contact-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 10px;
    padding-left: 10px;
}

.contact-socials a {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: #475569;
    border-radius: 18px;
    font-size: 1.4rem;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.contact-socials a:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-5px) scale(1.1);
    border-color: var(--primary-orange);
    box-shadow: 0 10px 20px rgba(255, 125, 33, 0.2);
}

@media (max-width: 768px) {
    .contact-socials {
        gap: 15px;
    }

    .contact-socials a {
        border-radius: 10px;
    }
}



/* Right Side: Form box */
.contact-form-box {
    flex: 1.2;
    background: #ffffff;
    padding: 35px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.contact-form-box .form-group {
    margin-bottom: 1.25rem;
}

.contact-form-box .concern-box {
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #64748b;
}

.concern-box input[type="checkbox"] {
    width: 22px;
    height: 22px;
    accent-color: var(--primary-orange);
    cursor: pointer;
    flex-shrink: 0;
}

.contact-form-box .label {
    font-size: 1rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}

.contact-form-box .input-field {
    background: #f8fafc;
    border: 1.5px solid #f1f5f9;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-form-box .input-field:focus {
    background: #ffffff;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 4px rgba(255, 125, 33, 0.05);
}

.contact-form-box .submit-btn {
    margin-top: 5px;
    height: 52px;
    font-size: 1rem;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ================================================
   FORM VALIDATION STYLES
   ================================================ */
.form-group {
    position: relative;
    /* margin-bottom: 1.5rem; */
}

.error-msg {
    position: absolute;
    bottom: -22px;
    left: 5px;
    font-size: 0.8rem;
    color: #ef4444;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.form-group.invalid .input-field {
    border-color: #ef4444 !important;
    background-color: #fff1f2 !important;
}

.form-group.invalid .error-msg {
    opacity: 1;
    visibility: visible;
}

.form-group.valid .input-field {
    border-color: #10b981 !important;
}

/* Mobile Adjustments */
@media (max-width: 1100px) {
    .contact-content {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .contact-content {
        flex-direction: column;
    }

    .contact-info,
    .contact-form-box {
        width: 100%;
    }

    .contact-info {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .info-card {
        gap: 10px;
        padding: 10px 15px;
    }

    .info-icon {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
        border-radius: 10px;
    }

    .info-text h3 {
        font-size: 1rem;
    }

    .info-text a,
    .info-text p {
        font-size: 0.9rem;
    }
}

@media (max-width: 640px) {
    .contact-section {
        padding: 60px 20px;
    }

    .contact-title {
        font-size: 2.1rem;
    }

    .contact-header {
        margin-bottom: 40px;
    }

    .contact-form-box {
        padding: 10px;
        border-radius: 10px;
    }


    .contact-info {
        grid-template-columns: 1fr;
    }
}

/* Mobile Adjustments for Modal */
@media (max-width: 640px) {
    .modal-container {
        padding: 20px 15px;
        border-radius: 16px;
        max-height: 85vh;
        overflow-y: auto;
    }

    .modal-header {
        margin-bottom: 1.25rem;
    }

    .modal-title {
        font-size: 1.8rem;
        margin-top: 20px;
        margin-bottom: 0.2rem;
    }

    .modal-subtitle {
        font-size: 0.85rem;
    }

    .modal-close {
        top: 12px;
        right: 12px;
        width: 32px;
        height: 32px;
    }

    .modal-content .form-row {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .modal-content .form-group {
        margin-bottom: 0.8rem;
    }

    .modal-content .input-field {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .modal-content .submit-btn {
        height: 50px;
        font-size: 1rem;
        margin-top: 0.5rem;
    }

    .concern-box {
        font-size: 0.85rem !important;
        margin-bottom: 0.75rem !important;
    }

    .concern-box label {
        font-size: 0.85rem !important;
    }
}

/* ================================================
   CLIENT MARQUEE STYLES
   ================================================ */
.client-name-container {
    width: 100%;
    overflow: hidden;
    background-color: white;
    padding: 25px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    /* display: flex; */
    flex-direction: row;
    align-items: center;
}

.client-name-container .heading {
    /* width: 20%; */
    margin: 0;
    padding: 0 15px;
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.client-name-container>div {
    /* width: 80%; */
    overflow: hidden;
}

.client-name-container h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    font-family: var(--font-outfit);
    color: #1e293b;
    padding-top: 20px;
}

.heading span {
    color: rgb(255, 191, 0);
}

.client-name-marque {
    display: flex;
    gap: 32px;
    width: max-content;
    animation: marquee 25s linear infinite;
    text-transform: uppercase;
    padding-block: 5px;
}

.client-name-marque:hover {
    animation-play-state: paused;
}

.client-name-marque > img,
.client-name-marque > div {
    width: 220px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.client-name-marque > img {
    background: linear-gradient(180deg, rgb(221 238 255 / 90%), rgb(221 238 255 / 90%));
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
    object-fit: contain;
    filter: saturate(1.05) contrast(1.02);
}

.client-name-marque > img:hover,
.client-name-marque > div:hover,
.client-marque-card:hover {
    border-color: rgba(255, 191, 0, 0.45);
    box-shadow: 0 14px 28px rgba(255, 191, 0, 0.12);
}

.client-name-marque > div,
.client-marque-card {
    color: #0f172a;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    background: linear-gradient(180deg, rgba(221 238 255 / 90%), rgba(221 238 255 / 90%));
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-family: var(--font-outfit, 'Outfit', sans-serif);
}

.client-marque-card {
    width: 220px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.client-marque-card span {
    display: block;
    max-width: 100%;
    color: #111827;
}

.client-marque-card:hover {
    border-color: rgba(255, 191, 0, 0.45);
    box-shadow: 0 14px 28px rgba(255, 191, 0, 0.12);
}

.client-name-marque > img:hover,
.client-name-marque > div:hover,
.client-marque-card:hover {
    transform: scale(1.05);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 1rem));
    }
}

@media (max-width: 768px) {
    .client-name-container {
        flex-direction: column;
        padding: 20px 0;
    }

    .client-name-container .heading {
        width: 100%;
        text-align: center;
        padding-bottom: 15px;
    }

    .client-name-container>div {
        width: 100%;
    }

    .client-name-marque {
        gap: 20px;
    }

    .client-name-marque > img,
    .client-name-marque > div,
    .client-marque-card {
        width: 150px;
        height: 70px;
        padding: 12px;
    }

    .client-name-marque > div,
    .client-marque-card {
        font-size: 0.875rem;
    }
}

/* Floating Action Buttons */
.floating-btn {
    position: fixed;
    bottom: 30px;
    height: 60px;
    display: flex;
    align-items: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
    z-index: 999;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
}

.floating-btn i {
    font-size: 28px;
}

.whatsapp-btn {
    right: 0;
    border-radius: 30px 0 0 30px;
    background-color: #25d366;
    color: #FFF;
    padding: 0 16px;
}

.whatsapp-btn .btn-text {
    max-width: 0;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    margin-right: 0;
    font-size: 16px;
    font-weight: 500;
}

.whatsapp-btn:hover .btn-text {
    max-width: 150px;
    opacity: 1;
    margin-right: 12px;
}

.whatsapp-btn:hover {
    background-color: #128c7e;
    color: #FFF;
    padding-left: 20px;
}

.call-btn {
    left: 0;
    border-radius: 0 30px 30px 0;
    background-color: #2394c5;
    color: #FFF;
    padding: 0 16px;
}

.call-btn .btn-text {
    max-width: 0;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    margin-left: 0;
    font-size: 16px;
    font-weight: 500;
}

.call-btn:hover .btn-text {
    max-width: 100px;
    opacity: 1;
    margin-left: 12px;
}

.call-btn:hover {
    background-color: #1a749c;
    color: #FFF;
    padding-right: 20px;
}

/* WhatsApp Chat Widget */
.wa-chat-box {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    background: #FFF;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 998;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(20px) scale(0.9);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wa-chat-box.show {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.wa-chat-header {
    background: #075E54;
    color: #FFF;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wa-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wa-avatar {
    width: 40px;
    height: 40px;
    background: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.wa-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wa-header-text h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
}

.wa-header-text p {
    margin: 3px 0 0;
    font-size: 12px;
    color: #e5ddd5;
}

.wa-close-btn {
    background: none;
    border: none;
    color: #FFF;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.wa-close-btn:hover {
    opacity: 1;
}

.wa-chat-body {
    background-color: #efeae2;
    background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
    padding: 20px;
    min-height: 200px;
    max-height: 300px;
    overflow-y: auto;
}

.wa-message {
    background: #FFF;
    padding: 10px 15px;
    border-radius: 0 12px 12px 12px;
    font-size: 14px;
    color: #111;
    line-height: 1.4;
    position: relative;
    display: inline-block;
    max-width: 85%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.wa-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: -8px;
    width: 0;
    height: 0;
    border-top: 0px solid transparent;
    border-right: 10px solid #FFF;
    border-bottom: 10px solid transparent;
}

.wa-time {
    display: block;
    text-align: right;
    font-size: 11px;
    color: #999;
    margin-top: 5px;
}

.wa-chat-footer {
    padding: 15px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

#waMessageInput {
    flex: 1;
    border: none;
    padding: 12px 15px;
    border-radius: 20px;
    font-size: 14px;
    outline: none;
    background: #FFF;
}

#waSendBtn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #128c7e;
    color: #FFF;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 16px;
    flex-shrink: 0;
}

#waSendBtn:hover {
    background: #075E54;
}

@media (max-width: 768px) {
    .wa-chat-box {
        bottom: 85px;
        right: 15px;
        left: 15px;
        width: auto;
        max-width: 350px;
        z-index: 1000;
    }

    .wa-chat-body {
        max-height: 220px;
    }
}