/* ============================================
   CODE WAVE DIGITAL - MAIN STYLESH.logo-text {
    background: linear-gradient(135deg, #b537f2, #ff006e, #00d9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-trans.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #b537f2 0%, #ff006e 50%, #00d9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    filter: drop-shadow(0 0 20px rgba(181, 55, 242, 0.3));
    word-spacing: 0.05em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #00d9ff;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.3);
    letter-spacing: 0.5px;
}    letter-spacing: 2px;
    font-weight: 800;
    font-size: 1.4rem;
    filter: drop-shadow(0 0 15px rgba(181, 55, 242, 0.5));
    text-shadow: 
        0 0 20px rgba(181, 55, 242, 0.4),
        0 0 40px rgba(255, 0, 110, 0.2);
    position: relative;
}rk Theme with Modern Design
   ============================================ */

:root {
    --primary-color: #00d9ff;
    --primary-light: #00f0ff;
    --accent-color: #ff006e;
    --accent-purple: #b537f2;
    --accent-pink: #ff006e;
    --dark-bg: #0a0e27;
    --dark-secondary: #0f1428;
    --dark-tertiary: #151d3b;
    --bg-card: #0f1428;
    --text-light: #ffffff;
    --text-muted: #a0a5b8;
    --text-dim: #6a6f82;
    --border-color: #1a2647;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ff006e;
    --neon-blue: #00d9ff;
    --neon-purple: #b537f2;
    --neon-pink: #ff006e;
    --grey-light: #8a8f9e;
    --grey-medium: #505562;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* ============================================
   SCROLLBAR STYLING
   ============================================ */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-secondary);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #00d9ff, #ff006e);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff006e, #00d9ff);
}

/* ============================================
   NAVIGATION STYLING
   ============================================ */

.navbar {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-secondary) 100%) !important;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(0, 217, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-text {
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    font-size: 1.4rem;
    filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.3));
    text-shadow: 0 0 15px rgba(0, 217, 255, 0.2);
}

.logo-digital {
    color: #00d9ff;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
    filter: drop-shadow(0 0 15px rgba(0, 217, 255, 0.4));
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #b537f2, #ff006e, #00d9ff);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 0, 110, 0.5);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: #00d9ff !important;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0e27 0%, #0f1428 50%, #151d3b 100%);
    margin-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 217, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 217, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(255, 0, 110, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.hero-background::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(181, 55, 242, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    box-shadow: 0 0 80px rgba(181, 55, 242, 0.4);
    top: -100px;
    right: -100px;
}

.hero-background::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
    animation: float 8s ease-in-out infinite reverse;
    box-shadow: 0 0 60px rgba(0, 217, 255, 0.3);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-30px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: subtleGlow 2s ease-in-out infinite alternate;
    word-spacing: 0.1em;
    line-height: 1.2;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(181, 55, 242, 0.5), 0 0 40px rgba(255, 0, 110, 0.3);
        filter: drop-shadow(0 0 20px rgba(181, 55, 242, 0.4));
    }
    to {
        text-shadow: 0 0 40px rgba(181, 55, 242, 0.7), 0 0 80px rgba(255, 0, 110, 0.5);
        filter: drop-shadow(0 0 35px rgba(181, 55, 242, 0.6));
    }
}

@keyframes subtleGlow {
    from {
        text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    to {
        text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 217, 255, 0.15);
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #a0a5b8;
    margin-bottom: 40px;
    font-weight: 500;
    letter-spacing: 1px;
}

.scroll-down-arrow {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: #00d9ff;
    font-size: 1.8rem;
    animation: scrollBounce 2s infinite;
    cursor: pointer;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
    filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.3));
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) translateY(15px);
        opacity: 0.6;
    }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary {
    background: linear-gradient(135deg, #b537f2, #9d4edd);
    border: 2px solid transparent;
    color: var(--text-light);
    font-weight: 600;
    padding: 12px 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(181, 55, 242, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(181, 55, 242, 0.6), 0 0 50px rgba(255, 0, 110, 0.3);
    background: linear-gradient(135deg, #ff006e, #b537f2);
    color: var(--text-light);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    font-weight: 600;
    padding: 10px 28px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 15px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #00d9ff;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* ============================================
   SERVICE CARDS
   ============================================ */

.service-card {
    background: linear-gradient(135deg, rgba(15, 20, 40, 0.8) 0%, rgba(21, 29, 59, 0.8) 100%);
    border: 2px solid rgba(0, 217, 255, 0.15);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 217, 255, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 217, 255, 0.4);
    box-shadow: 0 15px 50px rgba(0, 217, 255, 0.15), 0 0 30px rgba(0, 217, 255, 0.1);
    background: linear-gradient(135deg, rgba(15, 20, 40, 1) 0%, rgba(21, 29, 59, 1) 100%);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00d9ff, #ff006e, #00d9ff);
    transition: left 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
}

.service-card:hover::before {
    left: 0;
}

.service-icon {
    font-size: 3.5rem;
    color: #00d9ff;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
    filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.4));
    display: block;
}

.service-card:hover .service-icon {
    color: #ff006e;
    transform: scale(1.2) rotate(5deg);
    text-shadow: 0 0 25px rgba(255, 0, 110, 0.4);
}

.service-card h3 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
}

.service-link {
    display: inline-block;
    color: #00d9ff;
    text-decoration: none;
    font-weight: 700;
    margin-top: 20px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.3);
}

.service-link:hover {
    color: #ff006e;
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(255, 0, 110, 0.5);
}

/* ============================================
   PORTFOLIO CARDS - SCROLLABLE VERSION
   ============================================ */

.portfolio-card-link {
    text-decoration: none;
    display: block;
}

