/* Base Styles */
:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --dark-color: #1f2937;
    --light-color: #f9fafb;
    --text-light: #6b7280;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --transition: all 0.3s ease;
    --nav-height: 70px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #ffffff;
    overflow-x: hidden;
    padding-top: var(--nav-height);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3), 0 2px 4px -1px rgba(37, 99, 235, 0.2);
}

.btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.section-padding {
    padding: 6rem 0;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

.nav-links a {
    color: var(--dark-color);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--dark-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* Modern Color Variables */
:root {
    /* Primary Blue Theme */
    --primary: #2563EB;    /* Blue-600 */
    --primary-light: #3B82F6; /* Blue-500 */
    --primary-dark: #1D4ED8;  /* Blue-700 */
    --primary-ultra-light: #EFF6FF; /* Blue-50 */
    --primary-ultra-dark: #1E40AF;  /* Blue-800 */
    
    /* Secondary Blues */
    --secondary: #60A5FA;  /* Blue-400 */
    --secondary-light: #93C5FD; /* Blue-300 */
    --secondary-dark: #3B82F6;  /* Blue-500 */
    
    /* Accent Colors */
    --accent: #3B82F6;    /* Primary Blue as accent */
    --accent-light: #60A5FA; /* Lighter blue accent */
    
    /* Neutral Colors */
    --dark: #1E293B;      /* Slate-800 */
    --light: #F8FAFC;     /* Slate-50 */
    --text: #334155;      /* Slate-700 */
    --text-light: #64748B; /* Slate-500 */
    --border: #E2E8F0;    /* Slate-200 */
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    --gradient-hero: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 50%, #BFDBFE 100%);
}

/* Work Showcase Section */
.work-showcase {
    padding: 4rem 0;
    background-color: #f9fafb;
    overflow: hidden;
}

.highlight-blue {
    color: var(--primary-color);
}

.work-showcase h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.25rem;
    color: #1f2937;
}

.work-showcase-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.work-showcase-track {
    display: flex;
    gap: 20px;
    will-change: transform;
    padding: 10px 0;
}

.work-showcase-item {
    flex: 0 0 auto;
    width: 300px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.work-showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    z-index: 1002;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu */
@media (max-width: 992px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2rem;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 1rem 0;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    /* Staggered animation for menu items */
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.3s; }
    
    body.nav-open {
        overflow: hidden;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: white;
    margin-top: 60px; /* Add space for fixed navbar */
}

/* Particle.js container */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 0;
}

/* Cursor Follower */
.cursor-follower {
    position: fixed;
    width: 12px; /* Reduced from 20px */
    height: 12px; /* Reduced from 20px */
    background-color: #2563eb;
    border: 1.5px solid #1d4ed8; /* Slightly thinner border */
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    box-shadow: 0 0 6px rgba(37, 99, 235, 0.4); /* More subtle glow */
    transition: transform 0.1s ease-out, width 0.15s, height 0.15s, background-color 0.15s;
    will-change: transform;
    display: none; /* Initially hidden */
}

/* Hide cursor on interactive elements */
button, a, input, textarea, select, label, [role="button"] {
    cursor: none !important;
}

/* Ensure content is above particles */
.hero .container {
    position: relative;
    z-index: 1;
}

/* Hero content styling */
.hero-content {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 90%;
    margin: 2rem auto;
    text-align: center;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Glass effect overlay */
.hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    z-index: -1;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.05);
}

/* Improve text readability with better contrast */
.hero-content h1,
.hero-content .hero-subtitle,
.hero-content .hero-description,
.hero-content .hero-badge,
.hero-content .cta-button {
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        display: flex;
        align-items: center;
        min-height: calc(100vh - 60px);
        padding: 1rem;
    }
    
    .hero-content {
        width: 100%;
        max-width: 95%;
        margin: 0 auto;
        padding: 1.5rem;
        transform: none;
    }
}
.hero-badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin: 2.5rem 0 2.5rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transform: uppercase;
    animation: fadeInUp 0.6s ease-out;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.hero-badge:hover::after {
    opacity: 1;
}

