/* ===================================
   ROOT VARIABLES & CORE DESING
   =================================== */

:root {
    /* Premium Color Palette */
    --primary-color: #006abc;
    --primary-dark: #001f84;
    --primary-light: #edf1f4;
    --secondary-color: #7fb72e;
    --accent-gold: #ffcc00;
    --accent-green: #2a9d8f;

    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #f0e1cf;
    --medium-gray: #6c757d;
    --dark-gray: #4d4d4d;
    --black: #1a1a1a;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #006abc 0%, #001f84 100%);
    --gradient-secondary: linear-gradient(135deg, #7fb72e 0%, rgb(130, 148, 8) 100%);
    --gradient-tertiary: linear-gradient(135deg, #006abc 0%, #7fb72e 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4a261 100%);

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);

    /* Typography */
    --font-primary: 'Manrope', sans-serif;
    --font-secondary: 'Cormorant Garamond', serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

section[id] {
    scroll-margin-top: 100px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    width: 100%;
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.3;
    color: var(--black);
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--medium-gray);
}

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

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

/* TOP BAR */
.top-bar {
    background: var(--primary-dark);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar a {
    color: var(--white);
    font-weight: 600;
    transition: var(--transition-fast);
}

.top-bar a:hover {
    color: var(--secondary-color);
}

.top-bar-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.top-bar-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-item i {
    color: var(--secondary-color);
}

.separator {
    color: rgba(255, 255, 255, 0.3);
}

/* NAVIGATION BAR */
.navbar {
    position: fixed;
    top: 38px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all var(--transition-normal);
    border-bottom: 1px solid rgba(0, 106, 188, 0.1);
}

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

.nav-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0.75rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 1.2rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    text-decoration: none;
}

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

.logo i {
    color: var(--secondary-color);
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
    animation: logoFloat 3s ease-in-out infinite;
}

.logo-img {
    height: 50px;
    object-fit: contain;
}


@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

.logo:hover i {
    transform: rotate(15deg) scale(1.1);
    transition: var(--transition-normal);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-mobile-contact {
    display: none;
}

.nav-link {
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 0.75rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    position: relative;
    letter-spacing: 0.3px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    transition: width var(--transition-normal);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
    background: var(--primary-light);
}

.nav-link:hover::before {
    width: 70%;
}

.nav-link.active {
    color: var(--white);
    background: var(--gradient-primary);
    box-shadow: 0 4px 12px rgba(0, 106, 188, 0.3);
}

.nav-link.active::before {
    display: none;
}

.nav-cta-btn {
    border: 2px solid #82c341;
    background: transparent;
    color: #82c341 !important;
    border-radius: 50px;
    padding: 0.5rem 1.25rem !important;
    font-weight: 700;
    transition: all var(--transition-normal);
}

.nav-cta-btn:hover {
    background: #82c341;
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(130, 195, 65, 0.3);
}

.nav-cta-btn i {
    color: #82c341;
    transition: color var(--transition-normal);
}

.nav-cta-btn:hover i {
    color: var(--white) !important;
}

.nav-cta-btn::before {
    display: none !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    cursor: pointer;
    padding: 0.75rem;
    background: rgba(0, 106, 188, 0.05);
    border-radius: var(--radius-md);
    border: 2px solid rgba(0, 106, 188, 0.1);
    transition: var(--transition-normal);
}

.menu-toggle:hover {
    background: rgba(0, 106, 188, 0.1);
    border-color: rgba(0, 106, 188, 0.2);
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: var(--dark-gray);
    border-radius: 3px;
    transition: all var(--transition-normal);
}

.menu-toggle:hover span {
    background: var(--primary-color);
}

/* ===================================
   HERO SLIDER SECTION
   =================================== */

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 0s 1s;
    z-index: 1;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    pointer-events: auto;
    transition: opacity 1s ease-in-out;
}

.hero-slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    transition: transform 8s ease-out;
}

.hero-slide.active .hero-slide-image {
    transform: scale(1);
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(26, 26, 26, 0.8) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 2rem;
}

.hero-slide-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
    font-family: var(--font-secondary);
}

.hero-slide.active .hero-slide-title {
    animation: slideInUp 0.8s ease-out forwards;
}

.hero-slide-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
}

.hero-slide.active .hero-slide-subtitle {
    animation: slideInUp 0.8s ease-out 0.2s forwards;
}

.hero-slide-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    border: 1px solid var(--white);
    transition: all 0.4s ease;
    opacity: 0;
}

.hero-slide.active .hero-slide-btn {
    animation: slideInUp 0.8s ease-out 0.4s forwards;
}

.hero-slide-btn:hover {
    background: var(--white);
    color: var(--black);
}

