/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Helvetica Now Display, sans-serif; }

/* ===== Scroll Animations ===== */
.fade-left, .fade-right, .fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}
.fade-left { transform: translateX(-50px); }
.fade-right { transform: translateX(50px); }
.fade-up { transform: translateY(40px); }

.show-animate {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* ====== HEADER ====== */
.header {
  width: 100%;
  position: sticky;
  top: 0;
  background-color: #2E3192;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 60px;
  z-index: 1000;
  flex-wrap: nowrap;              /* prevent wrapping */
}

.logo img {
  height: 40px;
}

/* Navbar takes the flexible middle space */
.navbar {
  display: flex;
  align-items: center;
  flex: 1 1 auto;                 /* grow/shrink as needed */
  min-width: 0;                   /* allows flex children to shrink properly */
}

.navbar .nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;        /* center the menu in the available middle */
  gap: 45px;
  flex: 1 1 auto;
  min-width: 0;
}

.navbar .nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
  white-space: nowrap;            /* keep items on one line */
}

.navbar .nav-links li a:hover {
  color: #FFD700;
}

/* Hamburger sits at the end of navbar area */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  margin-left: 12px;
  flex: 0 0 auto;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 3px;
}

/* ===== Call (desktop, right side) ===== */
.call-icon {
  margin-left: auto;              /* pushes this block to the far right */
  flex: 0 0 auto;
}

.call-icon a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  white-space: nowrap;
}

.call-icon img {
  height: 22px;
  width: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.call-icon img:hover {
  transform: scale(1.1);
  color: #FFD700;
  
}

.call-icon span {
  color: white;
}
.call-icon span:hover {
  color: #FFD700;
}

/* ===== Call item INSIDE hamburger ===== */
.mobile-call {
  display: none; /* hidden on desktop */
}

.mobile-call a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.mobile-call img {
  height: 20px;
  filter: invert(1) brightness(0); /* <-- makes white SVG look black */

}

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .navbar .nav-links {
    gap: 28px; /* tighter gaps on medium screens to keep layout in one row */
  }
}

@media (max-width: 768px) {
  .navbar {
    justify-content: flex-end;
  }

  .navbar .nav-links {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 60px;
    right: 30px;
    width: 220px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    justify-content: flex-start;  /* stack links */
    align-items: flex-start;
    gap: 14px;
  }

  .navbar .nav-links li a {
    color: #000;
  }

  .navbar .nav-links li a:hover {
    color: var(--primary);
  }

  .navbar .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  /* Hide desktop call on small screens */
  .call-icon {
    display: none;
  }

  /* Show call option inside hamburger */
  .mobile-call {
    display: block;
  }
}


/* About Us */
.about-section1 {
  display: flex; 
  flex-direction: column; 
  align-items: center;
  text-align: center; 
  padding: 60px 20px;

  background-image: url('Img/section\ wall.svg'); /* your SVG file */
  background-repeat: no-repeat;
  background-size: cover; /* fills full width + height */
  background-position: center;
}
.about-section1 h2 { 
    font-size: 3rem;
    font-family: "Lora"; 
    font-weight: 700; 
    margin-bottom: 20px; }
.about-box {
  width: 960px; max-width: 100%; height: 400px;
  border-radius: 24px; overflow: hidden;
}
.about-box img { width: 100%; height: 100%; object-fit: cover; border-radius: 24px; }

/* Responsive About Image */
@media (max-width: 992px) { .about-box { height: 320px; } }
@media (max-width: 600px) { .about-box { height: 240px; } }

/* Information Section */
.about-section { 
    padding: 60px 20px; 
    background: #fff; 

    background-image: url('Img/section\ wall.svg'); /* your SVG file */
    background-repeat: no-repeat;
    background-size: cover; /* fills full width + height */
    background-position: center;
  }