.hero h1 {
    font-size: 4rem;
    margin: 1rem auto 1.5rem;
    color: var(--dark);
    line-height: 1.1;
    max-width: 900px;
    font-weight: 800;
    letter-spacing: -1.5px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    padding: 0 1rem;
}

.hero h1 .highlight {
    background: linear-gradient(120deg, #2563EB 0%, #3B82F6 50%, #60A5FA 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease infinite;
    position: relative;
    display: inline-block;
    text-decoration: none;
    padding: 0 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-color);
    margin: 0 auto 1.5rem;
    max-width: 700px;
    font-weight: 500;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.typing-text {
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.typing-text::after {
    content: '|';
    animation: blink 1s infinite;
    font-weight: 400;
    color: var(--primary-color);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0 auto 2.5rem;
    max-width: 700px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.4);
    border: none;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.cta-button.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    z-index: -1;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    transform: translateX(-100%);
}

.cta-button.primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.5);
    color: white;
}

.cta-button.primary:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.cta-button.primary::after {
    content: '→';
    display: inline-block;
    margin-left: 8px;
    transform: translateX(-5px);
    opacity: 0;
    transition: all 0.3s ease;
}

.cta-button.primary:hover::after {
    transform: translateX(5px);
    opacity: 1;
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    position: relative;
    z-index: 1;
    padding: calc(1.1rem - 2px) 2.2rem; /* Account for border */
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.cta-button.secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    z-index: -1;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    transform: translateX(-100%);
    border-radius: 50px;
}

.cta-button.secondary:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
}

.cta-button.secondary:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.cta-button.secondary::after {
    content: '→';
    display: inline-block;
    margin-left: 8px;
    transform: translateX(-5px);
    opacity: 0;
    transition: all 0.3s ease;
}

.cta-button.secondary:hover::after {
    transform: translateX(5px);
    opacity: 1;
}

/* Add pulse animation for primary button */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(37, 99, 235, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}

.hero-buttons .cta-button.primary {
    animation: pulse 2s infinite;
}

/* Button hover effect */
.cta-button {
    position: relative;
    overflow: hidden;
}

.cta-button span {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

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

/* Add subtle shine effect on hover */
.cta-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0;
}

.cta-button:hover::after {
    left: 100%;
    opacity: 1;
    transition-delay: 0.1s;
}

.hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 3rem auto 0;
    max-width: 800px;
    animation: fadeInUp 0.8s ease-out 1s both;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(37, 99, 235, 0.08);
}

.feature {
    display: flex;
    align-items: center;
    background: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.feature:hover::before {
    opacity: 1;
}

.feature i {
    margin-right: 0.6rem;
    font-size: 1.1rem;
    transition: all 0.4s ease;
}

.feature:hover i {
    color: white;
    transform: scale(1.2);
}

.feature span {
    transition: all 0.4s ease;
}

.feature:hover span {
    color: white;
    font-weight: 500;
}

/* Add animation for the feature icons */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.feature i {
    animation: bounce 3s infinite;
}

.feature:nth-child(2) i {
    animation-delay: 0.2s;
}

.feature:nth-child(3) i {
    animation-delay: 0.4s;
}

.feature span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.cta-button:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.4);
    color: white;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background-color: #f9fafb;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Package Cards */
.service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.75rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    will-change: transform, opacity;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #e0f2fe;
    transition: all 0.3s ease;
}

.service-card.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: -12px;
    right: 20px;
    background: #3b82f6;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 1rem;
    border-radius: 12px 12px 0 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card.premium::before {
    background: #1d4ed8;
}

.service-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.2);
}

.service-card.featured:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(245, 158, 11, 0.15);
}

.service-card.premium:hover {
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.15);
}

.service-card.featured:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(245, 158, 11, 0.15);
}

.service-card.premium:hover {
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.15);
}

.service-card.featured {
    border: 1px solid #3b82f6;
    background-color: #f8fafc;
    position: relative;
    overflow: visible;
}

.service-card.featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.1);
}

