/* =========================================
   CSS Variables & Reset
========================================= */
html {
    background-color: #f8fafc;
    /* match --bg-off-white */
}

:root {
    --primary-color: #0073b1;
    /* Professional Logo Blue */
    --secondary-color: #00a0dc;
    /* Logo Sky Blue */
    --accent-color: #00a0dc;
    --heading-color: #0a111f;
    --text-color: #475569;
    --text-muted: #64748b;
    --bg-light: #ffffff;
    --bg-off-white: #f8fafc;
    --gradient-1: linear-gradient(135deg, #0073b1, #004d77);
    --gradient-2: linear-gradient(135deg, #00a0dc, #0073b1);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.05);
    /* Brand Integrated Footer (Zixir Layout) */
    --footer-bg: #0a111f;
    --footer-accent: #00a0dc;
    --footer-text: #ffffff;
    --footer-muted: #94a3b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: transparent;
    color: var(--text-color);
    overflow-x: hidden;
    cursor: none;
    line-height: 1.6;
}

section {
    position: relative;
    z-index: 1;
    background-color: var(--bg-off-white);
}

/* =========================================
   Custom 'FinAware Shutter' Cursor
========================================= */
.cursor {
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    border-radius: 50%;
    /* Precision center point */
    transform: translate(-50%, -50%);
    transition: transform 0.05s linear;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    background: transparent;
    transform: translate(-50%, -50%);
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1),
        width 0.4s ease,
        height 0.4s ease,
        opacity 0.4s ease;
}

/* Independent Shutter Corners */
.cursor-follower::before,
.cursor-follower::after,
.cursor-follower-tr,
.cursor-follower-bl {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border: 1.5px solid var(--primary-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Top Left (::before) */
.cursor-follower::before {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

/* Bottom Right (::after) */
.cursor-follower::after {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

/* Top Right */
.cursor-follower-tr {
    position: absolute;
    top: 0;
    right: 0;
    width: 8px;
    height: 8px;
    border: 1.5px solid var(--primary-color);
    border-left: none;
    border-bottom: none;
    transition: all 0.4s ease;
}

/* Bottom Left */
.cursor-follower-bl {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 8px;
    height: 8px;
    border: 1.5px solid var(--primary-color);
    border-right: none;
    border-top: none;
    transition: all 0.4s ease;
}

/* Hover/Active Animation */
.cursor-follower.active {
    width: 60px;
    height: 60px;
    transform: translate(-50%, -50%) rotate(90deg);
}

.cursor-follower.active::before,
.cursor-follower.active::after,
.cursor-follower.active .cursor-follower-tr,
.cursor-follower.active .cursor-follower-bl {
    width: 15px;
    height: 15px;
    border-color: var(--secondary-color);
    border-width: 2px;
}

/* Add a breathing pulse to the center dot */
@keyframes cursorPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.5;
    }
}

.cursor {
    animation: cursorPulse 2s infinite ease-in-out;
}

/* =========================================
   Particle Background
========================================= */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
}

/* =========================================
   Typography
========================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-padding {
    padding: 100px 0;
    position: relative;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--bg-light);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    color: var(--primary-color);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--heading-color);
}

.section-description {
    font-size: 18px;
    color: var(--text-color);
    line-height: 1.6;
    opacity: 0.9;
}

/* =========================================
   Navbar
========================================= */
#mainNav {
    padding: 20px 0;
    background: #fff;
    transition: all 0.4s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

#mainNav.navbar-shrink {
    padding: 10px 0;
    background: #fff;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.brand-text {
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-dot {
    color: var(--accent-color);
    font-size: 32px;
}

.navbar-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    background: white;
    padding: 10px 15px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav-link-custom {
    color: var(--heading-color) !important;
    font-weight: 600;
    margin: 0 15px;
    position: relative;
    padding: 5px 0 !important;
    transition: color 0.3s ease;
}

.nav-link-custom::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.nav-link-custom:hover::before {
    width: 100%;
}

/* Fix for dark hero pages when at the top */
#mainNav.navbar-dark:not(.navbar-shrink) .nav-link-custom {
    color: rgba(255, 255, 255, 0.95) !important;
}

#mainNav.navbar-dark:not(.navbar-shrink) .nav-link-custom:hover,
#mainNav.navbar-dark:not(.navbar-shrink) .nav-link-custom.active {
    color: #ffffff !important;
}

