:root {
    --brinjal: #663399;
    --brinjal-dark: #4A2572;
    --brinjal-light: #9370DB;
    --brinjal-lighter: #D7BFF2;
    --brinjal-transparent: rgba(102, 51, 153, 0.07);
    --brinjal-gradient: linear-gradient(135deg, var(--brinjal) 0%, var(--brinjal-dark) 100%);
    --brinjal-glow: 0 0 15px rgba(102, 51, 153, 0.5);
    --white: #ffffff;
    --off-white: #fcfcfc;
    --light-gray: #f8f8f8;
    --mid-gray: #e0e0e0;
    --dark-gray: #666;
    --accent: #E5D4FF;
    --success: #4CAF50;
    --success-light: #E8F5E9;
    --warning: #FFC107;
    --warning-light: #FFF8E1;
    --danger: #F44336;
    --danger-light: #FFEBEE;
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 10px rgba(102, 51, 153, 0.1);
    --shadow-md: 0 5px 20px rgba(102, 51, 153, 0.15);
    --shadow-lg: 0 10px 40px rgba(102, 51, 153, 0.2);
    --shadow-inset: inset 0 2px 5px rgba(0, 0, 0, 0.05);
    --font-primary: 'Segoe UI', 'SF Pro Display', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: 'Segoe UI', 'SF Pro Display', Tahoma, Geneva, Verdana, sans-serif;
    --border-radius-sm: 8px;
    --border-radius-md: 15px;
    --border-radius-lg: 20px;
    --border-radius-xl: 30px;
    --border-radius-full: 50%;
}

/* Reset & Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
}

body {
    background: var(--white);
    color: #333;
    line-height: 1.7;
    overflow-x: hidden;
    font-family: var(--font-primary);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--brinjal-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    position: relative;
}

p {
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.section {
    padding: 120px 0;
    position: relative;
}

.text-center {
    text-align: center;
}

.hidden {
    display: none;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--brinjal-light);
    border-radius: 5px;
    border: 2px solid var(--light-gray);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brinjal);
}

/* Custom Selection Color */
::selection {
    background: var(--brinjal-light);
    color: var(--white);
}

/* Buttons & Interactive Elements */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    border-radius: var(--border-radius-xl);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--brinjal-gradient);
    color: var(--white);
    padding: 15px 30px;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--brinjal-light) 0%, var(--brinjal) 100%);
    z-index: -1;
    transition: var(--transition);
    transform: scaleX(0);
    transform-origin: right;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg), var(--brinjal-glow);
}

.btn-primary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-primary i {
    transition: var(--transition);
    font-size: 1.2rem;
}

.btn-outline {
    background: transparent;
    color: var(--brinjal);
    border: 2px solid var(--brinjal);
    padding: 13px 28px;
}

.btn-outline:hover {
    background: var(--brinjal);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.2rem;
}



header.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.98);
}



.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--brinjal);
    position: relative;
    letter-spacing: -0.5px;
    z-index: 1001;
}

.logo::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--brinjal-light);
    border-radius: var(--border-radius-full);
    bottom: 5px;
    right: -12px;
    animation: pulse 2s infinite;
}


/* Mobile Responsive Navbar Styling */
header {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 15px 0;
    border-bottom: 1px solid rgba(102, 51, 153, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--brinjal);
    position: relative;
    letter-spacing: -0.5px;
    z-index: 1001;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--brinjal);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    width: 40px;
    height: 40px;
    padding: 5px;
    border-radius: 5px;
    transition: var(--transition);
}

.mobile-menu-btn:focus {
    outline: none;
}

/* Media queries for responsive behavior */
@media (max-width: 992px) {
    /* Show the mobile menu button */
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Position the nav links for mobile */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;  /* Start offscreen */
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 40px 40px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
        align-items: flex-start;
        gap: 2rem;
        overflow-y: auto;
        transition: right 0.4s ease-in-out;
    }
    
    /* When the nav is active */
    .nav-links.active {
        right: 0;
    }
    
    /* Style for the nav links on mobile */
    .nav-link {
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid rgba(102, 51, 153, 0.1);
    }
    
    /* Make get started button full width on mobile */
    .get-started-btn {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
    
    /* Overlay when menu is open */
    .body-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
    }
    
    .body-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Mobile menu icon animation */
    .mobile-menu-btn.active i {
        transform: rotate(90deg);
    }
}

/* Additional CSS for very small screens */
@media (max-width: 576px) {
    .nav-links {
        width: 250px;
        padding: 100px 30px 40px;
    }
    
    .logo {
        font-size: 1.6rem;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--light-gray) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 50px;
}

.hero::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, var(--brinjal-transparent) 0, transparent 120px),
        radial-gradient(circle at 80% 70%, var(--brinjal-transparent) 0, transparent 180px);
    opacity: 0.8;
}

.hero-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.hero-text::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--brinjal-transparent);
    border-radius: var(--border-radius-full);
    top: -70px;
    left: -70px;
    z-index: -1;
    animation: float 15s ease-in-out infinite alternate;
}

.slogan {
    font-size: 3.5rem;
    color: var(--brinjal-dark);
    line-height: 1.2;
    position: relative;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.slogan::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--brinjal);
    left: 0;
    bottom: -15px;
    border-radius: 2px;
}

.slogan span {
    color: var(--brinjal);
    position: relative;
    display: inline-block;
}

.slogan span::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 30%;
    background: var(--accent);
    left: 0;
    bottom: 5px;
    z-index: -1;
    opacity: 0.6;
    border-radius: 3px;
}

.sub-slogan {
    font-size: 1.6rem;
    margin: 2rem 0 1rem;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
    background: linear-gradient(90deg, var(--brinjal) 0%, var(--brinjal-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    letter-spacing: -0.5px;
    position: relative;
}

.sub-slogan::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -10px;
    width: 5px;
    height: 100%;
    background: var(--brinjal-gradient);
    border-radius: 5px;
    animation: pulse 2s infinite;
}

.description {
    font-size: 1.25rem;
    margin: 1.5rem 0 2.5rem;
    color: #555;
    max-width: 600px;
    line-height: 1.8;
}

/* Hero stats section */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 2.5rem;
    margin-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-left: 10px;
}

.stat-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    height: 20px;
    width: 3px;
    background: var(--brinjal-gradient);
    border-radius: 3px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--brinjal);
    line-height: 1.2;
    margin-bottom: 5px;
    background: linear-gradient(90deg, var(--brinjal) 0%, var(--brinjal-dark) 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--dark-gray);
    font-weight: 500;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-illustration {
    width: 100%;
    max-width: 600px;
    filter: drop-shadow(0 15px 30px rgba(102, 51, 153, 0.25));
    transform-origin: center bottom;
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.hero-badge {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 100px;
    height: 100px;
    background: var(--brinjal-gradient);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md), var(--brinjal-glow);
    animation: pulse 3s infinite;
    z-index: 2;
    transform-origin: center;
}

.badge-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-full);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(2px);
    padding: 5px;
}

.badge-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    position: relative;
    line-height: 1;
    margin-bottom: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.badge-price::before {
    content: "₹";
    font-size: 1rem;
    position: absolute;
    top: 0;
    left: -15px;
}

.badge-text {
    font-size: 0.7rem;
    color: var(--white);
    opacity: 0.9;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.cta-button {
    background: var(--brinjal-gradient);
    color: var(--white);
    padding: 16px 36px;
    border-radius: var(--border-radius-xl);
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.2px;
}

.cta-button i {
    transition: var(--transition);
    font-size: 1rem;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-lg), var(--brinjal-glow);
}

.cta-button:hover i {
    transform: translateX(5px);
}

.cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--brinjal-light) 0%, var(--brinjal) 100%);
    z-index: -1;
    transition: var(--transition);
    transform: scaleX(0);
    transform-origin: right;
}

.cta-button:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.cta-button::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 100%;
    top: 0;
    left: -100px;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-20deg);
    transition: var(--transition);
    filter: blur(5px);
}

.cta-button:hover::after {
    left: 200%;
    transition: 0.7s ease-in-out;
}

/* Animated Scroll Down */
.scroll-down {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.9rem;
    color: var(--brinjal);
    z-index: 2;
    transition: var(--transition);
}

