:root {
  --font-heading: 'Roboto', sans-serif;
  --font-body: 'Roboto', sans-serif;

  --primary-blue: #0093DD;
  --primary-hover: #0076B3;
  --dark-navy: #0b132b;
  --slate-dark: #1c2541;
  --slate-gray: #475569;
  --light-bg: #f8fafc;
  --card-border: #e2e8f0;
  --accent-gold: #f59e0b;
  --accent-cyan: #00f0ff;
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(0, 147, 221, 0.08);
  --shadow-lg: 0 20px 35px -10px rgba(11, 19, 43, 0.12);
}

body {
  font-family: var(--font-body);
  color: var(--slate-dark);
  background-color: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

/* Site Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: #ffffff !important;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 4px 18px rgba(11, 19, 43, 0.06);
}

.site-logo {
  height: 52px;
  width: auto;
  transition: transform 0.2s ease;
}

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

.navbar-nav .nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--slate-dark);
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: color 0.2s ease;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--primary-blue);
  transform: scaleX(0);
  transition: transform 0.2s ease;
  border-radius: 2px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-blue) !important;
}

.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after {
  transform: scaleX(1);
}

/* Caret Icon Styling */
.site-header .dropdown-toggle::after {
  display: none !important;
}

.site-header .caret-icon {
  font-size: 0.75rem;
  transition: transform 0.25s ease;
  display: inline-block;
}

.site-header .nav-item.dropdown:hover .caret-icon,
.site-header .dropdown-toggle.show .caret-icon {
  transform: rotate(180deg);
}

/* Dropdown Menu Styling */
.site-header .dropdown-menu {
  background: #ffffff !important;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 0.5rem 0;
  box-shadow: 0 20px 40px rgba(11, 19, 43, 0.15);
  margin-top: 0.25rem;
  min-width: 230px;
  z-index: 1100;
}

@media (min-width: 992px) {
  .site-header .nav-item.dropdown:hover > .dropdown-menu,
  .site-header .dropdown-menu.show {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
  }
  
  .site-header .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }
}

.site-header .dropdown-item {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: var(--slate-dark);
  padding: 0.65rem 1.25rem;
  transition: all 0.2s ease;
  background: transparent;
}

.site-header .dropdown-item:hover,
.site-header .dropdown-item:focus {
  background-color: rgba(0, 102, 255, 0.08) !important;
  color: var(--primary-blue) !important;
  padding-left: 1.5rem;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 0.65rem 1.4rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 14px rgba(0, 102, 255, 0.3);
  transition: all 0.25s ease;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
}

.btn-outline-primary {
  color: var(--primary-blue);
  border-color: var(--primary-blue);
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 0.65rem 1.4rem;
  border-radius: 0.5rem;
  transition: all 0.25s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary-blue);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.25);
}

.btn-dark {
  background-color: var(--dark-navy);
  border-color: var(--dark-navy);
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 0.65rem 1.4rem;
  border-radius: 0.5rem;
}

.btn-dark:hover {
  background-color: #050a17;
  border-color: #050a17;
}

/* Section styling */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(0, 102, 255, 0.08);
  color: var(--primary-blue);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.section-title {
  color: var(--dark-navy);
  font-weight: 800;
}

/* ==========================================
   HOMEPAGE STYLES
   ========================================== */

/* 1) LOW HEIGHT FULL-WIDTH ANIMATED HERO SLIDER */
.hero-slider-section {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  background: var(--dark-navy);
  overflow: hidden;
}

.hero-swiper {
  width: 100%;
  height: 480px;
}

@media (max-width: 991.98px) {
  .hero-swiper {
    height: 520px;
  }
}

@media (max-width: 575.98px) {
  .hero-swiper {
    height: 560px;
  }
}

