/* ========================================
   رحلة النور للسفر والسياحة
   Rehlat Alnour Travel & Tourism
   Glassmorphism Dark Mode Premium Design
======================================== */

@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800;900&display=swap');

:root {
    /* Dark Mode Colors - رحلة النور */
    --bg-primary: #3b383a;
    /* Keeping base for fallbacks */
    --bg-secondary: #0e6d57;
    --bg-card: #0d3025;
    --primary: #1B7B5A;
    --primary-light: #25a676;
    --primary-dark: #0f5840;
    --accent: #2ecc71;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.9);
    --text-muted: rgba(255, 255, 255, 0.7);

    /* Glassmorphism Variables */
    --glass-bg: rgba(27, 123, 90, 0.08);
    --glass-bg-hover: rgba(27, 123, 90, 0.15);
    --glass-border: rgba(27, 123, 90, 0.2);
    --glass-border-hover: rgba(27, 123, 90, 0.4);
    --glass-blur: blur(20px);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);

    /* Premium Gradients */
    --bg-gradient-primary: linear-gradient(135deg, #2b2829 0%, #3b383a 100%);
    --bg-gradient-secondary: linear-gradient(135deg, #094738 0%, #0e6d57 100%);

    --gradient-primary: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(27, 123, 90, 0.1) 0%, rgba(27, 123, 90, 0.05) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(59, 56, 58, 0.92) 0%, rgba(14, 109, 87, 0.88) 100%);
    --gradient-page: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, var(--bg-primary) 100%);
    --glow-primary: 0 0 50px rgba(27, 123, 90, 0.4);
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

a {
    text-decoration: none !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    /* Enhanced smooth scrolling */
    scroll-padding-top: var(--sticky-height, 80px);
}

body {
    font-family: 'Tajawal', sans-serif;
    direction: rtl;
    background: var(--bg-gradient-primary);
    /* Updated to gradient */
    background-attachment: fixed;
    /* Parallax effect */
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.8;
}

/* Global Heading Style - All White */
h1 span,
h2 span,
h3 span {
    color: #ffffff !important;
    background: none !important;
    -webkit-text-fill-color: #ffffff !important;
    background-clip: initial !important;
}

/* ========== Glass Card Mixin ========== */
.glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-glass);
}

.glass:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
}

/* ========== Scroll Progress Bar - Enhanced ========== */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.scroll-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg,
            var(--primary-dark) 0%,
            var(--primary) 25%,
            var(--primary-light) 50%,
            var(--accent) 75%,
            var(--primary-light) 100%);
    background-size: 200% 100%;
    animation: progressShimmer 2s linear infinite;
    box-shadow:
        0 0 10px var(--primary-light),
        0 0 20px rgba(46, 204, 113, 0.5),
        0 0 30px rgba(27, 123, 90, 0.3);
    transition: width 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 4px 4px 0;
    position: relative;
    overflow: hidden;
}

/* Shine effect on progress bar */
.scroll-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.4) 50%,
            transparent 100%);
    animation: progressShine 2s ease-in-out infinite;
}

@keyframes progressShimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

@keyframes progressShine {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

/* ========== Scrollbar ========== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 10px;
}

/* ========== Text Cursor (Desktop) ========== */
@media (pointer: fine) {
    html,
    body {
        cursor: auto;
        user-select: none;
        -webkit-user-select: none;
    }

    a,
    button,
    input,
    textarea,
    select,
    label,
    .btn,
    .nav-cta {
        cursor: auto;
    }

    input,
    textarea,
    select,
    [contenteditable='true'] {
        user-select: text;
        -webkit-user-select: text;
        caret-color: auto;
    }

    p,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    li,
    blockquote,
    .lead-text,
    .section-title,
    .section-subtitle,
    .service-title-main {
        cursor: text;
        user-select: text;
        -webkit-user-select: text;
    }

}

/* Pointer cursor for interactive elements */
a,
button,
.btn,
.nav-cta,
[role='button'] {
    cursor: pointer;
}



/* ========== Navbar - Glassmorphism ========== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
    display: flex;
    align-items: center;
    min-height: var(--header-height, 100px);
}

.navbar.scrolled {
    background: rgba(59, 56, 58, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    min-height: var(--sticky-height, 80px);
    border-bottom: 1px solid var(--glass-border);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}

.navbar-brand {
    background: #ffffff;
    padding: 8px 15px 18px;
    border-radius: 0 0 40px 40px;
    margin-top: -20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.navbar.scrolled .navbar-brand {
    padding: 5px 12px 15px;
    margin-top: -10px;
}

.navbar-brand img {
    height: 70px !important;
    width: 70px !important;
    max-height: none !important;
    transition: var(--transition);
    object-fit: contain;
    filter: none !important;
    border-radius: 50%;
    background: #ffffff;
    padding: 6px;
    box-sizing: border-box;
}

.navbar.scrolled .navbar-brand img {
    height: 50px !important;
    width: 50px !important;
    filter: none !important;
}

.nav-links {
    display: flex;
    gap: 45px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    position: relative;
    padding: 10px 0;
    transition: var(--transition);
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-links a:hover::before,
.nav-links a.active::before {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-light);
    text-shadow: 0 0 30px rgba(37, 166, 118, 0.5);
}

/* Font Awesome Fixes */
.fab {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400;
}

.fas,
.fa {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900;
}

.far {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 400;
}

/* Glass CTA Button */
.nav-cta {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 1px solid var(--glass-border) !important;
    color: var(--text-primary) !important;
    padding: 12px 30px !important;
    border-radius: 50px;
    font-weight: 700 !important;
    box-shadow: var(--shadow-glass);
    position: relative !important;
    overflow: hidden !important;
    display: inline-block !important;
    /* Ensure overflow: hidden works */
}

.nav-cta:hover {
    background: var(--gradient-primary) !important;
    border-color: var(--primary) !important;
    transform: translateY(-3px);
    box-shadow: var(--glow-primary);
}

/* Shine Effect */
.nav-cta::before {
    content: '' !important;
    display: block !important;
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    transition: 0s;
    pointer-events: none;
}

.nav-cta:hover::before {
    left: 200%;
    transition: 0.6s ease-in-out;
}

.nav-actions {
    display: flex;
    align-items: center;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 14px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-glass);
    transition: var(--transition);
    z-index: 1001;
}

.mobile-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle:hover {
    background: var(--glass-bg);
    border-color: rgba(255, 255, 255, 0.2);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ========== Hero Section ========== */
.hero {
    min-height: 100vh;
    background: url('images/hero-bg.webp') center/cover no-repeat fixed;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(15, 15, 15, 0.9) 50%, rgba(25, 25, 25, 0.85) 100%);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(to top, var(--bg-primary), transparent);
}

/* Animated Grid */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 25s linear infinite;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 60px 60px;
    }
}

/* Glowing Orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: orbFloat 12s ease-in-out infinite;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(60, 60, 60, 0.5);
    top: 5%;
    right: 5%;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(40, 40, 40, 0.5);
    bottom: 10%;
    left: 5%;
    animation-delay: -6s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(40px, -40px) scale(1.15);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 160px 30px 120px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text {
    animation: fadeInUp 1s ease forwards;
}

.hero-text h1 {
    font-size: 3.8rem;
    font-weight: 900;
    margin-bottom: 50px;
    line-height: 1.15;

    /* White Gradient with Shine */
    background: linear-gradient(to right,
            #ffffff 20%,
            #a8a8a8 40%,
            #a8a8a8 60%,
            #ffffff 80%);
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: textShine 3s linear infinite;
}

.hero-text h1 span {
    color: #ffffff;
}

@keyframes textShine {
    to {
        background-position: 200% center;
    }
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 2;
    max-width: 520px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* ========== Buttons - Glassmorphism ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition-bounce);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    transition: 0.5s;
    pointer-events: none;
}

.btn:hover::before {
    left: 150%;
    transition: 0.7s ease-in-out;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: var(--glow-primary);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 60px rgba(27, 123, 90, 0.5);
}

.btn-outline {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.btn-outline:hover {
    background: var(--glass-bg-hover);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--glow-primary);
}

/* Hero Specific Buttons */
.hero-btns .btn-primary {
    /* Keep primary style but maybe add hero specific glow */
    box-shadow: 0 0 30px rgba(27, 123, 90, 0.4);
}

.hero-btns .btn-outline {
    /* Attractive Glass with Low Transparency (More Opaque) */
    background: rgba(255, 255, 255, 0.15);
    /* Slightly more opaque/visible */
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-btns .btn-outline:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* ========== Hero Service Cards - Glass ========== */
.hero-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
}

.hero-service-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 35px 20px;
    text-align: center;
    transition: var(--transition-bounce);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    box-shadow: var(--shadow-glass);
}