#mainNav.navbar-dark:not(.navbar-shrink) .navbar-toggler-icon {
    filter: invert(1) grayscale(100%) brightness(200%);
}


/* =========================================
   Hero Section
========================================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: transparent !important;
}

.hero-subtitle {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--heading-color);
}

.hero-description {
    font-size: 20px;
    color: var(--text-color);
    margin-bottom: 40px;
    max-width: 600px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .visual-grid {
        grid-template-columns: 1fr;
    }

    .grid-item {
        height: 180px;
    }
}

.hero-buttons .btn {
    padding: 16px 45px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 115, 177, 0.25);
}

.btn-glow {
    background: var(--gradient-1);
    border: none;
    position: relative;
    overflow: hidden;
    color: white;
}

.btn-outline-light {
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color);
}

.btn-outline-light:hover {
    background-color: var(--primary-color);
    color: white !important;
}

.btn-glow::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-glow:hover::before {
    left: 100%;
}

/* Floating Elements */
.floating-elements {
    position: relative;
    height: 400px;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-1);
    opacity: 0.3;
    filter: blur(40px);
}

.element-1 {
    width: 200px;
    height: 200px;
    top: 50px;
    right: 0;
    animation: float 6s ease-in-out infinite;
}

.element-2 {
    width: 150px;
    height: 150px;
    bottom: 50px;
    right: 50px;
    background: var(--gradient-2);
    animation: float 8s ease-in-out infinite reverse;
}

.element-3 {
    width: 100px;
    height: 100px;
    top: 100px;
    right: 100px;
    animation: float 7s ease-in-out infinite 1s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.hero-scroll-indicator span {
    display: block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-left: 0;
    border-top: 0;
    transform: rotate(45deg);
    animation: scrollDown 2s infinite;
}

.hero-scroll-indicator span:nth-child(2) {
    animation-delay: 0.2s;
    margin-top: -10px;
}

.hero-scroll-indicator span:nth-child(3) {
    animation-delay: 0.4s;
    margin-top: -10px;
}

@keyframes scrollDown {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-5px, -5px);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: rotate(45deg) translate(5px, 5px);
    }
}

/* =========================================
   About Section
========================================= */
.about-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.stats-container {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-visual {
    position: relative;
}

.visual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.grid-item {
    height: 220px;
    border-radius: 15px;
    background: #a4c8e6;
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    overflow: hidden;
}

.grid-item img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: transform 0.5s ease;
    border-radius: 120px;
}

.grid-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.grid-item:hover img {
    transform: scale(1.1);
}

@keyframes gridPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
    transition: all 0.3s ease;
    animation: badgeFloat 3s ease-in-out infinite;
}

.experience-badge:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

@keyframes badgeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@media (max-width: 768px) {
    .experience-badge {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 20px;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
}

.experience-badge .years {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* =========================================
   Commitment Showcase - NEW UPDATED SECTION
========================================= */
.commitment-showcase {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    padding: 60px 20px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.commitment-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(90deg,
            transparent 0%,
            black 10%,
            black 90%,
            transparent 100%);
    -webkit-mask-image: linear-gradient(90deg,
            transparent 0%,
            black 10%,
            black 90%,
            transparent 100%);
}

.commitment-track {
    display: flex;
    gap: 30px;
    animation: scrollCommitments 30s linear infinite;
    width: fit-content;
}

.commitment-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: linear-gradient(135deg,
            rgba(37, 99, 235, 0.15),
            rgba(124, 58, 237, 0.15));
    border: 1px solid rgba(37, 99, 235, 0.4);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.commitment-item::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;
}

.commitment-item:hover::before {
    left: 100%;
}

.commitment-item i {
    font-size: 24px;
    color: white;
    transition: transform 0.3s ease;
}

.commitment-item span {
    font-weight: 600;
    font-size: 16px;
    white-space: nowrap;
    color: #f8fafc;
}

.commitment-item:hover {
    transform: scale(1.05);
    border-color: #2563eb;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.commitment-item:hover i {
    transform: rotate(360deg);
}

/* Animation Keyframes */
@keyframes scrollCommitments {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 15px));
    }
}