.about-container {
  display: flex; 
  justify-content: space-between; 
  align-items: center;
  max-width: 1200px; 
  margin: 0 auto; 
  gap: 40px;
}
.about-left { 
    flex: 1; 
    max-width: 600px;
}
.about-left h2 { 
    font-size: 2.6rem; 
    margin-bottom: 20px; 
    font-weight: 700; 
    width: auto;
    max-width: 100%;
    font-family: "Lora";
}
.about-left p { 
    margin-bottom: 15px; 
    line-height: 1.6; 
    color: #333; 
    text-align: left; }

.about-right {
  flex: 0 0 500px; 
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  gap: 30px;
}
.counter-box { text-align: center; }
.counter-box .counter {
  font-size: 2.5rem; font-weight: bold; color: #2a2a8f; display: block;
}
.counter-box p { margin-top: 10px; font-size: 1rem; color: #444; }

/* Responsive Info */
/* Tablet & Mobile: center all elements */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column; /* stack left & right */
    align-items: center;    /* center horizontally */
    text-align: center;     /* center text */
  }

  .about-left {
    max-width: 80%;        /* full width on mobile */
    margin-bottom: 30px;    /* spacing between text and numbers */
  }

  .about-right {
    flex: none;
    width: 100%;
  }

  .about-right .counter {
    font-size: 2.5rem;
  }

  .about-left p {
    font-size: 1rem;
    line-height: 1.6;
  }
}

/* Mobile: extra adjustments if needed */
@media (max-width: 576px) {
  .about-left h2 {
    font-size: 1.8rem;
    text-align: center;
    align-items: center;
  }

  .about-left p {
    font-size: 0.95rem;
    text-align: center;
    align-items: center;
  }

  .about-right .counter {
    font-size: 2rem;
  }
}

/*vision*/

.vision-section {
  padding: 60px 20px;
  background: #ffffff;

  background-image: url('Img/section\ wall.svg'); /* your SVG file */
  background-repeat: no-repeat;
  background-size: cover; /* fills full width + height */
  background-position: center;
  
}

.vision-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: -100px; /* negative gap for overlap */
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap; /* allow wrap on smaller screens */
}

/* Image */
.vision-image img {
  width: 500px;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

/* Rectangle with text */
.vision-text {
  width: 512px;
  height: 300px;
  background: #333333;
  /* box-shadow: 0 10px 20px rgba(0,0,0,0.1);  */
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vision-text h2 {
  font-size: 2.6rem;
  margin-bottom: 15px;
  color: #ffffff;
  font-family: "Lora";
}

.vision-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ffffff;
}


/* Tablet */
@media (max-width: 992px) {
  .vision-container {
    gap: 30px;          /* remove negative gap for smaller screens */
    flex-direction: column; 
    align-items: center;
  }

  .vision-image img,
  .vision-text {
    width: 90%;          /* responsive width */
    height: auto;        /* maintain aspect ratio */
  }

  .vision-text {
    padding: 20px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .vision-text h2 {
    font-size: 1.6rem;
  }

  .vision-text p {
    font-size: 1rem;
  }

  .vision-container {
    gap: -100px;
  }
}


/*Mission*/

.mission-section {
  padding: 60px 20px;
  background: #ffffff;

  background-image: url('Img/section\ wall.svg'); /* your SVG file */
  background-repeat: no-repeat;
  background-size: cover; /* fills full width + height */
  background-position: center;
}

.mission-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: -400px; /* negative gap for overlap */
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap; /* allow wrap on smaller screens */
}

/* Rectangle with text (left side) */
.mission-text {
  width: 512px;
  height: 300px;
  background: #333333;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mission-text h2 {
  font-size: 2.6rem;
  margin-bottom: 15px;
  color: #ffffff;
  font-family: "Lora";
}

.mission-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ffffff;
}

/* Image (right side) */
.mission-image img {
  width: 500px;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}


