    /* COLOR PALETTE (Light Theme with Dedicated Nav Bar):
       Background Light: #ffffff (Pure White)
       Background Grey:  #f8fafc & #f1f5f9 (Off-white / Slate Light Grey)
       Menu Bar BG:      #0b2545 (Deep Navy)
       Cards & Panels:   #ffffff with subtle border #e2e8f0
       Text Main:        #0f172a (Dark Slate)
       Text Muted:       #475569 (Medium Grey)
       Brand Green:      #5ab200 / #70e000
       Cyan Accent:      #00b4d8
    */

    /* RESET & CORE STYLES */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    }

    body {
      background-color: #ffffff;
      color: #0f172a;
      line-height: 1.6;
    }

    html {
      scroll-behavior: smooth;
    }

    /* 1. ANNOUNCEMENT BANNER */
    .banner {
      background: linear-gradient(90deg, #0b2545, #00b4d8);
      color: #ffffff;
      padding: 10px 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 14px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      position: sticky;
      top: 0;
      z-index: 1000;
      border-bottom: 3px solid #70e000;
    }

    .banner.hidden {
      display: none;
    }

    .banner-content {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    #countdown {
      background: rgba(0, 0, 0, 0.3);
      padding: 2px 8px;
      border-radius: 4px;
      font-family: monospace;
      font-weight: bold;
      color: #70e000;
    }

    .banner-btn {
      background-color: #70e000;
      color: #0b2545;
      padding: 4px 12px;
      border-radius: 4px;
      font-weight: 700;
      text-decoration: none;
      font-size: 12px;
      transition: background 0.2s;
    }

    .banner-btn:hover {
      background-color: #5ab200;
      color: #ffffff;
    }

    .banner-close {
      background: none;
      border: none;
      color: #ffffff;
      font-size: 20px;
      cursor: pointer;
      opacity: 0.8;
    }

    /* 2. TOP HEADER SECTION */
    .top-header {
      background-color: #ffffff;
      border-bottom: 1px solid #e2e8f0;
    }

    .top-bar {
      max-width: 1200px;
      margin: 0 auto;
      padding: 12px 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo-container {
      display: flex;
      align-items: center;
      text-decoration: none;
    }

    .site-logo {
      height: 55px;
      width: auto;
      object-fit: contain;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .phone-number {
      display: flex;
      align-items: center;
      gap: 8px;
      color: #0b2545;
      font-weight: 700;
      font-size: 15px;
      text-decoration: none;
      transition: color 0.2s;
    }

    .phone-number:hover {
      color: #5ab200;
    }

    /* 3. SEPARATE MENU BAR DIV */
    .menu-bar {
      background-color: #0b2545;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }

    .menu-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      display: block;
      padding: 14px 0;
      color: #f1f5f9;
      text-decoration: none;
      font-weight: 600;
      font-size: 15px;
      transition: color 0.2s, border-color 0.2s;
      border-bottom: 3px solid transparent;
    }

    .nav-links a:hover {
      color: #70e000;
      border-bottom: 3px solid #70e000;
    }

    /* BUTTONS */
    .btn-primary {
      background: linear-gradient(135deg, #70e000 0%, #5ab200 100%);
      color: #ffffff;
      padding: 10px 20px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 700;
      font-size: 14px;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 14px rgba(112, 224, 0, 0.3);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      display: inline-block;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(90, 178, 0, 0.4);
    }

    .btn-secondary {
      color: #0b2545;
      padding: 12px 24px;
      text-decoration: none;
      font-weight: 600;
      border: 2px solid #0b2545;
      border-radius: 8px;
      transition: all 0.2s ease;
      display: inline-block;
    }

    .btn-secondary:hover {
      background-color: #0b2545;
      color: #ffffff;
    }

    /* 4. HERO SECTION */
    .hero-bg {
      background-color: #f8fafc;
      border-bottom: 1px solid #e2e8f0;
    }

    .hero-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 60px 24px 80px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }

    .badge {
      display: inline-block;
      background: rgba(112, 224, 0, 0.15);
      color: #387000;
      border: 1px solid rgba(112, 224, 0, 0.4);
      padding: 6px 16px;
      border-radius: 20px;
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .hero-title {
      font-size: 48px;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 20px;
      color: #0b2545;
    }

    .hero-description {
      font-size: 18px;
      color: #475569;
      margin-bottom: 32px;
    }

    .cta-group {
      display: flex;
      gap: 16px;
      align-items: center;
      margin-bottom: 40px;
    }

    /* INTERACTIVE IMAGE GALLERY */
    .visual-col {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .image-wrapper {
      position: relative;
      border-radius: 16px;
      border: 1px solid #cbd5e1;
      box-shadow: 0 20px 30px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      background-color: #ffffff;
    }

    .image-wrapper img {
      width: 100%;
      height: 380px;
      object-fit: cover;
      display: block;
      transition: opacity 0.3s ease;
    }

    .image-wrapper img.fade-out {
      opacity: 0.2;
    }

    .image-tabs {
      display: flex;
      gap: 8px;
      justify-content: center;
    }

    .tab-btn {
      background: #ffffff;
      border: 1px solid #cbd5e1;
      color: #475569;
      padding: 8px 14px;
      border-radius: 6px;
      font-size: 12px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .tab-btn.active, .tab-btn:hover {
      background: #0b2545;
      color: #ffffff;
      border-color: #0b2545;
    }

    /* COMMON SECTION STYLES */
    .section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 80px 24px;
    }

    .section-header {
      text-align: center;
      margin-bottom: 56px;
    }

    .section-title {
      font-size: 36px;
      font-weight: 800;
      color: #0b2545;
      margin-bottom: 12px;
    }

    .section-subtitle {
      color: #64748b;
      font-size: 18px;
    }

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

    .about-content h3 {
      font-size: 28px;
      color: #0b2545;
      margin-bottom: 16px;
    }

    .about-content p {
      color: #475569;
      margin-bottom: 20px;
    }

    .about-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-top: 30px;
    }

    .stat-card {
      background-color: #f8fafc;
      border: 1px solid #e2e8f0;
      padding: 20px;
      border-radius: 8px;
    }

    .stat-card h4 {
      font-size: 32px;
      color: #5ab200;
      font-weight: 800;
    }

    .stat-card p {
      margin-bottom: 0;
      font-size: 14px;
      color: #475569;
    }

    /* 6. SERVICES SECTION */
    .services-bg {
      background-color: #f1f5f9;
      border-top: 1px solid #e2e8f0;
      border-bottom: 1px solid #e2e8f0;
    }

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

    .service-card {
      background-color: #ffffff;
      border: 1px solid #e2e8f0;
      padding: 32px;
      border-radius: 12px;
      transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    }

    .service-card:hover {
      transform: translateY(-5px);
      border-color: #5ab200;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    }

    .service-icon {
      font-size: 36px;
      margin-bottom: 20px;
    }

    .service-card h3 {
      font-size: 20px;
      margin-bottom: 12px;
      color: #0b2545;
    }

    .service-card p {
      color: #64748b;
      font-size: 14px;
      margin-bottom: 24px;
    }

    /* STYLISH VIEW MORE BUTTON FOR SERVICES */
    .btn-view-more {
      align-self: flex-start;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      background-color: #f8fafc;
      color: #0b2545;
      font-size: 13px;
      font-weight: 700;
      border-radius: 20px;
      border: 1px solid #cbd5e1;
      transition: all 0.2s ease;
    }

    .btn-view-more span {
      transition: transform 0.2s ease;
    }

    .service-card:hover .btn-view-more {
      background: linear-gradient(135deg, #0b2545 0%, #00b4d8 100%);
      color: #ffffff;
      border-color: transparent;
      box-shadow: 0 4px 10px rgba(0, 180, 216, 0.25);
    }

    .service-card:hover .btn-view-more span {
      transform: translateX(4px);
    }

    /* 7. PROJECTS SECTION */
    .projects-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    .project-card {
      background-color: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
      transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
    }

    .project-card:hover {
      transform: translateY(-5px);
      border-color: #00b4d8;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    }

    .project-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .project-info {
      padding: 24px;
    }

    .project-tag {
      font-size: 12px;
      color: #387000;
      font-weight: 700;
      text-transform: uppercase;
    }

    .project-title {
      font-size: 20px;
      margin: 8px 0;
      color: #0b2545;
    }

    .project-desc {
      color: #64748b;
      font-size: 14px;
    }

    /* 8. TESTIMONIALS SECTION */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    .testimonial-card {
      background-color: #ffffff;
      border: 1px solid #e2e8f0;
      padding: 32px;
      border-radius: 12px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    }

    .testimonial-text {
      color: #334155;
      font-style: italic;
      margin-bottom: 24px;
    }

    .user-profile {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .user-avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: linear-gradient(135deg, #0b2545, #00b4d8);
      border: 2px solid #70e000;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      color: #ffffff;
    }

    .user-name {
      font-weight: 700;
      color: #0b2545;
    }

    .user-role {
      font-size: 13px;
      color: #64748b;
    }

    /* 9. FOOTER */
    footer {
      background-color: #0b2545;
      color: #94a3b8;
      padding: 60px 24px 30px;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr repeat(3, 1fr);
      gap: 48px;
      margin-bottom: 40px;
    }

    .footer-brand p {
      margin-top: 12px;
      font-size: 14px;
      color: #cbd5e1;
    }

    .site-logo-footer {
      height: 55px;
      width: auto;
      object-fit: contain;
      background: #ffffff;
      padding: 6px 12px;
      border-radius: 8px;
    }

    .footer-col h4 {
      color: #ffffff;
      margin-bottom: 16px;
      font-size: 16px;
      border-left: 3px solid #70e000;
      padding-left: 8px;
    }

    .footer-col ul {
      list-style: none;
    }

    .footer-col li {
      margin-bottom: 8px;
    }

    .footer-col a {
      color: #cbd5e1;
      text-decoration: none;
      font-size: 14px;
      transition: color 0.2s;
    }

    .footer-col a:hover {
      color: #70e000;
    }

    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      padding-top: 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 14px;
      color: #94a3b8;
    }

    /* RESPONSIVE DESIGN */
    @media (max-width: 900px) {
      .top-bar, .hero-container, .about-grid, .services-grid, .projects-grid, .testimonials-grid, .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .top-bar, .header-actions, .cta-group, .footer-bottom {
        flex-direction: column;
        gap: 16px;
      }

      .nav-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
      }

      .nav-links a {
        padding: 10px 0;
      }

      .image-tabs {
        flex-wrap: wrap;
      }

      .btn-view-more {
        align-self: center;
      }
    }
  /* 2.about page */
    /* 1. HERO HEADER WITH BACKGROUND IMAGE FOR ABOUT PAGE */
/* 1. HERO HEADER WITH GUARANTEED BACKGROUND IMAGE VISIBILITY */
  .about-hero {
  position: relative;
  width: 100%;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
  /* Light High-Tech Background Image with Dark Blue Tint Overlay */
  background: 
    linear-gradient(135deg, rgba(11, 37, 69, 0.78) 0%, rgba(0, 18, 32, 0.82) 100%),
    url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1600&q=80');
  
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  
  color: #ffffff;
  padding: 80px 24px;
  box-sizing: border-box;
}

.about-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #70e000, #00b4d8);
}
.about-hero h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.about-hero p {
  font-size: 18px;
  color: #e2e8f0;
  max-width: 650px;
  margin: 0 auto;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.about-hero .badge {
  display: inline-block;
  background: rgba(112, 224, 0, 0.2);
  color: #70e000;
  border: 1px solid rgba(112, 224, 0, 0.5);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
    /* 2. STORY SECTION STYLES */
    .story-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }

    .story-img-wrapper {
      position: relative;
    }

    .story-img-wrapper img {
      width: 100%;
      border-radius: 16px;
      box-shadow: 0 20px 30px rgba(0,0,0,0.08);
      border: 1px solid #cbd5e1;
    }

    .experience-card {
      position: absolute;
      bottom: -20px;
      right: -20px;
      background: #0b2545;
      color: #ffffff;
      padding: 20px 28px;
      border-radius: 12px;
      border-left: 5px solid #70e000;
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

    .experience-card h3 {
      font-size: 32px;
      color: #70e000;
      margin-bottom: 4px;
    }

    .story-content h2 {
      font-size: 32px;
      color: #0b2545;
      margin-bottom: 20px;
      line-height: 1.3;
    }

    .story-content p {
      color: #475569;
      margin-bottom: 16px;
      font-size: 16px;
    }

    /* 3. STATS BANNER STYLES */
    .stats-bg {
      background-color: #f8fafc;
      border-top: 1px solid #e2e8f0;
      border-bottom: 1px solid #e2e8f0;
      padding: 60px 24px;
    }

    .stats-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      text-align: center;
    }

    .stat-box {
      background: #ffffff;
      padding: 32px 20px;
      border-radius: 12px;
      border: 1px solid #e2e8f0;
      box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    }

    .stat-box h3 {
      font-size: 42px;
      color: #5ab200;
      font-weight: 800;
      margin-bottom: 4px;
    }

    .stat-box p {
      color: #0b2545;
      font-weight: 600;
      font-size: 15px;
    }

    /* 4. VALUES GRID STYLES */
    .values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    .value-card {
      background-color: #ffffff;
      border: 1px solid #e2e8f0;
      padding: 32px;
      border-radius: 12px;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .value-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
      border-color: #00b4d8;
    }

    .value-icon {
      width: 50px;
      height: 50px;
      background: rgba(0, 180, 216, 0.1);
      color: #00b4d8;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      margin-bottom: 20px;
    }

    .value-card h3 {
      font-size: 20px;
      color: #0b2545;
      margin-bottom: 12px;
    }

    .value-card p {
      color: #64748b;
      font-size: 14px;
    }

    /* 5. TEAM GRID STYLES */
    .team-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    .team-card {
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 12px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 4px 6px rgba(0,0,0,0.02);
      transition: transform 0.2s;
    }

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

    .team-img {
      width: 100%;
      height: 260px;
      object-fit: cover;
    }

    .team-info {
      padding: 24px;
    }

    .team-info h3 {
      font-size: 20px;
      color: #0b2545;
      margin-bottom: 4px;
    }

    .team-info p {
      color: #5ab200;
      font-weight: 600;
      font-size: 14px;
      margin-bottom: 12px;
    }

    .team-bio {
      color: #64748b !important;
      font-weight: 400 !important;
      font-size: 13px !important;
    }

    /* RESPONSIVE DESIGN */
    @media (max-width: 900px) {
      .story-grid, .values-grid, .team-grid, .stats-container {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .experience-card {
        position: static;
        margin-top: 16px;
      }
    }
	
	/* menu  */



/* ==========================================================================
   2. MAIN NAVIGATION BAR
   ========================================================================== */
.nav-menu {
  background-color: #0b2545; /* Separate Menu Bar Background Color */
  border-bottom: 2px solid rgba(0, 180, 216, 0.2);
}

.nav-list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  list-style: none;
  display: flex;
  align-items: center;
}

/* Individual Nav Link Parent */
.nav-item {
  position: relative; /* CRITICAL: Allows mega menu to align relative to item */
}

.nav-link {
  display: block;
  padding: 16px 20px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-link:hover,
.nav-item.has-dropdown:hover > .nav-link {
  color: #70e000;
  background-color: rgba(255, 255, 255, 0.05);
}

.arrow {
  font-size: 12px;
  margin-left: 4px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.has-dropdown:hover .arrow {
  transform: rotate(180deg);
}

.btn-primary-sm {
  background-color: #70e000;
  color: #0b2545;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  margin-left: 15px;
  transition: all 0.2s ease;
}

.btn-primary-sm:hover {
  background-color: #38b000;
  color: #ffffff;
}


/* ==========================================================================
   3. SERVICES MEGA MENU DROPDOWN
   ========================================================================== */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px); /* Positioned center under Services link */
  width: 720px;
  background-color: #0b2545;
  border: 1px solid rgba(0, 180, 216, 0.3);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 9999;
}

/* Hovering shows the mega menu */
.nav-item.has-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* 3-Column Layout */
.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

/* Individual Card Item */
.mega-item {
  display: flex;
  flex-direction: column; /* Header on top, Description below */
  gap: 6px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.mega-item:hover {
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

/* Header Row: Icon + Title right next to each other */
.mega-item-header {
  display: flex;
  align-items: center; /* Vertical centering */
  gap: 10px;           /* Gap between Icon & Title */
}

/* Icon Box */
.mega-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: rgba(0, 180, 216, 0.15);
  border: 1px solid rgba(0, 180, 216, 0.3);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s ease;
}

.mega-item:hover .mega-icon {
  background: #70e000;
  border-color: #70e000;
  color: #0b2545;
}

/* Title (Sales Cloud, etc.) */
.mega-title {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  transition: color 0.2s ease;
}

.mega-item:hover .mega-title {
  color: #70e000;
}

/* Description Text (Below Header) */
.mega-desc {
  color: #94a3b8;
  font-size: 11px;
  line-height: 1.35;
  margin: 0;
}

/* ==========================================================================
   HEADER & HAMBURGER BASE (Desktop Defaults)
   ========================================================================== */

.top-bar {
  position: relative; /* Anchor point for top: 100% on mobile menu */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* HAMBURGER BUTTON (Hidden on Desktop) */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10001; /* Above mobile nav */
}

.mobile-menu-toggle span {
  width: 100%;
height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ==========================================================================
   4. RESPONSIVE / MOBILE MEDIA QUERIES (< 992px)
   ========================================================================== */
@media screen and (max-width: 991px) {

  /* Show Hamburger Icon */
  .mobile-menu-toggle {
    display: flex;
	background: #0b2545;
  }

  /* Hamburger to Cross (X) Animation when active */
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
  }
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
  }

  .phone-number span {
    display: none; /* Hide phone text on small mobiles, show icon only */
  }

  /* Main navigation menu dropdown on mobile */
  .nav-menu {
    display: none;
    position: absolute;
    top: 11%;
    left: 0;
    width: 100%;
    background-color: #0b2545;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    max-height: calc(100vh - 80px);
    overflow-y: auto; /* Enables scrolling if menu exceeds mobile screen */
  }

  /* Class toggled by JavaScript */
  .nav-menu.active {
    display: block;
  }

  .nav-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 10px 0;
    margin: 0;
    list-style: none;
  }

  .nav-link {
    display: block;
    padding: 14px 20px;
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .btn-primary-sm {
    margin: 15px 20px;
    text-align: center;
    display: block;
  }

  /* --- MOBILE MEGA MENU (Accordion Style) --- */
  .mega-menu {
    position: static; /* Remove absolute positioning on mobile */
    transform: none !important;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    border: none;
    box-shadow: none;
    background-color: #06192e; /* Slightly darker shade for nested items */
    transition: max-height 0.4s ease, padding 0.3s ease;
    opacity: 1;
    visibility: visible;
  }

  /* When active on click in mobile */
  .has-dropdown.active .mega-menu {
    max-height: 1500px; /* High enough to fit all 9 services */
    padding: 15px;
  }

  /* Switch Grid to Single Column on Mobile */
  .mega-menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mega-item {
    display: block;
    background: rgba(255, 255, 255, 0.04);
    padding: 10px 12px;
    border-radius: 6px;
    text-decoration: none;
  }
}
/* --- SERVICE HERO --- */
/* --- TRANSFORMATION COMPARISON STYLES --- */
.transformation-section {
  position: relative;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  align-items: stretch;
}

.comparison-card {
  background: #0b2545;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comparison-card:hover {
  transform: translateY(-6px);
}

/* BEFORE (PROBLEM) CARD STYLING */
.before-card {
  border: 1px solid rgba(239, 68, 68, 0.3);
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.05);
}

.before-card:hover {
  border-color: rgba(239, 68, 68, 0.6);
  box-shadow: 0 15px 35px rgba(239, 68, 68, 0.15);
}

/* AFTER (SOLUTION) CARD STYLING */
.after-card {
  border: 1px solid rgba(112, 224, 0, 0.4);
  background: linear-gradient(180deg, #0b2545 0%, rgba(112, 224, 0, 0.04) 100%);
  box-shadow: 0 10px 30px rgba(112, 224, 0, 0.08);
}

.after-card:hover {
  border-color: #70e000;
  box-shadow: 0 15px 35px rgba(112, 224, 0, 0.2);
}

/* IMAGE CONTAINER WITH BADGE OVERLAY */
.comparison-img-wrapper {
  position: relative;
  height: 200px;
  width: 100%;
  overflow: hidden;
}

.comparison-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.comparison-card:hover .comparison-img-wrapper img {
  transform: scale(1.05);
}

/* IMAGE OVERLAY BADGES */
.status-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-problem {
  background: rgba(239, 68, 68, 0.85);
  color: #ffffff;
}

.badge-solution {
  background: rgba(112, 224, 0, 0.9);
  color: #0b2545;
}

/* CONTENT AREA */
.comparison-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.comparison-title {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.5;
}

.comparison-list li strong {
  color: #ffffff;
}

.list-icon {
  font-size: 1.1rem;
  line-height: 1;
  margin-top: 2px;
}

/* RESPONSIVE LAYOUT FOR MOBILE */
@media (max-width: 991px) {
  .comparison-grid {
    grid-template-columns: 1fr;
  }
}
.service-hero {
  padding: 90px 20px 70px 20px;
  background: radial-gradient(circle at top, rgba(0, 180, 216, 0.15), transparent 70%), #051923;
  text-align: center;
}

.service-hero-content h1 {
  font-size: 2.8rem;
  color: #ffffff;
  max-width: 800px;
  margin: 15px auto;
  font-weight: 800;
}

.service-hero-content p {
  color: #94a3b8;
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto;
}

.btn-secondary-outline {
  border: 1px solid #00b4d8;
  color: #00b4d8;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin-left: 10px;
  transition: all 0.3s ease;
}

.btn-secondary-outline:hover {
  background: rgba(0, 180, 216, 0.1);
  color: #ffffff;
}

/* --- COMPARISON SECTION (BEFORE vs AFTER) --- */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.comparison-card {
  padding: 30px;
  border-radius: 12px;
  background: #0b2545;
}

.before-card {
  border: 1px solid rgba(255, 77, 77, 0.3);
}

.after-card {
  border: 1px solid rgba(112, 224, 0, 0.4);
  background: linear-gradient(180deg, #2fb033 0%, rgba(112, 224, 0, 0.05) 100%);
}

.comparison-title {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.comparison-list li {
  color: #94a3b8;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.95rem;
}

/* --- PROCESS TIMELINE --- */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.process-step {
  background: #0b2545;
  padding: 25px 20px;
  border-radius: 10px;
  border-top: 3px solid #00b4d8;
  position: relative;
}

.step-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: #70e000;
  margin-bottom: 10px;
}

.process-step h3 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.process-step p {
  color: #94a3b8;
  font-size: 0.88rem;
  line-height: 1.5;
}

/* --- FAQ & CTA BANNER --- */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: #0b2545;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(0, 180, 216, 0.15);
}

.faq-item h4 {
  color: #ffffff;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.faq-item p {
  color: #94a3b8;
  margin: 0;
  font-size: 0.92rem;
}

.cta-banner {
  text-align: center;
  background: linear-gradient(135deg, #0b2545, #051923);
  border: 1px solid #00b4d8;
  padding: 50px 20px;
  border-radius: 12px;
}

.cta-banner h2 {
  color: #ffffff;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.cta-banner p {
  color: #94a3b8;
  margin-bottom: 25px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .comparison-grid, .process-timeline {
    grid-template-columns: 1fr;
  }
}
/* --- SALES CLOUD HERO SPECIFIC BACKGROUND --- */
.salescloud-hero {
  position: relative;
  padding: 120px 20px 90px 20px;
  background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  overflow: hidden;
}

/* DARK OVERLAY FOR TEXT READABILITY */
.salescloud-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Dark Navy gradient overlay matching brand colors (#051923 & #0b2545) */
  background: linear-gradient(
    135deg,
    rgba(5, 25, 35, 0.92) 0%,
    rgba(11, 37, 69, 0.88) 50%,
    rgba(5, 25, 35, 0.95) 100%
  );
  z-index: 1;
}

/* CONTENT CONTAINER OVERLAY POSITIONING */
.service-hero-content {
  position: relative;
  z-index: 2; /* Keeps text and buttons above the background image */
  max-width: 850px;
  margin: 0 auto;
}

.service-hero-content h1 {
  font-size: 3rem;
  color: #ffffff;
  margin: 18px 0;
  font-weight: 800;
  line-height: 1.25;
}

.service-hero-content p {
  color: #cbd5e1;
  font-size: 1.15rem;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* RESPONSIVE HERO */
@media (max-width: 768px) {
  .salescloud-hero {
    padding: 80px 20px 60px 20px;
  }
  
  .service-hero-content h1 {
    font-size: 2.1rem;
  }
  
  .hero-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .btn-secondary-outline {
    margin-left: 0;
  }
}

/* --- SERVICE CLOUD HERO SPECIFIC BACKGROUND --- */
.servicecloud-hero {
  position: relative;
  padding: 120px 20px 90px 20px;
  background-image: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  overflow: hidden;
}

.servicecloud-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(5, 25, 35, 0.92) 0%,
    rgba(11, 37, 69, 0.88) 50%,
    rgba(5, 25, 35, 0.95) 100%
  );
  z-index: 1;
}

/* --- MARKETING CLOUD HERO SPECIFIC BACKGROUND --- */
.marketingcloud-hero {
  position: relative;
  padding: 120px 20px 90px 20px;
  background-image: url('https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  overflow: hidden;
}

.marketingcloud-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(5, 25, 35, 0.92) 0%,
    rgba(11, 37, 69, 0.88) 50%,
    rgba(5, 25, 35, 0.95) 100%
  );
  z-index: 1;
}

/* --- AGENTFORCE HERO SPECIFIC BACKGROUND --- */
.agentforce-hero {
  position: relative;
  padding: 120px 20px 90px 20px;
  background-image: url('https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  overflow: hidden;
}

.agentforce-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(5, 25, 35, 0.93) 0%,
    rgba(11, 37, 69, 0.89) 50%,
    rgba(5, 25, 35, 0.95) 100%
  );
  z-index: 1;
}
/* --- ACCOUNT ENGAGEMENT HERO SPECIFIC BACKGROUND --- */
.pardot-hero {
  position: relative;
  padding: 120px 20px 90px 20px;
  background-image: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  overflow: hidden;
}

.pardot-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(5, 25, 35, 0.92) 0%,
    rgba(11, 37, 69, 0.88) 50%,
    rgba(5, 25, 35, 0.95) 100%
  );
  z-index: 1;
}

/* --- CLASSIC TO LIGHTNING HERO SPECIFIC BACKGROUND --- */
.lightning-hero {
  position: relative;
  padding: 120px 20px 90px 20px;
  background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  overflow: hidden;
}

.lightning-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(5, 25, 35, 0.92) 0%,
    rgba(11, 37, 69, 0.88) 50%,
    rgba(5, 25, 35, 0.95) 100%
  );
  z-index: 1;
}

