@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Base responsive settings */
html {
  font-size: 100%; /* Base font size for responsive typography */
  scroll-behavior: smooth;
}

/* Responsive typography breakpoints */
@media (max-width: 1200px) {
  html {
    font-size: 95%;
  }
}

@media (max-width: 992px) {
  html {
    font-size: 90%;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 85%;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 80%;
  }
}

@media (max-width: 350px) {
  html {
    font-size: 75%;
  }
}

/* Variables for consistent styling */
:root {
  --primary-color: #9569dd;
  --text-dark: #111827;
  --text-light: #6b7280;
  --white: #ffffff;
  --max-width: 1200px;
  
  /* Font sizes */
  --big-font-size: 2.5rem;
  --h1-font-size: 2rem;
  --h2-font-size: 1.5rem;
  --h3-font-size: 1.25rem;
  --normal-font-size: 1rem;
  --small-font-size: 0.875rem;
  --smaller-font-size: 0.75rem;
  
  /* Font weights */
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;
  
  /* Spacing */
  --mb-0-5: 0.5rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  
  /* z-index */
  --z-tooltip: 10;
  --z-fixed: 100;
  --primary-font: 'Poppins', sans-serif;
}

/* Responsive typography */
@media screen and (min-width: 968px) {
  :root {
    --big-font-size: 3.5rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.75rem;
    --h3-font-size: 1.5rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.813rem;
  }
}

/* Fixed header and navbar styling */
nav {
  position: fixed;
  width: 100%;
  z-index: var(--z-fixed);
  background-color: var(--white);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav__header {
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Fixed logo size regardless of screen size */
.nav__logo {
  display: flex;
  align-items: center;
  column-gap: .5rem;
  height: 50px; /* Fixed height container */
}

.nav__logo img:first-child {
  width: 50px; /* Fixed width */
  height: 50px; /* Fixed height */
  object-fit: contain;
  flex-shrink: 0; /* Prevent shrinking */
}

.nav__logo img:last-child {
  height: 35px; /* Fixed height */
  max-width: 180px;
  object-fit: contain;
}

/* Mobile navigation */
.nav__menu__btn {
  font-size: 1.5rem;
  cursor: pointer;
}

.nav__links {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background-color: var(--white);
  transition: 0.3s;
  z-index: 10;
  transform: translateY(-100%);
  padding-right: 2rem;
  /* box-shadow: 0 2px 5px rgba(0,0,0,0.1); */
}

.nav__links.open {
  transform: translateY(0);
}

/* Home section styling */
.header__container {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 70px; /* Space for fixed navbar */
  max-width: var(--max-width);
  margin: 0 auto;
}

.header__content h1 {
  font-size: var(--big-font-size);
  line-height: 1.2;
  margin-bottom: var(--mb-1);
}

.header__content p {
  font-size: var(--normal-font-size);
  line-height: 1.6;
  margin-bottom: var(--mb-2);
}

/* Responsive sections */
.section__container {
  margin: auto;
  padding: 3rem 1rem;
  max-width: 1000px;
  width: 100%;
}

.section__header {
  font-size: var(--h1-font-size);
  font-weight: var(--font-semi-bold);
  line-height: 1.3;
  margin-bottom: var(--mb-2);
  text-align: center;
}

/* Grid layouts for services, destinations, etc */
.service__grid,
.destination__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service__card,
.destination__card {
  border-radius: 0.5rem;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service__card:hover,
.destination__card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* Comprehensive Footer with Multiple Breakpoints */
.footer {
  background-color: #f8f9fa;
  padding: 60px 0 30px;
  margin-top: 60px;
  width: 100%;
}

.footer-container {
  max-width: 1400px;
  width: 95%;
  margin: 0 auto;
  display: grid;
  gap: 30px;
  padding: 0 20px;
}

/* Common footer styling */
.footer-logo img,
.footer-container > div:first-child img {
  max-width: 220px;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.footer h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.95rem;
}

.footer ul li a:hover {
  color: var(--primary-color);
}

.contact-info p {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  color: var(--text-light);
  font-size: 0.95rem;
}

.contact-info i {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 1rem;
  min-width: 20px;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icons:hover{
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: transform 0.3s, background-color 0.3s;
}

.social-icons a:hover {
  transform: translateY(-3px);
  color: white;
}

.address-info p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-map iframe {
  width: 100%;
  height: 220px;
  border-radius: 10px;
  overflow: hidden;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  padding-bottom: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-bottom p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.developer-link {
  color: var(--text-light);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
  margin-top: 5px;
}

.developer-link:hover {
  color: var(--primary-color);
}

/* Developer attribution styling */
.developer-attribution {
    text-align: center;
  margin-top: 8px;
    font-size: 0.9rem;
  color: var(--text-light);
}

.developer-attribution a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.developer-attribution a:hover {
  text-decoration: underline;
}

/* ========== RESPONSIVE BREAKPOINTS ========== */

/* Extra large screens (1400px and up) */
@media (min-width: 1400px) {
  .footer-container {
    grid-template-columns: 1fr 1.2fr 1fr 1fr 1.2fr;
    gap: 40px;
  }
  
  .footer-logo img,
  .footer-container > div:first-child img {
    max-width: 250px;
  }
  
  .footer-map iframe {
    height: 240px;
  }
}

/* Large screens (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .footer-container {
    grid-template-columns: 1fr 1.2fr 1fr 1fr 1.2fr;
    gap: 35px;
  }
}

/* Medium-large screens (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .footer-container {
    grid-template-columns: 1fr 1.2fr 1fr 1fr 1fr;
    gap: 25px;
  }
  
  .footer h4 {
    font-size: 1.1rem;
  }
  
  .footer ul li a {
    font-size: 0.9rem;
  }
  
  .contact-info p,
  .address-info p {
    font-size: 0.9rem;
  }
  
  .footer-map iframe {
    height: 210px;
  }
}

/* Medium screens (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .footer {
    padding: 50px 0 30px;
  }
  
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
  
  /* Logo column */
  .footer-container > div:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }
  
  /* Links column */
  .footer-container > div:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }
  
  /* Contact column */
  .footer-container > div:nth-child(3) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }
  
  /* Address column */
  .footer-container > div:nth-child(4) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }
  
  /* Map column - full width */
  .footer-container > div:nth-child(5) {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
  }
  
  .footer-logo img,
  .footer-container > div:first-child img {
    max-width: 200px;
  }
}

