/* ============================================
   KEYUR GROUP - Modern Premium Website
   Swiper.js + AOS + Glassmorphism Design
   ============================================ */

/* CSS Variables */
:root {
    /* Primary Colors */
    --primary-color: #0a1628;
    --primary-light: #1a2d4d;
    --primary-dark: #050d18;

    /* Accent Colors */
    --accent-color: #ff5e14;
    --accent-light: #ff7a3d;
    --accent-dark: #e54d0a;
    --accent-gradient: linear-gradient(135deg, #ff5e14 0%, #ff8a4c 100%);

    /* Secondary */
    --secondary-color: #00c4f4;
    --secondary-light: #33d4ff;
    --secondary-dark: #00a3cc;

    /* Text Colors */
    --text-dark: #1a1a2e;
    --text-body: #555555;
    --text-light: #777777;
    --text-muted: #999999;

    /* Background Colors */
    --bg-dark: #0a1628;
    --bg-light: #f5f7fa;
    --bg-white: #ffffff;
    --bg-grey: #f8f9fa;

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);

    /* Border & Shadow */
    --border-color: #e8e8e8;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 30px 60px rgba(0, 0, 0, 0.15);
    --shadow-accent: 0 10px 40px rgba(255, 94, 20, 0.3);
    --shadow-glow: 0 0 30px rgba(255, 94, 20, 0.15);

    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 50px;
}

/* ============================================
   PRELOADER
   ============================================ */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

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

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 94, 20, 0.15);
    border-top-color: var(--accent-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 1.5rem;
}

.preloader-text {
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.preloader-text span {
    color: var(--accent-color);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--accent-gradient);
    z-index: 10000;
    transition: width 0.1s linear;
}

/* ============================================
   BACK TO TOP
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-accent);
}

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

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 94, 20, 0.4);
}

/* ============================================
   RESET & BASE
   ============================================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) var(--bg-light);
}

html::-webkit-scrollbar {
    width: 8px;
}

html::-webkit-scrollbar-track {
    background: var(--bg-light);
}

html::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

ul, ol {
    list-style: none;
}

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

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.75rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.375rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-body);
}

/* Container */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================
   BUTTONS - Modern Glassmorphism Style
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 1rem 2.25rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
}

.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;
    z-index: -1;
}

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

.btn i {
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(5px);
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 5px 25px rgba(255, 94, 20, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(255, 94, 20, 0.45);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
}

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

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    backdrop-filter: blur(10px);
}

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

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

.btn-white:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-sm {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1.125rem 2.75rem;
    font-size: 1rem;
}

/* ============================================
   TOP BAR
   ============================================ */

.top-bar {
    background: var(--primary-dark);
    color: white;
    padding: 0.625rem 0;
    font-size: 0.8125rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 1001;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8125rem;
}

.top-bar-item i {
    color: var(--accent-color);
    font-size: 0.75rem;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-links {
    display: flex;
    gap: 0.375rem;
}

.social-links a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

/* ============================================
   MAIN HEADER - Sticky with Glassmorphism
   ============================================ */

.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.main-header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.98);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.375rem;
    box-shadow: 0 4px 15px rgba(255, 94, 20, 0.3);
    position: relative;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.125rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.75rem 1rem;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    font-size: 0.9375rem;
}

.nav-link i.fa-chevron-down {
    font-size: 0.5625rem;
    transition: transform 0.3s ease;
}

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

.nav-link.active {
    background: rgba(255, 94, 20, 0.06);
}

.dropdown:hover .nav-link i.fa-chevron-down {
    transform: rotate(180deg);
}

/* Dropdown Menu - Glassmorphism */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    z-index: 100;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

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

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    font-size: 0.9375rem;
}

.dropdown-item:hover {
    background: rgba(255, 94, 20, 0.06);
    color: var(--accent-color);
    padding-left: 1.25rem;
}

/* Menu Toggle - Animated Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    background: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION - Swiper Powered
   ============================================ */

.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section .swiper {
    width: 100%;
    height: 100%;
}

