@import 'variables.css';

@font-face {
    font-family: 'SuisseIntl';
    src: url('../fonts/SuisseIntl-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SuisseIntl';
    src: url('../fonts/SuisseIntl-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SuisseIntl';
    src: url('../fonts/SuisseIntl-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* =========================
   Global Reset & Defaults
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: auto;
    overflow-x: clip;
}

body {
    font-family: 'SuisseIntl', 'Inter', 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-white);
    color: var(--text-main);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
    width: 100%;
}

html.preloading,
body.preloading {
    overflow: hidden;
    height: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark-blue);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================
   Premium Preloader
========================= */
.premium-preloader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-preloader.loaded {
    pointer-events: none;
}

.preloader-bars {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100vh;
    display: flex;
    z-index: 1;
}

.preloader-bar {
    flex: 1;
    height: 100%;
    background: #ffffff; /* Deep Navy */
    transform: translateY(0);
    transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
}

.premium-preloader.loaded .preloader-bar {
    transform: translateY(-100%);
}
.premium-preloader.loaded .preloader-bar:nth-child(1) { transition-delay: 0s; }
.premium-preloader.loaded .preloader-bar:nth-child(2) { transition-delay: 0.1s; }
.premium-preloader.loaded .preloader-bar:nth-child(3) { transition-delay: 0.2s; }
.premium-preloader.loaded .preloader-bar:nth-child(4) { transition-delay: 0.3s; }

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.preloader-logo-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.preloader-logo {
    height: 100px;
    width: auto;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    animation: logoWipeDown 1.5s cubic-bezier(0.86, 0, 0.07, 1) 0.5s forwards;
}

.preloader-lightning {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(255, 255, 255, 0) 45%, 
        rgba(255, 255, 255, 0.9) 50%, 
        rgba(255, 255, 255, 0) 55%, 
        transparent 100%
    );
    mix-blend-mode: lighten;
    opacity: 0;
    transform: translateY(-100%);
    animation: lightningSweep 1.5s cubic-bezier(0.86, 0, 0.07, 1) 0.5s forwards;
    pointer-events: none;
}

.preloader-typing-text {
    font-family: var(--font-heading);
    color: #020617;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 8px;
    display: flex;
    margin-top: 15px;
}

.preloader-typing-text span {
    opacity: 0;
    transform: translateY(10px);
    animation: typeLetter 0.4s ease forwards;
}

.preloader-percent {
    margin-top: 20px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-cyan);
    letter-spacing: 2px;
    text-align: center;
    opacity: 0;
    animation: fadeInPercent 0.5s ease 0.5s forwards;
}

@keyframes fadeInPercent {
    to { opacity: 1; }
}

@keyframes logoWipeDown {
    0% { clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); }
    100% { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
}

@keyframes lightningSweep {
    0% { transform: translateY(-100%); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(100%); opacity: 0; }
}

@keyframes typeLetter {
    0% { opacity: 0; transform: translateY(10px); color: var(--accent-cyan); text-shadow: 0 0 10px var(--accent-cyan); }
    100% { opacity: 1; transform: translateY(0); color: #020617; text-shadow: none; }
}

.premium-preloader.loaded .preloader-content {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.container-wide {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 25px;
}

/* =========================
   Buttons
========================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px; /* Pill shape */
    transition: var(--transition);
    cursor: pointer;
    border: none;
    gap: 10px;
    text-transform: capitalize;
}

.btn-primary {
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
    color: var(--text-light);
    box-shadow: var(--glow-neon);
}

.btn-primary:hover {
    box-shadow: var(--glow-strong);
    transform: translateY(-3px) scale(1.02);
}

.btn-outline {
    border: 1.5px solid var(--accent-cyan);
    color: var(--accent-cyan);
    background: transparent;
}

.btn-outline:hover {
    background: var(--accent-cyan);
    color: var(--bg-white);
}

/* Compatibility with old classes */
.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
    color: var(--text-light);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--glow-neon);
}

.primary-btn:hover {
    box-shadow: var(--glow-strong);
    transform: translateY(-3px) scale(1.02);
}

/* Glassmorphism Cards */
.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 30px;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

/* =========================
   Header & Navbar (Premium Redesign)
========================= */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 25px 0;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: transparent; /* Stick directly to background */
    border-bottom: none;
}

