/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

html, body {
  background-color: #ffffff;
  max-width: 100%;
  overflow-x: hidden;
}

header {
  width: 100%;
  overflow-x: hidden;
  background-color: #8e1717; /* Primary background color */
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  max-width: 100%;
  margin: 0 auto;
}

.logo img {
  height: 50px;
}

/* Navbar Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  overflow-x: hidden;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  font-size: 16px;
  color: #fff; /* Light yellow color for text */
  padding: 8px 15px;
  font-weight: 600;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}

.nav-links a:hover {
  color: #cc9966; /* Lighter gold hover effect */
  border-bottom: 2px solid #cc9966; /* Underline on hover */
}

/* Sign Up Button */
.sign-up-btn {
  background-color: #cc9966;
  color: #fff;
  font-weight: 600;
  padding: 8px 16px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 5px;
  font-size: 16px;
}

.sign-up-btn:hover {
  background-color: #ffff80;
  color: #8e1717;
}

/* Responsive Menu Icon */
.menu-icon {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  order: 2;
}

.menu-icon span {
  width: 30px;
  height: 3px;
  background-color: #ffff80; /* Light yellow */
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
  html, body {
      background-color: #ffffff;
      max-width: 100%;
      overflow-x: hidden;
  }

  .nav-links {
      position: fixed;
      top: 70px;
      right: 0;
      flex-direction: column;
      background-color: #8e1717;
      width: 100%;
      display: none; /* Hide by default */
      justify-content: center;
      align-items: center;
  }

  .nav-links li {
      margin: 10px 0;
  }

  .nav-links.active {
      display: flex; /* Show the menu */
  }

  .menu-icon {
      display: flex;
  }

  /* Center the menu between the logo and sign-up button */
  .navbar {
      justify-content: space-between;
  }

  .menu-icon {
      order: 2;
      margin: 0 auto;
  }

  .sign-up-btn {
      order: 3;
  }
}




.partners-section {
    width: 90%;
    margin: 0 auto;
    padding: 50px 0;
}

/* Header Styles */
.partners-header {
    text-align: center;
    margin-bottom: 40px;
    background-color: #f0e7dd;
    text-align: left;
    padding: 20px;
}

.partners-header h1 {
    font-size: 2.5em;
    color: #7A1315;
    font-weight: bold;

}

.partners-header p {
    font-size: 1.2em;
    color: #444444;
    margin-top: 10px;
}

/* Partner Logos Styles */
.partners-logos {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background-color:#f0e7dd ;
}

.partner-logo-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.partner-logo-row img {
    max-width: 150px;
    max-height: 100px;
    object-fit: contain;
}

/* Responsive Design */
@media (max-width: 768px) {
    .partner-logo-row {
        flex-direction: column;
        align-items: center;
    }

    .partner-logo-row img {
        max-width: 120px;
        margin: 10px 0;
    }
}






/* Footer Container */
.footer {
    background-color: #862828;
    color: #f4d488;
    padding: 50px 35px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    border-radius: 80px 80px 0 0;
    text-align: center;
}

/* Left Section */
.footer-sec {
    max-width: 250px;
    text-align: left;
    color: #f4d488;
}

.footer-sec img.footer-logo {
    width: 100px;
    height: auto;
    margin-bottom: 10px;
}


.footer-sec p {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    
   
}

/* Contact Info and Dots Wrapper */
.contact-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    padding: 0 20px;
}

/* Adding white border on each side of contact-wrapper */
.contact-wrapper::before,
.contact-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 5px;
    background-color: #ffffff;
    border-radius: 2px;
}

.contact-wrapper::before {
    left: -15px;
}

.contact-wrapper::after {
    right: -15px;
}

/* Dot Sections */
.dots {
    display: flex;
    gap: 0px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.yellow {
    background-color: #f4d488;
    border: 1px solid;
}

.orange {
    background-color: transparent;
    border: 1px solid #ffffff;
}

.white {
    background-color: #ffffff;
    border: 1px solid #ffffff;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 200px;
    text-align: center;
}

.contact-info p {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

/* Right Section - Certifications */
.certification-info {
    max-width: 250px;
    text-align: center;
    color: #f4d488;
}

.certification-info h3 {
    font-size: 18px;
    margin: 0 0 10px;
    font-weight: bolder;
}

.certification-info p {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 10px;
   
}

.certification-images {
    display: flex;
    gap: 5px;
    justify-content: center;
}

.certification-images img {
    width: 90px;
    height: auto;
}

.footer-bottom {
background-color: #D2B260; /* Beige background */
color: #7C111E;
text-align: center;
padding: 10px 0;
margin-top: 0px;
font-size: 14px;
bottom: 0px;

}

.footer-bottom ul {
list-style: none;
padding: 0;
margin: 10px 0 0;
display: flex;
justify-content: center;
gap: 10px;
}

.footer-bottom ul li a {
color: #7C111E;
text-decoration: none;
}
/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        text-align: center;
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .contact-wrapper::before,
    .contact-wrapper::after {
        display: none;
    }

    .footer-sec, .contact-info, .certification-info {
        max-width: 100%;
        margin: 10px 0;
    }

    .certification-images img {
        width: 50px;
    }
}