.hero-slide-btn span.arrow {
    font-size: 1.2rem;
    font-weight: 300;
    transition: transform 0.4s ease;
}

.hero-slide-btn:hover span.arrow {
    transform: translateX(5px);
}

/* Slider Navigation */
.hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
    pointer-events: none;
}

.hero-slider-prev,
.hero-slider-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(0, 106, 188, 0.4);
}

/* Slider Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-slider-dot.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    width: 40px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 106, 188, 0.5);
}

.hero-slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

@keyframes slideInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* SECTIONS & CONTAINER */
.section {
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow-x: hidden;
}

.section-alt {
    background-color: var(--off-white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark-gray);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--off-white);
    border: 2px dashed var(--secondary-color);
    border-radius: 50px;
}

.section-subtitle img {
    height: 24px;
}

.section-subtitle i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 800px;
}

/* ABOUT SECTION */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.course-page .section-title {
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    background: var(--gradient-tertiary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-primary);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

/* Modern Pill Subtitle Badge */
.badge-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 106, 188, 0.06);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(0, 106, 188, 0.08);
    align-self: flex-start;
}

.badge-subtitle i {
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.about-lead {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--black);
    line-height: 1.5;
    margin-bottom: 1.2rem;
    border-left: 3px solid var(--secondary-color);
    padding-left: 14px;
    font-family: var(--font-primary);
}

/* 2x2 Features Grid */
.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.feature-card-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--off-white);
    border: 1px solid rgba(0, 106, 188, 0.04);
    border-radius: var(--radius-md);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.feature-icon-box {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, rgba(0, 106, 188, 0.06), rgba(127, 183, 46, 0.06));
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.feature-text {
    flex: 1;
}

.feature-text h4 {
    font-size: 1.05rem;
    color: var(--black);
    font-weight: 700;
    margin: 0 0 4px 0;
    line-height: 1.3;
    font-family: var(--font-primary);
}

.feature-text p {
    font-size: 0.85rem;
    color: var(--medium-gray);
    margin: 0;
    line-height: 1.4;
}

/* Hover Animations */
.feature-card-item:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 106, 188, 0.15);
    background: var(--white);
    box-shadow: 0 12px 30px rgba(0, 106, 188, 0.06);
}

.feature-card-item:hover .feature-icon-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    transform: rotate(8deg);
}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    margin-top: 1rem;
    background: transparent;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    border: 1px solid var(--primary-color);
    transition: all 0.4s ease;
}

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

.about-btn span.arrow {
    font-size: 1.2rem;
    font-weight: 300;
    transition: transform 0.4s ease;
}

.about-btn:hover span.arrow {
    transform: translateX(5px);
}

.about-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* Creative & Modern layered elements:
   1. Offset geometric frame + soft gradient card behind the image (::before)
   2. Modern dot grid matrix pattern behind the image (::after)
   On hover, these elements expand/translate in opposite directions, creating a dynamic 3D depth effect.
*/
.about-visual::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 25px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(135deg, rgba(0, 106, 188, 0.08) 0%, rgba(127, 183, 46, 0.08) 100%);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-lg);
    z-index: 1;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-visual::after {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(var(--secondary-color) 2px, transparent 2px);
    background-size: 16px 16px;
    z-index: 1;
    opacity: 0.35;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Hover effects for the decorative background elements */
.about-visual:hover::before {
    transform: translate(5px, 5px);
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(0, 106, 188, 0.12) 0%, rgba(127, 183, 46, 0.12) 100%);
}

.about-visual:hover::after {
    transform: translate(-12px, -12px);
    opacity: 0.55;
}

/* Image wrappers styling (both home/about pages and services pages) */
.about-image-wrapper,
.product-image-showcase {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 106, 188, 0.08);
    z-index: 2;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-main-image,
.product-showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Hover effects for image container and images */
.about-visual:hover .about-image-wrapper,
.about-visual:hover .product-image-showcase {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 106, 188, 0.16);
}

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

/* Trust Points Strip */
.trust-strip-wrapper {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    width: 100%;
    padding: 2rem 0;
    background: transparent;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: 3rem;
}

.trust-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 0 1.5rem;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.trust-item:last-child {
    border-right: none;
}

.trust-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    opacity: 0.9;
}

.trust-text h4 {
    font-size: 1.15rem;
    margin: 0 0 5px;
    font-family: var(--font-primary);
    color: var(--black);
    text-transform: capitalize;
    font-weight: 600;
}

.trust-text p {
    font-size: 0.95rem;
    margin: 0;
    color: var(--medium-gray);
    font-family: var(--font-primary);
    line-height: 1.2;
}

