/*
* Gedo.One - Digital Agency Website
* Based on vsourz.com design inspiration
*/

/* ===== UTILITY CLASSES ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ===== ROOT VARIABLES ===== */
:root {
    /* Colors */
    --primary: #0e1e32;
    --secondary: #0f172a;
    --accent: #00d4ff;
    --accent-dark: #00a7cc;
    --dark: #0a1018;
    --dark-light: #111827;
    --light: #f8fafc;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --gray-dark: #334155;
    --white: #ffffff;
    --black: #000000;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--accent) 0%, #4f46e5 100%);
    --gradient-text: linear-gradient(135deg, var(--accent) 0%, #ff00a8 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    
    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 5rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;
    
    /* Transition */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Z-index */
    --z-negative: -1;
    --z-normal: 1;
    --z-tooltip: 10;
    --z-fixed: 100;
    --z-modal: 1000;
}

/* ===== BASE STYLES ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.6;
    color: var(--light);
    background-color: var(--primary);
    overflow-x: hidden;
}

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

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
    margin-bottom: 1rem;
    color: var(--gray-light);
}

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

a:hover {
    color: var(--accent-dark);
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-2xl) 0;
    position: relative;
}

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

.accent {
    color: var(--accent);
}

/* ===== HEADER & NAVIGATION ===== */
header {
    background-color: var(--primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 1rem 0;
}

.navbar {
    padding: 0;
    background-color: transparent !important;
}

.navbar-brand {
    font-weight: 700;
    color: var(--white) !important;
}

.navbar-nav {
    margin-left: auto;
}

.nav-link {
    color: var(--gray-light) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white) !important;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.1) !important;
    background-color: rgba(255, 255, 255, 0.05) !important;
}

.navbar-toggler-icon {
    filter: invert(1);
    opacity: 0.75;
}

/* ===== NAVBAR & LOGO STYLES ===== */
.brand-accent {
    color: #ffd54f;
}

/* ===== HIGHLIGHTS SECTION ===== */
.highlights-section {
    padding-top: 0;
    margin-top: -80px;
    position: relative;
    z-index: 1;
}

/* ===== HIGHLIGHTS GRID ===== */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

/* ===== HIGHLIGHT BOXES ===== */
.highlight-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.highlight-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 212, 255, 0.2);
}

.highlight-icon {
    background: rgba(0, 212, 255, 0.1);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    transition: all 0.5s ease;
    animation: float 4s ease-in-out infinite;
}

.highlight-box:nth-child(1) .highlight-icon {
    animation-delay: 0s;
}

.highlight-box:nth-child(2) .highlight-icon {
    animation-delay: 1s;
}

.highlight-box:nth-child(3) .highlight-icon {
    animation-delay: 2s;
}

.highlight-box:nth-child(4) .highlight-icon {
    animation-delay: 3s;
}

.highlight-box:hover .highlight-icon {
    background: var(--gradient-primary);
    transform: scale(1.1);
}

.highlight-icon i {
    font-size: 1.5rem;
    color: var(--accent);
}

.highlight-box:hover .highlight-icon i {
    color: var(--white);
}

.highlight-box i {
    color: var(--accent);
    margin-bottom: var(--spacing-sm);
}

.highlight-box h5 {
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--white);
}

.highlight-box p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--gray-light);
}

/* ===== SECTION SPACING FIXES ===== */
section, .py-5 {
    padding: 0;
    margin: 0;
    padding-top: 3rem;
    padding-bottom: 2rem;
}

/* Emergency empty space fix - targeted by memory */
.py-5 + #about {
    margin-top: -20px !important;
}

#about + #contact {
    margin-top: -20px !important;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 4rem 0;
    position: relative;
    background-color: var(--secondary);
    margin-top: 0 !important;
}

/* ===== GET IN TOUCH SECTION ===== */
.get-in-touch-section {
    padding: 4rem 0 2rem;
    text-align: center;
    position: relative;
    z-index: 5;
    background: linear-gradient(to bottom, transparent, rgba(14, 14, 22, 0.4));
}