.hero-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.hero-service-card:hover {
    background: var(--glass-bg-hover);
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(27, 123, 90, 0.2);
    border-color: var(--glass-border-hover);
}

.hero-service-card i {
    font-size: 45px;
    color: var(--primary-light);
    margin-bottom: 18px;
    display: block;
    transition: var(--transition);
    opacity: 0.8;
}

.hero-service-card:hover i {
    transform: scale(1.15);
    opacity: 1;
    filter: drop-shadow(0 0 25px rgba(37, 166, 118, 0.6));
}

.hero-service-card h3 {
    color: var(--text-primary);
    font-size: 17px;
    font-weight: 700;
    opacity: 0.9;
}

.hero-service-card:hover h3 {
    opacity: 1;
}

/* ========== Section Styles ========== */
/* ========== Section Styles ========== */
.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: var(--bg-gradient-primary);
    /* Gradient background */
}

.section-alt {
    background: var(--bg-gradient-secondary);
    /* Gradient background */
    position: relative;
}

.section-alt::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.03), transparent 60%);
    pointer-events: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.section-header h2 span {
    color: #ffffff;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 25px auto 0;
}

/* ========== About Section - Glass ========== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: auto;
    max-width: 100%;
    max-height: 280px;
    display: block;
    margin: 0 auto;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-glass);
    object-fit: contain;
}

/* Light Stat Card (Years of Experience) */
.stat-item.glass-card.stat-light {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 255, 255, 0.85));
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.stat-item.glass-card.stat-light::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
}

.stat-item.glass-card.stat-light h3 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    font-size: 3.5rem;
}

.stat-item.glass-card.stat-light p {
    color: var(--primary-dark);
    font-weight: 800;
}

.stat-item.glass-card.stat-light .stat-icon-wrapper {
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(27, 123, 90, 0.15);
    color: var(--primary);
    border-color: rgba(27, 123, 90, 0.2);
}

.stat-item.glass-card.stat-light i {
    color: var(--primary);
}

.about-image::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: var(--gradient-primary);
    border-radius: 34px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(25px);
}

.about-badge {
    position: absolute;
    bottom: -25px;
    right: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 255, 250, 0.9));
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(27, 123, 90, 0.3);
    color: var(--primary-dark);
    padding: 25px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.about-badge h3 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-badge span {
    font-size: 14px;
    font-weight: 600;
}

.about-content h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    /* White base */
    margin-bottom: 25px;
}

.about-content h2 span {
    color: #ffffff;
}

.about-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 2;
}

/* About Features - Glass Cards */
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 35px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    /* Increased opacity */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

/* About Button High Contrast Style - White Gradient */
.about-btn {
    background: linear-gradient(135deg, #ffffff, #f0f0f0) !important;
    color: #1a1a1a !important;
    /* Dark text for contrast */
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.5);
    font-weight: 800;
}

.about-btn:hover {
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0) !important;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.25) !important;
}

.about-feature:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.about-feature::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: skewX(-25deg);
    transition: 0.5s;
    pointer-events: none;
}

.about-feature:hover::after {
    left: 200%;
    transition: 0.7s ease-in-out;
}

.about-feature i {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(27, 123, 90, 0.2), rgba(27, 123, 90, 0.1));
    color: var(--primary-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    border: 1px solid rgba(27, 123, 90, 0.2);
    transition: 0.3s;
}

.about-feature:hover i {
    background: var(--gradient-primary);
    color: var(--text-primary);
    transform: rotateY(180deg);
}

.about-feature span {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 15px;
}

/* Values Grid - About Page */
.values-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px !important;
}

@media (max-width: 991px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


/* Service Cards - New Layout */
.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 520px;
    border-radius: 24px;
    overflow: hidden;
    background: var(--glass-bg);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 80%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(27, 123, 90, 0.2);
    border-color: rgba(27, 123, 90, 0.3);
}

/* Service Card Shine Effect */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-25deg);
    transition: 0.5s;
    pointer-events: none;
    z-index: 2;
}

.service-card:hover::after {
    left: 200%;
    transition: 0.7s ease-in-out;
}

.service-card:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    flex-shrink: 0;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card-overlay {
    position: relative;
    inset: auto;
    background: transparent;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-grow: 1;
    z-index: 2;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.service-card-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-card:hover .service-card-overlay {
    background: transparent;
    backdrop-filter: none;
    padding-bottom: 30px;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.4;
    transform: none;
    text-shadow: none;
}

.service-card:hover h3 {
    color: var(--primary-light);
    transform: none;
}

.service-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 1;
    transform: none;
    max-height: none;
    overflow: visible;
    flex-grow: 1;
}

.service-card:hover p {
    transform: none;
    max-height: none;
}

.service-card .btn-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--gradient-primary);
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    opacity: 1;
    transform: none;
    text-decoration: none;
    width: fit-content;
    margin-top: auto;
    box-shadow: 0 4px 15px rgba(27, 123, 90, 0.3);
    border: none;
}

.service-card:hover .btn-link {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 123, 90, 0.5);
}

.service-card .btn-link i {
    transition: transform 0.3s ease;
}

.service-card .btn-link:hover i {
    transform: translateX(-5px);
}

.service-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
}

/* ========== Stats Section - Glass ========== */
/* ========== Stats Section - Glass ========== */
.stats-section.glass-section {
    background: transparent;
    padding: 60px 0 100px;
    position: relative;
    border: none;
}

/* ========== Testimonials Section ========== */
.testimonials-section {
    position: relative;
    overflow: hidden;
}

.testimonials-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    isolation: isolate;
}

/* Professional Gradient Fade Effect with Shadow Integration */
/* Side transparency removed as per request */
.testimonials-wrap {
    overflow: visible;
}

/* Tablet Gradient Adjustments */
@media (min-width: 768px) and (max-width: 1023px) {

    .testimonials-wrap::before,
    .testimonials-wrap::after {
        width: 120px;
    }

    /* Mask removed for clearer sides */
    .testimonials-slider.swiper {
        mask-image: none;
        -webkit-mask-image: none;
    }
}

.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 12% 18%, rgba(27, 123, 90, 0.22), transparent 55%),
        radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.06), transparent 60%),
        radial-gradient(circle at 60% 85%, rgba(27, 123, 90, 0.12), transparent 55%);
    pointer-events: none;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    padding: 30px 0 40px;
    direction: ltr;
    cursor: grab;
    touch-action: pan-y;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonials-slider {
    scrollbar-width: none;
}

.testimonials-slider.is-dragging {
    cursor: grabbing;
}

/* ========== Testimonials - Premium Redesign ========== */
.testimonials-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(7, 26, 20, 0.92), rgba(7, 26, 20, 0.78));
}

.testimonials-slider {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 20px 10px 40px;
    /* Mask component removed */
}

.testimonials-track {
    display: flex;
    width: 100%;
    padding: 0 10px;
    will-change: transform;
    gap: 15px;
}

.testimonials-slider:hover .testimonials-track {
    animation-play-state: running;
}

/* Mobile specific adjustments for testimonials */
/* Mobile specific adjustments for testimonials */
@media (max-width: 768px) {
    .testimonials-section {
        /* display: none !important; Removed to show section */
        display: block !important;
        padding: 60px 0 !important;
    }

    .testimonials-slider {
        padding: 20px 20px 40px !important;
        /* Single slide view with side padding ensures it's centered with breathing room */
        mask-image: none !important;
        -webkit-mask-image: none !important;
    }

    .testimonials-wrap::before,
    .testimonials-wrap::after {
        display: none !important;
        /* Hide side fade gradients on mobile for clean look */
    }

    .testimonials-track {
        /* Revert to default swiper behavior */
        gap: 0 !important;
        padding: 0 !important;
    }

    .testimonial-card {
        padding: 40px 25px !important;
        text-align: center !important;
        /* Force single slide width on mobile with side margins */
        width: calc(100% - 3em) !important;
        max-width: calc(100% - 3em) !important;
        flex: 0 0 calc(100% - 3em) !important;
        margin: 0 1.5em !important;
        /* Ensure styles don't conflict with Swiper functionality */
        box-sizing: border-box !important;
        border-radius: 20px !important;
        /* Restore dark premium background for all cards on mobile */
        background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), #000000) !important;
        border: 1px solid rgba(46, 204, 113, 0.3) !important;
        box-shadow: none !important;
        opacity: 1 !important;
        filter: none !important;
        transform: none !important;
    }

    .testimonial-header {
        margin-bottom: 18px !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .testimonial-card.is-active {
        box-shadow: none !important;
    }

    .testimonial-card:hover {
        box-shadow: none !important;
    }

    .testimonial-text {
        font-size: 0.95rem !important;
        text-align: center !important;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .testimonial-more {
        margin: 0 auto 18px !important;
    }

    .testimonial-stars {
        justify-content: center !important;
    }

    .testimonials-controls {
        display: none !important;
    }


}

.testimonial-card {
    width: 600px;
    max-width: 85vw;
    /* Premium Dark Base */
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), #000000);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(46, 204, 113, 0.2);
    border-radius: 24px;
    padding: 40px;
    color: #fff;
    position: relative;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    direction: rtl;
    opacity: 0.7;
    filter: grayscale(40%);
    /* Reduced grayscale, no blur */
    overflow: hidden;
    transform: scale(0.95);
}