/* Small tablets (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  .footer {
    padding: 45px 0 25px;
  }
  
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 25px;
  }
  
  /* Logo column - centered, full width */
  .footer-container > div:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  /* Links column */
  .footer-container > div:nth-child(2) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }
  
  /* Contact column */
  .footer-container > div:nth-child(3) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }
  
  /* Address column */
  .footer-container > div:nth-child(4) {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }
  
  /* Map column */
  .footer-container > div:nth-child(5) {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
  }
  
  .footer h4 {
    font-size: 1.05rem;
    margin-bottom: 15px;
  }
  
  .footer ul li {
    margin-bottom: 8px;
  }
  
  .footer ul li a,
  .contact-info p,
  .address-info p {
    font-size: 0.85rem;
  }
  
  .footer-map iframe {
    height: 180px;
  }
}

/* Mobile (481px - 575px) */
@media (min-width: 481px) and (max-width: 575px) {
  .footer {
    padding: 40px 0 20px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  /* All columns stacked */
  .footer-container > div {
    text-align: center;
  }
  
  /* Center logo */
  .footer-container > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-logo img,
  .footer-container > div:first-child img {
    margin: 0 auto 15px;
  }
  
  /* Center contact info */
  .contact-info p {
    justify-content: center;
  }
  
  /* Center social icons */
  .social-icons {
    justify-content: center;
  }
  
  .footer-map iframe {
    height: 200px;
  }
  
  .footer h4 {
    font-size: 1.15rem;
    margin-bottom: 16px;
  }
  
  .footer ul li a,
  .contact-info p,
  .address-info p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .footer ul li {
    margin-bottom: 10px;
  }
  
  .contact-info i {
    font-size: 1.1rem;
  }
  
  .footer-bottom p {
    font-size: 0.95rem;
  }
  
  .developer-link {
    font-size: 0.9rem;
  }
}

/* Small mobile (400px - 480px) */
@media (min-width: 400px) and (max-width: 480px) {
  .footer {
    padding: 35px 0 20px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 15px;
  }
  
  .footer-logo img,
  .footer-container > div:first-child img {
    max-width: 180px;
  }
  
  .footer h4 {
    font-size: 1.1rem;
    margin-bottom: 14px;
  }
  
  .footer ul li {
    margin-bottom: 8px;
  }
  
  .footer ul li a,
  .contact-info p,
  .address-info p {
    font-size: 0.92rem;
    line-height: 1.5;
  }
  
  .social-icons a {
    width: 36px;
    height: 36px;
  }
  
  .contact-info i {
    font-size: 1.05rem;
    min-width: 22px;
  }
  
  .footer-bottom p {
    font-size: 0.9rem;
  }
  
  .developer-link {
    font-size: 0.88rem;
  }
}

/* Very small mobile (300px - 399px) */
@media (min-width: 300px) and (max-width: 399px) {
  .footer {
    padding: 30px 0 15px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
  }
  
  .footer-logo img,
  .footer-container > div:first-child img {
    max-width: 160px;
    margin-bottom: 10px;
  }
  
  .footer h4 {
    font-size: 1.05rem;
    margin-bottom: 12px;
    font-weight: 600;
  }
  
  .footer ul li {
    margin-bottom: 8px;
  }
  
  .footer ul li a,
  .contact-info p,
  .address-info p {
    font-size: 0.9rem;
    line-height: 1.45;
  }
  
  .contact-info i {
    font-size: 1rem;
    margin-right: 8px;
  }
  
  .social-icons {
    gap: 10px;
  }
  
  .social-icons a {
    width: 34px;
    height: 34px;
  }
  
  .footer-bottom p {
    font-size: 0.85rem;
  }
  
  .developer-link {
    font-size: 0.82rem;
  }
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: var(--primary-font);
}

.section__container {
  margin: auto;
  padding: 3rem 1rem;
  max-width: 1000px;
  width: 100%;
}

 @media screen and (min-width: 1200px) {
  .section__container {
    padding: 4rem 2rem;
  }
} 

@media screen and (min-width: 1400px) {
  .section__container {
    padding: 5rem 2.5rem;
  }
} 

/* .testimonials__container {
  margin: auto;
  padding: 2rem 1rem 4rem;
  max-width: 1200px;
  position: relative;
} */

.about__container {
  margin: auto;
  padding-top: 7.5rem;
  padding-bottom: 1.7rem;
  padding-inline: 1rem;
  max-width: 1100px;
}

.section__subheader {
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
  text-align: center;
}

.section__header {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 3.75rem;
  color: var(--text-dark);
  text-align: center;
}

.logo {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-dark);
}

.logo span {
  color: var(--primary-color);
}

img {
  display: flex;
  width: 100%;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

ul {
  list-style: none;
}

html,
body {
  scroll-behavior: smooth;
  font-family: var(--primary-font);
}

nav {
  position: fixed;
  isolation: isolate;
  width: 100%;
  margin-inline: auto;
  z-index: 9;
}

.nav__header {
  padding: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--white);
}

.nav__logo{
  text-transform: uppercase;
  display: flex;
  font-weight: 700;
  letter-spacing: -1px;
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
  transition: .3s;
}
.nav__logo img {
  display: block;
  height: auto;
}

.nav__logo img:first-child {
  width: 80px; /* Adjust size for the square image */
  height: 50px; /* Maintain square aspect ratio */
  object-fit: contain; /* Ensure proper fit for non-square images */
}