.get-in-touch-btn {
    display: inline-block;
    cursor: pointer;
    transform: scale(1.3);
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
    animation: pulse 4s infinite alternate;
    padding: 0.7rem 2.5rem;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.get-in-touch-btn:hover {
    transform: scale(1.4) translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 50px rgba(0, 212, 255, 0.5);
    background: linear-gradient(90deg, #00d4ff 0%, #0047ab 100%);
}

/* ===== CONTACT SECTION ===== */
.contact {
    position: relative;
    padding: 6rem 0 8rem;
    background-color: rgba(14, 14, 22, 0.8);
    overflow: hidden;
    margin-bottom: -1px;
    margin-top: -1rem;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(9, 9, 121, 0.05) 100%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: -1;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
}

.contact-info {
    position: relative;
    padding-left: 0;
}

.contact-details {
    margin-top: 2.5rem;
}

.contact-table {
    border-spacing: 0 30px;
    margin-left: 0.5rem;
}

.icon-cell {
    vertical-align: top;
    padding-right: 1.5rem;
    width: 50px;
}

.contact-table i {
    font-size: 1.5rem;
    color: var(--accent);
    background-color: rgba(0, 212, 255, 0.1);
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-table i:hover {
    transform: translateY(-5px);
    background-color: var(--accent);
    color: var(--dark);
}

.contact-table td:nth-child(2) > div:first-child {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-text {
    color: var(--gray-light);
    font-size: 0.95rem;
}

/* ===== FOOTER STYLES ===== */
.footer {
    background: linear-gradient(135deg, #0e1e32 0%, #0f172a 100%);
    color: #e0e0e0;
    padding: 8px 0;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.footer::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, rgba(9, 9, 121, 0) 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: width 0.5s ease-out, height 0.5s ease-out, opacity 0.5s ease-out;
    pointer-events: none;
    z-index: 1;
}

.footer:hover::after {
    width: 180%;
    height: 300%;
    opacity: 1;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.footer-logo {
    margin-bottom: 0.5rem;
}

.footer-logo.logo {
    position: relative;
    font-size: 1.8rem;
    font-weight: 700;
    z-index: 10;
}

.footer-logo a {
    text-decoration: none;
    display: inline-block;
    position: relative;
    padding: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.copyright {
    font-size: 0.9rem;
    color: var(--gray-light);
}

.copyright-text {
    font-size: 0.8rem;
    color: var(--gray-light);
}



/* ===== NAVIGATION & LOGO STYLES ===== */
.top-nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(14, 14, 22, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.top-nav-bar::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, rgba(9, 9, 121, 0) 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: width 0.5s ease-out, height 0.5s ease-out, opacity 0.5s ease-out;
    pointer-events: none;
    z-index: 0;
}

.top-nav-bar:hover::after {
    width: 200%;
    height: 300%;
    opacity: 1;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

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

.top-menu nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.top-menu nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #fa5195);
    transition: width 0.3s ease;
}

.top-menu nav ul li a:hover {
    color: #00d4ff;
}

.top-menu nav ul li a:hover::after {
    width: 100%;
}

.top-menu nav ul li a.active {
    color: #00d4ff;
}

.top-menu nav ul li a.active::after {
    width: 100%;
    background: #00d4ff;
}

.top-menu nav ul li a.contact-btn {
    background: linear-gradient(90deg, #00d4ff, #fa5195);
    color: #0e0e16;
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
}

.top-menu nav ul li a.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 212, 255, 0.3);
}

.top-menu nav ul li a.contact-btn::after {
    display: none;
}

.logo {
    position: relative;
    font-size: 1.8rem;
    font-weight: 700;
    z-index: 10;
}

.logo a {
    text-decoration: none;
    display: inline-block;
    position: relative;
    padding: 0.5rem 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo .gedo-text {
    color: #00d4ff;
    transition: all 0.5s ease;
    position: relative;
    display: inline-block;
}

.logo .one-text {
    color: #fa5195;
    transition: all 0.5s ease;
    position: relative;
    display: inline-block;
}

.logo a:hover .gedo-text {
    color: #fa5195;
    transform: translateY(-5px);
    text-shadow: 0 0 15px rgba(250, 81, 149, 0.6);
    animation: logoShift 1.5s infinite alternate;
}

.logo a:hover .one-text {
    color: #00d4ff;
    transform: translateY(-5px);
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
    animation: logoShift 1.5s infinite alternate-reverse;
}

.logo a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #fa5195);
    transition: width 0.3s ease;
    opacity: 0;
}

.logo a:hover::before {
    width: 100%;
    opacity: 1;
}

@keyframes logoShift {
    0% {
        transform: translateY(-2px) rotate(-2deg);
    }
    25% {
        letter-spacing: 1px;
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        letter-spacing: 0;
    }
    100% {
        transform: translateY(2px) rotate(2deg);
    }
}

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

/* ===== FOOTER STYLES ===== */
.footer {
    padding: 2rem 0;
    position: relative;
    margin-top: 5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 1);
    background: linear-gradient(125deg, #05353d, #0a2a32);
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(90deg, #00ffcc, #00b7b7, #00ffcc);
    opacity: 0.2;
    filter: blur(50px);
}

.footer .container {
    position: relative;
    z-index: 5;
}

.footer .text-center {
    position: relative;
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.7);
    font-weight: 500;
}

/* Animated wave background */
.footer {
    position: relative;
}

.footer .wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%2300ffcc" fill-opacity="0.6" d="M0,192L48,176C96,160,192,128,288,133.3C384,139,480,181,576,186.7C672,192,768,160,864,144C960,128,1056,128,1152,144C1248,160,1344,192,1392,208L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: 100% 100%;
    z-index: 1;
    transform: translateY(40%);
    opacity: 0.7;
    animation: waveAnimation 15s linear infinite;
}

.footer .wave-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%2340e0d0" fill-opacity="0.5" d="M0,64L48,80C96,96,192,128,288,133.3C384,139,480,117,576,112C672,107,768,117,864,144C960,171,1056,213,1152,213.3C1248,213,1344,171,1392,149.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: 100% 100%;
    z-index: 2;
    transform: translateY(20%);
    opacity: 0.6;
    animation: waveAnimation 20s linear infinite reverse;
}

@keyframes waveAnimation {
    0% {
        background-position-x: 0;
    }
    100% {
        background-position-x: 1000px;
    }
}



.social-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--accent);
    font-size: 1.25rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.social-icon:hover {
    background-color: var(--accent);
    color: var(--dark);
    transform: translateY(-5px);
}

.contact-form {
    background-color: rgba(14, 30, 50, 0.5);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 30px rgba(0, 212, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    animation: pulse 6s infinite alternate;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(9, 9, 121, 0.1) 100%);
    filter: blur(30px);
    z-index: -1;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 10px;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background-color: rgba(0, 212, 255, 0.05);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

button.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(90deg, #00d4ff 0%, #0047ab 100%);
    color: var(--white);
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 212, 255, 0.1);
    width: 100%;
}

button.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(90deg, #0047ab 0%, #00d4ff 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-text {
    padding-right: var(--spacing-lg);
}

/* About Section - Redesigned to match hero */
.about-section {
    position: relative;
    min-height: 100vh;
    padding: 120px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.section-subtitle {
    display: inline-block;
    background: linear-gradient(90deg, #00d4ff 0%, #0047ab 100%);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Removed large styling for What We Do button */

.about-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-md);
    margin: 3rem 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 0.5rem 1rem;
    background-color: rgba(0, 212, 255, 0.1);
    border-radius: 50px;
    margin: 0.5rem;
}

.feature i {
    color: var(--accent);
}

.feature span {
    font-weight: 500;
    color: var(--gray-light);
}

.about-image {
    position: relative;
}

.main-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--gradient-primary);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.exp-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.exp-text {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--white);
    opacity: 0.8;
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio {
    padding: 4rem 0;
    background-color: var(--primary);
    margin-top: 0 !important;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--white);
}

.section-desc {
    color: var(--gray-light);
    margin-bottom: var(--spacing-lg);
}

.portfolio-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-light);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover, 
.filter-btn.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.portfolio-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: var(--dark-light);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.portfolio-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

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

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

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay-content {
    text-align: center;
    padding: var(--spacing-md);
}

.portfolio-category {
    color: var(--accent);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-xs);
}

.portfolio-title {
    color: var(--white);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.portfolio-content {
    padding: var(--spacing-md);
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 4rem 0;
    background-color: var(--secondary);
    margin-top: 0 !important;
}

.contact-header-wrapper {
    max-width: 700px;
    margin: 0 auto 4rem;
}

.contact-intro {
    max-width: 600px;
    margin: 0 auto;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
}

.contact-details {
    margin: var(--spacing-xl) 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    justify-content: center;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent);
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: all var(--transition-fast);
}

.social-icon:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px);
}

.contact-form {
    background-color: var(--dark-light);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

input, textarea {
    width: 100%;
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-family: var(--font-primary);
    transition: border-color var(--transition-fast);
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--accent);
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--dark);
    padding: var(--spacing-xl) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--spacing-xl);
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1.5rem;
}

/* Removed about-content special styling */

.footer-text {
    max-width: 300px;
    margin-bottom: var(--spacing-md);
}

.footer-links h4 {
    margin-bottom: var(--spacing-md);
    position: relative;
    display: inline-block;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.footer-links ul {
    padding: 0;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: var(--gray-light);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent);
}

.copyright {
    text-align: center;
    padding-top: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--gray-light);
    font-size: 0.9rem;
}

.section-subtitle {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--color-primary);
    background-color: rgba(96, 165, 250, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-sm);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 4.2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark);
}

.section-desc {
    font-size: 1.8rem;
    color: var(--color-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.service-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: rgba(96, 165, 250, 0.1);
    color: var(--color-primary);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
}

.service-icon i {
    font-size: 2.4rem;
}

.service-card h3 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.service-card p {
    color: var(--color-gray);
    margin-bottom: var(--spacing-md);
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--color-primary);
    font-weight: 600;
}

.service-link i {
    margin-left: 5px;
    transition: var(--transition-fast);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ===== TOP NAVIGATION WITH COLORED BAR STYLES ===== */
.top-nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(14, 14, 22, 0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 15px 0;
}

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

.logo a {
    color: #fff;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 700;
}

.brand-accent {
    color: #00d4ff;
}

.top-menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.top-menu ul li {
    margin-left: 25px;
}

.top-menu ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.top-menu ul li a:hover,
.top-menu ul li a.active {
    color: #ffffff;
}

.contact-btn {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-btn:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* The colored bar that extends below the navigation */
.colored-bar {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff 0%, #0047ab 100%);
    z-index: 999;
}

.navbar {
    position: relative;
    z-index: 2;
    padding: 1rem 0;
}

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #ffffff;
}

.contact-btn {
    background-color: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    border-radius: 50px;
    padding: 0.5rem 1.5rem !important;
    margin-left: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-btn:hover {
    background-color: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-2px);
}

.main-content-wrapper {
    padding-top: 80px; /* Adjusted to account for navigation + colored bar */
}

/* ===== GLOBAL BACKGROUND STYLES ===== */
body {
    background-color: #0e0e16;
    color: #ffffff;
    position: relative;
    overflow-x: hidden;
}

/* Global Background Elements */
.global-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, #0e0e16 40%, #16213e 100%);
    z-index: -10;
}

/* Decorative Shapes */
.global-shape-1 {
    position: fixed;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(9, 9, 121, 0.1) 100%);
    filter: blur(80px);
    z-index: -8;
    animation: float 8s ease-in-out infinite alternate;
}

.global-shape-2 {
    position: fixed;
    bottom: -250px;
    left: -100px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(9, 9, 121, 0.05) 100%);
    filter: blur(100px);
    z-index: -8;
    animation: float 10s ease-in-out infinite alternate-reverse;
}

/* Particles Canvas */
.global-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -7;
}

