/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f4f4f4;
  color: #555555;
  line-height: 1.6;
}

/*
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f4f4f4;
  color: #555555;
  line-height: 1.6;
}
*/


/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Header */
.site-header {
  background-color: #1a1f71;
  padding: 20px 0;
}

/* NAVBAR BASE STYLES */
nav {
  min-height: 90px;
  background-color: #1a1f71;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  position: relative;
}

/*
nav {
  background-color: #1a1f71;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


about cards colors
about cards title MAYUS

*/

.logo-container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  justify-content: center;
}

.logo {
  height: 65px;
  transform: scale(2.0);
  transform-origin: center;
}

.nav-links {
  display: flex;
  gap: 30px;
  flex-direction: row;
  align-items: center;
  position: static;
  width: auto;
  background: none;
  padding: 0;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #f79e1b;
}

.hamburger {
  display: none;
}

/* --- MOBILE NAV STYLES --- */
@media (max-width: 768px) {
  nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    position: relative;
  }

  .logo-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }

  .logo {
    height: 60px;
    transform: scale(2.0);
    transform-origin: center;
    object-fit: contain;
  }

  .hamburger {
    display: block;
    font-size: 2rem;
    color: white;
    background: none;
    border: none;
    margin-left: auto;
    padding: 10px;
    z-index: 1001;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #1a1f71;
    text-align: center;
    padding: 10px 0;
    position: absolute;
    top: 90px;
    right: 0;
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    color: white;
    padding: 10px 0;
    display: block;
    width: 100%;
    text-decoration: none;
    font-weight: bold;
  }
}



/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 500px;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.hero-content {
  text-align: center;
  color: white;
}

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

.hero-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 100%;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.cta-button {
  background-color: #f79e1b;
  color: #1a1f71;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #e08b10;
}

/* Optional: Responsive layout */

  nav {
    flex-direction: column;
    height: auto;
    padding: 1rem;
  }

  .logo-container {
    position: static;
    transform: none;
    margin-bottom: 10px;
  }

.about-section {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 40px 20px;
    background-color: #fff;
    flex-wrap: wrap;
}