/* Mission & Vision Section */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin: 0 auto;
}

.mv-card {
    display: flex;
    align-items: flex-start;
    gap: 1.75rem;
    padding: 3rem 2.5rem;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(0, 106, 188, 0.06);
    box-shadow: 0 15px 40px rgba(0, 106, 188, 0.03);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mv-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 106, 188, 0.15);
    box-shadow: 0 30px 60px rgba(0, 106, 188, 0.1);
}

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

.mv-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 106, 188, 0.04);
    border-radius: 16px;
    color: var(--primary-color);
    font-size: 1.8rem;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mv-card:hover .mv-icon {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 106, 188, 0.25);
}

.mv-title {
    font-size: 1.4rem;
    font-weight: 800;
    font-family: var(--font-primary);
    color: var(--black);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.mv-card:hover .mv-title {
    color: var(--primary-color);
}

.mv-desc {
    font-size: 1rem;
    color: var(--dark-gray);
    line-height: 1.7;
    margin: 0;
}

/* Objectives & Values */
.objectives-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

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

.objective-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.objective-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.objective-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.objective-card-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.objective-card:hover .objective-card-icon {
    background: var(--primary-color);
    color: var(--white);
}

.objective-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin: 0;
    font-family: var(--font-primary);
}

.objective-card-desc {
    font-size: 0.95rem;
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
}

.objectives-content-block {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.objectives-block-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    font-family: var(--font-primary);
    background: var(--gradient-tertiary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.objectives-points-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.objectives-points-list li {
    position: relative;
    padding-left: 2rem;
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--dark-gray);
}

.objectives-points-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.95rem;
}

/* How it Works Section (Dark Theme Redesign) */
.section-dark {
    background: radial-gradient(circle at 50% -20%, #0c2040 0%, #07090e 100%);
    color: var(--white);
    position: relative;
    z-index: 1;
}

/* Modern High-Tech Grid Overlay */
.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
    pointer-events: none;
    opacity: 0.7;
}

.section-dark .section-title {
    color: var(--white);
    background: none;
    -webkit-text-fill-color: initial;
}

.section-dark .section-description {
    color: rgba(255, 255, 255, 0.6);
}

/* Dark Mode Pill Subtitle override */
.section-dark .badge-subtitle-centered {
    background: rgba(0, 106, 188, 0.15);
    color: #55b2ff;
    border-color: rgba(0, 106, 188, 0.3);
}

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

/* Modern Dashboard-Style Process Card */
.process-item {
    position: relative;
    padding: 2.25rem 1.75rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    text-align: left;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.process-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.process-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.process-icon-wrapper {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--secondary-color);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.process-item:hover .process-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-color: transparent;
    transform: scale(1.05) rotate(8deg);
}

.process-step-num {
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 800;
    color: #55b2ff;
    background: rgba(0, 106, 188, 0.15);
    padding: 4px 12px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(0, 106, 188, 0.25);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.process-item:hover .process-step-num {
    background: var(--secondary-color);
    color: var(--black);
    border-color: transparent;
}

.process-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--white) !important;
    font-family: var(--font-primary);
}

.process-desc {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}



/* B2B Clients Section */
.client-logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

.client-logo-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    /* Prevents logos from touching card edges and looking cropped */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: default;
}

.client-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.client-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* Prevents any cropping; displays full logo/image in native aspect-ratio */
    transition: transform 0.5s ease;
}

.client-logo-card:hover .client-logo-img {
    transform: scale(1.05);
}

/* ===================================
   PRODUCTS SHOWCASE SECTION
   =================================== */

.products-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.showcase-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    text-decoration: none;
    transition: transform 0.4s ease;
}

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

.showcase-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
    z-index: 1;
}

.showcase-card:hover .showcase-bg {
    transform: scale(1.08);
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}

.showcase-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
}

.showcase-content h3 {
    color: var(--white);
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
    font-family: var(--font-primary);
    letter-spacing: -0.5px;
}

.showcase-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.6rem;
    background: transparent;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 50px;
    border: 1px solid var(--white);
    transition: all 0.3s ease;
}

.showcase-btn-yellow {
    border-color: #FFB300;
    color: #FFB300;
}

.showcase-card:hover .showcase-btn {
    background: var(--white);
    color: var(--black);
    transform: translateX(5px);
}

.showcase-card:hover .showcase-btn-yellow {
    background: #FFB300;
    color: var(--black);
}

/* ===================================
   WHY CHOOSE US SECTION
   =================================== */

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

.text-center .section-description {
    text-align: center;
}

