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;
}

nav 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: 5px;
  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;
  }

  nav 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 Section */

.hero-containeR {
  background-color: #001542;
  margin: 30px 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;
  }
}

/* Content section */

.content-section {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 60px 100px;
  gap: 20px;
  /* flex-wrap: wrap; */
}

.carousel-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  overflow: hidden;
}

.carousel-wrapper {
  width: 100%;
  overflow: hidden;
}

.carousel-images {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.carousel-images img {
  width: 100%;
  height: 400px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 4px;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  padding: 5px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}

button i {
  font-size: 30px;
}

.content-section h2 {
  margin-top: 40px;
}

.share-options {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.share-options button {
  padding: 10px 20px;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.share-options button:first-child {
  background-color: green; /* Green for Book Now */
  color: white;
}

.share-options button:last-child {
  background-color: #001542; /* Blue for Share */
  color: white;
}

.share-options button:hover {
  opacity: 0.9;
}

#shareBtn {
  background-color: #001542;
  color: #fff;
}

.share-options button i {
  font-size: 16px;
  margin-right: 10px;
}

.share-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.share-popup-content {
  background: white;
  padding: 20px 30px;
  border-radius: 4px;
  text-align: center;
  max-width: 300px;
  width: 90%;
}

.share-popup-content h3 {
  margin-bottom: 15px;
}

.social-icons a {
  font-size: 24px;
  margin: 0 10px;
  color: #001542;
  text-decoration: none;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #0077b5; /* example hover color */
}

#closePopup {
  margin-top: 20px;
  padding: 8px 15px;
  border: none;
  background: #001542;
  color: white;
  cursor: pointer;
  border-radius: 4px;
}

strong {
  font-family: "DM Sans";
}

/* Responsive Adjustments */

/* Extra Small Devices (phones) */
@media (max-width: 575.98px) {
  .content-section {
    flex-wrap: wrap;
    padding: 30px 15px;
  }

  .carousel-images img {
    height: 220px;
  }

  .share-options {
    flex-direction: row;
    align-items: stretch;
  }

  .share-options button {
    width: 100%;
  }
}

/* Small Devices (≥576px and <768px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .content-section {
    padding: 40px 20px;
  }

  .carousel-images img {
    height: 250px;
  }
}

/* Medium Devices (≥768px and <992px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .content-section {
    padding: 50px 40px;
  }

  .carousel-images img {
    height: 300px;
  }
}

/* Large Devices (≥992px and <1200px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .content-section {
    padding: 60px 70px;
  }

  .carousel-images img {
    height: 350px;
  }
}

/* XL and above use original values */
/* Pricing section */
.pricing {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 30px;
  width: 50%;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

/* Headings, buttons, details — no changes needed */
.pricing h2 {
  font-size: 22px;
  margin-bottom: 20px;
}

.tabs-btn {
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
  /* flex-wrap: wrap; */
}

.tabs-btn button {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  padding: 5px 10px;
  width: 100px;
  transition: background-color 0.3s, color 0.3s;
}

.tabs-btn button.active,
.tabs-btn button:hover {
  background-color: #001542;
  color: #fff;
  border-color: #001542;
}

.package-details h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.package-details p {
  margin-bottom: 15px;
  color: #555;
}

/* .package-details ul {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 15px;
  color: #333;
} */

.package-details li {
  margin-bottom: 6px;
}

.price {
  font-size: 20px;
  color: #001542;
  font-weight: 700;
  margin-bottom: 20px;
}

.pricing a {
  display: inline-block;
  background-color: #001542;
  color: #fff;
  border-radius: 4px;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  padding: 12px 10px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.pricing a:hover {
  background-color: #004080;
}

.icons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.icons i {
  font-size: 18px;
}

/* ✅ Responsive Media Queries */

/* Extra Small (XS) */
@media (max-width: 575.98px) {
  .pricing {
    width: 100%;
    padding: 20px;
  }
}

/* Small (SM) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .pricing {
    width: 100%;
    padding: 25px;
  }
}

/* Medium (MD) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .pricing {
    width: 90%;
    padding: 30px;
    margin: 0 auto;
  }
}

/* Large (LG) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .pricing {
    width: 70%;
  }
}

/* XL & XXL - original 50% width applies */
/* Detail Section */
.detail-section {
  padding: 60px 100px;
}

/* Author Detail Flex */
.own-detail {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}

.own-detail img {
  width: 75px;
  height: 75px;
  border-radius: 8px;
}

.own-detail h3 {
  font-size: 22px;
  font-weight: 700;
}

/* "What You Get" Section */
.what-you-get {
  margin-top: 70px;
}

.what-you-get h3 {
  font-size: 22px;
  font-weight: 700;
}

.what-you-get ul li {
  list-style-type: disc;
}

/* "Why You Should Choose" Section */
.what-you-should-choose {
  margin-top: 70px;
}

.what-you-should-choose h3 {
  font-size: 22px;
  font-weight: 700;
}

.what-you-should-choose ul li {
  list-style-type: disc;
}

/* ✅ Responsive Media Queries */

/* Extra Small (XS) */
@media (max-width: 575.98px) {
  .detail-section {
    padding: 40px 20px;
  }

  .own-detail {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .own-detail img {
    width: 60px;
    height: 60px;
  }

  .own-detail h3 {
    font-size: 18px;
  }

  .what-you-get h3,
  .what-you-should-choose h3 {
    font-size: 18px;
  }
}

/* Small (SM) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .detail-section {
    padding: 40px 30px;
  }

  .own-detail {
    flex-direction: column;
    align-items: flex-start;
  }

  .own-detail img {
    width: 65px;
    height: 65px;
  }

  .own-detail h3 {
    font-size: 20px;
  }

  .what-you-get h3,
  .what-you-should-choose h3 {
    font-size: 20px;
  }
}

/* Medium (MD) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .detail-section {
    padding: 50px 60px;
  }

  .own-detail img {
    width: 70px;
    height: 70px;
  }
}

/* Large (LG) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .detail-section {
    padding: 60px 80px;
  }
}

/* XL & XXL — original 60px 100px padding applies */
/* FAQs Section */
.faqs {
  display: flex;
  flex-direction: column;
  padding: 60px 100px;
  gap: 20px;
}

.faq-container {
  background-color: #f8f8f8;
  border-radius: 8px;
  padding: 10px 15px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.faq-container:hover {
  background-color: #ccc;
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faqHedaing {
  font-size: 18px;
  margin: 0;
}

.faq-icon {
  font-size: 22px;
  transition: transform 0.3s ease;
}

.faqPara {
  margin-top: 10px;
  display: none;
  transition: all 0.3s ease;
}

/* ✅ Responsive Media Queries */

/* Extra Small (XS) */
@media (max-width: 575.98px) {
  .faqs {
    padding: 40px 20px;
  }

  .faqHedaing {
    font-size: 16px;
  }

  .faq-icon {
    font-size: 20px;
  }

  .faq-container {
    padding: 8px 12px;
  }
}

/* Small (SM) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .faqs {
    padding: 40px 30px;
  }

  .faqHedaing {
    font-size: 17px;
  }

  .faq-icon {
    font-size: 21px;
  }

  .faq-container {
    padding: 9px 14px;
  }
}

/* Medium (MD) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .faqs {
    padding: 50px 60px;
  }
}

/* Large (LG) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .faqs {
    padding: 60px 80px;
  }
}

/* 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;
  }
}