/* Active Premium Glass Gradient - Enhanced Visibility */
.testimonial-card.swiper-slide-active {
    opacity: 1 !important;
    filter: grayscale(0%) !important;
    transform: scale(1) !important;
    /* Stronger Gradient: Distinct Green to Black */
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.2) 0%, rgba(20, 20, 20, 0.95) 50%, #000000 100%) !important;
    border-color: rgba(46, 204, 113, 0.5) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(46, 204, 113, 0.2) !important;
    z-index: 10;
}



/* Professional Moving Shine Animation (Optimized for all devices) */
.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* Full width for better visual */
    height: 100%;
    background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    transform: skewX(-25deg) translateX(-150%);
    /* Start off-screen */
    transition: none;
    pointer-events: none;
    z-index: 15;
    /* Higher z-index to be on top */
    will-change: transform;
    opacity: 0;
    /* Hidden by default */
}

/* Trigger animation on active state */
/* Trigger animation on all cards */
.testimonial-card::after {
    animation: shine-sweep 3.5s infinite ease-in-out;
    opacity: 1;
}

@keyframes shine-sweep {
    0% {
        transform: skewX(-25deg) translateX(-150%);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    40% {
        transform: skewX(-25deg) translateX(150%);
        opacity: 0;
    }

    100% {
        transform: skewX(-25deg) translateX(150%);
        opacity: 0;
    }
}

.testimonial-card:hover {
    cursor: grab;
}

.testimonial-card::before {
    content: '\f10e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 16px;
    right: 16px;
    left: auto;
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.12);
    opacity: 1;
    z-index: 0;
    transition: transform 0.4s ease;
}

.testimonial-card:hover::before {
    transform: translateY(-4px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-direction: column;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(27, 123, 90, 0.85), rgba(10, 46, 35, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.20);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.testimonial-avatar i {
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

.testimonial-header h4 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #f7f7f7;
}

.testimonial-header span {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.testimonial-text {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    margin: 0 0 14px;
    position: relative;
    z-index: 1;
}

.testimonial-more {
    background: rgba(27, 123, 90, 0.18);
    border: 1px solid rgba(27, 123, 90, 0.45);
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.testimonial-more:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    box-shadow: 0 12px 28px rgba(27, 123, 90, 0.35);
    transform: translateY(-1px);
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    color: #f6c55f;
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
}

.testimonials-controls {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
    z-index: 20;
    width: auto;
}

@media (min-width: 1400px) {
    .testimonials-controls {
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
        width: 1300px;
        /* Slightly wider than container to be "in the sides" */
    }
}

.testimonial-nav {
    pointer-events: auto;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    /* Premium Glass Style */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    font-size: 1.2rem;
}

.testimonial-nav:hover {
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 18px 38px rgba(27, 123, 90, 0.28);
}

.testimonial-nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27, 123, 90, 0.55), rgba(27, 123, 90, 0.1));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.testimonial-nav:hover::before {
    opacity: 0.6;
}

.testimonial-nav::after {
    content: '';
    position: absolute;
    top: -60%;
    left: -60%;
    width: 120%;
    height: 120%;
    background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.35), transparent 65%);
    transform: rotate(15deg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-nav:hover::after {
    opacity: 0.7;
}

.testimonial-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 5000;
    visibility: hidden;
    pointer-events: none;
}

.testimonial-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.testimonial-modal-backdrop {
    position: absolute;
    inset: 0;
}

.testimonial-modal-card {
    position: relative;
    width: min(520px, 92vw);
    max-height: 82vh;
    overflow-y: auto;
    transform: translateY(18px) scale(0.98);
    opacity: 0;
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 30px;
    color: #fff;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    direction: rtl;
    text-align: right;
    backdrop-filter: blur(16px);
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.testimonial-modal.active .testimonial-modal-card {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.testimonial-modal-close {
    position: absolute;
    top: 18px;
    left: 18px;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.testimonial-modal-close:hover {
    background: var(--gradient-primary);
}

.testimonial-modal-header {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-direction: row-reverse;
    margin-bottom: 16px;
}

.testimonial-modal-stars {
    display: flex;
    gap: 6px;
    color: #f5c542;
    margin-bottom: 16px;
}

.testimonial-modal-text {
    font-size: 1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

@keyframes testimonialsScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes cardShine {
    0% {
        transform: translateX(-30%) rotate(15deg);
    }

    50% {
        transform: translateX(10%) rotate(15deg);
    }

    100% {
        transform: translateX(50%) rotate(15deg);
    }
}

/* ========== Stats Grid Redesign ========== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: -50px;
    /* Overlap with next section or just pull closer */
    position: relative;
    z-index: 5;
    padding-bottom: 20px;
}

/* Default Dark Stat Card */
.stat-item.glass-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: rgba(30, 30, 30, 0.6);
    /* Darker background */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.stat-item.glass-card:hover {
    transform: translateY(-10px);
    background: rgba(40, 40, 40, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.5s;
    font-size: 2rem;
    color: var(--primary);
    /* Green icon */
}

.stat-item.glass-card i {
    color: var(--primary-light);
}

.stat-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
}

.stat-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    font-weight: 500;
}

/* Special Light Card (Years of Experience) */
/* Special Card (Years of Experience) - Now Dark with Highlight */
.stat-item.glass-card.stat-light {
    background: rgba(30, 30, 30, 0.6);
    /* Match others */
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Match others */
    box-shadow: none;
    /* Reset special shadow */
}

.stat-item.glass-card.stat-light:hover {
    background: rgba(40, 40, 40, 0.8);
    transform: translateY(-10px);
}

.stat-item.glass-card.stat-light .stat-icon-wrapper {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
    color: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item.glass-card.stat-light i {
    color: var(--primary);
}

.stat-item.glass-card.stat-light .stat-content h3 {
    color: #ffffff;
    -webkit-text-fill-color: initial;
    text-shadow: none;
}

.stat-item.glass-card.stat-light .stat-content p {
    color: #ffffff;
    font-weight: 800;
}

/* Remove old leftover logic */
.animate-glass {
    opacity: 0;
    transform: translateY(40px);
    animation: glassFloat 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes glassFloat {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== Stats Section ========== */
.stats-section {
    padding-top: 100px;
    padding-bottom: 80px;
}

/* ========== Contact Section - Glass ========== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 35px;
    overflow: hidden;
    box-shadow: var(--shadow-glass);
    position: relative;
}

.contact-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: skewX(-25deg);
    transition: 0.5s;
    pointer-events: none;
    z-index: 10;
}

.contact-wrapper:hover::after {
    left: 200%;
    transition: 0.8s ease-in-out;
}

.contact-info {
    background: linear-gradient(135deg, rgba(27, 123, 90, 0.9), rgba(18, 140, 126, 0.8));
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 15px;
    position: relative;
}

.contact-info>p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    font-size: 15px;
    line-height: 1.8;
    position: relative;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    position: relative;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(-8px);
}

.contact-item i {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--text-primary);
    transition: var(--transition);
}

.contact-item:hover i {
    background: rgba(255, 255, 255, 0.2);
}

.contact-item span,
.contact-item a {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary-light);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 40px;
    position: relative;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 20px;
    transition: var(--transition-bounce);
}

.social-links a:hover {
    background: var(--text-primary);
    color: var(--primary);
    transform: translateY(-6px);
}

/* Section Layout */
.section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.contact-form {
    padding: 50px;
}

.contact-form h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 14px;
}

.form-group label i {
    margin-left: 8px;
    color: var(--primary-light);
}

/* Glass Form Controls */
.form-control {
    width: 100%;
    padding: 16px 22px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    color: var(--text-primary);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--glass-bg-hover);
    box-shadow: 0 0 0 4px rgba(27, 123, 90, 0.15);
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

/* Custom Dropdown Styling - Premium Glassmorphism */
.custom-dropdown {
    position: relative;
    width: 100%;
    margin-bottom: 5px;
}

.dropdown-selected {
    width: 100%;
    padding: 16px 22px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    font-size: 15px;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    user-select: none;
    position: relative;
    overflow: hidden;
}

.dropdown-selected::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    color: var(--primary-light);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.custom-dropdown.active .dropdown-selected::after {
    transform: rotate(180deg);
}

.custom-dropdown.active .dropdown-selected {
    border-color: var(--primary);
    background: var(--glass-bg-hover);
    box-shadow: 0 0 0 4px rgba(27, 123, 90, 0.15), 0 15px 35px rgba(0, 0, 0, 0.3);
}

.dropdown-options {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    background: rgba(18, 20, 19, 0.96);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.98);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    max-height: 400px;
    overflow-y: auto;
    padding: 10px;
}

.custom-dropdown.active .dropdown-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-option {
    padding: 14px 20px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 12px;
    margin-bottom: 5px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: right;
}

.dropdown-option:last-child {
    margin-bottom: 0;
}

.dropdown-option:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    padding-right: 25px;
}

.dropdown-option.selected {
    background: var(--gradient-primary);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(27, 123, 90, 0.3);
}

.dropdown-options::-webkit-scrollbar {
    width: 5px;
}

.dropdown-options::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.dropdown-options::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* ========== Page Header - Glass ========== */
.page-header {
    background: var(--gradient-page);
    padding: 130px 0 45px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid var(--glass-border);
}

@media (min-width: 769px) {
    .page-has-banner .page-header + .section {
        margin-top: 0 !important;
        padding-top: 3em !important;
    }

    .page-has-banner .page-header + .section > .container > :first-child {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .page-has-banner .service-details-grid .service-info.glass-card {
        padding-top: 0 !important;
    }
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/hero-bg.webp') center/cover;
    opacity: 0.06;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.page-header h1 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.breadcrumb a {
    color: var(--primary-light);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--text-primary);
}

.breadcrumb i {
    color: var(--text-muted);
    font-size: 11px;
}

.breadcrumb span {
    color: var(--text-muted);
}

/* ========== Footer - Glass ========== */
/* ========== Footer - Glass ========== */
.footer {
    background: var(--bg-gradient-secondary);
    /* Updated to gradient */
    padding: 80px 0 0;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--glass-border);
}

.footer-brand img {
    height: 80px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-brand p {
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.9;
    font-size: 14px;
}

.footer-social {
    margin-top: 20px;
}

.footer-social-title {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.footer-social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-social-links a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-social-links a:hover {
    background: var(--gradient-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(27, 123, 90, 0.3);
}

.footer h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-right: 8px;
}

.footer-links li {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    color: #fff;
    font-size: 14px;
    background: var(--bg-gradient-primary);
    /* Updated to gradient */
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========== Animations ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

/* WhatsApp Group CTA */
/* WhatsApp Group CTA - Redesigned Integrated */
/* WhatsApp Group CTA - Redesigned Integrated */
.whatsapp-group-cta {
    padding: 60px 0 100px;
    /* Add top padding to separate */
    position: relative;
    overflow: hidden;
    margin-top: 20px;
    /* Add positive margin for spacing */
}

.whatsapp-group-card {
    background: linear-gradient(135deg, rgba(30, 60, 50, 0.4), rgba(20, 40, 35, 0.6));
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(37, 211, 102, 0.15);
    border-radius: 35px;
    padding: 50px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

/* Green Brand Accent Overlay */
.whatsapp-group-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 50%, rgba(37, 211, 102, 0.08), transparent 50%);
    pointer-events: none;
}

/* Background Glow Effect */
.whatsapp-group-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.1) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
}

.wa-cta-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.wa-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: #fff;
    font-weight: 800;
    letter-spacing: -0.5px;
}
}