/* Global Background Animation */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, var(--accent) 0%, var(--primary) 100%);
    opacity: 0.03;
    z-index: -9;
    animation: gradientShift 15s ease infinite alternate;
}

.global-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgdmlld0JveD0iMCAwIDQwIDQwIj48ZyBmaWxsPSIjMDBkNGZmIiBvcGFjaXR5PSIwLjA1Ij48cGF0aCBkPSJNMjAgMGMyLjIgMCAzLjggMS44IDQgMy45LS4yLTIuMS0xLjktMy45LTQtMy45LTIuMiAwLTQgMS44LTQgMy45LjItMi4xIDEuOC0zLjkgNC0zLjl6TTAgMjBjMC0yLjIgMS44LTMuOCAzLjktNEMxLjggMTYuMiAwIDE3LjkgMCAyMGMwIDIuMiAxLjggNCAzLjkgNC4xQzEuOCAyMy44IDAgMjIuMiAwIDIweiI+PC9wYXRoPjwvZz48L3N2Zz4=');
    opacity: 0.4;
    z-index: -6;
}

/* ===== HERO SECTION - COMPLETE REDESIGN ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    color: #ffffff;
}

/* General Section Styles */
.section-heading {
    font-size: 3.5rem;
    color: #ffffff !important;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.section-header .section-heading,
body #about .container .about-content-wrapper .section-header h2.section-heading,
.about-section .section-header h2.section-heading,
section#about .section-header .section-heading {
    font-size: 48px !important;
    color: #ff3300 !important;
    font-weight: 700 !important;
    margin-bottom: 30px !important;
    display: block !important;
    position: relative !important;
    z-index: 1000 !important;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8) !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Hero section styling */
.hero-section {
    padding: 80px 0 60px;
}

.hero-section .container {
    max-width: 1280px;
}

.hero-text-block {
    padding-right: 30px;
}

.hero-heading {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-heading-accent {
    color: var(--accent);
}

.hero-services {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.service-tag {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-actions .btn-primary {
    padding: 12px 30px;
    font-size: 1rem;
}

/* MEGA ANIMATION CONTAINER */
.mega-animation-container {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 32vw;
    height: 32vw;
    max-width: 500px;
    max-height: 500px;
    min-width: 280px;
    min-height: 280px;
    z-index: 5; /* Lower z-index to stay below navigation */
    overflow: visible;
    pointer-events: none; /* Allows interaction with elements beneath */
}

.mega-circle {
    position: absolute;
    width: 110%;
    height: 110%;
    border-radius: 50%;
    border: min(10px, 1.5vw) solid rgba(0, 212, 255, 0.3);
    animation: mega-pulse 3s infinite;
    z-index: 1;
    left: -10%;
    top: -10%;
}

@keyframes mega-pulse {
    0% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(1); opacity: 0.6; }
}

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

.mega-word-cloud {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    animation: mega-rotate 80s linear infinite;
    transform-origin: center;
    left: 0;
    top: 0;
}

@keyframes mega-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive styles for the mega animation on different devices */
@media (max-width: 1200px) {
    .mega-animation-container {
        right: 5%;
    }
}

/* Fix for laptop screens (1366x768 and similar resolutions) */
@media (min-width: 1024px) and (max-width: 1440px) and (max-height: 900px) {
    .mega-animation-container {
        top: 60%; /* Adjust position to avoid going under the nav bar */
        transform: translateY(-60%);
        width: 28vw; /* Slightly smaller on laptops */
        height: 28vw;
        right: 10%;
    }
}

@media (max-width: 992px) {
    .mega-animation-container {
        width: 38vw;
        height: 38vw;
    }
}

@media (max-width: 768px) {
    .mega-animation-container {
        right: 50%;
        transform: translate(50%, -50%);
        width: 45vw;
        height: 45vw;
        opacity: 0.7;
    }
}

@media (max-width: 576px) {
    .mega-animation-container {
        width: 280px;
        height: 280px;
        top: 70%;
        opacity: 0.5;
    }

    .word-item {
        font-size: 90% !important;
    }
}

.word-item {
    position: absolute;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
    transform-origin: center;
    transition: all 0.5s ease;
    z-index: 5;
}

.word-item:hover {
    color: #00d4ff;
    transform: scale(1.1);
}

.word-item.extra-large { font-size: 1.5rem; }
.word-item.large { font-size: 1.3rem; }
.word-item.medium { font-size: 1.1rem; }
.word-item.small { font-size: 0.95rem; }

@keyframes gentle-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.word-item {
    position: absolute;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
    transform-origin: center;
    transition: all 0.5s ease;
}

/* Positioning words evenly dispersed across the circle */
.mega-word-cloud .word-item:nth-child(1) { top: 10%; left: 50%; animation: mega-float1 7s ease-in-out infinite alternate; transform: translate(-50%, -50%); }
.mega-word-cloud .word-item:nth-child(2) { top: 30%; left: 15%; animation: mega-float2 8s ease-in-out infinite alternate-reverse; transform: translate(-50%, -50%); }
.mega-word-cloud .word-item:nth-child(3) { top: 50%; left: 50%; animation: mega-float3 9s ease-in-out infinite alternate; transform: translate(-50%, -50%); font-weight: 700; z-index: 10; }
.mega-word-cloud .word-item:nth-child(4) { top: 90%; left: 50%; animation: mega-float4 7.5s ease-in-out infinite alternate-reverse; transform: translate(-50%, -50%); }
.mega-word-cloud .word-item:nth-child(5) { top: 30%; left: 85%; animation: mega-float5 8.5s ease-in-out infinite alternate; transform: translate(-50%, -50%); }
.mega-word-cloud .word-item:nth-child(6) { top: 75%; left: 15%; animation: mega-float6 6.5s ease-in-out infinite alternate-reverse; transform: translate(-50%, -50%); }
.mega-word-cloud .word-item:nth-child(7) { top: 15%; left: 75%; animation: mega-float7 9.5s ease-in-out infinite alternate; transform: translate(-50%, -50%); }
.mega-word-cloud .word-item:nth-child(8) { top: 50%; left: 15%; animation: mega-float8 7.3s ease-in-out infinite alternate-reverse; transform: translate(-50%, -50%); }
.mega-word-cloud .word-item:nth-child(9) { top: 70%; left: 85%; animation: mega-float9 8.7s ease-in-out infinite alternate; transform: translate(-50%, -50%); }
.mega-word-cloud .word-item:nth-child(10) { top: 50%; left: 85%; animation: mega-float10 6.8s ease-in-out infinite alternate-reverse; transform: translate(-50%, -50%); }
.mega-word-cloud .word-item:nth-child(11) { top: 85%; left: 75%; animation: mega-float11 7.2s ease-in-out infinite alternate; transform: translate(-50%, -50%); }
.mega-word-cloud .word-item:nth-child(12) { top: 15%; left: 25%; animation: mega-float12 6.8s ease-in-out infinite alternate-reverse; transform: translate(-50%, -50%); }
.mega-word-cloud .word-item:nth-child(13) { top: 30%; left: 50%; animation: mega-float13 7s ease-in-out infinite alternate; transform: translate(-50%, -50%); z-index: 9; }
.mega-word-cloud .word-item:nth-child(14) { top: 70%; left: 50%; animation: mega-float14 7.5s ease-in-out infinite alternate-reverse; transform: translate(-50%, -50%); z-index: 9; }

/* Enhanced floating animations with smaller, more centered movements */
@keyframes mega-float1 { 0% { transform: translate(-50%, -50%); } 50% { transform: translate(-45%, -45%); } 100% { transform: translate(-48%, -52%); } }
@keyframes mega-float2 { 0% { transform: translate(-50%, -50%); } 50% { transform: translate(-55%, -45%); } 100% { transform: translate(-52%, -48%); } }
@keyframes mega-float3 { 0% { transform: translate(-50%, -50%); } 50% { transform: translate(-48%, -52%); } 100% { transform: translate(-52%, -48%); } }
@keyframes mega-float4 { 0% { transform: translate(-50%, -50%); } 50% { transform: translate(-45%, -55%); } 100% { transform: translate(-53%, -47%); } }
@keyframes mega-float5 { 0% { transform: translate(-50%, -50%); } 50% { transform: translate(-53%, -47%); } 100% { transform: translate(-48%, -53%); } }
@keyframes mega-float6 { 0% { transform: translate(-50%, -50%); } 50% { transform: translate(-47%, -47%); } 100% { transform: translate(-52%, -48%); } }
@keyframes mega-float7 { 0% { transform: translate(-50%, -50%); } 50% { transform: translate(-47%, -53%); } 100% { transform: translate(-48%, -47%); } }
@keyframes mega-float8 { 0% { transform: translate(-50%, -50%); } 50% { transform: translate(-53%, -52%); } 100% { transform: translate(-48%, -47%); } }
@keyframes mega-float9 { 0% { transform: translate(-50%, -50%); } 50% { transform: translate(-47%, -47%); } 100% { transform: translate(-53%, -52%); } }
@keyframes mega-float10 { 0% { transform: translate(-50%, -50%); } 50% { transform: translate(-53%, -47%); } 100% { transform: translate(-48%, -52%); } }
@keyframes mega-float11 { 0% { transform: translate(-50%, -50%); } 50% { transform: translate(-47%, -52%); } 100% { transform: translate(-52%, -47%); } }
@keyframes mega-float12 { 0% { transform: translate(-50%, -50%); } 50% { transform: translate(-52%, -47%); } 100% { transform: translate(-48%, -53%); } }
@keyframes mega-float13 { 0% { transform: translate(-50%, -50%); } 50% { transform: translate(-48%, -47%); } 100% { transform: translate(-52%, -53%); } }
@keyframes mega-float14 { 0% { transform: translate(-50%, -50%); } 50% { transform: translate(-52%, -54%); } 100% { transform: translate(-48%, -47%); } }

.word-item:hover {
    color: #00d4ff;
    transform: scale(1.1);
}

.word-item[data-weight="10"] { font-size: 3.5rem !important; }
.word-item[data-weight="9"] { font-size: 3.2rem !important; }
.word-item[data-weight="8"] { font-size: 3rem !important; }
.word-item[data-weight="7"] { font-size: 2.8rem !important; }
.word-item[data-weight="6"] { font-size: 2.5rem !important; }
.word-item[data-weight="5"] { font-size: 2.2rem !important; }
.word-item[data-weight="4"] { font-size: 2rem !important; }

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-text-block {
        text-align: center;
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .hero-services {
        justify-content: center;
    }
    
    .hero-actions {
        display: flex;
        justify-content: center;
    }
    
    .hero-heading {
        font-size: 2.8rem;
    }
}

/* Background Elements */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, #0e0e16 40%, #16213e 100%);
    z-index: 1;
}

/* Decorative Shapes */
.hero-shape-1 {
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(9, 9, 121, 0.1) 100%);
    filter: blur(80px);
    z-index: 2;
    animation: float 8s ease-in-out infinite alternate;
}

