@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
html {
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #fff;
}

.container {
  width: 90%;
  margin: auto;
  max-width: 1200px;
}

.header {
  width: 100%;
  background: white;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

/* Logo */
.logo img {
  width: 170px;
}

/* Navigation */
.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #007bff;
}

/* Mobile Menu Icon */
.menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* ===== HERO / BANNER ===== */
.hero {
  width: 100%;
  height: 520px;
  background: url("banner.jpg") center/cover no-repeat;
  position: relative;
}

/* Banner overlay like image (blur + dim effect) */
.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  /* background: rgba(255, 255, 255, 0.45); white overlay */
  backdrop-filter: blur(1px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .nav-links {
    gap: 15px;
  }
  .nav-links a {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .menu-icon {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    right: 20px;
    background: white;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
  }

  .nav-links.active {
    display: flex;
  }

  .hero {
    height: 380px;
  }
}

/* ===== HERO / BANNER ===== */
.hero {
  /* width: 100%;
  height: 720px;
  background: url("img/new.jpg")
    center/cover no-repeat!important;
  position: relative;
  display: flex;
  align-items: center; */
}

/* Overlay (dark + gradient) */
/* .hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 123, 255, 0.65),
    rgba(0, 198, 255, 0.55)
  );
} */

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 650px;
}

.hero-content h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.2;
  text-shadow: 0px 4px 12px rgba(0, 0, 0, 0.4);
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 25px;
  opacity: 0.95;
  line-height: 1.6;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn-primary {
  padding: 12px 28px;
  background: #ffd700;
  color: #000;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
  background: #ed1c24;
  transform: translateY(-3px);
}

/* Secondary Button */
.btn-secondary {
  padding: 12px 28px;
  background: transparent;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  border: 2px solid white;
  text-decoration: none;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: white;
  color: black;
  transform: translateY(-3px);
}

/* Responsive Hero */
@media (max-width: 768px) {
  .hero {
    height: 380px;
    text-align: center;
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-buttons {
    justify-content: center;
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 90%;
    margin: auto;
  }
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: 70px 0;
  background: #f8fbff;
}

.about-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* About Image */
.about-img img {
  width: 100%;
  max-width: 480px;
  border-radius: 18px;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.15);
}

/* About Content */
.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 38px;
  color: #007bff;
  margin-bottom: 14px;
}

.about-content p {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* About Points */
.about-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
}

.point {
  background: white;
  padding: 12px 15px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #ed1c24;
}

/* Button */
.about-btn {
  display: inline-block;
  padding: 12px 26px;
  background: #ed1c24;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
}

.about-btn:hover {
  background: #0056b3;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .about-content h2 {
    font-size: 30px;
  }

  .about-img img {
    max-width: 100%;
  }

  .point {
    text-align: left;
  }
}

/* ===== SERVICES SECTION ===== */
.services {
  padding: 80px 0;
  background: white;
}

.service-heading {
  text-align: center;
  margin-bottom: 50px;
}

.service-heading h2 {
  font-size: 38px;
  color: #007bff;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-heading p {
  font-size: 16px;
  color: #444;
  max-width: 620px;
  margin: auto;
  line-height: 1.6;
}

/* Service Cards Layout */
.service-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Service Card Design */
.service-card {
  background: #f8fbff;
  padding: 30px 18px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  border: 1px solid rgba(0, 123, 255, 0.15);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 15px 30px rgba(0, 123, 255, 0.25);
}

/* Service Icon */
.service-icon {
  width: 70px;
  height: 70px;
  margin: auto;
  background: linear-gradient(90deg, #007bff, #00c6ff);
  color: white;
  font-size: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-bottom: 18px;
}

/* Service Text */
.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #111;
}

.service-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .service-box {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .service-box {
    grid-template-columns: 1fr;
  }

  .service-heading h2 {
    font-size: 30px;
  }
}

/* ===== PROGRAMS SECTION ===== */
.programs {
  padding: 80px 0;
  background: #f4f8ff;
}

.program-heading {
  text-align: center;
  margin-bottom: 50px;
}

.program-heading h2 {
  font-size: 38px;
  color: #007bff;
  font-weight: 700;
  margin-bottom: 10px;
}

.program-heading p {
  font-size: 16px;
  color: #444;
  max-width: 650px;
  margin: auto;
  line-height: 1.6;
}

/* Grid Layout */
.program-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Card Design */
.program-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.08);
  transition: 0.35s;
  border: 1px solid rgba(0, 123, 255, 0.12);
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 18px 35px rgba(0, 123, 255, 0.25);
}