.wa-cta-content h2 span {
    background: linear-gradient(to right, #25d366, #128c7e);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wa-cta-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 500px;
}

.wa-cta-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff !important;
    padding: 20px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.3rem;
    transition: var(--transition-bounce);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    text-align: center;
}

.wa-cta-btn:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.wa-cta-btn i {
    font-size: 2rem;
}

@media (max-width: 992px) {
    .whatsapp-group-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 25px;
        border-radius: 30px;
    }

    .wa-cta-content h2 {
        font-size: 2.2rem;
    }

    .wa-cta-content p {
        margin: 0 auto 30px;
    }

    .wa-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .wa-cta-btn {
        flex-direction: column;
        gap: 8px;
        padding: 20px 30px;
        font-size: 0.95rem;
    }

    .wa-cta-btn i {
        font-size: 2.5rem;
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ========== WhatsApp - Glass ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 32px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition-bounce);
    z-index: 999;
}

.whatsapp-float:hover {
    transform: scale(1.12) rotate(8deg);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

/* ========== Back to Top - Glass ========== */
#backToTop {
    position: fixed;
    bottom: 100px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-bounce);
    z-index: 999;
    font-size: 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}

#backToTop:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.2);
}

/* ========== Responsive ========== */
@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 3.2rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .hero-services {
        max-width: 450px;
        margin: 0 auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-text p {
        margin: 0 auto 40px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: rgba(59, 56, 58, 0.98);
        backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: center;
        padding: 30px;
        gap: 25px;
    }

    .nav-links.active {
        display: flex;
    }

    .navbar-brand {
        padding: 5px 12px 20px;
        border-radius: 0 0 35px 35px;
        margin-top: -10px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    }

    .navbar-brand img {
        height: 40px !important;
        width: 40px !important;
        border-radius: 50% !important;
        background: #ffffff;
        padding: 4px;
        box-sizing: border-box;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-services {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .section {
        padding: 50px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .about-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .about-feature,
    .stat-item.glass-card {
        flex-direction: column;
        text-align: center;
        padding: 20px 10px;
        gap: 10px;
        margin-bottom: 0 !important;
    }

    .about-feature i {
        width: 52px;
        height: 52px;
        font-size: 20px;
        margin: 0 auto;
    }

    .stat-icon-wrapper i {
        width: auto;
        height: auto;
        font-size: 2rem;
        line-height: 1;
        margin: 0;
    }

    .about-feature span,
    .stat-item.glass-card p {
        font-size: 13px;
    }

    .stat-item.glass-card h3 {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }

    .about-badge {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 25px;
        padding: 15px 25px;
    }

    .about-badge h3 {
        font-size: 2.2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        padding-bottom: 80px;
        /* Space for bottom nav */
    }

    .footer-bottom .copyright-text {
        font-size: 14px;
    }

    .footer h4::after {
        right: 50%;
        transform: translateX(50%);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-info,
    .contact-form {
        padding: 25px 20px;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .page-header {
        padding: 100px 0 30px;
        text-align: center;
    }

    /* Service Cards Mobile */
    .service-card {
        border-radius: 18px;
    }

    .service-card-image {
        height: 180px;
    }

    .service-card-overlay {
        padding: 20px 18px;
    }

    .service-card h3 {
        font-size: 1.15rem;
        margin-bottom: 10px;
    }

    .service-card p {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 15px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .service-card .btn-link {
        padding: 10px 20px;
        font-size: 13px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Service Details Page Mobile */
    .service-detail-container {
        padding: 15px;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-detail-image {
        max-height: 250px;
        border-radius: 18px;
    }

    .service-detail-content h1 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .service-detail-content p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .service-features {
        gap: 12px;
    }

    .service-feature-item {
        padding: 12px 15px;
        font-size: 0.85rem;
    }

    .booking-form-card {
        padding: 20px;
        border-radius: 18px;
    }

    .booking-form-card h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .booking-form-card .form-group {
        margin-bottom: 12px;
    }

    .booking-form-card input,
    .booking-form-card textarea {
        padding: 12px 15px;
        font-size: 14px;
    }

    .booking-form-card .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    /* Professional Mobile App-like Bottom Nav */
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 70px;
        background: rgba(14, 109, 87, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid var(--glass-border);
        z-index: 2000;
        justify-content: space-around;
        align-items: center;
        padding: 0 10px;
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    }

    .mobile-bottom-nav a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: var(--text-muted);
        text-decoration: none;
        font-size: 11px;
        font-weight: 600;
        transition: var(--transition);
        width: 20%;
        height: 100%;
        gap: 5px;
    }

    .mobile-bottom-nav a i {
        font-size: 20px;
        transition: var(--transition);
    }

    .mobile-bottom-nav a.active {
        color: var(--primary-light);
    }

    .mobile-bottom-nav a.active i {
        transform: translateY(-5px);
        text-shadow: 0 0 15px var(--primary-light);
    }

    .mobile-bottom-nav a.nav-center {
        position: relative;
        top: -15px;
        background: var(--gradient-primary);
        width: 60px;
        height: 60px;
        border-radius: 50%;
        color: white;
        box-shadow: 0 10px 20px rgba(27, 123, 90, 0.4);
        border: 4px solid var(--bg-primary);
    }

    .mobile-bottom-nav a.nav-center i {
        font-size: 22px;
        margin-bottom: 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: rgba(59, 56, 58, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: var(--transition-slow);
        z-index: 999;
        box-shadow: -20px 0 50px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 20px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding: 120px 20px 60px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-services {
        margin-top: 40px;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .hero-service-card {
        padding: 20px 15px;
    }

    .hero-service-card:last-child:nth-child(odd) {
        grid-column: auto;
    }

    .hero-service-card i {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .hero-service-card h3 {
        font-size: 14px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }

    .service-card {
        min-height: 480px;
    }

    /* WhatsApp Float Adjustment */
    .whatsapp-float {
        bottom: 85px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }

    #backToTop {
        bottom: 85px;
        left: 20px;
    }
}

/* ========== Service Details Page Styles ========== */

.service-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    /* Increased gap from 40px */
    align-items: start;
    margin-bottom: 50px;
}

@media (max-width: 991px) {
    .service-details-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.service-info.glass-card {
    padding: 60px;
    /* Increased padding */
    text-align: right;
    align-items: flex-start;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-light);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.info-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 40px 0;
    width: 100%;
}

.requirements-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.requirements-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: var(--text-primary);
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.requirements-list li i {
    color: var(--accent);
    font-size: 1.2rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {

    .requirements-list,
    .specs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .requirements-list li i {
        font-size: 1.3rem;
    }

    .spec-item i {
        font-size: 2.2rem;
    }
}

.spec-item {
    text-align: center;
    padding: 25px 15px;
    background: rgba(27, 123, 90, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(27, 123, 90, 0.2);
}

.spec-item i {
    font-size: 2rem;
    color: var(--primary-light);
    margin-bottom: 15px;
    display: block;
}

.spec-item h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.spec-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* Sidebar & Booking Card */
.booking-card {
    padding: 35px;
    position: sticky;
    top: 100px;
    border: 1px solid var(--primary);
    box-shadow: 0 0 30px rgba(27, 123, 90, 0.15);
}

.booking-card h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 10px;
    text-align: center;
}

.booking-card>p {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-weight: 600;
}

.form-group label i {
    color: var(--primary-light);
    margin-left: 8px;
}

.form-control {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 15px rgba(27, 123, 90, 0.3);
}

.btn-block {
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
    padding: 18px;
}

.support-contact {
    margin-top: 25px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.support-contact span {
    display: block;
    color: var(--text-muted);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.support-contact a {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.3s;
}

.support-contact a:hover {
    color: var(--primary-light);
}

/* ========== Service Details Enhancements ========== */

/* Service Main Image */
.service-title-main {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 15px;
}

.service-title-main::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 4px;
}

.service-main-image {
    width: 100%;
    height: 400px;
    /* Fixed height for consistency */
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.service-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.service-main-image:hover img {
    transform: scale(1.05);
}

.service-main-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(59, 56, 58, 0.4), transparent);
    pointer-events: none;
}

/* Enhanced Booking Card */
.booking-card {
    padding: 35px;
    position: sticky;
    top: 120px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border-radius: 30px;
    /* Added prominent border-radius */
}

.booking-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.booking-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-primary);
    text-align: center;
}

.booking-card>p {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.booking-card .form-group label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 12px;
}

.booking-card .form-control {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: 50px;
    border-radius: 12px;
}

.booking-card .form-control:focus {
    background: rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(27, 123, 90, 0.1);
}

.booking-card .btn-primary {
    width: 100%;
    justify-content: center;
    height: 55px;
    font-size: 1.1rem;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(27, 123, 90, 0.4);
}

.booking-card .btn-primary:hover {
    box-shadow: 0 8px 25px rgba(27, 123, 90, 0.6);
    transform: translateY(-2px);
}

.support-contact {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.support-contact span {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.support-contact a {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    direction: ltr;
    display: inline-block;
    transition: 0.3s;
}

.support-contact a:hover {
    color: var(--primary-light);
}

/* Price Box Styles */
.service-price-box {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.price-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
}

.price-item.sar {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.1), rgba(39, 174, 96, 0.2));
    border-color: rgba(39, 174, 96, 0.3);
}

.price-item.sdg {
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.1), rgba(243, 156, 18, 0.2));
    border-color: rgba(243, 156, 18, 0.3);
}

.price-item .currency {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.price-item .amount {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--text-light);
}

.price-item.sar .amount {
    color: #2ecc71;
}

.price-item.sdg .amount {
    color: #f39c12;
}

/* Professional Dynamic Content Styling */
.dynamic-content {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

.dynamic-content p {
    margin-bottom: 15px;
    margin-top: 0;
    color: rgba(255, 255, 255, 0.85);
}

/* Headings Styling */
.dynamic-content h1,
.dynamic-content h2,
.dynamic-content h3 {
    color: var(--text-primary);
    margin-top: 35px;
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 800;
    position: relative;
    padding-right: 15px;
    border-right: 4px solid var(--primary);
    /* Accent line */
}

.dynamic-content h4,
.dynamic-content h5,
.dynamic-content h6 {
    color: var(--text-primary);
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 700;
}

/* Lists Styling - Auto-formatted */
.dynamic-content ul {
    list-style: none;
    /* Remove default bullets */
    padding: 0;
    margin-bottom: 25px;
    display: grid;
    gap: 10px;
}

.dynamic-content ul li {
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    position: relative;
    padding-right: 45px;
    /* Space for icon */
    transition: 0.3s;
}

.dynamic-content ul li:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(-5px);
    border-color: rgba(255, 255, 255, 0.1);
}

.dynamic-content ul li::before {
    content: '\f00c';
    /* FontAwesome Check Icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #2ecc71;
    /* Green check */
    font-size: 0.9rem;
    background: rgba(46, 204, 113, 0.1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.dynamic-content ol {
    padding-right: 20px;
    margin-bottom: 20px;
    color: var(--text-muted);
}

/* --- Professional Content Styling (Pure CSS) --- */

/* Section Titles (h3 in content) */
.dynamic-content h3,
.dynamic-content h4 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 35px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(27, 123, 90, 0.3);
    font-size: 1.4rem;
    color: #fff;
    position: relative;
    padding-right: 20px;
}

.dynamic-content h3::before,
.dynamic-content h4::before {
    content: '';
    position: absolute;
    right: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 5px;
    top: 0;
}

/* Stylish Lists */
.dynamic-content ul {
    list-style: none;
    /* Reset default style */
    padding: 0;
    display: grid !important;
    /* Force grid layout */
    gap: 12px !important;
    margin-bottom: 25px;
}

.dynamic-content ul li {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    /* Align top for long text */
    gap: 15px;
    transition: 0.3s;
    position: relative;
}

.dynamic-content ul li:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Add Check Icon to LI */
.dynamic-content ul li::before {
    content: '\f058';
    /* Check Circle */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #2ecc71;
    font-size: 1.2rem;
    margin-top: 3px;
    /* Align with text */
    flex-shrink: 0;
    /* Reset previous styles if any */
    background: none;
    width: auto;
    height: auto;
    position: static;
    transform: none;
}

/* Paragraphs */
.dynamic-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

/* Strong Text */
.dynamic-content strong {
    color: var(--primary);
    font-weight: 700;
}

/* Fix for empty paragraphs */
.dynamic-content p:empty {
    display: none;
}

/* --- Advanced Dynamic Content Additions --- */

/* Blockquotes */
.dynamic-content blockquote {
    background: linear-gradient(135deg, rgba(27, 123, 90, 0.1), rgba(27, 123, 90, 0.05));
    border-right: 5px solid var(--primary);
    margin: 30px 0;
    padding: 25px 30px;
    border-radius: 15px;
    position: relative;
    font-style: italic;
    color: #fff;
}

.dynamic-content blockquote::before {
    content: '\f10e';
    /* Quote Icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.1);
}

/* Images inside content */
.dynamic-content img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    margin: 25px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.dynamic-content img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Links inside content */
.dynamic-content a {
    color: var(--primary-light);
    text-decoration: none;
    border-bottom: 2px solid rgba(27, 123, 90, 0.3);
    transition: 0.3s;
    font-weight: 600;
}

.dynamic-content a:hover {
    color: var(--secondary);
    border-color: var(--secondary);
}

/* Separator Line */
.dynamic-content h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    margin-top: 15px;
    border-radius: 10px;
}

.dynamic-content ul,
.dynamic-content ol {
    margin-bottom: 10px;
    padding-right: 20px;
    margin-top: 0;
}

.dynamic-content li {
    margin-bottom: 5px;
}

/* Fix for empty paragraphs sometimes created by editors */
.dynamic-content p:empty {
    display: none;
}

/* Shine Effects for Stats and WhatsApp Section */

/* 1. Stats Items Shine */
.stat-item {
    position: relative;
    overflow: hidden;
}

.stat-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: skewX(-25deg);
    transition: 0.5s;
    pointer-events: none;
}

.stat-item:hover::after {
    left: 200%;
    transition: 0.7s ease-in-out;
}

/* 2. WhatsApp Card Shine */
.whatsapp-group-card {
    position: relative;
    overflow: hidden;
}

.whatsapp-group-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: skewX(-25deg);
    transition: 0.5s;
    pointer-events: none;
}

.whatsapp-group-card:hover::after {
    left: 200%;
    transition: 0.8s ease-in-out;
}

/* 3. WhatsApp Button Shine */
.wa-cta-btn {
    position: relative;
    overflow: hidden;
}

.wa-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: skewX(-25deg);
    transition: 0.5s;
    pointer-events: none;
}

/* Professional Form Input Styles - Focus & Shine */
.form-input,
.form-textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
    outline: none;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.form-input:focus,
.form-textarea:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(27, 123, 90, 0.15);
    transform: translateY(-2px);
}

/* Add specialized shine for primary form button if not covered */
.contact-form button[type="submit"] {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
    font-size: 1.1rem;
    padding: 18px;
}

/* ========================================
   Mobile Optimization for Service Details
   ======================================== */
@media (max-width: 768px) {
    .service-details .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .service-details,
    .dynamic-content,
    .dynamic-content h3,
    .dynamic-content h4,
    .dynamic-content p,
    .dynamic-content ul {
        text-align: right !important;
    }

    .dynamic-content h3 {
        font-size: 1.3rem !important;
        border-bottom: 2px solid rgba(27, 123, 90, 0.3);
        padding-bottom: 10px;
        display: block !important;
        margin-top: 30px !important;
    }

    .dynamic-content h3::before {
        display: none;
    }

    .service-header h1 {
        font-size: 1.8rem !important;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .price-card {
        margin: 10px auto !important;
        width: 100%;
        max-width: 300px;
    }

    .service-prices {
        justify-content: center !important;
        gap: 15px !important;
    }

    .service-image-container {
        margin-bottom: 30px !important;
    }

    .service-image-container img {
        height: 250px !important;
        object-fit: cover;
    }

    .dynamic-content ul li {
        padding: 12px 15px !important;
        font-size: 0.95rem !important;
        justify-content: flex-start !important;
        text-align: right !important;
    }

    .booking-form-card {
        padding: 25px 20px !important;
        margin-top: 40px !important;
    }

    .booking-form-card h3 {
        text-align: center !important;
        font-size: 1.4rem !important;
    }

    .booking-form-card p {
        text-align: center !important;
    }
}

/* ========================================
   Unified Menu Styles & Mobile Gradient
   ======================================== */
@media (max-width: 991px) {
    .nav-links {
        background: linear-gradient(180deg, #1B7B5A 0%, #0e4b38 100%) !important;
        backdrop-filter: blur(25px) !important;
        -webkit-backdrop-filter: blur(25px) !important;
        border-left: 1px solid rgba(255, 255, 255, 0.15) !important;
        box-shadow: -15px 0 50px rgba(0, 0, 0, 0.6) !important;
        padding-top: 80px !important;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 10px 0;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        font-size: 1.2rem !important;
        display: block !important;
    }
}

.nav-links a {
    position: relative;
    transition: 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0px;
    right: 0;
    width: 0;
    height: 2px;
    background: #50fa7b;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 2px;
    box-shadow: 0 0 10px #50fa7b;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(80, 250, 123, 0.5);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .service-details-grid {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
    }

    .service-info.glass-card {
        width: 100% !important;
        max-width: 100% !important;
        padding: 25px 20px !important;
        margin: 0 0 30px 0 !important;
        background: var(--glass-bg) !important;
        border: 1px solid var(--glass-border) !important;
        box-shadow: none !important;
    }

    .service-title-main {
        font-size: 1.8rem !important;
        text-align: center !important;
        margin-bottom: 20px !important;
    }

    .service-title-main::after {
        right: auto !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .service-main-image {
        width: 100% !important;
        height: 220px !important;
        border-radius: 15px !important;
        margin-bottom: 20px !important;
    }

    .navbar-brand img {
        height: 85px !important;
        width: 85px !important;
        margin-top: -15px !important;
        object-fit: contain;
        border-radius: 50% !important;
        background: #ffffff;
        padding: 6px;
        box-sizing: border-box;
    }

    .mobile-toggle {
        margin-top: 0 !important;
        align-self: center;
    }
}

/* Ensure Container Width Override */
.container {
    max-width: 1200px !important;
    margin: 0 auto;
}

/* Override About Image Alignment */
.about-image {
    display: flex !important;
    justify-content: flex-start !important;
    margin-right: -25px !important;
}

/* Mobile Header & Menu Enhancements - Final Polish */
@media (max-width: 991px) {

    /* Logo Adjustments: Bigger and Stuck to Top */
    .navbar-brand img {
        height: 75px !important;
        width: 75px !important;
        margin-top: -15px !important;
        transition: 0.3s;
        border-radius: 50% !important;
        background: #ffffff;
        padding: 6px;
        box-sizing: border-box;
    }

    /* Glass Gradient Menu Background */
    .nav-links {
        background: linear-gradient(160deg, rgba(46, 50, 50, 0.85) 0%, rgba(14, 40, 35, 0.95) 100%) !important;
        backdrop-filter: blur(15px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
        border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
}

/* Mobile Typography & Layout Standardization */
@media (max-width: 768px) {

    /* 1. Maximize Service Page Width (Less Margins) */
    .service-details .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
        width: 100% !important;
    }

    /* 2. Font Standardization */
    /* Banner Title (20px) */
    .page-header h1,
    .service-title-main {
        font-size: 20px !important;
        line-height: 1.4 !important;
    }

    /* Other Headings (18px) */
    h2,
    h3,
    h4,
    .section-header h2,
    .dynamic-content h3,
    .dynamic-content h4 {
        font-size: 18px !important;
        line-height: 1.5 !important;
    }

    /* Body Text (16px) */
    p,
    li,
    .dynamic-content p,
    .dynamic-content li,
    span {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }

    /* Buttons (14px) */
    .btn,
    button,
    .nav-cta,
    input[type='submit'],
    .btn-primary {
        font-size: 14px !important;
        padding: 10px 20px !important;
    }
}

/* Mobile Logo Shape Correction */
@media (max-width: 991px) {
    .navbar-brand {
        background-color: #ffffff !important;
        display: inline-block !important;
        /* Pull container up to touch screen edge (adjust based on navbar padding) */
        margin-top: -40px !important;
        padding: 45px 25px 15px 25px !important;
        /* Safe area for logo inside */
        border-radius: 0 0 30px 30px !important;
        /* Rounded bottom corners */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
        position: relative;
        z-index: 1002;
    }

    .navbar-brand img {
        height: 55px !important;
        width: 55px !important;
        /* Adjust logo size to fit nicely */
        margin-top: 0 !important;
        border-radius: 50% !important;
        background: #ffffff;
        padding: 5px;
        box-sizing: border-box;
    }
}

/* ========== WhatsApp Group CTA ========== */
.whatsapp-group-cta {
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.whatsapp-group-card {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(7, 94, 84, 0.2));
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 30px;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    transition: var(--transition);
}

.whatsapp-group-card:hover {
    border-color: rgba(37, 211, 102, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.wa-cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.wa-cta-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
}

.wa-cta-btn {
    background: #25d366;
    color: #ffffff !important;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-bounce);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.wa-cta-btn:hover {
    background: #128c7e;
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(18, 140, 126, 0.4);
}

.wa-cta-btn i {
    font-size: 1.5rem;
}

/* ========== Global UI Fixes ========== */
button:focus,
a:focus,
.btn:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* WhatsApp Group CTA Mobile Style Updates */
@media (max-width: 768px) {
    .whatsapp-group-card {
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
        gap: 25px;
    }

    .wa-cta-btn {
        width: 100%;
        justify-content: center;
        flex-direction: row-reverse;
        /* Icon on the left (in RTL it's right, so row-reverse puts it on left) */
        gap: 15px;
        padding: 15px 20px;
        font-size: 1rem;
    }

    .wa-cta-btn i {
        font-size: 1.2rem;
    }
}

/* Global Heading Span Color Override */
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background: none !important;
    background-clip: initial !important;
    text-shadow: none !important;
}

/* Remove blue focus outline from mobile browser */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Mobile Headings Size Optimization */
@media (max-width: 768px) {
    h2 {
        font-size: 2.2rem !important;
        line-height: 1.3 !important;
    }

    h3 {
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
    }

    .section-header h2 {
        font-size: 2.5rem !important;
    }

    .wa-cta-content h2 {
        font-size: 2rem !important;
    }

    .hero-text h1 {
        font-size: 3.2rem !important;
        line-height: 1.2 !important;
    }
}

/* Center About Section on Home Page Mobile */
@media (max-width: 991px) {

    #home+section .about-grid,
    section:has(.about-content) .about-grid {
        display: flex !important;
        flex-direction: column !important;
        text-align: center !important;
        align-items: center !important;
        padding-top: 0 !important;
    }

    .about-content {
        text-align: center !important;
    }

    .about-features {
        justify-content: center !important;
    }

    .about-btn {
        margin-left: auto !important;
        margin-right: auto !important;
        display: inline-flex !important;
    }
}

/* Specific Center for Home About Mobile */
@media (max-width: 768px) {
    #home+section .about-grid {
        display: flex !important;
        flex-direction: column !important;
    }
}

/* =========================================
   About Pro Styles (From About Page) 
   ========================================= */

.about-logo-container {
    position: relative;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    perspective: 1500px;
}

.glass-box-pro {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 40px;
    padding: 50px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
    animation: boxFloatPro 8s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass-box-pro::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.4) 0%, transparent 60%);
    z-index: 1;
}

.floating-logo-pro {
    width: auto;
    max-width: 100%;
    max-height: 280px;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
    transform: translateZ(60px);
    z-index: 2;
    object-fit: contain;
}

.logo-glow-pro {
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
    opacity: 0.2;
    animation: glowPulsePro 5s ease-in-out infinite alternate;
}

@keyframes boxFloatPro {

    0%,
    100% {
        transform: translateY(0) rotateX(10deg) rotateY(-8deg);
    }

    50% {
        transform: translateY(-30px) rotateX(-5deg) rotateY(8deg);
    }
}

@keyframes glowPulsePro {
    0% {
        opacity: 0.1;
        transform: scale(0.8);
    }

    100% {
        opacity: 0.3;
        transform: scale(1.2);
    }
}

/* Pro Badge Styling - More Attractive & Transparent */
.about-badge-pro {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: rgba(255, 255, 255, 0.65);
    /* Increased transparency */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-right: 1px solid rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    color: var(--primary);
    padding: 22px 35px;
    border-radius: 24px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.1),
        inset 0 0 20px rgba(255, 255, 255, 0.5);
    z-index: 10;
    transform: translateZ(80px);
    text-align: center;
    transition: all 0.4s ease;
}

.about-badge-pro:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: translateZ(90px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.about-badge-pro h3 {
    font-size: 2.4rem;
    font-weight: 900;
    margin: 0;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 5px rgba(27, 123, 90, 0.2));
}

.about-badge-pro span {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-top: 5px;
}

/* Permanent Shine Effect for Logo Box */
.glass-box-pro::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            rgba(255, 255, 255, 0.6),
            rgba(255, 255, 255, 0.2),
            transparent);
    transform: skewX(-25deg);
    animation: shinePermanent 3.5s infinite linear;
    pointer-events: none;
    z-index: 3;
}