.hero-shape-2 {
    position: absolute;
    bottom: -250px;
    left: -100px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(9, 9, 121, 0.05) 100%);
    filter: blur(100px);
    z-index: 2;
    animation: float 10s ease-in-out infinite alternate-reverse;
}

/* Particles Canvas */
.particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

/* Hero Background Animation */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, var(--accent) 0%, var(--primary) 100%);
    opacity: 0.03;
    z-index: 0;
    animation: gradientShift 15s ease infinite alternate;
}

@keyframes gradientShift {
    0% {
        opacity: 0.02;
        transform: scale(1);
    }
    50% {
        opacity: 0.05;
        transform: scale(1.05);
    }
    100% {
        opacity: 0.02;
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgdmlld0JveD0iMCAwIDQwIDQwIj48ZyBmaWxsPSIjMDBkNGZmIiBvcGFjaXR5PSIwLjA1Ij48cGF0aCBkPSJNMjAgMGMyLjIgMCAzLjggMS44IDQgMy45LS4yLTIuMS0xLjktMy45LTQtMy45LTIuMiAwLTQgMS44LTQgMy45LjItMi4xIDEuOC0zLjkgNC0zLjl6TTAgMjBjMC0yLjIgMS44LTMuOCAzLjktNEMxLjggMTYuMiAwIDE3LjkgMCAyMGMwIDIuMiAxLjggNCAzLjkgNC4xQzEuOCAyMy44IDAgMjIuMiAwIDIweiI+PC9wYXRoPjwvZz48L3N2Zz4=');
    opacity: 0.4;
    z-index: 0;
}

/* Hero Content Wrapper */
.hero-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Main Hero Container */
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    max-width: 1500px;
    height: 100vh;
    margin: 0 auto;
    padding: 0 3rem;
    gap: 4rem;
}

/* Hero Text Block */
.hero-text-block {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 5;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(90deg, #00d4ff 0%, #0047ab 100%);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    animation: fadeInRight 0.8s ease forwards;
    opacity: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-heading {
    font-size: 4.2rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ffffff;
    animation: fadeInUp 0.8s ease forwards 0.2s;
    opacity: 0;
}

.hero-heading-accent {
    background: linear-gradient(to right, #00d4ff, #0047ab);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.hero-heading-accent::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #00d4ff, #0047ab);
    animation: widthGrow 1s ease forwards 1s;
    transform-origin: left;
    transform: scaleX(0);
}

@keyframes widthGrow {
    to { transform: scaleX(1); }
}

/* Service Tags */
.hero-services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease forwards 0.4s;
    opacity: 0;
}

.service-tag {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    cursor: default;
}

.service-tag:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: translateY(-3px);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease forwards 0.6s;
    opacity: 0;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease forwards 0.8s;
    opacity: 0;
}

.btn-primary {
    background: linear-gradient(90deg, #00d4ff 0%, #0047ab 100%);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 212, 255, 0.2);
    text-transform: uppercase;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #0047ab 0%, #00d4ff 100%);
    transition: all 0.5s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 212, 255, 0.4);
    background: linear-gradient(90deg, #0064ff 0%, #0055d4 100%);
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.6s;
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Play Button */
.btn-play {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.play-icon i {
    color: #ffffff;
    font-size: 0.9rem;
}

.play-text {
    color: #ffffff;
    font-weight: 500;
}

.btn-play:hover .play-icon {
    background: #00d4ff;
    transform: scale(1.1);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    width: 50%;
    height: 500px;
    transform: scale(0.75);
}

.hero-image-container {
    position: relative;
    width: 62.5%;
    height: 375px;
    margin: 0 auto;
    animation: fadeIn 1s ease forwards 0.5s;
    opacity: 0;
}

.hero-image-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(0, 71, 171, 0.05) 100%);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
}

/* Animated Circle */
.animated-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 2px solid rgba(0, 212, 255, 0.3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite alternate;
}

.animated-circle::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid rgba(0, 212, 255, 0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite alternate 1s;
}

.animated-circle::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid rgba(0, 212, 255, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite alternate 2s;
}

/* Visual Dots Pattern */
.visual-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 2px, transparent 2px);
}

.visual-dots::before,
.visual-dots::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(0, 212, 255, 0.3);
}

.visual-dots::before {
    top: 20%;
    left: 15%;
    animation: float 4s ease-in-out infinite;
}

.visual-dots::after {
    bottom: 30%;
    right: 20%;
    animation: float 3s ease-in-out infinite reverse;
}

.floating-shape {
    position: absolute;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2) 0%, rgba(0, 212, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: 30%;
    left: 70%;
    animation: float 7s ease-in-out infinite alternate;
}

.shape-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    left: 20%;
    animation: float 5s ease-in-out infinite alternate-reverse;
}