.main-header.sticky {
    background: rgba(4, 11, 22, 0.6) !important; /* Darker, more transparent for better blur */
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 15px 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border-bottom: 1px solid rgba(111, 209, 215, 0.2);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex: 0 0 auto;
}

.logo img {
    height: 40px;
    width: auto;
    transition: 0.4s;
}

.main-header.sticky .logo img {
    height: 35px;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 26px;
    letter-spacing: 1.5px;
    color: white !important;
}

.logo-text span {
    color: var(--accent-cyan);
}

.nav-menu {
    display: flex;
    align-items: center;
    margin-left: auto; /* Pushes the menu fully to the right */
    gap: 45px;
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    font-size: 13px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: 0.3s ease;
    padding: 8px 0;
    display: block;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent-cyan);
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-menu li a:hover {
    color: white;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.nav-menu li a.active {
    color: white;
}

.header-cta {
    display: flex;
    align-items: center;
}

.header-cta .btn {
    padding: 12px 30px;
    font-size: 13px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: transparent;
    border: 1px solid var(--accent-cyan);
    color: white;
    transition: 0.4s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-cta .btn:hover {
    background: var(--accent-cyan);
    color: #093c5d;
    box-shadow: 0 5px 25px rgba(111, 209, 215, 0.4);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
}

.mobile-only {
    display: none !important;
}

/* =========================
   Hero Section (Premium Swiper)
 ========================= */

.hero {
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: flex-end;
    position: relative;
    background: #093c5d;
    overflow: hidden;
    padding-bottom: 80px;
}

.hero-swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.7) contrast(1.1);
    transform: scale(1.1);
}

/* Add zoom animation to active slide background */
.swiper-slide-active .hero-slide-bg {
    animation: slowZoom 8s ease-in-out forwards;
}

@keyframes slowZoom {
    from { transform: scale(1.1); }
    to { transform: scale(1); }
}

.hero-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: radial-gradient(circle at center, rgba(9, 60, 93, 0.3) 0%, rgba(9, 60, 93, 0.8) 100%);
    display: flex;
    align-items: center;
}

.hero-text-box {
    max-width: 800px;
    padding-top: 50px;
}

.hero-text-box h1 {
    font-size: 72px;
    color: white;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.hero-text-box h1 span {
    color: var(--accent-cyan);
}

.hero-text-box p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
}

.h-stat h3 {
    font-size: 36px;
    color: white;
    margin-bottom: 5px;
}

.h-stat h3 span {
    color: var(--accent-cyan);
}

.h-stat p {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 30px;
}

.container-wide {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

/* =========================
   Section Styling
========================= */

section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-header {
    margin-bottom: 80px;
    max-width: 700px;
}

.section-header.text-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.sub-title {
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-cyan);
    margin-bottom: 20px;
    position: relative;
    padding-left: 50px;
}

.sub-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 2px;
    background: var(--accent-cyan);
}

.section-header h2 {
    font-size: 52px;
    line-height: 1.1;
    color: var(--primary-blue);
    margin-bottom: 25px;
    font-weight: 800;
}

.section-header p {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* =========================
   Animations (Reveal)
========================= */

/* =========================
   Animations (Handled by GSAP JS)
========================= */

/* Contact Specific Animations */
.contact-sidebar .info-item {
    transition: all 0.3s ease;
}

.contact-sidebar .info-item:hover {
    transform: translateX(10px);
}

.contact-sidebar .info-item:hover .icon-circle {
    background: var(--accent-cyan) !important;
    color: white !important;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
}

.directory-grid .glass-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.directory-grid .glass-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-cyan);
    box-shadow: 0 20px 40px rgba(111, 209, 215, 0.2);
}

.directory-grid .glass-card:hover .icon-box {
    transform: scale(1.1) rotate(10deg);
}

.directory-grid .icon-box {
    transition: transform 0.4s ease;
}

/* Horizontal Scroll Pin Section */
.pin-wrapper {
    background: #093c5d;
    overflow: hidden;
    height: 100vh;
    position: relative;
}
.pin-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(111, 209, 215, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}
.pin-container {
    display: flex;
    height: 100vh;
    width: 400vw;
    flex-wrap: nowrap;
    position: relative;
    z-index: 1;
}
.pin-panel {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10vw;
    flex-shrink: 0;
}
.feature-card-massive {
    display: flex;
    align-items: center;
    gap: 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    transition: 0.4s;
}
.feature-card-massive:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(111, 209, 215, 0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
@media (max-width: 991px) {
    .feature-card-massive {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        gap: 30px;
    }
    .pin-panel {
        padding: 0 5vw;
    }
    .feature-card-massive h3 {
        font-size: 32px !important;
    }
    .feature-card-massive p {
        font-size: 18px !important;
    }
}

/* =========================
   Split Layout Sections
========================= */

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 100px;
}