/* Centered Badge Subtitle */
.badge-subtitle-centered {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(0, 106, 188, 0.06);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(0, 106, 188, 0.08);
    margin-left: auto;
    margin-right: auto;
}

.badge-subtitle-centered i {
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

/* Modern Card Layout */
.why-card {
    position: relative;
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 106, 188, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: left;
    overflow: hidden;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 106, 188, 0.08);
    border-color: rgba(0, 106, 188, 0.12);
}

/* Large Watermark Number */
.why-card::before {
    content: attr(data-number);
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.04;
    font-family: var(--font-primary);
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.why-card:hover::before {
    opacity: 0.1;
    transform: translateY(-5px);
    color: var(--secondary-color);
}

/* Top Border Slide Accent */
.why-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.why-card:hover::after {
    width: 100%;
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 106, 188, 0.06), rgba(127, 183, 46, 0.06));
    border: none;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1.75rem 0;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.why-card:hover .why-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: scale(1.05) rotate(8deg);
}

.why-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.why-card:hover .why-icon i {
    color: var(--white);
}

.why-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.75rem;
    font-family: var(--font-primary);
}

.why-card p {
    font-size: 0.95rem;
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
}

/* ===================================
   FUNFACT SECTION
   =================================== */

.funfact-section {
    padding: 100px 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.funfact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.funfact-content {
    color: var(--white);
}

.funfact-section .section-title-wrapper {
    margin-bottom: 1.5rem;
}

.funfact-section .section-title-wrapper .subtitle {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.funfact-section .section-title-wrapper .section-title-main {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
}

.funfact-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.funfact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.funfact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

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

.funfact-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 204, 0, 0.3);
    box-shadow: 0 20px 50px rgba(255, 204, 0, 0.15);
}

.funfact-icon {
    margin-bottom: 1.5rem;
    display: inline-block;
}

.funfact-icon i {
    font-size: 3rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 10px rgba(255, 204, 0, 0.3));
}

.funfact-card:hover .funfact-icon i {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 15px rgba(255, 179, 0, 0.6));
}

.funfact-counter {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin: 0 0 1rem 0;
    font-family: var(--font-primary);
}

.funfact-counter .animate-number {
    display: inline-block;
}

.funfact-title-wrapper {
    margin-top: 0.5rem;
}

.funfact-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.4;
}


/* ===================================
   MOVING TEXT SECTION
   =================================== */

.moving-text-section {
    padding: 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.moving-text-wrapper {
    padding: 0;
    margin: 0;
}

.tm-marquee-parent {
    overflow: hidden;
    width: 100%;
    padding: 25px 0;
}

.tm-marquee-repeater {
    position: relative;
    --tm-marquee-animation-duration: 40s;
    --gap: 0px;
    display: flex;
    user-select: none;
    gap: var(--gap);
}

.tm-marquee-repeater .tm-marquee-group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: var(--gap);
    min-width: 100%;
    animation: scroll var(--tm-marquee-animation-duration) linear infinite;
}

.tm-marquee-repeater .text {
    position: relative;
    color: var(--white);
    font-size: 24px;
    line-height: 1.3;
    padding: 0 30px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-weight: 600;
    font-family: var(--font-primary);
    gap: 15px;
}

.tm-marquee-repeater .text i {
    font-size: 20px;
    color: var(--white);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% - var(--gap)));
    }
}


/* ===================================
   TESTIMONIALS SECTION
   =================================== */

.testimonials-wrapper {
    position: relative;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-track {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 50px 60px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.testimonial-card:hover {
    border-color: var(--black);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.quote-icon {
    margin-bottom: 20px;
}

.quote-icon i {
    font-size: 60px;
    color: var(--black);
    opacity: 0.1;
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 25px;
}

.star-rating i {
    font-size: 20px;
    color: var(--accent-gold);
}

.testimonial-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 30px;
    font-style: italic;
    font-family: var(--font-primary);
}

.testimonial-author {
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.author-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--black);
    margin: 0 0 8px 0;
}

.author-position {
    font-size: 14px;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent;
    color: var(--black);
    border: 1px solid var(--black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-3px);
}

.slider-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background: var(--black);
    width: 16px;
    height: 16px;
}

.slider-dots .dot:hover {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* ===================================
   CTA SECTION
   =================================== */

.cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: var(--off-white);
}

