/* Base Styles */
:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #ec4899;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --gradient-primary: linear-gradient(135deg, #6366f1, #8b5cf6, #ec4899);
    --gradient-secondary: linear-gradient(135deg, #3b82f6, #2dd4bf);
    --gradient-hero: linear-gradient(to right, #ff0080, #7928ca, #4338ca, #0070f3);
    --gradient-hero-animated: linear-gradient(270deg, #ff0080, #ff8c00, #7928ca, #0070f3, #03c4a1);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --border-radius: 0.5rem;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    font-weight: 700;
}

.hero-content h1.gradient-text {
    background: linear-gradient(to right, #ff3d9a, #ff8c00, #8a3df5, #3d8bff);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradient-shift 8s ease infinite;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.5px;
    font-weight: 800;
    filter: brightness(1.2) contrast(1.1);
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.btn-primary {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: rgba(99, 102, 241, 0.1);
}

/* Futuristic Header & Navigation with Indian Touch */
.futuristic-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(10, 15, 30, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
    overflow: hidden;
}

.header-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.chakra-wheel {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px solid rgba(99, 102, 241, 0.1);
    top: -75px;
    right: 10%;
    animation: rotate 20s linear infinite;
}

.chakra-wheel::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed rgba(236, 72, 153, 0.1);
    animation: rotate-reverse 15s linear infinite;
}

.chakra-wheel::after {
    content: '';
    position: absolute;
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border-radius: 50%;
    border: 1px solid rgba(99, 102, 241, 0.2);
    animation: pulse-glow 4s ease-in-out infinite alternate;
}

.header-glow {
    position: absolute;
    width: 200px;
    height: 100px;
    background: linear-gradient(90deg, #ff3d9a22, #3d8bff22);
    filter: blur(40px);
    top: -50px;
    left: 20%;
    animation: float 8s ease-in-out infinite alternate;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes rotate-reverse {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 10px rgba(99, 102, 241, 0.2);
        transform: scale(1);
    }
    100% {
        box-shadow: 0 0 20px rgba(236, 72, 153, 0.3);
        transform: scale(1.1);
    }
}

@keyframes float {
    0% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(10px) translateX(20px); }
    100% { transform: translateY(-10px) translateX(-20px); }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-container {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 45px;
    height: 45px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 5px rgba(99, 102, 241, 0.5));
}

.logo-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3), transparent 70%);
    border-radius: 50%;
    animation: pulse-logo 3s ease-in-out infinite alternate;
}

@keyframes pulse-logo {
    0% { transform: scale(0.9); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0.8; }
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-weight: 700;
    font-size: 1.3rem;
    background: linear-gradient(90deg, #ff3d9a, #3d8bff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 0.5px;
}

.logo-tagline {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 0.8rem;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ff3d9a, #3d8bff);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.nav-link:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-icon {
    font-size: 0.9rem;
    color: rgba(99, 102, 241, 0.9);
}

.nav-text {
    position: relative;
}

.btn-futuristic {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(90deg, #ff3d9a, #3d8bff);
    color: white;
    padding: 0.7rem 1.2rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-icon {
    position: relative;
    z-index: 2;
    font-size: 0.9rem;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #ff3d9a, #3d8bff);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.btn-futuristic:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.btn-futuristic:hover .btn-glow {
    opacity: 0.8;
    animation: btn-pulse 1.5s infinite alternate;
}

@keyframes btn-pulse {
    0% { filter: blur(5px); }
    100% { filter: blur(15px); }
}

.menu-toggle {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 25px;
    position: relative;
    z-index: 3;
}

.menu-icon {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ff3d9a, #3d8bff);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 6rem 2rem 2rem;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.9), rgba(241, 245, 249, 0.9));
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 100px rgba(255, 255, 255, 0.5);
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 20%);
    z-index: -1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    transform: perspective(500px) translateZ(0);
    transition: transform 0.3s ease;
}

.hero-content h1:hover {
    transform: perspective(500px) translateZ(10px);
}

.hero-content h1::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(270deg, #ff5eae, #ffb84d, #a76aff, #5eacff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0.5;
    filter: blur(8px) brightness(1.5);
    animation: pulse 4s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% {
        opacity: 0.4;
        filter: blur(8px) brightness(1.5);
        transform: translateY(0);
    }
    100% {
        opacity: 0.7;
        filter: blur(6px) brightness(1.8);
        transform: translateY(-2px);
    }
}

.hero-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.stats-container {
    display: flex;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    z-index: -1;
}

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

.stat-item p {
    font-weight: 500;
    color: var(--dark-color);
    margin-top: 0.5rem;
    font-size: 1rem;
    opacity: 0.8;
}

.stat-item h3 {
    font-size: 1.8rem;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
    transition: transform 0.3s ease, opacity 0.3s ease;
    position: relative;
    display: inline-block;
}

.stat-item h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-hero);
    transform: scaleX(0.7);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.stat-item h3:hover::after {
    transform: scaleX(1);
}

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

.hero-image img {
    max-width: 80%;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.blob-animation {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: blob-move 8s infinite alternate;
    z-index: 1;
}

@keyframes blob-move {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(50px, -30px) scale(1.2);
    }
}

/* Services Section */
.services {
    padding: 6rem 2rem;
    background-color: var(--light-color);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to bottom, rgba(99, 102, 241, 0.05), transparent);
    transition: var(--transition);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Services Pricing Section */
.services-pricing {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.9), rgba(241, 245, 249, 0.9));
    position: relative;
    overflow: hidden;
}