.split-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.split-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-cyan);
    z-index: -1;
    border-radius: 15px;
}

.split-content h3 {
    font-size: 32px;
    margin-bottom: 25px;
}

.split-content p {
    margin-bottom: 20px;
    font-size: 17px;
    color: var(--text-muted);
}

.features-list {
    margin: 35px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    font-weight: 500;
}

.feature-item i {
    color: var(--accent-cyan);
    font-size: 18px;
}

/* =========================
   Services Grid (Premium Cards & Image Overlay)
 ========================= */

.services {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.services .image {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 0;
    overflow: hidden;
}

.services .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.services .image .overlay {
    display: none;
}

.services .service-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    mix-blend-mode: multiply;
}

.services .service-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #010d15;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}

.services .image.is-animated .service-content::before {
    transform: translateY(-100%);
}

.services .image.is-animated .service-content {
    mix-blend-mode: normal;
}

.services .massive-title {
    position: absolute;
    bottom: 50px;
    left: 50px;
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
    letter-spacing: 2px;
    max-width: calc(100% - 100px);
    word-break: break-word;
}

.services .massive-arrow {
    position: absolute;
    bottom: 155px;
    left: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid white;
    color: white;
    font-size: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
    text-decoration: none;
}

.services .image.is-animated .massive-arrow {
    background: var(--accent-cyan);
    border-color: var(--accent-cyan);
    transform: rotate(45deg);
    color: var(--primary-blue);
}

.services .image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    z-index: 0;
}

.services-wrap {
    background: var(--bg-light-gray);
}

.services-grid-horizontal {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-card-h {
    display: flex;
    align-items: center;
    background: rgba(9, 60, 93, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: 160px;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card-h:hover {
    transform: translateX(10px);
    background: rgba(9, 60, 93, 0.9);
    border-color: var(--accent-cyan);
    box-shadow: 0 20px 50px rgba(111, 209, 215, 0.15);
}

.service-card-img {
    width: 280px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
    filter: brightness(0.8);
}

.service-card-h:hover .service-card-img img {
    transform: scale(1.1);
    filter: brightness(1);
}

.service-card-content {
    flex: 1;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-card-info h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: white;
}

.service-card-info p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    max-width: 450px;
}

.service-card-link {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    transition: var(--transition);
}

.service-card-h:hover .service-card-link {
    background: var(--accent-cyan);
    color: white;
    transform: rotate(-45deg);
    border-color: var(--accent-cyan);
}

/* =========================
   Supply Chain Section
 ========================= */

.supply-chain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.chain-item {
    position: relative;
    text-align: center;
}

.chain-img {
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 25px;
    position: relative;
}

.chain-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chain-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(8, 44, 78, 0.8), transparent);
}

.chain-item h4 {
    color: var(--primary-blue);
    font-size: 20px;
    margin-bottom: 10px;
}

/* =========================
   Vision 2030 Section
 ========================= */