.hero-slide-item {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 19, 43, 0.85) 0%, rgba(15, 23, 42, 0.5) 50%, rgba(11, 19, 43, 0.15) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.hero-tag, .hero-title, .hero-desc, .hero-btns, .hero-img-frame {
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.swiper-slide-active .hero-tag {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.swiper-slide-active .hero-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}

.swiper-slide-active .hero-desc {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.swiper-slide-active .hero-btns {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.55s;
}

.swiper-slide-active .hero-img-frame {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.3s;
}

.hero-tag { transform: translateY(-15px); }
.hero-title { transform: translateY(25px); }
.hero-desc { transform: translateY(20px); }
.hero-btns { transform: translateY(20px); }
.hero-img-frame { transform: scale(0.92); }

.hero-title {
  font-size: clamp(1.85rem, 3.5vw, 2.85rem);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
}

.hero-title .text-gradient {
  background: linear-gradient(135deg, #00f0ff 0%, #0093DD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.05rem;
  color: #cbd5e1;
  max-width: 560px;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(0, 240, 255, 0.15);
  border: 1px solid rgba(0, 240, 255, 0.4);
  color: #00f0ff;
  border-radius: 50px;
  font-size: 0.825rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 14px rgba(0, 240, 255, 0.15);
}

.hero-img-frame {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), 0 0 25px rgba(0, 102, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-height: 250px;
  background: rgba(15, 23, 42, 0.8);
}

.hero-img-frame img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  display: block;
}

.hero-slider-section .swiper-button-next,
.hero-slider-section .swiper-button-prev {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: #ffffff;
  z-index: 10;
  transition: all 0.3s ease;
}

.hero-slider-section .swiper-button-next::after,
.hero-slider-section .swiper-button-prev::after {
  font-size: 1.15rem;
  font-weight: bold;
}

.hero-slider-section .swiper-button-next:hover,
.hero-slider-section .swiper-button-prev:hover {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(0, 102, 255, 0.6);
}

.hero-slider-section .swiper-pagination {
  bottom: 1.25rem !important;
  z-index: 10;
}

.hero-slider-section .swiper-pagination-bullet {
  width: 28px;
  height: 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  transition: all 0.3s ease;
}

.hero-slider-section .swiper-pagination-bullet-active {
  width: 46px;
  background: var(--primary-blue);
  box-shadow: 0 0 12px rgba(0, 102, 255, 0.8);
}

/* 2) ABOUT US SECTION */
.about-section {
  padding: 5rem 0;
  background: #ffffff;
}

.about-img-box {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-box img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-img-box:hover img {
  transform: scale(1.03);
}

.about-floating-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: rgba(11, 19, 43, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 240, 255, 0.3);
  color: #ffffff;
  padding: 1.25rem 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about-floating-badge .badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue), #00f0ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #ffffff;
}

.about-check-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 575.98px) {
  .about-check-list {
    grid-template-columns: 1fr;
  }
}

.about-check-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  color: var(--slate-dark);
}

.about-check-item i {
  color: var(--primary-blue);
  background: rgba(0, 102, 255, 0.1);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

/* 3) OUR SERVICES CARDS SLIDER */
.services-section {
  padding: 5rem 0;
  background: var(--light-bg);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.service-card {
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 102, 255, 0.12);
  border-color: rgba(0, 102, 255, 0.4);
}

.service-img-wrap {
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
  background: var(--dark-navy);
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.08);
}

.service-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(11, 19, 43, 0.85);
  backdrop-filter: blur(6px);
  color: #00f0ff;
  border: 1px solid rgba(0, 240, 255, 0.3);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  text-transform: uppercase;
}

.service-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 0.75rem;
}

.service-desc {
  color: var(--slate-gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.service-link {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s ease;
}

.service-card:hover .service-link {
  gap: 0.75rem;
}

.services-swiper-prev,
.services-swiper-next {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--dark-navy);
  border: 1px solid var(--card-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.services-swiper-prev:hover,
.services-swiper-next:hover {
  background: var(--primary-blue);
  color: #ffffff;
  border-color: var(--primary-blue);
  box-shadow: 0 4px 14px rgba(0, 102, 255, 0.3);
}

.services-swiper-prev::after,
.services-swiper-next::after {
  font-size: 0.95rem;
  font-weight: bold;
}

/* 4) WHY CHOOSE US SECTION */
.why-us-section {
  padding: 5rem 0;
  background: #ffffff;
}

.why-card {
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: 1rem;
  padding: 2rem 1.75rem;
  transition: all 0.3s ease;
  height: 100%;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(11, 19, 43, 0.08);
  border-color: var(--primary-blue);
}

.why-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 240, 255, 0.1));
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.why-card:hover .why-icon-box {
  background: var(--primary-blue);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.35);
}

