/* ==========================================================================
   VISTERIA CONSULTING SERVICES - Main Stylesheet
   Modern, Responsive, High-Performance Enterprise UI
   ========================================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');
@import url('link href="https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');

/* --- CSS Variables / Design Tokens --- */
:root {
  /* Colors */
  /*--primary-blue: #266AD9;*/
  --primary-blue: #0046b0;
  --primary-blue-hover: #124eb0;
  --primary-blue-light: #e9f2ff;
  --accent-cyan: #00b4d8;
  --accent-gradient: linear-gradient(135deg, #1660cf 0%, #0099ff 100%);
  
  --dark-navy: #061838;
  --footer-bg: #023281;
  --footer-bottom-bg: #023281;
  --footer-heading-color: #66A0FF;
  
  --text-main: #1d2939;
  --text-muted: #475467;
  --text-light: #667085;
  --text-white: #ffffff;
  
  --bg-light-blue: #eef4fc;
  --bg-dark-blue: #DCE1F0;
  --bg-section-process: #dce7f5;
  --bg-section-about: #f0f4fa;
  --bg-section-clients: #e9eff7;
  --bg-card: #ffffff;
  
  --border-light: #e4e7ec;
  --border-glass: rgba(255, 255, 255, 0.2);
  
  /* Typography */
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Josefin Sans', sans-serif;
  --font-h2:30px;
  
  /* Shadows */
  --shadow-sm: 0 2px 6px rgba(16, 24, 40, 0.05);
  --shadow-md: 0 6px 20px rgba(16, 24, 40, 0.08);
  --shadow-lg: 0 12px 32px rgba(16, 24, 40, 0.12);
  --shadow-blue-glow: 0 8px 25px rgba(22, 96, 207, 0.35);
  
  /* Layout & Transitions */
  --container-width: 1280px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 50px;
}

/* --- Base & Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: #f3f1f7;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

button, .btn {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  outline: none;
  transition: var(--transition);
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Reusable Components & Buttons --- */
.btn-primary {
  background: var(--primary-blue);
  color: var(--text-white);
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(22, 96, 207, 0.3);
}

.btn-primary:hover {
  background: var(--primary-blue-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue-glow);
  color: var(--text-white);
}

.btn-outline-glass {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-outline-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
  color: var(--text-white);
}

.btn-outline-blue {
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  padding: 10px 24px;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-outline-blue:hover {
  background: var(--primary-blue);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue-glow);
}

.section-eyebrow {
  color: var(--primary-blue);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: inline-block;
}

.section-title-large {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #102a5c;
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   1. NAVBAR / HEADER
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #f3f1f7;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  position: relative;
  height: 70px;
}

.nav-brand {
  /*-display: flex;-*/
  align-items: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

.brand-logo {
    height: auto;
    width: 120px;
    object-fit: contain;
    transition: var(--transition);
    position: fixed;
    background-color: #fff;
    top:0;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);

}

.scroll-text
 {
    width: 120px;
    display: flex;
    font-size: 12px;
    font-weight: bold;
    position: fixed;
    bottom: -25px;
    background-color: #fff;
    border-radius: 0 0 15px 15px; 
    color: #555;
    padding: 0 5px;
    line-height: 25px;
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.3);
 }

.brand-logo:hover {
  transform: scale(1.02);
}

.brand-name-center{
  text-align: center;
  font-family: var(--font-heading);
  color:var(--primary-blue);
  line-height: 20px;
  p{
    color:#333333;
    font-family: sans-serif;
    font-size: 14px;
  }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  position: absolute;
  right: 0;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: #4b5563;
  position: relative;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link:hover, .nav-link.active {
  color: #111827;
  font-weight: 600;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-blue);
  border-radius: 2px;
}

