 body {
      box-sizing: border-box;
      background-color: #7D797C;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    :root {
      --primary-gold: #D4AF37;
      --dark-navy: #0A1929;
      --light-gray: #F8F9FA;
      --accent-green: #25D366;
      --text-dark: #1A1A1A;
    }
    
    body {
      font-family: 'Inter', sans-serif;
      overflow-x: hidden;
    }

    .main-background {
    background-color: #0b1f3a;   /* deep navy */
    padding: 60px 0;
}
    
    .font-display {
      font-family: 'Playfair Display', serif;
    }
    
    .nav-link {
      position: relative;
      transition: all 0.3s ease;
    }
    
    .nav-link::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: -4px;
      left: 50%;
      background: var(--primary-gold);
      transition: all 0.3s ease;
      transform: translateX(-50%);
    }
    
    .nav-link:hover::after,
    .nav-link.active::after {
      width: 100%;
    }
    
    .hero-gradient {
      background: linear-gradient(135deg, var(--dark-navy) 0%, #1a2942 100%);
    }
    
    section {
      scroll-margin-top: 80px;
    }
    
    .services-dropdown:hover .dropdown-content {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    
    .dropdown-content {
      transform: translateY(-10px);
      border: 1px solid #e5e7eb;
    }
    
    .dropdown-item {
      border-left: 3px solid transparent;
      transition: all 0.3s ease;
    }
    
    .dropdown-item:hover {
      border-left-color: var(--primary-gold);
      padding-left: 20px;
    }

    #carousel {
        margin-top: 200px;
    }

    .leadership_class {
      width:100%;
      height:256px;
      object-fit:cover;
      object-position: center 13.5%;
    }





    .fancy-carousel {
    position: relative;
    max-width: 900px;
    margin: 60px auto;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
    font-family: system-ui, sans-serif;
  }

  .carousel-track {
    display: flex;
    transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
  }

  .carousel-slide {
    position: relative;
    min-width: 100%;
    height: 420px;
    overflow: hidden;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    transition: transform 1.2s ease;
  }

  .carousel-slide.active img {
    transform: scale(1);
  }

  /* Dark overlay */
  .carousel-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.25),
      rgba(0,0,0,0.6)
    );
  }

  /* Caption */
  .carousel-caption {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: #fff;
    z-index: 2;
    max-width: 60%;
  }

  .carousel-caption h2 {
    font-size: 2.4rem;
    margin-bottom: 10px;
  }

  .carousel-caption p {
    opacity: 0.9;
    font-size: 1.1rem;
  }

  /* Arrows */
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    color: #fff;
    font-size: 26px;
    padding: 14px 18px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s, transform 0.3s;
    z-index: 3;
  }

  .carousel-btn:hover {
    background: rgba(255,255,255,0.45);
    transform: translateY(-50%) scale(1.1);
  }

  .prev { left: 20px; }
  .next { right: 20px; }

  /* Dots */
  .carousel-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
  }

  .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
  }

  .dot.active {
    background: #fff;
    transform: scale(1.3);
  }

  @media (max-width: 700px) {
    .carousel-slide {
      height: 300px;
    }

    .carousel-caption {
      left: 20px;
      bottom: 20px;
      max-width: 80%;
    }

    .carousel-caption h2 {
      font-size: 1.7rem;
    }
  }

    .site-footer {
  background: linear-gradient(
    135deg,
    #0f172a,
    #020617
  );

  color: #ffffff;
  padding-top: 60px;
  font-family: "Segoe UI", sans-serif;
}

/* Container */

.footer-container {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns:
    repeat(auto-fit, minmax(250px, 1fr));

  gap: 40px;

  padding-left: 20px;
  padding-right: 20px;
}

/* Logo */

.footer-logo {
  font-size: 24px;
  font-weight: bold;

  margin-bottom: 15px;

  color: #22c55e;
}

/* Text */

.footer-text {
  font-size: 14px;
  line-height: 1.6;

  color: #cbd5f5;

  margin-bottom: 20px;
}

/* Titles */

.footer-column h3 {
  margin-bottom: 20px;

  font-size: 18px;

  position: relative;
}

.footer-column h3::after {
  content: "";

  width: 40px;
  height: 3px;

  background: #22c55e;

  position: absolute;

  left: 0;
  bottom: -8px;
}

/* Lists */

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

/* Links */

.footer-column a {
  text-decoration: none;

  color: #e2e8f0;

  transition: 0.3s;
}

.footer-column a:hover {
  color: #22c55e;
  padding-left: 6px;
}

/* Social Icons */

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #1e293b;

  border-radius: 50%;

  transition: 0.3s;
}

.social-icons a:hover {
  background: #22c55e;
  transform: translateY(-3px);
}

/* Button */

.footer-btn {
  margin-top: 15px;

  background: #22c55e;

  border: none;

  padding: 12px 20px;

  color: white;

  font-weight: bold;

  border-radius: 6px;

  cursor: pointer;

  transition: 0.3s;
}

.footer-btn:hover {
  background: #16a34a;
  transform: translateY(-2px);
}

/* Bottom Bar */

.footer-bottom {
  margin-top: 50px;

  background: #020617;

  text-align: center;

  padding: 18px;

  font-size: 14px;

  color: #94a3b8;
}

/* Responsive */

@media (max-width: 768px) {

  .footer-container {
    text-align: center;
  }

  .footer-column h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-icons {
    justify-content: center;
  }
}