@keyframes shinePermanent {
    0% {
        left: -150%;
    }

    40% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

/* ========== Floating Buttons (WhatsApp & Scroll) ========== */

/* WhatsApp Float with Pulse */
/* WhatsApp Float with Pulse */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    /* Changed to Right */
    background: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: whatsappPulseEffect 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    color: #fff;
}

@keyframes whatsappPulseEffect {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Progress Circle Back to Top */
#progress-wrap {
    position: fixed;
    bottom: 30px;
    left: 30px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 400ms ease;
    background: none;
    box-shadow: none;
}

#progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* New HTML Arrow Container */
.arrow-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    z-index: 1;
    transition: all 0.3s ease;
}

#progress-wrap:hover .arrow-icon {
    transform: translateY(-3px);
    color: var(--accent);
    /* Turn green on hover */
    text-shadow: 0 0 10px rgba(46, 204, 113, 0.6);
}

/* SVG Styles */
#progress-wrap svg.progress-circle {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    transform: rotate(-90deg);
    /* Start from top */
}

#progress-wrap svg.progress-circle path {
    /* Stroke color is handled in SVG via url(#gradient) */
    stroke-width: 6;
    box-sizing: border-box;
    transition: all 400ms ease-out;
    filter: drop-shadow(0 0 4px rgba(46, 204, 113, 0.6));
    /* Glow */
    stroke-linecap: round;
    /* Round ends for progress */
}

