:root {
    --bg-color: #ffffff;
    --bg-secondary: #f4f8ff;
    --bg-tertiary: #e6efff;
    --text-color: #1a1a1a;
    --text-muted: #555555;
    --accent-color: #1d73f8;
    /* Semidot Blue */
    --accent-secondary: #0b2d6a;
    /* Dark Navy */
    --gold: #d4af37;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(0, 0, 0, 0.08);
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(135deg, var(--bg-color) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
    background-attachment: fixed;
    position: relative;
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 50% 0%, rgba(29, 115, 248, 0.05) 0%, transparent 50%),
        repeating-linear-gradient(0deg, transparent, transparent 49px, rgba(10, 31, 77, 0.05) 49px, rgba(10, 31, 77, 0.05) 50px),
        repeating-linear-gradient(90deg, transparent, transparent 49px, rgba(10, 31, 77, 0.05) 49px, rgba(10, 31, 77, 0.05) 50px);
    background-size: 100% 100%, 50px 50px, 50px 50px;
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Utility Classes */
.d-flex {
    display: flex !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-end {
    justify-content: flex-end !important;
}

.align-items-center {
    align-items: center !important;
}

.d-none {
    display: none !important;
}

.ms-auto {
    margin-left: auto !important;
}

.ms-3 {
    margin-left: 1rem !important;
}

.ms-4 {
    margin-left: 1.5rem !important;
}

.me-2 {
    margin-right: 0.5rem !important;
}

/* ========================================
   PROFESSIONAL HEADER & NAVIGATION
   ======================================== */

/* Header Container */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Top Bar - Login/Register */
.top-bar {
    background: linear-gradient(135deg, #0a1f4d 0%, #1a2f5f 50%, #0d2347 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.75rem 0;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow:
        0 2px 10px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.top-bar .container {
    max-width: 1400px;
    padding: 0 3rem;
}

/* Main Navigation Bar */
.main-nav {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #1e3a8a 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.25),
        0 2px 8px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(212, 175, 55, 0.2);
    border-bottom: 2px solid rgba(212, 175, 55, 0.4);
}

.main-nav .container {
    max-width: 1400px;
    padding: 0 3rem;
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #1d73f8 0%, #4a9eff 50%, #1d73f8 100%);
    background-size: 200% 100%;
    z-index: 1002;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(29, 115, 248, 0.5);
    animation: shimmer 2s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Logo Styling */
.logo,
.logo-main {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 3px;
    line-height: 1.4;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.logo:hover {
    transform: translateY(-2px);
    text-shadow:
        0 4px 12px rgba(212, 175, 55, 0.6),
        0 2px 8px rgba(0, 0, 0, 0.3);
    color: #d4af37;
}

.logo-accent {
    display: inline-block;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    color: #d4af37;
    letter-spacing: 4px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 0.2rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}



/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
    margin: 0;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
    display: inline-block;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #1d73f8, transparent);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(29, 115, 248, 0.6);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Contact Button */
.btn-contact {
    background: linear-gradient(135deg, #1d73f8 0%, #4a9eff 100%);
    color: #ffffff !important;
    padding: 0.75rem 3.5rem;
    border-radius: 6px;
    font-size: 1.05rem !important;
    font-weight: 700;
    min-width: 200px;
    text-align: center;
    box-shadow:
        0 4px 15px rgba(29, 115, 248, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-contact:hover::before {
    left: 100%;
}

.btn-contact:hover {
    background: linear-gradient(135deg, #4a9eff 0%, #1d73f8 100%);
    transform: translateY(-2px);
    box-shadow:
        0 6px 20px rgba(29, 115, 248, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-contact:active {
    transform: translateY(0);
}

/* Auth Links (Login/Register) */
.auth-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin: 0;
}

.auth-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    position: relative;
}

.auth-links a:hover {
    color: #ffffff;
    background: rgba(29, 115, 248, 0.15);
    text-shadow: 0 0 8px rgba(29, 115, 248, 0.4);
}

.auth-separator {
    width: 1px;
    height: 14px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Special Auth Link Colors */
.login-text:hover {
    color: #4a9eff !important;
}

.register-text:hover {
    color: #1d73f8 !important;
}

.dashboard-text {
    color: #4a9eff !important;
    font-weight: 700;
}

.dashboard-text:hover {
    color: #ffffff !important;
    background: rgba(74, 158, 255, 0.2);
}

.logout-text:hover {
    color: #ff6b6b !important;
    background: rgba(255, 107, 107, 0.1);
}

/* Contact Info in Header (Phone & Email) */
.contact-info-header {
    display: flex;
    align-items: center;
}

.contact-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin: 0;
}

.contact-links li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.contact-links a:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(29, 115, 248, 0.4);
}

.contact-links i {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.contact-links li:hover i {
    color: #1d73f8;
    transform: scale(1.1);
}

.contact-separator {
    width: 1px;
    height: 14px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding-top: 110px;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(0, 242, 255, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 200, 200, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, var(--bg-color) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 242, 255, 0.03) 2px, rgba(0, 242, 255, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(112, 0, 255, 0.03) 2px, rgba(112, 0, 255, 0.03) 4px);
    background-size: 100px 100px;
    opacity: 0.5;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.omega-text {
    font-family: var(--font-heading);
    font-size: 8vw;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff 0%, var(--accent-color) 50%, var(--accent-secondary) 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 8s linear infinite;
    letter-spacing: 1rem;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.tagline {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 12px;
    text-transform: uppercase;
    margin-bottom: 4rem;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
}

.cta-group {
    display: flex;
    gap: 2rem;
}

.btn {
    padding: 1.2rem 3rem;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 3px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.btn-primary {
    background: var(--accent-color);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.3);
    border: 1px solid var(--accent-color);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 242, 255, 0.5);
    background: #ffffff;
    color: var(--accent-color);
}

.btn-secondary {
    border: 1px solid var(--glass-border);
    color: #fff;
    background: var(--glass-bg);
}

.btn-secondary:hover {
    border-color: var(--accent-color);
    background: rgba(0, 242, 255, 0.1);
    letter-spacing: 5px;
}

.hero-gradient {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, var(--bg-secondary) 20%, transparent);
    z-index: -1;
}

/* Features/Services Section */
.features,
.about {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 4rem;
    letter-spacing: 4px;
    font-weight: 700;
    position: relative;
}

.section-title::before {
    content: '//';
    color: var(--accent-color);
    margin-right: 1rem;
    font-family: var(--font-main);
    font-weight: 300;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: #fff;
    border: 1px solid var(--glass-border);
    padding: 3.5rem 2.5rem;
    border-radius: 8px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 8px 16px rgba(0, 0, 0, 0.5),
        0 16px 32px rgba(0, 0, 0, 0.4),
        0 24px 48px rgba(0, 0, 0, 0.35),
        0 32px 64px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.read-more-btn {
    display: inline-block;
    align-self: center;
    padding: 10px 20px;
    width: auto;
    min-width: 140px;
    text-align: center;
    border-radius: 8px;
    background: #0d6efd;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 14px rgba(13, 110, 253, 0.18);
    transition:
        background-color 220ms ease,
        transform 220ms ease,
        box-shadow 220ms ease;
    cursor: pointer;
    border: none;
}

.read-more-btn:hover,
.read-more-btn:focus-visible {
    background: #0b5ed7;
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(13, 110, 253, 0.28);
    outline: none;
    color: #fff;
}

/* Customer Cards */
.customer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.customer-card {
    background: #fff;
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    border-radius: 8px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    text-decoration: none;
    color: inherit;
    display: block;
    box-shadow:
        0 8px 16px rgba(0, 0, 0, 0.5),
        0 16px 32px rgba(0, 0, 0, 0.4),
        0 24px 48px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.customer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.customer-card:hover {
    border-color: rgba(0, 242, 255, 0.4);
    transform: translateY(-10px) scale(1.03);
    background: #fff;
    box-shadow:
        0 12px 24px rgba(0, 0, 0, 0.1),
        0 24px 48px rgba(0, 0, 0, 0.1),
        0 0 60px rgba(29, 115, 248, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.customer-card:hover::before {
    transform: translateX(100%);
}

.customer-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
}

.customer-card:hover .customer-icon {
    transform: scale(1.2) rotateY(360deg);
}

.customer-card h3 {
    font-family: var(--font-main);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-color);
}

.customer-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Work Cards */
.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.work-card {
    background: #fff;
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 12px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 8px 16px rgba(0, 0, 0, 0.5),
        0 16px 32px rgba(0, 0, 0, 0.4),
        0 24px 48px rgba(0, 0, 0, 0.05),
        0 32px 64px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.work-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.work-card:hover {
    border-color: rgba(0, 242, 255, 0.5);
    transform: translateY(-15px);
    background: #fff;
    box-shadow:
        0 12px 24px rgba(0, 0, 0, 0.1),
        0 24px 48px rgba(0, 0, 0, 0.1),
        0 36px 72px rgba(0, 0, 0, 0.1),
        0 48px 96px rgba(0, 0, 0, 0.1),
        0 0 60px rgba(29, 115, 248, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.work-card:hover::before {
    transform: scaleX(1);
}

.work-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.work-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    transition: transform 0.4s ease;
}

.work-card:hover .work-icon {
    transform: scale(1.1) rotate(5deg);
}

.work-header h3 {
    font-family: var(--font-main);
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--accent-secondary);
    margin: 0;
}

.work-description {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.tech-tag {
    background: rgba(0, 242, 255, 0.1);
    border: 1px solid rgba(0, 242, 255, 0.3);
    color: var(--accent-color);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: rgba(0, 242, 255, 0.2);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 242, 255, 0.3);
}

.work-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.work-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.work-feature i {
    color: var(--accent-color);
    font-size: 1rem;
}

/* Work Card with Image Layout */
/* Work Card Inner Grid Layout */
.work-card-inner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 1rem;
}

.work-image-wrapper {
    width: 100%;
    height: 100%;
    min-height: 200px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.work-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease, opacity 0.3s ease;
}

.work-image-wrapper a {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.work-image-wrapper a:hover .work-image {
    transform: scale(1.05);
    opacity: 0.9;
}

.work-card:hover .work-image {
    /* Changed hover trigger to main card */
    transform: scale(1.02);
}

@media (max-width: 900px) {
    .work-card-inner-grid {
        grid-template-columns: 1fr;
    }


    .work-image-wrapper {
        margin-top: 2rem;
        height: auto;
        /* Allow auto height based on content aspect ratio? No, it's an img. */
        min-height: auto;
    }

    .work-image {
        height: auto;
        max-height: 300px;
    }
}

/* Contact Section */

.contact {
    padding: 5rem 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 31, 31, 0.6) 100%);
}

.contact-wrapper {
    display: flex;
    gap: 6rem;
    align-items: center;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 4rem;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #fff;
}

.contact-details span {
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--accent-color);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-details li:hover span {
    background: var(--accent-color);
    color: #000;
    transform: scale(1.1);
}

.contact-form {
    flex: 1.2;
    background: rgba(255, 255, 255, 0.02);
    padding: 4rem;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    background: rgb(42 127 148 / 40%);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-main);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.1);
    background: rgba(0, 0, 0, 0.6);
}


/* Footer */
.footer {
    padding: 6rem 0 2rem;
    background: linear-gradient(135deg, #0a1f4d 0%, #1a2f5f 50%, #0d2347 100%);
    color: #ffffff;
    border-top: 3px solid rgba(212, 175, 55, 0.5);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Subtle glow effect on top of footer */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 30%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.8), transparent);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.social-links a:hover {
    background: #d4af37;
    color: #0a1f4d;
    transform: translateY(-3px) scale(1.1);
    border-color: #d4af37;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.footer-links h4,
.footer-contact h4 {
    color: #d4af37;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, rgba(212, 175, 55, 0.3));
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 1rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: #d4af37;
    padding-left: 8px;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

.contact-info-list {
    list-style: none;
}

.contact-info-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.contact-info-list i {
    color: #d4af37;
    margin-top: 3px;
}

.visitor-count-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.visitor-digit {
    width: 28px;
    height: 28px;
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.visitor-digit:hover {
    background: #d4af37;
    color: #0a1f4d;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.4);
}

#visitor-digits {
    display: flex;
    gap: 6px;
    flex-wrap: nowrap;
}

@media (max-width: 600px) {
    .visitor-count-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    #visitor-digits {
        justify-content: center;
    }
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand .logo {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-links h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .contact-info-list li {
        justify-content: center;
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--accent-color);
    margin: 6px 0;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .contact-details li {
        justify-content: center;
    }

    .omega-text {
        font-size: 10vw;
        letter-spacing: 0.5rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 70px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .logo {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .omega-text {
        font-size: 12vw;
        letter-spacing: 0.3rem;
    }

    .mobile-menu-btn {
        display: block;
    }

    .auth-links {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(10, 31, 31, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
        border-left: 1px solid var(--glass-border);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 1.5rem 0;
    }

    .contact-form {
        padding: 2.5rem;
    }

    .customer-grid {
        grid-template-columns: 1fr;
    }

    .work-grid {
        grid-template-columns: 1fr;
    }

    .work-card {
        padding: 2rem;
    }

    .work-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .tech-stack {
        gap: 0.6rem;
    }

    .tech-tag {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
}

/* Animations */
@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero Carousel */
.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    margin-top: 0;
    /* Override any margin */
}

.carousel-container {
    height: 100%;
    width: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Overlay for better text visibility */
    z-index: 2;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 10;
}

.carousel-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
    color: #fff;
    transform: translateY(30px);
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;
    opacity: 0;
}

.carousel-slide.active .carousel-content {
    transform: translateY(0);
    opacity: 1;
}

.flipped-bg {
    transform: scaleX(-1);
}

/* Ensure content flips back while maintaining its reveal animation transform */
.flipped-bg .carousel-content {
    transform: scaleX(-1) translateY(30px);
}

.carousel-slide.active.flipped-bg .carousel-content {
    transform: scaleX(-1) translateY(0);
    opacity: 1;
}

.carousel-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}



.carousel-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 300;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 2rem;
    padding: 20px;
    cursor: pointer;
    z-index: 20;
    transition: background 0.3s;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}

.indicator {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.indicator.active {
    background: var(--accent-color);
}

@media (max-width: 768px) {
    .carousel-content h1 {
        font-size: 2.5rem;
    }

    .carousel-content p {
        font-size: 1rem;
    }
}

.reveal {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Professional Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.section-header-center {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem auto;
}

.section-tag {
    display: inline-block;
    background: rgba(29, 115, 248, 0.1);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: flex-start;
}

.contact-info-card,
.contact-form-card {
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--glass-border);
}

.contact-card-header h3,
.contact-form-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.contact-card-header p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.icon-box {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(29, 115, 248, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.info-item:hover .icon-box {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-3px);
}

.info-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.info-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Professional Form Styles */
.professional-form {
    margin-top: 2rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    width: 100%;
}

.form-group.half {
    width: 50%;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-color);
}

.form-control {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #eee;
    border-radius: 6px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
    color: var(--text-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.form-control:focus {
    border-color: var(--accent-color);
    background: #fff;
    outline: none;
    box-shadow: 0 4px 12px rgba(29, 115, 248, 0.15);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgb(42, 127, 148);
    color: #fff;
    box-shadow: 0 10px 30px rgba(42, 127, 148, 0.3);
}

.submit-btn:hover {
    background: rgba(42, 127, 148, 0.8);
    color: #fff;
    box-shadow: 0 15px 40px rgba(42, 127, 148, 0.5);
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-group.half {
        width: 100%;
    }
}

/* Form Button */
.contact-form .btn {
    width: 100%;
    border: none;
    cursor: pointer;
}

/* ========================================
   MOBILE MENU BUTTON
   ======================================== */

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-btn:hover {
    background: rgba(29, 115, 248, 0.2);
    border-color: rgba(29, 115, 248, 0.3);
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover span {
    background: #4a9eff;
}

/* ========================================
   RESPONSIVE HEADER STYLES
   ======================================== */

@media (max-width: 1024px) {

    .main-nav .container,
    .top-bar .container {
        padding: 0 2rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .btn-contact {
        padding: 0.6rem 1.5rem;
        font-size: 0.8rem !important;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .top-bar {
        padding: 0.6rem 0;
    }

    .main-nav {
        padding: 0.8rem 0;
    }

    .main-nav .container,
    .top-bar .container {
        padding: 0 1.5rem;
    }

    .logo {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

    .logo-accent {
        font-size: 0.6rem;
        letter-spacing: 3px;
    }

    .nav-links {
        position: fixed;
        top: 110px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 110px);
        background: linear-gradient(135deg, rgba(11, 45, 106, 0.98) 0%, rgba(10, 31, 77, 0.98) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 2rem 0;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        padding: 0;
    }

    .nav-links a {
        display: block;
        padding: 1rem 2rem;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a:hover {
        background: rgba(29, 115, 248, 0.15);
    }

    .btn-contact {
        margin: 1rem 2rem;
        padding: 1rem 2rem;
        font-size: 1rem !important;
        text-align: center;
    }

    .auth-links {
        gap: 1rem;
    }

    .auth-links a {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
    }

    /* Contact Info Responsive */
    .contact-links {
        gap: 1rem;
    }

    .contact-links a {
        font-size: 0.7rem;
    }

    .contact-links i {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {

    .main-nav .container,
    .top-bar .container {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1rem;
        letter-spacing: 1.5px;
    }

    .logo-accent {
        font-size: 0.55rem;
        letter-spacing: 2px;
    }

    .auth-links {
        gap: 0.8rem;
    }

    .auth-links a {
        font-size: 0.7rem;
        padding: 0.25rem 0.6rem;
        letter-spacing: 1px;
    }

    .auth-separator {
        height: 12px;
    }

    /* Contact Info for Small Screens */
    .contact-info-header {
        display: none;
    }
}