.shape-3 {
    width: 40px;
    height: 40px;
    top: 20%;
    left: 40%;
    animation: float 4s ease-in-out infinite alternate;
    background: linear-gradient(to right, #4169E1, #0047ab);
    top: 70%;
    right: 25%;
    animation: floatShape 7s ease-in-out infinite 0.5s alternate-reverse;
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

/* Word Cloud Container */
.word-cloud-container {
    position: absolute;
    width: 150%; /* Increased by 50% total (25% + 20% more) */
    height: 100%;
    top: 0;
    left: -25%; /* Centering the wider container */
    z-index: 5;
    overflow: hidden;
    border-radius: 30px;
    pointer-events: auto; /* Ensure mouse events work */
    display: flex;
    justify-content: center;
    align-items: center;
}

.word-item {
    position: absolute;
    background: rgba(0, 212, 255, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    cursor: default;
    transform-origin: center;
    transform: translate(-50%, -50%);
    will-change: transform, left, top, opacity, background-color;
    z-index: 5;
    /* Subtle blur to enhance dust-like appearance */
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}

.word-item[data-weight="10"] {
    font-size: 1.1rem;
    background: rgba(0, 212, 255, 0.3);
}

.word-item[data-weight="9"] {
    font-size: 1rem;
    background: rgba(0, 212, 255, 0.28);
}

.word-item[data-weight="8"] {
    font-size: 0.95rem;
    background: rgba(0, 212, 255, 0.25);
}

.word-item[data-weight="7"] {
    font-size: 0.9rem;
    background: rgba(0, 212, 255, 0.22);
}

.word-item[data-weight="6"] {
    font-size: 0.85rem;
    background: rgba(0, 212, 255, 0.2);
}

.word-item[data-weight="5"] {
    font-size: 0.8rem;
    background: rgba(0, 212, 255, 0.18);
}

.word-item[data-weight="4"] {
    font-size: 0.75rem;
    background: rgba(0, 212, 255, 0.15);
}

/* Remove hover styles as we want purely physics-based interaction */
.word-cloud-container:hover {
    cursor: default;
}



/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.stat-card:nth-child(1) .stat-icon {
    animation-delay: 0s;
}

.stat-card:nth-child(2) .stat-icon {
    animation-delay: 0.5s;
}

.stat-card:nth-child(3) .stat-icon {
    animation-delay: 1s;
}

.stat-card:nth-child(4) .stat-icon {
    animation-delay: 1.5s;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--white);
}

.stat-text {
    font-size: 0.85rem;
    color: var(--gray-light);
    margin-bottom: 0;
}

/* Animation Keyframes */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Float Animation */
@keyframes float {
0% {
transform: translateY(0);
}
50% {
transform: translateY(-15px);
}
100% {
transform: translateY(0);
}
}



/* Hero Responsive Styles */
@media (max-width: 1200px) {
    .hero-heading {
        font-size: 3rem;
    }
    
    .hero-container {
        padding: 3rem 2rem;
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 6rem 1.5rem 4rem;
        height: auto;
        gap: 2rem;
    }
    
    .hero-text-block {
        margin: 0 auto;
        order: 2;
        max-width: 600px;
        padding: 0 1rem;
    }
    
    .hero-visual {
        order: 1;
        margin-bottom: 2rem;
        width: 100%;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-image-container {
        width: 100%;
        max-width: 500px;
    }
    
    .word-cloud-container {
        width: 140%;
        left: -20%;
    }
    
    .hero-heading {
        font-size: 3.5rem;
    }
    
    .hero-services {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-image-container {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 100%;
    }
    
    .hero-container {
        padding: 5rem 1.5rem 3rem;
    }
    
    .hero-heading {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .animated-circle, 
    .animated-circle::before, 
    .animated-circle::after {
        transform: translate(-50%, -50%) scale(0.8);
    }
    
    .hero-image-container {
        height: 380px;
    }
    

    
    .btn-primary {
        padding: 0.875rem 1.75rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-primary, .btn-play {
        width: 100%;
        justify-content: center;
    }
    
    .hero-image-container {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 100%;
    }
    
    .hero-container {
        padding: 4rem 1rem 2rem;
    }
    
    .hero-heading {
        font-size: 2rem;
    }
    
    .hero-badge {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-image-container {
        height: 280px;
    }
    
    .animated-circle, 
    .animated-circle::before, 
    .animated-circle::after {
        transform: translate(-50%, -50%) scale(0.6);
    }
    
    .image-label {
        padding: 0.3rem 0.8rem;
        font-size: 0.7rem;
    }
    
    .hero-services {
        gap: 0.5rem;
    }
    
    .service-tag {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
}

/* Highlights section fixes */
.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 0 !important;
    background-color: var(--primary);
    margin-bottom: 0 !important;
}

/* Placeholder styles from inline to external CSS */
.placeholder-box {
    background-color: #1e293b; 
    height: 200px; 
    width: 100%; 
    border-radius: 8px 8px 0 0; 
    display: flex; 
    align-items: center; 
    justify-content: center;
}

.about-placeholder {
    background-color: #1e293b; 
    height: 300px; 
    width: 100%; 
    border-radius: 8px; 
    display: flex; 
    align-items: center; 
    justify-content: center;
}

.placeholder-icon {
    color: #00d4ff;
}

/* Direct fix to remove the empty space - force elements to stack properly */
#about {
    margin-top: -1px !important;
}

.about-content, .portfolio-grid, .contact-wrapper {
    position: relative;
    z-index: 1;
}

/* Force sections to display properly */
section {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
}

/* Fix any potential negative margins or translation issues */
.about, .portfolio, .contact {
    transform: none !important;
    margin-bottom: 0 !important;
    border-top: none !important;
    position: relative !important;
    top: 0 !important;
}

/* Make AOS instant */
[data-aos], .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

/* Highlights grid responsive behavior */
@media (max-width: 1200px) {
    .highlights-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-sm);
    }
}

@media (max-width: 768px) {
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .highlight-box {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .section-subtitle.text-center {
        font-size: 1.25rem;
        padding: 0.6rem 2rem;
    }
    
    .hero-image-container {
        height: 300px;
    }
    
    .word-cloud-container {
        width: 130%;
        left: -15%;
    }
    
    .word-item {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
}

/* Add more space to section titles */
.section-title {
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
}

/* About Section - Matching Hero Style */
.about-section {
    position: relative;
    min-height: 100vh;
    padding: 120px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: #fff;
}

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

.about-content-wrapper {
    position: relative;
    z-index: 5;
    width: 100%;
}

.section-header {
    margin-bottom: 4rem;
    position: relative;
}

.about-badge {
    margin-bottom: 1.5rem;
}

.section-heading {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.accent-bar {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #00d4ff, #0047ab);
    animation: widthGrow 1s ease forwards 1s;
    transform-origin: left;
    transform: scaleX(0);
    margin-bottom: 2.5rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease forwards 0.4s;
    opacity: 0;
    animation-delay: 0.6s;
}

.about-values {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease forwards 0.4s;
    opacity: 0;
    animation-delay: 0.8s;
}

.value-tag {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    cursor: default;
}

.value-tag:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: translateY(-3px);
}

.about-cta {
    display: inline-block;
    background: linear-gradient(45deg, #00d4ff, #0047ab, #2563eb);
    background-size: 200% 200%;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 1.4rem 1.4rem;
    width: fit-content;
    white-space: nowrap;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 212, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
    animation-delay: 1s;
    margin-top: 1.5rem;
    animation: fadeInUp 0.8s ease forwards 1s, gradientShift 8s ease infinite;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    z-index: -1;
}

.about-cta:hover {
    transform: translateY(-7px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 212, 255, 0.5);
    color: #ffffff;
}

.about-cta:hover::before {
    left: 100%;
}

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

/* WhatsApp Floating Button */
.whatsapp-btn {
    position: fixed;
    bottom: 140px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 168, 196, 0.9) 0%, rgba(0, 112, 150, 0.9) 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.whatsapp-btn i {
    font-size: 2rem;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.whatsapp-btn::after {
    content: 'Chat Now';
    position: absolute;
    top: 50%;
    right: 75px;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.whatsapp-btn:hover::after {
    opacity: 1;
}

/* Go to Top Button */
.go-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.8) 0%, rgba(9, 9, 121, 0.8) 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

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

.go-to-top:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(0, 212, 255, 1) 0%, rgba(9, 9, 121, 1) 100%);
}

.go-to-top i {
    font-size: 1.5rem;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .go-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }
    
    .go-to-top i {
        font-size: 1.2rem;
    }
}

.services-cta {
    display: inline-block;
    background: linear-gradient(90deg, #00d4ff 0%, #0047ab 100%);
    color: #ffffff;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    margin-top: 1rem;
    border: none;
    cursor: pointer;
    animation: fadeInUp 0.8s ease forwards 0.4s;
    opacity: 0;
    animation-delay: 1s;
}

.services-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background: linear-gradient(90deg, #0047ab 0%, #00d4ff 100%);
}

.about-stats-column {
    position: relative;
    animation: fadeInRight 0.8s ease forwards 0.4s;
    opacity: 0;
}

.experience-counter {
    background: linear-gradient(145deg, rgba(0, 212, 255, 0.1), rgba(9, 9, 121, 0.15));
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.12);
    padding: 3.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 25px rgba(0, 212, 255, 0.2);
    transform: translateY(0);
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.experience-counter::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.05) 0%, transparent 60%);
    z-index: -1;
    animation: pulse-glow 10s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 0.8; transform: scale(1.1); }
}

.counter-wrapper {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.counter-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.7), rgba(0, 71, 171, 0.7));
    border-radius: 3px;
}