.scroll-down:hover {
    transform: translateX(-50%) translateY(5px);
}

.scroll-down span {
    margin-bottom: 10px;
    font-weight: 500;
    background: var(--brinjal-transparent);
    padding: 5px 15px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.scroll-icon {
    width: 30px;
    height: 50px;
    border: 2px solid var(--brinjal);
    border-radius: 25px;
    position: relative;
    margin-top: 5px;
}

.scroll-icon::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--brinjal);
    border-radius: var(--border-radius-full);
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Section Styling */
.section-title-wrapper {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.section-title-wrapper::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--brinjal-transparent);
    border-radius: var(--border-radius-full);
    top: -70px;
    left: calc(50% - 250px);
    z-index: -1;
    animation: float 15s ease-in-out infinite alternate;
}

.section-subtitle {
    color: var(--brinjal);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: inline-block;
    padding: 6px 18px;
    background: var(--brinjal-transparent);
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: var(--shadow-sm);
}

.section-title {
    font-size: 2.5rem;
    color: var(--brinjal-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--brinjal-gradient);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-description {
    font-size: 1.15rem;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Features Section */
.features {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--brinjal-transparent);
    border-radius: var(--border-radius-full);
    bottom: -250px;
    right: -250px;
    opacity: 0.7;
    z-index: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--mid-gray);
}

.feature-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    background: var(--brinjal-gradient);
    top: 0;
    left: 0;
    transition: var(--transition);
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-card:hover::before {
    height: 100%;
    opacity: 0.05;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--brinjal-transparent);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: var(--brinjal);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: -100%;
    left: 0;
    background: var(--brinjal-gradient);
    transition: var(--transition);
    z-index: -1;
}

.feature-card:hover .feature-icon {
    color: var(--white);
    transform: rotateY(360deg);
    box-shadow: var(--shadow-md);
}

.feature-card:hover .feature-icon::after {
    top: 0;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--brinjal-dark);
    position: relative;
    padding-bottom: 15px;
}

.feature-title::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--brinjal-light);
    bottom: 0;
    left: 0;
    border-radius: 1px;
}

.feature-description {
    color: var(--dark-gray);
    flex-grow: 1;
    line-height: 1.8;
}

/* Samples Section */
.samples {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    position: relative;
    overflow: hidden;
}

.samples::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--brinjal-transparent);
    border-radius: var(--border-radius-full);
    top: -150px;
    left: -150px;
    z-index: 0;
}

.samples::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--brinjal-transparent);
    border-radius: var(--border-radius-full);
    bottom: -100px;
    right: -100px;
    z-index: 0;
}

.samples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.sample-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--mid-gray);
}

.sample-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: var(--shadow-lg), var(--brinjal-glow);
    border-color: var(--brinjal-lighter);
}

.sample-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.sample-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.sample-card:hover .sample-img {
    transform: scale(1.1);
}

.sample-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(102, 51, 153, 0.9), transparent);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 25px;
    gap: 15px;
}

.sample-card:hover .sample-overlay {
    opacity: 1;
}

.view-btn::before, .preview-btn::before {
    content: "";
    position: absolute;
    width: 30px;
    height: 100%;
    top: 0;
    left: -100px;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-20deg);
    transition: var(--transition);
    filter: blur(5px);
}

.view-btn:hover, .preview-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.view-btn:hover::before, .preview-btn:hover::before {
    left: 200%;
    transition: 0.7s ease-in-out;
}

.preview-btn i {
    color: #FFD700;
    font-size: 1.1rem;
}

.sample-content {
    padding: 30px;
    background: var(--white);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.sample-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--brinjal-dark);
    position: relative;
    padding-bottom: 12px;
}

.sample-title::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--brinjal-light);
    bottom: 0;
    left: 0;
    border-radius: 1px;
}

.sample-description {
    color: var(--dark-gray);
    margin-bottom: 25px;
    flex-grow: 1;
    line-height: 1.7;
}

.sample-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sample-tag {
    font-size: 0.8rem;
    padding: 5px 14px;
    background: var(--brinjal-transparent);
    color: var(--brinjal);
    border-radius: 20px;
    font-weight: 500;
    box-shadow: var(--shadow-inset);
    transition: var(--transition);
}

.sample-card:hover .sample-tag {
    background: var(--brinjal-lighter);
    color: var(--brinjal-dark);
    box-shadow: var(--shadow-sm);
}

/* Transformation showcase */
.transformation-showcase {
    margin-top: 100px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--mid-gray);
}

.transformation-showcase::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, var(--brinjal-transparent) 0%, transparent 100%);
    z-index: 0;
}

.transformation-title {
    text-align: center;
    font-size: 2rem;
    color: var(--brinjal-dark);
    margin-bottom: 40px;
    position: relative;
}

.transformation-title::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--brinjal-gradient);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.transformation-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.before, .after {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

@media(max-width:900px){
    .before, .after {
        width: 330px;
        background-size: cover;
        height: 200px !important;
    } 

    .transformation-img img{
        height: 150px !important;
        width: 350px !important;
    }

    .transformation-title {
        font-size: 1.4rem !important;
    }
}

.label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding: 8px 20px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1;
}

.before .label {
    background: var(--danger-light);
    color: var(--danger);
}

.after .label {
    background: var(--success-light);
    color: var(--success);
}

.transformation-img {
    width: 100%;
    height: 300px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
    border: 1px solid var(--mid-gray);
    transition: var(--transition);
}

.transformation-img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.transformation-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.no-website {
    background: var(--light-gray);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
}

.no-website i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--danger);
    opacity: 0.7;
}

.no-website p {
    font-size: 1.2rem;
    font-weight: 500;
}

.arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--brinjal);
    position: relative;
}

.arrow-text {
    font-size: 1rem;
    margin-bottom: 15px;
    background: var(--brinjal-transparent);
    padding: 10px 15px;
    border-radius: 20px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    color: var(--brinjal-dark);
    position: relative;
    z-index: 1;
}

.arrow-text::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--brinjal-lighter);
    top: 0;
    left: 0;
    border-radius: 20px;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.arrow:hover .arrow-text::before {
    transform: scaleX(1);
}

.arrow i {
    font-size: 3.5rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    animation: pulse 2s infinite;
}

/* Process Section */
.process {
    background: var(--brinjal-gradient);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.1) 0, transparent 80px),
        radial-gradient(circle at 90% 90%, rgba(255, 255, 255, 0.1) 0, transparent 100px);
    top: 0;
    left: 0;
}

.process .section-subtitle {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.process .section-title {
    color: var(--white);
}

.process .section-title::after {
    background: var(--white);
}

.process .section-description {
    color: rgba(255, 255, 255, 0.9);
}

/* Video demonstration */
.process-video {
    max-width: 800px;
    margin: 0 auto 80px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    border: 3px solid rgba(255, 255, 255, 0.2);
}


.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.video-container:hover .video-thumbnail {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 3px solid var(--white);
    backdrop-filter: blur(5px);
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.play-button i {
    font-size: 2.5rem;
    color: var(--white);
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.video-container:hover .play-button {
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.video-container:hover .play-button i {
    transform: scale(1.2);
}

.video-caption {
    text-align: center;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    font-size: 1.1rem;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 0;
}

.timeline::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 30px;
    box-sizing: border-box;
    margin-bottom: 60px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 90px;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 90px;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-content:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.timeline-number {
    position: absolute;
    width: 70px;
    height: 70px;
    background: var(--white);
    color: var(--brinjal);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    top: 50%;
    z-index: 1;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border: 3px solid var(--brinjal-light);
}

.timeline-item:hover .timeline-number {
    transform: translateY(-50%) scale(1.1) rotate(360deg);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    background: var(--brinjal-gradient);
    color: var(--white);
    border-color: var(--white);
}

.timeline-item:nth-child(odd) .timeline-number {
    right: -35px;
    transform: translateY(-50%);
}

.timeline-item:nth-child(even) .timeline-number {
    left: -35px;
    transform: translateY(-50%);
}

.timeline-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--white);
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
}

.timeline-title::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--white);
    bottom: 0;
    border-radius: 1px;
}