.portfolio-card-scroll {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 300px;
    cursor: pointer;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    background: var(--dark-tertiary);
}

.portfolio-card-scroll:hover {
    border-color: var(--primary-cyan);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.2);
    transform: translateY(-5px);
}

.portfolio-scroll-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    animation: scrollImage 8s linear infinite;
}

@keyframes scrollImage {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20%);
    }
    100% {
        transform: translateY(0);
    }
}

.portfolio-card-scroll:hover .portfolio-scroll-image {
    animation-play-state: paused;
    transform: scale(1.05);
}

.portfolio-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(181, 55, 242, 0.9) 0%, rgba(255, 0, 110, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(5px);
}

.portfolio-card-scroll:hover .portfolio-hover-overlay {
    opacity: 1;
}

.portfolio-hover-content {
    text-align: center;
    color: var(--text-light);
    position: relative;
    z-index: 2;
}

.portfolio-card-scroll .portfolio-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.portfolio-card-scroll .portfolio-category {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
}

.portfolio-view-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 1.5rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.portfolio-card-scroll:hover .portfolio-view-icon {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.2);
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 1.2rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-5px);
}

.portfolio-link {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    color: var(--dark-bg);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.portfolio-link:hover {
    transform: scale(1.1);
}

/* ============================================
   CONTACT FORM STYLING
   ============================================ */

.form-control-dark {
    background-color: var(--dark-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    transition: all 0.3s ease;
}

.form-control-dark:focus {
    background-color: var(--dark-secondary);
    border-color: var(--primary-color);
    color: var(--text-light);
    box-shadow: 0 0 0 0.2rem rgba(0, 153, 255, 0.25);
}

.form-control-dark::placeholder {
    color: var(--text-dim);
}

.contact-info-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, var(--dark-secondary) 0%, var(--dark-tertiary) 100%);
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 153, 255, 0.1);
}

.contact-icon {
    font-size: 2rem;
    color: #ff006e;
    min-width: 50px;
    text-align: center;
    text-shadow: 0 0 15px rgba(255, 0, 110, 0.4);
    filter: drop-shadow(0 0 10px rgba(255, 0, 110, 0.3));
}

.contact-details h5 {
    margin-bottom: 10px;
    color: #00d9ff;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.3);
}

/* ============================================
   STATS SECTION
   ============================================ */

.stat-card {
    padding: 30px;
    text-align: center;
    animation: fadeInUp 0.8s ease forwards;
}

.stat-number {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #00d9ff;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    text-shadow: 0 0 15px rgba(0, 217, 255, 0.15);
}

.stat-label {
    font-size: 1.1rem;
    color: #00d9ff;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.3);
    letter-spacing: 0.5px;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    position: relative;
    background: linear-gradient(135deg, var(--dark-secondary) 0%, var(--dark-tertiary) 100%);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 153, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.cta-subtitle {
    font-size: 1.2rem;
    color: #00d9ff;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    font-weight: 500;
    text-shadow: 0 0 15px rgba(0, 217, 255, 0.3);
    letter-spacing: 0.5px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    margin-top: 80px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-text {
    color: #a0a5b8;
    font-size: 0.95rem;
    line-height: 1.8;
    letter-spacing: 0.3px;
    font-weight: 400;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #00d9ff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.2);
}

.footer-links a:hover {
    color: #ff006e;
    transform: translateX(5px);
    text-shadow: 0 0 15px rgba(255, 0, 110, 0.5);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    color: #a0a5b8;
    margin-bottom: 12px;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.footer-contact i {
    color: #ff006e;
    margin-top: 3px;
    min-width: 20px;
    text-shadow: 0 0 10px rgba(255, 0, 110, 0.3);
}

.footer-divider {
    border-color: rgba(0, 212, 255, 0.1);
    margin: 40px 0;
}

.footer-copyright {
    color: #b0a0c0;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.2), rgba(0, 212, 255, 0.1));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-color: var(--accent-color);
    color: var(--dark-bg);
    transform: translateY(-5px);
}

.social-icon-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.2), rgba(0, 212, 255, 0.1));
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icon-large:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-color: var(--accent-color);
    color: var(--dark-bg);
    transform: scale(1.15) translateY(-5px);
}

/* ============================================
   IMAGE PLACEHOLDER
   ============================================ */

.image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--dark-secondary) 0%, var(--dark-tertiary) 100%);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.5;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@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);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease forwards;
}

.slide-in-right {
    animation: slideInRight 0.8s ease forwards;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.text-center {
    text-align: center !important;
}

.text-md-end {
    text-align: end !important;
}

.g-4 {
    gap: 1.5rem !important;
}

.g-5 {
    gap: 3rem !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .service-card {
        padding: 30px 20px;
    }

    .portfolio-card {
        height: 250px;
    }

    .social-links {
        justify-content: center;
        margin-top: 20px;
    }

    .navbar {
        padding: 1rem 0;
    }

    .nav-link {
        margin: 5px 0;
    }

    .stat-card {
        padding: 20px 10px;
    }

    .contact-info-card {
        flex-direction: column;
        gap: 15px;
    }

    .footer {
        margin-top: 50px;
    }

    .hero {
        min-height: 80vh;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.5rem;
        letter-spacing: 0;
    }

    .hero {
        min-height: 85vh;
    }

    .section-title {
        font-size: 1.4rem;
        letter-spacing: 0;
    }

    .service-card {
        padding: 20px 15px;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .btn-primary,
    .btn-outline-primary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .portfolio-card {
        height: 200px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }

    .footer-title {
        font-size: 1rem;
    }

    .contact-form {
        margin-bottom: 30px;
    }

    .row {
        margin: 0;
    }

    .col-md-3,
    .col-md-4,
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0;
        margin-bottom: 20px;
    }
}
