        /* Global Styles */
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            overflow-x: hidden;
            color: #333333;
            line-height: 1.6;
            background-color: #EEFFFF;
        }

        /* HEADER SECTION STYLES */
        /* Header Styling */
        header {
            position: fixed;
            width: 100%;
            z-index: 1000;
            transition: all 0.5s ease;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
            max-width: 1400px;
            margin: 0 auto;
            transition: all 0.5s ease;
            position: relative;
        }

        /* Initial Logo Styling - Centered and Large */
        .header-container .logo {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1050;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 20px;
        }

        .header-container .logo img {
            height: 350px;
            padding-top: 90px;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        @media screen and (max-width:480px) {
            .header-container .logo img {
                height: 270px;
            }
        }

        /* Navigation */
        nav {
            width: 100%;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            padding: 20px 0;
            transition: all 0.5s ease;
            opacity: 0;
            /* Initially hidden */
        }

        .main-menu {
            display: flex;
            list-style-type: none;
            margin-right: 20px;
        }

        .main-menu li {
            position: relative;
            margin: 0 15px;
        }

        .main-menu li a {
            text-decoration: none;
            color: #fff;
            font-size: 14px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 10px 0;
            display: block;
            transition: all 0.3s ease;
        }


        /* Individual Hover Colors */
        .main-menu li.home:hover {
            background-color: #ccf2f2;
            /* red */
            color: Black;
            border-radius: 10px;
        }

        .main-menu li.marriage:hover {
            background-color: #c20303;
            /* red */
            color: Black;
            border-radius: 10px;
        }

        .main-menu li.pre-wedding:hover {
            background-color: #DFB5CA;
            /* violet */
            color: Black;
            border-radius: 10px;
        }

        .main-menu li.add-ons:hover {
            background-color: #FFDEDE;
            /* green */
            color: Black;
            border-radius: 10px;
        }

        .main-menu li.e-suvidha:hover {
            background-color: #ffc7ae;
            /* orange */
            color: Black;
            border-radius: 10px;
        }

        .main-menu li.m-journey:hover {
            background-color: #E6E6FA;
            /* red */
            color: Black;
            border-radius: 10px;
        }

        .main-menu li.about:hover {
            background-color: #f9e2ac;
            /* yellow */
            color: Black;
            border-radius: 10px;
        }

        .main-menu li.honeymoon:hover {
            background-color: #C2F0F7;
            /* pink */
            color: Black;
            border-radius: 10px;
        }

        /* Active Background Colors */
        .main-menu li.active.marriage {
            background-color: #c20303;
            color: Black;
            border-radius: 10px;
        }

        .main-menu li.active.pre-wedding {
            background-color: #DFB5CA;
            color: Black;
            border-radius: 10px;
        }

        .main-menu li.active.add-ons {
            background-color: #FFDEDE;
            color: Black;
            border-radius: 10px;
        }

        .main-menu li.active.home {
            background-color: #ccf2f2;
            color: Black;
            border-radius: 10px;
        }

        .main-menu li.active.about {
            background-color: #f9e2ac;
            color: Black;
            border-radius: 10px;
        }

        .main-menu li.active.honeymoon {
            background-color: #C2F0F7;
            color: Black;
            border-radius: 10px;
        }

        .main-menu li.active.m-journey {
            background-color: #E6E6FA;
            color: Black;
            border-radius: 10px;
        }

        .main-menu li.active.e-suvidha {
            background-color: #ffc7ae;
            color: Black;
            border-radius: 10px;
        }

        @media screen and (max-width: 1200px) {
            .main-menu li a {
                font-size: 12px;
            }
        }


        /* Scrolled Header State */
        .scrolled-header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .scrolled-header .logo {
            left: 0;
            transform: translateX(0);
        }

        .scrolled-header .logo img {
            height: 110px;
            padding-top: 0;
        }

        .scrolled-header nav {
            opacity: 1;
        }

        .scrolled-header .main-menu li a,
        .scrolled-header .header-icons a {
            color: #000;
        }

        .scrolled-header .main-menu li a:hover,
        .scrolled-header .header-icons a:hover {
            color: #000;
        }


        .scrolled-header .mobile-menu-icon {
            color: #000;
        }

        @media screen and (max-width: 992px) {
            .scrolled-header {
                padding: 20px 0;
            }

            .scrolled-header .logo {
                left: 50%;
                transform: translateX(-50%);
            }

        }

        @media screen and (max-width: 768px) {

            .scrolled-header {
                padding: 12px 0;
            }

            .scrolled-header .logo img {
                height: 90px;
            }
        }

        @media screen and (max-width: 480px) {
            .scrolled-header .logo img {
                height: 80px;
            }

        }

        /* Slider Styling */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .pslider-container {
            position: relative;
            overflow: hidden;
            height: auto;
            background: linear-gradient(90deg, #fce2d6 0%, #e1fcf8 35%, #f7e1f6 65%, #f0f7d9 100%);
            touch-action: pan-y pinch-zoom;
        }

        .pslider-wrapper {
            width: 100%;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .pslider {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            height: 100%;
            will-change: transform;
            touch-action: pan-y;
        }

        .pslider.dragging {
            transition: none;
        }

        .pslide {
            min-width: 100%;
            display: flex;
            flex-direction: row-reverse;
            position: relative;
            width: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            padding: 60px;
            background: linear-gradient(90deg, #fce2d6 0%, #e1fcf8 35%, #f7e1f6 65%, #f0f7d9 100%);
            user-select: none;
        }

        .text-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .text-content h2 {
            line-height: 2.6rem;
        }

        .text-content h3 {
            line-height: 2rem;
            margin-left: 3%;
        }

        .image-content {
            flex: 1;
            overflow: hidden;
        }

        .image-content img {
            width: 100%;
            height: 100%;
            padding-top: 20%;
            padding-bottom: 5%;
            object-fit: contain;
            pointer-events: none;
            user-select: none;
            -webkit-user-drag: none;
        }

        .pslide-title {
            padding: 13px;
            font-size: 2.5rem;
            line-height: 2rem;
            background: linear-gradient(90deg, #3b0352 0%, #6c0694 35%, #c20ec2 65%, #e92fe9 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -moz-background-clip: text;
            color: transparent;
            opacity: 0;
            transform: translateY(30px);
            animation: slideUp 0.8s ease-out 0.2s forwards;
        }

        .pslide-description {
            padding: 15px;
            font-size: 1.2rem;
            line-height: 1.6;
            color: #0e0d0d;
            margin-bottom: 1rem;
            opacity: 0;
            transform: translateY(30px);
            animation: slideUp 0.8s ease-out 0.4s forwards;
        }

        @keyframes slideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .pslider-dots {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            position: absolute;
            bottom: 20px;
            width: 100%;
            z-index: 100;
        }

        .dot {
            height: 12px;
            width: 12px;
            margin: 0 5px;
            background-color: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .dot.active {
            background-color: #fff;
            transform: scale(1.2);
        }

        .dot::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }

        .dot:hover::after {
            width: 20px;
            height: 20px;
        }

        .pslider-arrows {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #333;
            transition: all 0.3s ease;
            z-index: 100;
        }

        .pslider-arrows:hover {
            background: #fff;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .pslider-prev {
            left: 20px;
        }

        .pslider-next {
            right: 20px;
        }

        .pslider-progress {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 4px;
            background: rgba(255, 255, 255, 0.3);
            width: 100%;
            z-index: 100;
        }

        .pslider-progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #0e95c2, #2fdae9);
            width: 0%;
            transition: width 0.1s linear;
        }

        /* Responsive styles */
        @media (max-width: 1200px) {
            .pslide {
                padding-top: 70px;
            }
        }

        @media (max-width: 992px) {
            .pslide {
                padding-top: 100px;
            }

            .text-content {
                padding: 0;
                line-height: 2rem;
            }

            .pslide-title {
                font-size: 30px;
                line-height: 1rem;
            }

            .pslide-description {
                font-size: 20px;
                text-align: center;
            }
        }

        @media (max-width: 768px) {
            .pslide {
                padding: 0;
                display: flex;
                flex-direction: column;
            }

            .text-content,
            .image-content {
                width: 100%;
            }

            .text-content {
                justify-content: flex-start;
                padding: 0;
                order: 2;
            }

            .pslide-title {
                font-size: 1.7rem;
                padding-left: 15px;
                text-align: center;
            }

            .pslide-description {
                font-size: 1.2rem;
                padding: 15px;
                text-align: center;
            }

            .image-content {
                padding-top: 27%;
                height: 400px;
                order: 1;
            }

            .image-content img {
                height: 100%;
                padding-top: 0;
            }

            .pslider-arrows {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .pslider-prev {
                left: 10px;
            }

            .pslider-next {
                right: 10px;
            }
        }

        @media (max-width: 480px) {
            .image-content {
                padding-top: 27%;
                height: 400px;
                order: 1;
            }

            .pslide {
                padding: 0;
            }

            .pslide-title {
                padding: 0;
                padding-left: 15px;
            }

            .pslide-description {
                padding: 15px;
                font-size: 15px;
                text-align: center;
            }

            .pslider-arrows {
                width: 35px;
                height: 35px;
                font-size: 14px;
            }
        }

        /* Hover effects for desktop only */
        @media (hover: hover) {
            .pslide:hover .image-content img {
                transform: scale(1.05);
                transition: transform 0.8s ease;
            }

            .pslide:hover .text-content {
                transform: translateX(-5px);
                transition: transform 0.3s ease;
            }
        }

    :root {
      --rose:      #f2c4ce;
      --blush:     #fde8ec;
      --lavender:  #e8dff5;
      --sage:      #d4e9df;
      --cream:     #fdf7f0;
      --gold:      #fdecea;
      --gold-dark: #fdecea;
      --text-h:    #004474;
      --text-b:    #000000;
      --text-m:    #000000;
      --white:     #ffffff;
      --shadow:    0 2px 16px rgba(100, 70, 50, 0.10);
    }

    /* * { box-sizing: border-box; margin: 0; padding: 0; } */

    /* body {
      font-family: 'DM Sans', sans-serif;
      background: linear-gradient(160deg, #fdf6f0 0%, #f5eef8 50%, #eef6f2 100%);
      min-height: 100vh;
    } */

    /* ─── Section ─── */
    .video-gallery-section {
      padding: 60px 24px 72px;
    }

    /* ─── Header ─── */
    .gal-head {
      text-align: center;
      margin-bottom: 40px;
    }

    .section-title {
    font-size: 2.5rem;
    background: linear-gradient(90deg, #3b0352 0%, #6c0694 35%, #c20ec2 65%, #e92fe9 100%);
    background-clip: border-box;
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    color: transparent;
    margin-bottom: 10px;
    font-weight: 600;
    }

    .section-subtitle {
      margin-top: 8px;
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-m);
    }

    .divider {
      display: flex;
      align-items: center;
      gap: 12px;
      justify-content: center;
      margin: 14px auto 0;
      width: 220px;
    }
    .divider span { flex: 1; height: 1px; background: #f4978e; }
    .divider i {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: #f4978e;
      flex-shrink: 0;
    }

    /* ─── Main Container ─── */
    .container {
      max-width: 1160px;
      margin: 0 auto;
      display: flex;
      gap: 18px;
      background: var(--white);
      border-radius: 22px;
      padding: 20px;
      box-shadow: var(--shadow);
      border: 1px solid #ecddd4;
    }

    /* ─── Thumbnail Strip ─── */
    .videos {
      width: 22%;
      display: flex;
      flex-direction: column;
      gap: 12px;
      max-height: 500px;
      overflow-y: auto;
      padding-right: 6px;
      scroll-behavior: smooth;
    }

    .videos::-webkit-scrollbar { width: 4px; }
    .videos::-webkit-scrollbar-track { background: #fdf0ea; border-radius: 8px; }
    .videos::-webkit-scrollbar-thumb { background: #e0c8c0; border-radius: 8px; }
    .videos::-webkit-scrollbar-thumb:hover { background: var(--gold); }

    /* ─── Thumbnail Card ─── */
    .thumb-item {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      cursor: pointer;
      border: 2px solid transparent;
      transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
      background: #f8f0ec;
      flex-shrink: 0;
    }

    .thumb-item:hover {
      transform: scale(1.04);
      border-color: var(--rose);
      box-shadow: 0 4px 18px rgba(200, 140, 140, 0.18);
    }

    .thumb-item.active {
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.18), 0 4px 18px rgba(160, 120, 80, 0.15);
    }

    .thumb-item video {
      width: 100%;
      height: 92px;
      object-fit: cover;
      display: block;
      pointer-events: none;
    }

    .thumb-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(80,40,20,0.45) 0%, transparent 60%);
      transition: opacity 0.25s;
    }

    .thumb-item:hover .thumb-overlay,
    .thumb-item.active .thumb-overlay { opacity: 0.85; }

    .thumb-number {
      position: absolute;
      top: 7px; left: 9px;
      font-size: 10px; font-weight: 500;
      color: rgba(255,255,255,0.75);
      letter-spacing: 0.06em;
    }

    .thumb-item.active .thumb-number { color: #ffe8b0; }

    .thumb-play-btn {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -54%) scale(0.8);
      width: 34px; height: 34px;
      border-radius: 50%;
      background: rgba(255,255,255,0.22);
      border: 1.5px solid rgba(255,255,255,0.7);
      display: flex; align-items: center; justify-content: center;
      opacity: 0;
      transition: opacity 0.22s, transform 0.22s;
    }

    .thumb-play-btn svg { width: 11px; height: 11px; fill: #fff; margin-left: 2px; }

    .thumb-item:hover .thumb-play-btn {
      opacity: 1;
      transform: translate(-50%, -54%) scale(1);
    }

    .thumb-item.active .thumb-play-btn { opacity: 0; }

    .now-playing-badge {
      position: absolute;
      bottom: 7px; left: 50%;
      transform: translateX(-50%) translateY(5px);
      background: var(--gold); color: #fff;
      font-size: 9px; font-weight: 500;
      letter-spacing: 0.10em; text-transform: uppercase;
      padding: 3px 9px; border-radius: 20px;
      opacity: 0;
      transition: opacity 0.25s, transform 0.25s;
      white-space: nowrap; pointer-events: none;
    }

    .thumb-item.active .now-playing-badge {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }

    /* ─── Main Player ─── */
    .main-video {
      flex: 1;
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      background: #f4ede8;
    }

    .main-video::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, var(--blush), var(--gold), var(--lavender));
      border-radius: 16px 16px 0 0;
      z-index: 2;
    }

    .main-video video {
      width: 100%;
      height: 500px;
      object-fit: cover;
      display: block;
    }

    /* ─── Dot Navigator ─── */
    .counter-bar {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 18px;
    }

    .c-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: #e2d0c8;
      cursor: pointer;
      border: none; padding: 0;
      transition: background 0.25s, transform 0.25s;
    }

    .c-dot.active {
      background: var(--gold);
      transform: scale(1.3);
    }

    /* ─── Responsive ─── */
    @media (max-width: 700px) {
      .container { flex-direction: column; }

      .videos {
        width: 100%;
        flex-direction: row;
        max-height: none;
        overflow-x: auto;
        overflow-y: hidden;
        padding-right: 0;
        padding-bottom: 4px;
      }

      .thumb-item { flex: 0 0 130px; }
      .thumb-item video { height: 82px; }
      .main-video video { height: 240px; }
    }

        /* AI Animation Generator Section */
        .ai-section {
            background-color: #EEFFFF;
            padding: 50px 20px;
        }

        .ai-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 50px;
            background-color: #eae2f7;
            border-radius: 15px;
        }

        .ai-title {
            text-align: center;
            margin-bottom: 40px;
            color: #1e3a5f;
        }

        .ai-title h1 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .grid-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            min-height: 200px;
            display: flex;
            position: relative;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .text-card {
            background-color: white;
            padding: 33px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            width: 100%;
        }

        .image-card {
            background-color: #a1d7f7;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 15px;
            width: 100%;
        }

        .marketing-image img {
            width: 55%;
        }

        .hr-image img {
            width: 55%;
        }

        .startup-image img {
            width: 55%;
        }

        .card h3 {
            color: #1e3a5f;
            font-size: 1.4rem;
            margin-bottom: 10px;
            font-weight: 600;
            text-align: center;
        }

        .card p {
            color: #667085;
            font-size: 1.2rem;
            line-height: 1.5;
            text-align: justify;
        }

        /* Specific card styling */
        .marketing-card {
            background-color: white;
        }

        .marketing-image {
            background-color: #90c4f8;
        }

        .content-card {
            background-color: white;
        }

        .content-image {
            background-color: #dcfbea;
        }

        .hr-card {
            background-color: white;
        }

        .hr-image {
            background-color: #ffdbef;
        }

        .design-card {
            background-color: white;
        }

        .design-image {
            background-color: #FFDAC8;
        }

        .startup-card {
            background-color: white;
        }

        .startup-image {
            background-color: #ffe8b3;
        }

        .card img {
            max-width: 100%;
            max-height: 200px;
            object-fit: contain;
        }

        .image-overlay {
            position: absolute;
            bottom: 40px;
            left: 0;
            right: 0;
            text-align: center;
            color: white;
            font-weight: bold;
            font-size: 14px;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        }


        /* Popup Overlay */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(5px);
            z-index: 1000;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            opacity: 1;
            visibility: visible;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .popup-overlay.hidden {
            opacity: 0;
            visibility: hidden;
        }

        /* Popup Container */
        .popup-container {
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            border: 2px dashed #e1707b;
            overflow: hidden;
            max-width: 1000px;
            width: 100%;
            max-height: 100vh;
            display: flex;
            position: relative;
            transform: scale(1);
            transition: transform 0.3s ease;
        }

        .popup-overlay.hidden .popup-container {
            transform: scale(0.9);
        }

        /* Close Button */
        .close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(255, 255, 255, 0.9);
            border: none;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            font-size: 20px;
            font-weight: bold;
            color: #666;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .close-btn:hover {
            background: #fff;
            color: #333;
            transform: scale(1.1);
        }

        /* Image Section */
        .popup-image {
            flex: 1;
            background: #ffffff;
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .popup-image img {
            width: 80%;
            height: auto;
            max-width: 280px;
            object-fit: contain;
        }

        /* Content Section */
        .popup-content {
            flex: 1;
            padding: 40px 35px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: #ffffff;
            min-height: 400px;
        }

        .popup-content h2 {
            font-size: 28px;
            font-weight: 700;
            color: #000;
            margin-bottom: 20px;
            line-height: 1.3;
            text-align: center;
        }

        .subtitle {
            color: #4d0707;
            font-size: 1rem;
        }

        .discount-text {
            color: #000;
            font-size: 3rem;
            font-weight: 600;
            margin: 15px 0;
            background: linear-gradient(to bottom, #fff1d8, #f4c0c0);
            border-radius: 10px;
            padding: 10px;
        }

        @media (min-width: 768px) {
            .discount-text {
                font-size: 1.3rem;
                text-align: center;
            }

            .subtitle {
                text-align: justify;
                padding: 10px;
            }

            .popup-image {
                min-width: 400px;
            }

            .popup-image img {
                width: 100%;
                height: 100%;
                max-width: 450px;
                margin-left: 30px;
            }
        }

        @media (max-width: 900px) {
            .popup-container {
                width: 100%;
                max-height: 65vh;
                overflow-y: auto;
            }

            .popup-image {
                min-height: 300px;
                flex: none;
            }

            .popup-image img {
                width: 95%;
                max-width: 400px;
                margin-left: 11px;
            }

            .popup-content {
                padding: 30px 25px;
                min-height: auto;
            }

            .popup-content h2 {
                font-size: 22px;
                margin-bottom: 15px;
            }

            .subtitle {
                font-size: 13px;
                margin-bottom: 20px;
            }

            .discount-text {
                font-size: 17px;
                padding: 10px 18px;
                margin-top: 15px;
                text-align: center;
            }
        }

        /* Tablet Styles */
        @media (max-width: 768px) {
            .popup-container {
                flex-direction: column;
                width: 70%;
                max-height: 100vh;
                overflow-y: auto;
            }

            .popup-image {
                min-height: 300px;
                flex: none;
            }

            .popup-image img {
                width: 95%;
                max-width: 400px;
                margin-top: 20px;
                margin-left: 0px;
            }

            .popup-content {
                padding: 30px 25px;
                min-height: auto;
            }

            .popup-content h2 {
                font-size: 24px;
                margin-bottom: 15px;
            }

            .subtitle {
                font-size: 13px;
                margin-bottom: 20px;
            }

            .discount-text {
                font-size: 17px;
                padding: 10px 18px;
                margin-top: 15px;
                text-align: center;
            }
        }

        /* Tablet Styles */
        @media (max-width: 600px) {
            .popup-container {
                flex-direction: column;
                width: 90%;
                max-height: 90vh;
                overflow-y: auto;
            }

            .popup-image {
                min-height: 300px;
                flex: none;
            }

            .popup-image img {
                width: 95%;
                max-width: 376px;
                margin-top: 20px;
                margin-left: 0px;
            }

            .popup-content {
                padding: 30px 25px;
                min-height: auto;
            }

            .popup-content h2 {
                font-size: 24px;
                margin-bottom: 15px;
            }

            .subtitle {
                font-size: 13px;
                margin-bottom: 20px;
            }

            .discount-text {
                font-size: 17px;
                padding: 10px 18px;
                margin-top: 15px;
                text-align: center;
            }
        }

        /* Mobile Styles */
        @media (max-width: 480px) {
            .popup-overlay {
                padding: 15px;
            }

            .popup-container {
                border-radius: 15px;
                max-height: 95vh;
                width: 95%;
            }

            .popup-image {
                min-height: 350px;
            }

            .popup-image img {
                width: 86%;
                max-width: 350px;
                margin-top: 20px;
            }

            .popup-content {
                padding: 20px 20px;
            }

            .popup-content h2 {
                font-size: 20px;
                margin-bottom: 12px;
                line-height: 1.2;
            }

            .subtitle {
                font-size: 12px;
                text-align: justify;
                padding: 10px;
                margin-bottom: 0;
            }

            .discount-text {
                font-size: 15px;
                padding: 8px 2px;
                margin-top: 10px;
                text-align: center;
                margin-bottom: 1px;
            }

            .close-btn {
                top: 10px;
                right: 10px;
                width: 30px;
                height: 30px;
                font-size: 18px;
            }
        }

        /* iOS Specific Fixes */
        @supports (-webkit-touch-callout: none) {
            .popup-overlay {
                -webkit-overflow-scrolling: touch;
            }

            .popup-container {
                -webkit-transform: translateZ(0);
                transform: translateZ(0);
            }
        }

        @media (max-width: 400px) {
            .popup-overlay {
                padding: 15px;
            }

            .popup-container {
                border-radius: 15px;
                max-height: 90vh;
            }

            .popup-image {
                min-height: 300px;
            }

            .popup-image img {
                max-width: 400px;
            }

            .popup-content {
                padding: 15px 20px;
            }

            .popup-content h2 {
                font-size: 15px;
                margin-bottom: 12px;
                line-height: 1.2;
            }

            .subtitle {
                font-size: 10px;
                text-align: justify;
                padding: 10px;
                margin-bottom: 0;
            }

            .discount-text {
                font-size: 12px;
                padding: 8px 2px;
                margin-top: 10px;
                text-align: center;
            }

            .close-btn {
                top: 10px;
                right: 10px;
                width: 30px;
                height: 30px;
                font-size: 18px;
            }
        }

        /* Landscape Mobile */
        @media (max-height: 500px) and (orientation: landscape) {
            .popup-container {
                flex-direction: row;
                max-height: 100vh;
            }

            .popup-image {
                min-height: 300px;
            }

            .popup-content {
                padding: 20px;
                overflow-y: auto;
            }

            .popup-content h2 {
                font-size: 18px;
                margin-bottom: 10px;
            }

            .subtitle {
                font-size: 11px;
                margin-bottom: 15px;
            }

            .discount-text {
                font-size: 11px;
                padding: 6px 12px;
            }
        }



        :root {
            --bg-body: #f4f7f6;
            --text-dark: #333;
            --text-light: #777;
            --border-color: #e0e0e0;

            /* Colors from your image */
            --clr-basic: #fbc02d;
            /* Yellow */
            --clr-standard: #26a69a;
            /* Teal */
            --clr-plus: #ef5350;
            /* Red/Pink */
            --check-green: #4caf50;
            --cross-red: #f44336;
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .about-con {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            margin: 10px;
        }


        /* --- CONTAINER & GRID --- */
        .comparison-card {
            background: white;
            width: 95%;
            max-width: 1160px;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            opacity: 0;
            /* For JS reveal */
            transform: translateY(20px);
        }

        .comparison-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr;
            width: 100%;
        }

        /* --- CELLS --- */
        .cell {
            padding: 18px 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            /* border-bottom: 1px solid var(--border-color); */
            border: 1px solid #efdbff;
            transition: var(--transition);
        }

        .cell:nth-child(4n) {
            border-right: none;
        }

        /* Remove right border on last col */

        /* Feature Labels (Left Column) */
        .label-cell {
            justify-content: flex-start;
            font-weight: 600;
            color: var(--text-dark);
            background-color: #faf7ff;
        }

        .header-main {
            background-color: #eae2f7;
            font-size: 1.1rem;
            font-weight: bold;
            justify-content: center;
            text-transform: uppercase;
        }

        /* --- HEADERS (The Ribbons) --- */
        .header-plan {
            position: relative;
            padding-top: 35px;
            font-size: 1.1rem;
            font-weight: bold;
            justify-content: center;
            background-color: #eae2f7;
            color: #222;
        }

        /* The Ribbon Shape */
        .header-plan::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 35px;
            clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 50% 100%, 0% 70%);
        }

        /* --- STATUS ICONS --- */
        .status-icon {
            font-size: 1.4rem;
            font-weight: bold;
            transition: transform 0.2s ease;
        }

        .check {
            color: var(--check-green);
        }

        .cross {
            color: var(--cross-red);
        }

        /* --- HOVER EFFECTS --- */
        /* .feature-row:hover .cell {
            background-color: #fff9f9;
          
        } */

        .status-icon:hover {
            transform: scale(1.4);
        }

        /* Active Reveal State */
        .visible {
            opacity: 1 !important;
            transform: translateY(0) !important;
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        /* Responsive Cross-Check */
        @media (max-width: 600px) {
            .comparison-grid {
                grid-template-columns: 1fr 1fr 1fr;
                font-size: 0.8rem;
            }

            .cell {
                padding: 10px 5px;
            }

            .header-plan::before {
                height: 25px;
            }
        }

        @media (max-width: 376px) {

            .cell {
                padding: 10px 5px;
            }
            .header-plan{
                font-size: 0.8rem;
            }

            .header-main {
                font-size: 1rem;
            }
 
        }


        /* =========================
            FAQ SECTION STYLES 
        ========================= */
        .faq-section {
            background-color: #eeffff;
            position: relative;
            z-index: 0;
        }

        .faq-heading {
            text-align: center;
            padding-bottom: 30px;
        }

        .faq-heading h1 {
            background: linear-gradient(90deg, #3b0352 0%, #6c0694 35%, #c20ec2 65%, #e92fe9 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -moz-background-clip: text;
            color: transparent;
            font-size: 1.7rem;
        }

        .faq-container {
            padding-left: 20%;
            padding-right: 20%;
            padding-top: 5%;
            padding-bottom: 5%;
        }

        /* Mobile responsive adjustments */
        @media (max-width: 768px) {
            .faq-container {
                padding-left: 10%;
                padding-right: 10%;
                padding-bottom: 120px;
            }
        }

        .faq-items-container {
            position: relative;
            margin-top: 2rem;
            z-index: 1;
        }

        /* FAQ Item Styling - maintaining original design */
        .faq-item {
            --rotate: 0deg;
            background: #ffffff;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            border-radius: 10px;
            margin-bottom: 1.5rem;
            z-index: 1;
        }

        /* Animated border effect for items with glow */
        .faq-item.glow-active {
            border: none;
            background: #ffffff;
        }

        .faq-item.glow-active::before {
            content: "";
            width: 100%;
            height: 100%;
            border-radius: 12px;
            background: linear-gradient(45deg, #ff4545, #00ff99, #006aff, #ff0095);
            filter: blur(1.5rem);
            position: absolute;
            z-index: 0;
            top: 0;
            left: 0;
            animation: spin 2.5s linear infinite, pulse 3s ease-in-out infinite;
            padding: 3px;
        }

        /* Enhanced glow shadow effect with motion */
        .faq-item.glow-active::after {
            position: absolute;
            content: "";
            top: 15px;
            left: 15px;
            right: 15px;
            bottom: 15px;
            z-index: -1;
            border-radius: 8px;
            filter: blur(15px);
            background-image: linear-gradient(var(--rotate),
                    #5ddcff, #3c67e3 43%, #4e00c2);
            opacity: 0.7;
            animation: spin 2.5s linear infinite, glow-pulse 2s ease-in-out infinite alternate;
        }

        @keyframes spin {
            0% {
                --rotate: 0deg;
            }

            100% {
                --rotate: 360deg;
            }
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.02);
            }
        }

        @keyframes glow-pulse {
            0% {
                opacity: 0.4;
                filter: blur(8px);
            }

            100% {
                opacity: 0.8;
                filter: blur(16px);
            }
        }

        .faq-content {
            position: relative;
            z-index: 1;
            background: #ffffff;
            border-radius: 8px;
            margin: 0;
        }

        .faq-item.glow-active .faq-content {
            background: #ffffff;
            border-radius: 8px;
        }

        .faq-question {
            padding: 1.25rem;
            cursor: pointer;
            font-weight: 500;
            font-size: 1.05rem;
            display: flex;
            color: #000;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            color: black;
            padding: 0 1.25rem;
            line-height: 1.6;
            transition: max-height 0.4s ease, padding 0.3s ease;
        }

        .faq-item.active .faq-answer {
            opacity: 1;
            max-height: 400px;
            padding-top: 15px;
            padding-bottom: 15px;
        }

        .faq-question .icon {
            width: 24px;
            height: 24px;
            position: relative;
        }

        .faq-question .icon::before,
        .faq-question .icon::after {
            content: '';
            position: absolute;
            background-color: rgb(1, 8, 29);
            transition: transform 0.3s ease;
        }

        .faq-question .icon::before {
            width: 100%;
            height: 2px;
            top: 50%;
            transform: translateY(-50%);
        }

        .faq-question .icon::after {
            width: 2px;
            height: 100%;
            left: 50%;
            transform: translateX(-50%);
        }

        .faq-item.active .faq-question .icon::after {
            transform: translateX(-50%) rotate(90deg);
        }

        @media screen and (max-width: 480px) {
            .faq-question {
                font-size: 15px;
                padding: 0.75rem 1.25rem;
            }

            .faq-answer {
                font-size: 15px;
                text-align: justify;
                margin-bottom: 15px;
            }

            .faq-item.active .faq-answer {
                opacity: 1;
                max-height: 450px;
                padding-bottom: 15px;
            }

            .faq-question .icon {
                width: 20px;
                height: 15px;
            }

            .faq-content {
                width: 100%;
            }

            .faq-container {
                padding-left: 10%;
                padding-right: 10%;
                padding-top: 90px;
                padding-bottom: 120px;
            }
        }

        /* Scroll-top button */
        .scroll-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background-color: #f4978e;
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            opacity: 0.7;
            transition: all 0.3s ease;
            text-decoration: none;
            z-index: 999;
        }

        .scroll-top:hover {
            opacity: 1;
            transform: translateY(-3px);
        }


        /* FOOTER SECTION STYLES */
        .footer-container {
            position: relative;
            width: 100%;
            background-image: url('./home-images/footer.png');
            background-size: cover;
            background-position: center;
            margin-top: auto;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            padding-top: 120px;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            padding: 40px 5%;
            gap: 30px;
            width: 100%;
        }

        .footer-section {
            flex: 1;
        }

        .footer-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 20px;
            color: #333;
        }

        .footer-links a {
            display: block;
            text-decoration: none;
            color: #555;
            margin-bottom: 10px;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #000;
        }

        .footer-section .logo {
            margin-top: 15px;
            max-width: 130px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        .social-icon {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .social-icon:hover {
            transform: translateY(-3px);
        }

        .social-icon.dark {
            background-color: #333;
        }

        .social-icon.orange {
            background-color: #ff9900;
        }

        .social-icon.red {
            background-color: #e74c3c;
        }

        .contact-form input,
        .contact-form button {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
        }

        .contact-form button {
            background-color: #333;
            color: white;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .contact-form button:hover {
            background-color: #555;
        }

        .footer-bottom {
            text-align: center;
            padding: 15px 65px;
            font-size: 14px;
            color: #666;
        }

        /* RESPONSIVE STYLES */

        /* Tablet Styles */
        @media screen and (max-width: 992px) {
            .main-menu {
                display: none;
            }

            .mobile-menu-icon {
                display: block;
                margin-left: 20px;
            }

            .header-icons a {
                margin-left: 15px;
            }

            .scrolled-header {
                padding: 20px 0;
            }

            .scrolled-header .logo {
                left: 50%;
                transform: translateX(-50%);
            }

            .steps-container {
                grid-template-columns: repeat(2, 1fr);
            }

            .card {
                min-height: 180px;
            }

        }

        /* Mobile Styles */
        @media screen and (max-width: 768px) {

            .hero-slider-container {
                display: flex;
                flex-direction: column;
            }

            .header-container .logo img {
                height: 300px;
            }

            .scrolled-header {
                padding: 12px 0;
            }

            .scrolled-header .logo img {
                height: 90px;
            }

            .footer-content {
                padding: 30px 5%;
                gap: 0;
            }

            .footer-section {
                width: 100%;
                margin-bottom: 30px;
            }

            .footer-section-left {
                margin-left: 60px;
            }

            .footer-container {
                padding: 40px 0;
            }

            .steps-container {
                grid-template-columns: 1fr;
            }

            .about-us-heading h2 {
                font-size: 2rem;
            }

            .faq-heading h1 {
                font-size: 2rem;
            }

            .faq-container {
                padding-left: 10%;
                padding-right: 10%;
                padding-bottom: 120px;
            }

            .grid-container {
                grid-template-columns: 1fr;
            }

            .card {
                min-height: 160px;
            }

            .ai-title h1 {
                font-size: 28px;
            }

            .card img {
                max-height: 150px;
            }

        }

        /* Small Mobile Styles */
        @media screen and (max-width: 480px) {
            .header-container .logo img {
                height: 270px;
            }

            .text-content {
                justify-content: flex-start;
                padding: 15px;
                order: 2;
                text-align: center;
            }

            .text-content h2 {
                line-height: 2.5rem;
                font-size: 25px;
            }

            .text-content p {
                font-size: 15px;
                text-align: match-parent;
                line-height: 1.8rem;
            }

            .text-content h3 {
                line-height: 1.9rem;
                font-size: 17px;
            }

            .scrolled-header .logo img {
                height: 80px;
            }

            .slide-content h2 {
                font-size: 24px;
            }

            .faq-heading h1,
            .ai-title h1 {
                font-size: 1.7rem;
            }

            .icon-container {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .card {
                min-height: 140px;
            }

            .text-card {
                padding: 15px;
            }

            .card h3 {
                font-size: 16px;
            }

            .card p {
                font-size: 14px;
            }

            .card img {
                max-height: 120px;
            }

            .hero-slider-container {
                display: flex;
                flex-direction: column;
            }

            .footer-section .logo {
                margin-top: 15px;
                max-width: 90px;
            }

            .footer-content {
                padding: 0 5%;
                gap: 0;
            }


        }

        /* Large Screen Styles */
        @media screen and (min-width: 1200px) {
            .footer-content {
                width: 80%;
                margin: 0 auto;
                max-width: 1400px;
            }
        }

        .navigation {
            display: none;
            /* Hidden by default */
        }


        /*Media query for mobile bottom bar*/
        @media screen and (max-width: 992px) {
            .navigation {
                position: fixed;
                bottom: 2px;
                height: 80px;
                width: 100%;
                max-width: 100%;
                background: white;
                padding: 5px 0;
                border-radius: 15px;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                z-index: 1000;
                display: flex;
                justify-content: center;
            }

            .navigation ul {
                display: flex;
                justify-content: space-around;
                width: 100%;
                position: relative;
            }

            .navigation ul li {
                list-style: none;
                width: 100%;
                height: 60px;
                position: relative;
                z-index: 1;
            }

            .navigation ul li a {
                text-align: center;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                color: #222327;
                text-decoration: none;
            }

            .navigation ul li .icon {
                font-size: 1.5em;
                transition: 0.5s;
            }

            .navigation ul li .text {
                font-size: 0.9em;
                opacity: 0;
                transform: translateY(10px);
                transition: 0.3s;
            }

            .navigation ul li.active .text {
                opacity: 1;
                transform: translateY(0px);
            }

            .navigation ul li.active .icon {
                transform: translateY(-18px);
                color: #000;
            }

            .indicator {
                position: absolute;
                top: -1.5em;
                width: 3em;
                height: 3em;
                border-radius: 50%;
                border: 0.4em solid #fff;
                transition: left 0.3s ease, transform 0.3s ease;
                z-index: 0;
                transform: translateX(-50%);
            }

            .indicator::before,
            .indicator::after {
                content: '';
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                width: 20px;
                height: 20px;
                background: transparent;
                z-index: 0;
            }

            .navigation ul li:nth-child(1).active~.indicator {
                left: 6.25%;
                background-color: #ccf2f2;
            }

            .navigation ul li:nth-child(2).active~.indicator {
                left: 18.75%;
                background-color: #c20303;
            }

            .navigation ul li:nth-child(3).active~.indicator {
                left: 31.25%;
                background-color: #DFB5CA;
            }

            .navigation ul li:nth-child(4).active~.indicator {
                left: 43.75%;
                background-color: #C2F0F7;
            }

            .navigation ul li:nth-child(5).active~.indicator {
                left: 56.25%;
                background-color: #ffc7ae;
            }

            .navigation ul li:nth-child(6).active~.indicator {
                left: 68.75%;
                background-color: #E6E6FA;
            }

            .navigation ul li:nth-child(7).active~.indicator {
                left: 81.25%;
                background-color: #FFDEDE;
            }

            .navigation ul li:nth-child(8).active~.indicator {
                left: 93.75%;
                background-color: #f9e2ac;
            }


        }


        @media screen and (max-width: 480px) {
            .navigation {
                position: fixed;
                bottom: 2px;
                left: 50%;
                transform: translateX(-50%);
                height: 80px;
                width: 100%;
                max-width: 100%;
                background: white;
                padding: 5px 0;
                border-radius: 15px;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                z-index: 1000;
                display: flex;
                justify-content: center;
            }

            .navigation ul {
                display: flex;
                justify-content: space-around;
                width: 100%;
                position: relative;
            }

            .navigation ul li {
                list-style: none;
                width: 0%;
                height: 60px;
                position: relative;
                z-index: 1;
            }

            .navigation ul li a {
                text-align: center;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                color: #222327;
                text-decoration: none;
            }

            .navigation ul li .icon {
                font-size: 1.5em;
                transition: 0.5s;
            }

            .navigation ul li .text {
                font-size: 0.9em;
                opacity: 0;
                transform: translateY(10px);
                transition: 0.3s;
            }

            .navigation ul li.active .text {
                opacity: 1;
                transform: translateY(0px);
                width: 127px;
                margin-left: 12px;
            }

            .navigation ul li.active .icon {
                transform: translateY(-18px);
                color: #000;
            }

            .indicator {
                position: absolute;
                top: -1.5em;
                width: 3em;
                height: 3em;
                border-radius: 50%;
                border: 0.4em solid #fff;
                transition: left 0.3s ease, transform 0.3s ease;
                z-index: 0;
                transform: translateX(-50%);
            }

            .indicator::before,
            .indicator::after {
                content: '';
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                width: 20px;
                height: 20px;
                background: transparent;
                z-index: 0;
            }

            .navigation ul li:nth-child(1).active~.indicator {
                left: 6.25%;
                background-color: #ccf2f2;
            }

            .navigation ul li:nth-child(2).active~.indicator {
                left: 18.75%;
                background-color: #c20303;
            }

            .navigation ul li:nth-child(3).active~.indicator {
                left: 31.25%;
                background-color: #DFB5CA;
            }

            .navigation ul li:nth-child(4).active~.indicator {
                left: 43.75%;
                background-color: #C2F0F7;
            }

            .navigation ul li:nth-child(5).active~.indicator {
                left: 56.25%;
                background-color: #ffc7ae;
            }

            .navigation ul li:nth-child(6).active~.indicator {
                left: 68.75%;
                background-color: #E6E6FA;
            }

            .navigation ul li:nth-child(7).active~.indicator {
                left: 81.25%;
                background-color: #FFDEDE;
            }

            .navigation ul li:nth-child(8).active~.indicator {
                left: 93.75%;
                background-color: #f9e2ac;
            }

        }



        /* Media query for mobile footer */
        @media screen and (max-width: 992px) {
            .footer-container {
                background-size: contain !important;
                background-repeat: no-repeat !important;
                background-position: center bottom !important;
                padding-bottom: 30px;
                /* Add some bottom padding if needed */
                min-height: 67vh;
                bottom: 80px;
            }
        }


        @media (max-width: 992px) {

            .text-content {
                padding: 0;
                line-height: 2rem;
            }

        }

        @media (max-width: 768px) {

            .text-content,
            .image-content {
                width: 100%;

            }

            .text-content {
                justify-content: flex-start;
                padding: 20px 10px 50px 10px;
                order: 2;
                /* Ensure text appears after image */
                text-align: center;
            }

            .image-content {
                padding-top: 27%;
                height: 400px;
                order: 1;
                /* Ensure image appears before text */
            }

            .image-content img {
                height: 100%;
                padding-top: 0;
            }
        }

        @media (max-width: 480px) {

            .image-content {
                padding: 27% 20px 0 20px;
                height: 400px;
                order: 1;
                /* Ensure image appears before text */
            }

        }


        /*Toll Free Number*/
        .toll-section {
            margin: auto 0;
            padding-bottom: 4%;
        }

        .special-container {
            max-width: 1200px;
            margin: 0 auto;
            margin-top: 0px;
            padding: 40px 20px;
            border-radius: 20px;
            position: relative;
            overflow: hidden;
            background-color: #fdecea;
            margin-top: 5%;
        }

        .special-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
            opacity: 0.3;
            pointer-events: none;
        }

        .main-heading {
            text-align: center;
            /*opacity: 0;*/
            /*transform: translateY(-30px);*/
            /*animation: slideInFromTop 1s ease-out 0.5s forwards;*/
        }

        .main-heading h1 {
            font-size: 2.5rem;
            background: linear-gradient(90deg, #3b0352 0%, #6c0694 35%, #c20ec2 65%, #e92fe9 100%);
            background-clip: border-box;
            background-clip: text;
            -webkit-background-clip: text;
            -moz-background-clip: text;
            color: transparent;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .main-heading h2 {
            font-size: 2.5rem;
            color: #1e3a5f;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .main-heading .subtitle {
            font-size: 1rem;
            color: rgb(17 53 67);
            padding: 5px;
            text-align: center;
            margin-left: 100px;
            margin-right: 100px;
        }


        .toll-free h1 {
            font-size: 2.5rem;
        }

        .toll-free p {
            margin: 20px 0;
            font-size: 1.2rem;
        }

        .toll-free a {
            display: inline-block;
            margin-top: 10px;
            /* background: #ff9688; */
            background: linear-gradient(90deg, #ffaeae 0%, #ffbfbf 35%, #f7a3a3 65%, #f5abab 100%);
            color: white;
            padding: 12px 20px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: bold;

        }

        .call-btn {
            display: inline-block;
            margin-top: 10px;
            background: linear-gradient(90deg, #d774d0 0%, #c559ef 35%, #bf0dbf 65%, #dd5cdd 100%);
            color: white;
            padding: 12px 20px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            position: relative;
            animation: ring 3s infinite;
        }


        /*Floating Call Button*/
        .call-floating {
            display: flex;
            justify-content: center;
            align-items: center;
            position: fixed;
            bottom: 75px;
            right: 10px;
            background: #F27B21;
            color: white;
            padding: 15px;
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            animation: pulse 2s infinite;
        }

        .call-floating span {
            display: none;
            position: absolute;
            right: 70px;
            bottom: 0px;
            background: #F27B21;
            padding: 10px 15px;
            border-radius: 6px;
            font-size: 25px;
            font-weight: 600;
            white-space: nowrap;
        }

        .call-floating:hover span {
            display: inline-block;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }

            100% {
                transform: scale(1);
            }
        }


        /* Vibrating / ringing animation */
        @keyframes ring {
            0% {
                transform: rotate(0);
            }

            10% {
                transform: rotate(3deg);
            }

            20% {
                transform: rotate(-3deg);
            }

            30% {
                transform: rotate(3deg);
            }

            40% {
                transform: rotate(-3deg);
            }

            50% {
                transform: rotate(3deg);
            }

            60% {
                transform: rotate(-3deg);
            }

            70%,
            100% {
                transform: rotate(0);
            }
        }

        @media (max-width: 992px) {
            .main-heading h1 {
                font-size: 1.9rem;
            }

            .main-heading .subtitle {
                font-size: 0.8rem;
                text-align: center;
                margin-left: 65px;
                margin-right: 67px;
                margin-bottom: 0;
            }
        }

        @media (max-width: 768px) {
            .main-heading h1 {
                font-size: 2.5rem;
            }

            .main-heading .subtitle {
                font-size: 1.4rem;
            }
        }

        @media (max-width: 480px) {
            .toll-section {
                padding: 0px 20px;
                padding-bottom: 13%;
            }

            .main-heading h1 {
                font-size: 27px;
            }

            .main-heading h2 {
                font-size: 1.8rem;
            }

            .main-heading .subtitle {
                font-size: 0.95rem;
                margin-left: 0;
                margin-right: 0;
            }


            .call-floating {
                bottom: 100px;
            }
        }

        @media (max-width: 400px) {
            .main-heading h1 {
                font-size: 1.4rem;
            }

            .main-heading .subtitle {
                font-size: 0.85rem;
                margin-left: 0;
                margin-right: 0;
            }
        }