.vision-section {
    background: #093c5d;
    padding: 100px 0;
    color: var(--bg-white);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.vision-logo {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.vision-logo img {
    width: 100%;
    max-width: 100%;
    display: block;
    transition: transform 1s ease;
}

.vision-logo:hover img {
    transform: scale(1.05);
}

.vision-content h2 {
    color: var(--bg-white);
    font-size: 48px;
    margin-bottom: 25px;
}

.vision-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

/* =========================
   Stats Section
========================= */

/* =========================
   Stats Section (Horizontal Bar)
 ========================= */

.stats-section {
    background-color: #010d15;
    padding: 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.stats-container {
    background-color: #010d15;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: left;
    gap: 40px;
}

.stat-item {
    padding-left: 30px;
    border-left: 2px solid #eef2f6;
}

.stat-item:first-child {
    border-left: none;
    padding-left: 0;
}

.stat-item h2 {
    font-size: 56px;
    color: var(--primary-blue);
    margin-bottom: 5px;
    font-weight: 800;
    line-height: 1;
}

.stat-item h2 span {
    color: var(--accent-cyan);
}

.stat-item p {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* =========================
   Footer
========================= */

.main-footer {
    background: #051422;
    color: var(--bg-white);
    padding-top: 120px;
}

.footer-top {
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
}

.footer-logo img {
    height: 70px;
    margin-bottom: 30px;
}

.footer-about p {
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
}

.footer-links h4 {
    color: var(--bg-white);
    font-size: 20px;
    margin-bottom: 35px;
}

.footer-links ul li {
    margin-bottom: 18px;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    position: relative;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-links ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--accent-cyan);
    transition: width 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--accent-cyan);
    transform: translateX(8px);
}

.footer-links ul li a:hover::after {
    width: 100%;
}

.footer-contact h4 {
    color: var(--bg-white);
    font-size: 20px;
    margin-bottom: 35px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item i {
    color: var(--accent-cyan);
    font-size: 20px;
    margin-top: 5px;
    width: 25px;
    text-align: center;
    flex-shrink: 0;
}
.contact-item .loc{
    color: var(--accent-cyan);
    font-size: 20px; /* Unified size */
}

.contact-item span {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
}

.contact-item span a {
    color: inherit;
    transition: var(--transition);
}

.contact-item span a:hover {
    color: var(--accent-cyan);
}

.footer-bottom {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255,255,255,0.4);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-links a:hover {
    background: var(--accent-cyan);
    color: var(--bg-white);
    border-color: var(--accent-cyan);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(113, 207, 215, 0.4);
}

/* Footer Accordion Base (Desktop) */
.footer-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: default;
}
.footer-accordion-header h4 {
    margin-bottom: 35px;
}
.footer-accordion-header .accordion-icon {
    display: none; /* Hide icon on desktop */
}
.footer-accordion-content {
    display: block; /* Always show content on desktop */
}

/* =========================
   Responsive Design
========================= */

@media (max-width: 1200px) {
    .hero-content h1 { font-size: 60px; }
    .split-layout { gap: 50px; }
}

@media (max-width: 991px) {
    .nav-menu { display: none; }
    .split-layout { grid-template-columns: 1fr; gap: 60px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    :root { --section-padding: 80px; }
    .hero-content h1 { font-size: 42px; }
    .section-header h2 { font-size: 36px; }
    .services-grid { grid-template-columns: 1fr; }
}

/* =========================
   Admin Layout & Sidebar
========================= */

.admin-body {
    background-color: #f1f5f9;
}

.admin-dashboard {
    display: flex;
    min-height: 100vh;
    padding: 0 !important;
}

.admin-sidebar {
    width: 280px;
    background: #020617; /* Darker, premium sleek black/navy */
    color: #ffffff;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
    z-index: 100;
    box-shadow: 4px 0 24px rgba(0,0,0,0.15);
}

.sidebar-header {
    padding: 30px 25px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.sidebar-header .logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 1.5px;
}

.sidebar-nav {
    flex: 1;
    padding: 25px 15px;
    overflow-y: auto;
}

.sidebar-nav::-webkit-scrollbar {
    width: 6px;
}
.sidebar-nav::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.sidebar-nav ul li {
    margin-bottom: 8px;
}

.sidebar-nav ul li a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.sidebar-nav ul li a i {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.sidebar-nav ul li a:hover,
.sidebar-nav ul li a.active {
    background: rgba(255,255,255,0.08);
    color: var(--accent-cyan);
    transform: translateX(4px);
}

.nav-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 20px 0;
}

.logout-link {
    color: rgba(255,77,77,0.7) !important;
}

.logout-link:hover {
    color: #ff4d4d !important;
    background: rgba(255,77,77,0.1) !important;
}

/* =========================
   Admin Main Content
========================= */

.admin-main {
    flex: 1;
    padding: 40px 50px;
    background: #f4f7f9; /* Slightly darker to make white cards pop */
    overflow-x: hidden;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    background: #fff;
    padding: 25px 35px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
}

.admin-header h1 {
    font-size: 28px;
    margin-bottom: 8px;
    color: #0f172a;
    font-weight: 800;
}

.admin-header p {
    color: #475569;
    font-size: 15px;
    font-weight: 500;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
}

.admin-main .btn {
    padding: 12px 24px;
    font-size: 14px;
    border-radius: 8px;
}

/* =========================
   Dashboard Cards (Premium)
========================= */

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0,0,0,0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 0; right: 0; width: 100px; height: 100px;
    background: radial-gradient(circle, rgba(111, 209, 215, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-cyan);
}

.card-icon {
    width: 65px;
    height: 65px;
    background: #f0fdfa;
    color: #0d9488;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 26px;
    box-shadow: 0 8px 16px rgba(13, 148, 136, 0.15);
}

.icon-cyan { background: #e0fcfc; color: #00b8b8; box-shadow: 0 8px 16px rgba(0, 184, 184, 0.15); }
.icon-blue { background: #eff6ff; color: #3b82f6; box-shadow: 0 8px 16px rgba(59, 130, 246, 0.15); }

.card-info h3 {
    font-size: 13px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    font-weight: 700;
}

.card-info h2 {
    font-size: 34px;
    color: #0f172a;
    margin: 0;
    font-weight: 900;
    line-height: 1;
}

/* =========================
   Panel Cards
========================= */

.admin-panel-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0,0,0,0.02);
    position: relative;
    color: #1e293b;
    transition: box-shadow 0.3s ease;
}

.admin-panel-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.admin-panel-card h3 {
    font-size: 18px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e2e8f0;
    font-weight: 800;
    color: #0f172a;
}

.quick-actions-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    background: #f8fafc;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    color: #1e293b;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #e2e8f0;
}

.action-item:hover {
    background: #ffffff;
    color: var(--accent-cyan);
    transform: translateX(5px);
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 20px rgba(111, 209, 215, 0.1);
}

.status-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #475569;
    font-size: 15px;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 8px;
}

.badge {
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }

/* =========================
   Tables (Premium)
========================= */

.table-wrapper {
    background: #ffffff;
    border-radius: 12px;
    overflow-x: auto; /* Fixed responsive tables */
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid #e2e8f0;
    margin-bottom: 20px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.admin-table th {
    background: #f8fafc;
    padding: 18px 24px;
    text-align: left;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #475569;
    border-bottom: 2px solid #e2e8f0;
    font-weight: 800;
}

.admin-table td {
    padding: 18px 24px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 15px;
    color: #0f172a;
    font-weight: 500;
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.admin-table tr {
    transition: background-color 0.2s ease;
}

.admin-table tr:hover td {
    background: #f0fdfa; /* subtle cyan hover */
}

/* =========================
   Responsive Admin
========================= */

/* =========================
   Admin Login
========================= */

.admin-login {
    width: 100%;
    min-height: 100vh;
    background: #020617; /* Sleek dark background for login */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.login-box {
    width: 100%;
    max-width: 480px;
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255,255,255,0.1);
}

.login-box h2 {
    text-align: center;
    margin-bottom: 35px;
    font-size: 28px;
    color: #0f172a;
    font-weight: 800;
}

.login-error {
    background: #fef2f2;
    color: #991b1b;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 25px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    border: 1px solid #fecaca;
}

.admin-login .form-group {
    margin-bottom: 24px;
}

.admin-login input {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
    font-family: inherit;
    font-size: 16px;
    color: #0f172a;
    font-weight: 500;
    outline: none;
    transition: all 0.3s ease;
}

.admin-login input:focus {
    border-color: var(--accent-cyan);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(111, 209, 215, 0.15);
}

.admin-login .primary-btn {
    width: 100%;
    margin-top: 15px;
    padding: 18px;
    font-size: 16px;
    border-radius: 12px;
    letter-spacing: 1px;
}

/* =========================
   Admin Forms (General)
========================= */

.admin-form-group, .gallery-upload-box {
    margin-bottom: 25px;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.admin-form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1e293b;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-form-group input,
.admin-form-group select,
.admin-form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    color: #0f172a;
    font-weight: 500;
    outline: none;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.admin-form-group input:focus,
.admin-form-group textarea:focus,
.admin-form-group select:focus {
    border-color: var(--accent-cyan);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(111, 209, 215, 0.15);
}

@media (max-width: 1024px) {
    .admin-dashboard { flex-direction: column; }
    .admin-sidebar { 
        width: 100%; 
        height: auto; 
        position: relative; 
        box-shadow: 0 4px 20px rgba(0,0,0,0.1); 
    }
    .sidebar-header { 
        padding: 20px 25px; 
        display: flex; 
        justify-content: space-between; 
        align-items: center; 
    }
    .sidebar-nav { padding: 15px 25px; }
    .sidebar-nav ul { 
        display: flex; 
        flex-wrap: nowrap; 
        gap: 15px; 
        overflow-x: auto; 
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }
    .sidebar-nav ul::-webkit-scrollbar { height: 6px; }
    .sidebar-nav ul::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 10px; }
    .sidebar-nav ul li { margin-bottom: 0; flex-shrink: 0; }
    .sidebar-nav ul li a { padding: 10px 16px; white-space: nowrap; }
    
    .admin-main { padding: 25px 20px; }
    .admin-header { padding: 20px; flex-direction: column; align-items: flex-start; gap: 15px; }
    .dashboard-grid { grid-template-columns: 1fr; gap: 20px; }
    .stat-card { padding: 20px; }
    .admin-content-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
}
/* =========================
   Full Width Banner (Premium)
 ========================= */

.full-width-banner {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0 !important;
}

.banner-image-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    transition: transform 10s linear;
}

.full-width-banner:hover .banner-image-box img {
    transform: scale(1.1);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(8, 44, 78, 0.9) 0%, rgba(8, 44, 78, 0.2) 100%);
    z-index: 2;
}