.testimonial-nav i {
    transition: transform 0.3s ease;
}

.testimonial-nav:hover i {
    transform: translateX(2px);
}

.testimonial-nav.prev:hover i {
    transform: translateX(-2px);
}

/* Testimonials Responsive for Desktop */
@media (min-width: 1024px) {
    .testimonials-section {
        padding: 90px 0;
    }

    .testimonial-card {
        min-height: 240px;
        width: calc((100% - 44px) / 3) !important;
        flex: 0 0 calc((100% - 44px) / 3) !important;
    }

    .testimonials-slider {
        overflow: hidden;
        padding: 20px 0 40px;
    }

    .testimonials-track {
        padding: 0;
        gap: 22px;
    }

    .testimonials-section .container {
        overflow: visible;
    }

    /* Enhanced Gradient Effect for Desktop */
    .testimonials-wrap::before,
    .testimonials-wrap::after {
        width: 180px;
    }

    .testimonials-wrap::before {
        background: linear-gradient(to right,
                rgba(7, 26, 20, 1) 0%,
                rgba(7, 26, 20, 0.99) 3%,
                rgba(7, 26, 20, 0.97) 6%,
                rgba(7, 26, 20, 0.94) 9%,
                rgba(7, 26, 20, 0.9) 12%,
                rgba(7, 26, 20, 0.85) 15%,
                rgba(7, 26, 20, 0.78) 18%,
                rgba(7, 26, 20, 0.7) 22%,
                rgba(7, 26, 20, 0.6) 26%,
                rgba(7, 26, 20, 0.5) 30%,
                rgba(7, 26, 20, 0.4) 35%,
                rgba(7, 26, 20, 0.32) 40%,
                rgba(7, 26, 20, 0.25) 45%,
                rgba(7, 26, 20, 0.19) 50%,
                rgba(7, 26, 20, 0.14) 55%,
                rgba(7, 26, 20, 0.1) 60%,
                rgba(7, 26, 20, 0.07) 65%,
                rgba(7, 26, 20, 0.05) 70%,
                rgba(7, 26, 20, 0.03) 75%,
                rgba(7, 26, 20, 0.02) 80%,
                rgba(7, 26, 20, 0.01) 85%,
                rgba(7, 26, 20, 0.005) 90%,
                rgba(7, 26, 20, 0.002) 95%,
                transparent 100%);
    }

    .testimonials-wrap::after {
        background: linear-gradient(to left,
                rgba(7, 26, 20, 1) 0%,
                rgba(7, 26, 20, 0.99) 3%,
                rgba(7, 26, 20, 0.97) 6%,
                rgba(7, 26, 20, 0.94) 9%,
                rgba(7, 26, 20, 0.9) 12%,
                rgba(7, 26, 20, 0.85) 15%,
                rgba(7, 26, 20, 0.78) 18%,
                rgba(7, 26, 20, 0.7) 22%,
                rgba(7, 26, 20, 0.6) 26%,
                rgba(7, 26, 20, 0.5) 30%,
                rgba(7, 26, 20, 0.4) 35%,
                rgba(7, 26, 20, 0.32) 40%,
                rgba(7, 26, 20, 0.25) 45%,
                rgba(7, 26, 20, 0.19) 50%,
                rgba(7, 26, 20, 0.14) 55%,
                rgba(7, 26, 20, 0.1) 60%,
                rgba(7, 26, 20, 0.07) 65%,
                rgba(7, 26, 20, 0.05) 70%,
                rgba(7, 26, 20, 0.03) 75%,
                rgba(7, 26, 20, 0.02) 80%,
                rgba(7, 26, 20, 0.01) 85%,
                rgba(7, 26, 20, 0.005) 90%,
                rgba(7, 26, 20, 0.002) 95%,
                transparent 100%);
    }
}

