/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    /* Hide scrollbar for IE, Edge and Firefox */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Hide scrollbar for Chrome, Safari and Opera */
html::-webkit-scrollbar {
    display: none;
}

body {
    font-family: 'Inter', Tahoma, Geneva, Verdana, sans-serif !important;
    line-height: 1.6;
    background-color: #121212;
    opacity: 0;
    animation: pageLoad 0.8s ease 0.1s both;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /* Hide scrollbar for IE, Edge and Firefox */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
    display: none;
}

/* Force Inter font on all elements */
* {
    font-family: 'Inter', Tahoma, Geneva, Verdana, sans-serif !important;
}

/* Page container for flexbox layout */
.page-container {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}
/* Page load animation */
@keyframes pageLoad {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade in from left */
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Fade in from right */
@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Fade in from bottom */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scale in animation */
@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Floating animation for background elements */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Pulse animation */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Gradient animation */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Glow animation */
@keyframes glow {
    0%, 100% {
        filter: blur(1px) brightness(1);
        opacity: 0.4;
    }
    50% {
        filter: blur(2px) brightness(1.2);
        opacity: 0.6;
    }
}

.container {
    width: 90vw;
    margin: 0 auto;
    padding: 0 2vw;
}

/* Header and Navigation */
.header {
    background: #121212;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 0.5px solid;
    border-image-source: linear-gradient(90deg, rgba(255, 81, 0, 0.05) 14.9%, #FF5100 50%, rgba(255, 81, 0, 0.05) 82.21%);
    border-image-slice: 1;
    animation: fadeInUp 1s ease 0.2s both;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5vw 2vw 0.5vw 2vw;
    height: 5.5vw;
}

.nav-brand {
    display: flex;
    align-items: center;
    animation: fadeInLeft 1s ease 0.4s both;
}

.logo {
    width: 3vw;
    height: 3vw;
    margin-right: 0.5vw;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: rotate(360deg) scale(1.1);
}

.brand-text {
    font-size: 1.7vw;
    color: #fff;
    transition: color 0.3s ease;
}

.nav-brand:hover .brand-text {
    background: linear-gradient(90deg, #FF5100 0%, #FF0D00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 0.5vw;
    list-style: none;
    animation: fadeInRight 1s ease 0.6s both;
}

.nav-link {
    font-size: 1.1vw;
    color: #fff;
    text-decoration: none;
    padding: 0.5vw 1vw;
    position: relative;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.nav-link:hover,
.nav-link.active {
    background: linear-gradient(180deg, #FF8F00 3.33%, #FF0D00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-2px);
    font-weight: 700;
}

/* Hero Section */
.hero-responsive-wrapper {
    width: 100vw;
    aspect-ratio: 16/7;
    position: relative;
    overflow: visible;
    animation: scaleIn 1.2s ease 0.8s both;
    display: flex;
    justify-content: center;
}

.hero-content-container {
    max-width: 1440px;
    width: 100%;
    position: relative;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 102%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Low opacity overlay to darken the video */
.hero-responsive-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 102%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 0;
    pointer-events: none;
}

.hero.custom-hero {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    background: transparent;
    padding: 0;
    margin: 0;
}

.hero-inner {
    display: flex;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    position: relative;
    padding: 0;
    gap: 0;
    padding: 0% 3% 0 3%;
}

.hero-left, .hero-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0;
    margin: 0;
}

.hero-left {
    width: 70%;
    height: 100%;
    animation: fadeInLeft 1.2s ease 1s both;
}

.hero-right {
    width: 44%;
    height: 100%;
}

.hero-right {
    align-items: flex-end;
    justify-content: center;
    animation: fadeInRight 1.2s ease 1.2s both;
}

.hero-logo-svg {
    width: 85%;
    height: 85%;
    object-fit: contain;
    display: block;
    opacity: 0.7;
    transform: translateY(-30px) !important;
    transition: transform 0.3s ease;
}

.hero-logo-svg:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.hero-heading-anim {
    font-size: 4.4vw;
    line-height: 1.05;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #EBEBEB;
    margin: 0;
    padding: 0;
    width: 120%;
    text-decoration: none;
}

.hero-heading-gradient-wrapper {
    height: 1em;
    display: inline-block;
    position: relative;
    vertical-align: top;
}

.hero-heading-gradient-text {
    font-size: inherit;
    line-height: 1.05;
    position: absolute;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    transform: translateY(40%);
    background: linear-gradient(78.33deg, #FF8F00 15.54%, #FF5100 69.44%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-decoration: none;
}

.hero-heading-gradient-text.active {
    opacity: 1;
    position: static;
    transform: translateY(0);
}

.hero-subheading {
    font-size: 1.68vw;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #FF5100;
    font-style: italic;
    margin: 1vw 0 0 0;
    padding: 0;
    width: 70%;
    text-decoration: none;
    animation: fadeInUp 1s ease 1.4s both;
    line-height: normal;
}

.hero-description {
    animation: fadeInUp 1s ease 1.6s both;
    font-family: 'Inter', sans-serif;
    color: #fff;
    background: none;
    border-radius: 0;
    line-height: normal;
    font-style: normal;
    font-weight: 300;
    font-size: 1.1vw;
    margin: 1vw 0 0 0;
    padding: 0;
    width: 71%;
}

.hero-cta.cta-button {
    font-size: 1.3vw;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg, #FF8F00 0%, #FF5100 50%);
    background-size: 200% 100%;
    border: none;
    border-radius: 0.4em;
    align-content: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 143, 0, 0.08);
    text-decoration: none;
    display: inline-block;
    margin: 2vw 0 0 0;
    width: 18vw;
    height: 3.2vw;
    animation: fadeInUp 1s ease 1.8s both;
    position: relative;
    overflow: hidden;
}

.services-cta.cta-button {
    font-size: 1.4vw;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(86.19deg, #FF8F00 0%, #FF0D00 25%);
    background-size: 200% 100%;
    border: none;
    border-radius: 0.8em;
    padding: 0.2vw 0.2vw;
    align-content: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 143, 0, 0.08);
    text-decoration: none;
    display: inline-block;
    margin: 1vw 0 0 0;
    width: 20vw;
    height: 3.5vw;
    animation: fadeInUp 1s ease 1.8s both;
    position: relative;
    overflow: hidden;
}

.services-cta.cta-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 143, 0, 0.3);
    background: linear-gradient(86.19deg, #FF9F20 3.12%, #FF1D10 96.88%);
    background-position: 100% 0;
}

.services-cta.cta-button::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;
}

.hero-cta.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.hero-cta.cta-button:hover {
    box-shadow: 0 4px 16px rgba(255, 81, 0, 0.16);
    transform: translateY(-3px) scale(1.02);
    background-position: 100% 0;
}

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

.about-image {
    width: 100%;
    height: auto;
}

.parking-image {
    width: auto;
    max-width: 100%;
    height: auto;
    padding-top: 5vw;
    padding-bottom: 5vw;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s both;
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
}

.parking-image:hover {
    transform: scale(1.02);
}

.why-image {
    width: auto;
    max-width: 100%;
    height: auto;
    padding-right: 3%;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s both;
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
}

.why-image:hover {
    transform: scale(1.02);
}

.appeal-image {
    width: auto;
    max-width: 100%;
    height: auto;
    padding-top: 5%;
    padding-left: 10%;
    padding-right: 10%;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s both;
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
}

.appeal-image:hover {
    transform: scale(1.02);
}

.appeal-section {
    position: relative;
    width: 100%;
}

.appeal-section-content {
    max-width: 1440px;
    width: 100%;
    padding: 0 2vw;
    position: relative;
}

.appeal-button-container-left {
    position: absolute;
    bottom: 32%;
    left: 17%;
    z-index: 10;
}

.appeal-button-container-right {
    position: absolute;
    bottom: 32%;
    right: 46.5%;
    z-index: 10;
}

.appeal-btn {
    display: inline-block;
    background: linear-gradient(86.19deg, #FF8F00 0%, #FF0D00 25%);
    background-size: 200% 100%;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.2vw;
    padding: 1vw 1.5vw;
    width: 12vw;
    height: 3.5vw;
    border-radius: 0.6vw;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5vw;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 1s ease 0.7s both;
}

.appeal-btn::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;
}

.appeal-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 143, 0, 0.3);
    background: linear-gradient(86.19deg, #FF9F20 3.12%, #FF1D10 96.88%);
    background-position: 100% 0;
}

.appeal-btn:hover::before {
    left: 100%;
}

/* Start of Selection */
.contact-image {
    padding-top: 8%;
    padding-bottom: 10%;
    width: 95%;
    height: auto;
    display: block;
    margin: 0 auto;
    overflow: hidden;
}

.contact-section {
    position: relative;
    width: 100%;
}

.contact-logo {
    height: 35vh;
    width: auto;
}

.contact-section-content {
    max-width: 1440px;
    width: 100%;
    padding: 0 2vw;
    position: relative;
}

.contact-button-container {
    position: absolute;
    bottom: 48%;
    right: 12%;
    z-index: 10;
}

.contact-team-btn {
    display: inline-block;
    background: linear-gradient(86.19deg, #FF8F00 0%, #FF0D00 25%);
    color: #ffffff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.4vw;
    padding: 1.2vw 1.8vw;
    width: 23.5vw;
    height: 4.5vw;
    border-radius: 0.8vw;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6vw;
}

.contact-team-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 143, 0, 0.3);
    background: linear-gradient(86.19deg, #FF9F20 3.12%, #FF1D10 96.88%);
}

.contact-team-btn {
    display: inline-block;
    background: linear-gradient(86.19deg, #FF8F00 0%, #FF0D00 25%);
    background-size: 200% 100%;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.4vw;
    padding: 1.2vw 1.8vw;
    width: 23.5vw;
    height: 4.5vw;
    border-radius: 0.8vw;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6vw;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s both;
}

.contact-team-btn::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;
}

.contact-team-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 143, 0, 0.3);
    background: linear-gradient(86.19deg, #FF9F20 3.12%, #FF1D10 96.88%);
    background-position: 100% 0;
}