.banner-content-fluid {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 0 10%;
    color: var(--bg-white);
}

.banner-content-fluid h2 {
    font-size: 64px;
    color: var(--bg-white);
    font-weight: 800;
    margin-bottom: 20px;
    max-width: 800px;
    line-height: 1;
}

.banner-content-fluid p {
    font-size: 20px;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin-bottom: 40px;
}

@media (max-width: 991px) {
    .banner-content-fluid h2 { font-size: 42px; }
    .full-width-banner { height: 400px; }
}

/* =========================
   Refined Hero Aesthetic (Inspired by Ref)
 ========================= */

.hero-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-content h1 {
    font-size: 78px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-content h1 span {
    color: var(--accent-cyan);
}

.hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 550px;
}

.btn-rounded {
    border-radius: 50px !important;
}

.btn-whatsapp {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.btn-whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    background: var(--accent-cyan);
    width: 30px;
    border-radius: 5px;
}

.swiper-pagination {
    bottom: 40px !important;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, var(--accent-cyan), #007c95);
    color: #fff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    font-size: 40px;
    box-shadow: 0 10px 25px rgba(111, 209, 215, 0.4);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    text-decoration: none;
}

.whatsapp-float i {
    min-width: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-text {
    max-width: 0;
    opacity: 0;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 800;
    font-family: var(--font-primary);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: white;
}

.whatsapp-float:hover {
    width: 190px;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(111, 209, 215, 0.6);
}

.whatsapp-float:hover .whatsapp-text {
    max-width: 150px;
    opacity: 1;
    padding-right: 25px;
}


/* Ensure pagination dots are visible on top of everything */
.hero .swiper-pagination {
    z-index: 20 !important;
}


/* =========================
   Hero Intro Section
 ========================= */

.hero-intro {
    background: var(--bg-white);
    padding: 100px 0;
    text-align: center;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-content h1 {
    font-size: 54px;
    color: var(--primary-blue);
    margin-bottom: 25px;
    font-weight: 800;
}

.intro-content h1 span {
    color: var(--accent-cyan);
}

.intro-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Custom Swiper Arrows */
.hero .swiper-button-next,
.hero .swiper-button-prev {
    color: var(--bg-white);
    transition: var(--transition);
}

.hero .swiper-button-next:hover,
.hero .swiper-button-prev:hover {
    color: var(--accent-cyan);
    transform: scale(1.1);
}


/* =========================
   Glass Card System (Premium)
 ========================= */

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 30px;
    transition: var(--transition);
}


.glass-card h3 {
    color: var(--accent-cyan);
    margin-bottom: 15px;
    font-size: 24px;
}

.glass-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
}

