/* Advanced CSS Reset with Modern Techniques */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* CSS Custom Properties for Advanced Theming */
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(45deg, #f093fb, #f5576c);
    --accent-gradient: linear-gradient(45deg, #4facfe, #00f2fe);
    --warm-gradient: linear-gradient(45deg, #ffecd2, #fcb69f);

    --text-primary: #2d3748;
    --text-secondary: #4a5568;
    --text-muted: #718096;

    --surface-primary: #ffffff;
    --surface-secondary: #f7fafc;
    --surface-elevated: #edf2f7;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);

    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 24px;

    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
    font-size: clamp(14px, 1vw, 18px);
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    background: var(--surface-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: 'kern' 1;
    font-variant-ligatures: common-ligatures;
}

/* Advanced Selection Styling */
::selection {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    text-shadow: none;
}

::-moz-selection {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    text-shadow: none;
}

/* Modern Focus Management */
:focus-visible {
    outline: 2px solid #4facfe;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Advanced Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--surface-secondary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 4px;
    transition: background var(--transition-base);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

/* Firefox Scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: #667eea var(--surface-secondary);
}

/* Advanced Professional Loading Animation */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.page-loader::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: loaderBackground 3s ease-in-out infinite;
}

@keyframes loaderBackground {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.7;
    }
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
}

.loader-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top: 3px solid white;
    border-right: 3px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: advancedSpin 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    margin: 0 auto 20px;
    position: relative;
}

.loader-spinner::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 3px solid transparent;
    border-top: 3px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: advancedSpin 2s linear infinite reverse;
}

@keyframes advancedSpin {
    0% {
        transform: rotate(0deg) scale(1);
        filter: hue-rotate(0deg);
    }

    50% {
        transform: rotate(180deg) scale(1.1);
        filter: hue-rotate(90deg);
    }

    100% {
        transform: rotate(360deg) scale(1);
        filter: hue-rotate(180deg);
    }
}

.loader-content p {
    font-weight: 500;
    letter-spacing: 0.5px;
    animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes fadeInOut {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

/* Advanced Interactive Cursor */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--primary-gradient);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: all var(--transition-base);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
}

.custom-cursor::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 50%;
    animation: cursorPulse 2s ease-in-out infinite;
}

@keyframes cursorPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.3;
    }
}

.custom-cursor.hover {
    transform: translate(-50%, -50%) scale(1.5);
    background: var(--secondary-gradient);
    box-shadow: 0 0 30px rgba(240, 147, 251, 0.5);
}

.custom-cursor.click {
    transform: translate(-50%, -50%) scale(0.8);
}

/* Advanced Glassmorphism Utility */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.glass-dark {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
}

.navbar.hidden {
    transform: translateY(-100%);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-svg,
.footer-logo {
    height: 65px;
    width: auto;
    transition: all 0.3s ease;
}

.logo-svg:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.2));
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #2d3748;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    padding: 8px 16px;
    border-radius: 8px;
    overflow: hidden;
}