@media (min-width: 1200px) {
    .testimonials-slider {
        max-width: 1320px;
        padding: 20px 0 40px;
    }

    .testimonials-section .container {
        max-width: 1400px;
        padding: 0 50px;
    }

    .testimonial-card {
        width: calc((100% - 44px) / 3) !important;
        flex: 0 0 calc((100% - 44px) / 3) !important;
    }

    /* Enhanced gradient width for larger screens */
    .testimonials-wrap::before,
    .testimonials-wrap::after {
        width: 200px;
    }

    .testimonials-slider.swiper {
        mask-image: linear-gradient(to right,
                transparent 0%,
                rgba(0, 0, 0, 0.1) 3%,
                rgba(0, 0, 0, 0.3) 5%,
                rgba(0, 0, 0, 0.5) 7%,
                rgba(0, 0, 0, 0.7) 9%,
                rgba(0, 0, 0, 0.85) 11%,
                rgba(0, 0, 0, 0.95) 13%,
                black 15%,
                black 85%,
                rgba(0, 0, 0, 0.95) 87%,
                rgba(0, 0, 0, 0.85) 89%,
                rgba(0, 0, 0, 0.7) 91%,
                rgba(0, 0, 0, 0.5) 93%,
                rgba(0, 0, 0, 0.3) 95%,
                rgba(0, 0, 0, 0.1) 97%,
                transparent 100%);
        -webkit-mask-image: linear-gradient(to right,
                transparent 0%,
                rgba(0, 0, 0, 0.1) 3%,
                rgba(0, 0, 0, 0.3) 5%,
                rgba(0, 0, 0, 0.5) 7%,
                rgba(0, 0, 0, 0.7) 9%,
                rgba(0, 0, 0, 0.85) 11%,
                rgba(0, 0, 0, 0.95) 13%,
                black 15%,
                black 85%,
                rgba(0, 0, 0, 0.95) 87%,
                rgba(0, 0, 0, 0.85) 89%,
                rgba(0, 0, 0, 0.7) 91%,
                rgba(0, 0, 0, 0.5) 93%,
                rgba(0, 0, 0, 0.3) 95%,
                rgba(0, 0, 0, 0.1) 97%,
                transparent 100%);
    }
}