.counter-number {
    font-size: 6rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(90deg, #00d4ff 0%, #0047ab 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
    position: relative;
}

.counter-number::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.counter-label {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.expertise-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.expertise-area {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    cursor: default;
}

.expertise-area:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 212, 255, 0.2);
}

.expertise-area i {
    font-size: 1.4rem;
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.expertise-area span {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .section-heading {
        font-size: 3.2rem;
        color: #ffffff;
        font-weight: 700;
        margin-bottom: 25px;
    }
    
    .experience-counter {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .section-heading {
        font-size: 2.6rem;
        color: #ffffff;
    }
    
    .expertise-list {
        grid-template-columns: 1fr;
    }
    
    .counter-number {
        font-size: 4rem;
    }
    
    .counter-label {
        font-size: 0.9rem;
    }
    
    .about-section {
        padding: 80px 0;
    }
}

/* ===== PORTFOLIO INFO STYLES ===== */
.portfolio-info {
    padding: var(--spacing-md);
    background: var(--dark-light);
}

.portfolio-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.portfolio-info p {
    font-size: 0.9rem;
    color: var(--gray-light);
    margin-bottom: 1rem;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    color: var(--accent);
    font-weight: 500;
    font-size: 0.9rem;
}

.portfolio-link:after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.portfolio-link:hover:after {
    transform: translateX(5px);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 991px) {
    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .about-image {
        order: -1;
    }
    
    .about-text {
        padding-right: 0;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .col-md-6 {
        margin-bottom: 1.5rem;
    }
    
    .highlight-box {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .section {
        padding: var(--spacing-xl) 0;
    }
    
    .contact-form {
        padding: var(--spacing-lg);
    }
}

@media (max-width: 576px) {
    .portfolio-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        text-align: center;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

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

button, input, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
}

button {
  cursor: pointer;
  background: none;
}

/* ================ UTILITIES ================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.btn {
  display: inline-block;
  padding: 1.2rem 2.4rem;
  border-radius: var(--radius-md);
  font-weight: 500;
  text-align: center;
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
  outline: none;
  gap: 0.5rem;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-white);
}

.btn-secondary:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

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

.accent {
  color: var(--accent);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-normal);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ================ NAVBAR ================ */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 2rem 0;
  transition: var(--transition-fast);
}

.navbar.scrolled {
  background-color: var(--color-dark);
  padding: 1.5rem 0;
  box-shadow: var(--shadow-md);
}

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

.logo a {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-white);
}

.logo a span {
  color: var(--color-accent);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.nav-menu a {
  color: var(--color-white);
  font-weight: 500;
  position: relative;
}

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

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

.btn-nav {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
}

.btn-nav:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--color-white);
  transition: var(--transition-fast);
}

/* ================ HERO SECTION ================ */
/* Hero Section Styling */
.hero-section {
  position: relative;
  min-height: 80vh; /* Reduced height */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8rem 0 3rem; /* Reduced padding */
  margin-top: 2rem; /* Added margin to push content down */
  overflow: hidden;
}

.hero-text-block {
  padding-top: 2rem; /* Added padding to push text content down */
  text-align: center;
  margin: 0 auto;
  max-width: 85%;
}

.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(to right, var(--color-dark), var(--color-dark-2));
  color: var(--color-white);
  display: flex;
  align-items: center;
  padding: 12rem 0 6rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/hero-bg-pattern.svg');
  opacity: 0.05;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-xl);
}

.hero-content {
  flex: 1;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
}

.hero h1 span {
  color: var(--color-accent);
  position: relative;
  display: inline-block;
}

.hero h1 span::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 10px;
  background-color: var(--color-primary);
  bottom: 5px;
  left: 0;
  z-index: -1;
  opacity: 0.3;
}

.hero p {
  font-size: 1.8rem;
  margin-bottom: var(--spacing-lg);
  max-width: 90%;
}

.hero-stats {
  display: flex;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-lg);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}

.stat-text {
  font-size: 1.4rem;
  color: var(--color-light-gray);
}

.hero-cta {
  display: flex;
  gap: var(--spacing-md);
}

.hero-image {
  flex: 1;
  position: relative;
}

.hero-shape {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background-color: var(--color-primary);
  opacity: 0.1;
  border-radius: 60% 40% 70% 30% / 60% 30% 70% 40%;
  animation: morphShape 8s ease-in-out infinite alternate;
}

@keyframes morphShape {
  0% {
    border-radius: 60% 40% 70% 30% / 60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 40% 70% / 50% 60% 30% 60%;
  }
  100% {
    border-radius: 40% 60% 30% 70% / 60% 40% 70% 30%;
  }
}

/* ================ SERVICES SECTION ================ */
.services {
  padding: var(--spacing-xxl) 0;
  background-color: var(--color-light);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--spacing-xl);
}

.section-subtitle {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-primary);
  background-color: rgba(96, 165, 250, 0.1);
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--spacing-sm);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  color: var(--color-dark);
}

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

.section-desc {
  font-size: 1.8rem;
  color: var(--color-gray);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.service-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: rgba(96, 165, 250, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-md);
}

.service-icon i {
  font-size: 2.4rem;
}

.service-card h3 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.service-card p {
  color: var(--color-gray);
  margin-bottom: var(--spacing-md);
}

.service-link {
  display: inline-flex;
  align-items: center;
  color: var(--color-primary);
  font-weight: 600;
}

.service-link i {
  margin-left: 5px;
  transition: var(--transition-fast);
}

.service-link:hover i {
  transform: translateX(5px);
}

/* ================ ABOUT SECTION ================ */
.about {
  padding: var(--spacing-xxl) 0;
  background-color: var(--color-white);
}

.about-content {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
}

.about-text {
  flex: 1;
}

.about-text p {
  color: var(--color-gray);
  margin-bottom: var(--spacing-md);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
  margin: var(--spacing-lg) 0;
}

