/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
  }
  .topbar-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000; /* Dark background to match */
    z-index: 1000; /* Ensures it stays on top */
  }
  
  /* Prevent header from being overlapped */
  .header-offset {
    margin-top: 50px; /* Adjust to match the height of the top bar */
  }
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  /* Header styles */
  header {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: fixed;
    top: 0;
      left: -1px;
      width: 100%;
    z-index: 1000; /* Ensures it's above other elements */
  }
  
  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    margin-top: -1%;
    display: flex;
    align-items: center;
    gap: -14px;
    flex-direction: column;
  }
  
  
  .logo-text{
    margin-left: 11%;
    font-size: -19px;
    margin-top: -12%;
  
  }
  
  .logo-text h1 {
    color: #f97316;
    font-size: 1rem;
    font-weight: bold;
    width: 113%;
  }
  
  .logo-text p {
    font-size: 0.875rem;
    color: #516096;
    width: 114%;
  }
  
  /* Navigation styles */
  .nav-container {
    position: relative;
  }
  
  .nav-toggle {
    display: none;
  }
  
  .nav-toggle-label {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
  }
  
  .nav-toggle-label span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #333;
    transition: all 0.3s ease;
  }
  
  nav {
    display: flex;
    gap: 2rem;
  }
  
  nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  nav a:hover {
    color: #f97316;
  }
  
  nav a.active {
    color: #f97316;
  }


@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}



.about-us {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.5); /* White with 50% transparency */
  border-radius: 10px;
  box-shadow:3px 3px 3px 4px rgba(0,0,0,1.1);
  margin-top: 16%;
  position: relative;
  z-index: 1;
}



.about-us h2 {
  color: #e86c3a;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.about-us h2:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #e86c3a;
}

.about-us p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #080505;
}

/* Vision Mission Section */
.vision-mission {
    display: flex;
    justify-content: space-between;
    max-width: 1244px;
    margin: 30px auto;
    padding: 40px 20px;
    gap: 40px;
}
.vision, .mission {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  background: rgba(255, 255, 255, 0.5); /* Semi-transparent white */
  border-radius: 10px;
  box-shadow:3px 3px 3px 4px rgba(0,0,0,1.1);
  transition: transform 0.3s ease;
}

/* Ensure text remains solid */
.vision h3, .mission h3, .vision p, .mission p {
  color: #0c0a0a;
  opacity: 1; /* Prevent text from becoming transparent */
}


.icon {
    font-size: 32px;
    margin-bottom: 15px;
    color: #e86c3a;
}

.vision h3, .mission h3 {
  color: #e86c3a;
    margin-bottom: 15px;
    font-size: 20px;
}

.vision h3:hover, .mission h3:hover {
 
  margin-bottom: 15px;
  font-size: 20px;
}