.cta-wrapper {
    position: relative;
    background: linear-gradient(135deg, #07162c 0%, #030a15 100%);
    border: 1px solid rgba(0, 106, 188, 0.15);
    padding: 80px;
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.cta-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(127, 183, 46, 0.15) 0%, rgba(0, 106, 188, 0.15) 50%, transparent 70%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    text-align: left;
}

.cta-badge {
    display: inline-block;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    background: transparent;
    padding: 0;
    border: none;
}

.cta-title {
    color: var(--white);
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    font-family: var(--font-primary);
}

.cta-title .title-line-1,
.cta-title .title-line-2 {
    display: block;
    color: var(--white);
}

.cta-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

.cta-action {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-button-wrapper {
    display: block;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    border: 2px solid var(--primary-color);
}

.cta-btn:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.cta-btn span.arrow {
    font-size: 1.2rem;
    transition: transform 0.4s ease;
}

.cta-btn:hover span.arrow {
    transform: translateX(5px);
}

.cta-btn.cta-btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn.cta-btn-outline:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* ===================================
   FOOTER SECTION
   =================================== */

.footer-modern {
    position: relative;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1419 100%);
    color: var(--white);
    overflow: hidden;
}

.footer-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.footer-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(15, 132, 205, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.footer-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.6;
}

.footer-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: inline-block;
    width: fit-content;
}

.footer-logo-img {
    height: 70px;
    object-fit: contain;
    background: var(--white);
    padding: 0.75rem;
    border-radius: var(--radius-md);
    border: 3px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal);
}

.footer-logo-img:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), 0 4px 8px rgba(0, 0, 0, 0.15), 0 4px 20px rgba(0, 106, 188, 0.3);
    border-color: var(--primary-color);
    border-width: 4px;
}

.footer-logo a {
    text-decoration: none;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

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


.footer-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin: 0;
}


.footer-links-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

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

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-menu li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
}

