 :root {
            --primary: #fe0706;
            --secondary: #1e3a8a;
            --gray: #6c757d;
            --fh700: 700;
            --fh900: 900;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            overflow-x: hidden;
            background-color: #f9f9f9;
        }

        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section */
        .hero {
            padding: 120px 0 80px;
            background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
            min-height: 100vh;
            display: flex;
            position: relative;
            overflow: hidden;
        }

        .hero-container {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 40px;
            position: relative;
            z-index: 1;
            margin: 2rem auto 0 auto !important;
        }

        .hero-content {
            flex: 1;
            max-width: 700px;
            position: relative;
            z-index: 2;
        }

        .hero-image {
            flex: 1;
            position: relative;
            display: flex;
            justify-content: flex-end;
            padding-bottom: 50px;
        }

        /* Floating Elements */
        .floating-elements {
            position: absolute;
            top: -50px;
            left: -100px;
            width: 200px;
            height: 200px;
            opacity: 0.1;
            z-index: 1;
        }

        .floating-circle {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            animation: float 6s ease-in-out infinite;
        }

        .floating-circle:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 0;
            left: 0;
            animation-delay: 0s;
        }

        .floating-circle:nth-child(2) {
            width: 120px;
            height: 120px;
            top: 100px;
            left: 150px;
            animation-delay: 2s;
        }

        .floating-circle:nth-child(3) {
            width: 60px;
            height: 60px;
            top: 200px;
            left: 50px;
            animation-delay: 4s;
        }

        /* Main Heading */
        .main-heading {
            font-size: 72px;
            font-weight: var(--fh900);
            color: var(--secondary);
            margin-bottom: 24px;
            line-height: 1;
            letter-spacing: -2px;
            position: relative;
            background: linear-gradient(135deg, var(--secondary) 0%, #3b82f6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .main-heading::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), transparent);
            border-radius: 2px;
        }

        /* Description */
        .description-wrapper {
            margin-bottom: 20px;
            position: relative;
        }

        .description {
            font-size: 22px;
            font-weight: 400;
            color: var(--gray);
            margin-bottom: 16px;
            line-height: 1.6;
            opacity: 0;
            animation: slideInUp 1s ease-out 0.3s forwards;
        }

        .tagline {
            font-size: 20px;
            font-weight: var(--fh700);
            background: linear-gradient(135deg, #212529 0%, var(--primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 48px;
            position: relative;
            padding-left: 24px;
            opacity: 0;
            animation: slideInUp 1s ease-out 0.5s forwards;
        }

        .tagline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 16px;
            height: 16px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            box-shadow: 0 0 20px rgba(254, 7, 6, 0.5);
        }

        /* CTA Section */
        .cta-section {
            position: relative;
            opacity: 0;
            animation: slideInUp 1s ease-out 0.7s forwards;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            align-items: center;
            flex-wrap: wrap;
            margin-bottom: 32px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 18px 36px;
            border-radius: 16px;
            font-weight: var(--fh700);
            font-size: 16px;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            white-space: nowrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary) 0%, #d63031 100%);
            color: white;
            box-shadow: 0 12px 40px rgba(254, 7, 6, 0.3);
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.6s;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 20px 60px rgba(254, 7, 6, 0.4);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.9);
            color: var(--secondary);
            border: 2px solid rgba(30, 58, 138, 0.2);
            backdrop-filter: blur(20px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .btn-secondary:hover {
            background: white;
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        }

        /* Pricing Div */
        .pricing-div {
            /* background: rgba(255, 255, 255, 0.8); */
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 20px;
            /* padding: 24px; */
            display: inline-flex;
            align-items: center;
            gap: 16px;
            /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1); */
            position: relative;
            overflow: hidden;
        }

        /* Reveal Container */
        .reveal-container {
            position: relative;
            width: 600px;
            height: 500px;
            border-radius: 20px;
            overflow: hidden;
        }

        .image-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .image-after {
            z-index: 1;
        }

        .reveal-mask {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 3;
        }

        .reveal-mask .image {
            clip-path: inset(0 50% 0 0);
            transition: clip-path 0s ease-out;
        }

        .slider-handle {
            position: absolute;
            top: 0;
            left: 50%;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, var(--primary), var(--secondary));
            cursor: ew-resize;
            z-index: 4;
            transform: translateX(-50%);
            box-shadow: 0 0 20px var(--secondary);
        }

        .slider-handle::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 40px;
            height: 40px;
            background: radial-gradient(circle, var(--primary), var(--secondary));
            border-radius: 50%;
            box-shadow: 0 0 30px var(--secondary);
            animation: slider-pulse 2s infinite;
        }

        .slider-handle::after {
            content: '⟷';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 24px;
            color: white;
            font-weight: bold;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .slide-in-right.active {
            opacity: 1;
            transform: translateX(0);
        }

        /* Animations */
        @keyframes float {
            0%, 100% { 
                transform: translateY(0px) rotate(0deg); 
            }
            50% { 
                transform: translateY(-20px) rotate(180deg); 
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slider-pulse {
            0%, 100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0.8;
            }
            50% {
                transform: translate(-50%, -50%) scale(1.2);
                opacity: 0.4;
            }
        }


        

     /* 27-inch screens and larger (2560px+) */
@media screen and (min-width: 2560px) {
    .hero-container, .about_container, .whyUs-container{
        /* padding: 0 4rem; */
        max-width: 1280px;
        margin: 0 auto;
    }
/*     
    .main-heading {
        font-size: 84px;
        line-height: 1.1;
    }
    
    .reveal-container {
        width: 800px;
        max-width:1280px;
        height: 600px;
    }
    
    .cta-buttons {
        gap: 2rem;
    }
    
    .cta-buttons .btn {
        padding: 18px 36px;
        font-size: 18px;
    } */
}

/* Large desktops (1920px - 2559px) */
@media screen and (min-width: 1920px) and (max-width: 2559px) {
    .hero-container, .about_container, .whyUs-container {
        /* padding: 0 3rem; */
        max-width: 1280px;
        margin: 0 auto;
    }
/*     
    .main-heading {
        font-size: 76px;
        line-height: 1.1;
    }
    
    .reveal-container {
        width: 700px;
        max-width: 700px;
        height: 525px;
    }
    
    .cta-buttons {
        gap: 1.5rem;
    }
    
    .cta-buttons .btn {
        padding: 16px 32px;
        font-size: 17px;
    } */
}

/* Standard desktops (1200px - 1919px) */
@media screen and (min-width: 1200px) and (max-width: 1919px) {
    .hero-container, .about_container, .whyUs-container {
        max-width: 1280px;
        margin: 0 auto;
        /* padding: 0 2rem; */
    }
    
    /* .main-heading {
        font-size: 68px;
        line-height: 1.2;
    }
    
    .reveal-container {
        width: 600px;
        max-width: 600px;
        height: 450px;
    }
    
    .cta-buttons {
        gap: 1.25rem;
    } */
}

/* Small desktops/laptops (992px - 1199px) */
@media screen and (min-width: 992px) and (max-width: 1199px) {
    .hero-container, .about_container, .whyUs-container {
        padding: 0 1.5rem;
        max-width: 1280px;
        margin: 0 auto;
    }
    
    /* .main-heading {
        font-size: 60px;
        line-height: 1.2;
    }
    
    .reveal-container {
        width: 550px;
        max-width: 550px;
        height: 400px;
    }
    
    .cta-buttons {
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        padding: 12px 24px;
        font-size: 15px;
    } */
}

/* Tablets (768px - 991px) */
@media screen and (min-width: 768px) and (max-width: 991px) {
    .hero-container, .about_container, .whyUs-container {
        flex-direction: column;
        text-align: center;
        padding: 0 1rem;
        gap: 2rem;
    }

    .hero{
            padding: 80px 0 80px;
    }
    
    .main-heading {
        font-size: 52px;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .reveal-container {
        width: 500px;
        max-width: 90%;
        height: 350px;
        margin: 0 auto;
    }
    
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .cta-buttons .btn {
        padding: 12px 20px;
        font-size: 14px;
        min-width: 140px;
    }
}

/* Mobile landscape and small tablets (576px - 767px) */
@media screen and (min-width: 576px) and (max-width: 767px) {
    .hero-container, .about_container, .whyUs-container {
        flex-direction: column;
        text-align: center;
        padding: 0 1rem;
        gap: 1.5rem;
    }

    .about-title-line {
        font-size: 32px !important;
    }

    .unified-grid {
    display: grid
;
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 30px;
}

     .hero{
            padding: 80px 0 80px;
    }
    
    .main-heading {
        font-size: 44px;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .reveal-container {
        width: 450px;
        max-width: 95%;
        height: 300px;
        margin: 0 auto;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .cta-buttons .btn {
        padding: 14px 20px;
        font-size: 15px;
        width: 100%;
    }
}

/* Mobile portrait (up to 575px) */
@media screen and (max-width: 575px) {
    .hero-container, .about_container, .whyUs-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 0 1rem;
        gap: 1rem;
    }

      .about-title-line {
        font-size: 32px !important;
    }

    .unified-grid {
    display: grid
;
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 30px;
}

    
    .main-heading {
        font-size: 36px;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }
    
 .hero{
            padding: 50px 0 80px;
    }

    .reveal-container {
        width: 320px;
        max-width: 100%;
        height: 240px;
        margin: 0 auto;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .cta-buttons .btn {
        padding: 12px 16px;
        font-size: 14px;
        width: 100%;
    }
}

/* Extra small devices (up to 375px) */
@media screen and (max-width: 375px) {
    .hero-container, .about_container, .whyUs-container {
        padding: 0 0.75rem;
        gap: 0.75rem;
        align-items: center;
    }
    
    .main-heading {
        font-size: 32px;
        line-height: 1.4;
    }
     .hero{
            padding: 50px 0 80px;
    }

      .about-title-line {
        font-size: 32px !important;
    }

    .unified-grid {
    display: grid
;
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 30px;
}

    
    .reveal-container {
        width: 280px;
        max-width: 100%;
        height: 210px;
    }
    
    .cta-buttons {
        max-width: 250px;
        gap: 0.5rem;
    }
    
    .cta-buttons .btn {
        padding: 10px 14px;
        font-size: 13px;
    }
}

/* Very small devices (up to 320px) */
@media screen and (max-width: 320px) {
    .hero-container, .about_container, .whyUs-container {
        padding: 0 0.5rem;
        align-items: center;
    }
    
    .main-heading {
        font-size: 28px;
        line-height: 1.4;
    }

      .about-title-line {
        font-size: 32px !important;
    }

    .unified-grid {
    display: grid
;
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 30px;
}


     .hero{
            padding: 50px 0 80px;
    }
    
    .reveal-container {
        width: 250px;
        max-width: 100%;
        height: 180px;
    }
    
    .cta-buttons {
        max-width: 220px;
    }
    
    .cta-buttons .btn {
        padding: 10px 12px;
        font-size: 12px;
    }
}

/* Landscape orientation for mobile devices */
@media screen and (max-width: 991px) and (orientation: landscape) {
    .hero-container, .about_container, .whyUs-container {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 2rem;
    }

      .about-title-line {
        font-size: 32px !important;
    }

    .unified-grid {
    display: grid
;
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 30px;
}

    
    .main-heading {
        font-size: 32px;
    }

     .hero{
            padding: 50px 0 80px;
    }
    
    .reveal-container {
        width: 300px;
        height: 200px;
        flex-shrink: 0;
    }
    
    .cta-buttons {
        flex-direction: row;
        gap: 0.75rem;
    }
    
    .cta-buttons .btn {
        padding: 8px 16px;
        font-size: 13px;
        min-width: auto;
    }
}

/* High DPI screens adjustments */
@media screen and (-webkit-min-device-pixel-ratio: 2), 
       screen and (min-resolution: 192dpi) {
    .reveal-container {
        border: 2px solid #ddd; /* Sharper borders on high DPI */
    }
    
    .cta-buttons .btn {
        border-width: 2px;
    }
}

/* Print styles */
@media print {
    .hero-container, .about_container, .whyUs-container {
        flex-direction: column;
        text-align: center;
        color: black;
    }
/*     
    .main-heading {
        font-size: 36px;
        color: black;
    }
    
    .cta-buttons {
        display: none;
    }
    
    .reveal-container {
        border: 2px solid black;
        width: 400px;
        height: 300px;
    } */
}

        
         .dots-pattern {
            position: absolute;
            top: -20px;
            left: -20px;
            width: 150px;
            height: 60px;
            opacity: 0.1;
            pointer-events: none;
        }

        .dot-element {
            fill: #4A5568;
            animation: dotPulse 4s ease-in-out infinite;
        }

        .dot-element:nth-child(odd) {
            animation-delay: 0.5s;
        }

        @keyframes dotPulse {
            0%, 100% {
                opacity: 0.1;
            }
            50% {
                opacity: 0.3;
            }
        }

        /* Text Content */
        .price-content {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 16px;
            color: #6B7280;
            font-weight: 400;
        }

        .price-starts {
            opacity: 0;
            animation: slideIn 0.6s ease-out 0.2s forwards;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .price-highlight {
            position: relative;
            display: inline-flex;
            align-items: baseline;
            margin: 0 4px;
        }

        .rupee-symbol {
            font-size: 24px;
            color: #EF4444;
            font-weight: var(--fh700);
            opacity: 0;
            animation: fadeIn 0.5s ease-out 0.5s forwards;
        }

        .price-number {
            font-size: 32px;
            font-weight: var(--fh700);
            color: #EF4444;
            opacity: 0;
            animation: popUp 0.6s ease-out 0.6s forwards;
            position: relative;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        @keyframes popUp {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .price-period {
            opacity: 0;
            animation: slideIn 0.6s ease-out 0.8s forwards;
        }

        /* SVG Underline */
        .underline-svg {
            position: absolute;
            bottom: -8px;
            left: -5px;
            width: 110%;
            height: 20px;
            opacity: 0;
            animation: drawUnderline 0.8s ease-out 1s forwards;
        }

        .underline-path {
            stroke: #EF4444;
            stroke-width: 2;
            fill: none;
            stroke-dasharray: 100;
            stroke-dashoffset: 100;
            animation: dash 0.8s ease-out 1s forwards;
            opacity: 0.5;
        }

        @keyframes drawUnderline {
            to {
                opacity: 1;
            }
        }

        @keyframes dash {
            to {
                stroke-dashoffset: 0;
            }
        }

        /* Accent circle */
        .accent-circle {
            position: absolute;
            right: -40px;
            top: 50%;
            transform: translateY(-50%);
            width: 30px;
            height: 30px;
            opacity: 0;
            animation: circleIn 0.6s ease-out 1.2s forwards;
        }

        .circle-path {
            fill: none;
            stroke: #EF4444;
            stroke-width: 2;
            opacity: 0.3;
            stroke-dasharray: 94;
            stroke-dashoffset: 94;
            animation: circleGrow 1s ease-out 1.2s forwards;
        }

        @keyframes circleIn {
            to {
                opacity: 1;
            }
        }

        @keyframes circleGrow {
            to {
                stroke-dashoffset: 0;
            }
        }

        /* Hover Effects - Price stays visible */
        .pricing-div:hover .price-number {
            /* animation: gentlePulse 2s ease-in-out infinite; */
        }

        @keyframes gentlePulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        .pricing-div:hover .underline-path {
            animation: wavyLine 2s ease-in-out infinite;
        }

        @keyframes wavyLine {
            0%, 100% {
                d: path("M5,10 Q50,5 95,10");
            }
            50% {
                d: path("M5,10 Q50,15 95,10");
            }
        }

        /* Small floating dots on hover */
        .hover-dots {
            position: absolute;
            top: -10px;
            right: 0;
            width: 60px;
            height: 60px;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .pricing-div:hover .hover-dots {
            opacity: 1;
        }

        .hover-dot {
            fill: #EF4444;
            opacity: 0.2;
            animation: float 3s ease-in-out infinite;
        }

        .hover-dot:nth-child(2) {
            animation-delay: 1s;
        }

        .hover-dot:nth-child(3) {
            animation-delay: 2s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        .gradient-line {
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #EF4444, #F87171);
            opacity: 0.5;
            animation: expandLine 1s ease-out 1.4s forwards;
        }

        @keyframes expandLine {
            to {
                width: 100%;
            }
        }

             .minimal-lines {
            position: absolute;
            inset: 0;
            opacity: 0.06;
        }
        
        .minimal-lines::before,
        .minimal-lines::after {
            content: '';
            position: absolute;
            background: linear-gradient(90deg, #667eea);
        }
        
        .minimal-lines::before {
            width: 100%;
            height: 1px;
            top: 30%;
            animation: scan 8s infinite;
        }
        
        .minimal-lines::after {
            width: 1px;
            height: 100%;
            left: 30%;
            background: linear-gradient(0deg, #764ba2);
            animation: scan-vertical 8s infinite;
        }
        
        @keyframes scan {
            0%, 100% { transform: translateY(-100px); opacity: 0; }
            50% { transform: translateY(100px); opacity: 1; }
        }
        
        @keyframes scan-vertical {
            0%, 100% { transform: translateX(-100px); opacity: 0; }
            50% { transform: translateX(100px); opacity: 1; }
        }
        
        .minimal-lines-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 40px;
            letter-spacing: 40px;
            font-weight: 100;
            color: rgba(102, 126, 234, 0.15);
            text-transform: uppercase;
        }