.services-pricing::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image:
        radial-gradient(circle at 10% 10%, rgba(99, 102, 241, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 90% 90%, rgba(236, 72, 153, 0.1) 0%, transparent 30%);
    z-index: 0;
}

.services-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.8rem 1.5rem;
    background: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    color: var(--dark-color);
    font-family: 'Poppins', sans-serif;
}

.tab-btn.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.tab-btn:hover:not(.active) {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.9);
}

.services-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.tab-content {
    display: none;
    flex-direction: column;
    gap: 2rem;
}

.tab-content.active {
    display: flex;
}

.service-item {
    display: flex;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

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

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-primary);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    font-size: 2.5rem;
    color: var(--primary-color);
    padding: 1.5rem;
    background: rgba(99, 102, 241, 0.05);
}

.service-details {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.service-details h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.service-details p {
    margin-bottom: 1rem;
    color: #64748b;
    flex: 1;
}

.service-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.highlight-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.btn-service {
    padding: 0.6rem 1.2rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.9rem;
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.view-all-services {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

/* Services Pricing Section */
.services-pricing {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.9), rgba(241, 245, 249, 0.9));
    position: relative;
    overflow: hidden;
}

.services-pricing::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image:
        radial-gradient(circle at 10% 10%, rgba(99, 102, 241, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 90% 90%, rgba(236, 72, 153, 0.1) 0%, transparent 30%);
    z-index: 0;
}

.services-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.8rem 1.5rem;
    background: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    color: var(--dark-color);
    font-family: 'Poppins', sans-serif;
}

.tab-btn.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.tab-btn:hover:not(.active) {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.9);
}

.services-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.tab-content {
    display: none;
    flex-direction: column;
    gap: 2rem;
}

.tab-content.active {
    display: flex;
}

.service-item {
    display: flex;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

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

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-primary);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    font-size: 2.5rem;
    color: var(--primary-color);
    padding: 1.5rem;
    background: rgba(99, 102, 241, 0.05);
}

.service-details {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.service-details h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.service-details p {
    margin-bottom: 1rem;
    color: #64748b;
    flex: 1;
}

.service-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.highlight-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.btn-service {
    padding: 0.6rem 1.2rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.9rem;
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.view-all-services {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

/* Pricing Section */
.pricing {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.8), rgba(241, 245, 249, 0.8));
}

.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    position: relative;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid transparent;
    background:
        linear-gradient(white, white) padding-box,
        var(--gradient-primary) border-box;
    z-index: 2;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-features ul {
    margin-bottom: 2rem;
}

.pricing-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.pricing-features i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* CTA Section */
.cta {
    padding: 6rem 2rem;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, white, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.cta p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta .btn-primary {
    background: white;
    color: var(--primary-color);
}

.cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Futuristic Footer with Indian Touch */
.futuristic-footer {
    background: linear-gradient(to bottom, #0a0f1e, #1a1f3e);
    color: white;
    padding: 5rem 2rem 1rem;
    position: relative;
    overflow: hidden;
}

.footer-mandala {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}

.mandala-inner,
.mandala-middle,
.mandala-outer {
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.mandala-inner {
    width: 150px;
    height: 150px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: rotate 20s linear infinite;
}

.mandala-inner::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    animation: rotate-reverse 15s linear infinite;
}

.mandala-middle {
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: rotate-reverse 30s linear infinite;
}

.mandala-middle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    animation: rotate 25s linear infinite;
}

.mandala-outer {
    width: 450px;
    height: 450px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: rotate 40s linear infinite;
}

.mandala-outer::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.05);
    animation: rotate-reverse 35s linear infinite;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-container {
    position: relative;
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.5));
}

.footer-logo-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3), transparent 70%);
    border-radius: 50%;
    animation: pulse-logo 3s ease-in-out infinite alternate;
    top: 0;
    left: 0;
}

.footer-branding {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #ff3d9a, #3d8bff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 0.5px;
}