.hero-section .swiper-slide {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.hero-slide-1 .hero-slide-bg {
    /* Dark gradient overlay on top of warehouse photo */
    background:
        linear-gradient(135deg, rgba(10, 22, 40, 0.82) 0%, rgba(15, 45, 77, 0.72) 50%, rgba(5, 13, 24, 0.88) 100%),
        url('../images/home-slider-1.jpg') center / cover no-repeat;
}

.hero-slide-2 .hero-slide-bg {
    /* Dark gradient overlay on top of logistics/clearance photo */
    background:
        linear-gradient(135deg, rgba(15, 45, 77, 0.85) 0%, rgba(22, 42, 69, 0.76) 50%, rgba(5, 13, 24, 0.88) 100%),
        url('../images/home-slider-2.jpg') center / cover no-repeat;
}

.hero-slide-3 .hero-slide-bg {
    /* Dark gradient overlay on top of cold-chain photo */
    background:
        linear-gradient(135deg, rgba(26, 58, 92, 0.84) 0%, rgba(13, 34, 64, 0.76) 50%, rgba(10, 22, 40, 0.88) 100%),
        url('../images/home-slider-3.jpg') center / cover no-repeat;
}

/* Decorative elements inside hero */
.hero-slide-bg::before {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 94, 20, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.hero-slide-bg::after {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(0, 196, 244, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

/* Floating shapes in hero */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.hero-shape-1 {
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    top: 10%;
    right: 10%;
    animation: heroFloat1 8s ease-in-out infinite;
}

.hero-shape-2 {
    width: 200px;
    height: 200px;
    background: var(--secondary-color);
    bottom: 15%;
    right: 25%;
    animation: heroFloat2 10s ease-in-out infinite;
}

.hero-shape-3 {
    width: 150px;
    height: 150px;
    background: var(--accent-color);
    top: 40%;
    right: 5%;
    animation: heroFloat3 12s ease-in-out infinite;
}

.hero-shape-4 {
    width: 80px;
    height: 80px;
    border: 2px solid rgba(255, 94, 20, 0.2);
    top: 20%;
    right: 30%;
    animation: heroFloat1 15s ease-in-out infinite reverse;
    background: transparent;
}

.hero-shape-5 {
    width: 120px;
    height: 120px;
    border: 2px solid rgba(0, 196, 244, 0.15);
    bottom: 30%;
    left: 60%;
    animation: heroFloat2 13s ease-in-out infinite reverse;
    background: transparent;
}

@keyframes heroFloat1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

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

@keyframes heroFloat3 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(20px, -30px); }
    50% { transform: translate(-10px, -50px); }
    75% { transform: translate(-30px, -20px); }
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 0 1.5rem;
    max-width: 1320px;
    margin: 0 auto;
}

.hero-text {
    max-width: 700px;
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.125rem;
    background: rgba(255, 94, 20, 0.12);
    border: 1px solid rgba(255, 94, 20, 0.25);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--accent-light);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    font-size: 0.875rem;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.25rem;
    line-height: 1.12;
    letter-spacing: -1.5px;
}

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

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--accent-color);
    opacity: 0.25;
    border-radius: 3px;
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.25rem;
    line-height: 1.8;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Swiper Hero Controls */
.hero-section .swiper-pagination {
    bottom: 2.5rem !important;
}

.hero-section .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    transition: var(--transition);
    border-radius: 6px;
}

.hero-section .swiper-pagination-bullet-active {
    background: var(--accent-color);
    width: 36px;
}

.hero-section .swiper-button-prev,
.hero-section .swiper-button-next {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.hero-section .swiper-button-prev::after,
.hero-section .swiper-button-next::after {
    font-size: 1.125rem;
    font-weight: 700;
}

.hero-section .swiper-button-prev:hover,
.hero-section .swiper-button-next:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: scale(1.1);
}

/* ============================================
   SECTION STYLES - Modern Premium
   ============================================ */