.popular-tag {
    position: absolute;
    top: 1rem;
    right: -2.2rem;
    background: #3b82f6;
    color: white;
    padding: 0.4rem 2.2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: rotate(45deg);
    transform-origin: center;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
    z-index: 2;
    width: 120px;
    text-align: center;
}

.featured .popular-tag {
    background: linear-gradient(90deg, #1d4ed8, #3b82f6);
}

.premium .popular-tag {
    background: linear-gradient(90deg, #1e40af, #3b82f6);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: #f0f9ff;
    color: #3b82f6;
    transform: translateY(-4px);
}

.service-card h3 {
    font-size: 1.4rem;
    margin: 0 0 0.5rem;
    color: #1e293b;
    font-weight: 700;
    text-align: center;
    font-weight: 600;
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin: 1.2rem 0;
    position: relative;
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 12px;
    border: 1px dashed rgba(59, 130, 246, 0.3);
}

.featured .price {
    color: #1d4ed8;
    background: rgba(29, 78, 216, 0.05);
    border-color: rgba(29, 78, 216, 0.3);
}

.premium .price {
    color: #1e40af;
    background: rgba(30, 64, 175, 0.05);
    border-color: rgba(30, 64, 175, 0.3);
}

.price-inr {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
    display: block;
    margin-top: 0.2rem;
}

.service-card ul {
    margin: 1.25rem 0;
    padding: 0;
    list-style: none;
    flex-grow: 1;
    list-style: none;
    flex-grow: 1;
    display: grid;
    gap: 0.8rem;
}

.service-card ul li {
    padding: 0.4rem 0 0.4rem 1.75rem;
    color: #475569;
    position: relative;
    font-size: 0.9rem;
    line-height: 1.5;
    font-size: 0.95rem;
    line-height: 1.6;
    border-radius: 8px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8fafc;
    border-left: 3px solid #e0f2fe;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.01em;
}

.service-card ul li:hover {
    color: #1e40af;
}

.service-card ul li strong {
    color: #1e40af;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.featured ul li {
    border-left-color: #1d4ed8;
}

.premium ul li {
    border-left-color: #1e40af;
}

.service-card ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.4rem;
    color: #3b82f6;
    font-weight: 700;
    font-size: 0.9em;
    top: 0.8rem;
    font-size: 0.9rem;
    background: rgba(59, 130, 246, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.service-card ul li:hover i {
    transform: scale(1.1);
    background: rgba(59, 130, 246, 0.2);
}

.featured ul li i {
    color: #1d4ed8;
    background: rgba(29, 78, 216, 0.1);
}

.premium ul li i {
    color: #1e40af;
    background: rgba(30, 64, 175, 0.1);
}

.package-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    margin-top: auto;
    border: 2px solid var(--primary);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.featured .package-button {
    background: #1d4ed8;
    border-color: #1d4ed8;
}

.premium .package-button {
    background: #1e40af;
    border-color: #1e40af;
}

.package-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.1), rgba(255,255,255,0.3), rgba(255,255,255,0.1));
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: -1;
}

.package-button:hover::before {
    transform: translateX(100%);
}

.package-button:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.package-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.featured .package-button:hover {
    color: #1d4ed8;
}

.premium .package-button:hover {
    color: #1e40af;
}

/* Why Choose Us Section */
.why-us {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M30,10L50,30L70,10L90,30L70,50L90,70L70,90L50,70L30,90L10,70L30,50L10,30L30,10Z" fill="%23e2e8f0" fill-opacity="0.2" /></svg>');
    opacity: 0.5;
    z-index: 0;
}

.why-us .container {
    position: relative;
    z-index: 1;
}

.why-us h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark);
    font-size: 2.5rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.why-us h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.03), 0 10px 10px -5px rgba(0, 0, 0, 0.01);
    border: 1px solid rgba(226, 232, 240, 0.5);
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    border-color: rgba(147, 197, 253, 0.5);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.8rem;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.1), 0 4px 6px -2px rgba(37, 99, 235, 0.05);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: var(--primary);
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 0.8rem;
}

