* {
    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 .logo img {
    height: 80px;       /* Smaller height */
    width: 130px;        /* Smaller width */
    margin-left: 25px;   /* Remove extra margin */
    transform: translateX(-30px); /* Move left */
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
}

.nav-links li a {
    color: navy;
    font-size: 20px;
    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;
}

/* Hamburger icon */
.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;
  flex-wrap: wrap; /* allows wrapping on small screens */
}

.logo img {
  height: 60px; 
  width: 100px;
  margin-left: 25px;
  transform: translateX(-30px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 45px;
  list-style: none;
  margin: 0;
  padding: 0;
  
}

.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;
}

/* Responsive: Stack menu items vertically */
/* Hide the checkbox but keep it functional */
#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;
  }
}

/* form */

.contact-container {
  display: flex;
  /* max-width: 1100px; */
  /* margin: auto; */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  background: white;
  border-radius: 10px;
  overflow: hidden;
  margin: 100px auto; /* top/bottom center-aligned */
  /* padding: 30px; */
  max-width: 1000px; /* optional for centering */
}

.left-box {
   background: #00d084;
  color: white;
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 10px;
}

.left-box h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.left-box p {
  font-size: 20px;
  margin-bottom: 30px;
  line-height: 1.5;
}

.info {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.info i {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  line-height: 38px;
  text-align: center;
  margin-right: 15px;
  font-size: 18px;
}

.right-box {
  flex: 2;
  padding: 40px;
}

.right-box h2 {
  margin-bottom: 25px;
  font-size: 28px;
}

form {
  width: 100%;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  gap: 20px;
}

.field {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.full {
  flex: 1 1 100%;
}

label {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 6px;
  color: #111;
}

input, textarea {
  padding: 10px;
  border: none;
  border-bottom: 1px solid #ccc;
  outline: none;
  font-size: 15px;
  background: transparent;
  resize: none;
}

button {
  background: #00d084;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

button:hover {
  background: #00b671;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    margin: 50px 20px;
  }

  .left-box, .right-box {
    padding: 25px;
    border-radius: 0;
  }

  .left-box {
    border-radius: 10px 10px 0 0;
  }

  .right-box {
    border-radius: 0 0 10px 10px;
  }

  .row {
    flex-direction: column;
  }

  .field, .full {
    width: 100%;
  }

  .left-box h2,
  .right-box h2 {
    font-size: 22px;
  }

  .left-box p {
    font-size: 16px;
  }

  .info i {
    font-size: 16px;
    width: 34px;
    height: 34px;
    line-height: 34px;
  }

  button {
    width: 100%;
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .left-box h2,
  .right-box h2 {
    font-size: 20px;
  }

  .left-box p,
  label,
  input,
  textarea {
    font-size: 14px;
  }

  .info i {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
  }

  .contact-container {
    margin: 30px 10px;
  }
}


/*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: 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;
  }
}
@media (max-width: 480px) {
  .footer-section h3 {
    font-size: 20px;
  }

  .footer-section p,
  .footer-section li,
  .footer-section a {
    font-size: 16px;
  }

  .footer-bottom {
    font-size: 12px;
  }

  .footer-links a {
    display: block;
    margin: 5px 0;
  }
}