.section {
    padding: 6.25rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4375rem 1.125rem;
    background: linear-gradient(135deg, rgba(255, 94, 20, 0.08) 0%, rgba(255, 94, 20, 0.03) 100%);
    border: 1px solid rgba(255, 94, 20, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.section-description {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.8;
}

.section-bg {
    background: var(--bg-light);
}

.section-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff5e14' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

/* ============================================
   EXPERIENCE / STATS SECTION
   ============================================ */

.experience-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 6.25rem 0;
    position: relative;
    overflow: hidden;
}

.experience-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 94, 20, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

.experience-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.experience-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.0625rem;
    margin-bottom: 2rem;
}

.experience-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.experience-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.experience-item i {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-top: 0.125rem;
}

.experience-item span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
    border-color: rgba(255, 94, 20, 0.2);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 25px rgba(255, 94, 20, 0.25);
}

.stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.375rem;
    letter-spacing: -1px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.875rem;
    font-weight: 500;
}

/* ============================================
   FACILITY CARDS - Glassmorphism Hover
   ============================================ */

.facility-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.facility-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.facility-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.facility-card > * {
    position: relative;
    z-index: 1;
}

.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 94, 20, 0.2);
    border-color: transparent;
}

.facility-card:hover::after {
    opacity: 1;
}

.facility-card:hover .facility-icon {
    background: white;
    color: var(--accent-color);
}

.facility-card:hover h3,
.facility-card:hover p {
    color: white;
}

.facility-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(255, 94, 20, 0.08) 0%, rgba(255, 94, 20, 0.03) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    color: var(--accent-color);
    transition: var(--transition);
}

.facility-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.facility-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: 0;
    line-height: 1.7;
    transition: color 0.3s ease;
}

/* ============================================
   PROCESS / HOW IT WORKS - Modern Timeline
   ============================================ */

.process-section {
    background: var(--bg-light);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 15%;
    right: 15%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    z-index: 0;
    border-radius: 2px;
    opacity: 0.3;
}

.process-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-number {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.75rem;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--accent-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: var(--transition);
    border: 4px solid var(--bg-light);
}

.process-card:hover .process-number {
    color: white;
    background: var(--accent-gradient);
    transform: scale(1.1);
    box-shadow: var(--shadow-accent);
}

.process-card h4 {
    font-size: 1.1875rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.process-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* ============================================
   SERVICES SECTION - Modern Card Design
   ============================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.service-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.service-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.service-image::before {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 94, 20, 0.25) 0%, transparent 50%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-image::before {
    transform: translate(-20%, -20%);
}

.service-image i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

.service-card:hover .service-image i {
    color: rgba(255, 255, 255, 0.35);
    transform: scale(1.15) rotate(-5deg);
}

.service-content {
    padding: 1.75rem;
}

.service-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-content p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-link i {
    transition: transform 0.3s ease;
    font-size: 0.75rem;
}

.service-link:hover {
    gap: 0.75rem;
}

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

/* ============================================
   PERKS / FEATURES - Glass Card Style
   ============================================ */

.perks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.perk-card {
    text-align: center;
    padding: 2.75rem 2rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.perk-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--accent-gradient);
    transition: width 0.4s ease;
    border-radius: 2px;
}

.perk-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.perk-card:hover::before {
    width: 60%;
}

.perk-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(255, 94, 20, 0.08) 0%, rgba(255, 94, 20, 0.03) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.25rem;
    color: var(--accent-color);
    transition: var(--transition);
    position: relative;
}

.perk-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 94, 20, 0.2);
    transition: transform 0.6s ease;
}

.perk-card:hover .perk-icon {
    background: var(--accent-gradient);
    color: white;
    transform: scale(1.05);
}

.perk-card:hover .perk-icon::before {
    transform: rotate(180deg);
    border-color: rgba(255, 94, 20, 0.4);
}

.perk-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.875rem;
}

.perk-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: 0;
    line-height: 1.7;
}

/* ============================================
   TESTIMONIALS - Swiper Slider
   ============================================ */

.testimonials-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 6.25rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 94, 20, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-section .section-header {
    color: white;
}

.testimonials-section .section-title {
    color: white;
}

