:root {
  --primary-color: #1c54a2;
  --bg-color: #f4f6fa;
  --footer-color: #173b6f;
  --text-color: #274669;
}

body {
  font-family: "Poppins", sans-serif !important;
  overflow-x: hidden !important;
}

.navbar-brand img {
  height: 120px;
}

.navbar-nav .nav-link {
  color: var(--text-color);
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.topbar {
  padding: 60px 80px;
  overflow-y: hidden;
  display: flex;

}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.3;
}

.hero-img-container {
  max-width: 700px;
  width: 100%;
  position: absolute;
  top: 120;
  right: 40px;
  overflow-y: hidden;
}

.hero-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.topbar-left {
  position: relative;
}

/* circle-img */
.circle-1 {
  position: absolute;
  /* bottom: 47px; */
  left: -34px;
}

.circle-2 {
  position: absolute;
  /* bottom: -213px; */
  left: 298px;
  bottom: 200px;
}

.circle-3 {
  position: absolute;
  top: 145px;
  left: 185px;
}












.about-wave {
  position: relative;
  top: 50px;
  height: 988.85px;
  display: flex;
  justify-content: center;
  align-items: center;

}

.about-wave-img {
  position: absolute;
  top: 40px;
  max-width: 100%;
  width: 100%;
  height: 100%;
}

.about-wave-img img {
  width: 100%;
  height: 100%;
}

.abt-content {
  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 50px;
}

.about-card {
  margin-bottom: 50px;

}

.about-card-title {
  color: #fff;
  font-size: 65px;
  font-weight: 700;
  margin-bottom: 20px;

}

.about-card-para {
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
  font-weight: 300;
  margin-bottom: 60px;
}

.abt-key-title {
  color: #fff;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 20px;

}

.abt-key-list {
  list-style: none;
  margin-left: -40px;
}

.abt-key-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.abt-key-item img {
  margin-right: 10px;
  width: 20px;
  height: 20px;
}

.abt-key-item p {
  color: #fff;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 20px;
  font-weight: 300;
}

.about-chip-img {
  margin-top: -60px;
  max-width: 444px;
  width: 100%;
  height: 554px;
}

.about-chip-img img {
  width: 100%;
  height: 100%;
}

.product-wrap {
  position: relative;
  margin-bottom: 150px;
}

.product-wrap h2 {
  font-size: 50px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-align: center;
}

.product-wrap p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 60px;
  font-weight: 300;
  color: var(--text-color);
  text-align: center;
}

.product-img {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  max-width: 550px;
  width: 100%;
  height: 250px;
  margin: 0 auto;

}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;

}

.product-bottom-img {
  position: absolute;
  max-width: 1900px;
  width: 100%;
  top: 242px;
  z-index: -5;
  height: 415px;

}

.product-bottom-img img {
  width: 100%;
  height: 100%;

}

.map-container {
  width: 100%;
  height: 550px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* .contact{
 margin-bottom: 220px;
} */


.contact-wrap {
  position: relative;
  height: 800px;
}


.contact-top-img {
  width: 100%;
  height: auto;
}

.contact-top-img img {
  width: 100%;
  height: auto;

}

.contact-content {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  display: flex;
  /* justify-content: space-between; */
  gap: 50px;
  flex-wrap: wrap;
}


.contact-info {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-bottom: 5px solid #003366;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center
}

.info-card .icon {
  font-size: 28px;
  margin-bottom: 10px;
}

/* .contact-form {
  width: 48%;
  display: flex;
  flex-direction: column;
  gap: 15px;
} */

.contact-form {
  max-width: 550px;
  width: 100%;
  display: block;
}


.form-group {
  margin-bottom: 20px;
}


.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 500;

}


.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  background: #fff;
  outline: none;
  box-shadow: 0 4px 12px #DFE4EC;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}


.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #003366;
  box-shadow: 0 4px 14px #d0d6dd;
}


.contact-form button {
  background-color: #003366;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 30px;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #005599;
}


.site-footer {
  background-color: #074a9c;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}


.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 40px;
}



.footer-logo {
  width: 150px;
  margin-bottom: 20px;
}


.footer-social a {
  display: inline-block;
  margin-right: 12px;
}

.footer-social img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.footer-nav {
  list-style: none;
  padding: 0;
}

.footer-nav li {
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid #fff;
  list-style: none;
  width: 50%;
}

.footer-nav a {
  color: white;
  text-decoration: none;
  font-size: 15px;
  display: block;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #d1e3ff;
}


.footer-map {
  width: 100%;
  height: 180px;
  border: 0;
  border-radius: 8px;
}


.footer-contact p {
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: 200;

}

.footer-contact img {
  width: 25px;

}

/* BOTTOM BAR */
.footer-bottom {
  background-color: #043a7a;
  text-align: center;
  padding: 15px;
  font-size: 14px;
  color: #d3d3d3;
}


.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}



@media (max-width: 1600px) {
  .hero-img-container {
    max-width: 600px;
  }

  .about-card-title {
    font-size: 40px;
  }

  .about-chip-img {
    width: 350px;
    height: 400px;
  }

  .circle-3 {
    left: 99px;
  }
}

