/* 
  Main Styles for PILOTING Website
  Author: Bolt
  Version: 1.0
*/

:root {
  /* Color Variables */
  --primary: #0c2340;
  --primary-dark: #091b30;
  --primary-light: #1d3a5f;
  --secondary: #ff6b38;
  --secondary-dark: #e55a2a;
  --secondary-light: #ff8e66;
  --light: #f8f9fa;
  --dark: #212529;
  --gray: #6c757d;
  --gray-light: #e9ecef;
  --success: #28a745;
  --warning: #ffc107;
  --danger: #dc3545;
  --orange: #ff5722;
  --light-blue: #e8f0f9;
  --dark-blue: #1a237e;

  /* Spacing Variables */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 3rem;

  /* Border Radius */
  --border-radius-sm: 0.25rem;
  --border-radius: 0.5rem;
  --border-radius-lg: 1rem;

  /* Typography */
  --font-family-base: "Nunito Sans", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
    sans-serif;
  --font-family-heading: "Montserrat", "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-base);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /* font-family: var(--font-family-heading); */
  /* font-family: Manrope, sans-serif; */
  font-family: var(--font-family-base);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

p {
  margin-bottom: var(--spacing-md);
}

section {
  padding: var(--spacing-xl) 0;
}

.btn {
  border-radius: var(--border-radius);
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--secondary);
  border-color: var(--secondary);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--secondary-dark);
  border-color: var(--secondary-dark);
}

.btn-outline-light {
  color: var(--light);
  border-color: var(--light);
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.highlight {
  color: var(--secondary);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--primary);
  /* color: #fafafa; */
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 800px;
  margin: 0 auto var(--spacing-xl);
}

.badge {
  background-color: var(--secondary);
  color: white;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: var(--spacing-md);
  display: inline-block;
}

/* @media (max-width: 1600px) {
  .badge {
   margin-top:70px;
  }
} */

@media (min-width: 500px) and (max-width: 1600px) {
  .badge {
    margin-top: 70px; /* Adjust as needed for this range */
  }
}

/* Navigation */
#mainNav {
  background-color: transparent;
  transition: all 0.3s ease;
  /* padding: 1rem 0; */
}
.navbar {
  padding-top: 2px;
}
.navbar-brand {
  padding: 0;
}
#mainNav.navbar-scrolled {
  background-color: var(--primary);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  /* padding: 0.6rem 0; */
  /* padding: 1rem 0; */
  height: 80px;
  /* padding: auto; */
}

@media (min-width: 700px) {
  #mainNav.navbar-scrolled .logo {
    /* margin-top: 16px; */
    margin-top: 10px;
  }
}

#mainNav.navbar-scrolled .logo a img {
  max-height: 70px;
  /* max-height: 100px; */
  object-fit: cover;
}

#mainNav.navbar-scrolled .animated-title {
  font-size: 16px !important;
  padding: 6px 8px !important;
  /* Remove width: 100% or display: block if present */
  width: auto !important;
  display: inline !important;
  text-align: left !important;
  font-family: "Segoe UI", sans-serif;
  font-weight: bold;
  color: #00355e;
  /* background: linear-gradient(45deg, #ff5600, #1098da); */
  /* padding: 10px 20px; */
  /* border: 2px solid #1098da;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(16, 152, 218, 0.5); */
}

@media (min-width: 500px) {
  #mainNav_inner .logo {
    margin-top: 16px;
  }
}

.logo a {
  display: block;
}

.logo a img {
  /* max-height: 50px; */
  /* max-height: 250px; */
  /* max-height: 120px; */
  max-height: 130px;
  object-fit: cover;
}

/* .logo_badge {
  background-color: #ffffff;
  color: white;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: var(--spacing-md);
  display: inline-block;
} */

/* ...existing code... */
.logo_badge {
  background: linear-gradient(90deg, #f5f7fa 0%, #c3cfe2 100%);
  color: #1a237e;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 1rem;
  /* padding: 0.4rem 1.5rem 0.4rem 1.2rem; */
  box-shadow: 0 2px 12px rgba(30, 34, 90, 0.08);
  display: flex;
  align-items: center;
  /* gap: 0.7rem; */
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
  transition: box-shadow 0.2s, background 0.2s;
}

.logo_badge:hover {
  background: linear-gradient(90deg, #e3eeff 0%, #b0c4de 100%);
  box-shadow: 0 4px 18px rgba(30, 34, 90, 0.13);
}

/* Scrolled State Styles */
#mainNav.navbar-scrolled .logo_badge {
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 100%);
  border-radius: 0.8rem;
  box-shadow: 0 1px 8px rgba(30, 34, 90, 0.05);
  /* transform: scale(0.95); */
  transform: scale(0.8);
  margin-bottom: 0.3rem;
  margin: 0 0 11px 0;
}

#mainNav.navbar-scrolled .logo_badge .animated-title {
  font-size: 0.95rem;
  padding: 0.3rem 1.2rem 0.3rem 1rem;
}

#mainNav.navbar-scrolled .logo_badge:hover {
  background: linear-gradient(90deg, #f8faff 0%, #e8eef5 100%);
  box-shadow: 0 2px 12px rgba(30, 34, 90, 0.08);
}

/* Scrolled State Styles */
#mainNav_inner.fixed-top .logo_badge {
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 100%);
  border-radius: 0.8rem;
  box-shadow: 0 1px 8px rgba(30, 34, 90, 0.05);
  /* transform: scale(0.95); */
  /* transform: scale(0.8); */
  margin-bottom: 0.3rem;
  /* margin: 0 0 11px 0; */
}

@media (min-width: 500px) {
  #mainNav_inner.fixed-top .logo_badge {
    background: linear-gradient(90deg, #ffffff 0%, #ffffff 100%);
    border-radius: 0.8rem;
    box-shadow: 0 1px 8px rgba(30, 34, 90, 0.05);
    /* transform: scale(0.95); */
    transform: scale(0.8);
    margin-bottom: 0.3rem;
    margin: 0 0 11px 0;
  }
}

#mainNav_inner.fixed-top .logo_badge .animated-title {
  font-size: 0.95rem;
  padding: 0.3rem 1.2rem 0.3rem 1rem;
}

#mainNav_inner.fixed-top .logo_badge:hover {
  background: linear-gradient(90deg, #f8faff 0%, #e8eef5 100%);
  box-shadow: 0 2px 12px rgba(30, 34, 90, 0.08);
}