.testimonials-section .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.testimonials-section .swiper {
    padding-bottom: 3.5rem;
    /* overflow: visible was causing off-centre layout — use hidden with a clip wrapper instead */
    overflow: hidden;
}

/* Ensure all swiper slides stretch to the same height so cards are uniform */
.testimonials-section .swiper-wrapper {
    align-items: stretch;
}

.testimonials-section .swiper-slide {
    display: flex;
    height: auto; /* Let flexbox determine height, not Swiper's inline style */
}

.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    /* Flex column so testimonial-text can grow to fill remaining space */
    display: flex;
    flex-direction: column;
    flex: 1; /* stretch to fill the slide height */
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-text {
    color: var(--text-body);
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
    flex: 1; /* push .testimonial-author to the bottom of every card */
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 0.125rem;
}

.author-info p {
    font-size: 0.8125rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Testimonial Swiper pagination */
.testimonials-section .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    width: 10px;
    height: 10px;
    transition: var(--transition);
}

.testimonials-section .swiper-pagination-bullet-active {
    background: var(--accent-color);
    width: 30px;
    border-radius: 5px;
}

/* ============================================
   CTA SECTION - Gradient Modern
   ============================================ */

.cta-section {
    background: var(--accent-gradient);
    padding: 4.5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 50%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 40%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-text h2 {
    color: white;
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.0625rem;
    margin-bottom: 0;
}

/* ============================================
   FOOTER - Modern Dark
   ============================================ */

.footer {
    background: var(--primary-dark);
    color: white;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.footer-main {
    padding: 5rem 0 3rem;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-about .logo {
    margin-bottom: 1.5rem;
}

.footer-about .logo-text {
    color: white;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 0.9375rem;
}

.footer-social {
    display: flex;
    gap: 0.625rem;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-title {
    font-size: 1.125rem;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.875rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
}

.footer-links a i {
    font-size: 0.5625rem;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 0.375rem;
}

.footer-links a:hover i {
    transform: translateX(3px);
}

.footer-contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.footer-contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.footer-contact-item p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
    line-height: 1.7;
    font-size: 0.9375rem;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.5rem 0;
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0;
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

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

/* ============================================
   PAGE HEADER - Modern with Particles
   ============================================ */

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 6.5rem 0 4.5rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 94, 20, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 196, 244, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.page-header h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    color: rgba(255, 255, 255, 0.65);
    position: relative;
    z-index: 1;
    font-size: 0.9375rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.65);
    transition: var(--transition);
}

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

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

.breadcrumb i {
    font-size: 0.5625rem;
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

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

.about-image {
    position: relative;
}

.about-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image-main:hover img {
    transform: scale(1.05);
}

.about-image-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--accent-gradient);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-accent);
}

.about-image-badge .number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.about-image-badge span {
    font-size: 0.875rem;
    font-weight: 500;
}

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

.about-text p {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

.achievement-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

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

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

.achievement-item h4 {
    font-size: 1rem;
    margin-bottom: 0.375rem;
}

.achievement-item p {
    font-size: 0.875rem;
    margin-bottom: 0;
    color: var(--text-light);
}

/* Core Strengths */
.strengths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.strength-card {
    text-align: center;
    padding: 2.75rem 2rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.strength-card:hover {
    border-bottom-color: var(--accent-color);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.strength-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.strength-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.875rem;
}

.strength-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: 0;
    line-height: 1.7;
}

/* ============================================
   HISTORY - TIMELINE
   ============================================ */

.timeline {
    position: relative;
    max-width: 950px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-color), var(--secondary-color));
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    max-width: 420px;
    margin-right: 3rem;
    position: relative;
    transition: var(--transition);
}

.timeline-content:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 0;
    margin-left: 3rem;
}

.timeline-year {
    display: inline-block;
    background: var(--accent-gradient);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    margin-bottom: 0.875rem;
    font-size: 0.875rem;
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.timeline-content p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: 0;
    line-height: 1.7;
}

.timeline-dot {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    z-index: 1;
}

/* Founders Section */
.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.founder-card {
    display: flex;
    gap: 1.75rem;
    background: white;
    padding: 2.25rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.founder-image {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    flex-shrink: 0;
}

.founder-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.375rem;
}

