/* ==========================================
   GOOGLE FONTS - INTER (Professional)
   ========================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ==========================================
   GLOBAL RESET & BASE
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  background: var(--bg-primary);
  color: var(--text-primary);
  transition: background 0.3s ease, color 0.3s ease;
}
/* ==========================================
   THEME VARIABLES - LIGHT (Enterprise Clean)
   ========================================== */

:root {

  --bg-primary: #f4f4f5;
  --bg-secondary: #ececec;
  --bg-card: #ffffff;
  --bg-input: #ededed;
  --bg-navbar: rgba(255, 255, 255, 0.97);
  --bg-footer: #18181b;
  

  --text-primary: #18181b;
  --text-secondary: #52525b;
  --text-muted: #a1a1aa;
  --text-white: #ffffff;
  --text-dark: #18181b;
  
  /* Borders - Soft Warm Gray */
  --border-color: #e4e4e7;
  --border-light: #f4f4f5;
  --border-dark: #27272a;
  
  
  --accent-blue: #18181b;
  --accent-cyan: #0284c7;
  --accent-purple: #52525b;
  --accent-glow: rgba(2, 132, 199, 0.06);
  --theme-cyan: #0284c7;
  --theme-blue: #18181b;
  --theme-purple: #52525b;
  --theme-navy: #18181b;
  --theme-accent-glow: rgba(2, 132, 199, 0.04);
  

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.1);
  
  
  --gradient-hero: linear-gradient(180deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.88) 100%);
  --gradient-btn: linear-gradient(135deg, #18181b 0%, #27272a 100%);
  --gradient-btn-hover: linear-gradient(135deg, #27272a 0%, #3f3f46 100%);
  --gradient-text: linear-gradient(135deg, #18181b 0%, #0284c7 100%);
  

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-xxl: 20px;
}


[data-theme="dark"] {
  /* Backgrounds - True Dark (Not Navy Blue) */
  --bg-primary: #09090b;
  --bg-secondary: #18181b;
  --bg-card: #18181b;
  --bg-input: #27272a;
  --bg-navbar: rgba(9, 9, 11, 0.95);
  --bg-footer: #09090b;
  
  /* Text Colors */
  --text-primary: #fafafa;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --text-white: #ffffff;
  --text-dark: #fafafa;
  
  /* Borders */
  --border-color: #27272a;
  --border-light: #3f3f46;
  --border-dark: #18181b;
  

  --accent-blue: #fafafa;
  --accent-cyan: #38bdf8;
  --accent-purple: #a1a1aa;
  --accent-glow: rgba(56, 189, 248, 0.05);
   --theme-cyan: #0284c7;
  --theme-blue: #fafafa;
  --theme-purple: #38bdf8;
  --theme-accent-glow: rgba(56, 189, 248, 0.03);
  

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 24px 56px rgba(0, 0, 0, 0.6);
  
 
  --gradient-hero: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.9) 100%);
  --gradient-btn: linear-gradient(135deg, #fafafa 0%, #d4d4d8 100%);
  --gradient-btn-hover: linear-gradient(135deg, #e4e4e7 0%, #fafafa 100%);
  --gradient-text: linear-gradient(135deg, #fafafa 0%, #38bdf8 100%);
}
/* ==========================================
   THEME TOGGLE BUTTON
   ========================================== */
.theme-toggle-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border-color);
  background: var(--bg-secondary);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  margin-right: 10px;
  flex-shrink: 0;
}

.theme-toggle-btn:hover {
  border-color: var(--accent-cyan);
  transform: rotate(20deg) scale(1.05);
  box-shadow: 0 0 20px var(--accent-glow);
}

.theme-toggle-btn i {
  transition: transform 0.4s ease;
}

[data-theme="dark"] .theme-toggle-btn i {
  transform: rotate(360deg);
}



/* ==========================================
   NAVBAR - DARK WITH GREEN BUTTON (FIXED)
   ========================================== */

/* ===== NAVBAR CONTAINER ===== */
.navbar {
  background: #0a0a0f !important;
  min-height: 80px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3) !important;
  padding: 12px 0;
  z-index: 1050;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  transition: all 0.3s ease;
}

/* ===== LOGO - White ===== */
.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ===== NAV BUTTONS ===== */
.nav-btn {
  background: transparent;
  color: rgba(255, 255, 255, 0.7) !important;
  border: none;
  font-size: 1px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 8px 8px;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 6px;
}

.nav-btn:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.06);
}

/* Underline Effect - Green */
.nav-btn::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 4px;
  left: 50%;
  background-color: #0d9488 !important;  
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-btn:hover::after {
  width: 60%;
}

/* ===== THEME TOGGLE ===== */
.theme-toggle-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px !important;
  transition: all 0.3s ease;
  padding: 0;
}

.theme-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #0d9488 !important;  
  transform: rotate(20deg);
}

/* ===== EXPLORE SERVICES BUTTON ===== */
.e-nav-talk-btn {
  background: var(--theme-cyan) !important;  
  color: #ffffff !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 9px !important;
  font-weight: 700 !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase;
  height: 35px;
  padding: 0 8px !important;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(13, 148, 136, 0.3) !important;  
}

.nav-talk-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(13, 148, 136, 0.5) !important;
  background: #0f9d8f !important;  
  color: #ffffff !important;
}

/* ===== BURGER BUTTON ===== */
.burger-btn {
  padding: 6px 10px !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.burger-icon {
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.8) !important;
  transition: color 0.3s ease;
}

.burger-btn:hover .burger-icon {
  color: #ffffff !important;
}

.burger-btn:focus,
.burger-btn:active,
.burger-btn:focus-visible {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

/* ==========================================
   MOBILE RESPONSIVE
   ========================================== */
@media (max-width: 991px) {
  .mobile-nav-actions {
    display: flex !important;
    align-items: center;
    gap: 10px;
  }

  .center-nav-container {
    flex-direction: column;
    align-items: flex-start !important;
    padding: 15px 0;
    gap: 4px !important;
    width: 100%;
  }

  .nav-btn {
    width: 100%;
    text-align: left;
    padding: 10px 14px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8) !important;
  }

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

  .nav-btn:hover {
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff !important;
  }

  .right-nav-container {
    margin-top: 10px;
    margin-bottom: 15px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .nav-talk-btn {
    width: 100%;
    justify-content: center;
  }

  /* Mobile Menu */
  .navbar-collapse {
    background: #0a0a0f;
    padding: 10px 20px 20px 0px;
    border-radius: 12px;
    margin-top: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
  }
}





/* ==========================================
   HERO SECTION - VIDEO BACKGROUND & CLEAN LAYOUT
========================================== */
.hero-section-ultra {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 0 80px 0;
  background: #07070d;
}

/* ===== VIDEO BACKGROUND & DARK OVERLAY ===== */
.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Dark Overlay for Text Readability */
.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(7, 7, 13, 0.75) 0%,
    rgba(7, 7, 13, 0.85) 50%,
    rgba(7, 7, 13, 0.95) 100%
  );
  backdrop-filter: blur(2px); 
}

/* ===== CONTENT STYLING ===== */
.hero-container-ultra {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content-ultra {
  text-align: center;
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* ===== TITLE ===== */
.hero-title-ultra {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -1.5px;
  margin: 0;
}

.text-gradient-ultra {
  background: linear-gradient(135deg, #ffffff 0%, #0284c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* ===== SUBTITLE ===== */
.hero-sub-ultra {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  font-weight: 400;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  max-width: 780px;
  margin: 0;
}

/* ===== BUTTONS ===== */
.hero-btn-group-ultra {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.hero-btn-primary-ultra {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 38px;
  background: #0284c7;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-btn-primary-ultra:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(2, 132, 199, 0.4);
  background: #0369a1;
  color: #ffffff;
}

.hero-btn-secondary-ultra {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.hero-btn-secondary-ultra:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  transform: translateY(-2px);
}

.hero-btn-secondary-ultra i {
  font-size: 1.1rem;
  color: #0284c7;
}

/* ===== ENTERPRISE TRUST GRID ===== */
.hero-trust-ultra {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 1100px;
  margin-top: 32px;
}

.trust-card-ultra {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  text-align: left;
  transition: all 0.3s ease;
}

.trust-card-ultra:hover {
  border-color: #0284c7;
  transform: translateY(-3px);
  background: rgba(15, 23, 42, 0.85);
}

.trust-icon-box {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 8px;
  background: rgba(2, 132, 199, 0.15);
  color: #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.trust-content h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.trust-content p {
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  line-height: 1.4;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero-trust-ultra {
    grid-template-columns: repeat(1, 1fr);
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .hero-section-ultra {
    padding: 80px 0 50px 0;
  }
  .hero-btn-group-ultra {
    flex-direction: column;
    width: 100%;
  }
  .hero-btn-primary-ultra,
  .hero-btn-secondary-ultra {
    width: 100%;
    justify-content: center;
  }
}
/* ==========================================
   MISSION, VISION, VALUES
   ========================================== */
.mission-vision-section {
  background: var(--bg-primary);
  padding: 90px 0;
  transition: background 0.3s ease;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--accent-cyan);
  background: rgba(0, 212, 255, 0.08);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
  border: 1px solid rgba(0, 212, 255, 0.1);
}

.mission-vision-section .section-header h2 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.mission-vision-section .highlight-text {
  color: var(--accent-cyan);
}

.mission-vision-section .section-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto 50px auto;
  line-height: 1.7;
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.mv-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
}

.mv-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-md);
}

.mv-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.08);
  border: 2px solid rgba(0, 212, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  font-size: 1.5rem;
  color: var(--accent-cyan);
  transition: all 0.3s ease;
}

.mv-card:hover .mv-icon {
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
  color: #ffffff;
}

.mv-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.mv-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 991px) {
  .mv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .mv-grid {
    grid-template-columns: 1fr;
  }
  .mv-card {
    padding: 30px 20px;
  }
}


/* ==========================================
   CLIENT SECTION - THEME AWARE
   ========================================== */
.client-section {
    background: var(--bg-secondary);
    padding: 70px 0;
    overflow: hidden;
    width: 100%;
    transition: background 0.3s ease;
}

.client-container {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* --- Header Styling --- */
.client-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
    width: 70%;
  margin: 0 auto;
}

.client-header h2 {
  font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 900;
    color: var(--text-primary);
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
    line-height: 1.3;
    text-transform: uppercase;
}

.client-header .highlight-text {
    color: var(--accent-cyan) !important;
    transition: color 0.3s ease;
}

.client-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
    margin: 12px auto 0 auto;
    border-radius: 4px;
    transition: background 0.3s ease;
}

/* --- Infinite Slider Wrapper --- */
.slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 15px 0;
}

/* --- Logo Track --- */
.logo-track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    animation: scrollMarquee 35s linear infinite;
}

.logo-track:hover {
    animation-play-state: paused;
}

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

/* --- Logo Cards (No BG, Uniform Fit) --- */
.logo-card {
    width: 180px;
    height: 90px;
    background: transparent;
    border: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-sizing: border-box;
    cursor: pointer;
    flex-shrink: 0;
}

/* Image Styling: Equal Bounding Box Box-Fitting */
.logo-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                filter 0.3s ease;
    background: transparent;
    /* filter: grayscale(0.2) brightness(0.95); */
}

/* Dark Theme ke liye image thoda bright */
[data-theme="dark"] .logo-card img {
    /* filter: grayscale(0.1) brightness(1.1); */
}

/* Clean Zoom-in Effect on Hover */
.logo-card:hover img {
    transform: scale(1.15);
    /* filter: grayscale(0) brightness(1); */
}

/* Custom sizing class for naturally wide/horizontal logos */
.logo-card img.logo-wide {
    width: 85%;
    height: auto;
}

/* Custom sizing class for compact/square/circle logos */
.logo-card img.logo-compact {
    max-height: 70%;
    width: auto;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .logo-card {
        width: 140px;
        height: 70px;
        padding: 8px;
    }
    .logo-track {
        gap: 24px;
    }
    .client-header{
      width: 100%;
    }
}

@media (max-width: 480px) {
    .logo-card {
        width: 110px;
        height: 60px;
        padding: 5px;
    }
    .logo-track {
        gap: 16px;
    }
}


/* ==========================================
   WHY CHOOSE US + ACHIEVEMENTS (MERGED)
   ========================================== */
.why-enterprise-section {
  background: var(--bg-primary);
  padding: 90px 0 80px 0;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}

/* ===== HEADER ===== */
.enterprise-header {
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.enterprise-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-cyan);
  background: rgba(0, 212, 255, 0.08);
  padding: 8px 22px;
  border-radius: 50px;
  border: 1px solid rgba(0, 212, 255, 0.12);
  margin-bottom: 16px;
}

.enterprise-badge i {
  font-size: 0.85rem;
}

.enterprise-header h2 {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.enterprise-header .highlight-text {
  color: var(--accent-cyan);
}

.header-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== ENTERPRISE CARDS GRID ===== */
.enterprise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

/* ===== ENTERPRISE CARD ===== */
.enterprise-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 30px 28px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.enterprise-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.enterprise-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-lg);
}

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

/* Card Top Row */
.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.card-icon-wrapper {
  position: relative;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent-cyan);
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.enterprise-card:hover .card-icon {
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
  color: #ffffff;
  transform: scale(1.05);
}

.card-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text-muted);
  opacity: 0.12;
  letter-spacing: -2px;
  line-height: 1;
  transition: all 0.4s ease;
}

.enterprise-card:hover .card-number {
  opacity: 0.25;
  transform: translateX(4px);
}

/* Card Content */
.enterprise-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.enterprise-card h6 {
  /* font-size: 1.15rem; */
  font-weight: 800;
  color: var(--accent-cyan);
  margin-bottom: 10px;
  line-height: 1.3;
}

.enterprise-card > p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 0;
}

.card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  flex-grow: 1;
}

.card-features li {
  font-size: 0.82rem;
  color: var(--text-secondary);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}

.card-features li i {
  color: var(--accent-cyan);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.card-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  align-self: flex-start;
}