@media (max-width: 1200px) {
  .hero-img-container {
    right: 0px;
    max-width: 400px;
  }

  .hero-title {
    font-size: 40px;
  }

  .about-card-title {
    font-size: 30px;
  }
  .circle-2 {
    position: absolute;
    bottom: -80px;
   
}
}

@media (max-width:991px) {
  .hero-img-container {
    right: 0px;
    max-width: 320px;
  }

  .hero-title {
    font-size: 35px;
  }

  .about-wave {
    /* display: flex;
    flex-direction: column-reverse;
    height: auto; */
    /* margin-bottom: 250px; */
  }

  .about-wave-img {
    height: 800px;
    object-fit: cover;
  }

  .about-card {
    margin-top: -105px;
  }

  .abt-content {
    /* flex-direction: column-reverse; */
    margin-top: -63px;
  }

  .about-chip-img {
    width: 240px;
    height: 200px;
    position: absolute;
    bottom: 327px;
    margin-left: 492px;
  }

  .contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .contact-wrap {
    margin-bottom: 250px;
    height: 1074px;
  }

  .contact-info {
    width: 100%;
  }

  .abt-key-title {
    font-size: 25px;
    /* color: var(--primary-color); */
  }

  .abt-key-item p {
    font-size: 15px;
    margin-bottom: 0px;
    /* color: var(--primary-color); */
  }

  .circle-2 {
    left: 140px;
  }

  .about-card-para {
    width: 70%;
  }

}

@media (max-width:768px) {
  .topbar .row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero-img-container {
    right: 0px;
    width: 200px;
  }

  .hero-title {
   font-size: 30px;
        margin-top: 112px;
  }

  .abt-content {
    margin-top: -200px !important;
  }

  .product-img {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    justify-content: center;
    width: 200px;
    margin-top: 110px;
  }

  .about-wave-img {
    display: none;
  }

  .abt-key-title {
    font-size: 20px;
    color: var(--primary-color);
  }

  .abt-key-item p {
    font-size: 15px;
    margin-bottom: 0px;
    color: var(--primary-color);
  }

  .about-card-title {
    color: var(--primary-color);
  }

  .about-card-para {
    color: var(--primary-color);
  }

  .about-chip-img {
    width: 250;
        height: 150;
    position: static;
    display: flex;
    justify-content: center;
    margin-bottom: 200px;
    margin: auto;
  }

  .abt-content .row {
    display: flex;
    flex-direction: column-reverse;
    gap: 50px;
  }

  .about-card {
    margin-top: 0px
  }

  .topbar .row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .footer-nav li{
    width: 20%;
  }
      .circle-2 img {
        position: absolute;
        bottom: 8px;
        /* width: 60px; */
    }
/* .circle-1 img{
  width: 40px;
} */
.circle-3 img{
  width: 80px;
}
}

@media (max-width: 600px) {
  .hero-title {
        font-size: 25px;
        margin-top: 120px;
        /* text-align: left; */
        margin-left: -55px;
    }
.hero-img-container {
    width: 200px;
}

.captcha-box {
  flex-shrink: 0;
}


.g-recaptcha {
  transform: scale(0.95);
  transform-origin: top right;
}
}

@media (max-width: 992px) {
  .footer-row {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .footer-col {
    text-align: center;
  }

  .footer-contact p {
    text-align: left;
  }

  .footer-map {
    height: 220px;
  }
}

/* Modal Background */
.modal {
  display: block;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

/* Modal Container */
.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 40px;
  border-radius: 30px 30px 30px 30px;
  width: 90%;
  max-width: 900px;
  position: relative;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.2);
}

/* Close Button */
.close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 28px;
  cursor: pointer;
}

/* Headings */
.subtitle {
  color: #555;
  text-align: center;
  font-size: 14px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.modal-heading {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #003c88;
  margin-bottom: 30px;
}

/* Form Layout */
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-row {
  display: flex;
  gap: 20px;
}

.input-row input {
  flex: 1;
}

input,
textarea {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  border: none;
  background-color: #f1f1f1;
  border-radius: 8px;
  box-shadow: 0 0 0 1px #dfe4ec;
  resize: none;
}

textarea {
  height: 120px;
}

/* Note and Captcha */
.form-note {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

.form-note p {
  flex: 1;
  font-size: 14px;
  color: #333;
}

.captcha-placeholder {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #ccc;
  padding: 8px 12px;
  border-radius: 6px;
  background-color: #fff;
}

.captcha-img img {
  height: 20px;
}

/* Submit Button */
.submit-btn {
  margin-top: 20px;
  background-color: #003c88;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  width: 180px;
  align-self: flex-end;
  transition: 0.3s ease;
}

.submit-btn:hover {
  background-color: #0050b3;
}

/* Responsive */
@media (max-width: 768px) {
  .input-row {
    flex-direction: column;
  }

  .submit-btn {
    width: 100%;
    align-self: center;
  }

  .form-note {
    flex-direction: column;
  }
}

.modal {
  display: none; /* hidden by default */
  position: fixed; 
  z-index: 1000; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%;
  overflow: auto; 
  background-color: rgba(0,0,0,0.5); /* translucent background */
}

.modal-content {
  background-color: #fff;
  margin: 10% auto; /* 10% from top and centered */
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  position: relative;
}

.modal .close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