.timeline-item:nth-child(odd) .timeline-title::after {
    right: 0;
}

.timeline-item:nth-child(even) .timeline-title::after {
    left: 0;
}

.timeline-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Success Story Section */
.success-story {
    background: var(--white);
    padding: 120px 0;
    position: relative;
}

.success-story::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: var(--brinjal-transparent);
    border-radius: var(--border-radius-full);
    top: -100px;
    right: -100px;
    z-index: 0;
}

.success-story-wrapper {
    display: flex;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
    border: 1px solid var(--mid-gray);
}

.success-story-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    overflow: hidden;
}

.success-story-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(102, 51, 153, 0.4));
    z-index: 1;
}

.success-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.success-story-wrapper:hover .success-story-image img {
    transform: scale(1.05);
}

.success-story-content {
    flex: 1.5;
    padding: 60px;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 3rem;
    color: var(--brinjal);
    opacity: 0.2;
}

.success-title {
    font-size: 2.4rem;
    color: var(--brinjal-dark);
    margin-bottom: 25px;
    line-height: 1.3;
    position: relative;
    padding-bottom: 20px;
}

.success-title::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--brinjal-gradient);
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.success-text {
    color: #555;
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 35px;
}

.success-author {
    margin-bottom: 25px;
    position: relative;
    padding-left: 15px;
}

.success-author::before {
    content: "";
    position: absolute;
    width: 3px;
    height: 100%;
    background: var(--brinjal-gradient);
    left: 0;
    top: 0;
    border-radius: 2px;
}

.success-author h3 {
    font-size: 1.4rem;
    color: var(--brinjal-dark);
    margin-bottom: 5px;
}

.success-author p {
    color: #777;
    font-style: italic;
}

.success-result {
    background: var(--success);
    color: var(--white);
    display: inline-flex;
    padding: 12px 25px;
    border-radius: 30px;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.success-result:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}


@media(max-width:900px){
    .success-result {
        padding: 10px !important;
    }
    
}


.result-label {
    font-weight: 600;
    font-size: 1.05rem;
}

.result-value {
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Testimonials Section */
.testimonials {
    background: var(--white);
    position: relative;
}

.testimonials::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 5% 95%, var(--brinjal-transparent) 0, transparent 200px),
        radial-gradient(circle at 95% 5%, var(--brinjal-transparent) 0, transparent 200px);
    opacity: 0.7;
}

.testimonial-slider {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
}

.testimonial-avatar {
    width: 120px;
    height: 120px;
    border-radius: var(--border-radius-full);
    border: 5px solid var(--brinjal);
    overflow: hidden;
    margin-bottom: 25px;
    position: relative;
    box-shadow: var(--shadow-md), var(--brinjal-glow);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.testimonial-slide:hover .testimonial-avatar img {
    transform: scale(1.1);
}

/* Rating Stars */
.rating {
    margin-bottom: 25px;
    color: #FFD700;
    font-size: 1.3rem;
    letter-spacing: 3px;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.1));
}

.testimonial-quote {
    font-size: 1.4rem;
    color: #444;
    max-width: 900px;
    margin-bottom: 35px;
    position: relative;
    line-height: 1.9;
    padding: 0 40px;
}

.testimonial-quote::before,
.testimonial-quote::after {       
    font-size: 4rem;
    color: var(--brinjal);
    opacity: 0.3;
    position: absolute;
    line-height: 1;
}

.testimonial-quote::before {
    top: -20px;
    left: -10px;
    content: "\201C";
}

.testimonial-quote::after {
    bottom: -50px;
    right: -10px;
    content: "\201D";
}

.testimonial-author {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--brinjal-dark);
    margin-bottom: 5px;
}

.testimonial-position {
    font-size: 1rem;
    color: #777;
    margin-top: 5px;
    font-style: italic;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    gap: 15px;
}

.testimonial-dot {
    width: 14px;
    height: 14px;
    border-radius: var(--border-radius-full);
    background: var(--brinjal-transparent);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.testimonial-dot.active {
    background: var(--brinjal);
    transform: scale(1.3);
    box-shadow: var(--brinjal-glow);
    border-color: var(--white);
}

/* FAQ Section */
.faq {
    background: var(--light-gray);
    position: relative;
}

.faq::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--brinjal-transparent);
    border-radius: var(--border-radius-full);
    bottom: -200px;
    left: -200px;
    z-index: 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius-md);
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--mid-gray);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--brinjal-lighter);
}

.faq-question {
    padding: 25px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: linear-gradient(90deg, var(--white) 0%, var(--light-gray) 100%);
    transition: var(--transition);
    position: relative;
}

.faq-question::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 0;
    background: var(--brinjal-gradient);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition);
    border-radius: 2px;
}

.faq-item.active .faq-question::before,
.faq-item:hover .faq-question::before {
    height: 80%;
}

.faq-question h3 {
    font-size: 1.25rem;
    color: var(--brinjal-dark);
    transition: var(--transition);
}

.faq-item.active .faq-question h3,
.faq-item:hover .faq-question h3 {
    color: var(--brinjal);
    transform: translateX(5px);
}

.faq-icon {
    color: var(--brinjal);
    transition: var(--transition);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brinjal-transparent);
    border-radius: var(--border-radius-full);
}

.faq-icon i {
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    background: var(--brinjal);
    color: var(--white);
}

.faq-answer {
    padding: 0 35px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 35px 35px;
    max-height: 600px;
}

.faq-item.active .faq-icon i {
    transform: rotate(180deg);
}

.faq-answer p {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Pricing Section */
.pricing {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: var(--border-radius-full);
    background: var(--brinjal-transparent);
    top: -200px;
    right: -200px;
    z-index: 0;
    animation: float 15s ease-in-out infinite alternate;
}

.price-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 60px 50px;
    max-width: 650px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 1px solid var(--mid-gray);
}

.price-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-lg), var(--brinjal-glow);
    border-color: var(--brinjal-lighter);
}

.price-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, var(--brinjal-transparent) 0%, transparent 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.price-card:hover::before {
    opacity: 1;
}

/* Price Badge */
.price-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--brinjal-gradient);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: var(--shadow-md), var(--brinjal-glow);
    letter-spacing: 0.5px;
    animation: pulse 3s infinite;
}

.price-title {
    font-size: 1.8rem;
    color: var(--brinjal-dark);
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.price-title::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--brinjal-gradient);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.price-amount {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
}

.price {
    font-size: 4rem;
}

/* Reset & Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
}

body {
    background: var(--white);
    color: #333;
    line-height: 1.7;
    overflow-x: hidden;
    font-family: var(--font-primary);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--brinjal-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    position: relative;
}

p {
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.section {
    padding: 120px 0;
    position: relative;
}

.text-center {
    text-align: center;
}

.hidden {
    display: none;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--brinjal-light);
    border-radius: 5px;
    border: 2px solid var(--light-gray);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brinjal);
}

/* Custom Selection Color */
::selection {
    background: var(--brinjal-light);
    color: var(--white);
}

/* Buttons & Interactive Elements */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    border-radius: var(--border-radius-xl);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--brinjal-gradient);
    color: var(--white);
    padding: 15px 30px;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--brinjal-light) 0%, var(--brinjal) 100%);
    z-index: -1;
    transition: var(--transition);
    transform: scaleX(0);
    transform-origin: right;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg), var(--brinjal-glow);
}

.btn-primary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-primary i {
    transition: var(--transition);
    font-size: 1.2rem;
}

.btn-outline {
    background: transparent;
    color: var(--brinjal);
    border: 2px solid var(--brinjal);
    padding: 13px 28px;
}

.btn-outline:hover {
    background: var(--brinjal);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.2rem;
}

/* Header & Navigation */
header {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 15px 0;
    border-bottom: 1px solid rgba(102, 51, 153, 0.05);
}

header.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.98);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--brinjal);
    position: relative;
    letter-spacing: -0.5px;
    z-index: 1001;
}

.logo::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--brinjal-light);
    border-radius: var(--border-radius-full);
    bottom: 5px;
    right: -12px;
    animation: pulse 2s infinite;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: #333;
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--brinjal);
    transition: var(--transition-fast);
    border-radius: 10px;
}