.enterprise-card:hover .card-trust-badge {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  background: rgba(0, 212, 255, 0.04);
}

.card-trust-badge i {
  color: var(--accent-cyan);
  font-size: 0.7rem;
}

/* ===== TRACK RECORD DIVIDER ===== */
.track-record-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 45px;
  position: relative;
  z-index: 2;
}

.divider-line {
  flex: 1;
  max-width: 100px;
  height: 1px;
  background: var(--border-color);
}

.divider-text {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ===== ACHIEVEMENTS STATS ===== */
.achievements-merged {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 36px 16px;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.achievements-merged:hover {
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-md);
}

.stat-item {
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid var(--border-color); /* Elegant Divider */
}

/* Last item ke baad divider ki zaroorat nahi */
.stat-item:last-child {
  border-right: none;
}

.stat-number-wrapper {
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-number {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--accent-cyan);
  line-height: 1.1;
  letter-spacing: -1px;
}

.plus-sign {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-cyan);
  margin-left: 2px;
  line-height: 1.1;
}

.stat-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.stat-desc {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.4;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .achievements-merged {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 0;
    padding: 28px 16px;
  }
  
  /* 2x2 grid ke liye dividers adjustment */
  .stat-item {
    border-right: 1px solid var(--border-color);
    padding: 12px 8px;
  }
  
  /* 2nd aur 4th item ka right border khatam */
  .stat-item:nth-child(2n) {
    border-right: none;
  }

  /* Pehle 2 items ke neeche halka divider */
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
  
  .plus-sign {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {

  .enterprise-grid {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .achievements-merged {
    grid-template-columns: 1fr; /* Mobile par clean single column layout */
    gap: 20px;
    padding: 20px 16px;
  }
  
  .stat-item {
    border-right: none !important;
    border-bottom: 1px solid var(--border-color);
    padding: 0 0 16px 0 !important;
  }
  
  .stat-item:last-child {
    border-bottom: none !important;
    padding-bottom: 0 !important;
  }

  .stat-number {
    font-size: 1.8rem;
  }
  
  .plus-sign {
    font-size: 1.4rem;
  }
  
  .stat-label {
    font-size: 0.82rem;
  }
  
  .stat-desc {
    font-size: 0.7rem;
  }
}

/* ==========================================
   OUR VENTURES / PARTNERS - PREMIUM
   ========================================== */
.ventures-partners-section {
  background: var(--bg-secondary);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}

/* Subtle Background Decoration */
.ventures-partners-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

.ventures-partners-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.03) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

/* ===== HEADER ===== */
.ventures-header {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.ventures-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-cyan);
  background: rgba(0, 212, 255, 0.08);
  padding: 8px 22px;
  border-radius: 50px;
  border: 1px solid rgba(0, 212, 255, 0.12);
  margin-bottom: 16px;
}

.ventures-badge i {
  font-size: 0.85rem;
}

.ventures-header h2 {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.ventures-header .highlight-text {
  color: var(--accent-cyan);
}

.ventures-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 24px auto;
  line-height: 1.7;
}

.ventures-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-cyan), transparent);
  margin: 0 auto;
  border-radius: 4px;
}

/* ===== PARTNERS GRID ===== */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}

/* ===== PARTNER CARD ===== */
.partner-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xxl);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
}

/* Glow Effect on Hover */
.partner-glow {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.partner-card:hover .partner-glow {
  opacity: 1;
}

/* Card Hover */
.partner-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-cyan);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* ===== CARD CONTENT ===== */
.partner-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* ===== LOGO - FIXED FOR DARK THEME ===== */
.partner-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.partner-logo-box {
  width: 120px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.partner-logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(0.2) brightness(0.95);
  transition: all 0.4s ease;
}

/* ===== DARK THEME - LOGO WHITE ===== */
[data-theme="dark"] .partner-logo-box img {
  /* filter: brightness(0) invert(1) !important; */
}

/* ===== LIGHT THEME - LOGO NORMAL ===== */
[data-theme="light"] .partner-logo-box img {
  filter: grayscale(0.2) brightness(0.95) !important;
}

.partner-card:hover .partner-logo-box img {
  filter: grayscale(0) brightness(1) !important;
}

[data-theme="dark"] .partner-card:hover .partner-logo-box img {
  filter: brightness(0) invert(1) !important;
}

.partner-badge {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-cyan);
  background: rgba(0, 212, 255, 0.08);
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid rgba(0, 212, 255, 0.1);
  white-space: nowrap;
  transition: all 0.3s ease;
}

.partner-card:hover .partner-badge {
  background: var(--accent-cyan);
  color: #ffffff;
  border-color: var(--accent-cyan);
}

/* ===== TITLE ===== */
.partner-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.partner-card:hover .partner-title {
  color: var(--accent-cyan);
}

/* ===== DESCRIPTION ===== */
.partner-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* ===== HIGHLIGHTS (VERTICAL BLOCK LIST) ===== */
.partner-highlights {
  display: flex;
  flex-direction: column; 
  gap: 8px; 
  margin-bottom: 24px;
}

.highlight-tag {
  display: inline-flex !important; 
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 5px 14px;
  border-radius: 20px; 
  width: 100%; 
  box-sizing: border-box;
  transition: all 0.25s ease;
}

.partner-card:hover .highlight-tag {
  border-color: rgba(37, 99, 235, 0.25);
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.highlight-tag i {
  color: var(--accent-cyan, #2563eb);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ===== VISIT BUTTON ===== */
.partner-visit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 14px 28px;
  background: var(--bg-primary);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

/* Button Hover Effect */
.partner-visit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.partner-visit-btn:hover::before {
  left: 100%;
}

.partner-visit-btn:hover {
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.partner-visit-btn i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.partner-visit-btn:hover i {
  transform: translate(3px, -3px);
}

/* Dark Theme Button */
[data-theme="dark"] .partner-visit-btn {
  background: var(--bg-input);
  border-color: var(--border-color);
  color: var(--text-white);
}

[data-theme="dark"] .partner-visit-btn:hover {
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
  color: var(--bg-primary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .partners-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  
  .partner-card {
    padding: 32px 28px;
  }
  
  .partner-logo-box {
    width: 100px;
    height: 60px;
  }
}

@media (max-width: 576px) {
  .ventures-partners-section {
    padding: 60px 0;
  }
  
  .partner-card {
    padding: 24px 18px;
    border-radius: var(--radius-xl);
  }
  
  .partner-logo-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .partner-logo-box {
    width: 100%;
    height: 50px;
    justify-content: start;
  }
  
  .partner-title {
    font-size: 1.25rem;
  }
  
  .partner-description {
    font-size: 0.88rem;
  }
  
  .partner-highlights {
    gap: 6px;
  }
  
  .highlight-tag {
    font-size: 0.7rem;
    padding: 4px 10px;
  }
  
  .partner-visit-btn {
    padding: 12px 20px;
    font-size: 0.8rem;
  }
}

/* ==========================================
   SERVICES SECTION - FIXED
   ========================================== */
.services-section {
  background: var(--bg-primary);
  padding: 100px 0;
  transition: background 0.3s ease;
}

.services-header h2 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  width: 70%;
  text-transform: uppercase;
  margin: 0 auto;
}

.services-header .highlight-text {
  color: var(--accent-cyan);
}

.services-header .sub-text {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 16px auto 60px auto;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  padding: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-md);
}

.card-front-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  transition: opacity 0.3s ease;
}

.card-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.card-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.12);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.badge-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-secondary);
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  padding: 4px 12px;
  border-radius: 30px;
}

.card-visual-box {
  width: 100%;
  height: 140px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-card) 100%);
  border: 1px dashed rgba(0, 212, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.card-visual-box::before {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--accent-cyan);
  opacity: 0.08;
  filter: blur(30px);
  border-radius: 50%;
  transition: all 0.35s ease;
}

.visual-icon {
  font-size: 2.8rem;
  color: var(--accent-cyan);
  opacity: 0.85;
  transition: all 0.35s ease;
  z-index: 2;
}

.service-card:hover .card-visual-box {
  border-color: var(--accent-cyan);
  background: rgba(0, 212, 255, 0.04);
}

.service-card:hover .card-visual-box::before {
  opacity: 0.2;
  transform: scale(1.3);
}

.service-card:hover .visual-icon {
  transform: scale(1.12);
  opacity: 1;
}

.card-bottom-info h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.focus-label {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

.focus-label span {
  color: var(--accent-cyan);
  font-weight: 700;
}

.card-hover-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-card);
  padding: 24px;
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 5;
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.4s;
}

.service-card:hover .card-hover-content {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.hover-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hover-header h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.3;
}

.details-badge {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: var(--accent-cyan);
  background: rgba(0, 212, 255, 0.08);
  padding: 3px 10px;
  border-radius: 20px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.feature-list li {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}

.feature-list li i {
  color: var(--accent-cyan);
  font-size: 0.95rem;
}

.explore-btn {
  width: 100%;
  background: var(--gradient-btn);
  color: var(--text-white) !important;
  text-align: center;
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
  letter-spacing: 0.3px;
}

.explore-btn:hover {
  background: var(--gradient-btn-hover);
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.4);
}

/* ===== FIX: Only show first 3 cards ===== */
.services-grid .service-card:nth-child(n+4) {
  display: none;
}

.services-grid.show-all .service-card:nth-child(n+4) {
  display: flex;
  animation: fadeIn 0.4s ease-in-out;
}

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

.load-more-btn {
  background: var(--bg-secondary);
  color: var(--accent-cyan);
  border: 2px solid var(--accent-cyan);
  padding: 12px 32px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.08);
  text-decoration: none !important;
}

.load-more-btn:hover {
  background: var(--accent-cyan);
  color: var(--bg-primary);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.25);
  transform: translateY(-2px);
}

.load-more-btn.active i {
  transform: rotate(180deg);
}