/* Page Banner Slim */
.page-banner-slim {
    padding: 100px 0 60px;
    background: #093c5d;
    position: relative;
    overflow: hidden;
}

.page-banner-slim .banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.4;
}

.page-banner-slim .banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-banner-slim .container {
    position: relative;
    z-index: 2;
}


/* =========================
   Tracking Dashboard (Compact)
 ========================= */

.tracking-dashboard {
    margin-top: -50px;
    position: relative;
    z-index: 100;
}

.dashboard-inner {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
}

.dashboard-form {
    flex: 1;
    display: flex;
    gap: 15px;
    align-items: center;
}

.dashboard-form .form-group {
    flex: 1;
    position: relative;
}

.dashboard-form label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    color: var(--accent-cyan);
    margin-bottom: 5px;
    font-weight: 700;
    letter-spacing: 1px;
}

.dashboard-form input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 15px;
    border-radius: 6px;
    color: white;
    font-size: 14px;
    transition: var(--transition);
}

.dashboard-form input:focus {
    border-color: var(--accent-cyan);
    background: rgba(255, 255, 255, 0.1);
}

.dashboard-actions {
    display: flex;
    gap: 10px;
}

/* Reduce general spacing */
:root {
    --section-padding: 80px; /* Reduced from 120px */
}