.feature {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.feature i {
  color: var(--color-primary);
}

.about-image {
  flex: 1;
  position: relative;
}

.main-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.experience-badge {
  position: absolute;
  bottom: -25px;
  left: -25px;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.exp-number {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.exp-text {
  font-size: 1.2rem;
  text-align: center;
}

/* ================ PORTFOLIO SECTION ================ */
.portfolio {
  padding: var(--spacing-xxl) 0;
  background-color: var(--color-light);
}

.portfolio-filter {
  display: flex;
  justify-content: center;
  margin-bottom: var(--spacing-xl);
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.filter-btn {
  padding: 0.8rem 2rem;
  background-color: transparent;
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius-full);
  color: var(--color-gray);
  font-weight: 500;
  transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.portfolio-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.portfolio-img {
  height: 240px;
  position: relative;
  overflow: hidden;
}

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

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

.portfolio-info {
  padding: var(--spacing-md);
}

.portfolio-info h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.portfolio-info p {
  color: var(--color-gray);
  font-size: 1.4rem;
  margin-bottom: var(--spacing-sm);
}

.portfolio-link {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1.4rem;
  position: relative;
}

.portfolio-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-primary);
  transition: var(--transition-fast);
}

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

/* ================ CONTACT SECTION ================ */
.contact {
  padding: var(--spacing-xxl) 0;
  background-color: var(--color-white);
}

.contact-wrapper {
  display: flex;
  gap: var(--spacing-xl);
  align-items: flex-start;
}

.contact-info {
  flex: 1;
}

.contact-info p {
  color: var(--color-gray);
  margin-bottom: var(--spacing-lg);
  max-width: 90%;
}

.contact-details {
  margin-bottom: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  justify-content: center;
}

.contact-item i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: rgba(96, 165, 250, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-sm);
  font-size: 1.8rem;
}

.contact-item h4 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-item p {
  margin-bottom: 0;
  font-size: 1.5rem;
}

.social-links {
  display: flex;
  gap: var(--spacing-sm);
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--color-light-gray);
  color: var(--color-dark);
  border-radius: 50%;
  transition: var(--transition-fast);
}

.social-icon:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-3px);
}

.contact-form {
  flex: 1;
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.2rem;
  background-color: var(--color-light);
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.3);
}

.form-group textarea {
  height: 150px;
  resize: none;
}

.contact-form .btn {
  width: 100%;
}

/* ================ FOOTER ================ */
.footer {
  background-color: var(--color-dark);
  color: var(--color-light);
  padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
  display: flex;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer-logo {
  flex: 1;
}

.footer-logo a {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--spacing-sm);
  display: inline-block;
}

.footer-logo a span {
  color: var(--color-accent);
}

.footer-logo p {
  color: var(--color-light-gray);
  margin-top: var(--spacing-sm);
}

.footer-links {
  flex: 2;
  display: flex;
  justify-content: space-between;
}

.footer-col h4 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  color: var(--color-white);
}

.footer-col ul li {
  margin-bottom: var(--spacing-sm);
}

.footer-col ul li a {
  color: var(--color-light-gray);
  transition: var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--color-primary);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.footer-contact li i {
  color: var(--color-primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 1.4rem;
}

.footer-social {
  display: flex;
  gap: var(--spacing-sm);
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border-radius: 50%;
  transition: var(--transition-fast);
}

.footer-social a:hover {
  background-color: var(--color-primary);
  transform: translateY(-3px);
}

/* ================ RESPONSIVE STYLES ================ */
@media (max-width: 1024px) {
  html {
    font-size: 58%;
  }
  
  .hero h1 {
    font-size: 5rem;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .about-image {
    margin-top: var(--spacing-xl);
  }
  
  .contact-wrapper {
    flex-direction: column;
  }
  
  .contact-form {
    width: 100%;
    margin-top: var(--spacing-xl);
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--color-dark);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 5rem var(--spacing-lg);
    transition: right var(--transition-normal);
    z-index: var(--z-fixed);
    box-shadow: var(--shadow-xl);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-item {
    width: 100%;
  }
  
  .nav-link {
    display: block;
    width: 100%;
    padding: var(--spacing-sm) 0;
  }
  
  .dropdown-menu {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background-color: transparent;
    padding: 0 0 0 var(--spacing-md);
    display: none;
  }
  
  .dropdown.active .dropdown-menu {
    display: block;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .stats-counter {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--spacing-md);
    text-align: center;
  }
}

@media (max-width: 576px) {
  .stats-counter {
    grid-template-columns: 1fr;
  }
  
  .service-card {
    padding: var(--spacing-md);
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 3.6rem;
  }
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    font-weight: 400;
    line-height: 1.6;
    color: var(--light);
    background-color: var(--primary);
    overflow-x: hidden;
}

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

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
    margin-bottom: 1rem;
    color: var(--gray-light);
}

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

a:hover {
    color: var(--accent-dark);
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-2xl) 0;
    position: relative;
}

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

.accent {
    color: var(--accent);
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-fixed);
    background-color: transparent;
    transition: background-color var(--transition-normal);
    padding: var(--spacing-sm) 0;
}

.header.scrolled {
    background-color: rgba(14, 30, 50, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: var(--spacing-xs) 0;
}

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

.logo {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--gray-light);
    font-weight: 500;
    padding: var(--spacing-xs) var(--spacing-sm);
    transition: color var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: var(--white);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--dark);
    border-radius: var(--radius-md);
    min-width: 200px;
    padding: var(--spacing-sm);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-normal);
    z-index: var(--z-tooltip);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    color: var(--gray-light);
    padding: var(--spacing-xs) var(--spacing-sm);
    transition: color var(--transition-fast);
    border-radius: var(--radius-sm);
}

.dropdown-item:hover {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.05);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}

.hamburger, .hamburger::before, .hamburger::after {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transition: all var(--transition-fast);
}

.hamburger {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger::before, .hamburger::after {
    content: '';
    left: 0;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    outline: none;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-white);
}

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--spacing-xxl) 0;
    overflow: hidden;
    background-color: var(--dark);
}

.hero-intro {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
    padding-top: var(--spacing-xxl);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    animation: slideDown 1s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.intro-badge {
    display: inline-block;
    background: linear-gradient(270deg, rgba(0, 212, 255, 0.3) 0%, rgba(255, 0, 168, 0.3) 100%);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.6); }
    70% { box-shadow: 0 0 0 10px rgba(0, 212, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0); }
}

/* Animated Heading */
.animated-heading {
    font-size: 4.5rem;
    margin-bottom: var(--spacing-md);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    position: relative;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
}

.animated-heading.initialized {
    opacity: 1;
}

.animated-heading .text-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.animated-heading .letters {
    display: inline-block;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.animated-heading.initialized .letters {
    opacity: 1;
}

.animated-heading .letters span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInLetters 0.8s forwards;
}

.typing-container {
    font-size: 2rem;
    font-weight: 600;
    margin: var(--spacing-md) 0;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 3rem;
}

.static-text {
    opacity: 0.9;
}

.dynamic-text {
    color: var(--accent);
    position: relative;
    min-width: 240px;
    display: inline-block;
    font-weight: 700;
}

.cursor {
    color: var(--accent);
    animation: blink 0.7s infinite;
    font-weight: 700;
    margin-left: 2px;
}

.intro-description {
    font-size: 1.25rem;
    color: var(--gray-light);
    max-width: 700px;
    margin: var(--spacing-md) auto 0;
    animation: fadeIn 1s ease-in-out 1.2s both;
    line-height: 1.6;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.hero-text {
    z-index: 1;
}

.hero-badges {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--accent);
}