.mt-5 { margin-top: 40px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .services-grid { 
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media (max-width: 991px) {
  .services-grid { 
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  /* Show 2 cards on tablet */
  .services-grid .service-card:nth-child(n+3) {
    display: none;
  }
  .services-grid.show-all .service-card:nth-child(n+3) {
    display: flex;
  }
}

@media (max-width: 576px) {
  .services-header h2{
    width: 100% !important;
  }
  .services-grid { 
    grid-template-columns: 1fr;
    gap: 20px;
  }
  /* Show 1 card on mobile */
  .services-grid .service-card:nth-child(n+2) {
    display: none;
  }
  .services-grid.show-all .service-card:nth-child(n+2) {
    display: flex;
  }
}

/* ==========================================
   INDUSTRIES SECTION - DARK PREMIUM
   ========================================== */
.industries-section-dark {
  background: linear-gradient(165deg, #0a0a0f 0%, #14141e 40%, #0d0d14 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* Subtle Background Glow */
.industries-section-dark::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

.industries-section-dark::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.03) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

/* ===== HEADER ===== */
.industries-header-dark {
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.industries-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-cyan);
  background: rgba(0, 212, 255, 0.08);
  padding: 6px 20px;
  border-radius: 50px;
  border: 1px solid rgba(0, 212, 255, 0.1);
  margin-bottom: 14px;
}

.industries-header-dark h2 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.industries-header-dark .highlight-text {
  color: var(--accent-cyan);
  position: relative;
}


.industries-sub-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== GRID ===== */
.industries-grid-dark {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 50px 0;
  position: relative;
  z-index: 2;
}

/* ===== CARD ===== */
.industry-card-dark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 30px 26px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  min-height: 220px;
  text-decoration: none !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

/* Card Glow on Hover */
.industry-card-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Top Border Glow */
.industry-card-dark::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.industry-card-dark:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 212, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.industry-card-dark:hover::before {
  opacity: 1;
}

.industry-card-dark:hover::after {
  opacity: 1;
}

/* ===== ICON ===== */
.industry-icon-box-dark {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.industry-icon-box-dark i {
  font-size: 1.4rem;
  color: var(--accent-cyan);
  transition: color 0.4s ease;
}

.industry-card-dark:hover .industry-icon-box-dark {
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
  transform: scale(1.05) rotate(-4deg);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.2);
}

.industry-card-dark:hover .industry-icon-box-dark i {
  color: #ffffff;
}

/* ===== TITLE ===== */
.industry-title-dark {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.industry-card-dark:hover .industry-title-dark {
  color: var(--accent-cyan);
}

/* ===== DESCRIPTION ===== */
.industry-desc-dark {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 18px 0;
  line-height: 1.5;
  flex-grow: 1;
}

.industry-card-dark:hover .industry-desc-dark {
  color: rgba(255, 255, 255, 0.7);
}

/* ===== ACTION ===== */
.card-action-dark {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.card-action-dark i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.industry-card-dark:hover .card-action-dark {
  color: var(--accent-cyan);
}

.industry-card-dark:hover .card-action-dark i {
  transform: translateX(6px);
}

/* ===== HIDDEN CARDS ===== */
.industry-card-dark.hidden-card-dark {
  display: none !important;
}

.industries-grid-dark.show-all .industry-card-dark.hidden-card-dark {
  display: flex !important;
  animation: fadeInDark 0.5s ease forwards;
}

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

/* ===== BUTTON ===== */
.btn-explore-dark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 40px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  background: transparent;
  border: 2px solid rgba(0, 212, 255, 0.25);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

/* Button Shine Effect */
.btn-explore-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.btn-explore-dark:hover::before {
  left: 100%;
}

.btn-explore-dark:hover {
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(0, 212, 255, 0.15);
}

.btn-explore-dark:hover i {
  transform: translateX(6px);
}

/* Dark Theme Compatibility */
[data-theme="dark"] .industries-section-dark {
  background: linear-gradient(165deg, #060608 0%, #0f0f1a 40%, #08080e 100%);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
  .industries-grid-dark {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .industries-grid-dark {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  
  .industry-card-dark {
    padding: 24px 20px;
    min-height: 190px;
  }
}

@media (max-width: 576px) {
  .industries-section-dark {
    padding: 60px 0;
  }
  
  .industries-grid-dark {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  
  .industry-card-dark {
    padding: 18px 14px;
    min-height: 160px;
    border-radius: var(--radius-lg);
  }
  
  .industry-icon-box-dark {
    width: 44px;
    height: 44px;
  }
  
  .industry-icon-box-dark i {
    font-size: 1.1rem;
  }
  
  .industry-title-dark {
    font-size: 0.95rem;
  }
  
  .industry-desc-dark {
    font-size: 0.75rem;
    margin-bottom: 12px;
  }
  
  .card-action-dark {
    font-size: 0.7rem;
  }
  
  .btn-explore-dark {
    padding: 12px 24px;
    font-size: 0.75rem;
  }
}

@media (max-width: 400px) {
  .industries-grid-dark {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  
  .industry-card-dark {
    padding: 14px 10px;
    min-height: 140px;
  }
  
  .industry-icon-box-dark {
    width: 38px;
    height: 38px;
  }
  
  .industry-icon-box-dark i {
    font-size: 0.9rem;
  }
  
  .industry-title-dark {
    font-size: 0.82rem;
  }
  
  .industry-desc-dark {
    display: none;
  }
}

/* ==========================================
   JOURNEYS SECTION
   ========================================== */
.journeys-section {
  background: var(--bg-secondary);
  padding: 90px 0;
  width: 100%;
  transition: background 0.3s ease;
}

.journeys-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.journeys-wrapper .left-text {
  flex: 0 0 38%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.journeys-wrapper .left-text h2 {
  font-size: clamp(2rem, 2.5vw, 2.75rem);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.journeys-wrapper .highlight-text {
  color: var(--accent-cyan);
}

.journeys-wrapper .left-text p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

.journeys-wrapper .right-cards {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.journeys-wrapper .card {
  position: relative;
  height: 150px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  align-items: flex-end;
  padding: 18px;
}

.journeys-wrapper .card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.journeys-wrapper .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.05) 0%, rgba(15, 23, 42, 0.85) 100%);
  transition: background 0.3s ease;
  z-index: 1;
}

.journeys-wrapper .card h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  line-height: 1.3;
}

.journeys-wrapper .card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-md);
}

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

.journeys-wrapper .card:hover .card-overlay {
  background: linear-gradient(180deg, rgba(2, 132, 199, 0.2) 0%, rgba(15, 23, 42, 0.9) 100%);
}

@media (max-width: 991px) {
  .journeys-wrapper { flex-direction: column; gap: 36px; }
  .journeys-wrapper .left-text { flex: 100%; text-align: center; align-items: center; }
  .journeys-wrapper .right-cards { width: 100%; }
}
@media (max-width: 576px) {
  .journeys-wrapper .right-cards { grid-template-columns: repeat(2, 1fr); }
  .journeys-wrapper .card { height: 130px; }
}


/* ==========================================
   CAREERS SECTION - FIXED
   ========================================== */
.careers-section {
  background: var(--bg-secondary);
  padding: 100px 0;
  width: 100%;
  transition: background 0.3s ease;
}

.careers-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
}

/* ===== LEFT VIDEO ===== */
.careers-left {
  flex: 0 0 46%;
  width: 46%;
}

.careers-left .video-box {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 480px;
  border-radius: var(--radius-xxl);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  background: var(--bg-primary);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.careers-left .video-box:hover {
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-md);
}

.careers-left .main-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Video Badge */
.video-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

[data-theme="dark"] .video-badge {
  background: rgba(19, 26, 34, 0.9);
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.1);
}

.video-badge.bottom-left {
  bottom: 20px;
  left: 20px;
}

.video-badge i {
  color: var(--accent-cyan);
}

/* ===== RIGHT CONTENT ===== */
.careers-right {
  flex: 0 0 50%;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.careers-right h2 {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

.careers-right .highlight-text {
  color: var(--accent-cyan);
  transition: color 0.3s ease;
}

.careers-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 28px;
  transition: color 0.3s ease;
}

/* ===== HIGHLIGHT CARDS - FIXED ===== */
.careers-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
  margin-bottom: 32px;
}

.highlight-card {
  background: var(--bg-primary) !important;
  border: 1px solid var(--border-color) !important;
  padding: 16px 14px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.highlight-card:hover {
  background: var(--bg-card);
  border-color: var(--accent-cyan);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.highlight-icon i {
  font-size: 1.2rem;
  color: var(--accent-cyan);
  transition: color 0.3s ease;
}

.highlight-card:hover .highlight-icon i {
  color: var(--accent-blue);
}

.highlight-info h4 {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 2px 0;
  transition: color 0.3s ease;
}

.highlight-info p {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.highlight-card:hover .highlight-info h4 {
  color: var(--accent-cyan);
}

/* ===== ACTION BUTTON - FIXED ===== */
.careers-action {
  width: 100%;
}

.careers-explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 38px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-primary);
  background: transparent;
  border: 2px solid var(--accent-cyan) !important;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

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

/* Button Hover Effect */
.careers-explore-btn:hover {
  color: var(--text-white);
  border-color: var(--accent-cyan);
  background: var(--accent-cyan);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--accent-glow);
}

.careers-explore-btn:hover i {
  transform: translateX(6px);
}

/* Dark Theme Button Specific */
[data-theme="dark"] .careers-explore-btn {
  color: var(--text-white);
  border-color: var(--border-color);
}

[data-theme="dark"] .careers-explore-btn:hover {
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
  color: var(--bg-primary);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.25);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .careers-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  
  .careers-left,
  .careers-right {
    flex: 100%;
    width: 100%;
  }
  
  .careers-left .video-box {
    max-height: 380px;
  }
  
  .careers-right {
    align-items: center;
    text-align: center;
  }
  
  .careers-action {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .careers-highlights {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .careers-explore-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }
}

@media (max-width: 576px) {
  .careers-section {
    padding: 60px 0;
  }
  
  .careers-left .video-box {
    aspect-ratio: 4 / 3;
    max-height: 280px;
  }
  
  .careers-right h2 {
    font-size: 1.8rem;
  }
}
/* ==========================================
   INSIGHTS SECTION
   ========================================== */
.insights-section {
  background: var(--bg-primary);
  padding: 95px 0;
  width: 100%;
  transition: background 0.3s ease;
}

.insights-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px auto;
}

.insights-header h2 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.insights-header .highlight-text {
  color: var(--accent-cyan);
}

.insights-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 36px;
  align-items: stretch;
}

.left-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  position: relative;
}

.feature-card:hover,
.feature-card.active {
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feature-card.active {
  border-left: 4px solid var(--accent-cyan);
}

.feature-badge {
  font-size: 1.1rem;
  color: var(--accent-cyan);
  background: rgba(0, 212, 255, 0.08);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 212, 255, 0.12);
}

.feature-card:hover .feature-badge,
.feature-card.active .feature-badge {
  background: var(--accent-cyan);
  color: var(--text-white);
  border-color: var(--accent-cyan);
}

.feature-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 6px 0;
}

.feature-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.55;
}

.feature-arrow {
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.feature-card:hover .feature-arrow,
.feature-card.active .feature-arrow {
  color: var(--accent-cyan);
  transform: translateX(6px);
}

.right-spotlight {
  position: relative;
  background: linear-gradient(145deg, #0B0E14 0%, #131A22 100%);
  border-radius: var(--radius-xl);
  padding: 38px 38px 12px 38px;
  color: var(--text-white);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.spotlight-bg-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.spotlight-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.spotlight-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.spotlight-tag {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.spotlight-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: 20px;
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.spotlight-title {
  font-size: 1.45rem;
  font-weight: 800;
  margin: 0 0 12px 0;
  line-height: 1.35;
  color: var(--text-white);
}

.spotlight-desc {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.65;
  margin: 0 0 24px 0;
}

.spotlight-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.stat-number {
  display: block;
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--accent-cyan);
  letter-spacing: -0.5px;
}

.stat-label {
  font-size: 0.8rem;
  color: #94a3b8;
  font-weight: 600;
}

.spotlight-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.client-company {
  font-size: 0.85rem;
  font-weight: 600;
  color: #cbd5e1;
}

.spotlight-link {
  color: var(--accent-cyan);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s ease;
}

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

@media (max-width: 991px) {
  .insights-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 576px) {
  .insights-section { padding: 60px 0; }
  .feature-card { padding: 18px; }
  .spotlight-stats { grid-template-columns: 1fr; gap: 12px; }
}

/* ==========================================
   LEADERSHIP SECTION
   ========================================== */
.ceo-message-section {
  padding: 90px 0;
  width: 100%;
  background: var(--bg-secondary);
  transition: background 0.3s ease;
}

.ceo-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ceo-content-wrapper .section-heading {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 900;
  color: var(--text-primary);
  margin: 0 0 8px 0;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.ceo-content-wrapper .highlight-text {
  color: var(--accent-cyan);
}

.leaders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  width: 100%;
  margin-top: 50px;
}

.leader-card-item {
  height: 100%;
}

.leader-card-link {
  text-decoration: none !important;
  display: block;
  height: 100%;
}

.glass-pro-card {
  position: relative;
  background: var(--bg-card) !important;
  border: 1px solid var(--border-color) !important;
  padding: 40px 24px 32px 24px;
  border-radius: var(--radius-xl) !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  height: 100%;
  overflow: hidden;
  box-shadow: var(--shadow-sm) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.card-glow-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  pointer-events: none;
}

.leader-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.08);
  border: 2px solid rgba(0, 212, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--accent-cyan);
  margin-bottom: 20px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.1);
}

.main-name {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--text-primary) !important;
  margin: 0;
  letter-spacing: 0.8px;
  transition: color 0.3s ease;
}

.divider-line {
  width: 36px;
  height: 3px;
  background: var(--accent-cyan);
  margin: 14px auto;
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sub-role {
  font-size: 0.8rem;
  color: var(--accent-cyan);
  font-weight: 800;
  margin: 0;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.linkedin-pill-btn {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  color: #0a66c2;
  font-size: 0.82rem;
  font-weight: 800;
  transition: all 0.4s ease;
}

.linkedin-pill-btn .arrow-icon {
  font-size: 0.75rem;
  opacity: 0.5;
  transform: translateX(-2px);
  transition: all 0.3s ease;
}

.leader-card-link:hover .glass-pro-card {
  background: linear-gradient(145deg, #0B0E14 0%, #131A22 100%);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(56, 189, 248, 0.4);
}

.leader-card-link:hover .card-glow-bg {
  opacity: 1;
}

.leader-card-link:hover .leader-avatar {
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
  color: var(--text-white);
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(56, 189, 248, 0.3);
}

.leader-card-link:hover .main-name {
  color: var(--text-white);
}

.leader-card-link:hover .divider-line {
  background: var(--accent-cyan);
  width: 60px;
}

.leader-card-link:hover .sub-role {
  color: var(--accent-cyan);
}

.leader-card-link:hover .linkedin-pill-btn {
  background-color: #0a66c2;
  color: var(--text-white);
  border-color: #0a66c2;
  box-shadow: 0 6px 18px rgba(10, 102, 194, 0.35);
}

.leader-card-link:hover .linkedin-pill-btn .arrow-icon {
  opacity: 1;
  transform: translateX(3px);
}

@media (max-width: 991px) {
  .leaders-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 640px) {
  .ceo-message-section { padding: 60px 0; }
  .leaders-grid { grid-template-columns: 1fr; gap: 16px; }
  .glass-pro-card { padding: 30px 20px; }
}

/* ==========================================
   FAQ & FEEDBACK SECTION
   ========================================== */
.feedback-faq-section {
  background: var(--bg-primary);
  padding: 100px 0;
  width: 100%;
  transition: background 0.3s ease;
}

.container-custom {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px auto;
}

.main-title {
  color: var(--text-primary);
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
}

.merged-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: stretch;
}

.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.glass-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--border-light);
}

.card-header-flex {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.icon-pill {
  width: 42px;
  height: 42px;
  background: rgba(0, 212, 255, 0.08);
  color: var(--accent-cyan);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.column-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.faq-item:hover {
  border-color: var(--accent-cyan);
  background: var(--bg-card);
}

.faq-question {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  gap: 14px;
}

.q-num {
  font-weight: 800;
  color: var(--accent-cyan);
  font-size: 0.85rem;
  background: rgba(0, 212, 255, 0.08);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-family: monospace;
}

.faq-question p {
  flex: 1;
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.96rem;
  margin: 0;
  line-height: 1.45;
}

.icon-box {
  width: 30px;
  height: 30px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-question i {
  color: var(--text-secondary);
  font-size: 0.75rem;
  transition: transform 0.4s ease, color 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.answer-content {
  padding: 0 20px 20px 60px;
  color: var(--text-secondary);
  line-height: 1.65;
  font-size: 0.92rem;
}

.faq-item.active {
  background: var(--bg-card);
  border-color: var(--accent-cyan);
  box-shadow: 0 8px 20px var(--accent-glow);
}

.faq-item.active .icon-box {
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
}

.faq-item.active i {
  transform: rotate(45deg);
  color: var(--text-white);
}

.modern-rating-card {
  justify-content: space-between;
  background: var(--bg-card);
  border-color: var(--border-color);
}

.rating-header {
  text-align: center;
  margin-bottom: 24px;
}

.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--accent-cyan);
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  margin-bottom: 12px;
}

.rating-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.rating-subtitle {
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin: 0;
}

.clouds-grid {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 12px;
  margin: 24px 0 30px 0;
}

.rating-cloud-btn {
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0;
  transition: transform 0.25s ease;
}

.rating-cloud-btn:hover {
  transform: translateY(-5px);
}

.cloud-avatar {
  position: relative;
  width: 58px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cloud-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 6px rgba(15, 23, 42, 0.05));
}

.cloud-base {
  fill: var(--border-color);
  transition: fill 0.3s ease;
}

.rating-cloud-btn:hover .cloud-base {
  fill: var(--text-muted);
}

.face-layer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.eye-pair {
  display: flex;
  gap: 8px;
}

.eye-pair span {
  width: 3.5px;
  height: 3.5px;
  background: var(--text-secondary);
  border-radius: 50%;
  transition: background 0.3s ease;
}

.mouth-line {
  width: 10px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: background 0.3s ease;
}

.frown-mouth { height: 3px; border-radius: 50% 50% 0 0; background: transparent; border-top: 2px solid var(--text-secondary); }
.happy-mouth { height: 4px; border-radius: 0 0 50% 50%; background: transparent; border-bottom: 2px solid var(--text-secondary); }
.joy-mouth { height: 6px; border-radius: 0 0 10px 10px; background: var(--text-secondary); }

.cloud-label {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.rating-cloud-btn.active {
  transform: scale(1.15) translateY(-4px);
}

.rating-cloud-btn.active .cloud-base {
  fill: var(--accent-cyan);
}

.rating-cloud-btn.active .eye-pair span {
  background: var(--text-white);
}

.rating-cloud-btn.active .mouth-line {
  background: var(--text-white);
}

.rating-cloud-btn.active .frown-mouth,
.rating-cloud-btn.active .happy-mouth {
  border-color: var(--text-white);
  background: transparent;
}

.rating-cloud-btn.active .cloud-label {
  color: var(--accent-cyan);
  font-weight: 800;
}

.rating-result-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.number-wrap #avg-val {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
}

.number-wrap .out-of {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 700;
}

.stars-wrap {
  /* display: flex; */
  gap: 3px;
  color: #f59e0b;
  font-size: 1rem;
}

.total-reviews {
  font-size: 0.84rem;
  color: var(--text-secondary);
  margin: 0 0 14px 0;
}

.trust-pill-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #f0fdf4;
  color: #16a34a;
  border: 1px solid #bbf7d0;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 800;
}