.footer-slogan {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.hindi-text {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
}

.separator {
    color: rgba(255, 255, 255, 0.3);
}

.footer-links-container {
    flex: 2;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
}

.footer-column {
    min-width: 180px;
}

.footer-heading {
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.heading-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(236, 72, 153, 0.2));
    color: white;
    font-size: 0.8rem;
}

.footer-link-item {
    margin-bottom: 1rem;
}

.footer-link-item a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: inline-block;
    position: relative;
}

.link-hover-effect {
    position: relative;
    display: inline-block;
}

.link-hover-effect::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #ff3d9a, #3d8bff);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.footer-link-item a:hover {
    color: white;
}

.footer-link-item a:hover .link-hover-effect::after {
    transform: scaleX(1);
    transform-origin: left;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-icon {
    color: rgba(99, 102, 241, 0.9);
    font-size: 0.9rem;
}

.social-icons-container {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-icon-link {
    display: block;
}

.social-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff3d9a, #3d8bff);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.social-icon-wrapper i {
    position: relative;
    z-index: 1;
}

.social-icon-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
}

.social-icon-wrapper:hover::before {
    opacity: 1;
}

.newsletter-signup {
    display: flex;
    margin-top: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-radius: 30px 0 0 30px;
    font-family: 'Poppins', sans-serif;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
    padding: 0.8rem 1.2rem;
    border: none;
    background: linear-gradient(90deg, #ff3d9a, #3d8bff);
    color: white;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    filter: brightness(1.2);
}

.footer-divider {
    max-width: 1200px;
    margin: 3rem auto 1.5rem;
    position: relative;
    z-index: 1;
}

.divider-pattern {
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(99, 102, 241, 0.3) 20%,
        rgba(236, 72, 153, 0.3) 50%,
        rgba(99, 102, 241, 0.3) 80%,
        transparent 100%
    );
    position: relative;
}

.divider-pattern::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #ff3d9a, #3d8bff);
    border-radius: 50%;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.copyright-highlight {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
}

.footer-bottom-design {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ashoka-chakra {
    font-size: 1.2rem;
    color: rgba(99, 102, 241, 0.9);
    animation: rotate 10s linear infinite;
    display: inline-block;
}

.digital-india {
    font-size: 0.9rem;
    font-weight: 600;
    background: linear-gradient(90deg, #ff9933, #ffffff, #138808);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 992px) {
    /* Hero Section */
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 8rem;
    }

    .hero-content {
        margin-bottom: 3rem;
    }

    .stats-container {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    /* Pricing Section */
    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    /* Footer */
    .footer-mandala {
        width: 400px;
        height: 400px;
    }

    .mandala-outer {
        width: 300px;
        height: 300px;
    }

    .mandala-middle {
        width: 200px;
        height: 200px;
    }

    .footer-links {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    /* Header */
    .navbar {
        padding: 0.8rem 1.5rem;
    }

    .nav-links, .cta-button {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .logo-tagline {
        display: none;
    }

    /* Hero Section */
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    /* Section Headers */
    .section-header h2 {
        font-size: 2rem;
    }

    /* CTA Section */
    .cta h2 {
        font-size: 2rem;
    }

    .cta h3 {
        font-size: 1.5rem;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-logo {
        align-items: center;
        text-align: center;
    }

    .footer-branding {
        align-items: center;
    }

    .footer-links-container {
        width: 100%;
    }

    .footer-links {
        justify-content: space-around;
    }

    .footer-column {
        min-width: 160px;
    }

    .footer-heading {
        justify-content: center;
    }

    .footer-link-item {
        text-align: center;
    }

    .contact-item {
        justify-content: center;
    }

    .social-icons-container {
        justify-content: center;
    }

    .newsletter-signup {
        max-width: 300px;
        margin: 1rem auto;
    }
}

@media (max-width: 576px) {
    /* Header */
    .logo-name {
        font-size: 1.1rem;
    }

    .logo img {
        width: 35px;
        height: 35px;
    }

    /* Hero Section */
    .hero-content h1 {
        font-size: 2rem;
    }

    .stats-container {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    /* Pricing Section */
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        width: 100%;
    }

    /* Services Tabs */
    .services-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }

    .tab-btn {
        width: 100%;
    }

    /* Service Items */
    .service-item {
        flex-direction: column;
    }

    .service-icon {
        min-width: auto;
        padding: 1rem;
    }

    .service-item::before {
        width: 100%;
        height: 5px;
        top: 0;
        left: 0;
    }

    /* Footer */
    .footer-mandala {
        display: none;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-column {
        width: 100%;
    }

    .footer-slogan {
        flex-direction: column;
        gap: 0.5rem;
    }

    .separator {
        display: none;
    }

    .newsletter-signup {
        width: 100%;
    }
}