.about-card {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    background-color: #c1121f;
    color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-card h3{
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.about-card p{
    font-size: 1rem;
    line-height: 1.6;
}

/* Different colors for Mission and Vision cards */
.about-card.mission {
    background-color: #002049;
}
/*
01344f
FAE3AC

5E7381
EAC8A6
*/

.about-card.vision {
    background-color: #002049;
    color: white;
}

/* Responsive stacking */
@media (max-width: 768px) {
    .about-section{
        flex-direction: column;
    }

    .about-card{
        margin-bottom: 20px;
    }
}

.icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: white;
}

/*-------------------------------------------------------------*/
/* Contact Page */
.contact-layout {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: nowrap;
  padding: 40px 20px;
  max-width: 1400px;
  margin: auto;
}

.contact-section {
    max-width: 700px;
    margin: 80px;
    padding: 0 20px;
    text-align: center;
}

.contact-section h2{
    color: #1a1f71;
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-section p {
    margin-bottom: 30px;
    color: #555;
    font-size: 1rem;
}

.contact-form {
    max-width: 600px;
    width: 100%;
    text-align: left;
}

.contact-form-column {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

.contact-form button {
    background-color: #f79e1b;
    color: #1a1f71;
    padding: 12px 24px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #e08b10;
}

.contact-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.rep-cards {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.rep-cards-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.rep-card {
  background-color: #f0f0f0;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  width: 200px;
  flex: 0 0 auto; /* Don't shrink or grow */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.rep-card a:hover {
  text-decoration: underline;
}

.rep-card img {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 50%;
}

/* Contact Form updates */
.contact-section h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #1a1f71;
}

.contact-form {
  flex: 2;
  max-width: 700px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row input {
  flex: 1;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form textarea {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.contact-form select {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.contact-form button {
  background-color: #f79e1b;
  color: #1a1f71;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #e08b10;
}

.horizontal-center {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-form-centered {
  max-width: 700px;
  margin: 0 auto;
}

/* Responsive reps */
@media (max-width: 768px) {
  .rep-cards {
    flex-direction: column;
    align-items: center;
  }

  .form-row {
    flex-direction: column;
  }
}

/* Thank You Modal */
.thank-you-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  padding: 30px;
  text-align: center;
  border-radius: 10px;
  max-width: 400px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.modal-content h2 {
  color: #1a1f71;
}

.modal-content button {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #f79e1b;
  color: #1a1f71;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.modal-content button:hover {
  background-color: #e08b10;
}

/* Service Page */
.service-page {
  padding: 60px 20px;
}

.service-intro {
  max-width: 800px;
  margin: 40px auto 60px;
  padding: 20px;
  background-color: #f1f1f1;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.service-intro h1 {
  font-size: 2.5rem;
  color: #1a1f71;
  margin-bottom: 15px;
}

.service-intro p {
  font-size: 1.1rem;
  color: #555
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.service-block {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 40px;
}

.service-block img{
  max-width: 450px;
  border-radius: 10px;
}

.service-block .description{
  background-color: #f2f7ff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 550px;

}

.service-block.reverse {
  flex-direction: row-reverse;
}

.media {
  flex: 1;
  min-width: 300px;
}

.media img, .media video {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 10px;
}

.description {
  flex: 1;
  min-width: 300px;
  background-color: #f5f5f5;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
}

.description h2 {
  color: #1a1f71;
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 700;
}

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

.benefits-list {
  margin-top: 10px;
  padding-left: 20px;
  color: #1a1f71;
  font-weight: 500;
}

.benefits-list li {
  margin-bottom: 6px;
}

/* Responsive Stacking */
@media (max-width: 768px){
  .service-block {
    flex-direction: column !important;
    align-items: center;
    text-align: center;
  }

  .media {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .media img, .media video {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 12px;
  }

  .description {
    width: 90%;
    padding: 20px 0;
  }

  .carousel-button {
    font-size: 2rem;
    padding: 5px 10px;
    background: none;
    border: none;
    color: #1a1f71;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
  }

  .carousel-button.left {
    left: 10px;
  }

  .carousel-button.right {
    right: 10px;
  }

  .service-block.reverse {
    flex-direction: column;
  }
}

/* Swiper Carousel Styles */
.swiper-container {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  overflow: hidden;
}

.swiper-slide img,
.swiper-slide video {
  max-height: 600px;
  width: auto;
  object-fit: contain;
  border-radius: 10px;
  margin: 0 auto;
  display: block;
  background-color: #000;
}

.swiper-button-next,
.swiper-button-prev {
  color: #1a1f71;
}

/*Why Choose Us */
.why-choose-us {
  background-color: #f4f4f4;
  padding: 60px 20px;
  text-align: center;
}

.why-choose-us h2 {
  font-size: 2.2rem;
  color: #1a1f71;
  margin-bottom: 40px;
}

.reasons {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.reasons-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 25px 20px;
  max-width: 300px;
  flex: 1;
  transition: transform 0.3s ease;
}

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

.reasons-card i {
  font-size: 2.5rem;
  color: #f79e1b;
  margin-bottom: 15px;
}

.reasons-card h4{
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #1a1f71;
}

.reasons-card p {
  font-size: 0.95rem;
  color: #333;
}

/*Map Location */
.map-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.map-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #1a1f71;
}

.map-container iframe {
  border-radius: 12px;
  width: 100%;
  max-width: 1000px;
  height: 400px;
}

/*Toast notification*/
.toast {
  visibility: hidden;
  min-width: 250px;
  background-color: #1a1f71;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 12px;
  position: fixed;
  z-index: 9999;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.5s ease, bottom 0.5s ease;
}

.toast.show {
  visibility: visible;
  opacity: 1;
  bottom: 50px;
}

/* Hide nav-links on small screens */
.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

  .hamburger {
    display: block;
    font-size: 2rem;
    color: white;
    background: none;
    border: none;
    margin-left: auto;
    padding: 10px;
    z-index: 1001;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #1a1f71;
    width: 100%;
    padding: 10px 0;
    text-align: center;
    z-index: 1000;
  }

  .nav-links a {
    color: white;
    padding: 10px 0;
    display: block;
    width: 100%;
    text-decoration: none;
    font-weight: bold;
  }

  .nav-links.active{
    display: flex;
  }
  

  /* Service Page Visual Enhacment */
  .service-intro {
    background-color: #f9f9f9;
    padding: 60px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 60px;
  }

  .service-intro h1{
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #1a1f71;
  }

  .service-intro p{
    font-size: 1.05rem;
    line-height: 1.6;
    color: #444;
    max-width: 800px;
    margin: 0 auto;
  }

  /* Service block card styling */
  .service-block {
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 40px;
  }

  .description {
    background-color: #f2f7ff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }

  .description h2 {
    font-size: 1.6rem;
    color: #0d2b7b;
    margin-bottom: 10px;
  }

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

  @media (max-width: 768px) {
    .service-block {
      padding: 20px;
    }

    .description {
      padding: 20px;
    }

    .service-intro {
      padding: 30px 20px;
    }
  }

  .site-footer {
    background-color: #0f237a;
    color: white;
    padding: 20px 0;
    text-align: center;
  }

  .social-icons {
    margin-top: 10px;
  }

  .social-icons a {
    margin: 0 10px;
    color: white;
    font-size: 24px;
    transition: color 0.3s;
  }

  .social-icons a:hover {
    color: #f79e1b;
  }