[data-theme="dark"] .trust-pill-badge {
  background: rgba(22, 163, 74, 0.15);
  border-color: rgba(22, 163, 74, 0.3);
}

@media (max-width: 991px) {
  .merged-grid { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 576px) {
  .feedback-faq-section { padding: 60px 0; }
  .glass-card { padding: 24px 18px; }
  .clouds-grid { gap: 8px; }
  .cloud-avatar { width: 48px; height: 38px; }
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-section-wrapper {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  width: 100%;
  padding: 80px 20px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-top-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 55px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-section-title {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  margin: 0 0 16px 0;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.gradient-text-alt {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main-section-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
  font-weight: 500;
}

.contact-card-frame {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  background: var(--bg-secondary);
  border-radius: var(--radius-xxl);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.contact-left-col {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(0, 212, 255, 0.08);
  color: var(--accent-cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.contact-title {
  font-size: clamp(24px, 3vw, 32px);
  margin: 0 0 6px 0;
  color: var(--text-primary);
  font-weight: 800;
  line-height: 1.2;
}

.contact-subtitle {
  font-size: 13.5px;
  margin: 0 0 28px 0;
  color: var(--text-secondary);
  font-weight: 500;
}

.styled-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.required {
  color: #ef4444;
}

.input-wrapper, .select-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.field-icon {
  position: absolute;
  left: 14px;
  color: var(--text-muted);
  font-size: 13px;
  pointer-events: none;
  transition: color 0.25s ease;
}

.form-control {
  width: 100%;
  padding: 11px 14px 11px 38px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--bg-input);
  font-size: 13.5px;
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  outline: none;
  transition: all 0.25s ease;
  box-sizing: border-box;
}

.form-control:focus {
  background: var(--bg-secondary);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 4px var(--accent-glow);
  color: var(--text-primary);
}

.form-control::placeholder {
  color: var(--text-muted);
}

.phone-input-group {
  display: flex;
  gap: 8px;
}

.phone-code {
  width: 98px !important;
  padding: 11px 8px !important;
  flex-shrink: 0;
  cursor: pointer;
}

.phone-input-group .form-control {
  padding-left: 14px;
}

.select-wrapper .form-control {
  padding-left: 14px;
  padding-right: 30px;
  appearance: none;
  cursor: pointer;
}

.select-icon {
  position: absolute;
  right: 14px;
  pointer-events: none;
  color: var(--text-muted);
  font-size: 11px;
}

.textarea-control {
  padding: 12px 14px !important;
  resize: none;
  min-height: 85px;
}

.form-actions-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  gap: 15px;
}

.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}

.custom-checkbox input {
  width: 16px;
  height: 16px;
  accent-color: var(--accent-cyan);
  cursor: pointer;
}

.checkbox-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* ==========================================
   SUBMIT BUTTON - FIXED FOR DARK MODE
   ========================================== */

.submit-btn {
  background: var(--gradient-btn);
  color: var(--text-white) !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 13px 30px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 20px rgba(2, 132, 199, 0.18);
}

.submit-btn:hover {
  background: var(--gradient-btn-hover);
  color: var(--text-white) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(0, 212, 255, 0.35);
}

/* ===== DARK MODE OVERRIDE ===== */
[data-theme="dark"] .submit-btn {
  background: var(--accent-cyan) !important;
  color: var(--text-white) !important;
  box-shadow: 0 10px 20px rgba(13, 148, 136, 0.3);
}

[data-theme="dark"] .submit-btn:hover {
  background: #0f9d8f !important;
  color: var(--text-white) !important;
  box-shadow: 0 12px 30px rgba(13, 148, 136, 0.5);
  transform: translateY(-2px);
}

.contact-right-col {
  background: radial-gradient(circle at 85% 15%, rgba(0, 212, 255, 0.15) 0%, transparent 45%),
              radial-gradient(circle at 15% 85%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
              linear-gradient(150deg, #060913 0%, #0B0E14 50%, #0B0E14 100%);
  padding: 50px 38px;
  color: var(--text-white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

[data-theme="light"] .contact-right-col {
  background: radial-gradient(circle at 85% 15%, rgba(2, 132, 199, 0.15) 0%, transparent 45%),
              radial-gradient(circle at 15% 85%, rgba(2, 132, 199, 0.15) 0%, transparent 50%),
              linear-gradient(150deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

.sidebar-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.sidebar-bg-glow.glow-top {
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: var(--theme-cyan);
  opacity: 0.3;
}

.sidebar-bg-glow.glow-bottom {
  bottom: -50px;
  left: -50px;
  width: 220px;
  height: 220px;
  background: var(--theme-purple);
  opacity: 0.3;
}

.brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.35);
  border-radius: 30px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--theme-cyan);
  margin-bottom: 18px;
  backdrop-filter: blur(12px);
}

.sidebar-top h3 {
  font-size: 23px;
  font-weight: 800;
  margin: 0 0 10px 0;
  line-height: 1.3;
  background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sidebar-top p {
  font-size: 13.5px;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

.sidebar-cards-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 30px 0;
}

.side-feature-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: center;
  backdrop-filter: blur(20px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.side-feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 212, 255, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 212, 255, 0.15);
}

.feature-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(124, 58, 237, 0.2));
  border: 1px solid rgba(0, 212, 255, 0.4);
  color: var(--theme-cyan);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
}

.feature-tag {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--theme-cyan);
  display: block;
}

.feature-content h4 {
  margin: 2px 0 4px 0;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-white);
}

.feature-link {
  color: #94a3b8;
  text-decoration: none;
  font-size: 11.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
}

.feature-link:hover {
  color: var(--theme-cyan);
  transform: translateX(4px);
}

.sidebar-metric {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.metric-num {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--theme-cyan) 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.metric-desc {
  font-size: 11.5px;
  color: #94a3b8;
  line-height: 1.45;
}

@media (max-width: 992px) {
  .contact-card-frame { grid-template-columns: 1fr; }
  .contact-right-col { padding: 40px 30px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
  .section-top-header { margin-bottom: 35px; }
}
@media (max-width: 640px) {
  .contact-section-wrapper { padding: 50px 15px; }
  .contact-left-col { padding: 30px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .form-actions-row { flex-direction: column; align-items: stretch; }
  .submit-btn { justify-content: center; }
}

/* ==========================================
   CLIENT SECTION
   ========================================== */
.client-section {
  background: var(--bg-secondary);
  padding: 60px 0;
  overflow: hidden;
  width: 100%;
  transition: background 0.3s ease;
}

.client-container {
  width: 100%;
  margin: 0;
  padding: 0;
}

.client-header {
  text-align: center;
  margin-bottom: 35px;
  padding: 0 20px;
}

.client-header h2 {
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 10px 0;
  letter-spacing: -0.02em;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 15px 0;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: scrollMarquee 35s linear infinite;
}

.logo-track:hover {
  animation-play-state: paused;
}

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

.logo-card {
  width: 180px;
  height: 90px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  flex-shrink: 0;
}

.logo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
}

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

@media (max-width: 768px) {
  .logo-card { width: 140px; height: 70px; padding: 8px; }
  .logo-track { gap: 24px; }
}
@media (max-width: 480px) {
  .logo-card { width: 110px; height: 60px; padding: 5px; }
  .logo-track { gap: 16px; }
}

/* ==========================================
   FOOTER
   ========================================== */
.pro-footer {
  background: var(--bg-footer);
  color: var(--text-muted);
  padding: 70px 0 25px 0;
  font-family: 'Inter', sans-serif;
  position: relative;
  width: 100%;
  transition: background 0.3s ease;
}

.pro-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-blue) 0%, var(--accent-cyan) 100%);
}

.footer-logo {
  text-decoration: none;
  display: inline-block;
}

.footer-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 16px 0 22px 0;
}

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

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.footer-social a:hover {
  background: var(--accent-cyan);
  color: var(--bg-footer);
  border-color: var(--accent-cyan);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(56, 189, 248, 0.25);
}

.footer-title {
  color: var(--text-white);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

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

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

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  transition: all 0.25s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent-cyan);
  transform: translateX(4px);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 13px;
  color: var(--text-secondary);
}

.footer-contact i {
  color: var(--accent-cyan);
  font-size: 13px;
  width: 28px;
  height: 28px;
  background: rgba(56, 189, 248, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.compact-map-box {
  width: 100%;
  height: 110px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-dark);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: border-color 0.3s ease;
}

.compact-map-box:hover {
  border-color: var(--accent-cyan);
}

.compact-map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: contrast(1.05) brightness(0.95);
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  margin-top: 45px;
  padding-top: 22px;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 13px;
  margin: 0;
}

.footer-bottom strong {
  color: var(--text-white);
}


.show-more-btn {
  background: transparent;
  border: none;
  color: var(--accent-cyan);
  font-size: 12.5px;
  font-weight: 600;
  padding: 4px 0;
  margin-top: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
}

.show-more-btn:hover {
  opacity: 0.8;
  transform: translateY(1px);
}

.more-services li {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .pro-footer { padding: 50px 0 20px 0; }
  .footer-title { margin-top: 15px; }
  .compact-map-box { height: 130px; }
}

/* ==========================================
   CURSOR (Custom)
   ========================================== */
#elastic-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  background-color: var(--accent-cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  box-shadow: 0 0 10px var(--accent-glow);
  transform-origin: center center;
  transition: background 0.3s ease;
}

.cursor-active {
  mix-blend-mode: difference;
  background-color: var(--text-white) !important;
}

@media (max-width: 768px) {
  #elastic-cursor { display: none !important; }
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.text-center { text-align: center; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}




/* ==========================================
   OFF CANVAS - TOP TO BOTTOM SLIDE ANIMATION
   ========================================== */

/* Offcanvas Container - Initial State (Oper se bahar) */
.custom-offcanvas {
  height: 120vh !important;
  background: var(--bg-secondary);
  border: none !important;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  padding: 0 !important;
  transition: background 0.3s ease;
  
  /* IMPORTANT - Slide from Top Animation */
  transform: translateY(-100%) !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Offcanvas Open State - Fully Visible */
.custom-offcanvas.show {
  transform: translateY(0) !important;
}

/* Backdrop bhi smooth aaye */
.offcanvas-backdrop {
  opacity: 0 !important;
  transition: opacity 0.5s ease !important;
}

.offcanvas-backdrop.show {
  opacity: 1 !important;
}

/* ===== BAKI SAB SAME RAHEGA ===== */

/* Fixed High Visibility Close Button */
.custom-close-btn {
  position: fixed;
  top: 100px;
  right: 25px;
  z-index: 999999;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--accent-cyan);
  color: var(--bg-primary);
  border: 2px solid var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 8px 20px var(--accent-glow);
  transition: all 0.3s ease;
}

.custom-close-btn:hover {
  transform: scale(1.1) rotate(90deg);
  background: var(--text-white);
  color: var(--accent-cyan);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Hero Header */
.offcanvas-hero {
  position: relative;
  width: 100%;
  height: 45vh;
  min-height: 320px;
  background: var(--bg-footer);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 45px;
}

.offcanvas-hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  z-index: 2;
}

.offcanvas-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 20px;
  width: 100%;
}

.offcanvas-hero-title {
  color: var(--text-white);
  font-weight: 900;
  font-size: clamp(32px, 6vw, 56px);
  letter-spacing: 3px;
  margin: 0;
  text-transform: uppercase;
}

.hero-divider {
  width: 80px;
  height: 5px;
  background: var(--accent-cyan);
  margin: 18px auto;
  border-radius: 10px;
  box-shadow: 0 0 15px var(--accent-glow);
}

.offcanvas-hero-subtitle {
  color: var(--accent-cyan);
  font-weight: 700;
  letter-spacing: 1.5px;
  font-size: clamp(13px, 2vw, 18px);
  text-transform: uppercase;
}

/* Cards Section */
.offcanvas-cards-section {
  background: var(--bg-primary);
  position: relative;
  z-index: 10;
  margin-top: -40px;
  border-radius: 40px 40px 0 0;
  padding: 45px 0 60px 0;
  transition: background 0.3s ease;
}

/* ==========================================
   NAVIGATION TABS - FIXED
   ========================================== */