.nav__logo img:last-child {
  width: auto; /* Adjust width automatically for the rectangle image */
  height: 35px; /* Consistent height for better alignment */
  object-fit: contain; /* Preserve aspect ratio for the name logo */
}

@media screen and (max-width: 767px) {
  .nav__logo img:first-child {
    width: 60px;
    height: 40px;
  }

  .nav__logo img:last-child {
    height: 25px;
  }
}

.nav__logo-icon{
  font-size: 1.15rem;
  color: var(--first-color);
}

.nav__logo:hover{
  color: var(--first-color);
}


.nav__logo .logo {
  color: var(--white);
}

.nav__menu__btn {
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
}

.nav__links {
  position: absolute;
  top: 65px;
  left: 0;
  width: 100%;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  background-color: var(--white);
  transition: 0.5s;
  z-index: -1;
  transform: translateY(-100%);
}

.nav__links.open {
  transform: translateY(0);
}

.nav__links a {
  font-weight: 500;
  white-space: nowrap;
  color: var(--text-dark);
}

.nav__links a:hover {
  color: var(--primary-color);
}

.header__container {
  display: grid;
  gap: 4rem;
  overflow: hidden;
}

.header__image img {
  max-width: 750px;
  margin-inline: auto;
}

.header__content .section__subheader {
  font-size: 1.2rem;
  color: var(--primary-color);
}

.header__content h1 {
  margin-bottom: 1rem;
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 4rem;
  color: var(--text-dark);
  text-align: center;
}

.header__content p {
  margin-bottom: 2rem;
  line-height: 2rem;
  color: var(--text-light);
  text-align: center;
}

.header__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.header__btns .btn {
  padding: 1rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  color: var(--white);
  background-color: #9569dd;
  border-radius: 5px;
  cursor: pointer;
}

.header__btns a {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
  transition: 0.3s;
  color: #FFFFFF;
}

.header__btns a:hover {
  color: var(--text-dark);
}

.header__btns a span {
  padding: 6px 12px;
  font-size: 1.5rem;
  color: var(--white);
  background-color: var(--primary-color);
  box-shadow: 2px 2px 20px rgba(224, 105, 81, 0.5);
  border-radius: 100%;
}


.header__socials {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Apply styles only on smaller screens */
@media (max-width: 768px) {
  .header__socials {
    flex-direction: row;  /* Stack items vertically */
    justify-content: center; /* Center vertically */
  }
}

.header__socials a {
  padding: 8px 12px;
  font-size: 1.25rem;
  color: var(--text-dark);
  border-radius: 100%;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
  background-color: #fae6f8;
}

.header__socials a:hover {
  color: var(--white);
  background-color: var(--primary-color);
}

.button{
  display: inline-block;
  background-color: var(--primary-color);
  color: #FFFFFF;
  padding: 1rem 1.75rem;
  border-radius: .5rem;
  font-weight: var(--font-medium);
  transition: .3s;
  
}

.button--flex{
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
}

.service__grid {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
}

.service__card {
  padding: 2rem 1rem;
  text-align: center;
  border-radius: 2rem;
  transition: 0.3s;
}

.service__card:hover {
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
}

.service__card img {
  margin-bottom: 2rem;
  max-width: 100px;
  margin-inline: auto;
}

.service__card h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.service__card p {
  color: var(--text-light);
}

@media (max-width: 480px) { /* Adjust breakpoint as needed */
  .service__card p {
    display: none;
  }
}

.destination__grid {
  margin-top: 4rem;
  display: grid;
  gap: 1rem;
}

.destination__card {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
  
}

.destination__details {
  padding: 1rem 1.5rem;
}

.destination__details > div {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.destination__details h4 {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-light);
}

.destination__details p {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  color: var(--text-light);
}

.destination__details p span {
  font-size: 1.25rem;
  color: var(--text-dark);
  transform: rotateY(180deg);
}

.trip__container {
  display: grid;
  gap: 2rem;
  overflow: hidden;
}

.trip__image img {
  max-width: 425px;
  margin-inline: auto;
}

.trip__list {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  gap: 2rem;
}

.trip__list li {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trip__list li span {
  padding: 8px 15px;
  font-size: 1.75rem;
  color: var(--white);
  border-radius: 1rem;
}

.trip__list li:nth-child(1) span {
  background-color: #9569dd;
}

.trip__list li:nth-child(2) span {
  background-color: #088d8e;
}

.trip__list li:nth-child(3) span {
  background-color: #9569dd;
}

.trip__list li:nth-child(4) span {
  background-color: #088d8e;
}

.trip__list h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.trip__list p {
  color: var(--text-light);
}


.explore__container {
  display: grid;
  gap: 2rem;
  overflow: hidden;
}

.explore__image img {
  max-width: 400px;
  margin-inline: auto;

}

.explore__content .section__description {
  margin-bottom: 2rem;
  color: var(--text-light);
}

.explore__btn {
  text-align: center;
}

.client__container {
  padding-bottom: 3rem;
  display: grid;
  gap: 1.5rem 3.5rem;
}


/* Swiper Container */
.swiper {
  width: 100%;
  overflow: hidden;
  padding-bottom: 33rem;
}

/* Swiper Slide */
.swiper-slide {
  height: auto;
  transition: opacity 0.3s;
}

/* Testimonial Cards Styling */
.client__card {
  background-color: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(149, 105, 221, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(149, 105, 221, 0.1);
  padding-bottom: 0.6rem;
}

.client__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(149, 105, 221, 0.2);
}

/* Add a decorative quote icon */
.client__card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 5rem;
  line-height: 1;
  font-family: serif;
  color: rgba(149, 105, 221, 0.1);
  z-index: 0;
}

.client__card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.client__ratings {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.client__ratings i {
  color: #FFD700;
  font-size: 1rem;
}

.client__card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-light);
  font-style: italic;
  position: relative;
  z-index: 1;
}