/* .footer-address */
.footer-address {
  background: linear-gradient(to right, #000000, rgb(131 42 51));
  padding: 40px 20px;
  margin-top: auto;
  color: white;
}

.footer-address-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-address-logo img {
    height: 40px;
    margin-bottom: 10px;
    filter: brightness(0) invert(1);
}

.contact-info {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
}


/* Footer styles */
.footer {
  padding: 1.5rem 1rem;
  background-color: #000000;
  border-top: 1px solid #e9ecef;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}

.copyright {
  color: #6c757d;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-link {
  color: #6c757d;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.social-icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-link:hover {
  color: #343a40;
}

.contact-info:hover {
  transform: translateY(-5px);
  box-shadow:10px 10px 5px  #e9ecef;
}



/* Large Screens (1200px and above) */
@media (min-width: 1200px) {
  .container {
      max-width: 1140px;
      margin: 0 auto;
  }
  .about-us {
    width: 95%;
    padding: 30px;
    margin-top: 16%;
}

}

/* Desktop (992px to 1199px) */
@media (max-width: 1199px) {
  .nav-toggle-label {
      display: flex;
    }
  
    .logo-text h1 {
      color: #f97316;
      font-size:15px;
      font-weight: bold;
    }
    
  .logo-text p {
    font-size: 11px;
    color: #666;
  }
  
  /* Header styles */
  header {
    margin-top: 0;
  }
    nav {
      display: none;
      position: absolute;
      top: 100%;
      right: 0;
      background: white;
      width: 200px;
      flex-direction: column;
      padding: 1rem;
      gap: 1rem;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      border-radius: 0 0 0.5rem 0.5rem;
    }
  
    .nav-toggle:checked ~ nav {
      display: flex;
    }
  
    .nav-toggle:checked + .nav-toggle-label span:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
    }
  
    .nav-toggle:checked + .nav-toggle-label span:nth-child(2) {
      opacity: 0;
    }
  
    .nav-toggle:checked + .nav-toggle-label span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }
  
  .container {
      max-width: 960px;
      margin: 0 auto;
  }
  .about-us {
    width: 95%;
    padding: 30px;
    margin-top: 16%;
}
  .footer-address-content {
      grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet Landscape (768px to 991px) */
@media (max-width: 991px) {
  .nav-toggle-label {
      display: flex;
    }
  
    .logo-text h1 {
      color: #f97316;
      font-size:15px;
      font-weight: bold;
    }
    
  .logo-text p {
    font-size: 11px;
    color: #666;
  }
  
  /* Header styles */
  header {
    margin-top: 0;
      width: 101%;
  
  }
    nav {
      display: none;
      position: absolute;
      top: 100%;
      right: 0;
      background: white;
      width: 200px;
      flex-direction: column;
      padding: 1rem;
      gap: 1rem;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      border-radius: 0 0 0.5rem 0.5rem;
    }
  
    .nav-toggle:checked ~ nav {
      display: flex;
    }
  
    .nav-toggle:checked + .nav-toggle-label span:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
    }
  
    .nav-toggle:checked + .nav-toggle-label span:nth-child(2) {
      opacity: 0;
    }
  
    .nav-toggle:checked + .nav-toggle-label span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }
  
  .container {
      max-width: 720px;
  }
  
  .nav-links {
      gap: 10px;
  }
  
  .nav-links a {
      padding: 6px 12px;
      font-size: 14px;
  }
  .about-us {
    width: 95%;
    padding: 30px;
    margin-top: 23%;
}
  .vision-mission {
      padding: 30px 15px;
      gap: 20px;
  }
  
  .footer-address-content {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
  }
}

/* Tablet Portrait (576px to 767px) */
@media (max-width: 767px) {
  .nav-toggle-label {
      display: flex;
    }
  
    .logo-text h1 {
      color: #f97316;
      font-size:15px;
      font-weight: bold;
    }
    
  .logo-text p {
    font-size: 11px;
    color: #666;
  }
  
  /* Header styles */
  header {
    margin-top: 0;
  }
    nav {
      display: none;
      position: absolute;
      top: 100%;
      right: 0;
      background: white;
      width: 200px;
      flex-direction: column;
      padding: 1rem;
      gap: 1rem;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      border-radius: 0 0 0.5rem 0.5rem;
    }
  
    .nav-toggle:checked ~ nav {
      display: flex;
    }
  
    .nav-toggle:checked + .nav-toggle-label span:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
    }
  
    .nav-toggle:checked + .nav-toggle-label span:nth-child(2) {
      opacity: 0;
    }
  
    .nav-toggle:checked + .nav-toggle-label span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }
  
  .top-bar {
      flex-direction: column;
      gap: 10px;
      text-align: center;
      padding: 10px;
  }
  
  nav {
      flex-direction: column;
      gap: 15px;
      text-align: center;
  }
  
  .logo {
      align-items: center;
  }
  
  .nav-links {
      flex-wrap: wrap;
      justify-content: center;
  }
  
  .vision-mission {
      flex-direction: column;
      gap: 30px;
  }
  
  
  .footer-address-content {
      grid-template-columns: 1fr;
      text-align: center;
  }
  
  .footer-address-logo, .contact-info {
      align-items: center;
  }
  .footer-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding: 0 0.5rem;
}


.copyright{
font-size: 0.8rem;;
}

}