.contact-team-btn:hover::before {
    left: 100%;
}
/* End of Selection */

.hero-heading-gradient-text:nth-child(1) { animation-delay: 0s; }
.hero-heading-gradient-text:nth-child(2) { animation-delay: 1s; }
.hero-heading-gradient-text:nth-child(3) { animation-delay: 2s; }

@keyframes heroGradientAnim {
    0% { opacity: 0; transform: translateY(100%); }
    5% { opacity: 1; transform: translateY(0); }
    35% { opacity: 1; transform: translateY(0); }
    40% { opacity: 0; transform: translateY(-100%); }
    100% { opacity: 0; transform: translateY(-100%); }
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #121212;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: #1e1e1e;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 143, 0, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #121212;
}

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

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.about-text p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.secondary-button {
    display: inline-block;
    background: transparent;
    color: #667eea;
    padding: 12px 25px;
    text-decoration: none;
    border: 2px solid #667eea;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background: #667eea;
    color: white;
}

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

.about-section-wrapper {
    position: relative;
    width: 100%;
    margin-top: 0;
    background-image: url('../assets/home/about-bg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 2.5vw;
    z-index: 1;
}

.partners-section-wrapper {
    position: relative;
    width: 100%;
    overflow: visible;
}

.partners-image {
    width: 100%;
    height: auto;
    padding-top: 8%;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s both;
    transition: transform 0.3s ease;
}

.partners-image:hover {
    transform: scale(1.02);
}

/* Desktop and Mobile Image Display */
.desktop-only { display: block !important; }
.mobile-only { display: none !important; }
@media (max-width: 768px) {
    .desktop-only { display: none !important; }
    .mobile-only { display: block !important; }

    /* Mobile viewport height fixes */
    html {
        height: 100%;
        min-height: 100vh;
        min-height: -webkit-fill-available;
    }

    body {
        min-height: 100vh;
        min-height: -webkit-fill-available;
        min-height: calc(var(--vh, 1vh) * 100);
        -webkit-overflow-scrolling: touch;
        overflow-scrolling: touch;
    }

    .page-container {
        min-height: 100vh;
        min-height: -webkit-fill-available;
        min-height: calc(var(--vh, 1vh) * 100);
    }

    .header {
        position: sticky;
        top: 0;
        z-index: 1000;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }

    .footer {
        position: relative;
        z-index: 1;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }

    .about-section-wrapper {
        background-image: url('../assets/home/about-bg.png');
    }
}

.glow-background {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: -2;
    pointer-events: none;
}

.glow-background-partners {
    position: absolute;
    top: -120%;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    pointer-events: none;
}

.glow-background-services {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: -1;
    pointer-events: none;
    width: 100vw;
}

.glow-background-services-2 {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: -1;
    pointer-events: none;
    width: 100vw;
}

.service-logo-background {
    position: absolute;
    top: 15%;
    right: 0%;
    transform: translateX(15%) translateY(-50%);
    z-index: -1;
    pointer-events: none;
}

.service-logo-bg-svg {
    width: 30vw;
}

.glow-svg {
    width: 100vw;
    height: auto;
    opacity: 0.4;
    filter: blur(1px);
    animation: glow 4s ease-in-out infinite;
}

.about-image {
    position: relative;
    z-index: 6;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s both;
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: scale(1.02);
}

.image-placeholder {
    font-size: 8rem;
    opacity: 0.3;
}

/* Footer */
.footer {
    background-image: url('../assets/service/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 5vw 0 3vw 0;
    font-size: 1vw;
    letter-spacing: 0.01vw;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s both;
    margin-top: auto;
}

.footer-container {
    display: grid;
    grid-template-columns: 2.8fr 1.2fr 1.2fr 1.8fr;
    gap: 3vw;
    width: 90vw;
    margin: 0 auto;
    align-items: flex-start;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 0.7vw;
    margin-bottom: 1vw;
}

.footer-logo-svg {
    width: 2.2vw;
    height: 2.2vw;
}

.footer-brand-text {
    font-size: 1.5vw;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.05vw;
}

.footer-info p {
    margin: 0 0 0.5vw 0;
    color: #ccc;
    font-size: 0.8vw;
}

.footer-info h3 {
    margin: 0 0 0.5vw 0;
    color: #ccc;
    font-weight: 500;
    font-size: 1vw;
}

.footer-icon img {
    width: 1.1vw;
    height: 1.1vw;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.footer-icon img:hover {
    transform: scale(1.1);
}


.footer-link.highlight {
    color: #FF8F00;
}

.footer-note {
    color: #aaa;
    font-size: 0.85vw;
    margin-top: 0.5vw;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.1vw;
    font-weight: 600;
    margin-bottom: 1vw;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7vw;
}

.footer-col ul li {
    color: #ccc;
    font-size: 1vw;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover,
.footer-link.highlight:hover {
    color: #FF8F00;
}

.footer-icon {
    color: #FF8F00;
    font-size: 1.1vw;
    vertical-align: middle;
    margin-right: 0.5vw;
}

.footer-bottom {
    text-align: center;
    padding-top: 3vw;
    padding-bottom: 2vw;
    color: #aaa;
    font-size: 0.95vw;
}

.footer-bg-text {
  position: relative;
  left: 0;
  right: 0;
  bottom: 0.5vw; /* Adjust so it sits just under the footer, or 0 for very bottom */
  z-index: -1; /* Lower than footer */
  text-align: center;
  font-size: 6vw; /* Responsive size */
  font-weight: 800;
  color: #ff5100;
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
  line-height: auto;
  white-space: nowrap;
  width: 100vw;
  /* Gradient text color as requested */
  background: linear-gradient(90deg, rgba(255, 13, 0, 0.2) 0%, rgba(255, 143, 0, 0.2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero.custom-hero {
    background: transparent;
    padding-top: 5%;
}

.hero-subheading {
    background: none;
    color: #FF5100;
    display: inline;
    padding: 0;
    border-radius: 0;
}

.hero-description {
    background: none;
    padding: 0;
    border-radius: 0;
    line-height: normal;
    font-style: normal;
    font-weight: 400;
    font-size: 1vw;
    color: #fff;
}

.services-section {
    width: 100vw;
    min-height: 35vw;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 6vw 0 4vw 0;
    position: relative;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s both;
}

.services-inner {
    width: 90vw;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 4vw;
    height: 45vw;
    z-index: -1;
}

.services-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2vw;
    flex: 1 1 0;
}

.services-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 4.4vw;
    line-height: 1.1;
    letter-spacing: 0;
    background: linear-gradient(90.09deg, #FF8F00 0.08%, #FF0D00 60.01%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.services-buttons {
    display: flex;
    flex-direction: row;
    gap: 1vw;
}

.service-btn {
    width: 16vw;
    height: 3vw;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1.2vw;
    line-height: 1.1vw;
    border-radius: 0.6vw;
    border-width: 0.08vw;
    border-style: solid;
    padding: 0.7vw 0.4vw;
    background: transparent;
    color: #FF8F00;
    border-color: #fff;
    cursor: pointer;
    letter-spacing: 0;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.service-btn.selected {
    background: linear-gradient(90deg, #FF8F00 0%, #FF5100 50%, #FF0D00 100%);
    border: none;
    border-radius: 0.6vw;
    position: relative;
    padding: 2px; /* Default border width */
    z-index: 2;
}

.service-btn.selected::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    background: #121212; /* Match the body background */
    border-radius: calc(0.6vw - 2px);
    z-index: -1;
}

/* Responsive border thickness */
@media (max-width: 768px) {
    .service-btn.selected {
        padding: 1.5px;
    }

    .service-btn.selected::before {
        top: 1.5px;
        left: 1.5px;
        width: calc(100% - 3px);
        height: calc(100% - 3px);
        border-radius: calc(0.6vw - 1.5px);
    }
}

@media (max-width: 480px) {
    .service-btn.selected {
        padding: 1px;
    }

    .service-btn.selected::before {
        top: 1px;
        left: 1px;
        width: calc(100% - 2px);
        height: calc(100% - 2px);
        border-radius: calc(0.6vw - 1px);
    }
}

.service-btn.selected span {
    position: relative;
    z-index: 1;
    display: block;
    padding: 0.7vw 0.27vw;
    background: linear-gradient(90deg, #FF8F00 0%, #FF5100 50%, #FF0D00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-btn:not(.selected) {
    color: #fff;
    border: 0.13vw solid #fff;
    background: transparent;
}

.explore-btn {
    width: 16vw;
    height: 3vw;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.3vw;
    line-height: 1.2vw;
    border-radius: 0.7vw;
    border-width: 0.2vw;
    border-style: solid;
    border: none;
    background: linear-gradient(86.19deg, #FF8F00 0%, #FF0D00 25%);
    color: #fff;
    box-shadow: 0 0.2vw 1vw 0 rgba(255, 81, 0, 0.08);
    cursor: pointer;
    letter-spacing: 0;
    transition: background 0.2s, color 0.2s;
    z-index: 10;
}

.explore-btn:hover {
    filter: brightness(1.1);
}

.services-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 auto;
    min-width: 0;
}

.service-logo-svg {
    width: 30vw;
    height: 20vw;
    opacity: 0.3;
    margin-left: -30vw;
}

.services-image-switcher {
    position: relative;
    margin-left: -1%;
    margin-top: 4vw;
}

.services-switch-img { display: none !important; }
.services-switch-img.active.desktop-only { display: block !important; }
.services-switch-img.active.mobile-only { display: none !important; }
@media (max-width: 768px) {
  .services-switch-img.active.desktop-only { display: none !important; }
  .services-switch-img.active.mobile-only { display: block !important; }
}

.ops-img-up {
  margin-top: 0;
  position: relative;
  top: 0;
  z-index: -1;
}

.learn-more-button-container {
    position: absolute;
    bottom: 18%;
    right: 31.5%;
    z-index: 10;
}

.learn-more-btn {
    font-size: 1.4vw;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(86.19deg, #FF8F00 0%, #FF0D00 25%);
    background-size: 200% 100%;
    border: none;
    border-radius: 0.4em;
    align-content: center;
    padding: 0.2vw 0.2vw;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 143, 0, 0.08);
    text-decoration: none;
    display: inline-block;
    margin: 1vw 0 0 0;
    width: 20vw;
    height: 3.5vw;
    margin-top: 3vw;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s both;
}

.learn-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.learn-more-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(255, 143, 0, 0.3);
    background-position: 100% 0;
}

.learn-more-btn:hover::before {
    left: 100%;
}

.services-image-switcher.ops-active {
    position: relative;
    top: -30vw;
}


/* —————————————————————————— */
/* Partners Section w/ client_sec background */
/* —————————————————————————— */
.container-partners {
    width: 100%;
    margin: 0 3vw 0 3vw;
    padding: 0 5vw;
}


.partners-section {
    position: relative;
    overflow: hidden;
    padding: 0;                /* background handles the spacing */
  }

  .partners-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: auto;
    z-index: 0;
  }

  .partners-overlay {
    position: relative;
    z-index: 1;
    padding: 3vw 0 3vw;        /* adjust top/bottom to taste */
    text-align: left;
    margin-left: 3vw;
    margin-right: 3vw;
  }

  .partners-heading {
    font-size: 4vw;
    background: linear-gradient(90.09deg, #FF8F00 0.08%, #FF0D00 30.01%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    animation: fadeInUp 1s ease both;
  }

  .partners-subheading {
    font-size: 1.5vw;
    color: #FF5100;
    margin-bottom: 1vw;
    animation: fadeInUp 1s ease 0.2s both;
    font-style: italic;
    margin-top: -0.7vw;
  }

  .partners-slider {
    overflow: hidden;
    padding-bottom: 1vw;
    animation: fadeInUp 1s ease 0.4s both;
    padding-top: 4vw;
    margin-left: -3vw;
    margin-right: -3vw;
    width: 100%;
  }

  .partners-track {
    display: flex;
    gap: 2vw;
    animation: scroll-partners 20s linear infinite;
    width: max-content;
  }

  @keyframes scroll-partners {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  .partner-item {
    flex: 0 0 auto;
    background: #2A2A2A;
    border-radius: 3vw;
    padding: 0.5vw 3vw;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
    transition: transform 0.3s ease;
  }
  .partner-item:hover {
    transform: translateY(-5px) scale(1.02);
  }

  .partner-item img {
    max-height: 4vw;
    width: auto;
    display: block;
  }

  .partners-description {
    font-size: 1vw;
    line-height: normal;
    width: 43vw;
    color: #fff;
    margin-bottom: 1vw;
    animation: fadeInUp 1s ease 0.2s both;
    /* padding-top: 0.5vw; */
    font-weight: 300;
  }

  /* mobile / desktop helpers (you've got these already) */
  /* .desktop-only { display: block !important; }
  .mobile-only { display: none !important; }
  @media (max-width: 768px) {
    .desktop-only { display: none !important; }
    .mobile-only { display: block !important; }
  }
   */

/* —————————————————————————— */
/* MAX WIDTH CONSTRAINT AT 1440px */
/* —————————————————————————— */
@media (min-width: 1440px) {
    /* Main body keeps full width for backgrounds */
    body {
        overflow-x: hidden;
    }

    .parking-image {
        padding-top: 0;
        padding-bottom: 50px;
    }

    /* Container and layout constraints */
    .container {
        width: 1080px; /* 90vw at 1440px */
        max-width: 1440px;
        padding: 0 24px; /* 2vw at 1440px */
        margin: 0 auto;
    }

    .container-partners {
        margin: 0 36px 0 36px; /* 3vw at 1440px */
        padding: 0 60px; /* 5vw at 1440px */
        max-width: 1440px;
        width: 100%;
    }

    /* Header and Navigation */
    .header {
        width: 100vw; /* Full width for background */
        display: flex;
        justify-content: center;
    }

    .navbar {
        padding: 6px 24px 6px 24px; /* 0.5vw and 2vw at 1440px */
        height: 66px; /* 5.5vw at 1440px */
        max-width: 1440px;
        width: 100%;
    }

    .logo {
        width: 36px; /* 3vw at 1440px */
        height: 36px; /* 3vw at 1440px */
        margin-right: 6px; /* 0.5vw at 1440px */
    }

    .brand-text {
        font-size: 20.4px; /* 1.7vw at 1440px */
    }

    .nav-menu {
        gap: 6px; /* 0.5vw at 1440px */
    }

    .nav-link {
        font-size: 13.2px; /* 1.1vw at 1440px */
        padding: 6px 12px; /* 0.5vw and 1vw at 1440px */
    }

    /* Hero Section */
    .hero-responsive-wrapper {
        width: 100vw; /* Keep full width for background */
        height: 630px; /* Fixed height instead of aspect-ratio 16/7 */
        margin: 0 auto;
        position: relative;
        overflow: hidden; /* Prevent any movement */
        display: flex;
        justify-content: center;
    }

    .hero-content-container {
        max-width: 1440px;
        width: 100%;
        position: relative;
    }

    .hero-video {
        top: 0; /* Position relative to hero-responsive-wrapper */
        width: 100vw; /* Keep full width */
        height: 550px; /* Full height of hero-responsive-wrapper */
    }

    .hero-responsive-wrapper::before {
        top: 0; /* Position relative to hero-responsive-wrapper */
        width: 100vw; /* Keep full width */
        height: 550px; /* Full height of hero-responsive-wrapper */
    }

    /* Hero content container constraint */
    .hero.custom-hero {
        padding-top: 70px !important; /* Fixed padding instead of 10% */
        position: relative;
        overflow: hidden; /* Prevent movement */
    }

    .hero-inner {
        display: flex !important;
        width: 100% !important;
        height: 380px !important; /* Match hero-left and hero-right heights */
        max-width: 1440px;
        margin: 0 auto;
        padding: 0 43px 0 43px !important; /* Fixed padding instead of 2% 3% 0 3% */
        position: relative;
        overflow: hidden; /* Prevent content from moving outside */
        box-sizing: border-box !important;
        gap: 48px !important; /* Add space between hero-left and hero-right */
        justify-content: space-between !important; /* Push right part to far right */
    }

    .hero-heading-anim {
        font-size: 52.8px; /* 4.4vw at 1440px */
    }

    .hero-subheading {
        font-size: 21px; /* 1.75vw at 1440px */
        margin: 12px 0 0 0; /* 1vw at 1440px */
    }

    .hero-description {
        font-size: 14.4px; /* 1.2vw at 1440px */
        margin: 12px 0 0 0; /* 1vw at 1440px */
        width: 65%;
    }

    .hero-cta.cta-button {
        font-size: 18.72px;
        margin: 12px 0 0 0;
        width: 259.2px;
        height: 46.08px;
    }

    .services-cta.cta-button {
        font-size: 15.6px; /* 1.3vw at 1440px */
        margin: 12px 0 0 0; /* 1vw at 1440px */
        width: 240px; /* 20vw at 1440px */
        height: 42px; /* 3.5vw at 1440px */
    }

    /* Hero SVG Logo */
    .hero-logo-svg {
        width: 100%;
        height: 100%;
        padding-top: 35px;
    }

    .hero-left {
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
        width: 65% !important;
        height: 380px !important; /* Fixed height to override base styles */
        position: relative;
        padding: 0 !important;
        margin: 0 !important;
    }

    .hero-right {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: flex-end !important;
        width: auto !important;
        max-width: 350px; /* Reduced size to prevent movement */
        height: 380px !important; /* Fixed height to override base styles */
        position: relative;
        flex-shrink: 0; /* Prevent shrinking */
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Services Section */
    .services-section {
        min-height: 504px; /* Fixed height instead of 35vw */
        padding: 72px 0 48px 0; /* 6vw and 4vw at 1440px */
        width: 100vw; /* Keep full width for background */
        display: flex;
        justify-content: center;
    }

    .services-inner {
        width: 100vw; /* 90vw at 1440px */
        gap: 48px; /* 4vw at 1440px */
        height: 648px; /* Fixed height instead of 45vw */
        max-width: 1440px;
        margin: 0 auto;
    }

    .services-left {
        gap: 24px; /* 2vw at 1440px */
    }

    .services-heading {
        font-size: 64px; /* 3.2vw at 1440px */
    }

    .services-buttons {
        gap: 12px; /* 1vw at 1440px */
    }

    .service-btn {
        width: 192px; /* 16vw at 1440px */
        height: 36px; /* 3vw at 1440px */
        font-size: 14.4px; /* 1.2vw at 1440px */
        line-height: 13.2px; /* 1.1vw at 1440px */
        border-radius: 7.2px; /* 0.6vw at 1440px */
        padding: 8.4px 4.8px; /* 0.7vw and 0.4vw at 1440px */
        border-width: 0.96px; /* 0.08vw at 1440px */
    }

    .service-btn:not(.selected) {
        border: 1.56px solid #fff; /* 0.13vw at 1440px */
    }

    .service-btn.selected {
        border-radius: 7.2px; /* 0.6vw at 1440px */
    }

    .service-btn.selected::before {
        border-radius: 5.76px; /* calc(0.6vw - 2px) at 1440px */
    }

    .service-btn.selected span {
        padding: 8.4px 3.24px; /* 0.7vw and 0.27vw at 1440px */
    }

    .explore-btn {
        width: 192px; /* 16vw at 1440px */
        height: 36px; /* 3vw at 1440px */
        font-size: 15.6px; /* 1.3vw at 1440px */
        line-height: 14.4px; /* 1.2vw at 1440px */
        border-radius: 8.4px; /* 0.7vw at 1440px */
        border-width: 2.4px; /* 0.2vw at 1440px */
    }

    .service-logo-svg {
        width: 360px; /* 30vw at 1440px */
        height: 240px; /* 20vw at 1440px */
    }

    .service-logo-bg-svg {
        width: 360px; /* 30vw at 1440px */
    }

    .services-image-switcher {
        margin-top: 48px; /* 4vw at 1440px */
        max-width: 1440px; /* Constrain the switcher container */
    }

    .services-image-switcher img,
    .services-switch-img {
        max-width: 1440px; /* Constrain all images in switcher */
        width: 100%;
        height: auto;
    }

    .services-image-switcher.ops-active {
        top: -25vw; /* -25vw at 1440px */
    }

    .learn-more-btn {
        margin: 12px 0 0 0;
        font-size: 20.16px;
        width: 288px;
        height: 50.4px;
        margin-top: 36px;

    }

    .learn-more-button-container {
        position: absolute;
        bottom: 30%;
        left: 50.2%;
        z-index: 10;
        transform: translateX(-25px);
    }

    .about-section-wrapper {
        width: 100vw; /* Keep full width for background */
        display: flex;
        justify-content: center;
        position: relative;
    }

    .about-section-wrapper .about-image {
        max-width: 1440px;
        width: 100%;
        position: relative;
    }

    /* Partners Section */
    .partners-section {
        width: 100vw; /* Keep full width for background */
        display: flex;
        justify-content: center;
    }

    .partners-overlay {
        max-width: 1440px;
        width: 100%;
        padding: 48px 36px 96px 36px; /* 4vw 3vw 8vw 3vw at 1440px */
    }

    .partners-heading {
        font-size: 54px; /* 4.5vw at 1440px */
    }

    .partners-subheading {
        font-size: 24px; /* 1.8vw at 1440px */
        margin-bottom: 12px; /* 1vw at 1440px */
        margin-top: -8.4px; /* -0.7vw at 1440px */
    }

    .partners-description {
        font-size: 16px; /* 1.8vw at 1440px */
        width: 700px; /* 70vw at 1440px */
        margin-bottom: 12px; /* 1vw at 1440px */
    }

    .partners-slider {
        padding-bottom: 12px; /* 1vw at 1440px */
        padding-top: 48px; /* 4vw at 1440px */
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }

    .partners-track {
        gap: 24px; /* 2vw at 1440px */
    }

    .partner-item {
        border-radius: 36px; /* 3vw at 1440px */
        padding: 6px 36px; /* 0.5vw and 3vw at 1440px */
    }

    .partner-item img {
        max-height: 48px; /* 4vw at 1440px */
    }

    /* Contact Section */
    .contact-section {
        width: 100vw; /* Keep full width for background */
        display: flex;
        justify-content: center;
        position: relative;
    }

    .contact-section-content {
        width: 1440px;
        padding: 0 28.8px;
    }

    .contact-image {
        max-width: 1440px;
        width: 100%;
        position: relative;
        padding: 0 63px;
        padding-top: 144px;
        padding-bottom: 144px;
    }

    .contact-logo {
        height: 400px; /* Fixed height instead of 90vh */
        width: auto;
    }

    .contact-team-btn {
        font-size: 20.16px;
        padding: 17.28px 25.92px;
        width: 338.4px;
        height: 64.8px;
        border-radius: 11.52px;
    }

    .contact-button-container {
        position: absolute;
        bottom: 47%;
        right: 15%;
        transform: translateX(10%);
        z-index: 10;
    }

    /* Appeal Section */
    .appeal-section {
        width: 100vw;
        display: flex;
        justify-content: center;
        position: relative;
    }

    .appeal-section-content {
        width: 1440px;
        padding: 0 28.8px;
    }

    .appeal-button-container-left {
        position: absolute;
        bottom: 32%;
        left: 19%;
        transform: translateX(-10%);
        z-index: 10;
    }

    .appeal-button-container-right {
        position: absolute;
        bottom: 32%;
        right: 49%;
        transform: translateX(10%);
        z-index: 10;
    }

    .appeal-btn {
        font-size: 16px;
        padding: 12px 18px;
        width: 140px;
        height: 45px;
        border-radius: 8px;
    }

    /* All section wrapper images */
    .about-section-wrapper,
    .partners-section-wrapper {
        width: 100vw; /* Keep full width for background */
        display: flex;
        justify-content: center;
        position: relative;
        padding: 100px;
    }

    .about-section-wrapper .about-image,
    .partners-section-wrapper .partners-image {
        max-width: 1440px;
        width: 100%;
        position: relative;
    }

    /* Footer */
    .footer {
        padding: 60px 0 36px 0; /* 5vw and 3vw at 1440px */
        font-size: 12px; /* 1vw at 1440px */
        letter-spacing: 0.12px; /* 0.01vw at 1440px */
        width: 100vw; /* Keep full width for background */
        display: flex;
        justify-content: center;
    }

    .footer-container {
        gap: 36px; /* 3vw at 1440px */
        width: 1080px; /* 90vw at 1440px */
        max-width: 1440px;
        margin: 0 auto;
    }

    .footer-col {
        gap: 12px; /* 1vw at 1440px */
    }

    .footer-logo-row {
        gap: 8.4px; /* 0.7vw at 1440px */
        margin-bottom: 12px; /* 1vw at 1440px */
    }

    .footer-logo-svg {
        width: 26.4px; /* 2.2vw at 1440px */
        height: 26.4px; /* 2.2vw at 1440px */
    }

    .footer-brand-text {
        font-size: 18px; /* 1.5vw at 1440px */
        letter-spacing: 0.6px; /* 0.05vw at 1440px */
    }

    .footer-info p {
        margin: 0 0 6px 0; /* 0.5vw at 1440px */
        font-size: 9.6px; /* 0.8vw at 1440px */
    }

    .footer-info h3 {
        margin: 0 0 6px 0; /* 0.5vw at 1440px */
        font-size: 12px; /* 1vw at 1440px */
    }

    .footer-icon img {
        width: 13.2px; /* 1.1vw at 1440px */
        height: 13.2px; /* 1.1vw at 1440px */
    }

    .footer-note {
        font-size: 10.2px; /* 0.85vw at 1440px */
        margin-top: 6px; /* 0.5vw at 1440px */
    }

    .footer-col h4 {
        font-size: 13.2px; /* 1.1vw at 1440px */
        margin-bottom: 12px; /* 1vw at 1440px */
    }

    .footer-col ul {
        gap: 8.4px; /* 0.7vw at 1440px */
    }

    .footer-col ul li {
        font-size: 12px; /* 1vw at 1440px */
    }

    .footer-icon {
        font-size: 13.2px; /* 1.1vw at 1440px */
        margin-right: 6px; /* 0.5vw at 1440px */
    }

    .footer-bottom {
        padding-top: 36px; /* 3vw at 1440px */
        padding-bottom: 24px; /* 2vw at 1440px */
        font-size: 11.4px; /* 0.95vw at 1440px */
    }

    .footer-bg-text {
        /* bottom: -7.2px;  */
        /* -0.6vw at 1440px */
        font-size: 86.4px; /* Fixed size instead of 6vw */
        width: 100vw; /* Keep full width */
    }

    /* Glow background elements */
    .glow-svg {
        width: 100vw; /* Keep responsive width */
    }

    .glow-background-partners {
        top: -144%; /* -120% stays percentage */
    }

    .glow-background-services {
        top: -100%;
    }

    .glow-background-services-2 {
        top: 100%; /* percentage stays same */
    }

    .service-logo-background {
        top: 15%; /* percentage stays same */
        right: 0%; /* percentage stays same */
        transform: translateX(15%) translateY(-50%); /* percentage stays same */
    }
}