.tab-navigation {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.tab-btn {
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tab-btn i {
  color: var(--accent-cyan);
  font-size: 1.1rem;
}

.tab-btn:hover {
  background: var(--bg-card);
  border-color: var(--accent-cyan);
  color: var(--text-primary);
  transform: translateY(-2px);
}

/* ===== ACTIVE STATE - FIXED ===== */
.tab-btn.active {
  background: var(--accent-cyan) !important;
  color: var(--bg-primary) !important;
  border-color: var(--accent-cyan) !important;
  box-shadow: 0 10px 25px var(--accent-glow) !important;
}

.tab-btn.active i {
  color: var(--bg-primary) !important;
}

/* Dark Theme Specific */
[data-theme="dark"] .tab-btn.active {
  background: var(--accent-cyan) !important;
  color: var(--bg-primary) !important;
  border-color: var(--accent-cyan) !important;
}

[data-theme="dark"] .tab-btn.active i {
  color: var(--bg-primary) !important;
}
/* Tab Display Panels */
.tab-content-container {
  max-width: 950px;
  margin: 0 auto;
}

.tab-panel {
  display: none;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 38px;
  box-shadow: var(--shadow-sm);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.tab-panel.active {
  display: block;
  animation: tabFadeIn 0.35s ease forwards;
}

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

.badge-pill {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent-cyan);
  background: rgba(0, 212, 255, 0.08);
  padding: 4px 14px;
  border-radius: 50px;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 12px;
  border: 1px solid rgba(0, 212, 255, 0.1);
}

.panel-header-box h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 8px 0;
}

.panel-header-box p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin: 0 0 28px 0;
}

/* Grid Details List */
.details-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.detail-item {
  background: var(--bg-primary);
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all 0.3s ease;
}

.detail-item:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.detail-item i {
  color: var(--accent-cyan);
  font-size: 1rem;
  margin-top: 2px;
  background: rgba(0, 212, 255, 0.08);
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.detail-item h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 4px 0;
}

.detail-item p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

/* Extra Panels */
.panel-extra-box {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: var(--radius-lg);
}

.extra-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 14px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.extra-title i {
  color: var(--accent-cyan);
}

