body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "DM Sans", sans-serif;
}

a {
  text-decoration: none;
}

/* Navbar */
nav {
  background-color: #fff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 100px;
  position: relative;
  z-index: 100;
}

.logo {
  font-weight: 700;
  font-size: 22px;
  color: #001542;
  letter-spacing: 1px;
}

.menu-icon {
  font-size: 28px;
  cursor: pointer;
  display: none;
  color: #001542;
}

ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  list-style: none;
  transition: all 0.3s ease;
}

li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.CTA-btn {
  background-color: #001542;
  color: #fff;
  padding: 8px 15px;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

/* Extra Small Devices (≤576px) */
@media (max-width: 576px) {
  nav {
    padding: 10px 20px;
  }
  .menu-icon {
    display: block;
  }

  ul {
    position: absolute;
    top: 38px;
    left: 0;
    width: 60%;
    height: 100vh;
    flex-direction: column;
    align-items: start;
    justify-content: flex-start;
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    display: none;
  }

  ul.active {
    display: flex;
    padding: 30px;
  }

  li {
    margin-bottom: 10px;
  }

  .CTA-btn {
    width: 90%;
    text-align: center;
  }
}

/* Small Devices (≤768px) */
@media (max-width: 768px) {
  nav {
    padding: 10px 20px;
  }
  .logo {
    font-size: 20px;
  }

  .menu-icon {
    font-size: 24px;
  }
}

/* Medium Devices (≤992px) */
@media (max-width: 992px) {
  nav {
    padding: 10px 20px;
  }
  .logo {
    font-size: 21px;
  }

  .menu-icon {
    font-size: 26px;
  }
}

/* Large Devices (≤1200px) */
@media (max-width: 1200px) {
  .logo {
    font-size: 22px;
  }

  .menu-icon {
    font-size: 28px;
  }
}

/* Extra Large Devices (≤1400px) */
@media (max-width: 1400px) {
  .logo {
    font-size: 22px;
  }
}

.hero-containeR {
  background-color: #001542;
  margin: 20px 100px;
  border-radius: 8px;
  color: #fff;
  padding: 20px 100px;
  text-align: center;
}

/* Extra Small Devices (phones) */
@media (max-width: 575.98px) {
  .hero-containeR {
    margin: 20px 15px;
    padding: 20px 15px;
  }
}

/* Small Devices (≥576px and <768px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-containeR {
    margin: 25px 20px;
    padding: 20px 25px;
  }
}

/* Medium Devices (≥768px and <992px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-containeR {
    margin: 30px 40px;
    padding: 20px 40px;
  }
}

/* Large Devices (≥992px and <1200px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-containeR {
    margin: 30px 60px;
    padding: 20px 60px;
  }
}

/* Extra Large Devices (≥1200px) */
@media (min-width: 1200px) {
  .hero-containeR {
    margin: 30px 100px;
    padding: 20px 100px;
  }
}

/* checkout section */
.checkout {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  padding: 60px 100px;
}

.service-summary {
  width: 50%;
  background-color: #fff;
  padding: 30px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.service-summary h2 {
  font-size: 24px;
  font-weight: 600;
  color: #001542;
  margin-bottom: 20px;
}

.summary-details {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.detailS {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}

.details img {
  width: 200px;
  border-radius: 4px;
}

.info {
  flex: 1 1 300px;
  padding: 15px;
  background-color: #f8f8f8;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.info:hover {
  background-color: #eaeaea;
}

.info h3 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}

.info p {
  color: #555;
}

.info ul {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

.info ul {
  list-style-type: disc;
  padding-left: 20px;
}

.both {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* pricong summary */
.pricing-summary {
  width: 100%;
  max-width: 800px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.pricing-summary h3 {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
  /* text-align: center; */
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

.summary-item.total {
  font-weight: 600;
  color: #001542;
}

.summary-item:last-child {
  border-bottom: none;
}

/* Contact section */
.contact {
  width: 100%;
  min-width: 380px;
  padding: 30px;
  background-color: #fff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  border: 1px solid #ccc;
  margin: 10px auto;
  box-sizing: border-box;
}

.contact h3 {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
  /* text-align: center; */
}

.form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form input[type="text"],
.form input[type="email"],
.form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  outline: none;
  font-size: 14px;
  font-family: "Inter", sans-serif;
}

.form textarea {
  height: 100px;
  resize: none;
}

.form input[type="submit"] {
  background-color: #001542;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  font-family: "DM sans", sans-serif;
  transition: background-color 0.3s ease;
}

.form input[type="button"]:hover {
  background-color: #003080;
}

.additional-info {
  background-color: none;
  border: none;
  color: #003080;
  cursor: pointer;
  font-size: 16px;
  font-family: "DM sans", sans-serif;
}
#popup {
  position: absolute;
  top: 110px; /* Thoda neeche */
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: none;
  background: #fff;
  border: 1px solid #ddd;
  padding: 15px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  width: 280px;
  font-family: "DM Sans", sans-serif, Arial, sans-serif;
}

#popup textarea,
#popup input[type="text"] {
  width: 100%;
  outline: none;
  resize: none;
  border-radius: 6px;
  padding: 10px;
  border: 1px solid #ccc;
  font-size: 14px;
  font-family: inherit;
  box-sizing: border-box;
  margin-bottom: 12px;
  transition: border-color 0.3s ease;
}

#popup button[type="submit"] {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  width: 100%;
  font-family: "DM Sans", sans-serif, Arial, sans-serif;
  transition: background-color 0.3s ease;
}

#popup button[type="submit"]:hover {
  background-color: #0056b3;
}

/* Extra Small Devices (XS) */
@media (max-width: 575.98px) {
  .checkout {
    width: 100%;
    flex-direction: column;
    padding: 40px 20px;
  }

  .service-summary,
  .pricing-summary,
  .contact {
    min-width: 300px;
    padding: 20px;
  }

  .detailS {
    flex-direction: column;
  }

  .details img {
    display: flex;
    width: 150px;
    align-items: start;
  }
}

/* Small Devices (SM) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .checkout {
    flex-direction: column;
    padding: 50px 30px;
  }

  .service-summary,
  .pricing-summary,
  .contact {
    width: 100%;
  }

  .details img {
    width: 30px;
  }
}

/* Medium Devices (MD) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .checkout {
    flex-wrap: wrap;
    padding: 60px 50px;
  }

  .service-summary,
  .pricing-summary,
  .contact {
    width: 100%;
  }

  .detailS {
    flex-wrap: wrap;
  }
}

/* Large Devices (LG) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .checkout {
    padding: 60px 80px;
  }

  .service-summary {
    width: 60%;
  }

  .pricing-summary,
  .contact {
    width: 100%;
  }
}

/* footer section */
.footer-section {
  background-color: #001542;
  color: #eee;
  padding: 20px 15px;
  font-family: "inter", sans-serif;
  font-size: 14px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo h2 {
  margin: 0 0 5px;
  font-size: 1.6rem;
  color: #ffb30d;
}

.footer-logo p {
  margin: 0;
  font-size: 0.9rem;
  color: #ccc;
}

.footer-links h3,
.footer-social h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  color: #ffb30d;
}

.footer-links .ul {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links .ul li {
  margin-bottom: 8px;
}

.footer-links .ul li a {
  color: #eee;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links .ul li a:hover {
  color: #ffb30d;
}

.footer-social .social-icons {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
}

.footer-social .social-icons a {
  color: #eee;
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

.footer-social .social-icons a:hover {
  color: #ffb30d;
}

.footer-bottom {
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid #333;
  font-size: 0.85rem;
  color: #fff;
}

/* Small devices (SM) 576px and up */
@media (min-width: 576px) {
  .footer-section {
    padding: 30px 20px;
    font-size: 15px;
  }

  .footer-logo h2 {
    font-size: 24px;
  }

  .footer-links h3,
  .footer-social h3 {
    font-size: 24px;
  }

  .footer-social .social-icons {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

/* Medium devices (MD) 768px and up */
@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;

    justify-content: space-between;
    gap: 40px;
  }

  .footer-logo,
  .footer-links,
  .footer-social {
    flex: 1;
  }

  .footer-social .social-icons {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-logo h2 {
    font-size: 24px;
  }

  .footer-links h3,
  .footer-social h3 {
    font-size: 20px;
  }

  .footer-bottom {
    font-size: 0.9rem;
  }
}

/* Large devices (LG) 992px and up */
@media (min-width: 992px) {
  .footer-section {
    padding: 40px 50px;
    font-size: 16px;
  }

  .footer-logo h2 {
    font-size: 20px;
  }

  .footer-links h3,
  .footer-social h3 {
    font-size: 24px;
  }

  .footer-social .social-icons a {
    font-size: 1.6rem;
  }
}

/* Extra Large devices (XL) 1200px and up */
@media (min-width: 1200px) {
  .footer-section {
    padding: 50px 80px;
  }

  .footer-logo h2 {
    font-size: 24px;
  }

  .footer-links h3,
  .footer-social h3 {
    font-size: 22px;
  }
}

/* XXL devices 1400px and up */
@media (min-width: 1400px) {
  .footer-section {
    padding: 60px 120px;
  }

  .footer-logo h2 {
    font-size: 2.6rem;
  }

  .footer-links h3,
  .footer-social h3 {
    font-size: 1.8rem;
  }
}