/* Image */
.program-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: 0.4s;
}

.program-card:hover .program-img img {
  transform: scale(1.1);
}

/* Text */
.program-card h3 {
  font-size: 20px;
  margin-top: 18px;
  margin-bottom: 10px;
  color: #111;
}

.program-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  margin: 0 15px 18px;
}

/* Button */
.program-btn {
  display: inline-block;
  margin-bottom: 20px;
  padding: 10px 22px;
  background: #007bff;
  color: white;
  font-size: 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.program-btn:hover {
  background: #0056b3;
}

/* Responsive */
@media (max-width: 992px) {
  .program-box {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .program-box {
    grid-template-columns: 1fr;
  }

  .program-heading h2 {
    font-size: 30px;
  }
}


 .clients-section {
        padding: 80px 0;
      
    }

    .clients-title {
        text-align: center;
        font-size: 42px;
        letter-spacing: 3px;
        color: #555;
        margin-bottom: 50px;
        font-weight: 500;
    }

    .client-box {
        /* background: #eaeaea;
  border: 2px solid #555; */
        height: 140px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* .client-box img {
        max-width: 80%;
        max-height: 80%;
        object-fit: contain;
    } */

    /* arrows styling */
    .swiper-button-next,
    .swiper-button-prev {
        color: #0056b3!important;
       
        width: 45px;
        height: 45px;
        border-radius: 50%;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 18px;
        color: #0056b3!important;
    }

 .gallery-section {
  padding: 10px 0 50px 0;
  background: #f8f8f8;
}

.gallery-title {
  text-align: center;
  font-size: 40px;
  margin-bottom: 50px;
  color: #444;
  letter-spacing: 2px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Equal size image box */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 230px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Hover Effect */
.gallery-item::after {
  content: "🔍 View";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  color: white;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.4s;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    height: 200px;
  }
}
.gallery-section {
  padding: 80px 0;
  background: #f8f8f8;
}

.gallery-title {
  text-align: center;
  font-size: 40px;
  margin-bottom: 50px;
  color: #444;
  letter-spacing: 2px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  height: 230px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

/* Hover Effect */
.gallery-item::after {
  content: "🔍 View";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.4s;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { height: 200px; }
}

/* ===== FOOTER ===== */
.footer {
  background:linear-gradient(90deg, #08417d, #0d9bc3);
  color: white;
  padding-top: 50px;
  margin-top: 60px;
}

.footer-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  padding-bottom: 40px;
}

/* Footer Box */
.footer-box h2 {
  font-size: 26px;
  margin-bottom: 12px;
}

.footer-box h3 {
  font-size: 20px;
  margin-bottom: 14px;
}

.footer-box p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.95;
}

/* Quick Links */
.footer-box ul {
  list-style: none;
}

.footer-box ul li {
  margin-bottom: 10px;
}

.footer-box ul li a {
  text-decoration: none;
  color: white;
  font-size: 14px;
  transition: 0.3s;
}

.footer-box ul li a:hover {
  color: #ffd700;
  margin-left: 6px;
}

/* Social Icons */
.social-icons {
  margin-top: 15px;
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  text-decoration: none;
  color: white;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #ffd700;
  color: black;
  transform: translateY(-4px);
}

/* Footer Bottom */
.footer-bottom {
  background: #ed1c24;
  text-align: center;
  padding: 12px;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}




/* Contact Section */
.contact {
  padding: 80px 0;
  background: white;
}

.contact-wrapper {
  display: flex;
  gap: 35px;
  align-items: flex-start;
}

/* Contact Form */
.contact-form {
  flex: 1;
  background: #f8fbff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 123, 255, 0.15);
}

.contact-form h2 {
  font-size: 28px;
  color: #007bff;
  margin-bottom: 10px;
}

.contact-form p {
  font-size: 14px;
  color: #444;
  margin-bottom: 18px;
  line-height: 1.6;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 14px;
}

.contact-form textarea {
  height: 120px;
  resize: none;
}

.contact-form button {
  padding: 12px;
  background: #007bff;
  color: white;
  font-size: 15px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

/* Contact Info */
.contact-info {
  flex: 1;
}

.contact-info h2 {
  font-size: 28px;
  color: #007bff;
  margin-bottom: 20px;
}

.info-card {
  background: #f8fbff;
  padding: 22px 18px;
  border-radius: 16px;
  margin-bottom: 18px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #007bff;
}

.info-card h3 {
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 600;
}

.info-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}