/* Responsive Swiper Slide Widths */
@media screen and (min-width: 768px) {
  .swiper-slide {
    width: 45% !important; /* Show 2 slides on medium screens */
  }
}

@media screen and (min-width: 1200px) {
  .swiper-slide {
    width: 35% !important; /* Show exactly 3 slides on large screens */
  }
}

/* Fixed Slider Styles */
.slider-container {
  margin: auto;
  padding: 1rem 1rem;
  max-width: 1000px;
  overflow: hidden;
}

.slider-wrapper {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.slider {
  display: flex;
  width: 100%;
  overflow: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.slider img {
  flex: 0 0 100%;
  width: 100%;
  height: auto;
  object-fit: cover;
  scroll-snap-align: start;
  display: block; /* Ensure images are block elements */
}

/* Hide scrollbar */
.slider::-webkit-scrollbar {
  display: none;
}

.slider {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

/* Slider navigation dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  z-index: 10;
}

.slider-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

/* Slider arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.8);
  color: var(--primary-color);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  z-index: 10;
  transition: all 0.3s ease;
}

.slider-prev {
  left: 1.5rem;
}

.slider-next {
  right: 1.5rem;
}

.slider-arrow:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Fade effect for slider */
.slider-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  z-index: 5;
  pointer-events: none;
}

/* Responsive adjustments */
@media screen and (max-width: 576px) {
  .client__card {
    padding: 1.5rem;
  }
  
  .slider-arrow {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }
  
  .slider-prev {
    left: 0.5rem;
  }
  
  .slider-next {
    right: 0.5rem;
  }
}

@media screen and (max-width: 350px) {
  .client__card {
    padding: 1.25rem;
  }
  
  .client__card h4 {
    font-size: 1.1rem;
  }
  
  .client__card p {
    font-size: 0.85rem;
  }
  
  .slider-dots {
    bottom: 1rem;
    gap: 0.5rem;
  }
  
  .slider-dot {
    width: 0.5rem;
    height: 0.5rem;
  }

}

.footer{
  background-color: #FFEDFD;
}

.section__footer__container {
  margin: auto;
  padding: 2rem 1rem;
  max-width: 1300px;
}

.footer__container {
  display: grid;
  gap: 3rem;
}

.footer__col{
  margin-left: 0.8rem;
}

.footer__col p {
  margin-top: 1rem;
  color: var(--text-light);
}

.footer__col h4 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
}

.footer__links {
  display: grid;
  gap: 1rem;
}

.footer__links a {
  font-weight: 500;
  color: var(--text-light);
}

.footer__links a:hover {
  color: var(--primary-color);
}

.footer__socials {
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__socials a {
  padding: 8px 12px;
  font-size: 1.25rem;
  color: var(--text-dark);
  border-radius: 100%;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.footer__socials a:hover {
  color: white;
  background-color: var(--primary-color);
}

.footer__col h5 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-light);
}

.footer__discover {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__discover img {
  max-width: 120px;
  border-radius: 1rem;
}

.footer__bar {
  padding: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: center;
}


.container {
  margin: 0 auto;
  padding: 4rem;
  width: 48rem;
}

@media screen and (max-width: 768px) {
  .container {
    padding: 2rem;
    width: 100%;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 3rem;
    width: 40rem;
  }
}

@media screen and (min-width: 1025px) and (max-width: 1200px) {
  .container {
    padding: 3.5rem;
    width: 44rem;
  }
}

@media screen and (min-width: 1201px) {
  .container {
    padding: 4rem;
    width: 48rem;
  }
}

.accordion {
  .accordion-item {
    border-bottom: 1px solid;
    button[aria-expanded='true'] {
      border-bottom: 1px solid;
    }
  }
  button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 0;
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
    &:hover, &:focus {
      cursor: pointer;
      &::after {
        cursor: pointer;
        border: 1px solid;
      }
    }
    .accordion-title {
      padding: 1em 1.5em 1em 0;
      font-family: "Poppins", sans-serif;
    }
    .icon {
      display: inline-block;
      position: absolute;
      top: 23px;
      right: 0;
      width: 22px;
      height: 22px;
      /* border: 1px solid; */
      /* border-radius: 22px; */
      &::before {
        display: block;
        position: absolute;
        content: '';
        top: 9px;
        left: 5px;
        width: 10px;
        height: 2px;
        background: currentColor;
      }
      &::after {
        display: block;
        position: absolute;
        content: '';
        top: 5px;
        left: 9px;
        width: 2px;
        height: 10px;
        background: currentColor;
      }
    }
  }
  button[aria-expanded='true'] {
    .icon {
      &::after {
        width: 0;
      }
    }
    + .accordion-content {
      opacity: 1;
      max-height: 15em;
      transition: all 200ms linear;
      will-change: opacity, max-height;
    }
  }
  .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
    p {
      font-size: 1rem;
      font-weight: 300;
      margin: 2em 0;
    }
  }
}



@media (width > 360px) {
  .service__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .destination__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .destination__details {
    padding: 0.6rem 0.6rem;
}

  .destination__details h4 {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-light);
  }

  .footer__container {
    grid-template-columns: repeat(1, 1fr);
  }

  .footer__col:nth-child(4) {
    grid-area: 2/1/3/2;
  }
}

@media (width > 480px) {
  .service__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .destination__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .destination__details h4 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__col:nth-child(4) {
    grid-area: 2/1/3/2;
  }
}

@media (width > 540px) {
  .service__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .destination__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .destination__details h4 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__col:nth-child(4) {
    grid-area: 2/1/3/2;
  }
}

