/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Hide scrollbars but keep scrolling functionality */
body {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

body::-webkit-scrollbar {
    display: none; /* WebKit browsers (Chrome, Safari, Edge) */
}

/* Hide scrollbars for all internal sections */
* {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

*::-webkit-scrollbar {
    display: none; /* WebKit browsers (Chrome, Safari, Edge) */
}

/* SEO and Bold Text Styling */
strong {
    font-weight: 700;
    color: #2d3748;
}

.gradient-text strong {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    pointer-events: auto;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.logo-container:hover .nav-logo h2 span:nth-child(1) {
    color: #34d399 !important; /* Brighter green for Xp */
}

.logo-container:hover .nav-logo h2 span:nth-child(2) {
    color: #ff8c42 !important; /* Brighter orange for eri */
}

.logo-container:hover .nav-logo h2 span:nth-child(3) {
    color: #818cf8 !important; /* Brighter blue for AI */
}

@keyframes logoHoverGlow {
    0% {
        filter: brightness(1) saturate(1);
    }
    50% {
        filter: brightness(1.3) saturate(1.5);
    }
    100% {
        filter: brightness(1.1) saturate(1.2);
    }
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35 0%, #10b981 50%, #667eea 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

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

.nav-logo h2 {
    font-weight: 800;
    font-size: 2rem;
    margin: 0;
    line-height: 1;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@keyframes logoGlow {
    0% {
        filter: brightness(1) saturate(1);
    }
    100% {
        filter: brightness(1.1) saturate(1.2);
    }
}

.logo-tagline {
    font-size: 0.7rem;
    color: #4a5568;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #667eea;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding: 80px 0 0 0;
}


.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}


.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ff6b35 0%, #10b981 50%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 0;
}

.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #ff6b35 50%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.hero-description {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.8;
    position: relative;
    z-index: 0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 0;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #10b981 50%, #667eea 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

/* AI Visualization */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out;
}

.ai-visualization {
    position: relative;
    width: 400px;
    height: 400px;
}

.neural-network {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: crosshair;
    overflow: hidden;
}

.hover-reflection {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.node {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 5;
}

.node:hover {
    transform: scale(1.5);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.8);
    animation: none;
}

.node.active {
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(102, 126, 234, 0.6);
}

.node.magnified {
    transform: scale(2.5);
    box-shadow: 0 0 30px rgba(102, 126, 234, 1);
    z-index: 20;
    animation: magnifyPulse 1s ease-in-out infinite;
}

.node.sequence-active {
    transform: scale(1.8);
    box-shadow: 0 0 25px rgba(102, 126, 234, 0.9);
    animation: sequenceGlow 0.8s ease-in-out;
}

.node.sequence-prev {
    transform: scale(0.8);
    opacity: 0.6;
    transition: all 0.5s ease;
}

.node-1 { top: 20%; left: 20%; animation-delay: 0s; }
.node-2 { top: 20%; right: 20%; animation-delay: 0.5s; }
.node-3 { top: 50%; left: 10%; animation-delay: 1s; }
.node-4 { top: 50%; right: 10%; animation-delay: 1.5s; }
.node-5 { bottom: 20%; left: 30%; animation-delay: 2s; }
.node-6 { bottom: 20%; right: 30%; animation-delay: 2.5s; }
.node-7 { top: 35%; left: 50%; animation-delay: 3s; }
.node-8 { bottom: 35%; right: 50%; animation-delay: 3.5s; }

.connection {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    animation: flow 3s infinite;
    transition: all 0.3s ease;
    z-index: 3;
}

.connection:hover {
    height: 4px;
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
}

.connection.active {
    height: 3px;
    box-shadow: 0 0 8px rgba(102, 126, 234, 0.4);
}

.connection.magnified {
    height: 6px;
    box-shadow: 0 0 15px rgba(102, 126, 234, 0.8);
    z-index: 15;
}

.connection.sequence-active {
    height: 5px;
    box-shadow: 0 0 12px rgba(102, 126, 234, 0.6);
    animation: connectionFlow 1s ease-in-out infinite;
}

.connection-1 {
    top: 25%;
    left: 25%;
    width: 50%;
    transform: rotate(15deg);
    animation-delay: 0s;
}

.connection-2 {
    top: 25%;
    right: 25%;
    width: 50%;
    transform: rotate(-15deg);
    animation-delay: 0.5s;
}

.connection-3 {
    top: 60%;
    left: 15%;
    width: 70%;
    transform: rotate(-10deg);
    animation-delay: 1s;
}

.connection-4 {
    bottom: 25%;
    left: 35%;
    width: 30%;
    transform: rotate(20deg);
    animation-delay: 1.5s;
}

.connection-5 {
    top: 40%;
    left: 45%;
    width: 20%;
    transform: rotate(45deg);
    animation-delay: 2s;
}

.connection-6 {
    bottom: 40%;
    right: 45%;
    width: 20%;
    transform: rotate(-45deg);
    animation-delay: 2.5s;
}

/* Tech Icons in Hero */
.tech-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.tech-icon {
    position: absolute;
    font-size: 1.5rem;
    color: rgba(102, 126, 234, 0.6);
    animation: float 3s ease-in-out infinite;
}

.tech-icon:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; color: #ff6b35; }
.tech-icon:nth-child(2) { top: 20%; right: 15%; animation-delay: 0.5s; color: #ff8c42; }
.tech-icon:nth-child(3) { top: 60%; left: 5%; animation-delay: 1s; color: #ff6b35; }
.tech-icon:nth-child(4) { top: 70%; right: 10%; animation-delay: 1.5s; color: #ff8c42; }
.tech-icon:nth-child(5) { bottom: 20%; left: 20%; animation-delay: 2s; color: #ff6b35; }
.tech-icon:nth-child(6) { bottom: 10%; right: 25%; animation-delay: 2.5s; color: #ff8c42; }

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2.5s ease-in-out;
    display: flex;
    align-items: center;
}

.slide:first-child {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.slide.active {
    opacity: 1;
}

.slide-content {
    flex: 1;
    padding: 100px 20px 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slide-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-overlay .slide-content {
    grid-template-columns: 1fr;
    text-align: center;
    color: white;
}

.slide-overlay .hero-title {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-overlay .hero-description {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Third slide specific styles - right aligned and smaller text */
.slide-content-right {
    grid-template-columns: 1fr 1fr;
    justify-items: end;
}

.hero-text-right {
    grid-column: 2;
    text-align: right;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-title-small {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: left;
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-overlay .hero-title-small {
    color: white !important;
}

.hero-description-small {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: white !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.slide-overlay .hero-description-small {
    color: white !important;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    pointer-events: none;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav-btn:hover {
    background: #667eea;
    color: white;
    transform: scale(1.1);
}

.nav-btn i {
    font-size: 1.2rem;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #667eea;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Mobile Responsive Design */

/* Large Tablets and Small Desktops */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Hide complex elements on tablets */
    .tech-icons {
        display: none;
    }
    
    .hover-reflection {
        display: none;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Navigation */
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }
    
    .logo-container {
        gap: 0.8rem;
    }

    .nav-logo h2 {
        font-size: 1.6rem;
    }

    .logo-tagline {
        font-size: 0.6rem;
    }

    /* Hero Section */
    .hero-slider {
        height: 100vh;
        min-height: 500px;
    }
    
    .slide-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 80px 20px 50px 20px;
    }
    
    .slide-content-right {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    .hero-text-right {
        grid-column: 1;
        text-align: center;
        max-width: 100%;
        padding: 1.5rem;
        margin: 0 10px;
    }
    
    .hero-title-small {
        text-align: left;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .ai-visualization {
        width: 300px;
        height: 300px;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .nav-btn i {
        font-size: 1rem;
    }
    
    .slider-dots {
        bottom: 20px;
    }

    /* About Section */
    .about {
        padding: 60px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
        padding: 0 20px;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .tech-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        padding: 0 15px;
    }

    /* Services Section */
    .services {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem;
    }

    /* Packages Section */
    .packages {
        padding: 60px 0;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .package-card {
        padding: 2rem;
    }

    /* Contact Section */
    .contact {
        padding: 60px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
    
    /* Hide complex elements on tablets */
    .tech-icons {
        display: none;
    }
    
    .hover-reflection {
        display: none;
    }
    
    .service-card::before {
        display: none;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Navigation */
    .navbar {
        padding: 1rem 0;
    }
    
    .nav-logo h2 {
        font-size: 1.4rem;
    }
    
    .logo-tagline {
        font-size: 0.5rem;
    }

    /* Hero Section */
    .hero-slider {
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .hero-title-small {
        font-size: 2rem;
    }
    
    .hero-description-small {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .hero-text-right {
        padding: 1rem;
        margin: 0 5px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        margin: 0.5rem 0;
    }
    
    .ai-visualization {
        width: 250px;
        height: 250px;
    }
    
    .nav-btn {
        width: 35px;
        height: 35px;
    }
    
    .nav-btn i {
        font-size: 0.9rem;
    }
    
    .slider-dots {
        bottom: 15px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }

    /* Sections */
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .about {
        padding: 40px 0;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        padding: 0 10px;
    }
    
    .tech-item {
        padding: 1rem;
    }
    
    .tech-item i {
        font-size: 1.5rem;
    }

    /* Services */
    .services {
        padding: 40px 0;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .service-tech-icons {
        gap: 0.5rem;
    }

    /* Packages */
    .packages {
        padding: 40px 0;
    }
    
    .package-card {
        padding: 1.5rem;
    }
    
    .package-header h3 {
        font-size: 1.3rem;
    }
    
    .package-price .price {
        font-size: 2rem;
    }

    /* Contact */
    .contact {
        padding: 40px 0;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .contact-item h4 {
        font-size: 1.1rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 1rem;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px 0;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.2rem;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    /* Hide complex elements on mobile */
    .tech-icons {
        display: none;
    }
    
    .hover-reflection {
        display: none;
    }
    
    .service-card::before {
        display: none;
    }
    
    .value-proposition {
        padding: 60px 0;
    }
    
    .value-content h2 {
        font-size: 2rem;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-item {
        padding: 1.5rem;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Extra Small Devices */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .ai-visualization {
        width: 200px;
        height: 200px;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        padding: 0 5px;
    }
    
    .about-stats {
        gap: 0.8rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    /* Hide more elements on very small screens */
    .tech-icons {
        display: none;
    }
    
    .hover-reflection {
        display: none;
    }
    
    .service-card::before {
        display: none;
    }
    
    .value-proposition {
        padding: 40px 0;
    }
    
    .value-content h2 {
        font-size: 1.8rem;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .value-item {
        padding: 1rem;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .package-card {
        padding: 1rem;
    }
    
    .service-card {
        padding: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-slider {
        min-height: 300px;
    }
    
    .slide-content {
        gap: 1rem;
        padding: 70px 20px 30px 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }
    
    .hero-title-small {
        font-size: 1.8rem;
    }
    
    .hero-description-small {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .ai-visualization {
        width: 200px;
        height: 200px;
    }
    
    .about {
        padding: 30px 0;
    }
    
    .services {
        padding: 30px 0;
    }
    
    .packages {
        padding: 30px 0;
    }
    
    .contact {
        padding: 30px 0;
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
    .about-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .feature-list li {
        font-size: 0.9rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .tech-item span {
        font-size: 0.8rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    .package-description {
        font-size: 0.9rem;
    }
    
    .package-features li {
        font-size: 0.9rem;
    }
    
    .contact-item p {
        font-size: 0.9rem;
    }
    
    .footer-section p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .about-text p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .feature-list li {
        font-size: 0.85rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .tech-item span {
        font-size: 0.75rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
    }
    
    .package-description {
        font-size: 0.85rem;
    }
    
    .package-features li {
        font-size: 0.85rem;
    }
    
    .contact-item p {
        font-size: 0.85rem;
    }
    
    .footer-section p {
        font-size: 0.85rem;
    }
    
    .value-item p {
        font-size: 0.9rem;
    }
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
    position: relative;
    left: 0;
    right: 0;
}

@media (max-width: 1200px) {
    .about-content {
        max-width: 900px;
        padding: 0 20px;
    }
}

.about-text {
    max-width: 100%;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow-x: hidden;
    box-sizing: border-box;
}

.about-text h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    max-width: 100%;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow-x: hidden;
    box-sizing: border-box;
    hyphens: auto;
}

.feature-list {
    list-style: none;
    margin-top: 1rem;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #4a5568;
    max-width: 100%;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow-x: hidden;
    box-sizing: border-box;
}

.feature-list i {
    color: #667eea;
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 15px;
    transition: transform 0.3s ease;
    position: relative;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #4a5568;
    font-weight: 500;
}

/* Tech Showcase */
.tech-showcase {
    margin-top: 3rem;
    text-align: center;
    width: 100%;
    max-width: none;
    padding: 0;
}

.tech-showcase h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 2rem;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-height: 120px;
    justify-content: center;
    text-decoration: none;
    color: inherit;
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: inherit;
}

.tech-item:nth-child(odd):hover {
    border-color: #ff6b35;
}

.tech-item:nth-child(even):hover {
    border-color: #10b981;
}

.tech-item:visited {
    color: inherit;
    text-decoration: none;
}

.tech-item:visited:hover {
    color: inherit;
    text-decoration: none;
}

.tech-item i {
    font-size: 2.5rem;
    color: #10b981;
    margin-bottom: 0.8rem;
}

.tech-item:nth-child(1) i { color: #ff6b35; }
.tech-item:nth-child(2) i { color: #10b981; }
.tech-item:nth-child(3) i { color: #ff6b35; }
.tech-item:nth-child(4) i { color: #10b981; }
.tech-item:nth-child(5) i { color: #ff6b35; }
.tech-item:nth-child(6) i { color: #10b981; }
.tech-item:nth-child(7) i { color: #ff6b35; }
.tech-item:nth-child(8) i { color: #10b981; }
.tech-item:nth-child(9) i { color: #ff6b35; }
.tech-item:nth-child(10) i { color: #10b981; }
.tech-item:nth-child(11) i { color: #ff6b35; }
.tech-item:nth-child(12) i { color: #10b981; }

.tech-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2d3748;
    text-align: center;
}

/* Multi-color styling for Why Choose Our section */
.about-text h3 {
    background: linear-gradient(135deg, #ff6b35 0%, #10b981 50%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #10b981, #667eea);
    border-radius: 2px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 1;
}

.service-tech-icons {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.service-tech-icons i {
    width: 35px;
    height: 35px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #667eea;
    transition: all 0.3s ease;
}

.service-tech-icons i:nth-child(1) { color: #ff6b35; background: rgba(255, 107, 53, 0.1); }
.service-tech-icons i:nth-child(2) { color: #ff8c42; background: rgba(255, 140, 66, 0.1); }
.service-tech-icons i:nth-child(3) { color: #ff6b35; background: rgba(255, 107, 53, 0.1); }

.service-card:hover .service-tech-icons i {
    transform: scale(1.1);
}

.service-card:hover .service-tech-icons i:nth-child(1) {
    background: #ff6b35;
    color: white;
}

.service-card:hover .service-tech-icons i:nth-child(2) {
    background: #10b981;
    color: white;
}

.service-card:hover .service-tech-icons i:nth-child(3) {
    background: #667eea;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* Packages Section */
.packages {
    padding: 100px 0;
    background: white;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.package-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.package-card.featured {
    border-color: #667eea;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.2);
    transform: scale(1.05);
}

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

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-header {
    padding: 2.5rem 2.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.package-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.package-card:nth-child(2) .package-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.package-card:nth-child(3) .package-icon {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
}

.package-header h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 700;
}

.package-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: #4a5568;
    font-weight: 500;
}

.package-content {
    padding: 2rem 2.5rem 2.5rem;
}

.package-description {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-align: center;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #4a5568;
}

.package-features i {
    color: #667eea;
    margin-right: 0.8rem;
    font-size: 1.1rem;
    width: 16px;
}

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

.package-cta .btn {
    width: 100%;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Value Proposition Section */
.value-proposition {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

.value-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: white;
}

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

.value-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.value-item:nth-child(1) .value-icon {
    background: rgba(255, 107, 53, 0.3);
    color: #ff6b35;
}

.value-item:nth-child(2) .value-icon {
    background: rgba(255, 140, 66, 0.3);
    color: #ff8c42;
}

.value-item:nth-child(3) .value-icon {
    background: rgba(255, 107, 53, 0.3);
    color: #ff6b35;
}

.value-item:nth-child(4) .value-icon {
    background: rgba(255, 140, 66, 0.3);
    color: #ff8c42;
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
}

.value-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.value-cta {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.value-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.value-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.value-cta .btn {
    background: white;
    color: #667eea;
    font-weight: 700;
    padding: 15px 40px;
    font-size: 1.1rem;
}

.value-cta .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.contact-item h4 {
    color: #2d3748;
    margin-bottom: 0.3rem;
}

.contact-item p {
    color: #4a5568;
}

.contact-item p a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item p a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.contact-form {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #2d3748;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: #a0aec0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #667eea;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #4a5568;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #667eea;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a5568;
    color: #a0aec0;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes flow {
    0% {
        opacity: 0.3;
        transform: scaleX(0);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
    100% {
        opacity: 0.3;
        transform: scaleX(0);
    }
}

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

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes magnifyPulse {
    0%, 100% {
        transform: scale(2.5);
        box-shadow: 0 0 30px rgba(102, 126, 234, 1);
    }
    50% {
        transform: scale(2.7);
        box-shadow: 0 0 40px rgba(102, 126, 234, 1);
    }
}

@keyframes sequenceGlow {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
    }
    50% {
        transform: scale(1.8);
        box-shadow: 0 0 25px rgba(102, 126, 234, 0.9);
    }
    100% {
        transform: scale(1.8);
        box-shadow: 0 0 25px rgba(102, 126, 234, 0.9);
    }
}

@keyframes connectionFlow {
    0%, 100% {
        opacity: 0.6;
        transform: scaleX(1);
    }
    50% {
        opacity: 1;
        transform: scaleX(1.1);
    }
}

/* Old Responsive Design - Removed */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
        padding: 0 20px;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ai-visualization {
        width: 300px;
        height: 300px;
    }


    .logo-container {
        gap: 0.8rem;
    }

    .nav-logo h2 {
        font-size: 1.6rem;
    }

    .logo-tagline {
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }
}
