/* ======================================
   GOOGLE FONTS & ICONS
   ====================================== */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,200..800;1,6..72,200..800&family=Roboto:ital@1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Audiowide&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");


/* ======================================
   CSS CUSTOM PROPERTIES
   ====================================== */
:root {
    --primary: #1a365d;
    --secondary: #2c5282;
    --accent: #3182ce;
    --gold: #d4af37;
    --dark: #1a202c;
    --light: #f7fafc;
    --white: #ffffff;
}

/* ======================================
   BASE STYLES
   ====================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    overflow-x: hidden;
    background-color: #fff;
    font-size: 0.9rem;
}

html {
    scroll-behavior: smooth;
}

/* Headings use Manrope now */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', sans-serif;
}

/* Links */
a {
    color: rgb(198, 86, 0);
    text-decoration: none;
}
a:hover {
    color: #000;
    text-decoration: underline;
}

/* ======================================
   NAVIGATION CUSTOMIZATION
   ====================================== */
.navbar-brand {
    position: relative;
}

.brand-text, .brand-logo {
    transition: opacity 0.5s ease-in-out;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

/* Navbar styling */
.navbar {
    backdrop-filter: blur(20px);
    background-color: rgba(0, 0, 0, 0.3) !important;
    transition: background-color 0.3s ease;
}

/* Show text on medium+ screens */
@media (min-width: 768px) {
    .brand-text {
        opacity: 1;
        pointer-events: auto;
    }
    .brand-logo {
        opacity: 0;
        pointer-events: none;
    }
}

/* Show logo on small screens */
@media (max-width: 767.98px) {
    .brand-text {
        opacity: 0;
        pointer-events: none;
    }
    .brand-logo {
        opacity: 1;
        pointer-events: auto;
    }
    
    .navbar-nav {
        text-align: right;
    }
    
    .navbar-collapse {
        text-align: right;
    }
}

/* ======================================
   HERO SECTION
   ====================================== */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 30, 30, 0.6);
    z-index: -1;
}

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