@media (min-width: 1400px) {
    .testimonials-slider {
        max-width: 1400px;
    }

    .testimonials-section .container {
        max-width: 1500px;
        padding: 0 60px;
    }

    .testimonials-wrap::before,
    .testimonials-wrap::after {
        width: 220px;
    }

    .testimonials-wrap::before {
        background: linear-gradient(to right,
                rgba(7, 26, 20, 1) 0%,
                rgba(7, 26, 20, 0.99) 2%,
                rgba(7, 26, 20, 0.98) 4%,
                rgba(7, 26, 20, 0.96) 6%,
                rgba(7, 26, 20, 0.93) 8%,
                rgba(7, 26, 20, 0.89) 10%,
                rgba(7, 26, 20, 0.84) 12%,
                rgba(7, 26, 20, 0.78) 14%,
                rgba(7, 26, 20, 0.71) 16%,
                rgba(7, 26, 20, 0.64) 18%,
                rgba(7, 26, 20, 0.56) 20%,
                rgba(7, 26, 20, 0.48) 23%,
                rgba(7, 26, 20, 0.4) 26%,
                rgba(7, 26, 20, 0.33) 30%,
                rgba(7, 26, 20, 0.27) 34%,
                rgba(7, 26, 20, 0.22) 38%,
                rgba(7, 26, 20, 0.17) 42%,
                rgba(7, 26, 20, 0.13) 47%,
                rgba(7, 26, 20, 0.1) 52%,
                rgba(7, 26, 20, 0.075) 57%,
                rgba(7, 26, 20, 0.055) 62%,
                rgba(7, 26, 20, 0.04) 67%,
                rgba(7, 26, 20, 0.028) 72%,
                rgba(7, 26, 20, 0.019) 77%,
                rgba(7, 26, 20, 0.012) 82%,
                rgba(7, 26, 20, 0.007) 87%,
                rgba(7, 26, 20, 0.004) 92%,
                rgba(7, 26, 20, 0.001) 97%,
                transparent 100%);
    }

    .testimonials-wrap::after {
        background: linear-gradient(to left,
                rgba(7, 26, 20, 1) 0%,
                rgba(7, 26, 20, 0.99) 2%,
                rgba(7, 26, 20, 0.98) 4%,
                rgba(7, 26, 20, 0.96) 6%,
                rgba(7, 26, 20, 0.93) 8%,
                rgba(7, 26, 20, 0.89) 10%,
                rgba(7, 26, 20, 0.84) 12%,
                rgba(7, 26, 20, 0.78) 14%,
                rgba(7, 26, 20, 0.71) 16%,
                rgba(7, 26, 20, 0.64) 18%,
                rgba(7, 26, 20, 0.56) 20%,
                rgba(7, 26, 20, 0.48) 23%,
                rgba(7, 26, 20, 0.4) 26%,
                rgba(7, 26, 20, 0.33) 30%,
                rgba(7, 26, 20, 0.27) 34%,
                rgba(7, 26, 20, 0.22) 38%,
                rgba(7, 26, 20, 0.17) 42%,
                rgba(7, 26, 20, 0.13) 47%,
                rgba(7, 26, 20, 0.1) 52%,
                rgba(7, 26, 20, 0.075) 57%,
                rgba(7, 26, 20, 0.055) 62%,
                rgba(7, 26, 20, 0.04) 67%,
                rgba(7, 26, 20, 0.028) 72%,
                rgba(7, 26, 20, 0.019) 77%,
                rgba(7, 26, 20, 0.012) 82%,
                rgba(7, 26, 20, 0.007) 87%,
                rgba(7, 26, 20, 0.004) 92%,
                rgba(7, 26, 20, 0.001) 97%,
                transparent 100%);
    }
}

/* Swiper Container Adjustments */
.testimonials-slider .swiper-wrapper {
    padding: 0;
}

.testimonials-section .swiper-slide {
    height: auto;
}

@media (min-width: 1024px) {
    .testimonials-slider.swiper {
        overflow: hidden !important;
        mask-image:
            linear-gradient(to right,
                transparent 0%,
                rgba(0, 0, 0, 0.02) 1%,
                rgba(0, 0, 0, 0.06) 2%,
                rgba(0, 0, 0, 0.12) 3%,
                rgba(0, 0, 0, 0.2) 4%,
                rgba(0, 0, 0, 0.3) 5%,
                rgba(0, 0, 0, 0.42) 6%,
                rgba(0, 0, 0, 0.55) 7%,
                rgba(0, 0, 0, 0.68) 8%,
                rgba(0, 0, 0, 0.78) 9%,
                rgba(0, 0, 0, 0.86) 10%,
                rgba(0, 0, 0, 0.92) 11%,
                rgba(0, 0, 0, 0.96) 12%,
                rgba(0, 0, 0, 0.99) 13%,
                black 14%,
                black 86%,
                rgba(0, 0, 0, 0.99) 87%,
                rgba(0, 0, 0, 0.96) 88%,
                rgba(0, 0, 0, 0.92) 89%,
                rgba(0, 0, 0, 0.86) 90%,
                rgba(0, 0, 0, 0.78) 91%,
                rgba(0, 0, 0, 0.68) 92%,
                rgba(0, 0, 0, 0.55) 93%,
                rgba(0, 0, 0, 0.42) 94%,
                rgba(0, 0, 0, 0.3) 95%,
                rgba(0, 0, 0, 0.2) 96%,
                rgba(0, 0, 0, 0.12) 97%,
                rgba(0, 0, 0, 0.06) 98%,
                rgba(0, 0, 0, 0.02) 99%,
                transparent 100%);
        -webkit-mask-image:
            linear-gradient(to right,
                transparent 0%,
                rgba(0, 0, 0, 0.02) 1%,
                rgba(0, 0, 0, 0.06) 2%,
                rgba(0, 0, 0, 0.12) 3%,
                rgba(0, 0, 0, 0.2) 4%,
                rgba(0, 0, 0, 0.3) 5%,
                rgba(0, 0, 0, 0.42) 6%,
                rgba(0, 0, 0, 0.55) 7%,
                rgba(0, 0, 0, 0.68) 8%,
                rgba(0, 0, 0, 0.78) 9%,
                rgba(0, 0, 0, 0.86) 10%,
                rgba(0, 0, 0, 0.92) 11%,
                rgba(0, 0, 0, 0.96) 12%,
                rgba(0, 0, 0, 0.99) 13%,
                black 14%,
                black 86%,
                rgba(0, 0, 0, 0.99) 87%,
                rgba(0, 0, 0, 0.96) 88%,
                rgba(0, 0, 0, 0.92) 89%,
                rgba(0, 0, 0, 0.86) 90%,
                rgba(0, 0, 0, 0.78) 91%,
                rgba(0, 0, 0, 0.68) 92%,
                rgba(0, 0, 0, 0.55) 93%,
                rgba(0, 0, 0, 0.42) 94%,
                rgba(0, 0, 0, 0.3) 95%,
                rgba(0, 0, 0, 0.2) 96%,
                rgba(0, 0, 0, 0.12) 97%,
                rgba(0, 0, 0, 0.06) 98%,
                rgba(0, 0, 0, 0.02) 99%,
                transparent 100%);
        mask-mode: alpha;
        -webkit-mask-mode: alpha;
    }

    .testimonials-slider .swiper-wrapper {
        overflow: visible !important;
        padding: 0 !important;
    }

    .testimonials-section .container {
        max-width: 1400px;
        padding: 0 40px;
    }

    .testimonials-track {
        justify-content: center;
    }
}
