* {
    margin: 2px;
    padding: 2px;
    box-sizing: border-box;
    text-decoration: none;
}

.wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

body {
    font-family: Calibri, sans-serif;
}
/*Navbar*/
.navbar {
    background-color: white;
    padding: 8px 30px;
    box-shadow: 5px 5px 5px 5px rgba(0,0,0,0.1);
}

.navdiv {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .logoi img {
    height: 80px;       /* Smaller height */
    width: 130px;        /* Smaller width */
    margin-left: 25px;   /* Remove extra margin */
    transform: translateX(-30px); /* Move left */
    box-shadow: 0px 0px 0px 0px rgb(255, 254, 254);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 45px;
    list-style: none;
}

.nav-links li a {
    color: navy;
    font-size: 26px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: darkgreen;
}

.contact-btn {
    background-color: #f1d102;
    padding: 8px 16px;
    border-radius: 20px;
    color: black !important;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: background 0.3s ease;
}

.contact-btn:hover {
    background-color: #d4bb00;
}


#menu-toggle {
  display: none;
}

/* Hide hamburger on desktop */
.hamburger {
  display: none;
}

/* Responsive Menu Styles */
@media (max-width: 768px) {
  .navdiv {
    flex-wrap: wrap;
  }

  .hamburger {
    display: block;
    font-size: 30px;
    color: navy;
    cursor: pointer;
    padding: 10px;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: white;
    margin-top: 10px;
    padding: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  /* Show menu only when checkbox is checked */
  #menu-toggle:checked ~ .hamburger + .nav-links {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    padding: 10px 20px;
  }

  .nav-links li a {
    display: block;
    font-size: 18px;
    width: 100%;
  }

  .contact-btn {
    margin: 10px 20px 0;
  }

  .logo img {
    height: 50px;
    width: auto;
  }
}

/* Our Customer */



.heads {
  display: flex;
  text-align: center;
  justify-content: center;
  max-width: 1300px;   /* changed from fixed width to max-width */
  width: 90%;          /* allow scaling on smaller screens */
  height: 140px;
  margin: 50px auto;
  padding: 40px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  font-size: 22px;
}

h1 {
  text-align: center;
  margin-top: 2px;
  margin-bottom: 20px;
  color: #333;
}

.company-wrapper {
  background: #fff;
  padding: 50px 60px; 
  border-radius: 12px;
  box-shadow: 0 6px 10px hsla(180, 3%, 64%, 0.829);
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1300px;   
  margin: 40px auto 40px auto; 
  width: 90%; 
}

.company-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.logo img {
  width: 140px; 
  height: auto;
  border-radius: 6px;
  margin-left: 10px;
  transform: translateX(+30px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.logo img:hover {
  transform: translateX(30px) scale(1.05); 
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); 
}

.purpose {
  flex: 1;
  text-align: center;
  font-weight: bold;
  font-size: 20px; 
  color: #333;
  transform: translateX(+140px); 
}

.locations {
  flex: 1;
  text-align: left;
  font-size: 20px;
  color: #555;
  line-height: 1.6;
  margin-left: 20px;
  transform: translateX(+230px); 
}

@media (max-width: 1200px) {
  .purpose {
    transform: translateX(+100px);
  }

  .locations {
    transform: translateX(+200px);
  }
}

@media (max-width: 992px) {
  .company-wrapper {
    padding: 40px 30px;
  }

  .company-row {
    flex-direction: column; 
    gap: 30px;
    text-align: center;
  }

  .logo img {
    width: 110px;
  }

  .purpose,
  .locations {
    transform: none;
    margin-left: 0;
    text-align: center;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 24px;
  }

  .purpose,
  .locations {
    font-size: 18px;
  }

  .company-wrapper {
    width: 95%;
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 20px;
  }

  .logo img {
    width: 90px;
  }

  .purpose,
  .locations {
    font-size: 16px;
  }
}



/* footer */
.main-footer {
  background-color: #4a4a4a;
  color: #fff;
  padding: 40px 20px 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-section {
  flex: 1 1 200px;
  min-width: 220px;
}

.footer-section h3 {
  margin-bottom: 15px;
  font-size: 26px;
  color: #fff;
}

.footer-section p,
.footer-section li,
.footer-section a {
  font-size: 20px;
  color: #ccc;
  line-height: 1.6;
  text-align: justify;
}

.about-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.about-link:hover h3 {
  color: #d86060; /* Optional hover effect */
}

.about-link:hover p {
  color: #d86060; /* Optional hover effect for paragraph */
}

.footer-section:nth-child(2),
.footer-section:nth-child(3) {
  margin-left: -190px; /* Adjust as needed */
  margin-left: 220px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li a {
  text-decoration: none;
  color: #ccc;
  transition: 0.3s;
}

.footer-section ul li a:hover {
  color: #fff;
}

.social-icons a {
  color: #fff;
  margin-right: 10px;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #00aced;
}

.footer-section.subscribe form {
  display: flex;
  flex-direction: column;
}

.footer-section.subscribe input {
  padding: 10px;
  margin-bottom: 10px;
  border: none;
  border-radius: 4px;
}

.footer-section.subscribe button {
  padding: 10px;
  background-color: #2ecc71;
  border: none;
  color: #fff;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

.footer-section.subscribe button:hover {
  background-color: #27ae60;
}

.footer-bottom {
  background-color: #2d2d2d;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  color: #ccc;
  font-size: 14px;
}

.footer-links a {
  color: #ccc;
  margin-left: 20px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

/* ✅ Responsive Design */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-section {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-links a {
    margin: 0 10px;
  }
}