.why-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 0.65rem;
}

.why-desc {
  color: var(--slate-gray);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

/* 5) TESTIMONIAL SECTION */
.testimonial-section {
  padding: 5rem 0;
  background: var(--dark-navy);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.testimonial-bg-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  padding: 2.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 240, 255, 0.4);
  transform: translateY(-5px);
}

.testimonial-stars {
  color: var(--accent-gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #e2e8f0;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue), #00f0ff);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-name {
  font-weight: 700;
  color: #ffffff;
  font-size: 1rem;
  margin: 0;
}

.author-role {
  color: #94a3b8;
  font-size: 0.85rem;
  margin: 0;
}

.testimonial-swiper-prev,
.testimonial-swiper-next {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.testimonial-swiper-prev:hover,
.testimonial-swiper-next:hover {
  background: var(--primary-blue);
  color: #ffffff;
  border-color: var(--primary-blue);
}

.testimonial-swiper-prev::after,
.testimonial-swiper-next::after {
  font-size: 0.95rem;
  font-weight: bold;
}

/* 6) OUR CLIENTELE CONTINUOUS MARQUEE SLIDER */
.clientele-section {
  padding: 4rem 0;
  background: #ffffff;
  border-bottom: 1px solid var(--card-border);
}

.clientele-swiper {
  padding: 16px 6px !important;
  margin: -16px -6px !important;
}

.clientele-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.clientele-swiper .swiper-slide {
  padding: 2px;
}

.client-logo-box {
  background: var(--light-bg);
  border: 1px solid var(--card-border);
  border-radius: 0.75rem;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  height: 90px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.client-logo-box img {
  max-height: 44px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.65);
  transition: all 0.3s ease;
}

.client-logo-box:hover {
  border-color: var(--primary-blue);
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 102, 255, 0.15);
  transform: translateY(-2px);
  z-index: 5;
}

.client-logo-box:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

/* Footer Styling */
.site-footer {
  font-family: var(--font-body);
  background-color: #07111e;
  color: #e2e8f0;
  position: relative;
  border-top: 3px solid var(--primary-blue);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.25);
}

.site-footer .footer-top {
  padding-top: 4rem !important;
  padding-bottom: 3.5rem !important;
}

.footer-heading {
  font-family: var(--font-heading);
  letter-spacing: 0.08em;
  line-height: 1;
  margin-top: 0.35rem;
  color: #ffffff !important;
}

.footer-logo {
  height: 44px;
  width: auto;
  display: block;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.footer-contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.3), rgba(0, 240, 255, 0.25));
  border: 1px solid rgba(0, 240, 255, 0.4);
  color: #00f0ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-right: 1rem;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.2);
}

.footer-contact-text {
  color: #f1f5f9 !important;
  font-size: 0.925rem;
  line-height: 1.55;
}

.footer-bio-text {
  color: #cbd5e1 !important;
  font-size: 0.925rem;
  line-height: 1.65;
}

.footer-links a {
  color: #e2e8f0;
  text-decoration: none;
  font-size: 0.925rem;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #00f0ff;
  transform: translateX(4px);
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #cbd5e1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.social-btn:hover {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 102, 255, 0.4);
}

.border-white-10 {
  border-color: rgba(255, 255, 255, 0.08) !important;
}