.nav-link:hover, 
.nav-link.active {
    color: var(--brinjal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.get-started-btn {
    background: var(--brinjal-gradient);
    color: var(--white);
    padding: 10px 24px;
    border-radius: var(--border-radius-xl);
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.get-started-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md), var(--brinjal-glow);
    background: linear-gradient(135deg, var(--brinjal-dark) 0%, var(--brinjal) 100%);
}

.get-started-btn i {
    font-size: 0.9rem;
    transition: var(--transition);
}

.get-started-btn:hover i {
    transform: translateX(4px);
}

.mobile-menu-btn {
    background: none;
    border: none;
    color: var(--brinjal);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    transition: var(--transition);
}

.mobile-menu-btn.active {
    transform: rotate(90deg);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--light-gray) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 50px;
}

.hero::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, var(--brinjal-transparent) 0, transparent 120px),
        radial-gradient(circle at 80% 70%, var(--brinjal-transparent) 0, transparent 180px);
    opacity: 0.8;
}

.hero-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.hero-text::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--brinjal-transparent);
    border-radius: var(--border-radius-full);
    top: -70px;
    left: -70px;
    z-index: -1;
    animation: float 15s ease-in-out infinite alternate;
}

.slogan {
    font-size: 3.5rem;
    color: var(--brinjal-dark);
    line-height: 1.2;
    position: relative;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.slogan::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--brinjal);
    left: 0;
    bottom: -15px;
    border-radius: 2px;
}

.slogan span {
    color: var(--brinjal);
    position: relative;
    display: inline-block;
}

.slogan span::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 30%;
    background: var(--accent);
    left: 0;
    bottom: 5px;
    z-index: -1;
    opacity: 0.6;
    border-radius: 3px;
}

.sub-slogan {
    font-size: 1.6rem;
    margin: 2rem 0 1rem;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
    background: linear-gradient(90deg, var(--brinjal) 0%, var(--brinjal-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    letter-spacing: -0.5px;
    position: relative;
}

.sub-slogan::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -10px;
    width: 5px;
    height: 100%;
    background: var(--brinjal-gradient);
    border-radius: 5px;
    animation: pulse 2s infinite;
}

.description {
    font-size: 1.25rem;
    margin: 1.5rem 0 2.5rem;
    color: #555;
    max-width: 600px;
    line-height: 1.8;
}

/* Hero stats section */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 2.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-left: 10px;
}

.stat-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    height: 20px;
    width: 3px;
    background: var(--brinjal-gradient);
    border-radius: 3px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--brinjal);
    line-height: 1.2;
    margin-bottom: 5px;
    background: linear-gradient(90deg, var(--brinjal) 0%, var(--brinjal-dark) 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--dark-gray);
    font-weight: 500;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-illustration {
    width: 100%;
    max-width: 600px;
    filter: drop-shadow(0 15px 30px rgba(102, 51, 153, 0.25));
    transform-origin: center bottom;
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.hero-badge {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 100px;
    height: 100px;
    background: var(--brinjal-gradient);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md), var(--brinjal-glow);
    animation: pulse 3s infinite;
    z-index: 2;
    transform-origin: center;
}

.badge-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-full);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(2px);
    padding: 5px;
}

.badge-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    position: relative;
    line-height: 1;
    margin-bottom: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.badge-price::before {
    content: "₹";
    font-size: 1rem;
    position: absolute;
    top: 0;
    left: -15px;
}

.badge-text {
    font-size: 0.7rem;
    color: var(--white);
    opacity: 0.9;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.cta-button {
    background: var(--brinjal-gradient);
    color: var(--white);
    padding: 16px 36px;
    border-radius: var(--border-radius-xl);
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.2px;
}

.cta-button i {
    transition: var(--transition);
    font-size: 1rem;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-lg), var(--brinjal-glow);
}

.cta-button:hover i {
    transform: translateX(5px);
}

.cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--brinjal-light) 0%, var(--brinjal) 100%);
    z-index: -1;
    transition: var(--transition);
    transform: scaleX(0);
    transform-origin: right;
}

.cta-button:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.cta-button::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 100%;
    top: 0;
    left: -100px;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-20deg);
    transition: var(--transition);
    filter: blur(5px);
}

.cta-button:hover::after {
    left: 200%;
    transition: 0.7s ease-in-out;
}

/* Animated Scroll Down */
.scroll-down {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.9rem;
    color: var(--brinjal);
    z-index: 2;
    transition: var(--transition);
}

.scroll-down:hover {
    transform: translateX(-50%) translateY(5px);
}

.scroll-down span {
    margin-bottom: 10px;
    font-weight: 500;
    background: var(--brinjal-transparent);
    padding: 5px 15px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.scroll-icon {
    width: 30px;
    height: 50px;
    border: 2px solid var(--brinjal);
    border-radius: 25px;
    position: relative;
    margin-top: 5px;
}

.scroll-icon::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--brinjal);
    border-radius: var(--border-radius-full);
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Section Styling */
.section-title-wrapper {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.section-title-wrapper::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--brinjal-transparent);
    border-radius: var(--border-radius-full);
    top: -70px;
    left: calc(50% - 250px);
    z-index: -1;
    animation: float 15s ease-in-out infinite alternate;
}

.section-subtitle {
    color: var(--brinjal);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: inline-block;
    padding: 6px 18px;
    background: var(--brinjal-transparent);
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: var(--shadow-sm);
}

.section-title {
    font-size: 2.5rem;
    color: var(--brinjal-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--brinjal-gradient);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-description {
    font-size: 1.15rem;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Features Section */
.features {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--brinjal-transparent);
    border-radius: var(--border-radius-full);
    bottom: -250px;
    right: -250px;
    opacity: 0.7;
    z-index: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--mid-gray);
}

.feature-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    background: var(--brinjal-gradient);
    top: 0;
    left: 0;
    transition: var(--transition);
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-card:hover::before {
    height: 100%;
    opacity: 0.05;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--brinjal-transparent);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: var(--brinjal);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: -100%;
    left: 0;
    background: var(--brinjal-gradient);
    transition: var(--transition);
    z-index: -1;
}

.feature-card:hover .feature-icon {
    color: var(--white);
    transform: rotateY(360deg);
    box-shadow: var(--shadow-md);
}

.feature-card:hover .feature-icon::after {
    top: 0;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--brinjal-dark);
    position: relative;
    padding-bottom: 15px;
}

.feature-title::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--brinjal-light);
    bottom: 0;
    left: 0;
    border-radius: 1px;
}

.feature-description {
    color: var(--dark-gray);
    flex-grow: 1;
    line-height: 1.8;
}

/* Samples Section */
.samples {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    position: relative;
    overflow: hidden;
}

.samples::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--brinjal-transparent);
    border-radius: var(--border-radius-full);
    top: -150px;
    left: -150px;
    z-index: 0;
}

.samples::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--brinjal-transparent);
    border-radius: var(--border-radius-full);
    bottom: -100px;
    right: -100px;
    z-index: 0;
}

.samples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.sample-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--mid-gray);
}

.sample-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: var(--shadow-lg), var(--brinjal-glow);
    border-color: var(--brinjal-lighter);
}

.sample-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.sample-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.sample-card:hover .sample-img {
    transform: scale(1.1);
}

.sample-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(102, 51, 153, 0.9), transparent);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 25px;
    gap: 15px;
}

.sample-card:hover .sample-overlay {
    opacity: 1;
}

.view-btn, .preview-btn {
    color: var(--white);
    font-weight: 600;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    width: 85%;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.price-description {
    color: var(--dark-gray);
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.15rem;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Urgency elements */
.price-urgency {
    background: var(--warning-light);
    padding: 20px 25px;
    border-radius: var(--border-radius-md);
    margin-bottom: 35px;
    border-left: 4px solid var(--warning);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.price-urgency::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 193, 7, 0.1) 100%);
    z-index: 0;
}

.countdown {
    text-align: center;
    position: relative;
    z-index: 1;
}

.countdown > span {
    color: #e65100;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--border-radius-md);
    padding: 8px 15px;
    min-width: 80px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(230, 81, 0, 0.1);
}