.hero-quick-contact {
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.hero-quick-contact:hover {
    opacity: 1;
}

.hero-quick-contact span {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.hero-content .btn-primary {
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-content .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Video Control Button */
.video-control-btn {
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 15;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.video-control-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.video-control-btn:active {
    transform: scale(0.95);
}

.video-control-btn .play-icon {
    display: none;
}

.video-control-btn.paused .pause-icon {
    display: none;
}

.video-control-btn.paused .play-icon {
    display: block;
}

/* ======================================
   CONTENT SECTIONS
   ====================================== */
.content-section {
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow-x: hidden;
}

.content-text {
    padding: 10px 0;
}

.content-image {
    padding: 10px 0;
    text-align: center;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
}

.content-image img {
    max-width: 100%;
    height: auto;
    /* border-radius: 3px; */
}

/* ======================================
   TITLE STYLING WITH GOLDEN UNDERLINE
   ====================================== */
.title-with-underline {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.title-with-underline::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), #ffd700);
    border-radius: 2px;
}

.title-with-underline.title-large::after {
    width: 100px;
    height: 4px;
    bottom: -10px;
}

.title-with-underline.title-left::after {
    left: 0;
    transform: translateX(0);
}

/* ======================================
   ANIMATIONS
   ====================================== */
.animate-on-scroll {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-x: hidden;
}

.slide-from-left {
  transform: translateX(-50px);
}

.slide-from-right {
  transform: translateX(50px);
}

.animate-on-scroll.animate-active {
  opacity: 1;
  transform: translateX(0);
}

/* ======================================
   STATS SECTION
   ====================================== */
.stats-section {
    position: relative;
    z-index: 10;
    margin-top: -80px;
}

.stats-container {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-radius: 3px;
    padding: 2rem 1.5rem;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.stat-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
}

.stat-number {
    font-family: 'Audiowide', cursive;
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
    line-height: 1.1;
    color: var(--primary);
}

.stat-label {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: rgba(26, 54, 93, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ======================================
   CAROUSEL
   ====================================== */
.custom-carousel {
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-inner {
    transition: transform 0.6s ease-in-out;
}

.carousel-item {
    position: relative;
    aspect-ratio: 16/9;
    height: 450px;
    overflow: hidden;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.carousel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        to top,
        rgba(26, 54, 93, 0.8) 0%,
        rgba(26, 54, 93, 0.4) 50%,
        transparent 100%
    );
    padding: 2rem;
    min-height: 40%;
    display: flex;
    align-items: flex-end;
}

.carousel-content {
    color: var(--white);
    width: 100%;
    padding: 0 2rem;
}

.carousel-content h3 {
    font-family: 'Newsreader', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--white);
    background: none;
    -webkit-text-fill-color: var(--white);
}

.carousel-content p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    line-height: 1.5;
    opacity: 0.95;
}

.btn-read-more {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.15);
    border: 2px solid var(--white);
    color: var(--white);
    padding: 0.2rem 0.8rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-read-more:hover {
    background-color: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(256, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev i,
.carousel-control-next i {
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(256, 40, 40, 0.8);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* ======================================
   SERVICE CARDS (What We Do Section)
   ====================================== */
.service-card-custom {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    border-color: rgba(255, 255, 255, 0.2) !important;
    transition: all 0.3s ease;
}

.service-card-custom:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--dark);
}

.service-card-custom:hover .service-icon {
    background: #ffd700;
    transform: scale(1.1);
}

/* ======================================
   LIGHT SERVICE CARDS (What We Do Section)
   ====================================== */
.service-card-light {
    background: rgb(176, 209, 255);
    border-radius: 3px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card-light:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
    border-color: var(--gold);
}

.service-icon-light {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.service-icon-light i {
    font-size: 1.8rem;
    color: white;
}

.service-card-light:hover .service-icon-light {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(245, 87, 108, 0.3);
}

/* Responsive adjustments for light theme */
@media (max-width: 768px) {
    .service-card-light {
        margin-bottom: 1rem;
    }
    
    .service-icon-light {
        width: 50px;
        height: 50px;
    }
    
    .service-icon-light i {
        font-size: 1.5rem;
    }
}



/* ======================================
   OUR REACH SECTION
   ====================================== */

/* Location Cards */
.location-card-light {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.location-card-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #008cff, #008cff);
}

.location-card-light:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #008cff;
}

.location-card-light .location-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.2rem;
}

.location-card-light .flag-icon {
    width: 35px;
    height: 25px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.location-card-light h5 {
    color: var(--dark);
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
}

.location-benefits-light {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-benefits-light li {
    color: #6c757d;
    font-size: 0.9rem;
    padding: 0.4rem 0;
    padding-left: 1.8rem;
    position: relative;
    transition: all 0.3s ease;
}

.location-benefits-light li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--dark);
    font-weight: bold;
    font-size: 1.1rem;
}

.location-card-light:hover .location-benefits-light li {
    color: #495057;
    transform: translateX(3px);
}

/* Stats Bar - Light Theme */
.reach-stats-light {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.reach-stats-light::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #008cff, transparent);
}

.stat-item-light {
    position: relative;
    transition: transform 0.3s ease;
}

.stat-item-light:hover {
    transform: scale(1.1);
}

.reach-stats-light h4 {
    font-family: 'Audiowide', cursive;
    font-size: 1.8rem;
    font-weight: bold;
}

/* CTA Box - Light Theme */
.cta-box-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #008cff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
    position: relative;
    overflow: hidden;
}

.cta-box-light::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;  /* This makes the overlay non-interactive */
    z-index: 0;
}
.cta-box-light > * {
    position: relative;
    z-index: 1;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
}

/* Gradient Button */
.btn-gradient {
    /* background: linear-gradient(135deg, var(--gold) 0%, #ffd700 100%);
    color: var(--dark); */
    border: none;
    /* font-weight: 600; */
    padding: 12px 30px;
    transition: all 0.3s ease;
    /* box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3); */
}

.btn-gradient:hover {
    background: linear-gradient(135deg, #ffd700 0%, var(--gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    color: var(--dark);
}

/* Map Container - Light Theme */
.map-container-light {
    position: relative;
    display: inline-block;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.map-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.1) 0%, 
        transparent 50%, 
        rgba(212, 175, 55, 0.1) 100%);
    pointer-events: none;
}

/* Animated Map Points - Light Theme */
.pulse-point-light {
    position: absolute;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 10;
}

.pulse-point-light::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: white;
    border: 3px solid var(--gold);
    border-radius: 50%;
    animation: pulse-light 2s infinite;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.pulse-point-light::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    animation: pulse-ring-light 2s infinite;
}