.founder-role {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
    font-size: 0.875rem;
}

.founder-info p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: 0;
    line-height: 1.7;
}

/* ============================================
   FAQ PAGE
   ============================================ */

.faq-container {
    max-width: 950px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.875rem;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-category-title i {
    color: var(--accent-color);
}

.faq-item {
    background: white;
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    gap: 1rem;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.faq-question i {
    color: var(--accent-color);
    transition: transform 0.3s ease;
    font-size: 0.8125rem;
    flex-shrink: 0;
}

.faq-item.active .faq-question {
    background: var(--primary-color);
}

.faq-item.active .faq-question h4 {
    color: white;
}

.faq-item.active .faq-question i {
    color: white;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-content {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    line-height: 1.8;
}

.faq-answer-content p {
    margin-bottom: 0;
}

.faq-item.active .faq-answer {
    max-height: 600px;
}

/* ============================================
   SERVICES DETAIL PAGE
   ============================================ */

.service-detail-section {
    padding: 6.25rem 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.service-detail-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.service-process {
    margin-top: 3rem;
}

.service-process h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.process-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-number {
    width: 55px;
    height: 55px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(255, 94, 20, 0.25);
}

.step-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.9375rem;
}

/* Service Sidebar */
.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.sidebar-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.sidebar-services {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-services a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.125rem;
    background: white;
    border-radius: var(--radius-sm);
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.9375rem;
}

.sidebar-services a i {
    transition: transform 0.3s ease;
}

.sidebar-services a:hover,
.sidebar-services a.active {
    background: var(--primary-color);
    color: white;
}

.sidebar-services a:hover i,
.sidebar-services a.active i {
    transform: translateX(3px);
}

.sidebar-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    text-align: center;
}

.sidebar-cta h3 {
    color: white;
}

.sidebar-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

/* Advantages List */
.advantages-list {
    display: grid;
    gap: 0.875rem;
    margin-top: 2rem;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 1.125rem;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.advantage-item:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.advantage-item i {
    color: #10b981;
    font-size: 1.25rem;
    margin-top: 0.125rem;
}

.advantage-item span {
    color: var(--text-dark);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Service FAQs */
.service-faqs {
    margin-top: 3.5rem;
    padding-top: 3.5rem;
    border-top: 1px solid var(--border-color);
}

.service-faqs h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-section {
    padding: 6.25rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    padding: 3rem;
    border-radius: var(--radius-xl);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -20%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 94, 20, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.contact-info h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.contact-info > p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.contact-item {
    display: flex;
    gap: 1rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.contact-item-text h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-item-text p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    font-size: 0.9375rem;
}

.contact-item-text a {
    color: rgba(255, 255, 255, 0.7);
}

.contact-item-text a:hover {
    color: var(--accent-color);
}

.contact-social {
    position: relative;
    z-index: 1;
}

.contact-social h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.contact-social-links {
    display: flex;
    gap: 0.625rem;
}

.contact-social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.7);
}

.contact-social-links a:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.contact-form-wrapper h2 {
    font-size: 1.875rem;
    margin-bottom: 0.5rem;
}

.contact-form-wrapper > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.125rem;
    border: 2px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    transition: var(--transition);
    font-family: inherit;
    background: var(--bg-grey);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 94, 20, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* Map Section */
.map-section {
    padding: 0;
    height: 400px;
    background: var(--bg-light);
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e2e8f0 100%);
}

.map-placeholder-content {
    text-align: center;
}

.map-placeholder-content i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.map-placeholder-content h3 {
    font-size: 1.375rem;
    margin-bottom: 0.375rem;
}

.map-placeholder-content p {
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

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

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

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

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }

    .hero-title {
        font-size: 3.25rem;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .hero-title {
        font-size: 2.75rem;
    }

    .hero-section .swiper-slide {
        min-height: 600px;
    }

    .experience-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .facility-grid,
    .services-grid,
    .perks-grid,
    .strengths-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .process-grid::before {
        display: none;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .founders-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        position: static;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav .btn {
        display: none;
    }

    .hero-section .swiper-button-prev,
    .hero-section .swiper-button-next {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }

    .section {
        padding: 4rem 0;
    }

    .hero-section .swiper-slide {
        min-height: 550px;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-title span::after {
        display: none;
    }

    .hero-description {
        font-size: 1rem;
    }

    .top-bar-left {
        display: none;
    }

    .facility-grid,
    .services-grid,
    .perks-grid,
    .process-grid,
    .strengths-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .page-header {
        padding: 5rem 0 3rem;
    }

    .page-header h1 {
        font-size: 2.25rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 70px;
        padding-right: 0;
        justify-content: flex-start;
    }

    .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }

    .timeline-dot {
        left: 20px;
    }

    .founder-card {
        flex-direction: column;
        text-align: center;
    }

    .founder-image {
        margin: 0 auto;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .about-image-badge {
        position: static;
        margin-top: 1.5rem;
    }

    .hero-shapes {
        display: none;
    }

    .section-header {
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .contact-form-wrapper {
        padding: 1.75rem;
    }

    .contact-info {
        padding: 2rem;
    }

    .section-title {
        font-size: 1.625rem;
    }
}

/* Mobile Navigation */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        box-shadow: var(--shadow-xl);
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
        display: flex;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 1rem;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 1rem;
        display: none;
        border: none;
        background: var(--bg-light);
        border-radius: var(--radius-sm);
        margin-top: 0.5rem;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        backdrop-filter: blur(5px);
    }

    .nav-overlay.active {
        display: block;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.py-1 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.py-3 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }

.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

/* ============================================
   MODERNIZATION LAYER
   Noise grain · Ambient orbs · Progress bar
   preloader · Glassmorphism · Micro-interactions
   ============================================ */

/* ------------------------------------------
   1. BODY NOISE GRAIN TEXTURE
   Adds a very subtle film-grain feel over the
   entire page. pointer-events: none so it never
   blocks clicks.
------------------------------------------ */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    /* SVG fractalNoise renders as grain in all browsers */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    opacity: 0.045;
    pointer-events: none;
    z-index: 9998; /* sits over all content but never blocks input */
    mix-blend-mode: overlay;
}

/* ------------------------------------------
   2. AMBIENT FLOATING ORB LAYER
   Injected into DOM via main.js. Seven blurred
   circles drift slowly across the viewport.
   Kept below all real content (z-index: 0).
------------------------------------------ */
.ambient-layer {
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    will-change: transform; /* GPU compositing for smoother animation */
}

/* Orange glow — top-left anchor */
.orb-1 {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(255, 94, 20, 0.28) 0%, transparent 70%);
    top: -8%;
    left: -8%;
    opacity: 0.18;
    animation: floatOrb 22s ease-in-out infinite;
}

/* Cyan glow — right edge, upper third */
.orb-2 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(0, 196, 244, 0.22) 0%, transparent 70%);
    top: 15%;
    right: -4%;
    opacity: 0.15;
    animation: floatOrb 27s ease-in-out infinite reverse;
    animation-delay: -6s;
}