.feature-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.feature-card:hover h3::after {
    width: 60px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Portfolio Section */
.portfolio {
    padding: 6rem 0;
    background-color: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.portfolio-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 300px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: var(--transition);
    height: 300px;
}

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 1.5rem;
    text-align: center;
    color: white;
    z-index: 2;
    transform: translateY(10px);
    will-change: transform, opacity;
}

/* Hover effect for desktop */
.portfolio-item:hover .portfolio-overlay,
.portfolio-item.active .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-item:hover img,
.portfolio-item.active img {
    transform: scale(1.1);
}

/* Touch devices */
@media (hover: none) and (pointer: coarse) {
    .portfolio-overlay {
        opacity: 0.8;
        transform: translateY(100%);
        transition: transform 0.3s ease, opacity 0.3s ease;
    }
    
    .portfolio-item.active .portfolio-overlay {
        transform: translateY(0);
        opacity: 1;
    }
    
    .portfolio-item img {
        transition: transform 0.5s ease;
    }
    
    .portfolio-overlay h3,
    .portfolio-overlay p {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease 0.1s;
    }
    
    .portfolio-item.active .portfolio-overlay h3,
    .portfolio-item.active .portfolio-overlay p {
        opacity: 1;
        transform: translateY(0);
    }
}

.portfolio-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
    transform: translateY(20px);
    transition: var(--transition);
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(20px);
    transition: var(--transition);
    transition-delay: 0.1s;
}

.portfolio-item:hover .portfolio-overlay h3,
.portfolio-item:hover .portfolio-overlay p,
.portfolio-item.active .portfolio-overlay h3,
.portfolio-item.active .portfolio-overlay p {
    transform: translateY(0);
    opacity: 1;
}

/* Book a Call Section */
.book-call {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f0ff 100%);
    position: relative;
    overflow: hidden;
}

.book-call .container {
    position: relative;
    z-index: 1;
}

.book-call h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark);
    font-size: 2.5rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.book-call h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px;
}