.nav-dropdown-arrow {
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

.nav-dropdown {
  position: relative;
}

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

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 240px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  border: 1px solid var(--border-light);
  z-index: 50;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Explicit click-driven open state (used on touch devices — see mobile-toggle JS).
   Also acts as a fallback / consistency layer on desktop. */
.nav-dropdown.dropdown-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown.dropdown-open .nav-dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-item {
  display: block;
  padding: 10px 18px;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.dropdown-item:hover {
  background: var(--primary-blue-light);
  color: var(--primary-blue);
  padding-left: 22px;
}

.nav-cta .btn-consultation {
  background: var(--primary-blue);
  color: var(--text-white);
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(22, 96, 207, 0.25);
  /*-display: inline-block;-*/
  display: none;
}

.nav-cta .btn-consultation:hover {
  background: var(--primary-blue-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue-glow);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--text-main);
  cursor: pointer;
}

/* ==========================================================================
   2. PAGE HERO BANNER (COMMON FOR INNER PAGES)
   ========================================================================== */
.page-banner {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-white);
  overflow: hidden;
}

.banner-about {
  background-image: url('../images/about/About-banner.png');
}

.banner-contact {
  background-image: url('../images/contact/Contact-banner.png');
}

.banner-service {
  background-image: url('../images/service/Service-SAP-banner.png');
}

.page-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.2);
  pointer-events: none;
}

.page-banner-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 50px 0;
}

.page-banner-eyebrow {
  color: var(--accent-cyan);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
}

.page-banner-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #ffffff;
}

.page-banner-desc {
  font-size: 1rem;
  line-height: 1.65;
  color: #d1e2fa;
}

/* ==========================================================================
   3. HOME HERO BANNER SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  background-image: url('../images/home/home-banner.avif');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: var(--text-white);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.1);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 250px 0 0 0;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3.1vw, 2.35rem);
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  white-space: normal;
}
.hero-title-sub{
font-size: 1.7rem;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   4. HOME - PLATFORMS WE WORK IN / ERP SOLUTIONS
   ========================================================================== */
.platforms-section {
  padding: 70px 0 60px;
  background: #F3F1F7;
}

.platforms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.platforms-left {
  display: flex;
  flex-direction: column;
}

.platforms-title {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 2.8vw, 2.15rem);
  font-weight: 700;
  color: #333333;
  line-height: 1.25;
  margin: 4px 0 14px;
}

.text-accent-blue {
  color: var(--primary-blue);
}

.platforms-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 26px;
  max-width: 480px;
}

.platforms-tagline {
  font-size: 0.98rem;
  font-weight: 500;
  color: #1d2939;
  border-top: 1px solid var(--border-light);
}

.platforms-img-wrap, .erp-3d-img-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.platforms-services-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.platforms-erp-img {
  width: 100%;
  max-width: 580px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 50, 150, 0.08));
  transition: transform 0.4s ease;
}

.platforms-services-img:hover, .platforms-erp-img:hover {
  transform: translateY(-4px);
}

/* ==========================================================================
   5. HOME - HOW WE WORK (PROCESS)
   ========================================================================== */
.process-section {
  padding: 60px 0 70px;
  background: linear-gradient(120deg, #DBDEEB 0%, #B9C7DD 100%);
  text-align: center;
}

.process-header {
  max-width: 750px;
  margin: 0 auto 36px;
}

.process-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #102a5c;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.process-title {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 2.8vw, 2.15rem);
  font-weight: 800;
  color:var(--primary-blue);
  line-height: 1.3;
  margin-bottom: 16px;
}

.process-desc {
  font-size: 1.02rem;
  color: #374151;
  font-weight: 500;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

.process-img-container {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.process-main-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 35px rgba(16, 42, 92, 0.08);
  transition: transform 0.4s ease;
}

.process-main-img:hover {
  transform: scale(1.008);
}

/* Mobile-only swipeable version of the 6-step process — hidden on desktop */
.process-mobile-carousel {
  display: none;
}

.process-swipe-hint {
  display: none;
}

.process-mobile-footer,
.process-mobile-tagline {
  display: none;
}

@media (max-width: 840px) {
  .process-img-container.desktop-only {
    display: none;
  }

  .process-mobile-carousel {
    display: block;
  }

  .process-swipe-hint {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: #7c8aa5;
    text-align: left;
    margin: 0 0 10px;
  }

  .process-carousel-track {
    display: flex;
    gap: 0px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    margin: 0 -24px;
    padding: 4px 24px 16px;
  }

  .process-carousel-track img {
    flex: 0 0 58vw;
    max-width: 220px;
    scroll-snap-align: start;
    display: block;
  }

  .process-footer-strip.desktop-only {
    display: none;
  }

  .process-mobile-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
  }

  .process-footer-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid #dde8fa;
    border-radius: 999px;
    padding: 9px 14px;
    box-shadow: 0 3px 10px rgba(16, 42, 92, 0.06);
  }

  .process-footer-chip img {
    height: 20px;
    width: auto;
    flex-shrink: 0;
    display: block;
  }

  .process-footer-chip span {
    font-size: 0.78rem;
    font-weight: 600;
    color: #1d2939;
    white-space: nowrap;
  }

  .process-mobile-tagline {
    text-align: center;
    font-size: 0.92rem;
    font-weight: 500;
    color: #1d2939;
    margin-top: 20px;
  }

  .process-mobile-tagline strong {
    color: #1660cf;
  }
  .brand-name-center{
    display: none;
  }
}