.hero-intro {
    padding: 80px 0 60px;
}

.intro-content h1 {
    font-size: 54px; /* Reduced for better screen space use */
}

/* =========================
   Hero Overlapping Cards Layout
========================= */
.hero-dark-glass {
    background: #020617; /* Deep Navy Background */
}

.hero-beams {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 100px,
        rgba(76, 201, 240, 0.05) 100px,
        rgba(76, 201, 240, 0.05) 101px
    );
    z-index: 1;
    pointer-events: none;
}

.hero-overlap-complex {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 30px;
    margin-top: 50px;
    margin-bottom: -150px;
    z-index: 10;
    width: 100%;
}

.hc-complex-side {
    width: 320px;
    height: auto;
    min-height: 250px;
    border-radius: 24px;
    padding: 30px;
    text-align: left;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.hc-complex-center {
    width: 380px;
    height: 440px;
    border-radius: 24px;
    padding: 35px 30px;
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    z-index: 2;
}

.hc-white-solid {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
}

.hc-dark-glass {
    background: linear-gradient(135deg, rgba(4, 11, 22, 0.6) 0%, rgba(4, 11, 22, 0.3) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 0 40px rgba(76, 201, 240, 0.2), inset 0 0 20px rgba(255,255,255,0.05);
}

.hc-top-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.hc-avatar-badge {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 8px 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    border: 1px solid rgba(0,0,0,0.05);
    z-index: 5;
}

@media (max-width: 991px) {
    .hero-overlap-complex {
        flex-direction: column;
        align-items: center;
        margin-bottom: 0;
        margin-top: 20px;
        gap: 18px;
    }
    
    .hc-complex-side, .hc-complex-center {
        width: 100%;
        max-width: 400px;
        height: auto;
    }
    
    .hc-avatar-badge {
        right: 10px;
        bottom: 10px;
    }

    .services .image {
        height: 260px;
    }

    .services .massive-title {
        left: 24px;
        bottom: 28px;
        max-width: calc(100% - 48px);
        font-size: clamp(28px, 7.5vw, 54px);
        letter-spacing: 1px;
    }

    .services .massive-arrow {
        left: 24px;
        bottom: 96px;
        width: 54px;
        height: 54px;
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .hero-overlap-complex {
        overflow-x: clip;
    }

    .hc-complex-side,
    .hc-complex-center {
        max-width: 100%;
        padding: 22px 18px;
        border-radius: 18px;
    }

    .hc-avatar-badge {
        position: static;
        margin-top: 14px;
        width: 100%;
        justify-content: center;
    }

    .services .image {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .services .massive-title {
        font-size: clamp(22px, 8.5vw, 34px);
        line-height: 1.05;
    }

    .services .massive-arrow {
        bottom: 82px;
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}

/* =========================
   Partner Cards Layout
========================= */
.partner-card {
    position: relative;
    padding: 40px 30px;
    border-radius: 20px;
    background: var(--bg-light-gray);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: var(--shadow-soft);
    text-align: left;
    overflow: hidden;
}

.pc-bg-icon {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 140px;
    color: rgba(20, 27, 227, 0.02);
    z-index: 0;
}

.pc-content {
    position: relative;
    z-index: 1;
}

.pc-icon-wrap {
    width: 60px;
    height: 60px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent-cyan);
    margin-bottom: 25px;
}

.pc-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark-blue);
    margin-bottom: 15px;
}

.pc-desc {
    font-size: 15px;
    color: var(--text-main);
    line-height: 1.6;
}

@keyframes floatAnimation {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Locomotive Scroll compatibility */
html.has-scroll-smooth {
    overflow: hidden;
}
html.has-scroll-smooth body {
    overflow: hidden;
}

.c-scrollbar {
    width: 10px;
    right: 2px;
    opacity: 1;
}

.c-scrollbar_thumb {
    background: rgba(76, 201, 240, 0.85);
    border-radius: 12px;
}