/* Mobile (575px and below) */
@media (max-width: 700px) {
  .nav-toggle-label {
      display: flex;
    }
  
    .logo-text h1 {
      color: #f97316;
      font-size:15px;
      font-weight: bold;
    }
    
  .logo-text p {
    font-size: 11px;
    color: #666;
  }
  
  /* Header styles */
  header {
    margin-top: 0;
  }
    nav {
      display: none;
      position: absolute;
      top: 100%;
      right: 0;
      background: white;
      width: 200px;
      flex-direction: column;
      padding: 1rem;
      gap: 1rem;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      border-radius: 0 0 0.5rem 0.5rem;
    }
  
    .nav-toggle:checked ~ nav {
      display: flex;
    }
  
    .nav-toggle:checked + .nav-toggle-label span:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
    }
  
    .nav-toggle:checked + .nav-toggle-label span:nth-child(2) {
      opacity: 0;
    }
  
    .nav-toggle:checked + .nav-toggle-label span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }
  
  .top-bar {
      padding: 8px;
  }
  
  .social-icons {
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
  }
  
  .logo img {
      height: 40px;
  }
  
  .tagline {
      font-size: 10px;
  }
  
  .nav-links a {
      padding: 5px 10px;
      font-size: 13px;
  }
 
  
  .about-us {
    width: 95%;
    padding: 30px;
    margin-top: 28%;
  }
  
  .about-us h2 {
      font-size: 20px;
      color: black;
  }

  
  .vision h3, .mission h3 {
      font-size: 18px;
  }
  
  .vision p, .mission p {
      font-size: 14px;
  }
  
  .footer-address-content {
      gap: 25px;
  }
  
  .contact-info {
      padding: 15px;
  }
  .footer-address .header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-address .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
}

.footer-address .logo img {
    width: 80%; /* Adjust size as needed */
    max-width: 32%; /* Ensuring it doesn't get too large */
}

.footer-address .contact-info {
    text-align: center;
}


.copyright{
font-size: 0.8rem;;
}
}
@media (max-width:500px){
  .about-us {
   
    margin-top: 32%;
}
}
@media (max-width: 400px) {
  body{
   width: 97%;
  } 
 /* Header styles */
 header {
   margin-top: 0%;
   width: 101%;
   height: 15%;
   margin-left: -2%;
 }

 .about-us {
  width: 95%;
  /* color: #f97316; */
  padding: 30px;
  margin-top: 44%;
 }
 .about-us p {
  line-height: 1.8;
  margin-bottom: 15px;
  color: #080505;
  FONT-SIZE: 15PX;
 }

   .container, .container-md, .container-sm {
     max-width: 100%;
 }
 
   .container-quality {
     flex-direction: column-reverse;
 }

  .footer-address .header-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  .footer-address .logo {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 15px;
  }

  .footer-address .logo img {
      width: 80%; /* Adjust size as needed */
      max-width: 32%; /* Ensuring it doesn't get too large */
  }

  .footer-address .contact-info {
      text-align: center;
  }
  .copyright {
    font-size: 12px;
  }


 
}
 
/* Extra Small Devices (320px and below) */
@media (max-width: 340px) {
  .nav-toggle-label {
      display: flex;
    }
  
    .logo-text h1 {
      color: #f97316;
      font-size:15px;
      font-weight: bold;
    }
    
  .logo-text p {
    font-size: 11px;
    color: #666;
  }
  
  /* Header styles */
  header {
    margin-top: 0%;
  }
    nav {
      display: none;
      position: absolute;
      top: 100%;
      right: 0;
      background: white;
      width: 200px;
      flex-direction: column;
      padding: 1rem;
      gap: 1rem;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      border-radius: 0 0 0.5rem 0.5rem;
    }
  
    .nav-toggle:checked ~ nav {
      display: flex;
    }
  
    .nav-toggle:checked + .nav-toggle-label span:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
    }
  
    .nav-toggle:checked + .nav-toggle-label span:nth-child(2) {
      opacity: 0;
    }
  
    .nav-toggle:checked + .nav-toggle-label span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }
  
  .nav-links a {
      padding: 4px 8px;
      font-size: 12px;
  }
  
 
  .about-us {
      margin-top: 40%;
  }
  
  .about-us h2 {
      font-size: 18px;
  }
  
  .vision h3, .mission h3 {
      font-size: 16px;
  }
  
  .vision p, .mission p {
      font-size: 13px;
  }
  
  .footer-address-content {
      gap: 20px;
  }

  .footer-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding: 0 0.5rem;
}


.copyright{
font-size: 0.8rem;;
}
}