@keyframes pulse-light {
    0% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    }
}

@keyframes pulse-ring-light {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.point-label-light {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: var(--dark);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--gold);
    opacity: 1;
}

/* Special styling for each point */
.geneva-point::before {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
}

.muscat-point::before {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-color: #f093fb;
}

/* Connection line between points */
.connection-line {
    position: absolute;
    top: 54%;
    left: 30%;
    width: 37%;
    height: 2px;
    background: linear-gradient(90deg, #667eea, var(--gold), #f093fb);
    transform: translateY(-50%);
    opacity: 0.6;
}

.connection-line::before,
.connection-line::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    /* animation: flow 3s linear infinite; */
}

@keyframes flow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Responsive */
@media (max-width: 768px) {
    .location-card-light {
        margin-bottom: 1rem;
    }
    
    .reach-stats-light {
        padding: 1rem;
    }
    
    .reach-stats-light h4 {
        font-size: 1.3rem;
    }
    
    .cta-box-light {
        padding: 1.5rem;
    }
    
    .btn-gradient {
        width: 100%;
    }
}




/* ======================================
   WHY CHOOSE US - LIGHT THEME
   ====================================== */

/* Comparison Container Light */
.comparison-container-light {
    margin-bottom: 2rem;
}

/* Comparison Cards - Light Theme */
.comparison-card-light {
    background: white;
    border-radius: 7px;
    padding: 0;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.comparison-card-light:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--gold);
}

/* Others Side - Light */
.others-side-light {
    background: linear-gradient(135deg, #858585 0%, #bbbbbb 100%);
    padding: 1.5rem 1rem;
    position: relative;
}

/* KHM Side - Light */
.khm-side-light {
    background: linear-gradient(135deg, #3184e2 0%, #528fea 100%);
    padding: 1.5rem 1rem;
    position: relative;
}

/* VS Badge - Light */
.vs-circle-light {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--gold) 0%, #ffd700 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
    animation: pulse-vs 2s infinite;
    position: relative;
    z-index: 2;
}

@keyframes pulse-vs {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
    }
}

/* Comparison Labels */
.comparison-card-light .comparison-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.others-side-light .comparison-label {
    color: #ffffff;
}

.khm-side-light .comparison-label {
    color: #ffffff;
}

/* Comparison Content */
/* .comparison-card-light .comparison-content {} */
.comparison-card-light .comparison-content p {
    margin: 0;
    font-size: 0.75rem;
    color: #ffffff;
    font-weight: 500;
}

.khm-side-light .comparison-content p strong {
    color: #ffffff;
}

/* Trust Badges - Light Theme */
.trust-badge-light {
    background: white;
    border: 2px solid #3276ff;
    border-radius: 7px;
    padding: 1.2rem 0.5rem;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.trust-badge-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3589ff, #00d9ff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.trust-badge-light:hover::before {
    transform: scaleX(1);
}

.trust-badge-light:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #54c6ff;
}