@media (max-width: 480px) {
  .process-carousel-track img {
    flex-basis: 68vw;
  }
    .brand-name-center{
    display: none;
  }
}

/* ==========================================================================
   6. HOME - WHO WE ARE (DRIVEN BY TRUST)
   ========================================================================== */
.about-section {
  padding: 80px 0;
  background: #f0f4fa;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 40px rgba(0, 35, 100, 0.08);
  transition: transform 0.4s ease;
}

.about-img:hover {
  transform: translateY(-4px);
}

.about-content {
  padding-right: 20px;
}

.about-title {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 2.8vw, 2.15rem);
  font-weight: 700;
  color: #124eb0;
  line-height: 1.25;
  margin: 10px 0 22px;
}

.about-text {
  font-size: 1.02rem;
  line-height: 1.75;
  color: #374151;
}

.about-text strong {
  color: #111827;
  font-weight: 700;
}

/* ==========================================================================
   7. HOME - OUR CLIENTS SECTION
   ========================================================================== */
.clients-section {
  padding: 40px 0;
  background: var(--bg-dark-blue)
}

.clients-title {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 30px;
  text-align: left;
}
/*--old 
.clients-carousel {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  height: 130px;
  padding-top: 10px;
}

.clients-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: clients-scroll 28s linear infinite;
}

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

@keyframes clients-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
--- till end----*/

/* Continuous Infinite Carousel Styling */
    .clients-carousel {
      overflow: hidden;
      width: 100%;
      position: relative;
      padding: 1.5rem 0;
    }

    .clients-track {
      display: flex;
      align-items: center;
      width: max-content;
      gap: 1rem;
      animation: continuousScroll 55s linear infinite;
      will-change: transform;
    }

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

    .client-card {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .client-logo {
      display: block;
      width: auto;
      object-fit: contain;
      transition: filter 0.3s ease, opacity 0.3s ease;
    }

    @keyframes continuousScroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }
    
/*.client-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 95px;
  width: 210px;
  flex: 0 0 auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}*/

.client-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
  border-radius: 10px;
  border: 1px solid #BDBDBD;
}

.client-card:hover {
  transform: scale(1.01);
  box-shadow: 5px 5px 25px rgba(16, 42, 92, 0.2);
}

.client-logo {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}

/* ==========================================================================
   8. ABOUT US PAGE SPECIFIC STYLES
   ========================================================================== */
.about-detail-section {
  padding: 80px 0;
  background: #ffffff;
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 70px;
}

.vm-card {
  background: #f8fbff;
  border-radius: var(--radius-lg);
  padding: 40px 35px;
  border: 1px solid #e2ecf8;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition);
}

.vm-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #bad3f8;
}

.vm-img-wrap {
  width: 100%;
  max-width: 480px;
  margin-bottom: 24px;
}

.vm-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

.vm-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #102a5c;
  margin-bottom: 12px;
}

.vm-desc {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.growth-framework-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #edf3fb 0%, #e2ecf8 100%);
  text-align: center;
}

.growth-img-container {
  max-width: 1100px;
  margin: 30px auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(16, 42, 92, 0.1);
  background: #ffffff;
}

.founder-section {
  padding: 85px 0;
  background: #ffffff;
}

.founder-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 50px;
  align-items: center;
}