.book-call .section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 3rem;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.booking-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.booking-content {
    padding: 3.5rem 3.5rem;
    position: relative;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Booking Section Styles */
.booking-container {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.booking-header {
    margin-bottom: 2.5rem;
}

.booking-header h3 {
    color: #111827;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.booking-subtitle {
    color: #4b5563;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 90%;
    margin-bottom: 0;
}

.booking-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px;
}

.booking-content p {
    color: var(--text);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.booking-highlights h4 {
    color: #111827;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.booking-highlights h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}


.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.benefits-list li {
    padding: 0.8rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(37, 99, 235, 0.03);
    border-left: 3px solid var(--primary-light);
    display: flex;
    align-items: flex-start;
}

.benefits-list i {
    color: var(--primary);
    margin-right: 1rem;
    margin-top: 0.2rem;
    font-size: 1.1rem;
}

.booking-note {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    color: #1e40af;
    border-left: 4px solid var(--primary);
    margin-top: 1.5rem;
    position: relative;
    overflow: hidden;
}

.booking-note i {
    color: var(--primary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.booking-note::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80' fill='none'%3E%3Cpath d='M40 0C17.9086 0 0 17.9086 0 40C0 62.0914 17.9086 80 40 80C62.0914 80 80 62.0914 80 40C80 17.9086 62.0914 0 40 0ZM35 60L15 40L20.5 34.5L35 49L70 14L75.5 19.5L35 60Z' fill='%23DBEAFE'/%3E%3C/svg%3E") no-repeat;
    opacity: 0.6;
    pointer-events: none;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .booking-container {
        grid-template-columns: 1fr;
        max-width: 800px;
        margin: 2rem auto;
    }
    
    .booking-content {
        padding: 3rem 2.5rem;
    }
    
    .booking-header h3 {
        font-size: 2rem;
    }
    
    .benefits-list li {
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .booking-container {
        margin: 1.5rem 1rem;
        border-radius: 16px;
    }
    
    .booking-content {
        padding: 2.5rem 2rem;
    }
    
    .booking-header h3 {
        font-size: 1.8rem;
    }
    
    .benefits-list li {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .benefits-list li i {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .booking-notes {
        flex-direction: column;
    }
}
    
    #calendly-embed {
        min-height: 600px;
    }

/* Booking Section */
.booking-container {
    max-width: 1200px;
    margin: 4rem auto;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.booking-content {
    padding: 3.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-header {
    margin-bottom: 2.5rem;
}

.booking-header h3 {
    color: #111827;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.booking-subtitle {
    color: #4b5563;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 90%;
    margin-bottom: 0;
}

.booking-highlights h4 {
    color: #111827;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.booking-highlights h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: #f9fafb;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #f3f4f6;
}

.benefits-list li:hover {
    background: #ffffff;
    border-color: #e5e7eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.benefits-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
    background: rgba(37, 99, 235, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.benefits-list li:hover i {
    background: rgba(37, 99, 235, 0.15);
    transform: scale(1.05);
}

.benefits-list li div {
    display: flex;
    flex-direction: column;
}

.benefits-list li strong {
    color: #111827;
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
}

.benefits-list li span {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
}

.booking-notes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f3f4f6;
}

.booking-notes .note {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #4b5563;
    font-size: 0.95rem;
}

.booking-notes .note i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: rgba(37, 99, 235, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .booking-container {
        margin: 2rem 1.5rem;
    }
    
    .booking-content {
        padding: 2.5rem;
    }
    
    .booking-header h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .booking-content {
        padding: 2rem 1.5rem;
    }
    
    .booking-header h3 {
        font-size: 1.8rem;
    }
    
    .benefits-list li {
        flex-direction: column;
        gap: 0.8rem;
        padding: 1.2rem;
    }
    
    .benefits-list li i {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
}

/* Animations */
@keyframes drawLine {
    0% { 
        height: 0;
        background: var(--primary);
    }
    100% { 
        height: 100%;
    }
}

@keyframes drawLineGradient {
    0% { 
        background: linear-gradient(to bottom, var(--primary) 0%, var(--primary) 0%);
    }
    100% { 
        background: linear-gradient(to bottom, var(--primary) 0%, var(--primary-light) 100%);
    }
}

@keyframes pulse {
    0% { 
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Process Timeline Section */
.process-section {
    --line-progress: 0%;
    padding: 6rem 0;
    background-color: #f9fafb;
    position: relative;
    overflow: hidden;
}

.process-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.process-section h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.process-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px;
}

.process-section .section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    background: var(--primary);
    transform: translateX(-50%);
    z-index: 1;
    height: 0;
    transform-origin: top;
    opacity: 0.8;
    transition: height 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-line.animate {
    animation: drawLine 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.timeline-line.animate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--primary-light));
    opacity: 0;
    animation: drawLineGradient 1s ease-out forwards;
    animation-delay: 0.5s;
}

.process-step {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Even steps (2nd, 4th) on the right */
.process-step:nth-child(even) {
    flex-direction: row-reverse;
    justify-content: flex-start;
}

/* Odd steps (1st, 3rd, 5th) on the left */
.process-step:nth-child(odd) {
    justify-content: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
    position: relative;
    z-index: 3;
    flex-shrink: 0;
    opacity: 0;
    transform: scale(0.5);
    animation: scaleIn 0.5s ease-out forwards;
    animation-delay: 0.5s;
    transition: all 0.3s ease;
}

.process-step.animate {
    opacity: 1;
    transform: translateY(0);
}

.process-step.animate .step-number {
    animation: scaleIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards, 
               pulse 1.5s ease-out 0.5s 2;
}

/* Staggered animations for each step */
.process-step:nth-child(1) { transition-delay: 0.2s; }
.process-step:nth-child(2) { transition-delay: 0.4s; }
.process-step:nth-child(3) { transition-delay: 0.6s; }
.process-step:nth-child(4) { transition-delay: 0.8s; }
.process-step:nth-child(5) { transition-delay: 1s; }

.step-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    width: calc(50% - 60px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition-delay: 0.3s;
}

.process-step.animate .step-content {
    opacity: 1;
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.3s ease, 
                opacity 0.5s ease;
}

.process-step:hover .step-content {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(96, 165, 250, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-size: 1.5rem;
}

.step-content h3 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.step-content p {
    color: var(--text);
    line-height: 1.7;
    margin: 0;
}

.process-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 0 1.5rem;
}

.process-cta p {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.process-cta .cta-button {
    padding: 0.9rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 8px;
    font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .process-step,
    .process-step:nth-child(odd),
    .process-step:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 3rem;
    }
    
    .timeline-line {
        left: 25px;
    }
    
    .step-content {
        width: calc(100% - 90px);
        margin-left: 60px;
        margin-top: -20px;
    }
}

@media (max-width: 576px) {
    .process-section {
        padding: 4rem 0;
    }
    
    .process-section h2 {
        font-size: 2rem;
    }
    
    .process-step {
        margin-bottom: 2.5rem;
    }
    
    .step-content {
        padding: 1.5rem;
        width: calc(100% - 70px);
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .process-cta p {
        font-size: 1.1rem;
    }
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M30,10L50,30L70,10L90,30L70,50L90,70L70,90L50,70L30,90L10,70L30,50L10,30L30,10Z" fill="%23e2e8f0" fill-opacity="0.1" /></svg>');
    opacity: 0.5;
    z-index: 0;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark);
    font-size: 2.5rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px;
}

.contact .section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--dark);
    position: relative;
    padding-bottom: 1rem;
    font-weight: 700;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px;
}

.contact-info p {
    margin-bottom: 1.8rem;
    display: flex;
    align-items: flex-start;
    color: var(--text);
    line-height: 1.7;
    transition: transform 0.3s ease;
    padding: 0.8rem;
    border-radius: 8px;
}

.contact-info p:hover {
    background: rgba(37, 99, 235, 0.05);
    transform: translateX(5px);
}

.contact-info i {
    margin-right: 1.2rem;
    color: var(--primary);
    font-size: 1.4rem;
    min-width: 24px;
    text-align: center;
    margin-top: 0.2rem;
}

.contact-info a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 1.2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e0f2fe 100%);
    border-radius: 12px;
    color: var(--primary);
    font-size: 1.3rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(147, 197, 253, 0.3);
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.2), 0 4px 6px -2px rgba(37, 99, 235, 0.1);
}

.contact-form {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--dark);
    position: relative;
    padding-bottom: 1rem;
    font-weight: 700;
}

.contact-form h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px;
}

.form-group {
    margin-bottom: 1.8rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #f8fafc;
    color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
    background-color: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
    opacity: 1;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    z-index: 998;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
    margin-top: 2px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
}

/* Add your custom styles below */
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
    padding-right: 2.5rem;
}

/* Booking Container */
.booking-container {
    display: flex;
    gap: 2.5rem;
    align-items: stretch;
    margin: 2.5rem 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.booking-content {
    flex: 1;
    padding: 2.5rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.booking-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    color: #1e293b;
}

.booking-content p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.benefits-list {
    margin: 1.5rem 0;
    padding: 0;
    list-style: none;
}

.benefits-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    color: #334155;
    line-height: 1.6;
}

.benefits-list i {
    color: #3b82f6;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    font-size: 1.1rem;
}

.booking-note {
    background: #f8fafc;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #475569;
    border-right: 3px solid #3b82f6;
    margin-top: auto;
}

.booking-note i {
    color: #3b82f6;
    margin-right: 0.5rem;
}

/* Calendly Container Styles */
.calendly-container {
    flex: 1;
    min-height: 600px;
    border-radius: 12px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: #fff;
    display: flex;
    flex-direction: column;
}

.calendly-embed {
    flex: 1;
    min-height: 600px;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
}

/* Custom scrollbar for Calendly */
.calendly-container::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.calendly-container::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}

.calendly-container::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.calendly-container::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Ensure iframe takes full container */
.calendly-embed iframe {
    width: 100% !important;
    min-height: 600px;
    height: 100%;
    border: none;
    overflow: visible !important;
    position: relative;
    z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .booking-container {
        gap: 2rem;
    }
    
    .booking-content {
        padding: 2rem;
    }
}

@media (max-width: 992px) {
    .booking-container {
        flex-direction: column;
        max-width: 800px;
        margin: 2rem auto;
    }
    
    .calendly-container,
    .calendly-embed,
    .calendly-embed iframe {
        min-height: 600px;
        height: 80vh;
    }
    
    .booking-content {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .calendly-container {
        height: 80vh;
        min-height: 700px;
        -webkit-overflow-scrolling: touch;
    }
    
    .calendly-embed,
    .calendly-embed iframe {
        min-height: 700px;
        height: auto;
    }
}

/* Footer Styles */
.footer {
    background-color: #f8fafc;
    padding: 4rem 0 2rem;
    color: #4b5563;
    border-top: 1px solid #e2e8f0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    color: #1e40af;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.footer-brand p {
    color: #64748b;
    max-width: 280px;
    margin: 0.5rem 0 0 0;
    line-height: 1.6;
}

.footer h4 {
    font-size: 1.1rem;
    color: #1e293b;
    margin: 0 0 1.5rem 0;
    padding-bottom: 0.75rem;
    position: relative;
    font-weight: 600;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #3b82f6;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin: 0 0 0.75rem 0;
    padding: 0.25rem 0;
    line-height: 1.5;
}

.footer a {
    color: #4b5563;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.footer a:hover {
    color: #3b82f6;
}

.footer i {
    width: 20px;
    color: #3b82f6;
    text-align: center;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4b5563;
    transition: all 0.2s ease;
}

.social-links a:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #e2e8f0;
    padding-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #64748b;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #4b5563;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.9rem;
}

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

.footer-links span {
    color: #cbd5e1;
    user-select: none;
}

@media (max-width: 768px) {
    .footer {
        text-align: center;
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .footer-brand,
    .footer-contact,
    .footer-social {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .footer-brand p {
        margin: 0.5rem auto 0;
    }
    
    .footer h4 {
        text-align: center;
    }
    
    .footer h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding-top: 1.5rem;
    }
    
    .footer-links {
        margin-top: 1rem;
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Form focus effects */
.form-group:focus-within label {
    color: var(--primary);
    transform: translateY(-2px);
}

/* Newsletter Section */
.newsletter {
    padding: 5rem 0;
    background-color: #f8fafc;
    text-align: center;
}

.newsletter h2 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 2.25rem;
}

.newsletter .section-subtitle {
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-size: 1.1rem;
}

#mc_embed_signup {
    max-width: 600px;
    margin: 0 auto;
}

#mc_embed_signup .mc-field-group {
    position: relative;
    display: flex;
    gap: 10px;
    margin-bottom: 1rem;
}

#mc_embed_signup .mc-field-group input[type="email"] {
    flex: 1;
    padding: 1rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    height: 3.5rem;
}