.nav-link:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link.active {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.nav-link.active::after {
    width: 80%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #2d3748;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background:
            radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    }

    50% {
        background:
            radial-gradient(circle at 80% 20%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 20% 80%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 60% 60%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    opacity: 0;
    animation: titleReveal 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
}

@keyframes titleReveal {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.gradient-text {
    background: linear-gradient(45deg, #f093fb, #f5576c, #ff6b9d);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    animation: gradientFlow 4s ease-in-out infinite;
    position: relative;
}

.gradient-text-alt {
    background: linear-gradient(45deg, #4facfe, #00f2fe, #43e97b);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    animation: gradientFlow 4s ease-in-out infinite reverse;
    position: relative;
}

@keyframes gradientFlow {

    0%,
    100% {
        background-position: 0% 50%;
        filter: hue-rotate(0deg);
    }

    50% {
        background-position: 100% 50%;
        filter: hue-rotate(20deg);
    }
}

.gradient-text::after,
.gradient-text-alt::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0;
    line-height: 1.6;
    animation: subtitleReveal 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s forwards;
}

@keyframes subtitleReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 0.9;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    animation: buttonsReveal 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.1s forwards;
}

@keyframes buttonsReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-block;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, #f093fb, #f5576c, #ff6b9d);
    background-size: 200% 200%;
    color: white;
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.3);
    animation: gradientButton 3s ease-in-out infinite;
}

@keyframes gradientButton {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(240, 147, 251, 0.4);
    animation-duration: 1s;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover::after {
    width: 100%;
}

/* Advanced Button Ripple Effect */
.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Floating Elements */
.hero-visual {
    position: relative;
    height: 400px;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.float-element {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #f093fb, #f5576c);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #4facfe, #00f2fe);
    top: 60%;
    right: 20%;
    animation-delay: 1s;
}

.element-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    top: 10%;
    right: 10%;
    animation-delay: 2s;
}

.element-4 {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ffecd2, #fcb69f);
    bottom: 20%;
    left: 30%;
    animation-delay: 3s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.8;
    }

    25% {
        transform: translateY(-30px) rotate(90deg) scale(1.1);
        opacity: 1;
    }

    50% {
        transform: translateY(-15px) rotate(180deg) scale(0.9);
        opacity: 0.9;
    }

    75% {
        transform: translateY(15px) rotate(270deg) scale(1.05);
        opacity: 0.95;
    }
}

/* Advanced floating elements with magnetic effect */
.float-element {
    position: absolute;
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.float-element:hover {
    animation-play-state: paused;
    transform: scale(1.2) !important;
    filter: brightness(1.2);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.float-element::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.3), transparent);
    animation: sectionBorder 3s ease-in-out infinite;
}

@keyframes sectionBorder {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.8;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGradient 4s ease-in-out infinite;
    position: relative;
}

@keyframes titleGradient {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    transform: translateX(-50%);
    border-radius: 2px;
    animation: underlineGlow 2s ease-in-out infinite;
}

@keyframes underlineGlow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(102, 126, 234, 0.3);
        width: 60px;
    }

    50% {
        box-shadow: 0 0 20px rgba(102, 126, 234, 0.6);
        width: 80px;
    }
}

.section-subtitle {
    font-size: 1.1rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2d3748;
}

.about-text p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h4 {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

/* Why Choose Us Section */
.why-choose {
    background: white;
    padding: 100px 0;
}

.why-choose .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    padding: 40px 30px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Animation states for enhanced experience */
.feature-card.animate-in {
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
}

.feature-card:hover::after {
    opacity: 1;
}

/* Staggered animation for feature cards */
.feature-card:nth-child(1) {
    animation-delay: 0.1s;
    transition-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
    transition-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
    transition-delay: 0.3s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.4s;
    transition-delay: 0.4s;
}

/* Enhanced icon animations */
.feature-icon {
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }
}

.feature-card:nth-child(1) .feature-icon {
    animation-delay: 0s;
}

.feature-card:nth-child(2) .feature-icon {
    animation-delay: 0.5s;
}

.feature-card:nth-child(3) .feature-icon {
    animation-delay: 1s;
}

.feature-card:nth-child(4) .feature-icon {
    animation-delay: 1.5s;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.25);
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
    background: linear-gradient(45deg, #764ba2, #667eea);
}

.feature-card:hover .feature-icon::before {
    transform: rotate(45deg) translate(50%, 50%);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
    stroke-width: 2;
    fill: none;
    stroke: currentColor;
}

.feature-card:hover .feature-icon svg {
    transform: scale(1.15);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 18px;
    color: #2d3748;
    position: relative;
    z-index: 2;
    font-weight: 600;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: #667eea;
}

.feature-card p {
    color: #4a5568;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.feature-card:hover p {
    color: #2d3748;
}

/* Servic
es Section */
.services {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.services .section-title {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.services .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #f093fb, #f5576c);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: white;
}

.service-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    padding: 5px 0;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding-left: 20px;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4facfe;
    font-weight: bold;
}

