/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* New Color Palette */
    --primary-color: #1F7FFF;
    --secondary-color: #1F47FF;
    --accent-color: #1F7FFF;
    --text-dark: #000000;
    --text-light: #666666;
    --text-white: #FFFFFF;
    --bg-light: #FFFFFF;
    --bg-dark: #000000;
    --border-color: #e0e0e0;
    --shadow-light: 0 2px 10px rgba(31, 127, 255, 0.1);
    --shadow-medium: 0 4px 20px rgba(31, 71, 255, 0.15);
    --shadow-heavy: 0 8px 30px rgba(31, 71, 255, 0.2);
    --gradient-primary: linear-gradient(135deg, #1F7FFF 0%, #1F47FF 100%);
    --gradient-secondary: linear-gradient(135deg, #1F47FF 0%, #1F7FFF 100%);
    --gradient-hero: linear-gradient(135deg, #FFFFFF 0%, #f8f9fa 50%, #1F7FFF 100%);
    --gradient-accent: linear-gradient(45deg, #1F7FFF 0%, #1F47FF 50%, #1F7FFF 100%);
}

/* Import Custom Fonts - Multiple Sources for Compatibility */
@font-face {
    font-family: 'ARRoundGothicBold';
    src: url('./font.woff2') format('woff2'),
         url('font.woff2') format('woff2'),
         url('https://skycyriss.neocities.org/font.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ARRoundGothicThin';
    src: url('./font_thin.woff2') format('woff2'),
         url('font_thin.woff2') format('woff2'),
         url('https://skycyriss.neocities.org/font_thin.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

/* Fallback fonts */
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Rubik:wght@400;500;600;700;800;900&display=swap');

body {
    font-family: 'ARRoundGothicThin', 'Rubik', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: #ffffff;
}

/* Title Font - Using Custom AR Round Gothic Bold for emphasis */
h1, h2, h3, h4, h5, h6, .title-font, .bold-font {
    font-family: 'ARRoundGothicBold', 'Archivo Black', 'Rubik', sans-serif;
    font-weight: 900;
    letter-spacing: -0.02em;
}

/* Thin Font - For contrast text */
.font-thin, .thin-font {
    font-family: 'ARRoundGothicThin', 'Rubik', sans-serif !important;
    font-weight: 100 !important;
    letter-spacing: -0.01em;
}

/* Thin font - no gradient */
.hero-title .font-thin {
    font-family: 'ARRoundGothicThin', 'Rubik', sans-serif !important;
    font-weight: 100 !important;
    color: var(--text-dark);
}

/* Specific text elements that should use thin font */
.hero-title .thin-text,
.section-header .thin-text,
.empowering-text {
    font-family: 'ARRoundGothicThin', 'Rubik', sans-serif;
    font-weight: 100;
    letter-spacing: -0.01em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid var(--primary-color);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(31, 127, 255, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-light);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.gradient-text {
    color: var(--primary-color);
    font-family: 'ARRoundGothicBold', 'Archivo Black', sans-serif;
    font-weight: 900;
}

.gradient-text-blue {
    color: var(--text-dark);
    background-clip: text;
    font-family: 'ARRoundGothicBold', 'Archivo Black', sans-serif;
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(31, 71, 255, 0.3);
    display: block;
    margin-top: 0.5rem;
}

/* Logo Image Styling */
.logo-container {
    display: flex;
    align-items: center;
    height: 50px;
}

.logo-image {
    width: auto;
    max-width: 250px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(31, 127, 255, 0.2));
}

.logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(31, 127, 255, 0.3)) brightness(1.1);
}

/* Legacy support */
.nav-logo h2 {
    font-weight: 700;
    font-size: 1.8rem;
    display: none; /* Hide if logo image is present */
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Navigation */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    opacity: 0;
    z-index: 1;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    position: relative;
    z-index: 10;
    align-items: center;
}

.hero-title {
    font-family: 'ARRoundGothicBold', 'Archivo Black', sans-serif;
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    position: relative;
    z-index: 15;
    text-shadow: 0 4px 8px rgba(31, 127, 255, 0.2);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.4;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-description {
        max-width: 100%;
    }
}

.hero-description {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 90%;
    position: relative;
    z-index: 15;
}

.hero-content {
    position: relative;
    z-index: 12;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 15;
}

.btn {
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    box-shadow: var(--shadow-medium);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-white);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Floating Cards Animation - Bouncing Physics */
.floating-cards {
    position: relative;
    height: 500px;
    padding: 0;
    overflow: hidden;
    margin: 20px 0;
    border: none;
    border-radius: 20px;
    background: transparent;
}

.card {
    position: absolute;
    background: rgba(255, 255, 255, 1);
    border-radius: 20px;
    padding: 1.2rem;
    box-shadow: 0 8px 32px rgba(31, 127, 255, 0.12);
    border: 2px solid rgba(31, 127, 255, 0.08);
    background-clip: padding-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    width: 140px !important;
    height: 140px !important;
    min-width: 140px !important;
    min-height: 140px !important;
    max-width: 140px !important;
    max-height: 140px !important;
    z-index: 1;
    opacity: 1;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Initial positions for bouncing cards - 5 cards optimized */
.card:nth-child(1) {
    top: 60px;
    left: 60px;
}

.card:nth-child(2) {
    top: 80px;
    right: 80px;
}

.card:nth-child(3) {
    bottom: 120px;
    left: 100px;
}

.card:nth-child(4) {
    bottom: 100px;
    right: 120px;
}

.card:nth-child(5) {
    top: 200px;
    left: 50%;
    transform: translateX(-50%);
}

.card:hover {
    box-shadow: 0 16px 48px rgba(31, 127, 255, 0.25);
    border-color: rgba(31, 127, 255, 0.2);
    z-index: 10;
}

.card i {
    font-size: 2rem;
    color: var(--text-dark);
}

.card span {
    font-family: 'ARRoundGothicBold', 'Archivo Black', sans-serif;
    font-weight: 900;
    font-size: 0.9rem;
    color: var(--text-dark);
    text-align: center;
}

/* Responsive adjustments for bouncing cards */
@media (max-width: 768px) {
    .floating-cards {
        height: 400px;
        border-width: 1px;
    }
    
    .card {
        width: 120px !important;
        height: 120px !important;
        min-width: 120px !important;
        min-height: 120px !important;
        max-width: 120px !important;
        max-height: 120px !important;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .floating-cards {
        height: 350px;
        border-width: 1px;
    }
    
    .card {
        width: 100px !important;
        height: 100px !important;
        min-width: 100px !important;
        min-height: 100px !important;
        max-width: 100px !important;
        max-height: 100px !important;
        padding: 0.8rem;
    }
    
    .card i {
        font-size: 1.5rem;
    }
    
    .card span {
        font-size: 0.8rem;
    }
}



/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: 'ARRoundGothicBold', 'Archivo Black', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(31, 127, 255, 0.2);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    background: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    opacity: 0;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.service-card {
    background: var(--text-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 48px rgba(31, 127, 255, 0.2);
    border: 2px solid var(--primary-color);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--text-white);
}

.service-card h3 {
    font-family: 'ARRoundGothicBold', 'Archivo Black', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
    z-index: 2;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Solutions Section */
.solutions {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    opacity: 0;
    z-index: 1;
}

.solutions > * {
    position: relative;
    z-index: 2;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.solution-item {
    background: var(--text-white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(31, 71, 255, 0.12);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background-clip: padding-box;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
}

.solution-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-color);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.solution-item:hover::before {
    opacity: 0.05;
}

.solution-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.solution-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 16px 48px rgba(31, 71, 255, 0.25);
    border: 2px solid var(--secondary-color);
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.solution-icon i {
    font-size: 2rem;
    color: var(--text-white);
}

.solution-item h3 {
    font-family: 'ARRoundGothicBold', 'Archivo Black', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
    z-index: 2;
}

.solution-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* About Section */
.about {
    background: var(--text-white);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(31, 127, 255, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.about > * {
    position: relative;
    z-index: 2;
}

.about-content {
    align-items: center;
}

.about-text h2 {
    font-family: 'ARRoundGothicBold', 'Archivo Black', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-shadow: 0 2px 4px rgba(31, 127, 255, 0.2);
}

.lead {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat {
    text-align: center;
    transform: translateY(30px);
    transition: all 0.3s ease;
}

.stat.animate {
    opacity: 1;
    transform: translateY(0);
}

.stat h3 {
    font-family: 'ARRoundGothicBold', 'Archivo Black', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(31, 127, 255, 0.2);
}

.stat p {
    color: var(--text-light);
    font-weight: 500;
}

.tech-stack {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.tech-item {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    font-family: 'ARRoundGothicBold', 'Archivo Black', sans-serif;
    font-weight: 900;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
}

.tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.6s;
}

.tech-item:hover::before {
    left: 100%;
}

.tech-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 32px rgba(31, 127, 255, 0.3);
    border: 2px solid #FFFFFF;
}

/* Contact Section */
.contact {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 75%, rgba(31, 127, 255, 0.06) 0%, transparent 60%), radial-gradient(circle at 75% 25%, rgba(31, 71, 255, 0.06) 0%, transparent 60%);
    z-index: 1;
}

.contact > * {
    position: relative;
    z-index: 2;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-family: 'ARRoundGothicBold', 'Archivo Black', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.contact-item h4 {
    font-family: 'ARRoundGothicBold', 'Archivo Black', sans-serif;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form {
    background: var(--text-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(31, 127, 255, 0.15);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    opacity: 0.02;
    z-index: 1;
}

.contact-form > * {
    position: relative;
    z-index: 2;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.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(31, 127, 255, 0.15), 0 4px 12px rgba(31, 127, 255, 0.1);
    background: var(--text-white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 3rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
}

.footer > * {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--text-white);
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--secondary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.social-links a:hover::before {
    opacity: 1;
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(31, 127, 255, 0.4);
    border: 2px solid #FFFFFF;
}

.social-links a i {
    position: relative;
    z-index: 3;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #cccccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--text-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-light);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .floating-cards {
        height: 300px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .solutions-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }


    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .tech-stack {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .service-card,
    .solution-item {
        padding: 1.5rem;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .tech-stack {
        grid-template-columns: 1fr;
    }
}

/* Animation delays for staggered effects */
.service-card:nth-child(1) { transition-delay: 0.1s; }
.service-card:nth-child(2) { transition-delay: 0.2s; }
.service-card:nth-child(3) { transition-delay: 0.3s; }
.service-card:nth-child(4) { transition-delay: 0.4s; }
.service-card:nth-child(5) { transition-delay: 0.5s; }
.service-card:nth-child(6) { transition-delay: 0.6s; }

.solution-item:nth-child(1) { transition-delay: 0.1s; }
.solution-item:nth-child(2) { transition-delay: 0.2s; }
.solution-item:nth-child(3) { transition-delay: 0.3s; }
.solution-item:nth-child(4) { transition-delay: 0.4s; }

.stat:nth-child(1) { transition-delay: 0.1s; }
.stat:nth-child(2) { transition-delay: 0.2s; }
.stat:nth-child(3) { transition-delay: 0.3s; }
.stat:nth-child(4) { transition-delay: 0.4s; }