/* Pause animation on hover */
.commitment-marquee:hover .commitment-track {
    animation-play-state: paused;
}

/* Floating elements for background */
.commitment-showcase::before,
.commitment-showcase::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2), transparent);
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
}

.commitment-showcase::before {
    top: -30px;
    left: -30px;
    animation: floatElement 6s ease-in-out infinite;
}

.commitment-showcase::after {
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.2), transparent);
    animation: floatElement 8s ease-in-out infinite reverse;
}

@keyframes floatElement {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

/* Ripple effect for commitment items */
.commitment-item {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    0% {
        transform: scale(0);
        opacity: 0.5;
    }

    100% {
        transform: scale(20);
        opacity: 0;
    }
}

/* =========================================
   Services Section
========================================= */
.bg-dark {
    background: var(--bg-off-white);
}

.services-row {
    display: flex;
    flex-wrap: wrap;
}

.service-card-modern {
    position: relative;
    background: var(--bg-light);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 40px 30px;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-modern:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.service-card-modern:hover .service-icon {
    transform: scale(1.1) rotate(360deg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 32px;
    color: white;
    transition: all 0.5s ease;
}

.service-card-modern h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--heading-color);
}

/* Custom text colors for service cards */
.service-card-modern:nth-child(1) h3 {
    color: var(--primary-color);
}

.service-card-modern:nth-child(2) h3 {
    color: var(--secondary-color);
}

.service-card-modern:nth-child(3) h3 {
    color: #10b981;
    /* Success/Green for growth */
}

.service-card-modern:nth-child(4) h3 {
    color: var(--accent-color);
}

.service-card-modern p {
    color: var(--text-color);
    margin-bottom: 25px;
    opacity: 0.8;
    flex-grow: 1;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--accent-color);
}

.service-link:hover i {
    transform: translateX(5px);
}

.service-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: var(--gradient-1);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    pointer-events: none;
}

.service-card-modern:hover .service-bg {
    opacity: 0.3;
}

/* =========================================
   Work Section
========================================= */
.project-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
}

.project-image {
    position: relative;
    overflow: hidden;
    background: #0f172a;
    /* Solid dark background for images that don't fill */
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Ensure the entire image is visible without cropping */
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2px;
    /* Slight padding to keep it away from edges */
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(15, 23, 42, 0.95) 0%,
            rgba(15, 23, 42, 0.8) 50%,
            transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px 30px;
    opacity: 0;
    backdrop-filter: blur(4px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    color: #fff !important;
}

.project-overlay p {
    color: rgba(248, 250, 252, 0.8);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.project-link {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.project-link:hover {
    transform: scale(1.1);
    color: white;
}

/* =========================================
   Clients Section
========================================= */
.bg-gradient {
    background: linear-gradient(135deg, #0f172a, #1e293b);
}

.clients-carousel {
    overflow: hidden;
    padding: 20px 0;
}

.clients-track {
    display: flex;
    animation: scroll 30s linear infinite;
}

.client-logo-box {
    flex: 0 0 200px;
    height: 160px;
    background: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 15px;
    padding: 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.client-logo-box:hover {
    transform: scale(1.05);
    border-color: var(--accent-color);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.3);
}

.client-logo-box img {
    max-width: 100%;
    max-height: 90px;
    filter: none;
    /* Removed invert to show actual logo colors on white */
    opacity: 1;
    transition: all 0.3s ease;
}

.client-logo-box:hover img {
    opacity: 1;
    filter: none;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-240px * 6));
    }
}

/* =========================================
   Contact Section
========================================= */
.contact-info-modern {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-color);
    opacity: 0.8;
}