.cta-section {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-section h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* Products Section */
.products {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.product-showcase {
    max-width: 1000px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
}

.product-card.featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
}

.product-image {
    padding: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-mockup {
    width: 280px;
    height: 500px;
    background: #1a202c;
    border-radius: 25px;
    padding: 20px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* CrowdLaunch India Mockup Styles */
.crowdlaunch-mockup {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.crowdlaunch-mockup .mockup-screen {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.crowdlaunch-interface {
    height: 100%;
    display: flex;
    flex-direction: column;
    color: #2d3748;
}

.crowdlaunch-header {
    padding: 20px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 15px 15px 0 0;
}

.made-in-india-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.crowdlaunch-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.campaign-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.campaign-title {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(45deg, #4facfe, #00f2fe);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.progress-stats {
    font-size: 0.8rem;
    margin-bottom: 8px;
    opacity: 0.9;
}

.campaign-backers {
    font-size: 0.7rem;
    opacity: 0.8;
}

.platform-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: auto;
}

.platform-stats .stat {
    text-align: center;
    padding: 10px 5px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(240, 147, 251, 0.3);
}

.mockup-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    border-radius: 15px;
    overflow: hidden;
}

.chat-interface {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.chat-header {
    padding: 20px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.status-indicator {
    width: 10px;
    height: 10px;
    background: #48bb78;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.chat-messages {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message {
    padding: 12px 16px;
    border-radius: 18px;
    max-width: 80%;
    font-size: 0.9rem;
    line-height: 1.4;
}

.message.user {
    background: linear-gradient(45deg, #4facfe, #00f2fe);
    color: white;
    align-self: flex-end;
}

.message.bot {
    background: #e2e8f0;
    color: #2d3748;
    align-self: flex-start;
}

.product-content {
    padding: 50px 40px;
}

.product-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-tagline {
    font-size: 1.1rem;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 20px;
}

.product-content>p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 30px;
}

.product-features h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #2d3748;
}

.product-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.product-features li {
    padding: 8px 0;
    color: #4a5568;
    line-height: 1.6;
}

.product-features strong {
    color: #2d3748;
}

.product-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.stat {
    text-align: center;
}

.stat h4 {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat p {
    color: #718096;
    font-size: 0.9rem;
}

.product-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Upcoming Products */
.upcoming-products {
    margin-top: 40px;
}

.upcoming-products h3 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #f093fb, #f5576c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.upcoming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.upcoming-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.upcoming-card:hover {
    transform: translateY(-5px);
}

.upcoming-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #4facfe, #00f2fe);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
}

.upcoming-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2d3748;
}

.upcoming-card p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
}

.coming-soon-badge {
    display: inline-block;
    padding: 6px 12px;
    background: linear-gradient(45deg, #f093fb, #f5576c);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
}

.contact .section-title {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.contact .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: white;
}

.contact-info>p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: white;
}

.contact-item a {
    color: #4facfe;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #00f2fe;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.cta-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-box h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Contact Animation */
.contact-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
}

.contact-animation {
    position: relative;
    width: 200px;
    height: 200px;
}

.pulse-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 2px solid #4facfe;
    border-radius: 50%;
    animation: pulse-expand 3s ease-in-out infinite;
}

.pulse-circle.delay-1 {
    animation-delay: 1s;
    border-color: #f093fb;
}

.pulse-circle.delay-2 {
    animation-delay: 2s;
    border-color: #667eea;
}

@keyframes pulse-expand {
    0% {
        width: 50px;
        height: 50px;
        opacity: 1;
    }

    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

/* Footer */
.footer {
    background: #1a202c;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 15px;
    font-style: italic;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: white;
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #4facfe;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Advanced CSS Features */

/* Modern Container Queries Support */
@container (min-width: 768px) {
    .feature-card {
        padding: 50px 40px;
    }
}

/* Advanced CSS Grid with Subgrid Support */
@supports (grid-template-rows: subgrid) {
    .features-grid {
        display: grid;
        grid-template-rows: subgrid;
    }
}

/* CSS Logical Properties for Better Internationalization */
.section-header {
    margin-block-end: 60px;
    text-align: center;
}

.nav-link {
    padding-inline: 16px;
    padding-block: 8px;
}

/* Advanced Backdrop Filter Effects */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Advanced Scroll Snap */
.scroll-container {
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

.scroll-section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

/* CSS Houdini Paint Worklet Support */
@supports (background: paint(something)) {
    .hero {
        background: paint(gradient-noise);
    }
}

/* Advanced Color Functions */
.modern-gradient {
    background: linear-gradient(135deg,
            color(display-p3 0.4 0.5 0.9),
            color(display-p3 0.5 0.3 0.7));
}

/* CSS Nesting (Future Support) */
.feature-card {
    transition: all var(--transition-base);

    &:hover {
        transform: translateY(-15px) scale(1.02);

        .feature-icon {
            transform: scale(1.1) rotate(5deg);
        }
    }

    &:focus-within {
        outline: 2px solid var(--accent-gradient);
        outline-offset: 4px;
    }
}

/* Advanced Animation with Motion Path */
@keyframes orbit {
    0% {
        offset-distance: 0%;
    }

    100% {
        offset-distance: 100%;
    }
}

.orbit-element {
    offset-path: path('M 50 50 Q 100 25 150 50 Q 100 75 50 50');
    animation: orbit 10s linear infinite;
}

/* CSS Containment for Performance */
.feature-card {
    contain: layout style paint;
}

.hero-visual {
    contain: layout paint;
}

/* Advanced Clipping Paths */
.clip-path-element {
    clip-path: polygon(0% 0%, 100% 0%, 85% 100%, 0% 100%);
    transition: clip-path var(--transition-base);
}

.clip-path-element:hover {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* CSS Masks for Complex Effects */
.masked-element {
    mask: linear-gradient(45deg, black 50%, transparent 50%);
    -webkit-mask: linear-gradient(45deg, black 50%, transparent 50%);
}

/* Advanced Filter Effects */
.filter-effects {
    filter:
        drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1)) hue-rotate(15deg) saturate(1.2);
    backdrop-filter:
        blur(10px) brightness(1.1) contrast(1.1);
}

/* CSS Scroll Timeline (Experimental) */
@scroll-timeline scroll-in-view {
    source: selector(#scroll-container);
    orientation: vertical;
    scroll-offsets: 0%, 100%;
}

.scroll-animated {
    animation: fade-in 1s linear scroll-in-view;
}

/* Modern Focus Management */
:focus-visible {
    outline: 2px solid color-mix(in srgb, var(--primary-gradient) 70%, transparent);
    outline-offset: 2px;
    border-radius: var(--border-radius-sm);
}

/* CSS Grid Areas with Named Lines */
.advanced-grid {
    display: grid;
    grid-template-columns:
        [sidebar-start] 250px [sidebar-end main-start] 1fr [main-end];
    grid-template-rows:
        [header-start] auto [header-end content-start] 1fr [content-end footer-start] auto [footer-end];
}

/* Responsive Design with Container Queries */
.responsive-card {
    container-type: inline-size;
}

@container (min-width: 300px) {
    .responsive-card {
        display: flex;
        flex-direction: row;
    }
}

@container (min-width: 500px) {
    .responsive-card {
        gap: 2rem;
    }
}

/* Advanced Pseudo-elements */
.decorative-element::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: conic-gradient(from 0deg, var(--primary-gradient), var(--secondary-gradient), var(--primary-gradient));
    border-radius: inherit;
    z-index: -1;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* CSS Layers for Better Cascade Management */
@layer base, components, utilities;

@layer base {
    * {
        box-sizing: border-box;
    }
}

@layer components {
    .btn {
        /* Component styles */
    }
}

@layer utilities {
    .sr-only {
        /* Utility styles */
    }
}

/* Responsive Design Enhancements */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: left var(--transition-base);
        box-shadow: var(--shadow-lg);
        padding: 20px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    .hero-buttons {
        justify-content: center;
    }

    .features-grid,
    .services-grid,
    .upcoming-grid {
        grid-template-columns: 1fr;
    }

    .product-card.featured {
        grid-template-columns: 1fr;
    }

    .product-image {
        order: 2;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .product-stats {
        justify-content: center;
    }

    .product-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .section-title {
        font-size: clamp(1.8rem, 6vw, 2rem);
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .product-mockup {
        width: 240px;
        height: 420px;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 60px 0;
    }
}

/* Print Styles */
@media print {

    .navbar,
    .page-loader,
    .custom-cursor,
    .floating-elements {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .hero {
        background: white !important;
        color: black !important;
    }

    .btn {
        border: 1px solid black !important;
        background: white !important;
        color: black !important;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --surface-primary: #1a202c;
        --surface-secondary: #2d3748;
        --surface-elevated: #4a5568;
        --text-primary: #f7fafc;
        --text-secondary: #e2e8f0;
        --text-muted: #a0aec0;
    }

    body {
        background: var(--surface-primary);
        color: var(--text-primary);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .features-grid,
    .services-grid,
    .upcoming-grid {
        grid-template-columns: 1fr;
    }

    .product-card.featured {
        grid-template-columns: 1fr;
    }

    .product-image {
        order: 2;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .product-stats {
        justify-content: center;
    }

    .product-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .product-mockup {
        width: 240px;
        height: 420px;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 60px 0;
    }
}

/* Smooth Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #764ba2, #667eea);
}

/* Enhan
ced SVG Icon Styling for Why Choose Us Section */
.feature-icon svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-card:hover .feature-icon svg {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
    stroke-width: 2.5;
}

/* Ensure icons are always visible */
.feature-icon svg path,
.feature-icon svg circle,
.feature-icon svg rect,
.feature-icon svg line,
.feature-icon svg polygon {
    stroke: currentColor !important;
    fill: none !important;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Individual icon enhancements */
.feature-card:nth-child(1) .feature-icon {
    background: linear-gradient(45deg, #667eea, #764ba2);
}

.feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(45deg, #f093fb, #f5576c);
}

.feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(45deg, #4facfe, #00f2fe);
}

.feature-card:nth-child(4) .feature-icon {
    background: linear-gradient(45deg, #ffecd2, #fcb69f);
    color: #2d3748;
}

/* Icon glow effect */
.feature-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    filter: blur(10px);
}

.feature-card:hover .feature-icon::after {
    opacity: 0.3;
}

/* Addi
tional fixes for Why Choose Us icons */
.why-choose .feature-card {
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.why-choose .feature-icon {
    flex-shrink: 0;
    margin-bottom: 25px;
}

.why-choose .feature-card h3 {
    margin-bottom: 15px;
    text-align: center;
}

.why-choose .feature-card p {
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

/* Ensure proper spacing and alignment */
.why-choose .features-grid {
    align-items: stretch;
}

/* Debug styles - remove if not needed */
.feature-icon {
    border: 2px solid transparent;
}

.feature-icon:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

/* Enhanced visibility for SVG elements */
.feature-icon svg * {
    vector-effect: non-scaling-stroke;
}

/* E
nhanced logo styling */
.nav-logo {
    position: relative;
    z-index: 10;
}

.nav-logo::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-logo:hover::before {
    opacity: 1;
}

/* Footer logo enhancement */
.footer-logo {
    height: 60px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
    transform: scale(1.02);
}

/* Logo glow effect */
.logo-svg {
    filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.1));
}

.navbar.scrolled .logo-svg {
    filter: drop-shadow(0 3px 6px rgba(102, 126, 234, 0.15));
}

/* Additional mobile responsive styles for CrowdLaunch mockup */
@media (max-width: 480px) {
    .crowdlaunch-mockup {
        width: 240px;
        height: 420px;
    }

    .platform-stats {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .platform-stats .stat {
        font-size: 0.6rem;
        padding: 8px 4px;
    }

    .crowdlaunch-content {
        padding: 15px;
    }

    .campaign-card {
        padding: 12px;
    }

    .made-in-india-badge {
        font-size: 0.6rem;
        padding: 3px 6px;
    }
}

/* --- Our Works Page Styles --- */

.works-hero {
    padding: 120px 0 60px;
    text-align: center;
    background: var(--surface-secondary);
    position: relative;
    overflow: hidden;
}

.works-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.05) 0%, transparent 60%);
    animation: rotate 60s linear infinite;
    z-index: 0;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.project-card {
    background: var(--surface-primary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.project-image-container {
    height: 250px;
    background: var(--surface-secondary);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-image-placeholder {
    font-size: 4rem;
    opacity: 0.2;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image-placeholder {
    transform: scale(1.1) rotate(5deg);
}

.project-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.project-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.project-links {
    margin-top: auto;
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.badge.app {
    background: rgba(240, 147, 251, 0.1);
    color: #d645b8;
}

.badge.web {
    background: rgba(79, 172, 254, 0.1);
    color: #0099ff;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* --- Enhanced UI/UX Refinements --- */

/* Smoother Button Hover */
.btn {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease;
}

.btn:active {
    transform: scale(0.98);
}

/* Glassmorphism Refinement */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Footer Social Links */
.footer-links a {
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #f093fb;
    transform: translateX(5px);
}