.time-value {
    font-size: 2rem;
    font-weight: 800;
    color: #e65100;
    line-height: 1;
    margin-bottom: 5px;
}

.time-label {
    font-size: 0.85rem;
    color: #e65100;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-features {
    margin-bottom: 35px;
}

.price-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: #555;
    position: relative;
    padding-left: 35px;
}

.price-feature:last-child {
    margin-bottom: 0;
}

.price-feature i {
    color: var(--brinjal);
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 1.3rem;
}

.price-feature span {
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Trust indicators */
.price-trust {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 35px;
    flex-wrap: wrap;
    padding: 20px 0;
    border-top: 1px dashed #e0e0e0;
    border-bottom: 1px dashed #e0e0e0;
}

.trust-element {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
    background: var(--light-gray);
    padding: 8px 15px;
    border-radius: 20px;
    box-shadow: var(--shadow-inset);
    transition: var(--transition);
}

.trust-element:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
    background: var(--white);
}

.trust-element i {
    color: var(--brinjal);
    font-size: 1.1rem;
}

.price-button {
    text-align: center;
    margin-bottom: 25px;
}

/* Websites count */
.websites-count {
    text-align: center;
    font-size: 0.95rem;
    color: #666;
}

.websites-count p {
    display: inline-block;
    padding: 8px 18px;
    background: var(--brinjal-transparent);
    border-radius: 20px;
    box-shadow: var(--shadow-inset);
    font-weight: 500;
}

#today-count {
    font-weight: 700;
    color: var(--brinjal);
    margin: 0 3px;
}

#today-count.highlight {
    animation: highlight 2s;
}

@keyframes highlight {
    0% {
        color: var(--brinjal);
    }
    50% {
        color: var(--success);
        transform: scale(1.2);
    }
    100% {
        color: var(--brinjal);
        transform: scale(1);
    }
}

/* Contact Section */
.contact {
    background: var(--white);
    position: relative;
}

.contact::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--brinjal-transparent);
    border-radius: var(--border-radius-full);
    top: 100px;
    left: -150px;
    z-index: 0;
    opacity: 0.7;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    position: relative;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--mid-gray);
    position: relative;
    transition: var(--transition);
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg), var(--brinjal-glow);
    border-color: var(--brinjal-lighter);
}

.contact-title {
    font-size: 2.2rem;
    color: var(--brinjal-dark);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.contact-title::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--brinjal-gradient);
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.contact-description {
    color: var(--dark-gray);
    margin-bottom: 35px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--brinjal-transparent);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    color: var(--brinjal);
    font-size: 1.4rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.contact-icon::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--brinjal-gradient);
    top: 100%;
    left: 0;
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    color: var(--white);
    transform: rotateY(360deg);
    box-shadow: var(--shadow-md), var(--brinjal-glow);
}

.contact-item:hover .contact-icon::before {
    top: 0;
}

.contact-text h3 {
    font-size: 1.3rem;
    color: var(--brinjal-dark);
    margin-bottom: 5px;
}

.contact-text p {
    color: var(--dark-gray);
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 30px;
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #444;
    font-size: 1.05rem;
    position: relative;
    padding-left: 15px;
    transition: var(--transition);
}

.form-label::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 70%;
    background: var(--brinjal-gradient);
    left: 0;
    top: 15%;
    border-radius: 2px;
    opacity: 0.7;
    transition: var(--transition);
}

.form-group:focus-within .form-label {
    color: var(--brinjal);
    transform: translateX(5px);
}

.form-group:focus-within .form-label::before {
    height: 90%;
    opacity: 1;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--mid-gray);
    border-radius: var(--border-radius-md);
    font-size: 1.05rem;
    transition: var(--transition);
    background: var(--light-gray);
    color: #333;
}

.form-control:focus {
    outline: none;
    border-color: var(--brinjal);
    box-shadow: 0 0 0 3px var(--brinjal-transparent);
    background: var(--white);
}

.form-submit {
    background: var(--brinjal-gradient);
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: var(--border-radius-xl);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    box-shadow: var(--shadow-sm);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.form-submit::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--brinjal-light) 0%, var(--brinjal) 100%);
    top: 0;
    left: 0;
    transition: var(--transition);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
}

.form-submit:hover {
    box-shadow: var(--shadow-md), var(--brinjal-glow);
    transform: translateY(-5px);
}

.form-submit:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Footer */
footer {
    background: var(--brinjal-gradient);
    color: var(--white);
    padding: 100px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.1) 0, transparent 80px),
        radial-gradient(circle at 90% 90%, rgba(255, 255, 255, 0.1) 0, transparent 80px);
    top: 0;
    left: 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.footer-logo-section {
    flex: 2;
    min-width: 300px;
}

.footer-logo {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 25px;
    display: inline-block;
    position: relative;
    letter-spacing: -0.5px;
}

.footer-logo::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: var(--border-radius-full);
    bottom: 5px;
    right: -12px;
}

.footer-about {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 400px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.social-link::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--white);
    top: 100%;
    left: 0;
    z-index: -1;
    transition: var(--transition);
    border-radius: var(--border-radius-full);
}

.social-link:hover {
    color: var(--brinjal);
    transform: translateY(-5px) scale(1.1);
}

.social-link:hover::before {
    top: 0;
}

.footer-links-section {
    flex: 1;
    min-width: 160px;
}

.footer-title {
    font-size: 1.4rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
    color: var(--white);
}

.footer-title::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--white);
    bottom: 0;
    left: 0;
    border-radius: 1px;
}

.footer-links {
    list-style: none;
}

.footer-link {
    margin-bottom: 15px;
}

.footer-link a {
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
    display: inline-block;
    position: relative;
    padding-left: 20px;
    font-size: 1.05rem;
}