/* Tablet */
@media (max-width: 992px) {
  .mission-container {
    gap: 30px;          /* remove negative gap */
    flex-direction: column; 
    align-items: center;
  }

  .mission-image img,
  .mission-text {
    width: 90%;          /* responsive width */
    height: auto;        /* maintain aspect ratio */
  }

  .mission-text {
    padding: 20px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .mission-text h2 {
    font-size: 1.6rem;
  }

  .mission-text p {
    font-size: 1rem;
  }

  .mission-container {
    gap: -300px;
  }
}

/*

.team-section {
  padding: 80px 20px;
  background: #f9f9f9;

  
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: right; 
}

.team-title {
  font-size: 2.6rem;
  margin-bottom: 40px;
  font-weight: 700;
  font-family: "Lora";
}


.team-row {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap; 
}


.team-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  flex: 1 1 calc(33.333% - 20px); 
  max-width: calc(33.333% - 20px);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  text-align: center;
}

.team-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}


.team-card h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #333;
}

.team-card p {
  font-size: 1rem;
  color: #777;
}


.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}


@media (max-width: 992px) {
  .team-container {
    text-align: center; 
  }

  .team-card {
    flex: 1 1 calc(50% - 20px); 
    max-width: calc(50% - 20px);
  }
}


@media (max-width: 576px) {
  .team-card {
    flex: 1 1 100%; 
    max-width: 100%;
  }

  .team-card img {
    height: 180px;
  }

  .team-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}

.team-card {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.team-card.show-animate {
  opacity: 1;
  transform: translateY(0);
}
*/

/*Certificate section*/

/* Certifications Section */
.certifications {
  background: #ffffff;
  text-align: center;

  background-image: url('Img/section\ wall.svg'); /* your SVG file */
  background-repeat: no-repeat;
  background-size: cover; /* fills full width + height */
  background-position: center;
  
}

.certifications .section-title {
  font-size: 2.6rem;
  color: #333333;
  margin-bottom: 15px;
  /* padding-top: 60px;*/
  font-family: 'Lora';
}

.certifications .section-description {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

/* Image - full width with no padding or radius */
.certificate-image img {
  width: 100%;
  height: auto;      /* Desktop height */
  object-fit: contain;   /* Fits image properly */
  display: block;
  margin: 0;
  padding: 0;
  border-radius: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .certificate-image img {
    height: auto;     /* Tablet */
  }
}

@media (max-width: 600px) {
  .certificate-image img {
    height: auto;     /* Mobile */
  }

  .certifications .section-title {
    font-size: 1.8rem;
  }

  .certifications .section-description {
    font-size: 0.95rem;
    padding: 0 15px;
  }
}






/* ===== Footer ===== */
.footer {
  background: #fff;
  padding: 60px 60px 60px;
  font-family: "Space Grotesk", sans-serif;
  color: #000;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

/* About */
.footer-about {
  flex: 1 1 250px;
}

.footer-logo {
  max-width: 120px;
  margin-bottom: 15px;
}

.footer-about p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.footer-socials a {
  font-size: 1.2rem;
  margin-right: 12px;
  color: #000;
  transition: color 0.3s;
}
.footer-socials a img {
  width: 32px;  
  height: 32px;  
}

.footer-contact img {
  width: 22px;   
  height: 22px;
}


.footer-socials a:hover {
  color: #007BFF;
}

/* Links */
.footer-links {
  flex: 1 1 180px;
}

.footer-links h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #000;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #007BFF;
}

/* Contact */
.footer-contact {
  flex: 1 1 250px;
}

.footer-contact p {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}

.footer-contact i {
  color: #007BFF;
  min-width: 18px;
}

/* Bottom */
.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
}

.footer-policy a {
  margin-left: 20px;
  text-decoration: none;
  color: #000;
  transition: color 0.3s;
}

.footer-policy a:hover {
  color: #007BFF;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .footer {
    padding: 50px 60px 60px;
  }

  .footer-container {
    gap: 30px;
  }

  .footer-bottom {
    padding-top: 15px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 60px;
  }

  .footer-container {
    flex-direction: column;
    text-align: left;
    gap: 25px;
  }

  .footer-about, .footer-links, .footer-contact {
    flex: 1 1 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-policy a {
    margin: 0 10px;
  }
}