#mc_embed_signup .mc-field-group input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

#mc_embed_signup .cta-button.primary {
    padding: 0 2rem;
    height: 3.5rem;
    white-space: nowrap;
    border: none;
    font-weight: 600;
}

.newsletter .privacy-note {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* Mailchimp response messages */
#mc_embed_signup #mce-error-response,
#mc_embed_signup #mce-success-response {
    margin: 1rem 0;
    padding: 0.75rem 1.25rem;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    display: none !important; /* Will be shown by Mailchimp JS */
}

#mc_embed_signup #mce-error-response {
    color: #b91c1c;
    background-color: #fee2e2;
    border: 1px solid #fecaca;
}

#mc_embed_signup #mce-success-response {
    color: #065f46;
    background-color: #d1fae5;
    border: 1px solid #a7f3d0;
}

@media (max-width: 768px) {
    .newsletter {
        padding: 3.5rem 0;
    }
    
    #mc_embed_signup .mc-field-group {
        flex-direction: column;
    }
    
    #mc_embed_signup .cta-button.primary {
        width: 100%;
    }
}

/* Submit button */
.submit-button {
    width: 100%;
    padding: 1.1rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.submit-button::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: 0.5s;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.submit-button:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(37, 99, 235, 0.3);
}

.submit-button:hover::before {
    left: 100%;
}