.tech-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-tags-list span {
  background: var(--bg-input);
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.tech-tags-list span:hover {
  border-color: var(--accent-cyan);
  color: var(--text-primary);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.highlights-grid .highlight-card {
  background: var(--bg-input);
  padding: 12px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.highlights-grid .highlight-card:hover {
  border-color: var(--accent-cyan);
  background: var(--bg-card);
}

.highlights-grid .highlight-card i {
  color: var(--accent-cyan);
}

/* CTA Box */
.offcanvas-cta-box {
  max-width: 950px;
  margin: 35px auto 0 auto;
  background: var(--bg-card) !important;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: var(--shadow-lg);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.cta-text h4 {
  color: var(--text-primary) !important;
  font-weight: 800;
  font-size: 1.25rem;
  margin: 0 0 4px 0;
  transition: color 0.3s ease;
}

.cta-text p {
  color: var(--text-secondary) !important;
  font-size: 0.92rem;
  margin: 0;
  transition: color 0.3s ease;
}

/* ===== CTA BUTTON - FIXED FOR DARK MODE ===== */
.cta-btn {
  background: var(--gradient-btn);
  color: var(--text-white) !important;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.cta-btn:hover {
  background: var(--gradient-btn-hover);
  transform: translateX(4px);
  box-shadow: 0 8px 25px var(--accent-glow);
  color: var(--text-white) !important;
}

/* ===== DARK MODE OVERRIDE ===== */
[data-theme="dark"] .cta-btn {
  background: var(--accent-cyan) !important;
  color: var(--text-white) !important;
  box-shadow: 0 4px 20px rgba(13, 148, 136, 0.3);
}

[data-theme="dark"] .cta-btn:hover {
  background: #0f9d8f !important;
  color: var(--text-white) !important;
  box-shadow: 0 8px 30px rgba(13, 148, 136, 0.5);
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
  .details-list {
    grid-template-columns: 1fr;
  }
  
  .highlights-grid {
    grid-template-columns: 1fr;
  }
  
  .tab-btn {
    width: 100%;
    justify-content: center;
  }
  
  .tab-panel {
    padding: 24px;
  }
  
  .offcanvas-cta-box {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
  
  .offcanvas-hero {
    height: 35vh;
    min-height: 280px;
  }
  
  .custom-close-btn {
    top: 80px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .offcanvas-cards-section {
    padding: 30px 0 40px 0;
    margin-top: -20px;
    border-radius: 24px 24px 0 0;
  }
  
  .tab-navigation {
    gap: 10px;
  }
  
  .tab-btn {
    padding: 10px 18px;
    font-size: 0.85rem;
  }
  
  .panel-header-box h3 {
    font-size: 1.4rem;
  }
}



/* ==========================================
   OFF CANVAS - WHO WE HELP
   ========================================== */

/* Offcanvas Container - Top to Bottom Slide */
.custom-offcanvas {
  height: 120vh !important;
  background: var(--bg-secondary);
  border: none !important;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  padding: 0 !important;
  transition: background 0.3s ease;
  
  /* Slide from Top Animation */
  transform: translateY(-100%) !important;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.custom-offcanvas.show {
  transform: translateY(0) !important;
}

/* Backdrop */
.offcanvas-backdrop {
  opacity: 0 !important;
  transition: opacity 0.5s ease !important;
}

.offcanvas-backdrop.show {
  opacity: 1 !important;
}

/* Fixed Close Button */
.custom-close-btn {
  position: fixed;
  top: 100px;
  right: 25px;
  z-index: 999999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-cyan);
  color: var(--bg-primary);
  border: 2px solid var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 8px 20px var(--accent-glow);
  transition: all 0.3s ease;
}

.custom-close-btn:hover {
  transform: scale(1.1) rotate(90deg);
  background: var(--text-white);
  color: var(--accent-cyan);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* ===== HERO SECTION ===== */
.offcanvas-hero {
  position: relative;
  width: 100%;
  height: 50vh;
  min-height: 380px;
  background: var(--bg-footer);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.help-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 20px;
  width: 100%;
}

.hero-title {
  color: var(--text-white);
  font-weight: 900;
  font-size: clamp(32px, 6vw, 52px);
  letter-spacing: 3px;
  margin: 0;
  text-transform: uppercase;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.hero-divider {
  width: 70px;
  height: 5px;
  background: var(--accent-cyan);
  margin: 16px auto;
  border-radius: 10px;
  box-shadow: 0 0 15px var(--accent-glow);
}

.hero-subtitle {
  color: var(--accent-cyan);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: clamp(13px, 2vw, 17px);
  text-transform: uppercase;
  margin: 0;
}

/* ===== BODY CONTENT ===== */
.content-body-wrapper {
  background: var(--bg-primary) !important;
  position: relative;
  z-index: 10;
  margin-top: -45px;
  border-radius: 40px 40px 0 0;
  padding: 60px 0 70px 0;
  box-shadow: 0 -15px 30px rgba(0, 0, 0, 0.08);
  transition: background 0.3s ease;
}

[data-theme="dark"] .content-body-wrapper {
  box-shadow: 0 -15px 30px rgba(0, 0, 0, 0.3);
}

/* ===== MODERN CARDS ===== */
.modern-card {
  background: var(--bg-card) !important;
  border-radius: var(--radius-xl) !important;
  padding: 38px 32px;
  border: 1px solid var(--border-color) !important;
  box-shadow: var(--shadow-sm) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.modern-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md) !important;
  border-color: var(--accent-cyan) !important;
}

/* Card Badge */
.card-badge {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(0, 212, 255, 0.08);
  color: var(--accent-cyan) !important;
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  align-self: flex-start;
  transition: all 0.3s ease;
}

.badge-alt {
  background: rgba(0, 212, 255, 0.08);
  color: var(--accent-cyan) !important;
  border-color: rgba(0, 212, 255, 0.1);
}

/* Section Title */
.section-title {
  color: var(--text-primary) !important;
  font-weight: 800;
  font-size: 26px;
  margin: 0 0 12px 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.section-title span {
  color: var(--accent-cyan) !important;
  transition: color 0.3s ease;
}

.section-desc {
  color: var(--text-secondary) !important;
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 28px;
  transition: color 0.3s ease;
}

/* ===== INDUSTRY BOXES ===== */
.industry-box {
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  padding: 16px 18px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--text-primary);
  font-size: 14.5px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.industry-box .ind-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(0, 212, 255, 0.08);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.industry-box:hover {
  background: var(--bg-card);
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.industry-box:hover .ind-icon {
  background: var(--accent-cyan);
  color: var(--text-white);
}

/* ===== PARTNER ITEMS ===== */
.partner-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.partner-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 16px;
  border-radius: var(--radius-lg);
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.partner-item:hover {
  background: var(--bg-card);
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.partner-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--accent-cyan);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px var(--accent-glow);
  transition: all 0.3s ease;
}

.partner-item:hover .partner-icon {
  transform: scale(1.05);
  box-shadow: 0 6px 20px var(--accent-glow);
}

.partner-text h4 {
  color: var(--text-primary);
  font-size: 15.5px;
  font-weight: 700;
  margin: 0 0 3px 0;
  transition: color 0.3s ease;
}

.partner-text p {
  color: var(--text-secondary);
  font-size: 13px;
  margin: 0;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.partner-item:hover .partner-text h4 {
  color: var(--accent-cyan);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .offcanvas-hero {
    height: 40vh;
    min-height: 300px;
  }
  
  .content-body-wrapper {
    padding: 40px 0 50px 0;
    border-radius: 25px 25px 0 0;
    margin-top: -30px;
  }
  
  .modern-card {
    padding: 25px 20px;
  }
  
  .custom-close-btn {
    top: 80px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .content-body-wrapper {
    padding: 30px 0 40px 0;
    border-radius: 20px 20px 0 0;
    margin-top: -20px;
  }
  
  .modern-card {
    padding: 20px 16px;
  }
  
  .section-title {
    font-size: 22px;
  }
  
  .industry-box {
    padding: 12px 14px;
    font-size: 13px;
  }
  
  .partner-item {
    padding: 12px 14px;
  }
}





/* ==========================================
   OFF CANVAS - WHO WE ARE
   ========================================== */

/* Offcanvas Container - Top to Bottom Slide */
.custom-offcanvas {
  height: 120vh !important;
  background: var(--bg-secondary);
  border: none !important;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  padding: 0 !important;
  transition: background 0.3s ease;
  
  /* Slide from Top Animation */
  transform: translateY(-100%) !important;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.custom-offcanvas.show {
  transform: translateY(0) !important;
}

/* Backdrop */
.offcanvas-backdrop {
  opacity: 0 !important;
  transition: opacity 0.5s ease !important;
}

.offcanvas-backdrop.show {
  opacity: 1 !important;
}

/* Fixed Close Button */
.custom-close-btn {
  position: fixed;
  top: 100px;
  right: 25px;
  z-index: 999999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-cyan);
  color: var(--bg-primary);
  border: 2px solid var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 8px 20px var(--accent-glow);
  transition: all 0.3s ease;
}

.custom-close-btn:hover {
  transform: scale(1.1) rotate(90deg);
  background: var(--text-white);
  color: var(--accent-cyan);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* ===== HERO SECTION ===== */
.offcanvas-hero {
  position: relative;
  width: 100%;
  height: 50vh;
  min-height: 380px;
  background: var(--bg-footer);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.what-we-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 20px;
  width: 100%;
}

.hero-title {
  color: var(--text-white);
  font-weight: 900;
  font-size: clamp(32px, 6vw, 52px);
  letter-spacing: 3px;
  margin: 0;
  text-transform: uppercase;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.hero-divider {
  width: 70px;
  height: 5px;
  background: var(--accent-cyan);
  margin: 16px auto;
  border-radius: 10px;
  box-shadow: 0 0 15px var(--accent-glow);
}

.hero-subtitle {
  color: var(--accent-cyan);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: clamp(13px, 2vw, 17px);
  text-transform: uppercase;
  margin: 0;
}

/* ===== BODY CONTENT ===== */
.content-body-wrapper {
  background: var(--bg-primary);
  position: relative;
  z-index: 10;
  margin-top: -45px;
  border-radius: 40px 40px 0 0;
  padding: 60px 0 70px 0;
  box-shadow: 0 -15px 30px rgba(0, 0, 0, 0.08);
  transition: background 0.3s ease;
}

[data-theme="dark"] .content-body-wrapper {
  box-shadow: 0 -15px 30px rgba(0, 0, 0, 0.3);
}

/* ===== MODERN CARDS ===== */
.modern-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 38px 32px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.modern-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-cyan);
}

/* ===== ABOUT CARD ===== */
.about-card {
  background: var(--bg-card);
}

/* ===== MISSION CARD (Special Dark Gradient) ===== */
.mission-card {
  background: linear-gradient(145deg, var(--bg-footer) 0%, var(--bg-secondary) 100%);
  border: 1px solid var(--border-color);
}

[data-theme="light"] .mission-card {
  background: linear-gradient(145deg, #0f172a 0%, #1e1b4b 100%);
  border: 1px solid #2e3856;
}

[data-theme="dark"] .mission-card {
  background: linear-gradient(145deg, #0B0E14 0%, #131A22 100%);
  border: 1px solid #1C2633;
}

/* ===== CARD BADGE ===== */
.card-badge {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(0, 212, 255, 0.08);
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  align-self: flex-start;
  transition: all 0.3s ease;
}

.badge-alt {
  background: rgba(0, 212, 255, 0.12);
  color: var(--accent-cyan);
  border-color: rgba(0, 212, 255, 0.15);
}

/* ===== SECTION TITLE ===== */
.section-title {
  color: var(--text-primary);
  font-weight: 800;
  font-size: 26px;
  margin: 0 0 14px 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.section-title span {
  color: var(--accent-cyan);
  transition: color 0.3s ease;
}

/* Mission Card ke liye text light rahega */
.mission-card .section-title {
  color: var(--text-white);
}

.mission-card .section-title span {
  color: var(--accent-cyan);
}

/* ===== SECTION DESC ===== */
.section-desc {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 25px;
  transition: color 0.3s ease;
}

/* Mission Card ke liye description light */
.mission-card .section-desc {
  color: var(--text-muted);
}

/* ===== COUNTRY TAGS ===== */
.country-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.country-badge {
  background: rgba(0, 212, 255, 0.08);
  padding: 10px 22px;
  border-radius: 50px;
  border: 1px solid var(--accent-cyan);
  color: var(--text-primary);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 12px var(--accent-glow);
  transition: all 0.3s ease;
}

.country-badge:hover {
  background: var(--accent-cyan);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--accent-glow);
}

/* ===== MISSION QUOTE ===== */
.mission-quote {
  font-size: 17px;
  line-height: 1.7;
  font-style: italic;
  color: var(--text-primary) !important;
  margin: 10px 0 0 0;
  padding-left: 20px;
  border-left: 3px solid var(--accent-cyan);
  transition: color 0.3s ease;
}

[data-theme="light"] .mission-quote {
  color: #e2e8f0;
}

[data-theme="dark"] .mission-quote {
  color: #B0C4DE;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .offcanvas-hero {
    height: 40vh;
    min-height: 300px;
  }
  
  .content-body-wrapper {
    padding: 40px 0 50px 0;
    border-radius: 25px 25px 0 0;
    margin-top: -30px;
  }
  
  .modern-card {
    padding: 25px 20px;
  }
  
  .custom-close-btn {
    top: 80px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .mission-quote {
    font-size: 15px;
    padding-left: 14px;
  }
}

@media (max-width: 576px) {
  .content-body-wrapper {
    padding: 30px 0 40px 0;
    border-radius: 20px 20px 0 0;
    margin-top: -20px;
  }
  
  .modern-card {
    padding: 20px 16px;
  }
  
  .section-title {
    font-size: 22px;
  }
  
  .country-badge {
    padding: 8px 16px;
    font-size: 12px;
  }
  
  .mission-quote {
    font-size: 14px;
  }
}




/* ==========================================
   OFF CANVAS - OUR VENTURES
   ========================================== */

/* Offcanvas Container - Top to Bottom Slide */
.custom-offcanvas {
  height: 120vh !important;
  background: var(--bg-secondary);
  border: none !important;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  padding: 0 !important;
  transition: background 0.3s ease;
  
  /* Slide from Top Animation */
  transform: translateY(-100%) !important;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.custom-offcanvas.show {
  transform: translateY(0) !important;
}

/* Backdrop */
.offcanvas-backdrop {
  opacity: 0 !important;
  transition: opacity 0.5s ease !important;
}

.offcanvas-backdrop.show {
  opacity: 1 !important;
}

/* Fixed Close Button */
.custom-close-btn {
  position: fixed;
  top: 100px;
  right: 25px;
  z-index: 999999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-cyan);
  color: var(--bg-primary);
  border: 2px solid var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 8px 20px var(--accent-glow);
  transition: all 0.3s ease;
}

.custom-close-btn:hover {
  transform: scale(1.1) rotate(90deg);
  background: var(--text-white);
  color: var(--accent-cyan);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* ===== HERO SECTION ===== */
.offcanvas-hero {
  position: relative;
  width: 100%;
  height: 50vh;
  min-height: 380px;
  background: var(--bg-footer);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ventures-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 20px;
  width: 100%;
}

.hero-subtitle {
  color: var(--accent-cyan);
  font-weight: 800;
  letter-spacing: 3px;
  font-size: clamp(13px, 2vw, 16px);
  margin: 0 0 10px 0;
  text-transform: uppercase;
}

.hero-title {
  color: var(--text-white);
  font-weight: 900;
  font-size: clamp(28px, 6vw, 55px);
  letter-spacing: 3px;
  margin: 0;
  text-transform: uppercase;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-title span {
  color: var(--accent-cyan);
}

.hero-divider {
  width: 70px;
  height: 4px;
  background: var(--accent-cyan);
  margin: 15px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 0 15px var(--accent-glow);
}

/* ===== CONTENT WRAPPER ===== */
.content-body-wrapper {
  background: var(--bg-primary);
  position: relative;
  z-index: 10;
  margin-top: -40px;
  border-radius: 40px 40px 0 0;
  padding: 60px 0 70px 0;
  box-shadow: 0 -15px 30px rgba(0, 0, 0, 0.08);
  transition: background 0.3s ease;
}

[data-theme="dark"] .content-body-wrapper {
  box-shadow: 0 -15px 30px rgba(0, 0, 0, 0.3);
}

/* ===== VENTURE CARDS ===== */
.premium-venture-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 30px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.premium-venture-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-cyan);
}

/* ===== CARD HEADER ===== */
.card-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.venture-logo-box {
  width: 130px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: transparent;
}

.venture-logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.05));
  transition: filter 0.3s ease;
}

[data-theme="dark"] .venture-logo-box img {
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.3));
}

.status-badge {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-cyan);
  background: rgba(0, 212, 255, 0.08);
  padding: 6px 14px;
  border-radius: 30px;
  border: 1px solid rgba(0, 212, 255, 0.1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.premium-venture-card:hover .status-badge {
  background: rgba(0, 212, 255, 0.15);
  border-color: rgba(0, 212, 255, 0.2);
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background-color: var(--accent-cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(0, 212, 255, 0.4);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(0, 212, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0); }
}

/* ===== CARD BODY ===== */
.venture-body {
  margin-bottom: 25px;
}

.venture-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.premium-venture-card:hover .venture-title {
  color: var(--accent-cyan);
}

.venture-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

/* ===== TECH TAGS ===== */
.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-tags .tag {
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--bg-input);
  color: var(--text-secondary);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  transition: all 0.25s ease;
}

.premium-venture-card:hover .tech-tags .tag {
  border-color: rgba(0, 212, 255, 0.2);
  background: rgba(0, 212, 255, 0.05);
  color: var(--accent-cyan);
}

/* ===== CARD FOOTER ===== */
.venture-footer {
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
  transition: border-color 0.3s ease;
}

.premium-venture-card:hover .venture-footer {
  border-color: rgba(0, 212, 255, 0.2);
}

.visit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px 20px;
  background: var(--text-primary);
  color: var(--text-white);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.visit-btn:hover {
  background: var(--accent-cyan);
  color: var(--bg-primary);
  box-shadow: 0 8px 20px var(--accent-glow);
  transform: translateY(-2px);
}

.visit-btn i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.visit-btn:hover i {
  transform: translate(3px, -3px);
}

[data-theme="dark"] .visit-btn {
  background: var(--accent-cyan);
  color: var(--bg-primary);
}

[data-theme="dark"] .visit-btn:hover {
  background: var(--text-white);
  color: var(--bg-primary);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .offcanvas-hero {
    height: 40vh;
    min-height: 300px;
  }
  
  .content-body-wrapper {
    padding: 40px 0 30px 0;
    border-radius: 25px 25px 0 0;
    margin-top: -30px;
  }
  
  .premium-venture-card {
    padding: 22px 18px;
  }
  
  .custom-close-btn {
    top: 80px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .venture-title {
    font-size: 1.15rem;
  }
  
  .venture-logo-box {
    width: 100px;
    height: 45px;
  }
}

@media (max-width: 576px) {
  .content-body-wrapper {
    padding: 30px 0 20px 0;
    border-radius: 20px 20px 0 0;
    margin-top: -20px;
  }
  
  .premium-venture-card {
    padding: 18px 14px;
  }
  
  .card-header-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .venture-logo-box {
    width: 100%;
    height: 50px;
    justify-content: center;
  }
  
  .venture-logo-box img {
    object-position: center;
  }
  
  .venture-title {
    font-size: 1rem;
    text-align: center;
  }
  
  .venture-desc {
    font-size: 0.85rem;
    text-align: center;
  }
  
  .tech-tags {
    justify-content: center;
  }
  
  .status-badge {
    align-self: flex-start;
  }
}



/* ==========================================
   OFF CANVAS - INTERNSHIP / US
   ========================================== */

/* Offcanvas Container - Top to Bottom Slide */
.join-custom-offcanvas {
  height: 120vh !important;
  background: var(--bg-secondary);
  border: none !important;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  padding: 0 !important;
  transition: background 0.3s ease;
  
  /* Slide from Top Animation */
  transform: translateY(-100%) !important;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.join-custom-offcanvas.show {
  transform: translateY(0) !important;
}

/* Backdrop */
.offcanvas-backdrop {
  opacity: 0 !important;
  transition: opacity 0.5s ease !important;
}

.offcanvas-backdrop.show {
  opacity: 1 !important;
}

/* Fixed Close Button */
.join-close-btn {
  position: fixed;
  top: 100px;
  right: 25px;
  z-index: 999999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-cyan);
  color: var(--bg-primary);
  border: 2px solid var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 8px 20px var(--accent-glow);
  transition: all 0.3s ease;
}

.join-close-btn:hover {
  transform: scale(1.1) rotate(90deg);
  background: var(--text-white);
  color: var(--accent-cyan);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* ===== HERO SECTION ===== */
.join-hero-section {
  position: relative;
  height: 45vh;
  min-height: 300px;
  width: 100%;
  overflow: hidden;
  background: var(--bg-footer);
  margin-top: 35px;
}

.join-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  z-index: 1;
}

.join-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  z-index: 2;
}

.join-hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  z-index: 3;
}

.join-hero-subtitle {
  color: var(--accent-cyan);
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.join-hero-title {
  color: var(--text-white);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 2px;
  margin: 8px 0;
}

.join-hero-title span {
  color: var(--accent-cyan);
}

.join-hero-desc {
  color: #e0e0e0;
  max-width: 500px;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* ===== MAIN CONTENT AREA ===== */
.join-content-area {
  background: var(--bg-primary);
  position: relative;
  z-index: 10;
  margin-top: -30px;
  border-radius: 30px 30px 0 0;
  padding: 50px 0 30px 0;
  box-shadow: 0 -15px 30px rgba(0, 0, 0, 0.08);
  transition: background 0.3s ease;
}

[data-theme="dark"] .join-content-area {
  box-shadow: 0 -15px 30px rgba(0, 0, 0, 0.3);
}

/* ===== OPEN POSITIONS ===== */
.open-positions-section {
  padding: 20px 0;
}

.join-section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(0, 212, 255, 0.08);
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.join-section-heading {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.join-section-subtext {
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

/* ===== JOB CARDS ===== */
.job-opening-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.job-opening-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--text-primary), var(--accent-cyan));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.job-opening-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-md);
}

.job-opening-card:hover::before {
  opacity: 1;
}

/* Job Card Header */
.job-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.job-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(0, 212, 255, 0.08);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.job-opening-card:hover .job-icon-box {
  background: var(--accent-cyan);
  color: var(--text-white);
}

.job-type-badge {
  background: rgba(0, 212, 255, 0.08);
  color: var(--accent-cyan);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  border: 1px solid rgba(0, 212, 255, 0.1);
  transition: all 0.3s ease;
}

.job-opening-card:hover .job-type-badge {
  background: rgba(0, 212, 255, 0.15);
  border-color: rgba(0, 212, 255, 0.2);
}

/* Job Card Body */
.job-card-body h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.job-opening-card:hover .job-card-body h3 {
  color: var(--accent-cyan);
}

.job-location {
  font-size: 0.8rem;
  color: var(--accent-cyan);
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.job-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

/* Job Card Footer */
.job-card-footer {
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
  transition: border-color 0.3s ease;
}

.job-opening-card:hover .job-card-footer {
  border-color: rgba(0, 212, 255, 0.15);
}

.job-apply-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: var(--text-primary);
  font-weight: 800;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.job-opening-card:hover .job-apply-btn {
  color: var(--accent-cyan);
}

.job-opening-card:hover .job-apply-btn i {
  transform: translateX(6px);
}

/* ===== CTA BUTTON ===== */
.join-cta-btn {
  display: inline-block;
  padding: 15px 36px;
  background: var(--gradient-btn);
  color: var(--text-white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 10px 20px rgba(2, 132, 199, 0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  cursor: pointer;
}

.join-cta-btn:hover {
  background: var(--gradient-btn-hover);
  transform: scale(1.04);
  box-shadow: 0 12px 25px var(--accent-glow);
  color: var(--text-white);
}

/* ===== CV CONTACT BOX ===== */
.join-cv-contact-box {
  margin-top: 35px;
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  transition: border-color 0.3s ease;
}

.join-cv-label {
  color: var(--text-secondary);
  font-size: 0.82rem;
  margin: 0 0 4px 0;
  transition: color 0.3s ease;
}

.join-cv-email {
  color: var(--text-primary);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.join-cv-email:hover {
  color: var(--accent-cyan);
}

/* ===== HORIZONTAL ROLE PILLS ===== */
.join-role-card-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 60px;
  padding: 10px 20px 10px 10px;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  position: relative;
}

.join-role-card-pill .pill-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.35s ease;
}

.join-role-card-pill .pill-icon-box i {
  font-size: 1.2rem;
  color: var(--accent-cyan);
  transition: all 0.35s ease;
}

.join-role-card-pill .pill-info {
  text-align: left;
  flex-grow: 1;
}

.join-role-card-pill .pill-info h6 {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.join-role-card-pill .pill-info span {
  font-size: 0.72rem;
  color: var(--text-secondary);
  display: block;
  transition: color 0.3s ease;
}

.join-role-card-pill .pill-arrow {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all 0.35s ease;
}

.join-role-card-pill:hover {
  background: var(--text-primary);
  border-color: var(--accent-cyan);
  transform: translateY(-4px);
  box-shadow: 0 12px 25px var(--accent-glow);
}

.join-role-card-pill:hover .pill-icon-box {
  background: var(--accent-cyan);
}

.join-role-card-pill:hover .pill-icon-box i {
  color: var(--text-white);
}

.join-role-card-pill:hover .pill-info h6,
.join-role-card-pill:hover .pill-info span,
.join-role-card-pill:hover .pill-arrow {
  color: var(--text-white);
}

.join-role-card-pill:hover .pill-arrow {
  transform: translateX(4px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .join-hero-section {
    height: 35vh;
    min-height: 260px;
    margin-top: 30px;
  }
  
  .join-content-area {
    padding: 35px 0 25px 0;
    border-radius: 20px 20px 0 0;
    margin-top: -20px;
  }
  
  .join-close-btn {
    top: 80px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .job-opening-card {
    padding: 18px 16px;
  }
  
  .join-cta-btn {
    padding: 12px 28px;
    font-size: 0.85rem;
  }
  
  .join-role-card-pill {
    border-radius: 20px;
    padding: 8px 14px 8px 8px;
  }
  
  .join-role-card-pill .pill-icon-box {
    width: 40px;
    height: 40px;
  }
  
  .join-role-card-pill .pill-icon-box i {
    font-size: 1rem;
  }
  
  .join-role-card-pill .pill-info h6 {
    font-size: 0.75rem;
  }
}

@media (max-width: 576px) {
  .join-hero-section {
    height: 30vh;
    min-height: 220px;
  }
  
  .join-hero-title {
    font-size: 1.8rem;
  }
  
  .join-hero-desc {
    font-size: 0.85rem;
  }
  
  .join-content-area {
    padding: 25px 0 20px 0;
    border-radius: 16px 16px 0 0;
    margin-top: -15px;
  }
  
  .job-card-header {
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .job-card-body h3 {
    font-size: 1rem;
  }
  
  .join-cv-contact-box {
    margin-top: 25px;
    padding-top: 15px;
  }
}



/* ==========================================
   OFF CANVAS - OUR TEAM
   ========================================== */

/* Offcanvas Container - Top to Bottom Slide */
.team-custom-offcanvas {
  height: 120vh !important;
  background: var(--bg-secondary);
  border: none !important;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  padding: 0 !important;
  transition: background 0.3s ease;
  
  /* Slide from Top Animation */
  transform: translateY(-100%) !important;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.team-custom-offcanvas.show {
  transform: translateY(0) !important;
}

/* Backdrop */
.offcanvas-backdrop {
  opacity: 0 !important;
  transition: opacity 0.5s ease !important;
}

.offcanvas-backdrop.show {
  opacity: 1 !important;
}

/* Fixed Close Button */
.team-close-btn {
  position: fixed;
  top: 100px;
  right: 25px;
  z-index: 999999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-cyan);
  color: var(--bg-primary);
  border: 2px solid var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 8px 20px var(--accent-glow);
  transition: all 0.3s ease;
}

.team-close-btn:hover {
  transform: scale(1.1) rotate(90deg);
  background: var(--text-white);
  color: var(--accent-cyan);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* ===== HERO SECTION ===== */
.team-hero-cover {
  position: relative;
  height: 42vh;
  min-height: 290px;
  width: 100%;
  overflow: hidden;
  background: var(--bg-footer);
}

.team-cover-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  z-index: 1;
}

.team-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  z-index: 2;
}

.team-hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  z-index: 3;
  margin-top: 30px;
}

.team-pill {
  background: rgba(0, 212, 255, 0.08);
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 212, 255, 0.1);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.team-pill i {
  margin-right: 6px;
}

.team-hero-title {
  color: var(--text-white);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: 2px;
  margin: 4px 0;
}

.team-hero-title span {
  color: var(--accent-cyan);
}

.team-hero-desc {
  color: #cbd5e1;
  max-width: 500px;
  font-size: 0.95rem;
  margin: 0;
}

/* ===== CONTENT AREA ===== */
.team-scroll-area {
  background: var(--bg-primary) !important;
  position: relative;
  z-index: 10;
  margin-top: -25px;
  border-radius: 25px 25px 0 0;
  padding: 35px 0 20px 0;
  box-shadow: 0 -15px 30px rgba(0, 0, 0, 0.08);
  transition: background 0.3s ease;
}

[data-theme="dark"] .team-scroll-area {
  box-shadow: 0 -15px 30px rgba(0, 0, 0, 0.3);
}

.team-block-title {
  color: var(--text-primary) !important;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin: 0;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.team-title-divider {
  width: 45px;
  height: 3px;
  background: var(--accent-cyan) !important;
  margin: 8px auto 0 auto;
  border-radius: 3px;
  transition: background 0.3s ease;
}

/* ===== GLASS PRO CARDS ===== */
.leader-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.glass-pro-card {
  position: relative;
  background: var(--bg-card ) !important;
  border: 1px solid var(--border-color) !important;
  border-radius: var(--radius-xl) !important;
  padding: 30px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
}

.glass-pro-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-md);
}

.card-glow-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top, var(--accent-glow) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.glass-pro-card:hover .card-glow-bg {
  opacity: 1;
}

/* ===== CARD TEXT ===== */
.card-txt {
  width: 100%;
  margin-bottom: 20px;
  flex-grow: 1;
}

.main-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.glass-pro-card:hover .main-name {
  color: var(--accent-cyan);
}

.divider-line {
  width: 30px;
  height: 2px;
  background: var(--accent-cyan);
  margin: 10px auto;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.glass-pro-card:hover .divider-line {
  width: 50px;
}

.sub-role {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin: 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.glass-pro-card:hover .sub-role {
  color: var(--accent-cyan);
}

/* ===== LINKEDIN BUTTON ===== */
.linkedin-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-input) !important;
  color: var(--text-primary) !important;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 700;
  border: 1px solid var(--border-color) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.linkedin-pill-btn i.fa-linkedin-in {
  color: #0a66c2;
  transition: color 0.3s ease;
}

.linkedin-pill-btn .arrow-icon {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.glass-pro-card:hover .linkedin-pill-btn {
  background: var(--text-primary) !important;
  color: var(--text-secondary)  !important;
  border-color: var(--text-primary) !important;
  box-shadow: 0 6px 20px var(--accent-glow) !important;
}

.glass-pro-card:hover .linkedin-pill-btn i.fa-linkedin-in {
  color: var(--accent-cyan) !important;
}

.glass-pro-card:hover .linkedin-pill-btn .arrow-icon {
  transform: translateX(4px);
}

/* ===== PLACEHOLDER PILL (No LinkedIn) ===== */
.placeholder-pill {
  background: var(--bg-input);
  border-color: var(--border-color);
  color: var(--text-secondary);
  cursor: default;
}

.placeholder-pill i {
  color: var(--accent-cyan);
}

.glass-pro-card:hover .placeholder-pill {
  background: var(--bg-input);
  border-color: var(--border-color);
  color: var(--text-secondary);
  box-shadow: none;
}

.glass-pro-card:hover .placeholder-pill i.fa-linkedin-in {
  color: var(--accent-cyan);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .team-hero-cover {
    height: 32vh;
    min-height: 270px;
  }
  
  .team-scroll-area {
    padding-top: 25px;
    margin-top: -20px;
  }
  
  .glass-pro-card {
    padding: 24px 16px 20px 16px;
  }
  
  .team-close-btn {
    top: 80px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .team-hero-content {
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .team-hero-cover {
    height: 28vh;
    min-height: 270px;
  }
  
  .team-hero-title {
    font-size: 1.5rem;
  }
  
  .team-hero-desc {
    font-size: 0.85rem;
  }
  
  .team-scroll-area {
    padding: 20px 0 15px 0;
    border-radius: 16px 16px 0 0;
    margin-top: -15px;
  }
  
  .team-block-title {
    font-size: 1rem;
  }
  
  .leader-avatar {
    width: 60px;
    height: 60px;
    font-size: 1rem;
  }
  
  .main-name {
    font-size: 0.95rem;
  }
  
  .sub-role {
    font-size: 0.7rem;
  }
  
  .linkedin-pill-btn {
    font-size: 0.7rem;
    padding: 6px 14px;
  }
}



/* ==========================================
   OFF CANVAS - OUR STORY
   ========================================== */

/* Offcanvas Container - Top to Bottom Slide */
.story-custom-offcanvas {
  height: 120vh !important;
  background: var(--bg-secondary);
  border: none !important;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  padding: 0 !important;
  transition: background 0.3s ease;
  transform: translateY(-100%) !important;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.story-custom-offcanvas.show {
  transform: translateY(0) !important;
}

/* Backdrop */
.offcanvas-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 120vh !important;
    background-color: #0000007b;
}
.offcanvas-backdrop.show {
  opacity: 1 !important;
}

/* Fixed Close Button */
.story-close-btn {
  position: fixed;
  top: 100px;
  right: 25px;
  z-index: 999999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-cyan);
  color: var(--bg-primary);
  border: 2px solid var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 8px 20px var(--accent-glow);
  transition: all 0.3s ease;
}

.story-close-btn:hover {
  transform: scale(1.1) rotate(90deg);
  background: var(--text-white);
  color: var(--accent-cyan);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* ===== HERO SECTION ===== */
.story-hero-cover {
  position: relative;
  width: 100%;
  height: 320px;
  min-height: 250px;
  background: var(--bg-footer);
  overflow: hidden;
}

.story-cover-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  z-index: 1;
}

.story-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  z-index: 2;
}

.story-hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  z-index: 3;
  margin-top: 15px;
}

.story-hero-title {
  color: var(--text-white);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 2.8rem);
  letter-spacing: 4px;
  margin: 0;
  text-transform: uppercase;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.story-hero-title span {
  color: var(--accent-cyan);
}

.story-hero-divider {
  width: 60px;
  height: 4px;
  background: var(--accent-cyan);
  margin-top: 12px;
  border-radius: 2px;
}

/* ===== CONTENT WRAPPER ===== */
.story-center-wrapper {
  background: var(--bg-primary);
  position: relative;
  z-index: 10;
  margin-top: -30px;
  border-radius: 35px 35px 0 0;
  padding: 60px 0 80px 0;
  box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.05);
  transition: background 0.3s ease;
}

[data-theme="dark"] .story-center-wrapper {
  box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.3);
}

/* Outer Card Container */
.story-content-block {
  background: var(--bg-card, rgba(255, 255, 255, 0.03));
  border: 1px solid var(--border-color);
  padding: 48px;
  border-radius: var(--radius-xl, 24px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
}

[data-theme="dark"] .story-content-block {
  background: rgba(15, 23, 42, 0.5);
  border-color: rgba(255, 255, 255, 0.08);
}

/* ===== STORY BADGE ===== */
.story-badge {
  color: var(--accent-cyan);
  background: rgba(0, 212, 255, 0.08);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 16px;
  border: 1px solid rgba(0, 212, 255, 0.15);
  transition: all 0.3s ease;
}

/* ===== STORY HEADLINES ===== */
.story-headline {
  color: var(--text-primary);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 38px);
  margin-bottom: 8px;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.story-headline span {
  color: var(--accent-cyan);
}

.story-subheadline {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-cyan);
  margin-bottom: 28px;
  line-height: 1.4;
  letter-spacing: -0.2px;
}

/* ===== STORY TEXT BODY ===== */
.story-text-body {
  color: var(--text-secondary);
  font-size: 15.5px;
  line-height: 1.8;
  transition: color 0.3s ease;
}

.story-text-body .lead-paragraph {
  font-size: 17px;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

/* ===== GLASS QUOTE CARD ===== */
.glass-quote-card {
  position: relative;
  background: var(--bg-input);
  border-left: 4px solid var(--accent-cyan);
  border-radius: 0 16px 16px 0;
  padding: 22px 26px;
  margin: 28px 0;
  backdrop-filter: blur(5px);
  border: 1px solid var(--border-color);
  border-left-width: 4px;
  transition: all 0.3s ease;
}

.glass-quote-card p {
  margin: 0;
  font-style: italic;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 15.5px;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.glass-quote-card .quote-icon {
  position: absolute;
  right: 18px;
  bottom: 8px;
  font-size: 24px;
  color: rgba(0, 212, 255, 0.15);
  transition: color 0.3s ease;
}

[data-theme="dark"] .glass-quote-card .quote-icon {
  color: rgba(0, 212, 255, 0.25);
}

/* ===== CALLOUT BANNER ===== */
.story-callout-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  background: linear-gradient(135deg, var(--bg-footer) 0%, var(--bg-secondary) 100%);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 16px 22px;
  border-radius: var(--radius-lg, 12px);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

[data-theme="light"] .story-callout-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
  color: #ffffff;
}

[data-theme="dark"] .story-callout-banner {
  background: linear-gradient(135deg, #0B0E14 0%, #131A22 100%);
  color: var(--text-white);
  border-color: #1C2633;
}

.story-callout-banner p {
  margin: 0;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.3px;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background-color: var(--accent-cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(0, 212, 255, 0.7);
  animation: pulse-glow 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(0, 212, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .story-hero-cover {
    height: 260px;
  }
  
  .story-center-wrapper {
    padding: 40px 0 60px 0;
    border-radius: 25px 25px 0 0;
    margin-top: -20px;
  }
  
  .story-content-block {
    padding: 28px 20px;
  }
  
  .story-close-btn {
    top: 80px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .story-subheadline {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .story-hero-cover {
    height: 220px;
    min-height: 200px;
  }
  
  .story-hero-title {
    font-size: 1.6rem;
    letter-spacing: 2px;
  }
  
  .story-headline {
    font-size: 1.6rem;
  }
  
  .story-text-body {
    font-size: 14px;
  }
  
  .story-text-body .lead-paragraph {
    font-size: 15px;
  }
  
  .glass-quote-card {
    padding: 16px 18px;
    margin: 20px 0;
  }
  
  .glass-quote-card p {
    font-size: 14px;
  }
  
  .story-callout-banner {
    padding: 12px 16px;
  }
  
  .story-callout-banner p {
    font-size: 13px;
  }
}
/* ==========================================
   ORGANIZATION OVERRIDES - PROFESSIONAL CLEANUP
   ========================================== */

/* --- Hero: No Gradient Text, Solid Professional --- */
.hero-title-heading .text-gradient {
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  color: #ffffff !important;
  filter: none !important;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.75) !important;
  text-shadow: none !important;
}

/* --- Hero Button: Solid Corporate --- */
.custom-hero-btn {
  background: #ffffff !important;
  color: #18181b !important;
  border: none !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25) !important;
  font-weight: 700 !important;
  letter-spacing: 0.2px !important;
}

.custom-hero-btn:hover {
  background: #f4f4f5 !important;
  color: #18181b !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35) !important;
  transform: translateY(-2px) !important;
}

/* --- Theme Toggle: Clean Minimal --- */
.theme-toggle-btn {
  border: 1px solid var(--border-color) !important;
  border-radius: var(--radius-sm) !important;
  background: transparent !important;
}

.theme-toggle-btn:hover {
  transform: none !important;
  box-shadow: none !important;
  border-color: var(--accent-cyan) !important;
  color: var(--accent-cyan) !important;
}

[data-theme="dark"] .theme-toggle-btn i {
  transform: none !important;
}

/* --- Navbar Links: Understated --- */
.nav-btn {
  font-weight: 800 !important;
  font-size: 11px !important;
  letter-spacing: 0px !important;
}

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

.nav-btn:hover {
  color: var(--accent-cyan) !important;
  background: transparent !important;
}

.nav-talk-btn {
  background: var(--text-primary) !important;
  color: var(--bg-secondary) !important;
  border: none !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  letter-spacing: 0.3px !important;
  height: 38px !important;
  padding: 0 20px !important;
}

.nav-talk-btn:hover {
  opacity: 0.85 !important;
  box-shadow: none !important;
  color: var(--bg-secondary) !important;
  background: var(--text-primary) !important;
  border-color: transparent !important;
}

/* --- Client Section: No Color Splash --- */
.client-highlight {
  color: var(--text-primary) !important;
  font-weight: 900 !important;
}

.client-divider {
  background: var(--text-primary) !important;
  height: 2px !important;
  width: 40px !important;
}

.logo-card img {
  transition: filter 0.4s ease, transform 0.4s ease !important;
}

.logo-card:hover img {
  filter: grayscale(0) brightness(0.9) !important;
  transform: scale(1.05) !important;
}

[data-theme="dark"] .logo-card img.rooh {
    filter: contrast();
}


/* --- Service Cards: Remove Playful Elements --- */
.card-visual-box {
  border: 1px solid var(--border-color) !important;
  border-style: solid !important;
  background: var(--bg-primary) !important;
}

.card-visual-box::before {
  display: none !important;
}

.visual-icon {
  font-size: 2.4rem !important;
  opacity: 0.3 !important;
  color: var(--text-muted) !important;
}

.service-card:hover .card-visual-box {
  border-color: var(--border-light) !important;
  background: var(--bg-primary) !important;
}

.service-card:hover .visual-icon {
  opacity: 0.5 !important;
  color: var(--accent-cyan) !important;
  transform: none !important;
}

.card-icon {
  background: var(--bg-input) !important;
  border: 1px solid var(--border-color) !important;
  color: var(--text-secondary) !important;
}

.service-card:hover .card-icon {
  background: var(--accent-cyan) !important;
  border-color: var(--accent-cyan) !important;
  color: #ffffff !important;
}

.explore-btn {
  background: var(--text-primary) !important;
  color: var(--bg-secondary) !important;
  box-shadow: none !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 700 !important;
}

.explore-btn:hover {
  opacity: 0.85 !important;
  background: var(--text-primary) !important;
  box-shadow: none !important;
}

.load-more-btn {
  border: 1.5px solid var(--border-color) !important;
  color: var(--text-primary) !important;
  background: transparent !important;
  border-radius: var(--radius-sm) !important;
  box-shadow: none !important;
}

.load-more-btn:hover {
  background: var(--text-primary) !important;
  color: var(--bg-secondary) !important;
  border-color: var(--text-primary) !important;
  box-shadow: none !important;
}

/* --- Industry Cards: Structured --- */
.industry-card::before {
  display: none !important;
}

.industry-icon-box {
  background: var(--bg-input) !important;
  border: 1px solid var(--border-color) !important;
}

.industry-icon-box i {
  color: var(--text-secondary) !important;
}

.industry-card:hover .industry-icon-box {
  background: var(--accent-cyan) !important;
  border-color: var(--accent-cyan) !important;
  transform: none !important;
}

.industry-card:hover .industry-icon-box i {
  color: #ffffff !important;
}

.industry-card:hover {
  transform: translateY(-4px) !important;
  border-color: var(--border-light) !important;
}

.btn-explore {
  border: 1.5px solid var(--text-primary) !important;
  color: var(--text-primary) !important;
  background: transparent !important;
  border-radius: var(--radius-sm) !important;
  letter-spacing: 0.3px !important;
  box-shadow: none !important;
}

.btn-explore:hover {
  background: var(--text-primary) !important;
  color: var(--bg-secondary) !important;
  border-color: var(--text-primary) !important;
  box-shadow: none !important;
}

/* --- Stat Cards: Clean Numbers --- */
.number-box {
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  color: var(--text-primary) !important;
  font-weight: 900 !important;
}

.stat-card:hover {
  transform: translateY(-2px) !important;
  border-color: var(--border-light) !important;
}

/* --- Careers: Professional --- */
.highlight-card:hover .highlight-icon i {
  color: var(--accent-cyan) !important;
}

.careers-explore-btn {
  border: 1.5px solid var(--text-primary) !important;
  color: var(--text-primary) !important;
  border-radius: var(--radius-sm) !important;
  text-transform: none !important;
  letter-spacing: 0px !important;
  font-size: 14px !important;
}

.careers-explore-btn:hover {
  background: var(--text-primary) !important;
  color: var(--bg-secondary) !important;
  border-color: var(--text-primary) !important;
  box-shadow: none !important;
}

[data-theme="dark"] .careers-explore-btn {
  color: var(--text-white) !important;
  border-color: var(--border-light) !important;
}

[data-theme="dark"] .careers-explore-btn:hover {
  background: var(--text-white) !important;
  color: var(--bg-primary) !important;
  border-color: var(--text-white) !important;
}

/* --- Insights: No Glow --- */
.feature-card.active {
  border-left: 3px solid var(--accent-cyan) !important;
}

.feature-badge {
  background: var(--bg-input) !important;
  border: 1px solid var(--border-color) !important;
  color: var(--text-secondary) !important;
}

.feature-card:hover .feature-badge,
.feature-card.active .feature-badge {
  background: var(--accent-cyan) !important;
  color: #ffffff !important;
  border-color: var(--accent-cyan) !important;
}

.right-spotlight {
  background: var(--bg-card) !important;
  border: 1px solid var(--border-color) !important;
}

.spotlight-bg-glow {
  display: none !important;
}

.spotlight-title {
  color: var(--text-primary) !important;
}

.spotlight-desc {
  color: var(--text-secondary) !important;
}

.spotlight-stats {
  background: var(--bg-input) !important;
  border: 1px solid var(--border-color) !important;
}

.stat-number {
  color: var(--accent-cyan) !important;
}

/* --- Leadership: No Dark Overlay on Hover --- */
.leader-card-link:hover .glass-pro-card {
  background: var(--bg-card) !important;
  border-color: var(--accent-cyan) !important;
}

.card-glow-bg {
  display: none !important;
}

.leader-avatar {
  background: var(--bg-input) !important;
  border: 2px solid var(--border-color) !important;
  color: var(--text-secondary) !important;
  box-shadow: none !important;
}

.leader-card-link:hover .leader-avatar {
  background: var(--accent-cyan) !important;
  border-color: var(--accent-cyan) !important;
  color: #ffffff !important;
  transform: none !important;
  box-shadow: none !important;
}

.leader-card-link:hover .main-name {
  color: var(--text-primary) !important;
}

.leader-card-link:hover .divider-line {
  width: 36px !important;
}

.leader-card-link:hover .linkedin-pill-btn {
  background: var(--text-primary) !important;
  color: var(--bg-secondary) !important;
  border-color: var(--text-primary) !important;
  box-shadow: none !important;
}

[data-theme="dark"] .leader-card-link:hover .linkedin-pill-btn {
  background: var(--text-white) !important;
  color: var(--bg-primary) !important;
  border-color: var(--text-white) !important;
}

/* --- FAQ: Clean Accordion --- */
.faq-item.active {
  box-shadow: none !important;
  border-color: var(--accent-cyan) !important;
}

/* --- Rating Clouds: Make Subtle (No Hearts) --- */
.rating-cloud-btn:hover {
  transform: translateY(-2px) !important;
}

.cloud-base {
  fill: var(--border-color) !important;
}

.rating-cloud-btn:hover .cloud-base {
  fill: var(--text-muted) !important;
}

/* --- Remove Blue Heart Particles Completely --- */
.blue-heart {
  display: none !important;
}

/* --- Section Headings: Solid, No Gradient --- */
.gradient-text {
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  color: var(--accent-cyan) !important;
}

/* --- Global: Reduce All Hover Lifts --- */
.service-card:hover,
.industry-card:hover,
.stat-card:hover,
.highlight-card:hover,
.glass-pro-card:hover {
  transform: translateY(-3px) !important;
}

/* --- Footer Override --- */
.footer-section {
  background: var(--bg-footer) !important;
}




/* ==========================================
   PARTNERSHIPS SECTION
   ========================================== */

.partner-category-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
  margin-bottom: 16px;
}

.partner-cat-icon {
  width: 42px;
  height: 42px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  color: var(--accent-cyan, #0d9488);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.partner-cat-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary, #ffffff);
  margin: 0;
  line-height: 1.2;
}

.partner-cat-desc {
  font-size: 0.8rem;
  color: var(--text-secondary, rgba(255, 255, 255, 0.6));
  margin: 2px 0 0 0;
}

/* Card Main Container */
.partner-card {
  position: relative;
  background: var(--bg-input, rgba(255, 255, 255, 0.03));
  border: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
  border-radius: var(--radius-lg, 14px);
  padding: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.partner-card:hover {
  border-color: var(--accent-cyan, #0d9488);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Top Row: Logo & Badge Horizontal Alignment */
.partner-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 12px;
  width: 100%;
}

/* White Logo Frame Box */
.partner-logo-box {
  width: 46px;
  height: 36px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  flex-shrink: 0;
}

.partner-logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.partner-logo-box .fallback-icon {
  font-size: 1rem;
  color: #0284c7;
}

/* Badge Styling */
.partner-badge {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--accent-cyan, #00d4ff);
  background: rgba(0, 212, 255, 0.08);
  padding: 3px 6px;
  border-radius: 12px;
  border: 1px solid rgba(0, 212, 255, 0.18);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Text Content Container */
.partner-info-box {
  margin-bottom: 0;
}

.partner-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-primary, #ffffff);
  margin: 0;
  line-height: 1.25;
}

.partner-sub {
  font-size: 0.72rem;
  color: var(--text-secondary, rgba(255, 255, 255, 0.6));
  display: block;
  margin-top: 3px;
  font-weight: 500;
  line-height: 1.3;
}

.partner-details {
  font-size: 0.8rem;
  color: var(--text-secondary, rgba(255, 255, 255, 0.6));
  line-height: 1.45;
  margin-top: 10px;
}

/* ==========================================
   MOBILE SCREEN FIX 
   ========================================== */
@media (max-width: 576px) {
  /* Grid Gutter / Gap Reduction */
  .partner-category-section .row {
    --bs-gutter-x: 0.5rem !important;
    --bs-gutter-y: 0.5rem !important;
  }

  /* Card Container */
  .partner-card {
    padding: 10px 8px !important;
    border-radius: 10px !important;
    min-height: auto !important;
    justify-content: flex-start !important;
  }

  /* Top Bar Header */
  .partner-card-top {
    margin-bottom: 6px !important;
    justify-content: flex-start !important;
  }

  /* Compact Logo Box */
  .partner-logo-box {
    width: 36px !important;
    height: 28px !important;
    padding: 2px !important;
    border-radius: 6px !important;
  }

 
  .partner-badge {
    display: none !important;
  }

  /* Clean Typography */
  .partner-name {
    font-size: 0.82rem !important;
    font-weight: 800 !important;
    line-height: 1.15 !important;
    margin-bottom: 2px !important;
  }

  .partner-sub {
    font-size: 0.65rem !important;
    line-height: 1.2 !important;
    color: var(--text-secondary, rgba(255, 255, 255, 0.6)) !important;
  }
}


/* ===== NAVBAR CONTAINER ===== */
.navbar {
  background: #0a0a0f !important;
  min-height: 70px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3) !important;
  padding: 10px 0;
  z-index: 1050;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}

/* Logo Image */
.logo-img {
  height: 45px;
  width: auto;
  object-fit: contain;
}

/* Explore Services Button (Universal Style) */
.nav-talk-btn {
  background: var(--text-primary, #ffffff) !important;
  color: var(--bg-secondary, #0a0a0f) !important;
  border: none !important;
  border-radius: var(--radius-sm, 6px) !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  letter-spacing: 0.3px !important;
  height: 38px !important;
  padding: 0 18px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease !important;
}

.nav-talk-btn:hover {
  opacity: 0.85 !important;
  transform: translateY(-1px);
}

/* Sidebar Trigger Button (MENU) */
.sidebar-trigger-btn {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 1px !important;
  padding: 8px 14px !important;
  height: 38px !important;
  border-radius: 6px !important;
  transition: all 0.3s ease !important;
}

.sidebar-trigger-btn:hover {
  background: var(--accent-cyan, #0d9488) !important;
  border-color: var(--accent-cyan, #0d9488) !important;
  color: #ffffff !important;
}

/* Theme Toggle Button */
.theme-toggle-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  cursor: pointer;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.theme-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

/* ===== SIDEBAR (OFFCANVAS) STYLING ===== */
.main-menu-sidebar {
  background-color: #0d0d12 !important;
  width: 300px !important;
  border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.sidebar-nav-link {
  background: transparent !important;
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: 0.5px !important;
  padding: 12px 14px !important;
  border-radius: 8px !important;
  border: none !important;
  transition: all 0.3s ease !important;
  width: 100%;
}

.sidebar-nav-link:hover {
  background: rgba(255, 255, 255, 0.06) !important;
  color: var(--accent-cyan, #0d9488) !important;
  transform: translateX(4px);
}