@media (width > 768px) {
  nav {
    position: fixed;
    padding-block: 1rem 0;
    padding-inline: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background-color: white;
    margin-bottom: 1rem;
  }

  .nav__header {
    padding: 5;
    background-color: white;
  }

  .nav__logo .logo {
    color: var(--text-dark);
  }

  .nav__menu__btn {
    display: none;
  }

  .nav__links {
    position: static;
    padding: 0;
    flex-direction: row;
    justify-content: flex-end;
    gap: 4rem;
    background-color: white;
    transform: none;
  }

  .nav__links a {
    color: var(--text-dark);
  }

  .header__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .header__image {
    grid-area: 1/2/2/3;
  }

  .header__content :is(.section__subheader, h1, p) {
    text-align: left;
  }

  .header__btns {
    justify-content: flex-start;
  }

  .service__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .destination__grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .trip__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .trip__image {
    grid-area: 1/2/2/3;
  }

  .trip__content :is(.section__subheader, .section__header) {
    text-align: left;
  }

  .explore__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .explore__content .section__header {
    max-width: 500px;
  }

  .explore__content :is(.section__header, .section__description),
  .explore__btn {
    text-align: left;
  }


  .client__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .client__content :is(.section__subheader, .section__header) {
    text-align: left;
  }

  .footer__container {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer__col:nth-child(4) {
    grid-area: unset;
  }
}

@media (width > 1024px) {
  .service__grid {
    gap: 2rem;
  }

  .service__card {
    padding: 2rem;
  }

  .destination__grid {
    gap: 2rem;
  }
}


.slider-container {
	padding: 2rem;
}

.slider-wrapper {
	position: relative;
	max-width: 48rem;
	margin: 0 auto;
}

.slider {
	display: flex;
	aspect-ratio: 16 / 9;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, 0%, 0%, 0.25);
	border-radius: 0.5rem;
	-ms-overflow-style: none; /* Hide scrollbar IE and Edge */
	scrollbar-width: none; /* Hide scrollbar Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.slider::-webkit-scrollbar {
	display: none;
}

.slider img {
	flex: 1 0 100%;
	scroll-snap-align: start;
	object-fit: cover;
}

.slider-nav {
	display: flex;
	column-gap: 1rem;
	position: absolute;
	bottom: 1.25rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}

.slider-nav a {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background-color: #fff;
	opacity: 0.75;
	transition: opacity ease 100ms;
}

.slider-nav a:hover {
	opacity: 1;
}

/* Media queries for larger screens */
@media screen and (min-width: 1200px) {
  .section__container,
  .about__container {
    max-width: 1200px; /* Increased from 1000px */
    padding-inline: 2rem;
  }
  
  .section__header {
    font-size: 3rem;
  }
  
  .explore__content .section__header {
    font-size: 2.75rem;
  }
  
  .explore__content .section__description {
    font-size: 1.1rem;
    line-height: 1.8;
  }
}

@media screen and (min-width: 1400px) {
  .section__container,
  .about__container {
    max-width: 1320px; /* Even larger for very big screens */
    padding-inline: 2.5rem;
  }
  
  .explore__container,
  .trip__container {
    column-gap: 4rem; /* More space between columns */
  }
  
  /* Larger images and text for better visual hierarchy */
  .explore__image img,
  .trip__image img,
  .header__image img {
    max-width: 100%;
  }
  
  .section__description,
  .header__content p {
    font-size: 1.15rem;
    line-height: 1.8;
  }
}

/* For ultra-wide screens */
@media screen and (min-width: 1800px) {
  .section__container,
  .about__container {
    max-width: 1500px;
  }
  
  body {
    font-size: 18px; /* Slightly larger base font for readability */
  }
  
  .section__header {
    font-size: 3.5rem;
  }
  
  .header__content h1 {
    font-size: 3.25rem;
  }
}

/* Enhanced grid layouts for larger screens */
@media screen and (min-width: 1200px) {
  .service__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
  }
  
  .destination__grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
  }
}

/* Enhanced Testimonials Section */
.testimonials__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 4;
  overflow: hidden; /* Hide overflow */
  margin-bottom: 2rem;
}

.testimonials__wrapper {
  width: 100%;
  position: relative;
}

.swiper {
  width: 100%;
  padding: 8 12rem;
}

.swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.swiper-slide {
  height: auto;
  flex-shrink: 0;
  opacity: 1 !important; /* Ensure all visible slides are fully opaque */
}

.client__card {
  background: #fff;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  height: 100%;
  margin: 1.5rem 0.5rem;
}

/* Hide navigation on desktop since we want to show exactly 3 slides */
@media (min-width: 1024px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
  
  .swiper {
    padding: 0;
  }
  
  .swiper-slide {
    width: calc(100% / 3) !important;
  }
}

/* Tablet view */
@media (min-width: 768px) and (max-width: 1023px) {
  .swiper-slide {
    width: 50% !important; /* Show exactly 2 slides */
  }
}

/* Mobile view */
@media (max-width: 767px) {
  .swiper-slide {
    width: 100% !important; /* Show exactly 1 slide */
  }
}

/* Navigation buttons */
.swiper-button-next,
.swiper-button-prev {
  background: var(--primary-color);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: white;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1rem;
}

/* Pagination */
.swiper-pagination {
  position: relative;
  margin-top: 2rem;
}

.swiper-pagination-bullet {
  background: var(--primary-color);
}

/* Responsive settings */
@media (max-width: 767px) {
  .client__card {
    padding: 1.5rem;
  }
  
  .testimonials__container {
    padding: 1rem;
  }
}

/* Increase footer logo size */
.footer-logo img,
.footer img,
.footer-container > div:nth-child(1) img {
  max-width: 220px; /* Increased from 180px */
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  display: block;
}