.footer-bottom-link {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-link:hover {
  color: #00f0ff;
}

/* Page Banner & Breadcrumb Header */
.page-banner-section {
  position: relative;
  background: linear-gradient(135deg, #0b132b 0%, #1c2541 100%);
  padding: 4.5rem 0;
  border-bottom: 3px solid var(--primary-blue);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.page-banner-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.page-banner-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
}

.page-breadcrumb .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.page-breadcrumb .breadcrumb-item {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: #94a3b8;
}

.page-breadcrumb .breadcrumb-item a {
  color: #00f0ff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-breadcrumb .breadcrumb-item a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.page-breadcrumb .breadcrumb-item.active {
  color: #ffffff;
}

.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #64748b;
  content: "›";
  font-size: 1.1rem;
}

/* Contact Page Styling */
.contact-section {
  padding: 5rem 0;
  background: #ffffff;
}

.contact-card-box {
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  height: 100%;
}

.contact-info-card {
  background: var(--dark-navy);
  color: #ffffff;
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 147, 221, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--primary-blue), #00f0ff);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(0, 147, 221, 0.3);
}

.contact-info-label {
  font-family: var(--font-heading);
  font-size: 0.825rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #00f0ff;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.contact-info-value {
  color: #f1f5f9;
  font-size: 0.975rem;
  line-height: 1.6;
  margin: 0;
}

.contact-map-section {
  padding: 0 0 5rem 0;
  background: #ffffff;
}

.map-frame-wrap {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--card-border);
}

.map-frame-wrap iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

/* About Page Styling */
.vision-mission-card {
  background: var(--light-bg);
  border: 1px solid var(--card-border);
  border-radius: 1rem;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.vision-mission-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-blue);
  background: #ffffff;
}

.vm-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--primary-blue), #00f0ff);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 6px 16px rgba(0, 147, 221, 0.3);
}

/* Horizontal Milestones Process Track */
.h-milestones-section {
  padding: 5.5rem 0;
  background: var(--dark-navy);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.h-milestones-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 147, 221, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.milestones-swiper {
  padding: 16px 6px !important;
  margin: -16px -6px !important;
}

.milestones-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.h-track-line {
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), #00f0ff);
  z-index: 1;
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.6);
}

.h-milestone-step {
  position: relative;
  height: 100%;
}

.h-milestone-node {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue), #00f0ff);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  border: 4px solid #0b132b;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
  position: relative;
  z-index: 2;
  transition: all 0.35s ease;
}

.h-milestone-step:hover .h-milestone-node {
  transform: scale(1.18);
  box-shadow: 0 0 28px rgba(0, 240, 255, 0.8);
  background: #00f0ff;
  color: #0b132b;
}

.h-milestone-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1rem;
  padding: 1.75rem 1.25rem;
  height: calc(100% - 78px);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.h-milestone-step:hover .h-milestone-card {
  background: rgba(255, 255, 255, 0.1);
  border-color: #00f0ff;
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 147, 221, 0.3);
}

.h-milestone-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.h-milestone-desc {
  color: #cbd5e1;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

/* Values Grid */
.values-section {
  padding: 5rem 0;
  background: #ffffff;
}

.value-card {
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
  height: 100%;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-blue);
}

.value-icon {
  width: 50px;
  height: 50px;
  border-radius: 0.75rem;
  background: rgba(0, 147, 221, 0.1);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  background: var(--primary-blue);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(0, 147, 221, 0.3);
}

/* Team Grid */
.team-section {
  padding: 5rem 0;
  background: var(--light-bg);
  border-top: 1px solid var(--card-border);
}

.team-card {
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 147, 221, 0.4);
}

.team-avatar-box {
  width: 100%;
  height: 220px;
  background: var(--dark-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.team-avatar-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue), #00f0ff);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.team-body {
  padding: 1.75rem;
  text-align: center;
}

.team-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.team-bio {
  color: var(--slate-gray);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

/* Certificate Cards */
.certificate-card {
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.35s ease;
  height: 100%;
  cursor: pointer;
}

.certificate-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-blue);
}

.certificate-img-wrap {
  background: #f8fafc;
  padding: 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  position: relative;
}