/* --- COMMERCE CLOUD HERO SPECIFIC BACKGROUND --- */
.commerce-hero {
  position: relative;
  padding: 120px 20px 90px 20px;
  background-image: url('https://images.unsplash.com/photo-1556742049-0a670f4a4591?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  overflow: hidden;
}

.commerce-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(5, 25, 35, 0.92) 0%,
    rgba(11, 37, 69, 0.88) 50%,
    rgba(5, 25, 35, 0.95) 100%
  );
  z-index: 1;
}

/* --- EXPERIENCE CLOUD HERO SPECIFIC BACKGROUND --- */
.community-hero {
  position: relative;
  padding: 120px 20px 90px 20px;
  background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  overflow: hidden;
}

.community-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(5, 25, 35, 0.92) 0%,
    rgba(11, 37, 69, 0.88) 50%,
    rgba(5, 25, 35, 0.95) 100%
  );
  z-index: 1;
}

/* --- APPEXCHANGE HERO SPECIFIC BACKGROUND --- */
.appexchange-hero {
  position: relative;
  padding: 120px 20px 90px 20px;
  background-image: url('https://images.unsplash.com/photo-1526374965328-7f61d4dc18c5?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  overflow: hidden;
}

.appexchange-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(5, 25, 35, 0.92) 0%,
    rgba(11, 37, 69, 0.88) 50%,
    rgba(5, 25, 35, 0.95) 100%
  );
  z-index: 1;
}

