/* Reset & Basics */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    background: #fff;
    color: #333;
    line-height: 1.6;
  }
  
  /* Typography Utilities */
  .section-heading {
    text-align: center;
    font-size: 2rem;
    color: #ff6b00;
    margin-bottom: 2rem;
  }
  
  /* Navigation */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .logo {
    font-weight: bold;
    font-size: 1.2rem;
    color: #ff6b00;
  }
  
  .logo img {
    height: 40px;
    vertical-align: middle;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #ff6b00;
    font-weight: 500;
  }
  
  .nav-links a:hover {
    color: #ff6b00;
  }
  
  /* Hero Section */
  .hero {
    background: url('hero.jpg') center center/cover no-repeat;
    height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  .hero-overlay {
    background-color: rgba(0, 0, 0, 0.661);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-content {
    color: white;
    text-align: center;
    padding: 2rem;
  }
  
  .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .hero-content p {
    font-size: 1.2rem;
    /* color: #1a4bcc; */
  }
  
  /* Buttons */
  .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    color: white;
  }
  
  .orange {
    background: #ff6b00;
  }
  
  .blue {
    background: #1a4bcc;
  }
  
  /* Features Section */
  .features {
    padding: 3rem 1rem;
    background: #f9f9f9;
    text-align: center;
  }
  
  .feature-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .feature {
    flex: 1 1 250px;
    max-width: 300px;
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
  }
  
  h2 {
    margin-bottom: 0.5rem;
    color: #ff6b00;
  }
  

  
  .feature h3 {
    margin-bottom: 0.5rem;
    color: #003366;
  }
  
  /* Welcome Section */
  .welcome {
    padding: 3rem 2rem;
    text-align: center;
  }
  
  .welcome h2 {
    color: #ff6b00;
    margin-bottom: 1rem;
  }
  
  /* Contact Section */
  .contact {
    background: #eaf2f8;
    padding: 4rem 1rem;
    display: flex;
    justify-content: center;
  }
  
  .contact-content {
    max-width: 900px;
    width: 100%;
    text-align: center;
  }
  
  .contact-box {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    text-align: left;
  }
  
  .contact-details {
    flex: 1 1 300px;
    font-size: 1rem;
    line-height: 1.7;
  }
  
  .contact-details a {
    color: #003366;
    text-decoration: none;
    font-weight: 500;
  }
  
  .contact-details a:hover {
    text-decoration: underline;
  }
  
  .contact-map {
    flex: 1 1 250px;
    max-width: 350px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }
  
  /* Map Container (optional elsewhere) */
  .map-container {
    margin-top: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }
  
  /* Footer */
  footer {
    background: #ff6b00;
    color: white;
    text-align: center;
    padding: 1rem;
  }

  .testimonials {
    padding: 5rem 1rem; /* was 3rem, now 5rem for more top/bottom space */
    text-align: center;
    position: relative;
  }  
  
  .testimonial-carousel {
    max-width: 700px;
    margin: 2rem auto 0;
    position: relative;
    min-height: 200px;
  }
  
  .testimonial {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    font-style: italic;
    color: #555;
    padding: 0 1rem;
    max-width: 100%;
  }
  
  .testimonial.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
  }
  
  .testimonial .author {
    margin-top: 1rem;
    font-weight: bold;
    color: #003366;
  }
  
  .principal-note {
    background-color: #fdf7f0;
    padding: 3rem 1rem;
    text-align: center;
  }
  
  .principal-box {
    max-width: 800px;
    margin: auto;
    font-style: italic;
    color: #444;
    font-size: 1.1rem;
    line-height: 1.8;
    padding: 0 1rem;
  }
  
  .principal-box .author {
    margin-top: 1rem;
    font-weight: bold;
    color: #003366;
    font-style: normal;
  }
  


  /* Responsive Design */
  @media (max-width: 768px) {
    .contact-box {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .contact-map {
      width: 100%;
    }
  
    .contact-details {
      text-align: center;
    }
  
    .feature-grid {
      flex-direction: column;
      align-items: center;
    }
  }
  