/* Modern CSS Variables for Professional Design */
:root {
    --primary-color: #4a1798;
    --primary-light: #6b21a8;
    --primary-dark: #37126e;
    --secondary-color: #764ba2;
    --accent-color: #f59e0b;
    --text-primary: #1a1a1a;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --shadow-brand: 0 8px 32px rgba(74, 23, 152, 0.15);
    --gradient-primary: linear-gradient(135deg, #4a1798 0%, #6b21a8 100%);
    --gradient-secondary: linear-gradient(135deg, #4a1798 0%, #764ba2 100%);
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 24px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Enhanced Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    background: var(--bg-primary);
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

p {
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Enhanced Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(74, 23, 152, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    transition: all var(--transition-normal);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    height: 100px;
    padding: 0 10px;
}

.ux-nova-logo {
    max-height: 96px;
    height: 96px;
    width: auto;
    display: block;
    object-fit: contain;
    background: transparent;
    margin: 0;
    filter: drop-shadow(0 4px 8px rgba(74, 23, 152, 0.1));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: var(--primary-color);
    transform: translateY(-1px);
}

/* Enhanced Hire Us button styling */
.cta-button {
    background: var(--gradient-primary);
    color: white !important;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(74, 23, 152, 0.3);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 120px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 23, 152, 0.4);
    background: var(--primary-dark);
    border-color: rgba(255, 255, 255, 0.2);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover::after {
    opacity: 1;
}

.cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(74, 23, 152, 0.5);
}

/* Add a subtle pulse animation */
@keyframes cta-pulse {
    0% {
        box-shadow: 0 4px 15px rgba(74, 23, 152, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(74, 23, 152, 0.5);
    }
    100% {
        box-shadow: 0 4px 15px rgba(74, 23, 152, 0.3);
    }
}

.cta-button {
    animation: cta-pulse 3s ease-in-out infinite;
}

.cta-button:hover {
    animation: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Enhanced Hero Section */
.hero {
    padding: 140px 0 100px;
    background: var(--gradient-secondary);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Fixed Hero Section Text Visibility */
.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
    max-width: 540px;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-normal);
    display: inline-block;
    box-shadow: var(--shadow-brand);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(74, 23, 152, 0.3);
    background: var(--primary-dark);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1rem 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-normal);
    display: inline-block;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.hero-image {
    position: relative;
    height: 400px;
    min-width: 320px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 6s ease-in-out infinite;
    min-width: 140px;
    max-width: 180px;
}

.floating-card:nth-child(1) {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.floating-card:nth-child(2) {
    top: 60px;
    right: 20%;
    animation-delay: 2s;
}

.floating-card:nth-child(3) {
    bottom: 0;
    left: 20%;
    animation-delay: 4s;
}

.floating-card:nth-child(4) {
    top: 50%;
    left: 75%;
    transform: translateY(-50%);
    animation-delay: 1s;
}

.floating-card i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Enhanced Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

/* Fixed Section Headers for visibility */
.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Enhanced Services Section */
.services {
    padding: 100px 0;
    background: var(--bg-secondary);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
}

/* Enhanced Service Cards Styling */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(74, 23, 152, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(74, 23, 152, 0.05);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1), all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #4a1798, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(74, 23, 152, 0.15);
    border-color: rgba(74, 23, 152, 0.1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4a1798, #764ba2);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(74, 23, 152, 0.3);
}

.service-icon i {
    font-size: 1.8rem;
    color: white;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.service-card p {
    color: #666;
    margin-bottom: 1.8rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-card li {
    padding: 0.6rem 0;
    color: #555;
    position: relative;
    padding-left: 1.8rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.service-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a1798;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.service-card:hover li {
    color: #333;
}

.service-card:hover li::before {
    transform: scale(1.2);
}

/* Enhanced Industries Section */
.industries {
    padding: 100px 0;
    background: var(--bg-primary);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.industry-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 1;
}

.industry-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.industry-card:hover::before {
    opacity: 0.05;
}

.industry-card > * {
    position: relative;
    z-index: 2;
}

.industry-card i {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all var(--transition-normal);
}

.industry-card:hover i {
    transform: scale(1.1);
    color: var(--primary-dark);
}

.industry-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.industry-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Enhanced Portfolio Section */
.portfolio {
    padding: 100px 0;
    background: var(--bg-secondary);
    position: relative;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.portfolio-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(74, 23, 152, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
}

.portfolio-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 64px rgba(74, 23, 152, 0.15);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

/* Overlay effect on hover */
.portfolio-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 23, 152, 0.8), rgba(118, 75, 162, 0.6));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.portfolio-item:hover .portfolio-image::before {
    opacity: 1;
}

/* View project button overlay */
.portfolio-image::after {
    content: 'View Project';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: white;
    color: #4a1798;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.portfolio-item:hover .portfolio-image::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.portfolio-content {
    padding: 2rem;
    background: white;
    position: relative;
}

.portfolio-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.portfolio-item:hover .portfolio-content h3 {
    color: #4a1798;
}

.portfolio-content p {
    color: #666;
    margin-bottom: 1.2rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.tag {
    background: linear-gradient(135deg, #4a1798, #764ba2);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(74, 23, 152, 0.2);
}

.portfolio-item:hover .tag {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(74, 23, 152, 0.3);
}

/* Enhanced Booking Section */
.booking {
    padding: 120px 0 100px 0;
    background: var(--gradient-secondary);
    color: white;
    position: relative;
    margin-top: 80px;
}

.booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.booking-info h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.booking-info p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: white;
    font-weight: 500;
    line-height: 1.7;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.booking-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature i {
    color: var(--primary-color);
    background: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--shadow-brand);
}

.feature span {
    color: white;
    font-size: 1rem;
    font-weight: 500;
}

.booking-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3.5rem;
    border-radius: var(--border-radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-xl);
    margin-top: 2rem;
}

.booking-form .form-group {
    margin-bottom: 2rem;
}

.booking-form .form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: white;
    font-size: 0.95rem;
}

.booking-form .form-group input,
.booking-form .form-group select,
.booking-form .form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
}

.booking-form .form-group input:focus,
.booking-form .form-group select:focus,
.booking-form .form-group textarea:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.booking-form .form-group input::placeholder,
.booking-form .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.booking-form .form-group select option {
    background: var(--primary-color);
    color: white;
}

.booking-form .btn-primary {
    width: 100%;
    margin-top: 1rem;
}

/* Enhanced About Section */
.about {
    padding: 100px 0;
    background: var(--bg-primary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}

/* Fixed About section text */
.about-text h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--text-primary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--bg-secondary);
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-normal);
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-normal);
}

.about-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(74, 23, 152, 0.2);
}

/* Special styling for the logo in about section */
.about-logo {
    max-width: 500px;
    width: 100%;
    height: auto;
    background: linear-gradient(135deg, rgba(74, 23, 152, 0.05) 0%, rgba(107, 33, 168, 0.05) 100%);
    padding: 3rem;
    border-radius: var(--border-radius-xl);
    box-shadow: 0 25px 50px rgba(74, 23, 152, 0.2);
    transition: all var(--transition-normal);
    display: block;
    margin: 0 auto;
}

.about-image:hover .about-logo {
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(74, 23, 152, 0.25);
    background: linear-gradient(135deg, rgba(74, 23, 152, 0.1) 0%, rgba(107, 33, 168, 0.1) 100%);
}

/* Enhanced Contact Section */
.contact {
    padding: 100px 0;
    background: var(--bg-secondary);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-top: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.contact-item i {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: var(--shadow-brand);
}

.contact-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-form {
    background: var(--bg-primary);
    padding: 3rem;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
}

/* General Form Styling - Fixed for visibility */
.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-md);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(74, 23, 152, 0.1);
    transform: translateY(-1px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

/* Contact form specific styling */
.contact-form .form-group label {
    color: var(--text-primary);
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    background: var(--bg-primary);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    border-color: var(--primary-color);
    background: var(--bg-primary);
    box-shadow: 0 0 0 3px rgba(74, 23, 152, 0.1);
}

/* Remove any conflicting styles */
.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    border-color: var(--primary-color);
    background: var(--bg-primary);
}

/* Enhanced Footer Styling */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b69 100%);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 2rem;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