.footer-link a::before {
    content: "›";
    position: absolute;
    left: 0;
    transition: var(--transition);
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-link a:hover {
    color: var(--white);
    transform: translateX(8px);
}

.footer-link a:hover::before {
    color: var(--white);
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 80px;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
}

/* Responsive Styles */
@media (max-width: 1400px) {
    html {
        font-size: 15px;
    }
    
    .container {
        max-width: 1200px;
    }
    
    .section {
        padding: 100px 0;
    }
}

@media (max-width: 1200px) {
    html {
        font-size: 14px;
    }
    
    .slogan {
        font-size: 3.2rem;
    }
    
    .sub-slogan {
        font-size: 1.5rem;
    }
    
    .timeline::before {
        left: 40px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 90px;
        padding-right: 30px;
        text-align: left;
    }
    
    .timeline-item:nth-child(odd) {
        left: 0;
        padding-right: 30px;
        text-align: left;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-item:nth-child(odd) .timeline-number {
        left: -35px;
        right: auto;
    }
    
    .timeline-item:nth-child(odd) .timeline-title::after {
        left: 0;
        right: auto;
    }
    
    .success-story-wrapper {
        flex-direction: column;
    }
    
    .success-story-image {
        height: 400px;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 13px;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .slogan {
        font-size: 3rem !important;
    }
    
    .sub-slogan {
        font-size: 1.4rem;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 40px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 999;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .mobile-menu-btn {
        display: block !important;
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .slogan::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .sub-slogan::before {
        display: none;
    }
    
    .description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-badge {
        top: 10px;
        right: 10px;
    }
    
    .transformation-content {
        flex-direction: column;
    }
    
    .arrow {
        transform: rotate(90deg);
        margin: 30px 0;
    }
    
    .features-grid, 
    .samples-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .success-story-content {
        padding: 40px 30px;
    }
    
    .contact-form {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 12px;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .slogan {
        font-size: 2.8rem;
    }
    
    .sub-slogan {
        font-size: 1.3rem;
    }
    
    .description {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .features-grid, 
    .samples-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding-bottom: 40px;
        min-height: auto;
    }
    
    .scroll-down {
        display: none;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-wrapper {
        flex-direction: column;
    }
    
    .contact-info, 
    .contact-form {
        max-width: 100%;
    }
    
    .price-trust {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .trust-element {
        width: 100%;
        justify-content: center;
    }
    
    .testimonial-quote {
        font-size: 1.2rem;
        padding: 0 20px;
    }
    
    .testimonial-quote::before, 
    .testimonial-quote::after {
        font-size: 3rem;
    }
    
    .success-story-content {
        padding: 30px 20px;
    }
    
    .success-title {
        font-size: 2rem;
    }
    
    .price-card {
        padding: 40px 30px;
    }
    
    .timer {
        gap: 15px;
    }
    
    .time-unit {
        min-width: 70px;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 11px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .slogan {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .stat-item {
        align-items: center;
        padding-left: 0;
    }
    
    .stat-item::before {
        display: none;
    }
    
    .price-urgency {
        padding: 15px;
    }
    
    .timer {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .feature-card,
    .sample-card {
        transform: none !important;
    }
    
    .testimonial-avatar {
        width: 100px;
        height: 100px;
    }
    
    .testimonial-quote {
        font-size: 1.1rem;
        padding: 0;
    }
    
    .testimonial-quote::before, 
    .testimonial-quote::after {
        display: none;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.active {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.active {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scale-in.active {
    opacity: 1;
    transform: scale(1);
}

/* Delay Classes */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}.view-btn::before, .preview-btn::before {
    content: "";
    position: absolute;
    width: 30px;
    height: 100%;
    top: 0;
    left: -100px;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-20deg);
    transition: var(--transition);
    filter: blur(5px);
}

.view-btn:hover, .preview-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.view-btn:hover::before, .preview-btn:hover::before {
    left: 200%;
    transition: 0.7s ease-in-out;
}

.preview-btn i {
    color: #FFD700;
    font-size: 1.1rem;
}

.sample-content {
    padding: 30px;
    background: var(--white);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.sample-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--brinjal-dark);
    position: relative;
    padding-bottom: 12px;
}

.sample-title::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--brinjal-light);
    bottom: 0;
    left: 0;
    border-radius: 1px;
}

.sample-description {
    color: var(--dark-gray);
    margin-bottom: 25px;
    flex-grow: 1;
    line-height: 1.7;
}

.sample-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sample-tag {
    font-size: 0.8rem;
    padding: 5px 14px;
    background: var(--brinjal-transparent);
    color: var(--brinjal);
    border-radius: 20px;
    font-weight: 500;
    box-shadow: var(--shadow-inset);
    transition: var(--transition);
}

.sample-card:hover .sample-tag {
    background: var(--brinjal-lighter);
    color: var(--brinjal-dark);
    box-shadow: var(--shadow-sm);
}

/* Transformation showcase */
.transformation-showcase {
    margin-top: 100px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--mid-gray);
}

.transformation-showcase::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, var(--brinjal-transparent) 0%, transparent 100%);
    z-index: 0;
}

.transformation-title {
    text-align: center;
    font-size: 2rem;
    color: var(--brinjal-dark);
    margin-bottom: 40px;
    position: relative;
}

.transformation-title::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--brinjal-gradient);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.transformation-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.before, .after {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding: 8px 20px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1;
}

.before .label {
    background: var(--danger-light);
    color: var(--danger);
}

.after .label {
    background: var(--success-light);
    color: var(--success);
}

.transformation-img {
    width: 100%;
    height: 300px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
    border: 1px solid var(--mid-gray);
    transition: var(--transition);
}

.transformation-img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.transformation-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.no-website {
    background: var(--light-gray);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
}

.no-website i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--danger);
    opacity: 0.7;
}

.no-website p {
    font-size: 1.2rem;
    font-weight: 500;
}

.arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--brinjal);
    position: relative;
}

.arrow-text {
    font-size: 1rem;
    margin-bottom: 15px;
    background: var(--brinjal-transparent);
    padding: 10px 15px;
    border-radius: 20px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    color: var(--brinjal-dark);
    position: relative;
    z-index: 1;
}

.arrow-text::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--brinjal-lighter);
    top: 0;
    left: 0;
    border-radius: 20px;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.arrow:hover .arrow-text::before {
    transform: scaleX(1);
}

.arrow i {
    font-size: 3.5rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    animation: pulse 2s infinite;
}

/* Process Section */
.process {
    background: var(--brinjal-gradient);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.1) 0, transparent 80px),
        radial-gradient(circle at 90% 90%, rgba(255, 255, 255, 0.1) 0, transparent 100px);
    top: 0;
    left: 0;
}

.process .section-subtitle {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.process .section-title {
    color: var(--white);
}

.process .section-title::after {
    background: var(--white);
}

.process .section-description {
    color: rgba(255, 255, 255, 0.9);
}

/* Video demonstration */
.process-video {
    max-width: 800px;
    margin: 0 auto 80px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    cursor: pointer;
    overflow: hidden;
}

.video-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    z-index: 1;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.video-container:hover .video-thumbnail {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 3px solid var(--white);
    backdrop-filter: blur(5px);
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.play-button i {
    font-size: 2.5rem;
    color: var(--white);
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.video-container:hover .play-button {
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.video-container:hover .play-button i {
    transform: scale(1.2);
}

.video-caption {
    text-align: center;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    font-size: 1.1rem;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 0;
}

.timeline::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 30px;
    box-sizing: border-box;
    margin-bottom: 60px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 90px;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 90px;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-content:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

@media(max-width:900px){
    .timeline-content{
        width: 100%;
        padding: 10px;
    }

    .timeline-item:nth-child(odd) {
        left: 0;
        padding-right: 10px;
        text-align: right;
        padding: 10px;
        width: 200px;
    }
    
    .timeline-item:nth-child(even) {
        left: 35%;
        padding-left: 10px;
        padding: 10px;
        width: 200px;
    }
}

.timeline-number {
    position: absolute;
    width: 70px;
    height: 70px;
    background: var(--white);
    color: var(--brinjal);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    top: 50%;
    z-index: 1;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border: 3px solid var(--brinjal-light);
}

.timeline-item:hover .timeline-number {
    transform: translateY(-50%) scale(1.1) rotate(360deg);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    background: var(--brinjal-gradient);
    color: var(--white);
    border-color: var(--white);
}

.timeline-item:nth-child(odd) .timeline-number {
    right: -35px;
    transform: translateY(-50%);
}

.timeline-item:nth-child(even) .timeline-number {
    left: -35px;
    transform: translateY(-50%);
}

.timeline-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--white);
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
}

.timeline-title::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--white);
    bottom: 0;
    border-radius: 1px;
}

.timeline-item:nth-child(odd) .timeline-title::after {
    right: 0;
}

.timeline-item:nth-child(even) .timeline-title::after {
    left: 0;
}

.timeline-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Success Story Section */
.success-story {
    background: var(--white);
    padding: 120px 0;
    position: relative;
}

.success-story::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: var(--brinjal-transparent);
    border-radius: var(--border-radius-full);
    top: -100px;
    right: -100px;
    z-index: 0;
}

.success-story-wrapper {
    display: flex;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
    border: 1px solid var(--mid-gray);
}

.success-story-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    overflow: hidden;
}

.success-story-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(102, 51, 153, 0.4));
    z-index: 1;
}

.success-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.success-story-wrapper:hover .success-story-image img {
    transform: scale(1.05);
}

.success-story-content {
    flex: 1.5;
    padding: 60px;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 3rem;
    color: var(--brinjal);
    opacity: 0.2;
}

.success-title {
    font-size: 2.4rem;
    color: var(--brinjal-dark);
    margin-bottom: 25px;
    line-height: 1.3;
    position: relative;
    padding-bottom: 20px;
}

.success-title::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--brinjal-gradient);
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.success-text {
    color: #555;
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 35px;
}

.success-author {
    margin-bottom: 25px;
    position: relative;
    padding-left: 15px;
}

.success-author::before {
    content: "";
    position: absolute;
    width: 3px;
    height: 100%;
    background: var(--brinjal-gradient);
    left: 0;
    top: 0;
    border-radius: 2px;
}

.success-author h3 {
    font-size: 1.4rem;
    color: var(--brinjal-dark);
    margin-bottom: 5px;
}

.success-author p {
    color: #777;
    font-style: italic;
}