.founder-card {
  text-align: center;
  background: #f8fbff;
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  border: 1px solid #e0ecfa;
  box-shadow: var(--shadow-md);
}

.founder-avatar {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 5px solid #ffffff;
  box-shadow: var(--shadow-md);
}

.founder-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: #102a5c;
}

.founder-role {
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 0.92rem;
  margin-top: 4px;
}

.founder-bio {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #374151;
}

.founder-quote {
  margin-top: 24px;
  padding: 20px 24px;
  background: #eef5ff;
  border-left: 4px solid var(--primary-blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: #0f2e6b;
  font-weight: 500;
}

/* ==========================================================================
   9. CONTACT PAGE SPECIFIC STYLES
   ========================================================================== */
.contact-section {
  padding: 60px 0 40px 0;
  background: #f4f7fb;
}
.page-banner-heroline {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 40px 0;
  margin: auto;
  text-align: center;
}
.contact-layout-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
  h2{
    color:var(--primary-blue); 
  }
  .section-eyebrow{
    color:#102a5c;
  }
}

.contact-info-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 28px 10px;
  border: 1px solid #e2ecf8;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition);
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #bad3f8;
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #eef5ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.contact-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #102a5c;
  margin-bottom: 6px;
}

.contact-card-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-card-link {
  display: flex;
  margin-top: 8px;
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 0.95rem;
  
}

.contact-card-link:hover {
  color: var(--primary-blue-hover);
  text-decoration: underline;
}

.contact-form-wrapper {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 40px 35px;
  box-shadow: var(--shadow-md);
  border: 1px solid #e2ecf8;
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 8px;
}

.form-subtitle {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  border: 1px solid #d0d5dd;
  border-radius: var(--radius-sm);
  background: #f9fafb;
  color: var(--text-main);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  background: #ffffff;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(22, 96, 207, 0.12);
}

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

.form-submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--primary-blue);
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(22, 96, 207, 0.25);
}

.form-submit-btn:hover {
  background: var(--primary-blue-hover);
  box-shadow: var(--shadow-blue-glow);
  transform: translateY(-2px);
}

.location-map{
  border: 1px solid #ccc;
  background-color: var(--bg-dark-blue);
  padding: 25px 0;
}
.location-map .container{
  border:1px solid #bbb;
  padding: 7px 7px 0 7px;
  background-color: #fff;
}
/* ==========================================================================
   10. SERVICES PAGES SPECIFIC STYLES
   ========================================================================== */
.services-nav-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 24px 0;
  background: #ffffff;
  border-bottom: 1px solid #e4e7ec;
  flex-wrap: wrap;
}

.service-tab-btn {
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-muted);
  background: #f2f5f9;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.service-tab-btn:hover, .service-tab-btn.active {
  background: var(--primary-blue);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(22, 96, 207, 0.25);
}

.service-showcase-section {
  padding: 75px 0;
  background: #ffffff;
}

.service-showcase-section.bg-alt {
  background: #f4f8fd;
}

.service-feature-row {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 70px;
}

.service-feature-row.reverse {
  grid-template-columns: 1.15fr 1fr;
}

.service-feature-row.reverse .service-feature-content {
  order: 1;
}

.service-feature-row.reverse .service-feature-graphic {
  order: 2;
}

.service-feature-graphic {
  display: flex;
  justify-content: center;
}

.service-feature-img {
  width: 100%;
  max-width: 600px;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 35px rgba(16, 42, 92, 0.08);
  transition: transform 0.4s ease;
}

.service-feature-img:hover {
  transform: translateY(-4px);
}

.service-feature-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.98rem;
  color: #374151;
}

.feature-check-icon {
  color: var(--primary-blue);
  font-weight: bold;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.pillar-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  border: 1px solid #e0ecfa;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #bad3f8;
}

.pillar-img-wrap {
  width: 90px;
  height: 90px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.pillar-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #102a5c;
  margin-bottom: 8px;
}

.pillar-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   11. CTA RIBBON / BANNER
   ========================================================================== */
.cta-ribbon-section {
  background:  var(--primary-blue);
  padding: 28px 0;
  color: var(--text-white);
}