.footer-menu li a i {
    font-size: 0.7rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.footer-menu li a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-menu li a:hover i {
    color: var(--white);
    transform: translateX(3px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 106, 188, 0.1);
    border: 1px solid rgba(0, 106, 188, 0.2);
    border-radius: 10px;
    color: var(--primary-color);
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.footer-contact li:hover .contact-icon {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.contact-details a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 1.5;
}

.contact-details a:hover {
    color: var(--white);
    transform: translateX(3px);
}

.footer-bottom {
    margin-top: 3rem;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin-bottom: 2rem;
}

.footer-copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-bottom: 1rem;
    text-align: center;
}

.footer-copyright p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-copyright p span {
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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



/* Footer Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* REVEAL ON SCROLL */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

/* --- CONTACT PAGE CSS --- */
.page-hero {
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-image: url('assets/banner/banner3.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 200px 0 120px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(17, 17, 17, 0.80) 50%, rgba(10, 10, 10, 0.9) 100%),
        radial-gradient(circle at 20% 30%, rgba(255, 167, 38, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 167, 38, 0.15) 0%, transparent 50%);
    z-index: 0;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    font-weight: 800;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    backdrop-filter: blur(15px);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(127, 183, 46, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.breadcrumb-nav:hover {
    background: rgba(127, 183, 46, 0.1);
    transform: translateY(-2px);
    border-color: rgba(127, 183, 46, 0.4);
}

.breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: var(--secondary-color);
}

.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.breadcrumb-current {
    color: var(--secondary-color);
    font-weight: 600;
}

.contact-wrapper {
    margin-top: 3rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.contact-info-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-info-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 106, 188, 0.15);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-card-icon {
    transform: scale(1.1);
}

.contact-card-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-info-card h4 {
    font-size: 1.1rem;
    color: var(--black);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.contact-info-card p {
    font-size: 0.95rem;
    color: var(--dark-gray);
    margin: 0;
    line-height: 1.6;
}

.contact-info-card a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.contact-info-card a:hover {
    color: var(--black);
}


.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-form-header h3 {
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.contact-form-header p {
    font-size: 1rem;
    color: var(--dark-gray);
    margin: 0;
}

.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    position: relative;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--black);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-primary);
    background: #fafafa;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 106, 188, 0.1);
    background: var(--white);
}

.form-group.error .form-control {
    border-color: #e74c3c;
}

.error-message {
    display: none;
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.form-group.error .error-message {
    display: block;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    margin-top: 1rem;
}

.btn-submit {
    width: 100%;
    padding: 1.25rem 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 106, 188, 0.3);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 106, 188, 0.4);
    background: var(--black);
    color: var(--white);
}

.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit .btn-loader {
    display: none;
}

.btn-submit.loading .btn-loader {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.form-message {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 8px;
    display: none;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.form-message.show {
    display: flex;
}

.form-message i {
    font-size: 2rem;
    flex-shrink: 0;
}

.success-message {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.2);
    color: #27ae60;
}

.error-message-box {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.2);
    color: #c0392b;
}

.form-message-content h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
}

.form-message-content p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* --- UTILITY & CUSTOM CLASSES --- */
.mt-15 {
    margin-top: 15px;
}

.align-start {
    align-self: flex-start;
}

.justify-center {
    justify-content: center;
}

.mx-auto {
    margin: 0 auto;
}

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

.mb-3rem {
    margin-bottom: 3rem;
}

.align-center {
    align-items: center;
}

.rounded-15 {
    border-radius: 15px;
}

.mb-5 {
    margin-bottom: 5px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-2rem {
    margin-bottom: 2rem;
}


.contact-desc-text {
    max-width: 600px;
    margin: 0 auto 50px auto;
    color: var(--medium-gray);
}


.bg-banner-1 {
    background-image: url('assets/banner/banner1.jpg');
}

.bg-banner-2 {
    background-image: url('assets/banner/banner2.webp');
}

.bg-banner-3 {
    background-image: url('assets/banner/banner3.webp');
}

.bg-banner-4 {
    background-image: url('assets/banner/banner3.webp');
}



.feature-list-ul {
    margin-top: 1rem;
    list-style: none;
    padding-left: 0;
}

.feature-list-icon {
    color: var(--primary-color);
    margin-right: 10px;
}

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

.product-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
    margin-bottom: 20px;
}

.product-chip {
    padding: 14px 14px;
    background-color: #f4fde6;
    /* slight tint of primary */
    color: var(--dark-gray);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.mt-15 {
    margin-top: 15px;
}

/* PREMIUM PRODUCT IMAGE SHOWCASE */
.product-image-showcase {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.product-image-showcase img.product-showcase-img {
    width: 100%;
    /* height: 600px; */
    display: block;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-image-showcase:hover img.product-showcase-img {
    transform: scale(1.05);
}

.about-intro-highlight {
    margin-top: 15px;
    margin-bottom: -5px;
    font-weight: 600;
    color: var(--black);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}


/* ===================================
   FEATURE STRIP (TRUST BAR)
   =================================== */
.feature-strip {
    background-color: #d6e8f6;
    padding: 3.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-strip-grid {
    display: flex;
    justify-content: center;
    gap: 1rem;
    text-align: center;
}

.feature-item-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 0.5rem;
}

.feature-strip-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.25rem;
    color: var(--dark-gray);
    transition: transform 0.3s ease, color 0.3s ease;
}

.feature-item-col:hover .feature-strip-icon {
    transform: translateY(-5px);
    color: var(--primary-color);
}

.feature-strip-title {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--black);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    font-family: var(--font-primary);
}

.feature-strip-desc {
    font-size: 0.85rem;
    color: var(--medium-gray);
    line-height: 1.5;
    margin: 0;
    max-width: 250px;
}



/* RESPONSIVE */
@media (max-width: 1024px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .about-visual {
        order: -1;
    }

    .trust-strip-wrapper {
        flex-wrap: wrap;
        gap: 2rem;
        border: none;
        padding: 2rem 1rem;
    }

    .trust-item {
        border-right: none;
        min-width: 240px;
        justify-content: flex-start;
        padding-left: 10%;
    }

    .mv-grid {
        gap: 2rem;
    }

    .mv-card {
        padding: 2rem;
    }

    .objectives-wrapper {
        grid-template-columns: 1fr;
    }

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



    .client-logo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-wrapper {
        padding: 40px 25px;
        border-radius: 30px;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-description {
        font-size: 16px;
    }


}

@media (max-width: 768px) {
    .about-visual::before {
        top: 15px;
        left: 15px;
        right: -10px;
        bottom: -10px;
    }

    .about-visual::after {
        top: -15px;
        left: -15px;
        width: 100px;
        height: 100px;
        background-size: 12px 12px;
    }

    .about-visual:hover::before {
        transform: translate(6px, 6px);
    }

    .about-visual:hover::after {
        transform: translate(-6px, -6px);
    }

    .top-bar {
        display: none;
    }

    .navbar {
        top: 0;
    }

    .feature-strip-grid {
        flex-wrap: wrap;
        gap: 2.5rem 1rem;
    }

    .feature-item-col {
        flex: 1 1 40%;
    }

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

    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .objectives-cards-grid {
        grid-template-columns: 1fr;
    }



    .client-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .page-hero {
        min-height: 400px;
        padding: 160px 0px 90px;
        background-attachment: scroll;
    }

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

    .page-hero-title {
        font-size: 3rem;
        margin-bottom: 1.75rem;
    }

    .breadcrumb-nav {
        padding: 0.875rem 1.75rem;
        gap: 0.75rem;
    }

    .breadcrumb-link,
    .breadcrumb-current {
        font-size: 0.9rem;
    }

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

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .hero-slider {
        height: 90vh;
        min-height: 500px;
    }

    .hero-slide-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1rem;
    }

    .hero-slide-subtitle {
        font-size: clamp(1rem, 3vw, 1.2rem);
        margin-bottom: 2rem;
    }

    .hero-slide-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .hero-slider-nav {
        display: none;
    }

    .hero-slider-prev,
    .hero-slider-next {
        display: none;
    }

    .hero-slider-dots {
        bottom: 20px;
    }

    .showcase-card {
        height: 250px;
        padding: 1.5rem;
        border-radius: 12px;
    }

    .showcase-content h3 {
        font-size: 1.3rem;
    }

    .showcase-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .why-card {
        padding: 2rem 1.5rem;
    }

    .funfact-section {
        padding: 60px 0;
    }

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

    .funfact-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }


    .tm-marquee-parent {
        padding: 15px 0;
    }

    .tm-marquee-repeater .text {
        font-size: 18px;
        padding: 0 20px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-text {
        font-size: 16px;
    }

    .cta-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .cta-content {
        max-width: 100%;
        text-align: center;
    }

    .logo {
        font-size: 1.3rem;
    }

    .logo i {
        font-size: 1.5rem;
    }

    .logo-img {
        height: 45px;
        object-fit: contain;
    }


    .nav-menu {
        position: fixed;
        top: 72px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 72px);
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem 1.5rem;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        transition: var(--transition-normal);
        overflow-y: auto;
        gap: 0.5rem;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-mobile-contact {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .mobile-contact-item {
        display: flex;
        align-items: center;
        gap: 12px;
        color: var(--dark-gray);
        font-size: 0.9rem;
    }

    .mobile-contact-item a {
        color: var(--dark-gray);
        font-weight: 500;
        transition: var(--transition-fast);
    }

    .mobile-contact-item a:hover {
        color: var(--primary-color);
    }

    .mobile-contact-item i {
        color: var(--secondary-color);
        width: 20px;
        text-align: center;
    }

    .nav-item {
        width: 100%;
        border-bottom: none;
    }

    .nav-link {
        width: 100%;
        padding: 1rem 1.25rem;
        justify-content: flex-start;
        border-radius: var(--radius-md);
    }

    .nav-link.active {
        color: var(--white);
        background: var(--gradient-primary);
    }

    .nav-cta-btn {
        justify-content: center;
        margin-top: 0.5rem;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active {
        background: var(--primary-color);
        border-color: var(--primary-color);
    }

    .menu-toggle.active span {
        background: var(--white);
    }

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

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

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

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

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

    .footer-container {
        padding: 3rem 1.5rem 1.5rem;
    }

    .product-slide img {
        height: 400px;
        min-height: 400px;
    }
}

@media (max-width: 480px) {
    .client-logo-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    .footer-top {
        gap: 2.5rem;
    }

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

/* ===================================
   404 ERROR PAGE
   =================================== */
.error-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
}

.error-code {
    font-size: clamp(6rem, 15vw, 10rem);
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0;
    opacity: 0.15;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    font-family: var(--font-primary);
}

.error-content {
    position: relative;
    z-index: 1;
}

.error-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-15px) rotate(10deg);
    }
}

.error-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.container-narrow {
    max-width: 800px;
}

.mt-3rem {
    margin-top: 3rem;
}

.cta-btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

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

.error-actions .cta-btn.cta-btn-outline {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.fade-in {
    animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   WHATSAPP FLOAT BUTTON
   =================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulseWhatsApp 2s infinite;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
}

.whatsapp-float:hover {
    transform: scale(1.05);
    animation: none;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
}

.whatsapp-float i {
    text-decoration: none;
    color: white;
}

@keyframes pulseWhatsApp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ===================================
   CALL FLOAT BUTTON
   =================================== */

.call-float {
    position: fixed;
    bottom: 105px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(0, 106, 188, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.call-float:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(0, 106, 188, 0.6);
}

.call-float i {
    color: white;
}

/* ===================================
   SCROLL TO TOP BUTTON
   =================================== */

.scroll-top {
    position: fixed;
    bottom: 180px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(127, 183, 46, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    background: var(--gradient-primary);
    box-shadow: 0 6px 20px rgba(0, 106, 188, 0.4);
}

.scroll-top i {
    color: white;
}

/* ===================================
   FACILITIES SHOWCASE SECTION
   =================================== */
.facilities-showcase {
    position: relative;
    padding: 0 0 150px 0;
    background: var(--white);
    overflow: hidden;
}

.moving-text-container {
    position: absolute;
    bottom: -65px;
    left: 0;
    width: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.04;
    user-select: none;
}

.moving-text-track {
    display: flex;
    white-space: nowrap;
    animation: moveText 20s linear infinite;
}

.moving-text-track span {
    font-size: 8rem;
    font-family: var(--font-secondary);
    font-weight: 700;
    text-transform: uppercase;
    padding-right: 50px;
}

@keyframes moveText {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.facility-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    z-index: 2;
}

.facility-card-new {
    padding: 2.5rem 2rem;
    text-align: center;
    border-right: 1px solid rgba(0, 106, 188, 0.08);
    transition: background-color 0.3s ease;
}

.facility-card-new:last-child {
    border-right: none;
}

.facility-icon-new {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.facility-card-new:hover .facility-icon-new {
    color: var(--primary-color);
    transform: translateY(-4px) scale(1.05);
    opacity: 1;
}

.facility-card-new h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--black);
    font-weight: 700;
    transition: color 0.3s ease;
}

.facility-card-new:hover h4 {
    color: var(--primary-color);
}

.facility-card-new p {
    font-size: 0.95rem;
    color: var(--medium-gray);
    line-height: 1.65;
}

/* Responsive Overrides for Facilities */
@media (max-width: 1024px) {
    .facility-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .facility-card-new:nth-child(even) {
        border-right: none;
    }

    .facility-card-new {
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .facility-card-new:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .moving-text-track span {
        font-size: 6rem;
    }

    .moving-text-container {
        bottom: -36px;
    }
}

@media (max-width: 768px) {
    .facility-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .facility-card-new {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .facility-card-new:nth-child(even) {
        border-right: none;
    }

    .facility-card-new:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .moving-text-track span {
        font-size: 5rem;
    }

    .facilities-showcase {
        padding: 0 0 100px 0;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .call-float {
        bottom: 85px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .scroll-top {
        bottom: 150px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .facility-grid {
        grid-template-columns: 1fr;
    }

    .facility-card-new {
        border-right: none;
    }

    .facility-card-new:not(:last-child) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .facility-card-new:nth-last-child(2) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }
}


/* --- LEGAL/POLICY PAGES CSS --- */
.legal-section {
    padding: 80px 0;
    background-color: var(--white);
}

.legal-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: var(--spacing-xl) var(--spacing-lg);
    border-top: 5px solid var(--primary-color);
}

.legal-card h2 {
    color: var(--black);
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--primary-light);
    position: relative;
}

.legal-card h2::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gradient-primary);
}

.legal-card h2:first-of-type {
    margin-top: 0;
}

.legal-card h3 {
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-card p {
    font-family: var(--font-primary);
    color: var(--dark-gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.legal-card ul,
.legal-card ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-card li {
    font-family: var(--font-primary);
    color: var(--dark-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.6rem;
}

.legal-card li strong {
    color: var(--black);
}

.legal-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.legal-card a:hover {
    color: var(--secondary-color);
}

.legal-last-updated {
    display: inline-block;
    background-color: var(--primary-light);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .legal-card {
        padding: var(--spacing-lg) var(--spacing-md);
    }
}

/* ===================================
   SERVICES DIRECTORY STYLES
   =================================== */

.services-nav-section {
    background: var(--off-white);
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(0, 106, 188, 0.08);
    position: -webkit-sticky;
    position: sticky;
    top: 110px;
    z-index: 99;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.services-nav-scroll {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.services-nav-scroll::-webkit-scrollbar {
    display: none;
}

.services-nav-scroll a {
    display: inline-block;
    padding: 8px 22px;
    border-radius: 30px;
    background: var(--white);
    border: 1px solid rgba(0, 106, 188, 0.1);
    color: var(--dark-gray);
    font-weight: 700;
    font-size: 0.85rem;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-normal);
}

.services-nav-scroll a:hover,
.services-nav-scroll a.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 106, 188, 0.15);
}

.services-category-section {
    padding: 80px 0;
}

.services-category-section:nth-child(even) {
    background-color: var(--off-white);
}

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

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

.sub-service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 106, 188, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.sub-service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 106, 188, 0.15);
    box-shadow: 0 20px 40px rgba(0, 106, 188, 0.1);
}

.sub-service-img-box {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.sub-service-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.sub-service-card:hover .sub-service-img-box img {
    transform: scale(1.06);
}

.sub-service-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.sub-service-body h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.sub-service-body p {
    font-size: 0.95rem;
    color: var(--medium-gray);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.sub-service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-normal);
    margin-top: auto;
}

.sub-service-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 106, 188, 0.2);
}

@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .services-nav-section {
        top: 72px;
    }

    .services-nav-scroll {
        justify-content: flex-start;
        padding: 5px 10px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-category-section {
        padding: 60px 0;
    }
}