/* Ensure proper spacing around the larger logo */
.footer-logo,
.footer-container > div:nth-child(1) {
  padding-right: 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Add some breathing room below the logo on mobile */
@media (max-width: 768px) {
  .footer-logo img,
  .footer img,
  .footer-container > div:nth-child(1) img {
    max-width: 250px; /* Even larger on mobile */
    margin: 0 auto 25px;
  }
}

/* Enhanced Navbar Styling */
.navbar {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 0;
  transition: all 0.3s ease;
}

.navbar-container {
  max-width: 1400px;
  width: 95%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
}

/* Logo styling */
.navbar-logo {
  display: flex;
  align-items: center;
  margin-left: 1.5rem; /* Added left margin */
}

.navbar-logo img {
  max-height: 55px;
  width: auto;
  transition: all 0.3s ease;
}

/* Navigation links */
.navbar-links {
  display: flex;
  align-items: center;
  margin-right: 1.5rem; /* Added right margin */
}

.navbar-links ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem; /* Added more spacing between links */
}

.navbar-links li {
  position: relative;
}

.navbar-links li a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 0;
  display: inline-block;
  transition: color 0.3s ease;
  position: relative;
}

/* Beautiful underline effect */
.navbar-links li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.navbar-links li a:hover {
  color: var(--primary-color);
}

.navbar-links li a:hover::after {
  width: 100%;
}

/* Active link styling */
.navbar-links li a.active {
  color: var(--primary-color);
}

.navbar-links li a.active::after {
  width: 100%;
}

/* Hamburger menu */
.hamburger {
  display: none;
  cursor: pointer;
  margin-right: 1.5rem;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 1010;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--text-dark);
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
  top: 0px;
}

.hamburger span:nth-child(2),
.hamburger span:nth-child(3) {
  top: 8px;
}

.hamburger span:nth-child(4) {
  top: 16px;
}

.hamburger.active span:nth-child(1),
.hamburger.active span:nth-child(4) {
  opacity: 0;
}

.hamburger.active span:nth-child(2) {
  transform: rotate(45deg);
  background: var(--primary-color);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  background: var(--primary-color);
}

/* Responsive behavior - keep functionality intact */
@media (max-width: 991px) {
  .navbar-container {
    padding: 0.5rem 0;
  }
  
  .navbar-logo {
    margin-left: 1rem;
  }
  
  .navbar-logo img {
    max-height: 50px;
  }
  
  .navbar-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background-color: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    transition: right 0.4s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    margin-right: 0;
    z-index: 1005;
  }
  
  .navbar-links.active {
    right: 0;
  }
  
  .navbar-links ul {
    flex-direction: column;
    width: 100%;
    gap: 1.2rem;
  }
  
  .navbar-links li {
    width: 100%;
  }
  
  .navbar-links li a {
    display: block;
    padding: 0.5rem 0;
    font-size: 1.1rem;
  }
  
  /* Add overlay when mobile menu is active */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

/* Small screens */
@media (max-width: 576px) {
  .navbar-logo img {
    max-height: 45px;
  }
  
  .navbar-container {
    width: 100%;
    padding: 0.5rem 0;
  }
  
  .navbar-logo {
    margin-left: 0.8rem;
  }
  
  .hamburger {
    margin-right: 0.8rem;
  }
  
  .navbar-links {
    width: 80%;
    padding: 5rem 1.5rem 2rem;
  }
}

/* Very small screens (300px - 399px) */
@media (max-width: 399px) {
  .navbar-logo img {
    max-height: 40px;
  }
  
  .navbar-links {
    width: 85%;
    padding: 5rem 1.2rem 2rem;
  }
  
  .navbar-links li a {
    font-size: 1rem;
  }
}

/* Increase overall font size for mobile */
@media (max-width: 767px) {
  body {
    font-size: 16px; /* Base font size increased */
  }
  
  /* Headings */
  h1 {
    font-size: 2rem;
    line-height: 1.3;
  }
  
  h2 {
    font-size: 1.7rem;
    line-height: 1.3;
  }
  
  h3 {
    font-size: 1.4rem;
    line-height: 1.35;
  }
  
  h4 {
    font-size: 1.2rem;
    line-height: 1.4;
  }
  
  h5 {
    font-size: 1.1rem;
    line-height: 1.45;
  }
  
  /* Paragraph text */
  p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
  }
  
  /* Links */
  a {
    font-size: 1rem;
  }
  
  /* List items */
  li {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  /* Buttons */
  button,
  .btn {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
  
  /* Navigation */
  .navbar-links li a {
    font-size: 1.05rem;
  }
  
  /* Services section */
  .service__title {
    font-size: 1.15rem;
  }
  
  .service__description {
    font-size: 0.95rem;
  }
  
  /* About section */
  .about__title {
    font-size: 1.7rem;
  }
  
  .about__text {
    font-size: 1rem;
  }
  
  /* FAQ section */
  .accordion-button {
    font-size: 1.05rem;
    padding: 1rem 1.2rem;
  }
  
  .accordion-content p {
    font-size: 0.98rem;
    line-height: 1.6;
  }
  
  /* Footer - already updated in previous changes */
  .footer h4 {
    font-size: 1.2rem;
  }
  
  .footer ul li a,
  .contact-info p,
  .address-info p {
    font-size: 0.98rem;
  }
  
  .footer-bottom p {
    font-size: 0.95rem;
  }
  
  .developer-link {
    font-size: 0.9rem;
  }
  
  /* Testimonials */
  .client__card h4 {
    font-size: 1.1rem;
  }
  
  .client__card p {
    font-size: 0.98rem;
    line-height: 1.6;
  }
}

/* Smaller mobile adjustments */
@media (max-width: 480px) {
  /* Fine-tune some elements for smaller screens */
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .accordion-button {
    font-size: 1rem;
  }
  
  /* Slightly adjust letter spacing for better readability with Poppins */
  p, li, .footer ul li a, .contact-info p, .address-info p {
    letter-spacing: 0.01em;
  }
}

/* Font weight adjustments for Poppins */
h1, h2, h3 {
  font-weight: 600; /* Poppins looks better with 600 rather than 700 for headings */
}

h4, h5, h6 {
  font-weight: 500; /* Medium weight for smaller headings */
}

strong, b {
  font-weight: 600; /* Semi-bold instead of bold */
}

.navbar-links li a {
  font-weight: 500; /* Medium weight for nav links */
}

button, .btn {
  font-weight: 500; /* Medium weight for buttons */
}

/* Enhanced Responsive Physiotherapy Services Section */
.physio-services {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
  position: relative;
  overflow: hidden;
}

.physio-services::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(149, 105, 221, 0.05);
  border-radius: 50%;
  top: -100px;
  right: -100px;
  z-index: 0;
}

