@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@500&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  padding-top: 80px;
}

.navbar {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 20px;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  position: relative;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  text-decoration: none;
  flex: 0 0 auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-right {
  flex: 0 0 auto;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links .inquiry-btn {
  display: none;
}

.nav-links a:hover {
  color: #ff3700;
}

.inquiry-btn {
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.inquiry-btn:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.active-link a {
  color: #ff3700;
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
  .nav-container {
    justify-content: space-between;
    position: relative;
  }

  .hamburger {
    display: flex;
    order: 1;
  }

  .logo {
    order: 2;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
  }

  .nav-right {
    display: none;
    /* Hide desktop inquiry button on mobile */
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: #fff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: left;
    padding-top: 20px;
    gap: 10px;
    transition: left 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    transform: none;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links li a {
    font-size: 18px;
    display: block;
    text-align: left;
    width: 100%;
    padding: 15px 25px;
  }

  .nav-links li a:hover {
    color: #0056b3;
    background-color: rgb(233, 233, 233);
  }

  .nav-links .inquiry-btn {
    display: inline-block;
    /* Show inquiry button in mobile menu */
    padding: 15px 30px;
    /* Reduced padding for smaller width */
    font-size: 18px;
    /* Slightly smaller font */
    color: #fff;
    margin: 0 20px;
    text-align: center;
  }

  .nav-links li:last-child {
    display: flex;
    justify-content: center;
    width: 100%;
  }
}


.about-section {
  padding: 40px 20px;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1300px;
  margin: auto;
  align-items: center;
  justify-content: center;
}

.about-image {
  flex: 1 1 40%;
  padding: 20px;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-content {
  flex: 1 1 45%;
  padding: 20px;
}

.about-title {
  font-size: 2rem;
  color: #000000;
  margin-bottom: 20px;
}

.about-paragraph {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 15px;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-content,
  .about-image {
    padding: 10px;
  }

  .about-title {
    font-size: 1.6rem;
  }
}


.vsm-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.vsm-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  align-items: center;
  justify-content: center;
}

.vsm-content {
  flex: 1 1 55%;
  padding: 20px;
}

.vsm-title {
  font-size: 2rem;
  color: #000000;
  margin-top: 20px;
  margin-bottom: 10px;
}

.vsm-paragraph {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
}

.vsm-image {
  flex: 1 1 40%;
  padding: 20px;
}

.vsm-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .vsm-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .vsm-content,
  .vsm-image {
    padding: 10px;
  }

  .vsm-title {
    font-size: 1.6rem;
  }
}

.innovation-section {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  background-color: #ffffff;
}

.innovation-card {
  max-width: 1200px;
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  position: relative;
}

.innovation-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;

  border-radius: 2px;
}

.innovation-title {
  font-size: 2rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.innovation-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
}

@media screen and (max-width: 768px){
  .innovation-title{
    font-size: 1.6rem;
  }
}


/*Footer*/

.footer {
    background: #3E8F88;
    color: white;
    padding: 40px 80px;
    position: relative;
    margin:0 auto;
    min-height: 75vh;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    justify-content: space-between;
  }
  
  .footer-section {
    flex: 1 1 220px;
    margin: 20px;
  }
  .about{
    line-height: 1.3;
    font-size: 1rem;
    color: rgb(225, 225, 225);
  }
  .footer-section h4 {
    margin-bottom: 15px;
    font-style: bold;
    font-size: 1.3rem;
    color: #ffffff;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li a {
    color: rgb(225, 225, 225);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
  }
  
 
  .footer-section .logo {
    height: 40px;
    margin-bottom: 10px;
  }
  

  .footer-section ul li a:hover {
    color: #f3ff10;
  }
  
   .footer-contact{
    font-size: 14px;
  }
  .footer-contact a{
    text-decoration:none;
    color: rgb(225, 225, 225);
  }
  .footer-contact a:hover{
    color: #f3ff10;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 18px;
    border-top: 1px solid #333;
    padding-top: 15px;
  }
  .footer-bottom p{
    margin-top: 20px;
  }
  .scroll-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 50%;
    font-size: 20px;
    display: none;
    transition: all 0.3s ease;
  }
  
  .scroll-top:hover {
    background-color: #0056b3;
  }

  .logo {
    height: 45px;
    width: auto;
    object-fit: contain;
  }
  
  @media screen and (max-width: 768px) {
    .footer {
      padding: 30px 40px;
      min-height: auto;
    }
  
    .footer-container {
      align-items: flex-start;
      padding: 10px;
    }
  
    .footer-section {
      margin: 20px 0;
      width: 100%;
    }
  
    .footer-bottom {
      font-size: 0.9rem;
      padding-top: 10px;
      margin-top: 20px;
    }
  }
  
  @media screen and (max-width: 480px) {
    .footer {
      padding: 20px;
    }
    .about{
      margin-top: 50px;
    }
    .footer-section .logo {
      display: block;
    }
    
  }
  