/* ==========================================================================
   CONTACT PAGE STYLES (CloudIT Zone Dark Theme)
   ========================================================================== */

/* Page Hero Header */
.page-hero {
  background-color: #0b2545;
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.page-hero p {
  color: #a0aec0;
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Contact Grid Layout */
.contact-section {
  padding: 60px 0;
  background-color: #06192e;
  color: #ffffff;
  margin: 47px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}

/* Contact Info Cards */
.contact-info h2, 
.contact-form-container h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: #ffffff;
}

.info-subtitle {
  color: #a0aec0;
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.info-card:hover {
  border-color: rgba(0, 180, 216, 0.4);
  transform: translateY(-2px);
}

.info-icon {
  font-size: 1.4rem;
  background: rgba(0, 180, 216, 0.12);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  flex-shrink: 0;
}

.info-details h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: #ffffff;
}

.info-details p, 
.info-details a {
  color: #a0aec0;
  text-decoration: none;
  font-size: 0.95rem;
}

.info-details a:hover {
  color: #00b4d8;
}

/* Form Container & Inputs */
.contact-form-container {
  background: rgba(255, 255, 255, 0.02);
  padding: 35px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-form {
  margin-top: 20px;
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

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

.form-group label {
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #e2e8f0;
  font-weight: 500;
}

.form-group input, 
.form-group select, 
.form-group textarea {
  padding: 12px 16px;
  background-color: #0b2545;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  color: #ffffff;
  font-size: 0.95rem;
  outline: none;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
  border-color: #00b4d8;
  box-shadow: 0 0 0 2px rgba(0, 180, 216, 0.2);
}

.btn-submit {
  background-color: #00b4d8;
  color: #ffffff;
  border: none;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  width: 100%;
}

.btn-submit:hover {
  background-color: #0077b6;
  transform: translateY(-1px);
}

/* Form Alert Banner */
.form-alert.success {
  background-color: rgba(72, 187, 120, 0.15);
  border: 1px solid #48bb78;
  color: #48bb78;
  padding: 14px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

/* Map Container */
.map-section {
  line-height: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Responsive Overrides (< 992px) */
@media screen and (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form-container {
    padding: 25px;
  }
  
  .page-hero h1 {
    font-size: 2rem;
  }
}
.contact-info {
    padding: 35px;
}

/* ==========================================================================
   PAGE HERO WITH BACKGROUND IMAGE & OVERLAY
   ========================================================================== */
.page-hero {
  position: relative;
  width: 100%;
  padding: 90px 20px;
  text-align: center;
  background-color: #0b2545;
  /* Dark Tech Network Background Image with Gradient Overlay */
  background-image: 
    linear-gradient(135deg, rgba(11, 37, 69, 0.88) 0%, rgba(6, 25, 46, 0.92) 100%), 
    url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid rgba(0, 180, 216, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.page-hero p {
  color: #cbd5e1;
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.6;
}

/* Optional Accent Line below text */
.page-hero-accent {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #00b4d8, #70e000);
  margin: 25px auto 0 auto;
  border-radius: 2px;
}

/* Mobile Responsive Adjustments */
@media screen and (max-width: 991px) {
  .page-hero {
    padding: 65px 20px;
  }
  .page-hero h1 {
    font-size: 2.1rem;
  }
  .page-hero p {
    font-size: 1rem;
  }
}


/* ==========================================================================
   EXCLUSIVE VISA SERVICES PORTAL STYLING
   ========================================================================== */

/* 1. Hero Custom Layout */
.visa-hero-custom {
  position: relative;
  padding: 100px 20px 80px 20px;
  background: radial-gradient(circle at 80% 20%, rgba(0, 180, 216, 0.15), transparent 50%),
              linear-gradient(135deg, #06192e 0%, #0b2545 100%);
  border-bottom: 1px solid rgba(0, 180, 216, 0.2);
  overflow: hidden;
}

.visa-hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.visa-badge-live {
  display: inline-block;
  background: rgba(0, 180, 216, 0.15);
  color: #00b4d8;
  border: 1px solid rgba(0, 180, 216, 0.3);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.visa-hero-left h1 {
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 15px;
  color: #ffffff;
  font-weight: 800;
}

.visa-hero-left p {
  color: #cbd5e1;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.destination-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.dest-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.9rem;
  color: #e2e8f0;
}

.visa-hero-actions {
  display: flex;
  gap: 15px;
}

/* 2. Hero Card Widget */
.visa-hero-card {
  background: linear-gradient(145deg, rgba(11, 37, 69, 0.8), rgba(6, 25, 46, 0.95));
  border: 1px solid rgba(0, 180, 216, 0.3);
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.widget-header {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.widget-icon {
  font-size: 2rem;
  background: rgba(0, 180, 216, 0.12);
  padding: 8px;
  border-radius: 10px;
}

.widget-header h4 {
  color: #ffffff;
  margin: 0;
  font-size: 1.05rem;
}

.widget-header p {
  color: #a0aec0;
  margin: 0;
  font-size: 0.85rem;
}

.status-indicator {
  margin-left: auto;
  background: rgba(112, 224, 0, 0.2);
  color: #70e000;
  border: 1px solid #70e000;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 15px;
}

.metric-val {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: #00b4d8;
}

.metric-lbl {
  font-size: 0.75rem;
  color: #94a3b8;
}

.widget-checklist-preview .check-item {
  font-size: 0.85rem;
  color: #e2e8f0;
  margin-bottom: 6px;
}

/* 3. Destination Country Cards */
.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.dest-card {
  background: #081f37;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.dest-card:hover {
  transform: translateY(-5px);
  border-color: #00b4d8;
}

.dest-img {
  height: 160px;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 15px;
}

.country-tag {
  background: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.dest-content {
  padding: 20px;
}

.dest-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.dest-meta {
  display: flex;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.03);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  color: #94a3b8;
  margin-bottom: 12px;
}

.dest-content p {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.5;
  margin-bottom: 15px;
}

.dest-link {
  color: #00b4d8;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
}

.dest-link:hover {
  color: #70e000;
}

/* 4. Visual Checklist Box */
.checklist-box-wrapper {
  background: linear-gradient(135deg, #092648, #05192e);
  border: 1px solid rgba(0, 180, 216, 0.2);
  border-radius: 16px;
  padding: 40px;
}

.checklist-header-text {
  text-align: center;
  margin-bottom: 35px;
}

.checklist-header-text h2 {
  font-size: 2rem;
  margin-top: 10px;
  color: #ffffff;
}

.checklist-header-text p {
  color: #94a3b8;
}

.docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.doc-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px;
  border-radius: 10px;
}

.doc-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.doc-card h4 {
  color: #ffffff;
  margin-bottom: 6px;
  font-size: 1rem;
}

.doc-card p {
  color: #94a3b8;
  font-size: 0.85rem;
  line-height: 1.5;
}

/* 5. Step-by-Step Visual Path */
.visual-path-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 30px;
}

.path-step {
  background: #081f37;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 25px 15px;
  text-align: center;
  flex: 1;
  position: relative;
}

.step-badge-icon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #00b4d8;
  color: #ffffff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 26px;
}

.step-icon-box {
  font-size: 2.2rem;
  margin-top: 5px;
  margin-bottom: 10px;
}

.path-step h3 {
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.path-step p {
  color: #94a3b8;
  font-size: 0.85rem;
  line-height: 1.4;
}

.path-connector {
  font-size: 1.5rem;
  color: #00b4d8;
  font-weight: bold;
}

/* 6. Form Card */
.visa-calc-card {
  max-width: 850px;
  margin: 0 auto;
  background: #081f37;
  border: 1px solid rgba(0, 180, 216, 0.25);
  border-radius: 16px;
  padding: 35px;
}

.calc-header {
  text-align: center;
  margin-bottom: 25px;
}

.calc-header h2 {
  color: #ffffff;
  font-size: 1.8rem;
}

.calc-header p {
  color: #94a3b8;
  font-size: 0.95rem;
}

.btn-glow {
  background: linear-gradient(90deg, #00b4d8, #0077b6);
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Responsive (<992px) */
@media screen and (max-width: 991px) {
  .visa-hero-container {
    grid-template-columns: 1fr;
  }
  .visual-path-container {
    flex-direction: column;
  }
  .path-connector {
    transform: rotate(90deg);
    margin: 5px 0;
  }
  .visa-hero-left h1 {
    font-size: 2.2rem;
  }
}

/* ==========================================================================
   VISA COMPARISON MATRIX & REFUSAL HUB
   ========================================================================== */

/* 1. Matrix Table */
.matrix-table-wrapper {
  overflow-x: auto;
  background: #081f37;
  border: 1px solid rgba(0, 180, 216, 0.2);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.visa-matrix-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

.visa-matrix-table th {
  background: rgba(11, 37, 69, 0.9);
  color: #00b4d8;
  padding: 18px 20px;
  border-bottom: 2px solid rgba(0, 180, 216, 0.3);
  font-weight: 700;
}

.visa-matrix-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #e2e8f0;
}

.visa-matrix-table tbody tr:hover {
  background: rgba(0, 180, 216, 0.04);
}

.table-country {
  display: flex;
  align-items: center;
  gap: 12px;
}

.flag-icon {
  font-size: 1.6rem;
}

.table-country strong {
  display: block;
  color: #ffffff;
}

.table-country span {
  font-size: 0.8rem;
  color: #94a3b8;
}

.badge-time {
  background: rgba(255, 255, 255, 0.08);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
}

.tag-req {
  color: #f59e0b;
  font-weight: 600;
}

.tag-opt {
  color: #00b4d8;
}

.tag-no {
  color: #70e000;
}

.rating-bar {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.rating-bar.high {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border: 1px solid #ef4444;
}

.rating-bar.med {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
  border: 1px solid #f59e0b;
}

.rating-bar.low {
  background: rgba(112, 224, 0, 0.2);
  color: #70e000;
  border: 1px solid #70e000;
}

.btn-table {
  display: inline-block;
  background: #00b4d8;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-table:hover {
  background: #0077b6;
}

/* 2. Refusal Recovery Grid */
.refusal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.refusal-card {
  background: #081f37;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 25px;
  transition: transform 0.3s ease;
}

.refusal-card:hover {
  transform: translateY(-4px);
  border-color: rgba(239, 68, 68, 0.4);
}

.refusal-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.refusal-icon {
  font-size: 1.5rem;
}

.refusal-head h4 {
  color: #ffffff;
  font-size: 1.05rem;
  margin: 0;
}

.refusal-desc {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.refusal-fix {
  background: rgba(112, 224, 0, 0.08);
  border-left: 3px solid #70e000;
  padding: 10px 14px;
  border-radius: 0 6px 6px 0;
  font-size: 0.85rem;
  color: #cbd5e1;
}

.refusal-fix strong {
  color: #70e000;
}

/* 3. SLA Banner Box */
.sla-banner-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  background: linear-gradient(135deg, #092648, #05192e);
  border: 1px solid rgba(0, 180, 216, 0.25);
  border-radius: 16px;
  padding: 30px;
}

.sla-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.sla-icon {
  font-size: 1.8rem;
  background: rgba(0, 180, 216, 0.12);
  padding: 10px;
  border-radius: 10px;
  flex-shrink: 0;
}

.sla-text h3 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.sla-text p {
  color: #94a3b8;
  font-size: 0.85rem;
  line-height: 1.4;
  margin: 0;
}

/* ==========================================================================
   MOBILE HEADER: CALL (LEFT), MENU (CENTER), GET STARTED (RIGHT)
   ========================================================================== */
@media screen and (max-width: 991px) {
  
  /* Container Layout */
  .top-bar {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 10px 15px !important;
    gap: 10px !important;
  }

  /* Row 1: Logo Center */
  .logo-container {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding-bottom: 8px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  }

  .site-logo {
    height: 32px !important;
    margin: 0 auto !important;
  }

  /* Row 2: Actions Bar */
  .header-actions {
    width: 100% !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    position: relative !important;
  }

  /* 1. LEFT: Call Icon */
  .phone-number {
    order: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 6px 10px !important;
    background: rgba(0, 180, 216, 0.12) !important;
    border: 1px solid rgba(0, 180, 216, 0.3) !important;
    border-radius: 6px !important;
    font-size: 1.1rem !important;
  }

  .phone-number span {
    display: none !important;
  }

  /* 2. CENTER: Hamburger Menu Toggle */
  .mobile-menu-toggle {
    display: flex !important;
    order: 2 !important;
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin: 0 !important;
  }

  /* 3. RIGHT: Get Started Button */
  .header-actions .btn-primary {
    order: 3 !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    padding: 8px 16px !important;
    font-size: 0.85rem !important;
    white-space: nowrap !important;
    border-radius: 6px !important;
  }
  
  .value-icon {
    width: auto;
  }
}

/* ==========================================================================
   EUROPE & UK VISA MATRIX GRID STYLES
   ========================================================================== */
.visa-matrix-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.matrix-card {
  background: #081f37;
  border: 1px solid rgba(0, 180, 216, 0.2);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.matrix-card:hover {
  transform: translateY(-6px);
  border-color: #00b4d8;
  box-shadow: 0 15px 35px rgba(0, 180, 216, 0.15);
}

.matrix-card-img {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.matrix-card-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(5, 25, 35, 0.4) 0%, rgba(8, 31, 55, 0.95) 100%);
}

.matrix-country-tag {
  position: relative;
  z-index: 2;
  background: rgba(11, 37, 69, 0.85);
  color: #ffffff;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
}

.matrix-cat-badge {
  position: relative;
  z-index: 2;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-job {
  background: rgba(112, 224, 0, 0.2);
  color: #70e000;
  border: 1px solid #70e000;
}

.badge-study {
  background: rgba(0, 180, 216, 0.2);
  color: #00b4d8;
  border: 1px solid #00b4d8;
}

.badge-tour {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
  border: 1px solid #f59e0b;
}

.matrix-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.matrix-card-body h3 {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 700;
}

.matrix-spec-list {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 12px 15px;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.matrix-spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.spec-label {
  color: #94a3b8;
}

.spec-val {
  color: #ffffff;
  font-weight: 600;
}

.highlight-blue {
  color: #00b4d8 !important;
}

.highlight-green {
  color: #70e000 !important;
}

.matrix-desc {
  font-size: 0.88rem;
  color: #cbd5e1;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.btn-matrix {
  display: block;
  text-align: center;
  background: rgba(0, 180, 216, 0.12);
  color: #00b4d8;
  border: 1px solid rgba(0, 180, 216, 0.3);
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.btn-matrix:hover {
  background: #00b4d8;
  color: #ffffff;
  border-color: #00b4d8;
  box-shadow: 0 4px 12px rgba(0, 180, 216, 0.3);
}

@media screen and (max-width: 991px) {
  .visa-matrix-grid {
    grid-template-columns: 1fr;
  }
}