/* Warm orange — lower-left */
.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 94, 20, 0.22) 0%, transparent 70%);
    bottom: 18%;
    left: 6%;
    opacity: 0.16;
    animation: floatOrb 24s ease-in-out infinite;
    animation-delay: -11s;
}

/* Cyan glow — bottom-right */
.orb-4 {
    width: 440px;
    height: 440px;
    background: radial-gradient(circle, rgba(0, 196, 244, 0.16) 0%, transparent 70%);
    bottom: -8%;
    right: 8%;
    opacity: 0.13;
    animation: floatOrb 32s ease-in-out infinite reverse;
    animation-delay: -18s;
}

/* Small warm accent — centre-ish */
.orb-5 {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 138, 76, 0.28) 0%, transparent 70%);
    top: 48%;
    left: 38%;
    opacity: 0.14;
    animation: floatOrb 19s ease-in-out infinite;
    animation-delay: -8s;
}

/* Soft orange — lower-centre-right */
.orb-6 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 94, 20, 0.16) 0%, transparent 70%);
    top: 68%;
    right: 28%;
    opacity: 0.12;
    animation: floatOrb 26s ease-in-out infinite reverse;
    animation-delay: -14s;
}

/* Cyan accent — mid-right */
.orb-7 {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(0, 163, 204, 0.22) 0%, transparent 70%);
    top: 32%;
    left: 68%;
    opacity: 0.15;
    animation: floatOrb 30s ease-in-out infinite;
    animation-delay: -4s;
}