.physio-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.physio-header {
  text-align: center;
  margin-bottom: 60px;
}

.physio-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.physio-title::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background: var(--primary-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.physio-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.physio-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.physio-text {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.physio-description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-light);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  border-radius: 10px;
  background: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 50%;
  color: white;
  flex-shrink: 0;
}

.service-icon i {
  font-size: 1.2rem;
}

.service-text {
  flex: 1;
}

.service-text h4 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.service-text p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-light);
  margin: 0;
}

.physio-image {
  width: 100%;
  max-height: 600px; /* Reduced height */
  object-fit: cover; /* Maintain aspect ratio while limiting height */
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
  transition: transform 0.5s ease;
}

.physio-image:hover {
  transform: scale(1.02);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .physio-image {
    max-height: 380px; /* Slightly smaller on smaller screens */
  }
}

@media (max-width: 992px) {
  .physio-image {
    max-height: 350px;
    margin: 0 auto 30px;
    max-width: 600px;
  }
}

@media (max-width: 576px) {
  .physio-image {
    max-height: 300px;
    margin: 0 auto 20px;
    max-width: 100%;
  }
}

.cta-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.cta-btn {
  display: inline-block;
  padding: 14px 35px;
  background: var(--primary-color);
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(149, 105, 221, 0.3);
  text-align: center;
}

.cta-btn:hover {
  background: #8150c8;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(149, 105, 221, 0.4);
}

/* Comprehensive responsive breakpoints */
@media (min-width: 1400px) {
  .physio-container {
    max-width: 1300px;
  }
  
  .physio-content {
    gap: 60px;
  }
  
  .physio-title {
    font-size: 2.7rem;
  }
  
  .physio-subtitle {
    font-size: 1.15rem;
  }
  
  .service-item {
    padding: 18px;
  }
}