.success-result {
    background: var(--success);
    color: var(--white);
    display: inline-flex;
    padding: 12px 25px;
    border-radius: 30px;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.success-result:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.result-label {
    font-weight: 600;
    font-size: 1.05rem;
}

.result-value {
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Testimonials Section */
.testimonials {
    background: var(--white);
    position: relative;
}

.testimonials::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 5% 95%, var(--brinjal-transparent) 0, transparent 200px),
        radial-gradient(circle at 95% 5%, var(--brinjal-transparent) 0, transparent 200px);
    opacity: 0.7;
}

.testimonial-slider {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
}

.testimonial-avatar {
    width: 120px;
    height: 120px;
    border-radius: var(--border-radius-full);
    border: 5px solid var(--brinjal);
    overflow: hidden;
    margin-bottom: 25px;
    position: relative;
    box-shadow: var(--shadow-md), var(--brinjal-glow);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.testimonial-slide:hover .testimonial-avatar img {
    transform: scale(1.1);
}

/* Rating Stars */
.rating {
    margin-bottom: 25px;
    color: #FFD700;
    font-size: 1.3rem;
    letter-spacing: 3px;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.1));
}

.testimonial-quote {
    font-size: 1.4rem;
    color: #444;
    max-width: 900px;
    margin-bottom: 35px;
    position: relative;
    line-height: 1.9;
    padding: 0 40px;
}

.testimonial-quote::before,
.testimonial-quote::after {       
    font-size: 4rem;
    color: var(--brinjal);
    opacity: 0.3;
    position: absolute;
    line-height: 1;
}

.testimonial-quote::before {
    top: -20px;
    left: -10px;
    content: "\201C";
}

.testimonial-quote::after {
    bottom: -50px;
    right: -10px;
    content: "\201D";
}

.testimonial-author {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--brinjal-dark);
    margin-bottom: 5px;
}

.testimonial-position {
    font-size: 1rem;
    color: #777;
    margin-top: 5px;
    font-style: italic;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    gap: 15px;
}

.testimonial-dot {
    width: 14px;
    height: 14px;
    border-radius: var(--border-radius-full);
    background: var(--brinjal-transparent);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.testimonial-dot.active {
    background: var(--brinjal);
    transform: scale(1.3);
    box-shadow: var(--brinjal-glow);
    border-color: var(--white);
}

/* FAQ Section */
.faq {
    background: var(--light-gray);
    position: relative;
}

.faq::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--brinjal-transparent);
    border-radius: var(--border-radius-full);
    bottom: -200px;
    left: -200px;
    z-index: 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius-md);
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--mid-gray);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--brinjal-lighter);
}

.faq-question {
    padding: 25px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: linear-gradient(90deg, var(--white) 0%, var(--light-gray) 100%);
    transition: var(--transition);
    position: relative;
}

.faq-question::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 0;
    background: var(--brinjal-gradient);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition);
    border-radius: 2px;
}

.faq-item.active .faq-question::before,
.faq-item:hover .faq-question::before {
    height: 80%;
}

.faq-question h3 {
    font-size: 1.25rem;
    color: var(--brinjal-dark);
    transition: var(--transition);
}

.faq-item.active .faq-question h3,
.faq-item:hover .faq-question h3 {
    color: var(--brinjal);
    transform: translateX(5px);
}

.faq-icon {
    color: var(--brinjal);
    transition: var(--transition);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brinjal-transparent);
    border-radius: var(--border-radius-full);
}

.faq-icon i {
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    background: var(--brinjal);
    color: var(--white);
}

.faq-answer {
    padding: 0 35px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 35px 35px;
    max-height: 600px;
}

.faq-item.active .faq-icon i {
    transform: rotate(180deg);
}

.faq-answer p {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Pricing Section */
.pricing {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: var(--border-radius-full);
    background: var(--brinjal-transparent);
    top: -200px;
    right: -200px;
    z-index: 0;
    animation: float 15s ease-in-out infinite alternate;
}

.price-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 60px 50px;
    max-width: 650px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 1px solid var(--mid-gray);
}

.price-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-lg), var(--brinjal-glow);
    border-color: var(--brinjal-lighter);
}

.price-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, var(--brinjal-transparent) 0%, transparent 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.price-card:hover::before {
    opacity: 1;
}

/* Price Badge */
.price-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--brinjal-gradient);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: var(--shadow-md), var(--brinjal-glow);
    letter-spacing: 0.5px;
    animation: pulse 3s infinite;
}

.price-title {
    font-size: 1.8rem;
    color: var(--brinjal-dark);
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.price-title::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--brinjal-gradient);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.price-amount {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
}

.price {
    font-size: 4rem;
    font-weight: 800;
    color: var(--brinjal);
    display: inline-block;
    position: relative;
    text-shadow: 2px 2px 0 rgba(102, 51, 153, 0.1);
    background: linear-gradient(135deg, var(--brinjal) 0%, var(--brinjal-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.price::before {
    content: "₹";
    font-size: 2rem;
    position: absolute;
    top: 5px;
    left: -25px;
    background: linear-gradient(135deg, var(--brinjal) 0%, var(--brinjal-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}:root {
    --brinjal: #663399;
    --brinjal-dark: #4A2572;
    --brinjal-light: #9370DB;
    --brinjal-lighter: #D7BFF2;
    --brinjal-transparent: rgba(102, 51, 153, 0.07);
    --brinjal-gradient: linear-gradient(135deg, var(--brinjal) 0%, var(--brinjal-dark) 100%);
    --brinjal-glow: 0 0 15px rgba(102, 51, 153, 0.5);
    --white: #ffffff;
    --off-white: #fcfcfc;
    --light-gray: #f8f8f8;
    --mid-gray: #e0e0e0;
    --dark-gray: #666;
    --accent: #E5D4FF;
    --success: #4CAF50;
    --success-light: #E8F5E9;
    --warning: #FFC107;
    --warning-light: #FFF8E1;
    --danger: #F44336;
    --danger-light: #FFEBEE;
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 10px rgba(102, 51, 153, 0.1);
    --shadow-md: 0 5px 20px rgba(102, 51, 153, 0.15);
    --shadow-lg: 0 10px 40px rgba(102, 51, 153, 0.2);
    --shadow-inset: inset 0 2px 5px rgba(0, 0, 0, 0.05);
    --font-primary: 'Segoe UI', 'SF Pro Display', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: 'Segoe UI', 'SF Pro Display', Tahoma, Geneva, Verdana, sans-serif;
    --border-radius-sm: 8px;
    --border-radius-md: 15px;
    --border-radius-lg: 20px;
    --border-radius-xl: 30px;
    --border-radius-full: 50%;
}

/* Reset & Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
}

body {
    background: var(--white);
    color: #333;
    line-height: 1.7;
    overflow-x: hidden;
    font-family: var(--font-primary);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--brinjal-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    position: relative;
}

p {
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.section {
    padding: 120px 0;
    position: relative;
}

.text-center {
    text-align: center;
}

.hidden {
    display: none;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--brinjal-light);
    border-radius: 5px;
    border: 2px solid var(--light-gray);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brinjal);
}

/* Custom Selection Color */
::selection {
    background: var(--brinjal-light);
    color: var(--white);
}

/* Buttons & Interactive Elements */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    border-radius: var(--border-radius-xl);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--brinjal-gradient);
    color: var(--white);
    padding: 15px 30px;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--brinjal-light) 0%, var(--brinjal) 100%);
    z-index: -1;
    transition: var(--transition);
    transform: scaleX(0);
    transform-origin: right;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg), var(--brinjal-glow);
}

.btn-primary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-primary i {
    transition: var(--transition);
    font-size: 1.2rem;
}

.btn-outline {
    background: transparent;
    color: var(--brinjal);
    border: 2px solid var(--brinjal);
    padding: 13px 28px;
}

.btn-outline:hover {
    background: var(--brinjal);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.2rem;
}

/* Header & Navigation */
header {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 15px 0;
    border-bottom: 1px solid rgba(102, 51, 153, 0.05);
}

header.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.98);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--brinjal);
    position: relative;
    letter-spacing: -0.5px;
    z-index: 1001;
}

.logo::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--brinjal-light);
    border-radius: var(--border-radius-full);
    bottom: 5px;
    right: -12px;
    animation: pulse 2s infinite;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: #333;
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--brinjal);
    transition: var(--transition-fast);
    border-radius: 10px;
}