/* ...existing code... */

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
  color: var(--secondary);
}

@media (min-width: 1100px) and (max-width: 1400px) {
  .navbar-dark .navbar-nav .nav-link {
    /* padding: 1px; */
    /* padding: 3px 6px; */
    padding: 3px 12px;
  }
}

/* Hero Section */
.hero {
  position: relative;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--light);
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero {
    min-height: 80vh; /* Reduced height for mobile */
    align-items: flex-start; /* Align content to top on mobile */
  }

  .hero-content {
    padding: 0.5rem 0; /* Reduced padding for mobile */
  }

  .hero-background-slide {
    background-position: center top; /* Adjust background position for mobile */
  }

  .hero h1 {
    font-size: 2rem; /* Smaller font size for mobile */
    margin-bottom: 1rem;
  }

  .hero .lead {
    font-size: 1.1rem; /* Smaller font size for mobile */
  }

  .hero-buttons {
    flex-direction: column; /* Stack buttons vertically on mobile */
    gap: 1rem;
  }

  .hero-buttons .btn {
    width: 100%; /* Full width buttons on mobile */
  }
  .hero-background-slide {
    flex: 0 0 100%; /* Each slide takes full width */
    background-size: cover;
    background-position: center center;
    height: 35%;
    margin-top: 146px;
  }
}

.hero-background-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex; /* Arrange slides in a row */
  transition: transform 0.5s ease-in-out; /* Smooth transition for slide changes */
}

.hero-background-slide {
  flex: 0 0 100%; /* Each slide takes full width */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  /* height: 100%; */
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(12, 35, 64, 0.9),
    rgba(12, 35, 64, 0.7)
  );
  z-index: 2; /* Ensure overlay is above backgrounds but below content */
}

.hero-content {
  position: relative;
  z-index: 3; /* Ensure content is on top */
  padding: 6rem 0;
  width: 100%; /* Ensure content spans full width of container */
}

.hero h1 {
  margin-bottom: var(--spacing-lg);
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

/* Benefits Section */
.benefits {
  background-color: var(--light);
}

.benefit-item {
  padding: var(--spacing-lg);
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-10px);
}

.icon-container {
  width: 80px;
  height: 80px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-md);
  color: white;
  font-size: 2rem;
}

.testimonial-highlight {
  /* background-color: white; */
  background-color: #071f3d;
  padding: var(--spacing-lg);
  border-radius: var(--border-radius);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  margin-top: var(--spacing-xl);
}

.testimonial-highlight p {
  /* font-style: italic; */
  font-size: 1.2rem;
  margin-bottom: var(--spacing-md);
  color: #fff;
}

.testimonial-author {
  font-weight: 600;
  color: #fff;
  align-items: center;
  gap: var(--spacing-md);
}

/* Why Choose Us Section */
.why-choose-us {
  background-color: white;
}

.feature-item {
  margin-bottom: var(--spacing-xl);
  gap: var(--spacing-md);

  border-radius: 0.75rem;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  padding: 1.5rem;
  --tw-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --tw-shadow-colored: 0 4px 20px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.3s;
  height: 200px;
}

@media (min-width: 1000px) and (max-width: 1400px) {
   .feature-item {
    height: 250px;
  }
}

@media (max-width: 991.98px) {
  .feature-item {
    height: 180px;
  }
}

@media (max-width: 767.98px) {
  .feature-item {
    height: 160px;
  }
}

@media (max-width: 575.98px) {
  .feature-item {
    height: auto;
    min-height: 120px;
  }
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-content-top h4 {
  color: var(--primary);
  margin-bottom: var(--spacing-xs);
}

.small-subtitle {
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  font-size: 0.9rem;
}

/* Journey Section */
.journey {
  background-color: var(--primary);
  color: var(--light);
}

.journey .section-title {
  color: white;
}

.journey-path {
  position: relative;
  padding: var(--spacing-xl) 0;
}

.journey-path::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateX(-50%);
}

.journey-step {
  margin-bottom: var(--spacing-xl);
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.step-content {
  padding: var(--spacing-lg);
  border-radius: var(--border-radius);
  background-color: rgba(255, 255, 255, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.step-content h4 {
  color: var(--secondary);
  margin-bottom: var(--spacing-sm);
}

/* Testimonials Section */
.testimonials {
  background-color: var(--light);
}

.testimonial-card {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  padding: var(--spacing-xl);
  margin: 0 var(--spacing-lg);
}

.testimonial-content p {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: var(--spacing-lg);
}

.author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.carousel-indicators {
  bottom: -40px;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--gray-light);
  opacity: 0.5;
}

.carousel-indicators button.active {
  background-color: var(--primary);
  opacity: 1;
}

/* Why USA Section */
.why-usa {
  background-color: var(--primary);
  color: white;
}

.why-usa .section-title {
  color: white;
}

.usa-benefit-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: var(--spacing-xl);
  height: 100%;
  transition: transform 0.3s ease;
}

.usa-benefit-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
}

/* .benefit-icon {
  width: 60px;
  height: 60px;
  background-color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
  font-size: 1.5rem;
} */

/* CTA Section */
.cta-section {
  background-color: var(--light);
}

.cta-box {
  background-color: var(--primary);
  color: white;
  border-radius: var(--border-radius);
  padding: var(--spacing-xl);
  height: 100%;
}

.cta-box h3 {
  color: var(--secondary);
  margin-bottom: var(--spacing-xs);
}

.cta-features {
  list-style: none;
  padding: 0;
  margin: var(--spacing-lg) 0;
}

.cta-features li {
  margin-bottom: var(--spacing-md);
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
}

.cta-features li i {
  color: var(--secondary);
  margin-top: 5px;
}

.testimonial-callout {
  border-left: 3px solid var(--secondary);
  padding-left: var(--spacing-md);
  font-style: italic;
  margin-top: var(--spacing-xl);
}

.testimonial-callout p {
  font-size: 0.9rem;
  margin-bottom: var(--spacing-xs);
}

.apply-form {
  background-color: white;
  border-radius: var(--border-radius);
  padding: var(--spacing-xl);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  height: 100%;
}

.apply-form h3 {
  color: var(--primary);
  margin-bottom: var(--spacing-xs);
}

/* Footer */
.footer {
  background-color: var(--primary-dark);
  color: var(--light);
}