.cta-ribbon-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-ribbon-text {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

.cta-ribbon-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cta-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.cta-icon-btn img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.cta-icon-btn:hover img {
  transform: scale(1.1);
}

.btn-reach-us {
  background: #033280;
  color: #ffffff;
  padding: 10px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.btn-reach-us img {
  width: 14px;
  height: auto;
  transition: transform 0.2s ease;
}

.btn-reach-us:hover {
  background: #05183b;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  color: #ffffff;
}

.btn-reach-us:hover img {
  transform: translateX(4px);
}

/* ==========================================================================
   12. FOOTER
   ========================================================================== */
.footer {
  background: var(--footer-bg);
  color: #b0c4de;
  font-size: 0.88rem;
  padding-top: 50px;
  border-bottom:1px solid #05183b;
}

.footer-swipe-hint {
  display: none;
}

.footer-main {
  display: grid;
  grid-template-columns: 140px 1.1fr 1.1fr 1.1fr 0.9fr;
  gap: 28px;
  padding-bottom: 45px;
  align-items: start;
}

.footer-sap-box {
  width: 110px;
  height: 110px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.footer-sap-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-col-title {
  color: #a5c7ff;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.footer-text {
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 14px;
  font-size:13px;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.88rem;
  margin-top: 4px;
}

.footer-contact-link img {
  width:25px;
  height: 25px;
  object-fit: contain;
  color:#a5c7ff;
}

.footer-contact-link:hover {
  color: var(--footer-heading-color);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  color: #a5c7ff;
  transition: var(--transition);
}

.footer-link:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
  background: var(--footer-bottom-bg);
  border-top:1px solid var(--footer-heading-color);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: #fff;
}

.footer-bottom-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #a5c7ff;
}

.footer-bottom-email img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.footer-bottom-email:hover {
  color:var(--footer-heading-color);
}

/* ==========================================================================
   13. RESPONSIVE DESIGN (TABLETS & MOBILE)
   ========================================================================== */
@media (max-width: 1024px) {
  .platforms-grid,
  .about-grid,
  .vision-mission-grid,
  .founder-grid,
  .contact-layout-grid,
  .service-feature-row,
  .service-feature-row.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .service-feature-row.reverse .service-feature-content {
    order: 2;
  }
  
  .service-feature-row.reverse .service-feature-graphic {
    order: 1;
  }
  
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .footer-sap-col {
    grid-column: span 2;
  }
  .scroll-text {
    width: 100px;
    font-size: 11px;
    line-height: 20px;
    bottom: -13px;
}
}

@media (max-width: 840px) {
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--border-light);
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  /* Footer becomes a horizontally swipeable row on mobile/tablet.
     The Site links column is desktop-only and hidden here. */
  .footer-col--site {
    display: none;
  }
  /*------Branding start------*/
  .brand-logo{
    width:100px;
  }
  .footer-main {
    display: inline-block;
    grid-template-columns: none;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    margin: 0 -24px;
    padding: 4px 24px 20px;
  }
  /*------Branding end------*/

  .footer-swipe-hint {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    margin: -8px 0 16px;
  }

  .footer-sap-col {
    flex: 0 0 150px;
    scroll-snap-align: start;
  }

  .footer-col {
    flex: 0 0 78vw;
    max-width: 300px;
    scroll-snap-align: start;
    margin-top: 20px;
  }
  
  .mobile-toggle {
    display: block;
  }

  /* On touch devices, ignore CSS :hover (unreliable on tap) and drive the
     Services dropdown purely from the .dropdown-open class toggled by JS. */
  .nav-dropdown:hover .dropdown-menu {
    opacity: 0;
    visibility: hidden;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    max-height: 0;
    opacity: 1;
    visibility: hidden;
    overflow: hidden;
    box-shadow: none;
    border: none;
    padding: 0;
    margin-top: 0;
    transform: none;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
  }

  .nav-dropdown.dropdown-open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 320px;
    margin-top: 10px;
    padding: 4px 0 4px 14px;
  }
  
  .cta-ribbon-container {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-ribbon-actions {
    justify-content: center;
  }
}

@media (max-width: 600px) {

  .hero-title-break {
    display: none;
  }

  
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-primary, .btn-outline-glass {
    width: 100%;
    text-align: center;
  }
}