.badge-icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 0.8rem;
    background: linear-gradient(135deg, #169daf 0%, #2e83de 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.trust-badge-light:hover .badge-icon-wrapper {
    background: linear-gradient(135deg, var(--gold) 0%, #ffd700 100%);
    transform: rotate(5deg) scale(1.1);
}

.badge-icon-wrapper i {
    font-size: 1.8rem;
    color: #fff;
}

.trust-badge-light:hover .badge-icon-wrapper i {
    color: white;
}

.trust-badge-light small {
    color: #6b7280;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Value Card - Light Theme */
.value-card-light {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.overlay-badge-light {
    position: absolute;
    top: 20px;
    right: 20px;
}

.overlay-badge-light .badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* Testimonial Box - Light Theme */
.testimonial-box-light {
    background: white;
    border-left: 4px solid var(--gold);
    padding: 2rem;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.quote-icon-light {
    position: absolute;
    top: -15px;
    left: 20px;
    padding: 0 10px;
    color: var(--gold);
    font-size: 2rem;
}

.testimonial-box-light p {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.6;
    color: #374151;
}

.testimonial-box-light footer {
    font-size: 0.9rem;
    color: #6b7280;
}

/* CTA Button - Gradient Primary */
.btn-gradient-primary {
    background: linear-gradient(135deg, rgb(0, 98, 255) 0%, #0073ff 100%);
    color: #fff;
    border: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-gradient-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
}

.btn-gradient-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
}

.btn-gradient-primary:hover::before {
    left: 0;
}

.btn-gradient-primary span,
.btn-gradient-primary i {
    position: relative;
    z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .comparison-card-light {
        font-size: 0.85rem;
    }
    
    .vs-circle-light {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }
    
    .comparison-content p {
        font-size: 0.85rem;
    }
    
    .trust-badge-light {
        padding: 1rem 0.5rem;
    }
    
    .badge-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .badge-icon-wrapper i {
        font-size: 1.5rem;
    }
    
    .testimonial-box-light {
        margin-top: 2rem !important;
        padding: 1.5rem;
    }
}




/* ======================================
   SEPARATORS
   ====================================== */
.parallax-separator {
    height: 300px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    position: relative;
}

.parallax-separator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 54, 93, 0.5);
}

.parallax-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.separator-quote {
    color: white;
    font-size: 1.5rem;
    font-style: italic;
}

.separator-icon {
    margin-bottom: 1.5rem;
}

.separator-icon i {
    font-size: 3rem;
    color: var(--gold);
    transition: all 0.3s ease;
}

.icon-separator .col-md-4:hover .separator-icon i {
    transform: scale(1.1);
    color: #ffd700;
}

.icon-separator h4 {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.icon-separator p {
    opacity: 0.9;
    font-size: 0.95rem;
}

.cta-separator {
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}

.network-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.network-card:hover {
    transform: translateY(-5px);
}

.network-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.network-card h5 {
    color: white;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.network-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

/* ======================================
   FOOTER
   ====================================== */
.footer-section {
    position: relative;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0 !important;
}

.footer-main {
    padding: 80px 0 40px;
    position: relative;
    z-index: 1;
}

.footer-brand h5 {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    color: var(--gold);
}

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

.footer-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.badge-item {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--gold);
}

.badge-item i {
    margin-right: 5px;
}

.footer-title {
    color: white;
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
}

.footer-links a i {
    margin-right: 8px;
    font-size: 0.8rem;
    color: var(--gold);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-contact .contact-item {
    display: flex;
    align-items: start;
    margin-bottom: 15px;
    gap: 12px;
}

.footer-contact .contact-item i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 3px;
}

.footer-contact .contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-social {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
   background: var(--gold);
   border-color: var(--gold);
   color: var(--dark);
   transform: translateY(-3px);
}

.footer-newsletter {
   margin-top: 50px;
   padding-top: 40px;
   border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form .input-group {
   max-width: 500px;
   margin-left: auto;
}

.newsletter-form .form-control {
   background: rgba(255, 255, 255, 0.1);
   border: 1px solid rgba(255, 255, 255, 0.2);
   color: white;
   padding: 12px 20px;
}

.newsletter-form .form-control::placeholder {
   color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control:focus {
   background: rgba(255, 255, 255, 0.15);
   border-color: var(--gold);
   box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
   color: white;
}

.footer-bottom {
   background: rgba(0, 0, 0, 0.2);
   padding: 20px 0;
   border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-legal-link {
   color: rgba(255, 255, 255, 0.6);
   text-decoration: none;
   font-size: 0.9rem;
   transition: color 0.3s ease;
}

.footer-legal-link:hover {
   color: var(--gold);
}

.back-to-top {
   position: fixed;
   bottom: 30px;
   right: 30px;
   width: 50px;
   height: 50px;
   background: var(--gold);
   color: var(--dark);
   border: none;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   opacity: 0;
   visibility: hidden;
   transition: all 0.3s ease;
   z-index: 1000;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.show {
   opacity: 1;
   visibility: visible;
}

.back-to-top:hover {
   background: #ffd700;
   transform: translateY(-5px);
   box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.back-to-top i {
   font-size: 1.2rem;
   font-weight: bold;
}

/* ======================================
  RESPONSIVE STYLES
  ====================================== */
@media (max-width: 991.98px) {
   .content-text {
       padding: 20px 0 0 0;
   }
   
   .content-image {
       padding: 0 0 30px 0;
   }
   
   .stats-section {
       margin-top: -60px;
   }
   
   .stats-container {
       padding: 1.8rem 1.2rem;
   }
}

@media (max-width: 768px) {
   /* Hero adjustments */
   .video-control-btn {
       bottom: 20px;
       left: 20px;
       width: 50px;
       height: 50px;
   }

   .hero-quick-contact {
       margin-top: 1rem !important;
   }
   
   .hero-quick-contact span {
       font-size: 0.8rem;
       display: flex;
       flex-direction: column;
       align-items: center;
   }
   
   .hero-quick-contact .mx-2 {
       display: none;
   }
   
   /* Stats adjustments */
   .stats-title {
       font-size: 1.6rem;
   }
   
   .stat-number {
       font-size: 1.8rem;
   }
   
   .stat-label {
       font-size: 0.8rem;
   }
   
   .stats-container {
       padding: 1.5rem 1rem;
   }
   
   .stats-section {
       margin-top: -40px;
   }
   
   /* Carousel adjustments */
   .carousel-item {
       height: 350px;
   }
   
   .carousel-overlay {
       min-height: 45%;
       padding: 1.5rem 1rem;
   }
   
   .carousel-content {
       padding: 0 1rem;
   }
   
   .carousel-content h3 {
       font-size: 1.5rem;
       margin-bottom: 0.5rem;
   }
   
   .carousel-content p {
       font-size: 0.95rem;
       margin-bottom: 0.8rem;
       line-height: 1.4;
   }
   
   .btn-read-more {
       padding: 0.15rem 0.6rem;
       font-size: 0.85rem;
   }

   .carousel-control-prev,
   .carousel-control-next {
       width: 45px;
       height: 45px;
       background: rgba(256, 0, 0, 0.7);
   }
   
   .carousel-control-prev {
       left: 15px;
   }
   
   .carousel-control-next {
       right: 15px;
   }
   
   .carousel-control-prev i,
   .carousel-control-next i {
       font-size: 18px;
   }
   
   /* Location cards */
   .location-card {
       margin-bottom: 1rem;
   }
   
   .reach-stats {
       padding: 0.75rem;
   }
   
   .reach-stats h4 {
       font-size: 1.2rem;
   }
   
   .cta-box {
       padding: 1rem;
   }
   
   /* Comparison cards */
   .comparison-card {
       font-size: 0.85rem;
   }
   
   .vs-circle {
       width: 35px;
       height: 35px;
       font-size: 0.7rem;
   }
   
   .comparison-content p {
       font-size: 0.8rem;
   }
   
   .trust-badge {
       padding: 0.75rem 0.5rem;
   }
   
   .testimonial-box {
       margin-top: 2rem !important;
   }
   
   /* Footer adjustments */
   .footer-main {
       padding: 60px 0 30px;
   }
   
   .footer-newsletter {
       text-align: center;
   }
   
   .newsletter-form .input-group {
       margin: 20px auto 0;
   }
   
   .footer-bottom {
       text-align: center;
   }
   
   .footer-bottom .text-md-end {
       margin-top: 10px;
   }
   
   .back-to-top {
       width: 45px;
       height: 45px;
       bottom: 20px;
       right: 20px;
   }
}

@media (max-width: 576px) {
   /* Video button */
   .video-control-btn {
       bottom: 15px;
       left: 15px;
       width: 45px;
       height: 45px;
   }
   
   /* Stats */
   .stats-title {
       font-size: 1.4rem;
   }
   
   .stat-number {
       font-size: 1.6rem;
   }
   
   .stat-label {
       font-size: 0.75rem;
   }
   
   /* Carousel */
   .carousel-item {
       height: 300px;
   }
   
   .carousel-overlay {
       min-height: 50%;
   }
   
   .carousel-content h3 {
       font-size: 1.3rem;
   }
   
   .carousel-content p {
       font-size: 0.9rem;
       line-height: 1.3;
   }

   .carousel-control-prev,
   .carousel-control-next {
       width: 40px;
       height: 40px;
   }
   
   .carousel-control-prev {
       left: 10px;
   }
   
   .carousel-control-next {
       right: 10px;
   }
   
   .carousel-control-prev i,
   .carousel-control-next i {
       font-size: 16px;
   }
}



/* ======================================
   SERVICE PAGES SPECIFIC STYLES
   ====================================== */

/* Service Page Hero with Image */
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* Service Navigation Dropdown */
.dropdown-menu {
    background: rgba(26, 54, 93, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
}

.dropdown-item:hover,
.dropdown-item.active {
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
}

.dropdown-item:focus {
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
}

/* Service Page Specific Layouts */
.service-hero-content {
    position: relative;
    z-index: 1;
}

/* Process Steps Styling */
.process-step {
    position: relative;
    margin-bottom: 2rem;
}

.process-step::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -1rem;
    width: 2px;
    height: 2rem;
    background: var(--gold);
    transform: translateX(-50%);
}

.process-step:last-child::before {
    display: none;
}

/* Regional Cards */
.regional-card {
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
    position: relative;
}

.regional-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.regional-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.regional-card:hover::before {
    opacity: 1;
}

/* Service Feature Lists */
.service-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-feature-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: #6c757d;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.service-feature-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

/* Service Stats Enhancement */
.service-stats-container {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-radius: 3px;
    padding: 2.5rem 2rem;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 15px 35px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-stats-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* Service CTA Enhancements */
.service-cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    position: relative;
    overflow: hidden;
}

.service-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

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

/* Responsive Adjustments for Service Pages */
@media (max-width: 768px) {
    .service-stats-container {
        padding: 2rem 1.5rem;
    }
    
    .process-step::before {
        display: none;
    }
    
    .dropdown-menu {
        margin-top: 0.5rem;
    }
}

@media (max-width: 576px) {
    .service-stats-container {
        padding: 1.5rem 1rem;
    }
    
    .service-feature-list li {
        font-size: 0.85rem;
        padding-left: 1.5rem;
    }
}

/* Service Page Typography Enhancements */
.service-page-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.service-page-subtitle {
    font-family: 'Newsreader', serif;
    font-style: italic;
    opacity: 0.9;
}

.service-section-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto;
}

/* Icon Animations for Service Pages */
.service-icon-animate {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.regional-card:hover .service-icon-animate {
    transform: scale(1.15) rotate(-5deg);
}


/* ======================================
   REDESIGNED "WHAT WE DO" SERVICE CARDS
   ====================================== */
.service-card-large {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 7px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden; /* Ensures the image corners are rounded */
}

.service-card-large:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card-large .card-img-top {
    width: 100%;
    /* height: 250px; */
    /* background-position: center; */
    /* background-size: cover; */
    object-fit:cover;
}

.service-card-large .card-body {
    padding: 1.75rem;
}

.service-card-large .card-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.service-card-large .service-subtitle {
    font-size: 0.95rem;
    font-weight: 700;
    color: #4a5568;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    border-bottom: 2px solid #cbd5e0;
    padding-bottom: 0.25rem;
}

.service-card-large ul {
    margin-top: 0.5rem;
}


/* ======================================
   CONTACT PAGE CARD STYLES
   ====================================== */
.contact-card {
    /* Custom enhancements for the default Bootstrap card */
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.contact-card .card-header {
    /* Adding flex properties to the default card-header for alignment */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-card-icon {
    font-size: 1.2rem;
    color: var(--primary);
    margin-top: 4px;
}

.contact-card.coming-soon {
    background-color: #f8f9fa;
    border-style: dashed;
}

/* ======================================
   NAVBAR ENHANCEMENTS (Final Version)
   ====================================== */

.navbar,
.navbar .nav-link,
.navbar-brand,
.dropdown-menu,
.dropdown-item {
    font-family: 'Manrope', sans-serif;
}

/* Base styling for all nav links */
.navbar .nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: 1px;
    padding: 0 1rem;
    position: relative;
    transition: color 0.3s ease-in-out;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* Hover / active states */
.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--white);
    text-decoration: none;
}

/* Underline effect for regular links */
.navbar .nav-link:not(.dropdown-toggle)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.navbar .nav-link:not(.dropdown-toggle):hover::after,
.navbar .nav-link:not(.dropdown-toggle).active::after {
    width: 70%;
}

/* Underline effect for dropdown links */
.navbar .nav-link.dropdown-toggle::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.navbar .nav-link.dropdown-toggle:hover::before,
.navbar .nav-link.dropdown-toggle.active::before {
    width: 70%;
}

/* Subtle text shadow for better contrast on transparent backgrounds */
.navbar .nav-link,
.navbar-brand {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6); /* Soft shadow below text */
}

/* Optional: slightly stronger for hovered or active links */
.navbar .nav-link:hover,
.navbar .nav-link.active {
    text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.7);
}

.navbar-brand .brand-text {
    text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.4);
}