@keyframes floatOrb {
    0%,  100% { transform: translate(0, 0) scale(1); }
    25%        { transform: translate(50px, -70px) scale(1.06); }
    50%        { transform: translate(-35px, -90px) scale(0.94); }
    75%        { transform: translate(-65px, -25px) scale(1.09); }
}

/* ------------------------------------------
   3. ENHANCED PRELOADER
   Progress bar + glowing ring + tagline
------------------------------------------ */

/* Glow ring around the icon */
.preloader-glow-ring {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(255, 94, 20, 0.35);
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1);   opacity: 0.6; box-shadow: 0 0 0   0 rgba(255, 94, 20, 0); }
    50%       { transform: scale(1.12); opacity: 1;   box-shadow: 0 0 25px 6px rgba(255, 94, 20, 0.25); }
}

/* Tagline below the brand name */
.preloader-tagline {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.6875rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 0.375rem;
    margin-bottom: 2rem;
}

/* Progress bar track */
.preloader-progress-wrapper {
    width: 220px;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

/* Progress bar fill — width driven by JS */
.preloader-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    border-radius: 2px;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 94, 20, 0.6);
}

/* Radial glow behind the preloader centre */
.preloader::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 94, 20, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

/* ------------------------------------------
   4. SCROLL-REVEAL UTILITY
   Applied via IntersectionObserver in main.js
------------------------------------------ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Stagger delays for child elements (assigned in JS) */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ------------------------------------------
   5. ENHANCED BUTTON SHIMMER
   Upgrades the existing shimmer to a wider,
   more visible sweep using ::after instead
   of ::before (which the base styles already use).
------------------------------------------ */
.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.28) 50%,
        transparent 100%
    );
    transform: skewX(-20deg);
    transition: left 0.55s ease;
    z-index: 2;
    pointer-events: none;
}

.btn:hover::after {
    left: 160%;
}

/* ------------------------------------------
   6. CARD GLOW HOVER (facility, service, perk)
   translateY + accent glow shadow on hover
------------------------------------------ */
.facility-card:hover,
.service-card:hover,
.perk-card:hover {
    box-shadow:
        0 20px 50px rgba(255, 94, 20, 0.18),
        0  0   0  1px rgba(255, 94, 20, 0.12);
}

/* ------------------------------------------
   7. LINK DRAW-IN UNDERLINE
   Underline animates in from left on hover
   for footer links and nav links.
------------------------------------------ */
.footer-links a,
.nav-link {
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

/* ------------------------------------------
   8. GLASSMORPHISM — NAVBAR & STAT CARDS
   More pronounced blur + border on scrolled header
------------------------------------------ */
.main-header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

/* Glassmorphism on stat cards (already dark bg) */
.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ------------------------------------------
   9. SECTION RADIAL GLOW SPOTS
   Subtle warm glow behind key sections
------------------------------------------ */

/* Behind the facility section */
.section:not(.section-bg)::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 50%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 94, 20, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Behind process section */
.process-section::before {
    content: '';
    position: absolute;
    top: -15%;
    left: -5%;
    width: 40%;
    height: 70%;
    background: radial-gradient(circle, rgba(0, 196, 244, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* ------------------------------------------
   10. HERO SLIDE PARALLAX FEEL
   Ken-Burns subtle zoom on active slide bg
------------------------------------------ */
.swiper-slide-active .hero-slide-bg {
    animation: heroZoom 8s ease-out forwards;
}

@keyframes heroZoom {
    from { transform: scale(1.05); }
    to   { transform: scale(1); }
}