.hero-text h1 {
    margin-bottom: var(--spacing-md);
    font-size: 3.25rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.hero-text p {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
    max-width: 500px;
    color: var(--gray-light);
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stat-text {
    font-size: 0.85rem;
    color: var(--gray-light);
    margin-top: 0.25rem;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    margin-top: var(--spacing-md);
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image-wrapper {
    position: relative;
    z-index: 1;
    margin-bottom: var(--spacing-md);
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-card {
    position: absolute;
    background: rgba(18, 36, 58, 0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    animation: float 6s ease-in-out infinite;
    z-index: 5;
}

.card-1 {
    top: 15%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    top: 45%;
    right: -15%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    left: 10%;
    animation-delay: 2s;
}

.card-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}

.card-text {
    font-weight: 500;
}

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

@keyframes pulse {
    0% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 30px rgba(0, 212, 255, 0.1);
    }
    100% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 50px rgba(0, 212, 255, 0.2);
    }
}

.floating-shape {
position: absolute;
border-radius: var(--radius-full);
background: var(--gradient-primary);
z-index: var(--z-negative);
opacity: 0.4;
filter: blur(30px);
    background: var(--gradient-primary);
    z-index: var(--z-negative);
    opacity: 0.4;
    filter: blur(30px);
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -30px;
}

.shape-2 {
    width: 100px;
    height: 100px;
    bottom: 50px;
    left: -20px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: -60px;
    right: 100px;
    background: linear-gradient(135deg, #4f46e5 0%, #7b68ee 100%);
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 40%;
    right: 45%;
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    animation: pulse 8s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.2;
    }
    100% {
        transform: scale(1);
        opacity: 0.4;
    }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 30, 50, 0) 0%, rgba(14, 30, 50, 0.8) 100%);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 2px, transparent 2px);
    background-size: 40px 40px;
    z-index: -1;
}

/* ===== PROJECT HIGHLIGHTS SECTION ===== */
.project-highlights {
    background-color: var(--dark-light);
    padding: var(--spacing-xl) 0;
    position: relative;
    z-index: 1;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    position: relative;
}

.highlight-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
}

.highlight-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.7);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 0 0 10px rgba(0, 212, 255, 0.2);
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(255, 0, 168, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: -1;
}

.highlight-box:hover::before {
    opacity: 1;
}

.highlight-box.featured {
    background: linear-gradient(180deg, rgba(36, 50, 74, 0.5) 0%, rgba(14, 30, 50, 0.5) 100%);
    border-color: rgba(0, 212, 255, 0.2);
}

.highlight-tag {
    position: absolute;
    top: 16px;
    right: -30px;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 2rem;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(0, 212, 255, 0.2);
    z-index: 1;
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(79, 70, 229, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.highlight-icon i {
    font-size: 1.5rem;
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.highlight-box:hover .highlight-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(79, 70, 229, 0.3));
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15), 0 0 15px rgba(0, 212, 255, 0.3);
}

.highlight-box h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--white);
    font-weight: 600;
    transition: color 0.3s ease;
}

.highlight-box:hover h3 {
    color: var(--accent);
}

.highlight-box p {
    font-size: 0.95rem;
    color: var(--gray-light);
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

.highlight-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--accent);
    font-weight: 500;
    font-size: 0.95rem;
    transition: gap 0.3s ease;
}

.highlight-link:hover {
    gap: var(--spacing-sm);
}

.highlight-link i {
    transition: transform 0.3s ease;
}

.highlight-link:hover i {
    transform: translateX(5px);
}

/* ===== CLIENTS SECTION ===== */
.clients {
    padding: var(--spacing-lg) 0;
    background-color: var(--dark-light);
}

.clients-logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.client-logo {
    opacity: 0.6;
    transition: opacity var(--transition-fast);
}

.client-logo:hover {
    opacity: 1;
}

/* ===== ABOUT SECTION ===== */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: var(--spacing-sm);
}

.section-header h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.section-header p {
    font-size: 1.125rem;
}

.stats-counter {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: var(--spacing-md);
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform var(--transition-fast);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    font-family: var(--font-primary);
}

/* ===== SERVICES SECTION ===== */
.services {
    background-color: var(--dark);
}

.section-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: var(--spacing-xs);
    letter-spacing: 1px;
}

.services-tabs {
    margin-top: var(--spacing-xl);
}

.tab-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-sm);
}

.tab-button {
    background: none;
    border: none;
    outline: none;
    padding: var(--spacing-sm) var(--spacing-md);
    color: var(--gray-light);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    position: relative;
    transition: var(--transition-fast);
}

.tab-button:hover {
    color: var(--white);
}

.tab-button::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
    border-radius: var(--radius-full);
}

.tab-button.active {
    color: var(--white);
}

.tab-button.active::after {
    width: 100%;
}

.tab-content-wrapper {
    position: relative;
}

.tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tab-content.active {
    display: block;
    opacity: 1;
}

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

.service-card {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card.premium {
    background: linear-gradient(180deg, rgba(36, 50, 74, 0.5) 0%, rgba(14, 30, 50, 0.5) 100%);
    border-color: rgba(255, 255, 255, 0.1);
}

.service-tag {
    position: absolute;
    top: 16px;
    right: -30px;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 2rem;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(0, 212, 255, 0.2);
    z-index: 1;
}

.service-features {
    list-style: none;
    margin: var(--spacing-md) 0;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-xs);
    color: var(--gray-light);
    font-size: 0.95rem;
}

.service-features li i {
    color: var(--accent);
    font-size: 0.875rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
    color: var(--white);
}

.service-content h3 {
    margin-bottom: var(--spacing-sm);
}

.service-content p {
    margin-bottom: var(--spacing-md);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-weight: 500;
}

.service-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio {
    padding: var(--spacing-xxl) 0;
    background-color: var(--color-light);
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: var(--gray-light);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.portfolio-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.portfolio-img {
    aspect-ratio: 4/3;
    overflow: hidden;
}

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

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--spacing-md);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    color: var(--white);
    margin-bottom: 0.25rem;
}

.portfolio-overlay p {
    color: var(--gray-light);
    margin-bottom: var(--spacing-sm);
}

.portfolio-link {
    align-self: flex-start;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: var(--white);
    transition: background-color var(--transition-fast);
}

.portfolio-link:hover {
    background-color: var(--accent);
    color: var(--dark);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background-color: var(--dark);
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-item {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-content {
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-left: var(--spacing-lg);
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -20px;
    font-size: 5rem;
    font-family: serif;
    color: var(--accent);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    overflow: hidden;
}

.author-info h4 {
    margin-bottom: 0;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.testimonial-prev, .testimonial-next {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.testimonial-prev:hover, .testimonial-next:hover {
    background-color: var(--accent);
    color: var(--dark);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dot.active {
    width: 20px;
    background-color: var(--accent);
}

/* ===== CTA SECTION ===== */
.cta-box {
    background: linear-gradient(135deg, rgba(14, 30, 50, 0.9) 0%, rgba(10, 16, 24, 0.9) 100%);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-lg);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.cta-box::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.1;
    filter: blur(70px);
    transform: translateX(50%);
    z-index: 0;
}

.cta-content {
    max-width: 600px;
    z-index: 1;
}

.cta-content h2 {
    margin-bottom: var(--spacing-sm);
}

.cta-content p {
    margin-bottom: 0;
}

.cta-button {
    z-index: 1;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--dark);
    padding-top: var(--spacing-2xl);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-info {
    max-width: 350px;
}

.footer-logo {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
    display: inline-block;
    margin-bottom: var(--spacing-sm);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-full);
    color: var(--gray-light);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background-color: var(--accent);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.footer-group h3 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
    font-size: 1.25rem;
}

.footer-group ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-group ul li a {
    color: var(--gray-light);
    transition: color var(--transition-fast);
}

.footer-group ul li a:hover {
    color: var(--accent);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-light);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-terms {
    display: flex;
    gap: var(--spacing-md);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--accent);
    color: var(--dark);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-normal);
    z-index: var(--z-fixed);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--accent-dark);
    color: var(--white);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes fadeInLetters {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@media (max-width: 992px) {
    .hero-image {
        order: -1;
    }
    
    .cta-box {
        flex-direction: column;
        text-align: center;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-sm);
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .footer-info {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .highlights-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-xs);
    }
    
    .highlight-box {
        padding: var(--spacing-sm);
    }
    
    .highlight-box p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--dark);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 5rem var(--spacing-lg);
        transition: right var(--transition-normal);
        z-index: var(--z-fixed);
        box-shadow: var(--shadow-xl);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        width: 100%;
        padding: var(--spacing-sm) 0;
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: transparent;
        padding: 0 0 0 var(--spacing-md);
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .stats-counter {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
}

@media (max-width: 576px) {
    .stats-counter {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: var(--spacing-md);
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        padding: var(--spacing-lg);
    }
}