@media (max-width: 1200px) {
  .physio-services {
    padding: 70px 0;
  }
  
  .physio-title {
    font-size: 2.3rem;
  }
  
  .physio-content {
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .physio-services {
    padding: 60px 0;
  }
  
  .physio-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .physio-image {
    order: -1;
    max-height: 450px;
  }
  
  .service-item:nth-child(odd),
  .service-item:nth-child(even) {
    transform: none;
  }
}

@media (max-width: 768px) {
  .physio-services {
    padding: 50px 0;
  }
  
  .physio-header {
    margin-bottom: 40px;
  }
  
  .physio-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .physio-subtitle {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .physio-description {
    font-size: 1rem;
  }
  
  .service-item {
    padding: 12px;
  }
  
  .service-text h4 {
    font-size: 1.05rem;
  }
  
  .physio-image {
    max-height: 400px;
  }
  
  .cta-btn {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .physio-services {
    padding: 40px 0;
  }
  
  .physio-title {
    font-size: 1.8rem;
  }
  
  .physio-subtitle {
    font-size: 0.95rem;
  }
  
  .physio-description {
    font-size: 0.95rem;
  }
  
  .service-item {
    padding: 15px;
  }
  
  .service-icon {
    width: 35px;
    height: 35px;
  }
  
  .service-icon i {
    font-size: 1rem;
  }
  
  .service-text h4 {
    font-size: 1rem;
  }
  
  .service-text p {
    font-size: 0.9rem;
  }
  
  .physio-image {
    max-height: 300px;
  }
}

@media (max-width: 480px) {
  .physio-services {
    padding: 35px 0;
  }
  
  .physio-title {
    font-size: 1.6rem;
  }
  
  .service-item {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .service-icon {
    margin-bottom: 10px;
  }
  
  .cta-btn {
    width: 100%;
    padding: 12px 20px;
  }
  
  .physio-image {
    max-height: 250px;
  }
}

@media (max-width: 375px) {
  .physio-title {
    font-size: 1.5rem;
  }
  
  .physio-subtitle,
  .physio-description {
    font-size: 0.9rem;
  }
  
  .service-text p {
    font-size: 0.85rem;
  }
  
  .cta-btn {
    font-size: 0.95rem;
  }
}

/* Gallery Section Styles */
.gallery-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
  position: relative;
  overflow: hidden;
}

.gallery-section::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(149, 105, 221, 0.05);
  border-radius: 50%;
  top: -100px;
  right: -100px;
  z-index: 0;
}

.gallery-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.gallery-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 15px;
}

.gallery-title::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background: var(--primary-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.gallery-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Gallery Swiper - Fixed number of visible slides */
.gallery-swiper .swiper-slide {
  height: auto;
  transition: transform 0.3s ease;
  opacity: 1;
}

/* Mobile - Exactly 1 visible slide */
@media (max-width: 767px) {
  .gallery-swiper .swiper-slide {
    width: 100% !important; /* Force 100% width */
    margin-right: 0;
  }
  
  .gallery-image {
    height: 350px; /* Taller on mobile for better visibility */
  }
  
  /* Hide navigation buttons on mobile */
  .gallery-swiper .swiper-button-next,
  .gallery-swiper .swiper-button-prev {
    display: none;
  }
}

/* Tablet - Exactly 2 visible slides */
@media (min-width: 768px) and (max-width: 1023px) {
  .gallery-swiper .swiper-slide {
    width: calc((100% - 20px) / 2) !important; /* Force exactly 2 slides */
    margin-right: 20px;
  }
  
  .gallery-image {
    height: 320px;
  }
}

/* Desktop - Exactly 3 visible slides */
@media (min-width: 1024px) {
  .gallery-swiper .swiper-slide {
    width: calc((100% - 40px) / 3) !important; /* Force exactly 3 slides */
    margin-right: 20px;
  }
  
  .gallery-image {
    height: 380px;
  }
}

/* Additional styling for cards */
.gallery-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  padding: 0; /* Remove padding to maximize image size */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.gallery-image {
  width: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-image {
  transform: scale(1.03);
}

/* Navigation Buttons */
.gallery-swiper .swiper-button-next,
.gallery-swiper .swiper-button-prev {
  width: 45px;
  height: 45px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.gallery-swiper .swiper-button-next:after,
.gallery-swiper .swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
}

.gallery-swiper .swiper-button-next:hover,
.gallery-swiper .swiper-button-prev:hover {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

/* Pagination */
.gallery-swiper .swiper-pagination {
  bottom: 0;
}

.gallery-swiper .swiper-pagination-bullet {
  background: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .gallery-section {
    padding: 60px 0;
  }
  
  .gallery-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
  
  .gallery-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .gallery-section {
    padding: 50px 0;
  }
  
  .gallery-title {
    font-size: 1.8rem;
  }
  
  .gallery-card {
    padding: 0.8rem;
  }
  
  .gallery-image {
    height: 220px;
  }
  
  .gallery-swiper .swiper-button-next,
  .gallery-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
  
  .gallery-swiper .swiper-button-next:after,
  .gallery-swiper .swiper-button-prev:after {
    font-size: 16px;
  }
}

/* Responsive adjustments for different screen sizes */
@media (min-width: 1200px) {
  .gallery-image {
    height: 350px; /* Even taller on large screens */
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .gallery-image {
    height: 300px; /* Slightly smaller on tablets */
  }
}

@media (max-width: 576px) {
  .gallery-image {
    height: 280px; /* Adjusted for mobile but still taller than before */
  }
}

/* Also adjust the card padding to give more space to the image */
.gallery-card {
  padding: 0.8rem;
}

/* Fix gallery slider */
.gallery-swiper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding-bottom: 40px; /* Space for pagination */
}

.gallery-swiper .swiper-slide {
  height: auto;
}

.gallery-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.gallery-image {
  width: 100%;
  aspect-ratio: 3/4; /* Set a consistent aspect ratio */
  object-fit: cover;
  display: block;
}

/* Navigation buttons */
.swiper-button-next,
.swiper-button-prev {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 50%;
  color: white;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px;
}

/* Fix physio section image ratio for mobile */
.physio-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.physio-image img {
  width: 100%;
  aspect-ratio: 4/3; /* Maintain consistent aspect ratio */
  object-fit: cover;
  display: block;
  border-radius: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .physio-image {
    max-height: none; /* Remove any max-height restrictions */
  }
  
  .physio-image img {
    aspect-ratio: 4/3; /* Keep same ratio as desktop */
  }
}

/* Simple developer attribution with no links */
.developer-attribution {
  text-align: center;
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Reduce left padding for navbar logo in mobile view */
@media (max-width: 768px) {
  .navbar-logo {
    margin-left: 0.5rem; /* Reduced from likely 1.5rem or similar */
    padding-left: 0;
  }
  
  /* If you have a container with padding */
  .navbar-container {
    padding-left: 0.5rem;
  }
  
  /* If your logo is inside another container */
  .navbar .container {
    padding-left: 0.5rem;
  }
}

/* Even smaller screens */
@media (max-width: 480px) {
  .navbar-logo {
    margin-left: 0.3rem; /* Further reduced for very small screens */
  }
  
  .navbar-container,
  .navbar .container {
    padding-left: 0.3rem;
  }
}

/* Remove excess left margin from navbar logo on mobile */
@media (max-width: 768px) {
  .navbar-logo,
  .navbar-brand,
  .navbar-container .logo,
  .navbar .logo {
    margin-left: 0 !important; /* Force remove any margin */
    padding-left: 0.5rem !important; /* Add minimal padding */
  }
  
  /* Fix container padding if needed */
  .navbar-container,
  .navbar .container,
  header .container {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  
  /* Target inner elements if nested */
  .navbar-logo img,
  .navbar-brand img,
  .navbar .logo img {
    margin-left: 0 !important;
  }
}

/* Extra small devices */
@media (max-width: 375px) {
  .navbar-logo,
  .navbar-brand,
  .navbar-container .logo,
  .navbar .logo {
    padding-left: 0.3rem !important; /* Even less padding for very small screens */
  }
}

.products-container {
  display: flex;
  flex-direction: column; /* Stacks items vertically */
  align-items: center;    /* Centers the cards horizontally */
  gap: 30px;              /* Creates beautiful space between the cards */
  padding: 0 20px;        /* Adds some space on the sides for smaller screens */
  
  /* Optional: Constrains the max width on very large screens for better readability */
  max-width: 900px;
  margin: 0 auto;   
  margin-bottom: 2rem;      /* Centers the container itself on the page */
}

/* This is the white card for each individual product. */
.product-item {
  background-color: #ffffff;
  border-radius: 15px; /* Softer, rounded corners */
  padding: 15px;       /* Space between the image and the card's edge */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* A soft, modern shadow */
  width: 100%;         /* Ensures the card takes up the full width of its container */
  box-sizing: border-box; /* Includes padding in the width calculation */
  overflow: hidden;    /* Ensures the image corners don't poke out of the rounded border */
}

/* This styles the image itself to be responsive. */
.product-item img {
  width: 100%;         /* Makes the image fill its container (the .product-item card) */
  height: auto;        /* Maintains the image's original aspect ratio */
  display: block;      /* Removes any extra space below the image */
  border-radius: 8px;  /* Optional: Slightly rounds the image corners itself for a polished look */
}