.contact-form-modern {
    background: rgba(0, 0, 0, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    padding: 40px;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-control-modern {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--glass-border);
    color: var(--heading-color);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control-modern:focus {
    outline: none;
    border-bottom-color: var(--accent-color);
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 0;
    color: var(--text-muted);
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-control-modern:focus~label,
.form-control-modern:valid~label {
    top: -15px;
    font-size: 12px;
    color: var(--accent-color);
}

select.form-control-modern {
    cursor: pointer;
}

textarea.form-control-modern {
    min-height: 100px;
    resize: vertical;
}

/* =========================================
   Zixir Inspired Footer
========================================= */
.footer-modern {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 100px 0 0;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.footer-heading {
    color: var(--footer-accent) !important;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.footer-brand .footer-logo {
    max-height: 50px;
    margin-bottom: 25px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 42px;
    height: 42px;
    background: var(--footer-accent);
    color: #000 !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-5px) rotate(8deg);
    background: #fff;
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--footer-accent) !important;
    transform: translateX(5px);
}

.contact-info-list {
    list-style: none;
    padding: 0;
}

.contact-info-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-info-list i {
    color: var(--footer-accent);
    margin-top: 5px;
}

.footer-bottom {
    margin-top: 80px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Floating Widgets like Zixir */
.footer-widgets {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.widget-btn {
    width: 50px;
    height: 50px;
    background: var(--footer-accent);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.widget-btn:hover {
    transform: scale(1.1);
    background: #fff;
}

.whatsapp-widget {
    background: #25D366 !important;
    color: #fff !important;
    width: 60px !important;
    height: 60px !important;
    font-size: 30px !important;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3) !important;
}

.whatsapp-widget:hover {
    background: #128C7E !important;
    color: #fff !important;
    transform: scale(1.15) rotate(10deg) !important;
}

@media (max-width: 991px) {
    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
}

/* =========================================
   Modal
========================================= */
.glass-effect {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-content {
    background: transparent;
    border: none;
    color: white;
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.modal-body .form-control-modern {
    color: white !important;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.modal-body .form-group label {
    color: rgba(255, 255, 255, 0.6);
}

.modal-body select.form-control-modern option {
    background: #0f172a;
    color: white;
}

/* =========================================
   Responsive Design
========================================= */
@media (max-width: 991px) {
    .hero-title {
        font-size: 42px;
    }

    .section-title {
        font-size: 34px;
    }

    .navbar-collapse {
        background: white;
        padding: 20px;
        border-radius: 20px;
        margin-top: 20px;
        box-shadow: 0 10px 30px rgba(245, 240, 240, 0.1);
    }

    .nav-link-custom {
        margin: 10px 0 !important;
        padding: 10px 0 !important;
    }

    .cursor,
    .cursor-follower {
        display: none;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 18px;
    }

    .service-card-modern {
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    .commitment-item {
        padding: 10px 20px;
    }

    .commitment-item i {
        font-size: 18px;
    }

    .commitment-item span {
        font-size: 14px;
    }

    .process-container {
        margin-top: 30px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 20px;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 28px;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0 !important;
    }

    .commitment-item {
        padding: 8px 15px;
        gap: 8px;
    }

    .commitment-item span {
        font-size: 12px;
    }

    .contact-form-modern {
        padding: 25px 20px;
    }

    .footer-modern {
        padding: 60px 0 30px;
    }

    .feature-box {
        padding: 30px 20px;
    }
}

/* =========================================
   Why Choose Us Section
 ========================================= */
.bg-light-alt {
    background: #f8fafc;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 24px;
    color: #10b981;
}

.benefit-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--heading-color);
}

.benefit-content p {
    font-size: 15px;
    margin: 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.feature-box {
    background: white;
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid var(--glass-border);
}

.feature-box.active {
    background: var(--gradient-1);
    color: white;
    border: none;
    transform: translateY(-10px);
}

.feature-box i {
    font-size: 40px;
    margin-bottom: 20px;
}

.feature-box.active i {
    color: white;
}

.feature-box:not(.active) i {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-box h4 {
    font-size: 18px;
    margin: 0;
}

/* =========================================
   FAQ Section (Custom Accordion)
 ========================================= */
.custom-accordion .accordion-item {
    border: 1px solid var(--glass-border);
    border-radius: 20px !important;
    margin-bottom: 15px;
    overflow: hidden;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.custom-accordion .accordion-button {
    padding: 25px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--heading-color);
    background: white;
    border: none;
    box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background: var(--bg-off-white);
    color: var(--primary-color);
}

.custom-accordion .accordion-button::after {
    background-image: none;
    content: '\f067';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    content: '\f068';
    transform: rotate(180deg);
}

.custom-accordion .accordion-body {
    padding: 0 25px 25px;
    color: var(--text-color);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Secondary Page Header Refined
 ========================================= */
.page-header {
    background: transparent !important;
    padding-top: 180px;
    padding-bottom: 100px;
    border-bottom: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 115, 177, 0.05), transparent);
    border-radius: 50%;
    z-index: 2;
}

.breadcrumb-custom {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
}

.breadcrumb-item-custom.active {
    color: var(--primary-color);
}

/* =========================================
   Services Grid Modern
 ========================================= */
.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: -50px;
}

/* =========================================
   Workflow / Process Section
 ========================================= */
.process-section {
    background: var(--bg-off-white);
    padding: 100px 0;
}

.process-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 60px;
}

.process-container::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: dashed var(--glass-border);
    z-index: 2;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.process-step:hover .step-number {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.process-step h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 14px;
    color: var(--text-muted);
    padding: 0 15px;
}

@media (max-width: 991px) {
    .process-container {
        flex-direction: column;
        gap: 50px;
    }

    .process-container::before {
        display: none;
    }
}

/* =========================================
   Feature Rounded Box
 ========================================= */
.feature-rounded-box {
    background: white;
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 20px;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-rounded-box:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.feature-rounded-box i {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

/* =========================================
   Glass Card Image Refinement
 ========================================= */
.img-reveal-container {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}

.img-reveal-container img {
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.img-reveal-container:hover img {
    transform: scale(1.05);
}

/* =========================================
   WordPress Theme Cards
========================================= */
.wp-theme-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.wp-theme-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 115, 177, 0.18);
}

/* Icon placeholder for software cards without screenshots */
.software-icon-placeholder {
    background: linear-gradient(135deg, #0a111f 0%, #0f1e3a 60%, #0073b1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    position: relative;
}

.sw-icon-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    pointer-events: none;
}

.sw-icon-inner i {
    font-size: 3.5rem;
    color: rgba(0, 160, 220, 0.85);
    filter: drop-shadow(0 4px 16px rgba(0, 160, 220, 0.5));
}

.sw-icon-inner span {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.wp-theme-image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    background: #0a111f;
}

.wp-theme-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
    display: block;
}

/* Template card thumbnails: show full image within the box */
.portfolio-item.templates .wp-theme-image-wrap img {
    object-fit: contain;
    background: #0a111f;
}

.wp-theme-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.wp-theme-image-wrap:hover .wp-theme-hover-overlay {
    opacity: 1;
}

.wp-theme-image-wrap:hover img {
    transform: scale(1.06);
    filter: brightness(0.7);
}

.btn-overview {
    background: linear-gradient(135deg, #0073b1, #00a0dc);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 18px rgba(0, 115, 177, 0.4);
    letter-spacing: 0.03em;
}

.btn-overview:hover {
    transform: scale(1.06);
    box-shadow: 0 8px 28px rgba(0, 115, 177, 0.6);
}

.wp-theme-info {
    padding: 18px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.wp-theme-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #0073b1, #00a0dc);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 50px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 4px;
}

.wp-theme-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0a111f;
    margin: 0;
    line-height: 1.3;
}

.wp-theme-author {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
}

.wp-theme-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 6px;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
}

.wp-theme-rating {
    color: #f59e0b;
    font-size: 0.82rem;
    font-weight: 600;
}

.wp-theme-sales {
    color: #64748b;
    font-size: 0.78rem;
}

.wp-theme-price {
    margin-left: auto;
    background: linear-gradient(135deg, #0073b1, #00a0dc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1rem;
}

/* =========================================
   Theme Preview Modal (CodeCanyon style)
========================================= */
.theme-modal-content {
    background: #13172a;
    color: #e2e8f0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
}

.theme-modal-header {
    background: #0f1323;
    padding: 18px 24px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
}

.wp-theme-badge-modal {
    background: linear-gradient(135deg, #0073b1, #00a0dc);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 50px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.theme-modal-img-wrap {
    position: relative;
    height: 520px;
    background: #0a111f;
    overflow: hidden;
    cursor: zoom-in;
}

.theme-modal-img-wrap img {
    width: 100%;
    height: auto;
    /* natural full height of image */
    display: block;
    transform: translateY(0);
    transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* On hover: scroll the image from top to bottom */
.theme-modal-img-wrap:hover img {
    transform: translateY(calc(-100% + 520px));
}

.theme-modal-img-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.theme-modal-info {
    padding: 28px 28px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    overflow-y: auto;
    max-height: 85vh;
}

.theme-modal-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #f8fafc;
    line-height: 1.4;
    margin: 0;
}

.theme-modal-rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.stars-wrap {
    display: flex;
    gap: 2px;
}

.stars-wrap i {
    font-size: 0.9rem;
}

.stars-wrap .fa-star {
    color: #f59e0b;
}

.stars-wrap .fa-star-half-alt {
    color: #f59e0b;
}

.stars-wrap .fa-star.empty {
    color: #475569;
}

.rating-val {
    font-weight: 700;
    color: #f59e0b;
    font-size: 1rem;
}

.rating-reviews {
    color: #64748b;
    font-size: 0.82rem;
}

.theme-modal-stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 16px 12px;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.modal-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    padding: 0 8px;
}

.modal-stat i {
    color: #0073b1;
    font-size: 1.1rem;
}

.modal-stat div {
    display: flex;
    flex-direction: column;
}

.stat-big {
    font-weight: 700;
    color: #f8fafc;
    font-size: 0.9rem;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.72rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.modal-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
}

.theme-modal-desc {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.desc-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
    margin-bottom: 8px;
    font-weight: 600;
}

.theme-modal-desc p {
    margin: 0;
    font-size: 0.88rem;
    color: #94a3b8;
    line-height: 1.7;
}

.theme-modal-tags {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

#modal-tags .tag-pill {
    background: rgba(0, 115, 177, 0.15);
    border: 1px solid rgba(0, 115, 177, 0.3);
    color: #7dd3fc;
    font-size: 0.75rem;
    padding: 3px 12px;
    border-radius: 50px;
    font-weight: 500;
}

.theme-modal-cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-cc-buy {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #000 !important;
    font-weight: 700;
    border-radius: 10px;
    padding: 12px 24px;
    font-size: 0.9rem;
    border: none;
    flex: 1;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.35);
    text-decoration: none;
}

.btn-cc-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.5);
    color: #000 !important;
}

.btn-cc-demo {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #e2e8f0;
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 0.88rem;
    transition: background 0.2s ease;
}

.btn-cc-demo:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #f8fafc;
}

.themeforest-badge {
    background: rgba(0, 115, 177, 0.1);
    border: 1px solid rgba(0, 115, 177, 0.2);
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 0.78rem;
    color: #7dd3fc;
    text-align: center;
}

.themeforest-badge strong {
    color: #38bdf8;
}

@media (max-width: 991px) {
    .theme-modal-img-wrap {
        min-height: 240px;
    }

    .theme-modal-info {
        max-height: none;
    }
}

/* =========================================
   Companies We Work With — Orbital Section
========================================= */
.companies-section {
    background: linear-gradient(160deg, #f0f7ff 0%, #ffffff 60%, #e8f4fd 100%);
    position: relative;
    padding: 100px 0;
}

.orbital-wrapper {
    position: relative;
    width: 580px;
    height: 580px;
    margin: 0 auto;
    overflow: visible;
    padding: 60px;
    box-sizing: content-box;
}

.orbital-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    z-index: 10;
}

.orbital-center-inner {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: #ffffff;
    border: 2.5px solid rgba(0, 115, 177, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 0 0 8px rgba(0, 115, 177, 0.10),
        0 0 0 16px rgba(0, 115, 177, 0.05),
        0 20px 60px rgba(0, 115, 177, 0.25);
}

.orbital-logo {
    width: 110px;
    height: auto;
    object-fit: contain;
}

.orbital-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid rgba(0, 115, 177, 0.35);
    animation: orbitalPulse 3s ease-out infinite;
    z-index: 1;
}

@keyframes orbitalPulse {
    0% {
        width: 160px;
        height: 160px;
        opacity: 0.6;
    }

    100% {
        width: 320px;
        height: 320px;
        opacity: 0;
    }
}

.orbital-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1.5px dashed rgba(0, 115, 177, 0.2);
    pointer-events: none;
}

.orbital-ring-inner {
    width: 280px;
    height: 280px;
    margin-top: -140px;
    margin-left: -140px;
}

.orbital-ring-outer {
    width: 460px;
    height: 460px;
    margin-top: -230px;
    margin-left: -230px;
    border-color: rgba(0, 160, 220, 0.2);
}

.orbital-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    pointer-events: all;
    z-index: 5;
}

.company-badge {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin-left: -30px;
    margin-top: -30px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.company-badge:hover {
    transform: scale(1.2) !important;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 25px rgba(0, 115, 177, 0.2);
    border-color: var(--primary-color);
}

.company-badge span {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    background: var(--heading-color);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    opacity: 0;
    transition: all 0.3s;
    white-space: nowrap;
}

.company-badge:hover span {
    opacity: 1;
    transform: translateX(-50%) translateY(-15px);
}

@media (max-width: 768px) {
    .orbital-wrapper {
        width: 100%;
        max-width: 300px;
        height: 300px;
        padding: 0;
    }

    .orbital-ring-inner {
        width: 180px;
        height: 180px;
        margin-top: -90px;
        margin-left: -90px;
    }

    .orbital-ring-outer {
        width: 290px;
        height: 290px;
        margin-top: -145px;
        margin-left: -145px;
    }

    .orbital-center,
    .orbital-center-inner {
        width: 80px;
        height: 80px;
    }

    .orbital-logo {
        width: 50px;
    }
}

/* =========================================
   Mega Menu & Enhanced Dropdown
========================================= */
.dropdown-mega .dropdown-menu {
    border-radius: 12px;
    padding: 20px;
    border: none;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.mega-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 115, 177, 0.05);
    border-radius: 10px;
    color: var(--secondary-color);
    font-size: 1.1rem;
    transition: all 0.3s;
}

.dropdown-item-mega {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 8px 0;
    color: var(--heading-color) !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
}

.dropdown-item-mega:hover {
    color: var(--primary-color) !important;
    transform: translateX(5px);
}

.dropdown-item-mega:hover .mega-icon {
    background: var(--secondary-color);
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 160, 220, 0.3);
}