.footer-section h4 {
    color: var(--primary-light);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -0.3rem;
    left: 0;
    width: 1.5rem;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

.footer-section p {
    color: #cbd5e0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: all var(--transition-fast);
    position: relative;
    padding-left: 0;
}

.footer-section ul li a::before {
    content: '→';
    position: absolute;
    left: -1rem;
    opacity: 0;
    color: var(--primary-color);
    transition: all var(--transition-fast);
}

.footer-section ul li a:hover {
    color: white;
    padding-left: 1rem;
}

.footer-section ul li a:hover::before {
    opacity: 1;
    left: -0.5rem;
}

/* Enhanced Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-brand);
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 23, 152, 0.3);
    background: var(--primary-dark);
}

.social-links a:hover::before {
    left: 100%;
}

.social-links a i {
    font-size: 1.2rem;
    z-index: 1;
    position: relative;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(74, 23, 152, 0.2);
    padding-top: 2rem;
    text-align: center;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4rem;
    height: 1px;
    background: var(--gradient-primary);
}

.footer-bottom p {
    color: #a0aec0;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h3::after,
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        backdrop-filter: blur(10px);
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: 0.75rem 1rem;
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        z-index: 1001;
    }
    
    .hamburger span {
        width: 25px;
        height: 3px;
        background: #4a1798;
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Hero Section Mobile */
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        max-width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Floating Cards Mobile */
    .hero-image {
        display: none;
    }
    
    /* Services Section Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Industries Section Mobile */
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .industry-card {
        padding: 1.5rem 1rem;
    }
    
    .industry-card i {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .industry-card h3 {
        font-size: 1rem;
    }
    
    .industry-card p {
        font-size: 0.85rem;
    }
    
    /* Portfolio Section Mobile */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .portfolio-item {
        margin-bottom: 1.5rem;
    }
    
    .portfolio-image {
        height: 200px;
    }
    
    .portfolio-content {
        padding: 1.5rem;
    }
    
    .portfolio-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .portfolio-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* About Section Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-text h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .about-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .stat h3 {
        font-size: 1.8rem;
    }
    
    .stat p {
        font-size: 0.85rem;
    }
    
    .about-image {
        display: flex;
        justify-content: center;
    }
    
    .about-logo {
        width: 150px;
        height: auto;
    }
    
    /* Contact Section Mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-item {
        padding: 1.5rem;
        text-align: center;
    }
    
    .contact-item i {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .contact-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-item p {
        font-size: 0.9rem;
    }
    
    /* Forms Mobile */
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .booking-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        padding: 0 1rem;
        align-items: flex-start;
    }
    
    .booking-form {
        padding: 1.5rem 1.25rem;
        margin-top: 0.5rem;
        order: 2;
        background: rgba(255, 255, 255, 0.18);
        backdrop-filter: blur(30px);
        border: 1px solid rgba(255, 255, 255, 0.35);
        border-radius: 16px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        max-height: 70vh;
        overflow-y: auto;
        width: 100%;
    }
    
    .booking-form .form-group {
        margin-bottom: 1rem;
    }
    
    .booking-form .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        color: rgba(255, 255, 255, 0.95);
        font-weight: 600;
        display: block;
    }
    
    .booking-form .form-group input,
    .booking-form .form-group select,
    .booking-form .form-group textarea {
        padding: 0.75rem 0.875rem;
        font-size: 0.9rem;
        border: 2px solid rgba(255, 255, 255, 0.5);
        background: rgba(255, 255, 255, 0.2);
        border-radius: 10px;
        min-height: 40px;
        transition: all 0.3s ease;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        touch-action: manipulation;
    }
    
    .booking-form .form-group select {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
        background-position: right 1rem center;
        background-repeat: no-repeat;
        background-size: 1.5em 1.5em;
        padding-right: 3rem;
    }
    
    .booking-form .form-group input:focus,
    .booking-form .form-group select:focus,
    .booking-form .form-group textarea:focus {
        border-color: white;
        background: rgba(255, 255, 255, 0.3);
        box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25);
        transform: translateY(-2px);
    }
    
    .booking-form .btn-primary {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
        font-weight: 700;
        margin-top: 1rem;
        border-radius: 12px;
        min-height: 45px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        cursor: pointer;
        touch-action: manipulation;
    }
    
    .booking-form .btn-primary:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    .booking-form .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(74, 23, 152, 0.4);
    }
    
    .booking-info {
        order: 1;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .booking-info h2 {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
        line-height: 1.2;
        color: white;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .booking-info p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        max-width: 100%;
        color: rgba(255, 255, 255, 0.95);
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    }
    
    .booking-features {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .feature {
        padding: 0.75rem 0.875rem;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 12px;
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.25);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        min-width: 110px;
    }
    
    .feature:hover {
        transform: translateY(-3px);
        background: rgba(255, 255, 255, 0.2);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    }
    
    .feature i {
        font-size: 1rem;
        margin-right: 0.5rem;
        width: 30px;
        height: 30px;
        color: var(--accent-color);
    }
    
    .feature span {
        font-size: 0.85rem;
        font-weight: 600;
        color: white;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section h3,
    .footer-section h4 {
        margin-bottom: 1rem;
    }
    
    .footer-section ul {
        gap: 0.5rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.5rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 1rem;
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
    }
    
    .social-links a i {
        font-size: 1.1rem;
    }
    
    /* Section Headers Mobile */
    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .section-header p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* General Mobile Adjustments */
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    .booking {
        padding: 80px 0 60px 0;
        margin-top: 60px;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }
    
    .services,
    .industries,
    .portfolio,
    .about,
    .contact {
        padding: 60px 0;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 0.95rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        max-width: 250px;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .industry-card {
        padding: 1.25rem 1rem;
    }
    
    .service-card {
        padding: 1.5rem 1.25rem;
    }
    
    .portfolio-image {
        height: 180px;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-item {
        padding: 1.25rem;
    }
    
    .booking {
        padding: 60px 0 40px 0;
        margin-top: 40px;
    }
    
    .booking-content {
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .booking-info h2 {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }
    
    .booking-info p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .booking-features {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
        justify-content: center;
    }
    
    .feature {
        padding: 0.75rem 0.875rem;
        flex-direction: row;
        text-align: left;
        gap: 0.5rem;
        min-width: 110px;
        border-radius: 10px;
    }
    
    .feature i {
        width: 30px;
        height: 30px;
        font-size: 1rem;
        margin-right: 0;
        flex-shrink: 0;
    }
    
    .feature span {
        font-size: 0.8rem;
        font-weight: 600;
    }
    
    .booking-form {
        padding: 1.25rem 1rem;
        margin-top: 0.5rem;
        border-radius: 14px;
        max-height: 70vh;
        overflow-y: auto;
    }
    
    .booking-form .form-group {
        margin-bottom: 1rem;
    }
    
    .booking-form .form-group label {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
        font-weight: 600;
    }
    
    .booking-form .form-group input,
    .booking-form .form-group select,
    .booking-form .form-group textarea {
        padding: 0.625rem 0.75rem;
        font-size: 0.8rem;
        min-height: 38px;
        border-radius: 8px;
    }
    
    .booking-form .btn-primary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        font-weight: 700;
        margin-top: 1rem;
        min-height: 42px;
        border-radius: 10px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
}

/* Tablet Adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .about-content {
        gap: 3rem;
    }
    
    .contact-content {
        gap: 3rem;
    }
    
    .booking-content {
        gap: 3.5rem;
        align-items: flex-start;
        padding: 0 1rem;
    }
    
    .booking-info h2 {
        font-size: 2.4rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        color: white;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .booking-info p {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 2.5rem;
        color: rgba(255, 255, 255, 0.95);
    }
    
    .booking-features {
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .feature {
        padding: 1.25rem 1.5rem;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.25);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }
    
    .feature:hover {
        transform: translateY(-3px);
        background: rgba(255, 255, 255, 0.2);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    }
    
    .feature i {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        color: var(--accent-color);
    }
    
    .feature span {
        font-size: 1rem;
        font-weight: 600;
        color: white;
    }
    
    .booking-form {
        padding: 3rem 2.5rem;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.18);
        backdrop-filter: blur(30px);
        border: 1px solid rgba(255, 255, 255, 0.35);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    }
}

/* Navbar link underline hover effect */
.nav-menu li a {
    position: relative;
    overflow: hidden;
}

.nav-menu li a.underline-effect::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 3px;
    background: #4a1798;
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
    transform-origin: left;
}

.nav-menu li a.underline-effect:hover::after,
.nav-menu li a.underline-effect:focus::after {
    transform: scaleX(1);
}

/* Sticky Our Services Section */
#services {
    position: static;
    background: transparent;
}

/* Remove sticky and overlap from previous attempts */
#services .section-header {
    position: static;
    background: none;
    z-index: auto;
    padding-top: 0;
    padding-bottom: 0;
}

#services .services-grid {
    position: relative;
    z-index: 1;
    margin-top: -40px;
    padding-top: 40px;
    background: none;
    border-radius: 0;
    box-shadow: none;
} 

/* Responsive adjustments for 6 cards */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
} 