.certificate-img-wrap img {
  max-height: 250px;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.certificate-card:hover .certificate-img-wrap img {
  transform: scale(1.04);
}

.certificate-zoom-hint {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(11, 19, 43, 0.85);
  color: #00f0ff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  border: 1px solid rgba(0, 240, 255, 0.4);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  opacity: 0.85;
}

.certificate-card:hover .certificate-zoom-hint {
  background: var(--primary-blue);
  color: #ffffff;
  border-color: var(--primary-blue);
  opacity: 1;
  box-shadow: 0 4px 12px rgba(0, 147, 221, 0.4);
}

.certificate-body {
  padding: 1.5rem;
}

/* Animated Mobile Modal Menu Overlay */
.mobile-menu-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(11, 19, 43, 0.65);
  backdrop-filter: blur(8px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-menu-modal.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 380px;
  height: 100%;
  background: #ffffff;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  overflow-y: auto;
}

.mobile-menu-modal.active .mobile-menu-content {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--card-border);
  background: #ffffff;
}

.mobile-menu-close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--light-bg);
  border: 1px solid var(--card-border);
  color: var(--dark-navy);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.mobile-menu-close:hover,
.mobile-menu-close:active {
  background: #ff4d4d;
  color: #ffffff;
  border-color: #ff4d4d;
  transform: rotate(90deg);
}

.mobile-menu-body {
  padding: 1.5rem;
  flex-grow: 1;
}

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

.mobile-nav-item {
  margin-bottom: 0.5rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  padding: 0.85rem 1rem;
  color: var(--dark-navy);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: rgba(0, 147, 221, 0.1);
  color: var(--primary-blue);
}

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

.mobile-dropdown-toggle-btn {
  background: transparent;
  border: none;
  padding: 0.5rem 1rem;
  color: var(--slate-gray);
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.mobile-dropdown-toggle-btn.active {
  transform: rotate(180deg);
  color: var(--primary-blue);
}

.mobile-submenu {
  list-style: none;
  padding-left: 2.5rem;
  margin: 0.25rem 0 0.5rem 0;
  display: none;
}

.mobile-submenu.show {
  display: block;
}

.mobile-submenu li a {
  display: block;
  padding: 0.5rem 0;
  color: var(--slate-gray);
  font-weight: 500;
  font-size: 0.925rem;
  text-decoration: none;
  transition: color 0.25s ease;
}

.mobile-submenu li a:hover {
  color: var(--primary-blue);
}

.mobile-menu-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--card-border);
  background: var(--light-bg);
}

/* Careers Page Styling */
.job-card {
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.job-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-blue);
}

.job-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  background: rgba(0, 147, 221, 0.1);
  color: var(--primary-blue);
}

.job-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 0.75rem;
}

.job-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--slate-gray);
  font-size: 0.925rem;
  margin-bottom: 0.5rem;
}

.job-meta-item i {
  color: var(--primary-blue);
  font-size: 1.1rem;
}

/* Product Page Grid (3 Cards Per Row) */
.product-grid-card {
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-grid-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-blue);
}

.product-grid-img-wrap {
  background: var(--light-bg);
  padding: 2rem;
  text-align: center;
  border-bottom: 1px solid var(--card-border);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-grid-img-wrap img {
  max-height: 140px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-grid-card:hover .product-grid-img-wrap img {
  transform: scale(1.08);
}

.product-grid-body {
  padding: 1.75rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-grid-category {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-blue);
  background: rgba(0, 147, 221, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
  align-self: flex-start;
}

.product-grid-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 0.75rem;
}

.product-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
}

.product-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--slate-gray);
  margin-bottom: 0.35rem;
}

.product-feature-item i {
  color: var(--primary-blue);
}

.product-filter-btn {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  border: 1px solid var(--card-border);
  background: #ffffff;
  color: var(--dark-navy);
  transition: all 0.25s ease;
  cursor: pointer;
}

.product-filter-btn:hover,
.product-filter-btn.active {
  background: var(--primary-blue);
  color: #ffffff;
  border-color: var(--primary-blue);
  box-shadow: 0 4px 12px rgba(0, 147, 221, 0.3);
}
