.logo {
  font-weight: bold;
  font-size: 1.2rem;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: none;
  background-color: rgba(47, 44, 44, 0.587);
  height: 60px;
}

.about-us {
  padding: 60px 20px;
  background-color: #ffffff;
  margin-top: 40px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.about-text {
  flex: 1 1 500px;
  padding-right: 20px;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.1rem;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 15px;
}

.about-image {
  flex: 1 1 400px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Responsive */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .about-image {
    flex: 0px;
  }
}

.footer {
  background-color: #0b0c10;
  color: #ffffff;
  padding: 60px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-about,
.footer-links,
.footer-contact {
  flex: 1 1 300px;
}

.footer h3,
.footer h4 {
  margin-bottom: 15px;
  color: #00bcd4;
}

.footer p,
.footer li,
.footer a {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.6;
  text-decoration: none;
}

.footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-about,
  .footer-links,
  .footer-contact {
    padding-bottom: 20px;
  }

  .footer-about,
  .footer-links,
  .footer-contact {
    flex: 0px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  font-family: Arial, sans-serif;
  height: 100%;
}

header {
  height: 100vh;
  color: black;

  position: relative;
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: none;
}

.logo {
  font-weight: bold;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: black;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.hamburger,
.close-icon {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: black;
}

.hamburger .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 4px;
  background-color: black;
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    width: 200px;
    height: 100vh;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    padding-top: 30px;
  }

  .nav-links.active {
    transform: translateX(0%);
  }

  .hamburger {
    display: block;
  }

  .close-icon {
    display: none;
  }

  .close-icon.show {
    display: block;
  }
}

/* ... previous styles ... */

.hamburger,
.close-icon {
  display: none;
}

/* Only show hamburger under 768px */
@media (max-width: 768px) {
  .hamburger {
    display: block;
    z-index: 1001;
    color: black;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    height: 100%;
    width: 250px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
  }

  .nav-links li {
    margin: 20px 0;
  }

  .nav-links.active {
    transform: translateX(0%);
  }

  .close-icon {
    position: fixed;
    top: 20px;
    right: 30px;
    display: none;
    font-size: 30px;
    cursor: pointer;
    z-index: 1001;
  }

  .close-icon.show {
    display: block;
    color: white;
  }

  .nav-links a {
    font-size: 1.2rem;
    color: white;
  }
}

.contact-section {
  width: 100%;
  background-color: #1c1c1c;
  color: white;
  font-family: 'Segoe UI', sans-serif;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.contact-left,
.contact-right {
flex: 1 1 50%;
    height: 368px;
    min-width: 300px;
}

.contact-box {
  background-color: #0095e8;
  padding: 40px 30px;
  margin: auto;
  height: 600px;
}

.contact-box h2 {
  font-size: 36px;
  color: white;
  margin-bottom: 20px;
}

.contact-box p {
  font-size: 15px;
  margin-bottom: 10px;
  color: white;
}

.contact-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-left,
  .contact-right {
    flex: 1 1 100%;
  }

  .contact-box {
    text-align: center;
    padding: 30px 20px;
    text-align: center;
    padding: 30px 20px;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    height: auto;
  }
}


.main-footer {
  background-color: #0095e8;
  color: white;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
}

.footer-contact,
.footer-social {
  flex: 1 1 300px;
  margin: 15px;
}

.footer-contact h3,
.footer-social h3 {
  color: black;
  margin-bottom: 15px;
}

.footer-contact p,
.footer-social a {
  margin: 6px 0;
  font-size: 15px;
}

.footer-contact a {
  color: #ffffff;
  text-decoration: underline;
}

.social-icons a {
  display: inline-block;
  color: black;
  background: white;
  margin-right: 10px;
  padding: 10px;
  border-radius: 50%;
  font-size: 16px;
  transition: 0.3s ease;
  text-align: center;
  width: 40px;
}

.social-icons a:hover {
  background: #e65c00;
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #444;
  padding-top: 15px;
  font-size: 14px;
  color: white;
}

/* Responsive */
@media (max-width: 600px) {
  .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  .footer-contact,
  .footer-social {
      margin: 10px 0;
  }

  .footer-contact,
  .footer-social {
      flex: 0;
  }
}