@media (min-width: 992px) {
    .dropdown-mega {
        position: static !important;
    }

    .dropdown-mega .dropdown-menu {
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        padding: 40px !important;
        margin-top: 0 !important;
        background: #0d1b35 !important;
        border-bottom: 3px solid var(--secondary-color) !important;
        box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5) !important;
        border-radius: 0 0 20px 20px !important;

        /* Smooth Animation */
        display: block !important;
        opacity: 0;
        visibility: hidden;
        transform: translateY(15px);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        pointer-events: none;
    }

    .dropdown-mega:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .mega-menu-content {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .mega-column {
        transition: all 0.3s ease;
        padding: 15px;
        border-radius: 15px;
    }

    .mega-column:hover {
        background: rgba(255, 255, 255, 0.03);
    }

    .mega-column-title {
        font-size: 0.75rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--secondary-color);
        margin-bottom: 25px;
        display: block;
        opacity: 0.8;
        position: relative;
    }

    .mega-column-title::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 30px;
        height: 2px;
        background: var(--secondary-color);
        transition: width 0.3s ease;
    }

    .mega-column:hover .mega-column-title::after {
        width: 50px;
    }

    .dropdown-item-mega {
        color: #e2e8f0 !important;
    }

    .dropdown-item-mega:hover {
        color: #fff !important;
        transform: translateX(8px);
    }

    .mega-icon {
        background: rgba(255, 255, 255, 0.05);
    }
}

@media (max-width: 991px) {
    .dropdown-mega .dropdown-menu {
        background: transparent !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin-top: 10px !important;
    }

    .mega-menu-content {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .mega-column-title {
        font-size: 0.7rem;
        font-weight: 800;
        text-transform: uppercase;
        color: var(--secondary-color);
        margin-bottom: 10px;
        padding-left: 10px;
        border-left: 3px solid var(--secondary-color);
    }

    .dropdown-item-mega {
        padding: 10px 15px !important;
        background: #f8fafc;
        border-radius: 12px;
        margin-bottom: 5px;
    }

    .mega-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}