.footer-logo {
  /* height: 40px; */
  height: 150px;
  margin-bottom: var(--spacing-md);
  border-radius: 1rem;
  background-color: white;
}

.social-icons {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-color: rgba(255, 255, 255, 0.1); */
  background-color: rgb(255 86 0);
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
  text-decoration: inherit;
}

.social-icons a:hover {
  background-color: var(--secondary);
  transform: translateY(-3px);
}

.footer h5 {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-lg);
  color: var(--secondary);
}

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

.footer-links li {
  margin-bottom: var(--spacing-sm);
}

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

.footer-links a:hover {
  color: var(--secondary);
}

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

.footer-contact li {
  margin-bottom: var(--spacing-md);
  /*display: flex;*/
  align-items: center;
  gap: var(--spacing-sm);
}

.footer-contact li i {
  color: var(--secondary);
}



.newsletter .form-control {
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .section-title {
    font-size: 2rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .journey-path::before {
    left: 30px;
  }

  .step-number {
    margin: 0;
    margin-left: 30px;
    transform: translateX(-50%);
  }
}

@media (max-width: 767.98px) {
  .section-title {
    font-size: 1.8rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero {
    min-height: auto;
    padding: 8rem 0 4rem;
  }

  .journey-path::before {
    display: none;
  }

  .step-number {
    margin: 0 auto;
    transform: none;
    margin-bottom: var(--spacing-md);
  }

  .testimonial-card {
    padding: var(--spacing-lg);
  }

  .cta-box,
  .apply-form {
    margin-bottom: var(--spacing-lg);
  }
}

@media (max-width: 575.98px) {
  .section-title {
    font-size: 1.5rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .feature-item {
    flex-direction: column;
  }

  .feature-icon {
    margin-bottom: var(--spacing-md);
  }

  .benefit-item {
    padding: var(--spacing-md);
  }
}

/* Go to Top Button */
/* #goToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

#goToTop:hover {
  background-color: var(--secondary);
  transform: translateY(-3px);
}

#goToTop.visible {
  opacity: 1;
  visibility: visible;
} */

/* Icon Optimizations */
.lazy-load {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lazy-load.loaded {
  opacity: 1;
}

/* Icon Loading Animation */
.icon-loading {
  position: relative;
  width: 24px;
  height: 24px;
}

.icon-loading::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--secondary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Performance Optimized Animations */
.fade-in {
  animation: optimizedFadeIn 0.3s ease forwards;
}

@keyframes optimizedFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Optimizations */
@media (max-width: 768px) {
  #goToTop {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}

/* Success Metrics Styling */
.success-metric {
  background: var(--primary);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius);
  color: white;
  transition: transform 0.3s ease;
}

.success-metric:hover {
  transform: translateY(-10px);
}

.metric-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: var(--spacing-sm);
}

/* Pricing Info Styling */
.pricing-info {
  background: rgba(255, 255, 255, 0.1);
  padding: var(--spacing-md);
  border-radius: var(--border-radius);
  margin-top: var(--spacing-lg);
}

.pricing-info h4 {
  color: var(--secondary);
  font-size: 2rem;
}

/* Add this inside a <style> tag in your <head> or in your CSS file */
/* .animated-title {
  font-size: 28px !important;
  padding: 6px 10px !important;
  border-width: 1px !important;
  border-radius: 6px !important;
  word-break: break-word;
  text-align: center;
  width: 100%;
  display: block !important;
  font-family: "Segoe UI", sans-serif;
  font-weight: bold;
  color: #00355e;

} */

.animated-title {
  font-size: 29px !important;
  padding: 6px 10px !important;
  /* border-width
  Shorthand that sets the four 'border-*-width' properties. If it has four values, they set top, right, bottom and left in that order. If left is missing, it is the same as right; if bottom is missing, it is the same as top; if right is missing, it is the same as top.
  Learn more
  Don't show
  : 1px !important; */
  border-radius: 6px !important;
  /* box-shadow: 0 2px 4px rgba(16, 152, 218, 0.3) !important; */
  word-break: break-word;
  /* text-align: center; */
  width: 100%;
  display: block !important;
  font-family: "Segoe UI", sans-serif;
  font-weight: bold;
  color: #00355e;
}

@media (max-width: 575.98px) {
  .animated-title {
    font-size: 16px !important;
    padding: 6px 10px !important;
    border-width: 1px !important;
    border-radius: 6px !important;
    /* box-shadow: 0 2px 4px rgba(16, 152, 218, 0.3) !important; */
    word-break: break-word;
    text-align: center;
    width: 100%;
    display: block !important;
    font-family: "Segoe UI", sans-serif;
    font-weight: bold;
    color: #00355e;
    /* background: linear-gradient(45deg, #ff5600, #1098da); */
    padding: 10px 20px;
    /* border: 2px solid #1098da; */
    border-radius: 8px;
    /* box-shadow: 0 4px 8px rgba(16, 152, 218, 0.5); */
  }
}

/* Add these styles */

.logo-flex .logo-link-flex {
  display: flex;
  align-items: center;
  /* gap: 10px; */
}

@media (max-width: 575px) {
  .logo-flex .logo-link-flex {
    flex-direction: row;
    align-items: center;
    gap: 6px;
  }

  .animated-title {
    font-size: 14px !important;
    padding: 6px 8px !important;
    /* Remove width: 100% or display: block if present */
    width: auto !important;
    display: inline !important;
    text-align: left !important;
    font-family: "Segoe UI", sans-serif;
    font-weight: bold;
    color: #00355e;
    /* background: linear-gradient(45deg, #ff5600, #1098da); */
    /* padding: 10px 20px; */
    /* border: 2px solid #1098da;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(16, 152, 218, 0.5); */
  }
}

@media (max-width: 575px) {
  #animated-title .word {
    display: block;
    margin-bottom: 4px;
  }
}

.rbt-progress-parent {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px var(--black-opacity);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.rbt-progress-parent.rbt-backto-top-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.rbt-progress-parent::after {
  position: absolute;
  font-family: "feather" !important;
  content: "\e914";
  text-align: center;
  line-height: 46px;
  font-size: 20px;
  color: var(--color-primary);
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.rbt-progress-parent:hover::after {
  color: var(--color-primary);
}

.rbt-progress-parent::before {
  position: absolute;
  font-family: "feather" !important;
  content: "\e914";
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  opacity: 0;
  background: #0d0d12;
  /* -webkit-background-clip: text; */
  -webkit-text-fill-color: transparent;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  color: var(--color-primary);
}

.rbt-progress-parent svg path {
  fill: none;
}

.rbt-progress-parent svg.rbt-back-circle path {
  stroke: var(--color-primary);
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  opacity: 0.6;
}

/* FAQ Section */
.faq-section {
  background-color: #f8f9fa;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  border: none;
  margin-bottom: 1rem;
  background: transparent;
}

.accordion-button {
  background-color: #fff;
  border-radius: 8px !important;
  padding: 1.25rem;
  font-weight: 500;
  color: var(--primary-color);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
}

.accordion-button:not(.collapsed) {
  background-color: #fff;
  color: var(--primary-color);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FF6B35'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 1.25rem;
  background-color: #fff;
  border-radius: 0 0 8px 8px;
  color: #666;
  border: 1px solid #eee;
  border-top: none;
}

.text-orange {
  color: var(--orange);
}

.btn-orange {
  background-color: var(--secondary-color);
  color: var(--text-light);
  border: none;
  padding: 0.5rem 1.5rem;
}

.btn-orange:hover {
  background-color: #e65a2a;
  color: var(--text-light);
}

/* Hero Section */
.hero-section {
  background-color: var(--primary-color);
  background-image: linear-gradient(
      rgba(27, 60, 74, 0.9),
      rgba(27, 60, 74, 0.9)
    ),
    url("https://images.unsplash.com/photo-1559686043-a6e2c8b2c5b0?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80");
  background-size: cover;
  background-position: center;
  padding: 6rem 0;
  position: relative;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.hero-section .lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Stats Row */
.stat-box {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1rem 0;
}

.stat-box h3 {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

/* Benefits Section */
.benefit-card {
  padding: 2rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.benefit-card i {
  font-size: 2.5rem;
  color: var(--secondary-color);
}

.benefit-card h4 {
  margin: 1rem 0;
  font-weight: 600;
}

/* Timeline Section */
/* .timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 50px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--secondary-color);
}

.timeline-item {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  position: relative;
  border: 1px solid #eee;
}

.timeline-item::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  left: -43px;
  top: 50%;
  transform: translateY(-50%);
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px var(--secondary-color);
}

.timeline-item h4 {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.timeline-item p {
  color: #666;
  margin-bottom: 0;
} */

/* Testimonial Cards */
.testimonial-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.testimonial-card .quote {
  font-style: italic;
  margin-bottom: 1.5rem;
}

/* .author {
  display: flex;
  align-items: center;
} */

.author img {
  width: 50px;
  height: 50px;
  margin-right: 1rem;
}

.author-info h5 {
  margin: 0;
  font-weight: 600;
}

/* FAQ Section */
.faq-section {
  background-color: #f8f9fa;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  border: none;
  margin-bottom: 1rem;
  background: transparent;
}

.accordion-button {
  background-color: #fff;
  border-radius: 8px !important;
  padding: 1.25rem;
  font-weight: 500;
  color: var(--primary-color);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
}

.accordion-button:not(.collapsed) {
  background-color: #fff;
  color: var(--primary-color);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FF6B35'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 1.25rem;
  background-color: #fff;
  border-radius: 0 0 8px 8px;
  color: #666;
  border: 1px solid #eee;
  border-top: none;
}

/* Contact Section */
.contact-info {
  list-style: none;
  padding: 0;
}

.contact-info li {
  margin-bottom: 1rem;
}

.contact-info i {
  color: var(--secondary-color);
  margin-right: 0.5rem;
}

.contact-form .form-control {
  margin-bottom: 1rem;
  padding: 0.75rem;
}

/* Footer */
/* .footer {
  background-color: var(--primary-color);
  color: var(--text-light);
}

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

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: block;
}

.social-links a {
  color: var(--text-light);
  margin-right: 1rem;
  font-size: 1.25rem;
} */

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }

  .timeline-item::before {
    display: none;
  }

  .benefit-card {
    margin-bottom: 1rem;
  }
}

/* Success Stories Section */
.testimonial-carousel {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-slide {
  display: none;
  padding: 1rem;
}

.testimonial-slide.active {
  display: block;
}

.quote-icon {
  font-size: 3rem;
  color: var(--light-blue);
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 2rem;
}

.author-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h5 {
  margin: 0;
  font-weight: 600;
  color: #333;
}

.author-info p {
  margin: 0;
  font-size: 0.9rem;
}

/* Carousel Navigation */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.carousel-nav:hover {
  background: var(--orange);
  color: white;
}

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

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

/* Carousel Indicators */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #ddd;
  padding: 0;
  cursor: pointer;
}

.indicator.active {
  background: var(--orange);
  width: 24px;
  border-radius: 4px;
}

/* Timeline Styles */
.timeline {
  position: relative;
  padding: 40px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  width: 2px;
  background: #e0e6ff;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}

.timeline-item {
  margin-bottom: 60px;
  position: relative;
}

.timeline-content {
  position: relative;
  width: 45%;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.timeline-content.left {
  margin-left: auto;
  margin-right: 55%;
}

.timeline-content.right {
  margin-left: 55%;
}

.timeline-icon {
  width: 50px;
  height: 50px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #e8f0ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.timeline-icon i {
  /* color: #0c2340; */
  color: #0c2340;
  font-size: 1.5rem;
}

/* FAQ Styles */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid #e0e6ff;
  border-radius: 8px;
  overflow: hidden;
  background: white;
}

.faq-question {
  width: 100%;
  padding: 1.25rem;
  background: white;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: #f8f9ff;
}

.faq-question span {
  font-size: 1.1rem;
  color: #1a237e;
  font-weight: 500;
}

.faq-question i {
  color: #1a237e;
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: white;
}

.faq-answer.active {
  padding: 1.25rem;
  max-height: 500px;
}

.faq-answer p {
  margin-bottom: 1rem;
  color: #666;
}

.faq-answer ul {
  padding-left: 1.5rem;
  margin-bottom: 0;
  color: #666;
}

.faq-answer li {
  margin-bottom: 0.5rem;
}

/* Common Styles */
.accent-border {
  border-left: 4px solid #ff5722;
  padding-left: 15px;
}

.btn-consultation {
  background-color: #ff5722;
  border: none;
  padding: 12px 30px;
}

.btn-consultation:hover {
  background-color: #f4511e;
}

.contact-btn {
  background-color: #1a237e;
  border: none;
  padding: 12px 30px;
  font-weight: 500;
}

.contact-btn:hover {
  background-color: #151b60;
}

/* h1, h2 {
    color: #1a237e;
    margin-bottom: 1rem;
} */

.subtitle {
  color: #666;
  max-width: 700px;
  margin: 0 auto 3rem;
}

/* Testimonials Styles */
.text-orange {
  color: #ff5722;
}

.testimonials-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-item {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-item.active {
  display: block;
  opacity: 1;
}

.testimonial-content {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  position: relative;
}

.quote-icon {
  position: absolute;
  /* top: -20px;
  left: 40px; */
  top: -43px;
  left: 4px;

  font-size: 80px;
  color: #f0f3ff;
  z-index: 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  position: relative;
  z-index: 1;
}

.testimonial-image img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 4px solid white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-text .quote {
  font-size: 1.1rem;
  color: #1a237e;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}

.author h5 {
  margin: 0;
  color: #1a237e;
  font-weight: 600;
}

.position {
  margin: 0;
  font-size: 0.9rem;
}

/* Navigation Buttons */
.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a237e;
  transition: all 0.3s ease;
}

.testimonial-nav:hover {
  background: #1a237e;
  color: white;
}

.testimonial-nav.prev {
  left: -20px;
}

.testimonial-nav.next {
  right: -20px;
}

/* Dots Navigation */
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background-color: #e0e6ff;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: #ff5722;
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .testimonial-image {
    display: flex;
    justify-content: center;
  }

  .quote-icon {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Why Train Section Styles */
.why-train-section {
  background-color: #0a192f;
  color: white;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 25px;
  height: 100%;
  transition: transform 0.3s ease;
}

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

.feature-icon {
  width: 50px;
  height: 50px;
  background: #ff5722;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon i {
  font-size: 24px;
  color: white;
}

.feature-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: white;
}

.feature-content p {
  color: #a0aec0;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Contact Section Styles */
.contact-section {
  background-color: #f8fafc;
}

.contact-info {
  padding: 30px;
  background-color: #0a192f;
  color: white;
  border-radius: 12px;
  height: 100%;
}

.contact-info h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-info .subtitle {
  color: #a0aec0;
  margin-bottom: 30px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.benefits-list i {
  color: #ff5722;
  margin-right: 15px;
  margin-top: 5px;
}

.benefits-list h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.benefits-list p {
  color: #a0aec0;
  margin: 0;
  font-size: 0.9rem;
}

.testimonial-quote {
  border-left: 3px solid #ff5722;
  padding-left: 20px;
  margin: 30px 0 0 0;
}

.testimonial-quote p {
  font-style: italic;
  color: #a0aec0;
  margin-bottom: 10px;
}

.testimonial-quote footer {
  color: white;
  font-size: 0.9rem;
}

.contact-form-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-form-card h3 {
  color: #1a237e;
  margin-bottom: 25px;
}

.pilot-form .form-control {
  padding: 12px;
  border: 1px solid #e0e6ff;
  border-radius: 8px;
}

.pilot-form .form-control:focus {
  border-color: #ff5722;
  box-shadow: 0 0 0 0.2rem rgba(255, 87, 34, 0.25);
}

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

.pilot-form .btn-primary {
  background-color: #ff5722;
  border: none;
  padding: 12px;
  font-weight: 500;
}

.pilot-form .btn-primary:hover {
  background-color: #f4511e;
}

.pilot-form .btn-primary i {
  margin-left: 8px;
}

@media (max-width: 991px) {
  .contact-info {
    margin-bottom: 30px;
  }
}

/* FAQ Section Styles for indian students */
.faq-category {
  background: #fff;
  border-radius: var(--border-radius);
  /* padding: 2rem; */
  padding: 1rem;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.faq-category h3 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--secondary);
}

.accordion-item {
  border: none;
  margin-bottom: 1rem;
  background: transparent;
}

.accordion-button {
  background: #f8f9fa;
  color: var(--primary);
  font-weight: 600;
  padding: 1.25rem;
  border-radius: var(--border-radius) !important;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: var(--primary);
  color: white;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 1.5rem;
  background: #fff;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.accordion-body ul {
  list-style-type: none;
  padding-left: 0;
}

.accordion-body ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.accordion-body ul li::before {
  content: "•";
  color: var(--secondary);
  position: absolute;
  left: 0;
  top: 0;
}

/* Benefits Section Styles */
.benefits-section {
  background-color: #f8fafc;
  position: relative;
  overflow: hidden;
}

.benefits-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: linear-gradient(
    45deg,
    rgba(255, 107, 56, 0.1),
    rgba(255, 107, 56, 0.05)
  );
  border-radius: 50%;
  transform: translate(150px, -150px);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.benefit-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

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

.benefit-icon {
  width: 60px;
  height: 60px;
  /* background: linear-gradient(45deg, var(--secondary), var(--primary)); */
  background: linear-gradient(45deg, var(--secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 1.5rem;
  transform: rotate(-5deg);
  transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: rotate(0deg);
}

.benefit-content h3 {
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.benefit-content p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .benefit-card {
    padding: 1.5rem;
  }
}

.gradient-bg {
  background: linear-gradient(to right, #2f79aa, #183d55);
  padding: 2rem 1rem;
  border-radius: 1.5rem;
  margin-top: 2rem;
}

.breadcrumb-section {
  background-color: #007bff;
  padding: 15px 0;
  margin-top: 76px; /* Adjust this value based on your navbar height */
}

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

.breadcrumb-item {
  font-size: 14px;
  font-weight: 500;
}

.breadcrumb-item a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: #e9ecef;
}

.breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.8);
  content: "›";
  font-size: 16px;
  line-height: 1;
  padding: 0 10px;
}

/* innerpages styles   */

#mainNav_inner {
  background-color: var(--primary);
  /* box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15); */
  /* padding: 1rem 0;
  height: 80px; */
}

/* #mainNav_inner .logo {
  margin-top: 16px;
} */
@media (min-width: 500px) {
  #mainNav_inner .logo {
    margin-top: 16px;
  }

  #mainNav_inner {
    background-color: var(--primary);
    /* box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15); */
    padding: 1rem 0;
    height: 80px;
  }
}

#mainNav_inner .logo a img {
  /* max-height: 100px; */
  max-height: 90px;
  object-fit: cover;
}

#mainNav_inner .animated-title {
  /* font-size: 16px !important; */
  font-size: 21px !important;
  padding: 6px 8px !important;
  width: auto !important;
  display: inline !important;
  text-align: left !important;
  font-family: "Segoe UI", sans-serif;
  font-weight: bold;
  color: #00355e;
}

/* Breadcrumb styles integrated with header */
.breadcrumb-section {
  /* background-color: rgba(0, 123, 255, 0.9); */
  background-color: var(--primary);
  /* padding: 10px 0; */
  padding: 38px 0;
  margin-top: 80px; /* Height of mainNav_inner */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumb {
  margin-bottom: 0;
  /* padding: 0; */
  padding: 21px;
  background: transparent;
}

.breadcrumb-item {
  font-size: 14px;
  font-weight: 500;
}

.breadcrumb-item a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: #e9ecef;
}

.breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.8);
  content: "›";
  font-size: 16px;
  line-height: 1;
  padding: 0 10px;
}

.about-highlight-message {
  font-size: 1.25rem;
  margin-top: 3rem;
  margin-bottom: 2rem;
}

.about-highlight-message .highlighted-message {
  display: inline-block;
  background: linear-gradient(90deg, #071f3d 0%, #071f3d 100%);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(255, 188, 80, 0.15);
  font-weight: 600;
  letter-spacing: 0.5px;
  /* border: 2px solid #ffd580; */
  transition: box-shadow 0.3s;
}

.about-highlight-message .highlighted-message:hover {
  box-shadow: 0 6px 32px rgba(255, 188, 80, 0.25);
}

.intro-benefits {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 60px 0;
}

@media (min-width: 1300px) {
  .intro-benefits {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 135px 0;
  }
}

.intro-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.intro-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #071f3d, #0a2d5a);
}

.experience-badge {
  background: linear-gradient(45deg, #071f3d, #0a2d5a);
  color: white;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 30px;
  border-radius: 15px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(7, 31, 61, 0.2);
}

.experience-badge .years {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.intro-text {
  max-width: 800px;
  margin: 0 auto;
}

.main-message {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #2c3e50;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(7, 31, 61, 0.03);
  border-radius: 10px;
  border-left: 4px solid #071f3d;
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 30px 0;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  border-bottom: 2px dashed rgba(7, 31, 61, 0.2);
}

.divider-icon {
  padding: 0 15px;
  color: #071f3d;
  background: #ffffff;
}

.divider-icon i {
  font-size: 24px;
  transform: rotate(-45deg);
}

.sub-message {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #505965;
  padding: 20px;
  background: rgba(7, 31, 61, 0.02);
  border-radius: 10px;
  border-right: 4px solid #071f3d;
}

/* Hover Effects */
.intro-box:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}

.experience-badge:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.intro-box {
  animation: fadeInUp 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
  .intro-box {
    padding: 25px;
  }

  .experience-badge {
    padding: 12px 25px;
  }

  .experience-badge .years {
    font-size: 2rem;
  }

  .main-message,
  .sub-message {
    font-size: 1rem;
    padding: 15px;
  }
}

/* Print Styles */
@media print {
  .intro-box {
    box-shadow: none;
    border: 1px solid #000;
  }

  .experience-badge {
    border: 1px solid #000;
    color: #000;
    background: none;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .intro-box {
    border: 2px solid #000;
  }

  .main-message,
  .sub-message {
    border: 1px solid #000;
    background: #fff;
  }
}

.programs-content {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.program-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  /* overflow: hidden; */
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.program-header {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  /* padding: 20px; */
  padding: 10px;
  text-align: center;
}

.program-header i {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.program-header h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.program-body {
  padding: 25px;
  flex: 1;  /* Allow the body to take up remaining space */
  margin-bottom: 1rem;  /* Add some space before the button */
}

.program-body p {
  color: #6c757d;
  margin-bottom: 20px;
}

.program-body ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.program-body ul li {
  padding: 8px 0;
  color: #495057;
  position: relative;
  padding-left: 25px;
}

.program-body ul li:before {
  content: "✓";
  color: #2a5298;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.btn1 {
  margin-top: auto;  /* Push the button to the bottom */
  padding: 0 1rem;  /* Add some horizontal padding */
}

.btn1 .btn {
  width: 100%; 
}

/* .program-body .btn-primary {
  width: 100%;
  padding: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #2a5298;
  border: none;
  transition: background 0.3s ease;
}

.program-body .btn-primary:hover {
  background: #1e3c72;
} */

.program-card .btn-primary {
  /* width: 50%; */
  padding: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #2a5298;
  border: none;
  transition: background 0.3s ease;
  text-align: center;
}

.program-card .btn-primary:hover {
  background: #1e3c72;
}

@media (max-width: 991px) {
  .program-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 991.98px) {
  .navbar.navbar-dark,
  .navbar.navbar-light {
    background-color: transparent; /* default */
    transition: background 0.3s;
  }
  .navbar .navbar-collapse.show {
    background-color: #071f3d !important; /* or your preferred color */
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 24px rgba(7, 31, 61, 0.12);
    padding-bottom: 1rem;
  }
}

/* Gallery and Modal Styles */
.gallery-section {
  background-color: #f8f9fa;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  height: 250px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.gallery-overlay:hover {
  opacity: 1;
}

.gallery-overlay i {
  color: white;
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.gallery-overlay:hover i {
  transform: scale(1.2);
}

.zoom-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 80vh;
}

.zoom-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.zoom-image.zoomed {
  transform: scale(2.5);
  cursor: zoom-out;
}

/* Make modal background darker */
.modal-backdrop.show {
  opacity: 0.8;
}

/* Style the modal */
.modal-content {
  background-color: transparent;
  border: none;
}

.modal-body {
  padding: 0;
  position: relative;
}

.btn-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1050;
  background-color: white;
  opacity: 0.8;
  border-radius: 50%;
  padding: 0.5rem;
}

.btn-close:hover {
  opacity: 1;
}

/* Carousel Styling */
.gallery-carousel {
  background-color: #f8f9fa;
  padding: 2rem 0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.carousel-image-container {
  height: 600px; /* Fixed height for all carousel images */
  position: relative;
  overflow: hidden;
}

.carousel-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.carousel-item {
  position: relative;
}

.carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 2rem;
  text-align: left;
}

.caption-content {
  max-width: 800px;
  margin: 0 auto;
}

.carousel-caption h5 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s forwards;
}

.carousel-caption p {
  font-size: 1.2rem;
  line-height: 1.6;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s 0.2s forwards;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
}

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

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

.carousel:hover .carousel-control-prev,
.carousel:hover .carousel-control-next {
  opacity: 1;
}

.carousel-indicators {
  bottom: 20px;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.carousel-indicators button.active {
  background-color: #fff;
  transform: scale(1.2);
}

.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 5px;
  height: 5px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  /* background-clip: padding-box; */
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}
/* Animation for caption text */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Carousel Fade Effect */
.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.carousel-fade .carousel-item.active {
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .carousel-image-container {
    height: 400px;
  }

  .carousel-caption h5 {
    font-size: 1.5rem;
  }

  .carousel-caption p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .carousel-image-container {
    height: 300px;
  }

  .carousel-caption {
    padding: 1rem;
  }

  .carousel-caption h5 {
    font-size: 1.2rem;
  }

  .carousel-caption p {
    font-size: 0.9rem;
  }
}

/* Go to Top Button Styles */
.go-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  /* background-color: var(--bs-primary, #0c2340); */
  background-color: var(--secondary-dark);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none; /* Hidden by default */
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 1000;
}

.go-to-top:hover {
  background-color: var(--primary-dark, #0b5ed7);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.go-to-top.show {
  display: flex;
  animation: fadeIn 0.3s ease;
}

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

/* Make button smaller on mobile */
@media (max-width: 768px) {
  .go-to-top {
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 20px;
    font-size: 16px;
  }
}

/* Video Testimonials Styles */
.video-testimonials {
  background-color: #f8f9fa;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe,
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Featured Video Styles */
.featured-video-testimonial {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 4rem;
}

.featured-content {
  padding: 2rem;
}

.testimonial-badge {
  display: inline-block;
  background: var(--primary-dark);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.achievement-info {
  margin-top: 2rem;
}

.achievement-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.achievement-item i {
  color: var(--primary-dark);
  margin-right: 1rem;
  font-size: 1.2rem;
}

/* Video Grid Styles */
.video-testimonial-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.video-content {
  padding: 1.5rem;
}

.video-content h4 {
  margin-bottom: 0.5rem;
  color: var(--bs-dark);
}

.video-content .position {
  color: var(--primary-dark);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.video-content .quote {
  font-style: italic;
  color: #6c757d;
  margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .featured-content {
    padding: 2rem 0;
  }
}

@media (max-width: 768px) {
  .video-testimonial-card {
    margin-bottom: 2rem;
  }

  .featured-video-testimonial {
    padding: 1rem;
  }
}

/* Video Play Button Overlay */
.video-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-wrapper::after {
  content: "\f144";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  color: white;
  z-index: 2;
  opacity: 0;
  transition: all 0.3s ease;
}

.video-wrapper:hover::before,
.video-wrapper:hover::after {
  opacity: 1;
}

/* Loading Animation */
.video-wrapper.loading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid var(--primary-dark);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.bg-primary-dark {
  --bs-bg-opacity: 1;
  /* background-color: rgba(var(--primary-dark-rgb), var(--bs-bg-opacity)) !important; */
  background-color: rgb(12 35 64) !important;
}

.text-primary-dark {
  --bs-text-opacity: 1;
  color: rgb(12 35 64) !important;
}
.text-primary-orange {
  --bs-text-opacity: 1;
  color: #ff6b38 !important;
}
.zoom-in {
  animation: zoomIn 0.6s ease-out forwards;
}

.zoom-in-card {
  opacity: 0;
  animation: zoomInCard 0.6s ease-out forwards;
}

/* Staggered delays for cards */
.zoom-in-card:nth-child(1) {
  animation-delay: 0.2s;
}
.zoom-in-card:nth-child(2) {
  animation-delay: 0.4s;
}
.zoom-in-card:nth-child(3) {
  animation-delay: 0.6s;
}
.zoom-in-card:nth-child(4) {
  animation-delay: 0.8s;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes zoomInCard {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Hover effect */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.founder-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.founder-image-container {
  height: 100%;
  overflow: hidden;
}

.founder-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.founder-card:hover .founder-image {
  transform: scale(1.05);
}

.founder-name {
  color: #071f3d;
  font-weight: 600;
  margin-bottom: 5px;
}

.founder-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: #071f3d !important;
  opacity: 0.9;
}

.founder-description {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.founder-description p {
  margin-bottom: 1rem;
}

.founder-description p:last-child {
  margin-bottom: 0;
}

/* Animation for the card */
.founder-card {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .founder-image-container {
    height: 300px;
  }

  .founder-content {
    padding: 1rem !important;
  }
}

.benefits-testimonial-carousel-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.benefits-testimonial-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.benefits-testimonial-slide {
  flex: 0 0 100%; /* Each slide takes full width */
  width: 100%;
  padding: 15px; /* Adjust padding as needed */
  box-sizing: border-box; /* Include padding in width */
  text-align: center;
}

/* Navigation Buttons (Prev/Next) */
.benefits-testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s ease;
}

.benefits-testimonial-nav:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.benefits-testimonial-nav.prev {
  /* left: 10px; */
  left: 0px;
}

.benefits-testimonial-nav.next {
  /* right: 10px; */
  right: 0px;
}

/* Dots Navigation */
.benefits-testimonial-dots {
  text-align: center;
  margin-top: 20px;
}

.benefits-testimonial-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: none; /* Remove default button border */
  padding: 0; /* Remove default button padding */
}

.benefits-testimonial-dot.active {
  background-color: #717171;
}

/* Ensure testimonial-highlight and author styles are visible within slides */
.benefits-testimonial-slide .testimonial-highlight {
  /* Your existing testimonial-highlight styles */
  background: linear-gradient(
    90deg,
    #071f3d 0%,
    #071f3d 100%
  ); /* Example, adjust as per your original */
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(255, 188, 80, 0.15);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.benefits-testimonial-slide .testimonial-author {
  /* Your existing testimonial-author styles */
  margin-top: 15px;
  font-size: 0.9rem;
  color: #ddd; /* Adjust color for visibility on dark background */
}

/* Contact Section Testimonial Carousel Styles */
.contact-testimonial-carousel-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 30px; /* Adjust spacing as needed */
}

.contact-testimonial-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.contact-testimonial-slide {
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box;
  padding: 15px; /* Add padding to slides if needed */
  /* text-align: center; */
  /* Center content within the slide */
}

/* Navigation Buttons */
.contact-testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(
    255,
    255,
    255,
    0.5
  ); /* Lighter background for contrast */
  color: #333; /* Darker icon color */
  border: none;
  border-radius: 50%;
  width: 35px; /* Slightly smaller */
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-testimonial-nav:hover {
  background-color: rgba(255, 255, 255, 0.8);
  color: #000;
}

.contact-testimonial-nav.prev {
  left: 5px;
  /* display: none; */
}

.contact-testimonial-nav.next {
  right: 5px;
  /* display: none; */
}

/* Dots Navigation */
.contact-testimonial-dots {
  text-align: center;
  margin-top: 25px; /* Adjusted spacing */
}

.contact-testimonial-dot {
  display: inline-block;
  /* display: none; */
  width: 8px; /* Slightly smaller dots */
  height: 8px;
  margin: 0 4px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: none;
  padding: 0;
}

.contact-testimonial-dot.active {
  background-color: #ff5722;
}

/* Ensure the testimonial-quote inside the carousel is styled correctly */
/* This blockquote maintains its original styles, so no specific changes here unless needed for visual adjustments within the carousel context */
.contact-testimonial-slide .testimonial-quote {
  /* Example: Add some margin to separate from controls, if needed */
  margin: 0 auto;
  max-width: 90%; /* Adjust if the quote box needs to be narrower */
}

.navbar-dark .navbar-nav .nav-item.active .nav-link {
  font-weight: 700; /* Make text bolder */
  position: relative;
}

.navbar-dark .navbar-nav .nav-item.active .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -5px; 
  width: 30px; 
  height: 3px; 
  background-color: var(--secondary); 
  border-radius: 2px;
}

@media (min-width: 300px) and (max-width: 500px) {
  .navbar-dark .navbar-nav .nav-item.active .nav-link::after {
    left: 10% !important;
  }
}

.breadcrumb_hero {
  position: relative;
  background-size: cover;
  min-height: 50vh; /* Adjust height as needed for about page */
  display: flex;
  align-items: center;
  color: var(--light);
  overflow: hidden; /* Hide overflowing slides */
}

/* Reusing and adapting the hero carousel styles for breadcrumb_hero */
.breadcrumb_hero .hero-background-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.breadcrumb_hero .hero-background-slide {
  flex: 0 0 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 100%;
}

.breadcrumb_hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(12, 35, 64, 0.9),
    rgba(12, 35, 64, 0.7)
  );
  z-index: 2; /* Ensure overlay is above backgrounds but below content */
}

.breadcrumb_hero .hero-content {
  position: relative;
  z-index: 3; /* Ensure content is on top */
  padding: 6rem 0;
  width: 100%;
}
/* .breadcrumb_hero {
  padding: 60px 0; 
  background-color: var(--primary);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 250px; 
}

.breadcrumb_hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgb(26 27 28 / 47%),  rgb(38 34 34 / 10%));

} */
  /* .breadcrumb_hero .overlay {
    background-color: rgba(
      0,
      0,
      0,
      0.4
    ); 
  } */

/* Updated Hero Section (for simpler page titles) */
.page-title-section {
  background-color: #fff; /* A solid background color */

  padding: 100px 0 50px 0; /* Adjust padding to give space, top padding accounts for fixed navbar */
  color: white; /* Ensure text is visible on dark background */
  display: flex;
  align-items: center;
  justify-content: center;
  /* To ensure it sits below the fixed navbar */
  margin-top: -80px; /* Negative margin equal to navbar height (adjust if navbar height changes) */
  padding-top: 160px; /* Increased padding to compensate for negative margin */
  position: relative; /* Needed for z-index or other positioning if needed later */
  z-index: 1; /* Ensure it's above other elements if overlaps occur */
}

.page-title-section h1 {
  font-size: 3.5rem;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .page-title-section {
    padding: 120px 0 40px 0; /* Adjusted padding for smaller screens */
    margin-top: -70px; /* Adjust negative margin for smaller navbar on mobile */
  }

  .page-title-section h1 {
    font-size: 2.5rem;
  }
}

.section-divider-arrow {
  text-align: center;
  padding: 30px 0; /* Adjust padding as needed for spacing */
  color: var(--secondary); /* Using your highlight color for the arrow */
}

.section-divider-arrow i {
  animation: bounce 2s infinite; /* Apply bounce animation */
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* You might want to adjust the margin-top of the next section if needed */
.benefits-grid-section {
  /* Assuming this is the section with your 9 boxes */
  margin-top: 20px; /* Example, adjust to fine-tune spacing */
}

.btn-check:active + .btn-outline-primary,
.btn-check:checked + .btn-outline-primary,
.btn-outline-primary.active,
.btn-outline-primary.dropdown-toggle.show,
.btn-outline-primary:active {
  color: #fff;
  background-color: #0c2340;
  border-color: #0c2340;
}
.btn-outline-primary {
  color: #0c2340;
  border-color: #0c2340;
}





/* WhatsApp Floating Button */

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  /* bottom: 40px;
  right: 40px; */
      bottom: 160px;
    right: 15px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 1000;
  transition: all 0.3s ease;
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 2px 2px 15px rgba(37, 211, 102, 0.5);
}

.whatsapp-float a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.whatsapp-float i {
  margin-top: 2px;
}

/* Pulse animation for WhatsApp button */
@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    /*bottom: 20px;*/
    bottom: 150px;

    right: 20px;
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    width: 45px;
    height: 45px;
    /*bottom: 15px;*/
            bottom: 140px;

    right: 15px;
    font-size: 20px;
  }
}


@media (min-width: 992px) and (max-width: 1399.98px) {
  /* Target the container inside your navbar */
  #mainNav .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 1rem;   /* match Bootstrap’s default container padding */
    padding-right: 1rem;  /* ditto */
  }
  
  /*mainNav_inner*/
  
   #mainNav_inner .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 1rem;   /* match Bootstrap’s default container padding */
    padding-right: 1rem;  /* ditto */
  }
}

@media (min-width: 1400px) {
  .footer-contact li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
  }
}