/* Form validation styles */
.form-group.success input,
.form-group.success select,
.form-group.success textarea {
    border-color: #10b981;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #ef4444;
}

.form-group .error-message {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: none;
}

.form-group.error .error-message {
    display: block;
}

/* Remove duplicate footer styles */

/* Back to Top Button */
.back-to-top {
    position: fixed;
    right: 2rem;
    z-index: 999;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* Position above WhatsApp button on mobile */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 6rem; /* Position above WhatsApp button */
    }
    
    /* Move WhatsApp button slightly up to prevent overlap with bottom navigation if any */
    .whatsapp-float {
        bottom: 1.5rem;
    }
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

/* Guarantee Banner */
.guarantee-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 16px;
    padding: 2.5rem;
    margin: 4rem auto 0;
    max-width: 1200px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.2), 0 10px 10px -5px rgba(37, 99, 235, 0.1);
}

.guarantee-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M30,10L50,30L70,10L90,30L70,50L90,70L70,90L50,70L30,90L10,70L30,50L10,30L30,10Z" fill="white" fill-opacity="0.05" /></svg>');
    opacity: 0.5;
    z-index: 0;
}

.guarantee-banner i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    color: rgba(255, 255, 255, 0.9);
}

.guarantee-banner h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.guarantee-banner p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    opacity: 0.95;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    /* Base container padding */
    .container {
        padding: 0 1.25rem;
    }
    
    /* Section padding */
    section {
        padding: 3rem 0;
    }
    
    /* Headings */
    h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    /* Hero section */
    .hero {
        padding: 1.5rem 0;
    }
    
    .hero-content {
        padding: 2rem 1.25rem;
        margin: 0 0.5rem;
    }
    
    /* Cards and grids */
    .card, 
    .service-card,
    .testimonial-card,
    .portfolio-item {
        margin-bottom: 1.5rem;
        padding: 1.5rem;
    }
    
    /* Forms */
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    input, 
    textarea, 
    select {
        padding: 0.75rem 1rem;
    }
    
    /* Buttons */
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* Navigation */
    .nav-links {
        padding: 2rem 1.25rem;
    }
    
    /* Footer */
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        padding: 0 1.25rem;
    }
    
    /* Testimonials */
    .testimonial-content {
        padding: 1.5rem;
    }
    
    /* Guarantee banner */
    .guarantee-banner {
        padding: 2rem 1.25rem;
        margin: 2rem 0.75rem 0;
    }
    
    /* Adjust spacing for small screens */
    @media (max-width: 480px) {
        .container {
            padding: 0 1rem;
        }
        
        section {
            padding: 2.5rem 0;
        }
        
        h2 {
            font-size: 1.6rem;
            margin-bottom: 1.75rem;
        }
        
        .card, 
        .service-card,
        .testimonial-card,
        .portfolio-item {
            padding: 1.25rem;
        }
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 2rem 0;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
}
    
    /* Responsive Adjustments */
@media (max-width: 992px) {
    .hero {
        min-height: calc(100vh - 60px);
        padding: 3rem 0;
        margin-top: 60px; /* Height of the navbar */
    }
    
    /* Ensure proper spacing between sections on tablets */
    section {
        padding: 4rem 0;
    }
    
    .hero-content {
        padding: 2rem 1.25rem;
        margin: 0 0.75rem;
        width: auto;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        padding: 0 0.25rem;
        letter-spacing: -0.5px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        margin: 2rem 0 1.5rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        padding: 1.2rem 0.75rem;
        margin: 1.5rem auto 0;
        width: 100%;
        max-width: 400px;
    }
    
    .feature {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 0.8rem 1rem;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
        margin: 1rem 0 1.5rem;
    }
    
    /* Adjust animations for mobile */
    .hero h1, 
    .hero-subtitle,
    .hero-buttons,
    .hero-features {
        animation: fadeInUp 0.6s ease-out forwards;
    }
    
    .hero-subtitle { animation-delay: 0.1s; }
    .hero-buttons { animation-delay: 0.2s; }
    .hero-features { animation-delay: 0.3s; }
}