.nav-link:hover, 
.nav-link.active {
    color: var(--brinjal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.get-started-btn {
    background: var(--brinjal-gradient);
    color: var(--white);
    padding: 10px 24px;
    border-radius: var(--border-radius-xl);
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.get-started-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md), var(--brinjal-glow);
    background: linear-gradient(135deg, var(--brinjal-dark) 0%, var(--brinjal) 100%);
}

.get-started-btn i {
    font-size: 0.9rem;
    transition: var(--transition);
}

.get-started-btn:hover i {
    transform: translateX(4px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--brinjal);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    transition: var(--transition);
}

.mobile-menu-btn.active {
    transform: rotate(90deg);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--light-gray) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 50px;
}

.hero::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, var(--brinjal-transparent) 0, transparent 120px),
        radial-gradient(circle at 80% 70%, var(--brinjal-transparent) 0, transparent 180px);
    opacity: 0.8;
}

.hero-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.hero-text::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--brinjal-transparent);
    border-radius: var(--border-radius-full);
    top: -70px;
    left: -70px;
    z-index: -1;
    animation: float 15s ease-in-out infinite alternate;
}

.slogan {
    font-size: 3.5rem;
    color: var(--brinjal-dark);
    line-height: 1.2;
    position: relative;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.slogan::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--brinjal);
    left: 0;
    bottom: -15px;
    border-radius: 2px;
}

.slogan span {
    color: var(--brinjal);
    position: relative;
    display: inline-block;
}

.slogan span::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 30%;
    background: var(--accent);
    left: 0;
    bottom: 5px;
    z-index: -1;
    opacity: 0.6;
    border-radius: 3px;
}

.sub-slogan {
    font-size: 1.6rem;
    margin: 2rem 0 1rem;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
    background: linear-gradient(90deg, var(--brinjal) 0%, var(--brinjal-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    letter-spacing: -0.5px;
    position: relative;
}

.sub-slogan::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -10px;
    width: 5px;
    height: 100%;
    background: var(--brinjal-gradient);
    border-radius: 5px;
    animation: pulse 2s infinite;
}

.description {
    font-size: 1.25rem;
    margin: 1.5rem 0 2.5rem;
    color: #555;
    max-width: 600px;
    line-height: 1.8;
}

/* Hero stats section */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 2.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-left: 10px;
}

.stat-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    height: 20px;
    width: 3px;
    background: var(--brinjal-gradient);
    border-radius: 3px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--brinjal);
    line-height: 1.2;
    margin-bottom: 5px;
    background: linear-gradient(90deg, var(--brinjal) 0%, var(--brinjal-dark) 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--dark-gray);
    font-weight: 500;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-illustration {
    width: 100%;
    max-width: 600px;
    filter: drop-shadow(0 15px 30px rgba(102, 51, 153, 0.25));
    transform-origin: center bottom;
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.hero-badge {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 100px;
    height: 100px;
    background: var(--brinjal-gradient);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md), var(--brinjal-glow);
    animation: pulse 3s infinite;
    z-index: 2;
    transform-origin: center;
}

.badge-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-full);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(2px);
    padding: 5px;
}

.badge-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    position: relative;
    line-height: 1;
    margin-bottom: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.badge-price::before {
    content: "₹";
    font-size: 1rem;
    position: absolute;
    top: 0;
    left: -15px;
}

.badge-text {
    font-size: 0.7rem;
    color: var(--white);
    opacity: 0.9;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.cta-button {
    background: var(--brinjal-gradient);
    color: var(--white);
    padding: 16px 36px;
    border-radius: var(--border-radius-xl);
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.2px;
}

.cta-button i {
    transition: var(--transition);
    font-size: 1rem;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-lg), var(--brinjal-glow);
}

.cta-button:hover i {
    transform: translateX(5px);
}

.cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--brinjal-light) 0%, var(--brinjal) 100%);
    z-index: -1;
    transition: var(--transition);
    transform: scaleX(0);
    transform-origin: right;
}

.cta-button:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.cta-button::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 100%;
    top: 0;
    left: -100px;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-20deg);
    transition: var(--transition);
    filter: blur(5px);
}

.cta-button:hover::after {
    left: 200%;
    transition: 0.7s ease-in-out;
}

/* Animated Scroll Down */
.scroll-down {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.9rem;
    color: var(--brinjal);
    z-index: 2;
    transition: var(--transition);
}

.scroll-down:hover {
    transform: translateX(-50%) translateY(5px);
}

.scroll-down span {
    margin-bottom: 10px;
    font-weight: 500;
    background: var(--brinjal-transparent);
    padding: 5px 15px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.scroll-icon {
    width: 30px;
    height: 50px;
    border: 2px solid var(--brinjal);
    border-radius: 25px;
    position: relative;
    margin-top: 5px;
}

.scroll-icon::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--brinjal);
    border-radius: var(--border-radius-full);
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Section Styling */
.section-title-wrapper {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.section-title-wrapper::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--brinjal-transparent);
    border-radius: var(--border-radius-full);
    top: -70px;
    left: calc(50% - 250px);
    z-index: -1;
    animation: float 15s ease-in-out infinite alternate;
}

.section-subtitle {
    color: var(--brinjal);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: inline-block;
    padding: 6px 18px;
    background: var(--brinjal-transparent);
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: var(--shadow-sm);
}

.section-title {
    font-size: 2.5rem;
    color: var(--brinjal-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--brinjal-gradient);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-description {
    font-size: 1.15rem;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Features Section */
.features {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--brinjal-transparent);
    border-radius: var(--border-radius-full);
    bottom: -250px;
    right: -250px;
    opacity: 0.7;
    z-index: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--mid-gray);
}

.feature-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    background: var(--brinjal-gradient);
    top: 0;
    left: 0;
    transition: var(--transition);
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-card:hover::before {
    height: 100%;
    opacity: 0.05;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--brinjal-transparent);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: var(--brinjal);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: -100%;
    left: 0;
    background: var(--brinjal-gradient);
    transition: var(--transition);
    z-index: -1;
}

.feature-card:hover .feature-icon {
    color: var(--white);
    transform: rotateY(360deg);
    box-shadow: var(--shadow-md);
}

.feature-card:hover .feature-icon::after {
    top: 0;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--brinjal-dark);
    position: relative;
    padding-bottom: 15px;
}

.feature-title::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--brinjal-light);
    bottom: 0;
    left: 0;
    border-radius: 1px;
}

.feature-description {
    color: var(--dark-gray);
    flex-grow: 1;
    line-height: 1.8;
}

/* Samples Section */
.samples {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    position: relative;
    overflow: hidden;
}

.samples::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--brinjal-transparent);
    border-radius: var(--border-radius-full);
    top: -150px;
    left: -150px;
    z-index: 0;
}

.samples::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--brinjal-transparent);
    border-radius: var(--border-radius-full);
    bottom: -100px;
    right: -100px;
    z-index: 0;
}

.samples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.sample-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--mid-gray);
}

.sample-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: var(--shadow-lg), var(--brinjal-glow);
    border-color: var(--brinjal-lighter);
}

.sample-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.sample-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.sample-card:hover .sample-img {
    transform: scale(1.1);
}

.sample-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(102, 51, 153, 0.9), transparent);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 25px;
    gap: 15px;
}

.sample-card:hover .sample-overlay {
    opacity: 1;
}

.view-btn, .preview-btn {
    color: var(--white);
    font-weight: 600;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    width: 85%;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}




/* Video Thumbnail and Play Button */
.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.video-thumbnail {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.video-container:hover .video-thumbnail {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(102, 51, 153, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 3px solid #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.play-button i {
    color: white;
    font-size: 30px;
}

.video-container:hover .play-button {
    background: rgba(102, 51, 153, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Video Modal/Popup */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    /*aspect-ratio: 16/9;*/
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.video-modal.active .modal-content {
    transform: scale(1);
}

.modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.3s ease;
}

.close-modal:hover {
    transform: rotate(90deg);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button i {
        font-size: 24px;
    }
    
    .modal-content {
        width: 95%;
    }
}

@media(max-width:900px){
    .description{
        font-size: 0.9rem;
        text-align: justify;
    }
}