body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  background-color: #ffffff;
}

.text-common-heading {
  font-size: 60px;
  font-weight: 400;
  font-family: "The Nautigal", cursive;
  color: #4d8e06;
  line-height: normal;
}

.text-common-body {
  font-size: 14px;
  font-weight: 400;
  color: #1f1f1f;
}

.text-common-heading-2 {
  font-size: 32px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: #1f1f1f;
  line-height: normal;
}

/* HEADER STYLES */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s ease;
  padding: 20px 0;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
}

.header .logo-container {
  /* display: flex; */
  align-items: center;
  /* position: relative; */
}

.header .logo-box {
  background: white;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: absolute;
  top: 0;
}

.header.scrolled .logo-box {
  box-shadow: none;
  background: transparent;
  padding: 10px 15px;
}

.header .logo {
  height: 50px;
  transition: all 0.3s ease;
  width: 130px;
  height: 70px;
}
.header.scrolled .logo {
  height: 45px;
}

.header .navbar {
  padding: 0;
  background-color: white;
  border-radius: 10px;
}

.header .navbar-nav {
  align-items: center;
  gap: 8px;
}

.header .nav-link {
 /* color: #005979;
  font-weight: 500;
  font-size: 14px;
  padding: 10px 18px;
  transition: all 0.3s ease;
  position: relative;
 text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); */
}

.header .nav-link {
 font-weight: 400;
    font-size: 15px;
    padding: 10px 6px !important;
    /*
  transition: all 0.3s ease;
  position: relative;
 text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); */
}

.header.scrolled .nav-link {
  color: #2c3e50;
  text-shadow: none;
}

.header .nav-link:hover {
  color: #6b8e23;
}

.header .btn-enquiry {
  background: linear-gradient(135deg, #4d8e06, #3a5899);
  color: white;
  padding: 12px 28px;
  border-radius: 5px;
  font-weight: 500;
  font-size: 15px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(107, 142, 35, 0.4);
  margin-left: 10px;
}

.header .btn-enquiry:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107, 142, 35, 0.5);
}

.header .navbar-toggler {
  border: none;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}

.header .navbar-toggler:focus {
  box-shadow: none;
}

/* .header .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.header.scrolled .navbar-toggler {
  background: rgba(107, 142, 35, 0.1);
}

.header.scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(44, 62, 80, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
} */

.header .menu-toggle {
  cursor: pointer;
  color: #000; /* change to white if needed */
}

.header .line {
  fill: none;
  stroke: currentColor;
  stroke-width: 6;
  stroke-linecap: round;
  transition: transform 0.4s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* ACTIVE = X (Close icon) */
.header .menu-toggle.active .line1 {
  transform: translateY(20px) rotate(45deg);
}

.header .menu-toggle.active .line2 {
  opacity: 0;
}

.header .menu-toggle.active .line3 {
  transform: translateY(-20px) rotate(-45deg);
}

/* HERO SECTION STYLES */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.video-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}

/* Overlay */

.hero-section .overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-section .hero-content {
  width: 100%;
  color: white;
}

.hero-section .hero-title {
  font-family: "Poppins", sans-serif;
  font-size: 50px;
  font-weight: 500;
  margin-bottom: 20px;
  color: white;
  line-height: 150%;
}

.hero-section .hero-title .line-1 {
  display: block;
}

.hero-section .hero-title .line-2 {
  display: block;
  margin-top: -10px;
}

.hero-section .play-button-wrapper {
  margin-top: 10px;
}

.hero-section .play-button {
  width: 75px;
  height: 75px;
  background: transparent;
  border: 4px solid white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
}

.hero-section .play-button::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 4px solid white;
  border-radius: 50%;
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.hero-section .play-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
  border-color: #6b8e23;
}

.hero-section .play-button:hover::before {
  border-color: #6b8e23;
}

.hero-section .play-button i {
  font-size: 32px;
  margin-left: 4px;
  color: white;
}

.hero-section .social-icons {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 100;
}

.hero-section .social-icon {
  width: 40px;
  height: 40px;
  background: #242020e8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2c3e50;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-section .social-icon:hover {
  background: #6b8e23;
  color: white;
  transform: translateX(-8px) scale(1.1);
}

/* FOOTER STYLES */
.footer {
  background: linear-gradient(20deg, #00174a 8%, #6cb300 100%);
  color: white;
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
  border-top-left-radius: 70px;
  border-top-right-radius: 70px;
}

/* .footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
  background-size: 30px 30px;
  opacity: 0.3;
  pointer-events: none;
} */

.footer .footer-content {
  position: relative;
  z-index: 1;
}

.footer .footer-section {
  margin-bottom: 30px;
}

.footer .footer-section h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 15px;
  /* text-transform: uppercase; */
}

.footer .footer-section ul {
  list-style: none;
  padding: 0;
  gap: 22px;
  margin: 0;
}

.footer .footer-section ul li {
  margin-bottom: 12px;
  padding: 0;
}

.footer .footer-section ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
  font-weight: 400;
}
.footer .footer-section ul li a:hover {
  color: white;
  transform: translateX(5px);
}

.footer .footer-contact {
  gap: 15px;
}

.footer .footer-contact a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  margin-bottom: 8px;
}

.footer .footer-contact a:hover {
  color: white;
  transform: translateX(5px);
}

.footer .footer-contact img {
  width: 20px;
}

/* .footer .footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
} */

.footer .footer-social a {
  /* width: 45px; */
  /* height: 45px; */
  /* background: rgba(255, 255, 255, 0.1); */
  /* border-radius: 8px; */
  /* display: flex; */
  /* align-items: center; */
  justify-content: center;
  /* color: white; */
  /* font-size: 20px; */
  transition: all 0.3s ease;
  /* text-decoration: none; */
}
.footer .footer-social a:hover {
  /* background: rgba(255, 255, 255, 0.2); */
  transform: translateY(-5px);
}

.footer .footer-logo-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 380px;
}

.footer .footer-logo {
  height: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer .footer-bottom {
  background: rgb(0 0 0 / 8%);
  padding: 20px 0;
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  color: white;
  font-weight: 400;
}

.footer-bottom p {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
}

.footer .footer-bottom a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer .footer-bottom a:hover {
  color: #c5e86c;
}

.custom-root-container {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}

.btn.btn-custom {
  background: linear-gradient(135deg, #4d8e06, #3a5899);
  color: white;
  padding: 12px 28px;
  border-radius: 5px;
  font-weight: 500;
  font-size: 15px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(107, 142, 35, 0.4);
  margin-top: 30px;
}

.btn.btn-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107, 142, 35, 0.5);
}

.img-custom-fluid {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.daytour-inner-card-left-side {
  border-radius: 25px;
}

.daytour-inner-card-left-side img {
  border-radius: 25px;
  min-height: 400px;
}
.daytour-inner-card-right-side {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.package-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: auto;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.package-image {
  position: relative;
  width: 100%;
  height: 228px;
  overflow: hidden;
  border-radius: 10px;
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.package-card:hover .package-image img {
  transform: scale(1.1);
}

.package-content {
  padding: 30px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 250px;
}

.package-card .discover-btn {
  display: inline-block;
  padding: 12px 35px;
  border: 1px solid #4d8e06;
  color: #4d8e06;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 400;
  transition: all 0.3s ease;
  background: transparent;
  font-size: 13px;
}

.package-card .discover-btn:hover {
  background: #4d8e06;
  color: white;
  transform: scale(1.05);
}

.daytour-inner-card.reverse {
  flex-direction: row;
}

.daytour-inner-card.reverse .g-col-1 {
  left: 35%;
}

.daytour-inner-card.reverse .image-col {
  order: 2;
}

.daytour-inner-card.reverse .content-col {
  order: 1;
}

.g-col-1 {
  left: 37%;
  top: 50%;
  top: 50%;
  left: 65%;
  transform: translate(-50%, -50%);
  text-align: center;
  position: absolute;
  width: 70%;
}

.daytour-inner-card {
  display: flex;
  align-items: stretch;
  margin-bottom: 40px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

.daytour-inner-card-left-side {
  position: relative;
  height: 400px;
  overflow: visible;
  padding: 0;
}

.img-custom-fluid {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.daytour-inner-card-right-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: white;
  position: relative;
}

.daytour-inner-card-right-side ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.daytour-inner-card-right-side ul li {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  padding-left: 0;
  font-weight: 300;
  font-size: 14px;
}

.daytour-inner-card-right-side ul li:before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: #000;
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
}

/* Green Strip - Inside content area on left */
.green-strip {
  position: absolute;
  left: 12px;
  top: 25px;
  bottom: 25px;
  width: 15px;
  background-color: #4caf50;
  z-index: 1;
}

/* Reverse Layout - Image Right */
.daytour-inner-card.reverse {
  flex-direction: row-reverse;
}

.daytour-inner-card.reverse .col-7 {
  padding-left: 50px;
}

.destination-row {
  margin-bottom: 40px;
  align-items: center;
  display: flex;
}

.flex-direction-row {
  flex-direction: row;
}

.flex-direction-row-reverse {
  flex-direction: row;
}

/* First row - normal order */
.destination-row:nth-child(odd) .image-col {
  order: 1;
}

.destination-row:nth-child(odd) .content-col {
  order: 2;
}

/* Second row - reversed order */
.destination-row:nth-child(even) .image-col {
  order: 2;
}

.destination-row:nth-child(even) .content-col {
  order: 1;
}

.destination-row:nth-child(even) .content-col {
  text-align: end;
}

.destination-row .image-col {
  border-radius: 20px;
}
.destination-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.5s ease;
}

.destination-image:hover {
  transform: scale(1.05);
}

.destination-content {
  padding: 30px 5px;
}

.destination-title {
  font-size: 18px;
  font-weight: 600;
  color: #1f1f1f;
  margin-bottom: 20px;
}

.ask-more-btn {
  background-color: #00696d;
  color: white;
  padding: 12px 35px;
  border: none;
  border-radius: 4px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.ask-more-btn:hover {
  background-color: #00696d;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(10, 95, 95, 0.3);
  color: white;
}

.travel-section {
  max-width: 1190px;
  margin: 0 auto;
  padding: 0 15px;
}

.travel-section .travel-layout {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 30px;
  align-items: center;
}

/* Left Side - Big Image */
.travel-section .left-side-image {
  /* width: 100%; */
  height: 100%;
  max-height: 1380px;
  border-radius: 24px;
  /* overflow: hidden; */
  position: sticky;
  top: 20px;
}

.travel-section .left-side-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
}

/* Right Side - Category Cards */
.travel-section .category-cards-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-left: -45%;
  z-index: 1;
}

.travel-section .category-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: stretch;
}

.travel-section .category-card:hover {
  transform: translateX(10px);
}

.travel-section .category-card-image-wrapper {
  width: 280px;
  height: 280px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 24px;
}

.travel-section .category-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 24px;
}

.travel-section .category-card:hover .category-card-image {
  transform: scale(1.1);
}

.travel-section .category-card-content {
  padding: 20px 30px 20px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.travel-section .category-card-title {
  font-size: 18px;
  font-weight: 600;
  color: #1f1f1f;
  margin-bottom: 10px;
  line-height: 1.3;
}

.travel-section .category-card-description {
  font-size: 13px;
  color: #000;
  line-height: 1.6;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.travel-section .category-card-btn {
  color: white;
  font-weight: 500;
  font-size: 13px;
  background: linear-gradient(135deg, rgb(77, 142, 6), rgb(58, 88, 153));
  padding: 8px 20px;
  border-radius: 5px;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  align-self: flex-start;
  cursor: pointer;
}

.travel-section .category-card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(77, 142, 6, 0.4);
  color: white;
}

.home-package-layout .packages-section {
  background: linear-gradient(
    40deg,
    #00174a 0%,
    #1a4d3d 25%,
    #3d7a4f 50%,
    #6cb300 100%
  );
  padding: 60px 20px;
  min-height: 100vh;
  position: relative;
  border-radius: 40px;
  margin: 20px 35px;
}

.home-package-layout .content-wrapper {
  /* position: relative; */
  /* z-index: 2; */
  max-width: 1190px;
  /* margin-left: 0; */
  /* margin-right: 0; */
  margin: 0 auto;
}
.home-package-layout .section-title {
  font-size: 60px;
  font-weight: 400;
  margin-bottom: 12px;
  font-family: "The Nautigal", cursive;
  color: white;
  line-height: normal;
  text-align: center;
}

.home-package-layout .section-description {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0px;
  color: white;
  text-align: center;
}

.home-package-layout .main-container {
  max-width: 1190px;
  margin: 0 auto;
  /* display: flex; */
  /* gap: 20px; */
  /* align-items: stretch; */
}

.home-package-layout .left-sidebar {
  /* flex: 0 0 380px; */
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.home-package-layout .right-content {
  padding-bottom: 180px;
}

.home-package-layout .category-card {
  background: #f1f1f130;
  border-radius: 18px;
  padding: 4px 4px 4px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid #4d8e06;
  min-height: 100px;
}

.home-package-layout .category-card:hover {
  background: rgba(90, 110, 100, 0.7);
  transform: translateX(8px);
  border-color: rgba(255, 255, 255, 0.2);
}

.home-package-layout .category-card.active {
  background: linear-gradient(135deg, #4d8e06 0%, #4d8e06 100%);
  border-color: rgba(255, 255, 255, 0.3);
}

.home-package-layout .category-title {
  color: #f1f1f1;
  font-size: 20px;
  font-weight: 500;
  margin: 0;
  flex: 1;
}

.home-package-layout .category-image {
  width: 130px;
  height: 130px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  margin-left: 15px;
}

.home-package-layout .featured-card {
  /* background: rgba(200, 210, 200, 0.15); */
  /* backdrop-filter: blur(8px); */
  /* border-radius: 25px; */
  /* overflow: hidden; */
  width: 100%;
  /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25); */
  /* border: 1px solid rgba(255, 255, 255, 0.1); */
  display: flex;
  justify-content: center;
}

.home-package-layout .featured-image-wrapper {
  position: relative;
  width: 100%;
  height: 490px;
  overflow: hidden;
  border-radius: 50px;
  max-width: 630px;
}

.home-package-layout .featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-package-layout .featured-content {
  background: white;
  padding: 40px 35px 45px 35px;
  text-align: center;
  border-radius: 45px;
  /* margin: 20px; */
  position: absolute;
  top: 70%;
  max-width: 480px;
  /* left: 50%; */
  /* right: 50%; */
  /* width: 100%; */
  /* z-index: 111; */
  /* margin-left: auto; */
  /* margin-right: auto; */
  /* display: flex; */
  /* justify-content: center; */
}

.home-package-layout .featured-title {
  font-size: 1.6rem;
  color: #2d4a1a;
  margin-bottom: 18px;
  font-weight: 600;
}

.home-package-layout .featured-description {
  color: #1f1f1f;
  margin-bottom: 25px;
  font-size: 14px;
  font-weight: semibold;
}

.home-package-layout .explore-btn {
  background: linear-gradient(135deg, #4d8e06, #3a5899);
  color: white;
  padding: 12px 28px;
  border-radius: 5px;
  font-weight: 500;
  font-size: 15px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(107, 142, 35, 0.4);
  margin-left: 10px;
}

.home-package-layout .explore-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(77, 142, 6, 0.4);
  color: white;
}

.testimonials-home .testimonial-card {
  background: linear-gradient(180deg, #4d8e06 0%, #3a5899 100%);
  border-radius: 26px;
  padding: 30px;
  height: 100%;
  color: white;
  transition: transform 0.3s ease;
}

.testimonials-home .testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonials-home .customer-header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.testimonials-home .customer-avatar {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.testimonials-home .customer-info h5 {
  font-size: 16px;
  font-weight: semibold;
  color: #ffffff;
  margin-bottom: 5px;
}

.testimonials-home .customer-info p {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0px;
  color: white;
}

.testimonials-home .testimonial-text p {
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 0px;
  color: white;
}

.testimonials-home .read-more {
  color: white;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 10px;
  transition: opacity 0.3s;
}

.testimonials-home .read-more:hover {
  opacity: 0.8;
  color: white;
}

.testimonials-home .swiper {
  padding: 20px 0 70px 0;
}

.testimonials-home .swiper-slide {
  height: auto;
}

.testimonials-home .swiper-button-next,
.testimonials-home .swiper-button-prev {
  background: transparent;
  width: 30px;
  height: 30px;
  top: auto;
  bottom: 1%;
  margin-top: 0;
  transition: opacity 0.3s ease;
}

.testimonials-home .swiper-button-next:after,
.testimonials-home .swiper-button-prev:after {
  content: "";
  display: none;
}

.testimonials-home .swiper-button-next img,
.testimonials-home .swiper-button-prev img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.testimonials-home .swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.testimonials-home .swiper-button-next {
  right: 48%;
  transform: translateX(30px);
}

.testimonials-home .swiper-button-prev {
  left: 48%;
  transform: translateX(-30px);
}

@media (max-width: 768px) {
  .testimonials-home .section-title {
    font-size: 2.5rem;
  }

  .testimonials-home .swiper-button-next,
  .testimonials-home .swiper-button-prev {
    width: 30px;
    height: 30px;
    bottom: 5px;
  }

  .testimonials-home .swiper-button-next {
    right: 47%;
    transform: translateX(30px);
  }

  .testimonials-home .swiper-button-prev {
    left: 47%;
    transform: translateX(-30px);
  }
}

@media (max-width: 1024px) {
  .home-package-layout .home-package-layout .main-container {
    flex-direction: column;
  }

  .home-package-layout .left-sidebar {
    flex: 1;
    width: 100%;
  }

  .home-package-layout .right-content {
    width: 100%;
  }

  .home-package-layout .right-content {
    padding-bottom: 220px;
  }
}

@media (max-width: 768px) {
  .home-package-layout .right-content {
    padding-bottom: 240px;
  }
  .home-package-layout .packages-section {
    padding: 40px 15px;
    margin: 10px;
    border-radius: 25px;
  }

  .home-package-layout .section-title {
    font-size: 2.5rem;
  }

  .home-package-layout .section-description {
    font-size: 0.85rem;
  }

  .home-package-layout .left-sidebar {
    gap: 12px;
  }

  .home-package-layout .category-card {
    padding: 18px 20px;
    min-height: 80px;
  }

  .home-package-layout .category-title {
    font-size: 1rem;
  }

  .home-package-layout .category-image {
    width: 70px;
    height: 70px;
  }

  .home-package-layout .featured-image-wrapper {
    height: 280px;
  }

  .home-package-layout .featured-content {
    padding: 25px 20px;
    margin: 15px;
  }

  .home-package-layout .featured-title {
    font-size: 1.3rem;
  }

  .home-package-layout .featured-description {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .home-package-layout .right-content {
    padding-bottom: 260px;
  }
  .home-package-layout .section-title {
    font-size: 2rem;
  }

  .home-package-layout .category-card {
    flex-direction: row;
    padding: 15px;
  }

  .home-package-layout .category-image {
    width: 60px;
    height: 60px;
    margin-left: 10px;
  }

  .home-package-layout .featured-image-wrapper {
    height: 220px;
  }
}

/* Tablet Landscape - 1200px */
@media (max-width: 1200px) {
  .travel-section .travel-layout {
    grid-template-columns: 1fr 450px;
    gap: 20px;
  }

  .travel-section .category-cards-container {
    margin-left: -35%;
  }

  .travel-section .category-card-image-wrapper {
    width: 240px;
    height: 240px;
  }
}

/* Tablet - 1024px */
@media (max-width: 1024px) {
  .travel-section .travel-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .travel-section .left-side-image {
    min-height: 500px;
    position: relative;
    top: 0;
  }

  .travel-section .left-side-image img {
    min-height: 500px;
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 40px;
  }

  .travel-section .category-cards-container {
    margin-left: 0;
    gap: 20px;
  }

  .travel-section .category-card-image-wrapper {
    width: 220px;
    height: 220px;
  }

  .travel-section .category-card-content {
    padding: 20px 25px 20px 15px;
  }
}

/* Small Tablet - 768px */
@media (max-width: 768px) {
  .travel-section {
    padding: 0 20px;
  }

  .travel-section .left-side-image {
    min-height: 400px;
    border-radius: 16px;
  }

  .travel-section .left-side-image img {
    min-height: 400px;
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 40px;
  }
  .travel-section .category-card {
    border-radius: 16px;
  }

  .travel-section .category-card-image-wrapper {
    width: 180px;
    height: 180px;
    border-radius: 16px 0 0 16px;
  }

  .travel-section .category-card-content {
    padding: 15px 20px 15px 12px;
  }

  .travel-section .category-card-title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .travel-section .category-card-description {
    font-size: 12px;
    margin-bottom: 12px;
    -webkit-line-clamp: 3;
  }

  .travel-section .category-card-btn {
    font-size: 12px;
    padding: 7px 16px;
  }
}

/* Mobile - 576px */
@media (max-width: 576px) {
  .travel-section .left-side-image img {
    /* min-height: 300px; */
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 40px;
  }

  .travel-section .left-side-image img {
    min-height: 300px;
  }

  .travel-section .category-cards-container {
    gap: 15px;
  }

  .travel-section .category-card {
    flex-direction: column;
    border-radius: 12px;
  }

  .travel-section .category-card:hover {
    transform: translateY(-5px);
  }

  .travel-section .category-card-image-wrapper {
    width: 100%;
    height: 200px;
    border-radius: 12px 12px 0 0;
  }

  .travel-section .category-card-content {
    padding: 20px;
  }

  .travel-section .category-card-title {
    font-size: 16px;
  }

  .travel-section .category-card-description {
    font-size: 13px;
  }

  .travel-section .category-card-btn {
    width: 100%;
    text-align: center;
  }
}

/* Extra Small Mobile - 400px */
@media (max-width: 400px) {
  .travel-section {
    padding: 0 15px;
  }

  .travel-section .left-side-image {
    min-height: 250px;
  }

  .travel-section .left-side-image img {
    min-height: 250px;
  }

  .travel-section .category-card-image-wrapper {
    height: 180px;
  }

  .travel-section .category-card-content {
    padding: 15px;
  }

  .travel-section .category-card-title {
    font-size: 15px;
  }

  .travel-section .category-card-description {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .destination-content .text-common-body {
    text-align: start;
  }

  .destination-row:nth-child(even) .content-col {
    text-align: start;
  }

  .destination-row:nth-child(odd) .image-col,
  .destination-row:nth-child(even) .image-col {
    order: 1;
  }

  .destination-row:nth-child(odd) .content-col,
  .destination-row:nth-child(even) .content-col {
    order: 2;
  }

  .destination-content {
    padding: 20px 0;
    margin-top: 20px;
    text-align: left;
  }

  .destination-image {
    height: 300px;
  }
}

@media (max-width: 1280px) {
  .header .nav-link {
          font-size: 13px;
        padding: 10px 3px !important;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 50px 0 0;
  }

  .footer .footer-section h3 {
    margin-bottom: 20px;
    text-align: center;
  }

  .footer .footer-logo-section {
    align-items: center;
    text-align: center;
  }

  .footer .footer-social {
    justify-content: center;
  }

  .footer .footer-bottom {
    margin-top: 30px;
    padding: 20px 0px 100px 0px;
  }

  .text-common-body {
    text-align: center;
  }

  .text-common-heading {
    text-align: center;
  }
}

/* RESPONSIVE STYLES */
@media (max-width: 991px) {
  .header .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    padding: 25px;
    border-radius: 15px;
    margin-top: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  }

  .header .nav-link {
    color: #2c3e50 !important;
    text-shadow: none;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .header .nav-link:last-child {
    border-bottom: none;
  }

  .header .navbar-nav {
    gap: 0;
  }

  .header .btn-enquiry {
    margin-left: 0;
    margin-top: 15px;
    width: 100%;
  }

  .hero-section .social-icons {
    right: 20px;
    gap: 15px;
  }

  .hero-section .social-icon {
    width: 45px;
    height: 45px;
  }

  .hero-section .social-icon i {
    font-size: 18px;
  }

  .footer .footer-section h3 {
    text-align: center;
  }

  .flex-direction-row {
    flex-direction: column;
  }

  .flex-direction-row-reverse {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 600px;
  }

  .hero-section .hero-title {
    font-size: 4rem;
    letter-spacing: 3px;
  }

  .hero-section .play-button {
    width: 80px;
    height: 80px;
  }

  .hero-section .play-button i {
    font-size: 28px;
  }

  .hero-section .social-icons {
    right: 15px;
    gap: 12px;
  }

  .hero-section .social-icon {
    width: 40px;
    height: 40px;
  }

  .hero-section .social-icon i {
    font-size: 16px;
  }

  .footer .footer-logo {
    margin-right: 26px;
  }
}

@media (max-width: 576px) {
  .header .logo-box {
    padding: 10px 15px;
  }

  .header .logo {
    height: auto !important;
    width: 130px;
  }

  .hero-section {
    min-height: 500px;
  }

  .hero-section .hero-title {
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
  }

  .hero-section .play-button-wrapper {
    margin-top: 30px;
  }

  .hero-section .play-button {
    width: 70px;
    height: 70px;
    border-width: 3px;
  }

  .hero-section .play-button i {
    font-size: 24px;
  }

  .hero-section .social-icons {
    right: 10px;
    gap: 10px;
  }

  .hero-section .social-icon {
    width: 38px;
    height: 38px;
  }

  .hero-section .social-icon i {
    font-size: 14px;
  }

  .hero-section .close-modal {
    top: -45px;
    width: 35px;
    height: 35px;
    font-size: 20px;
  }

  .footer .footer-logo {
    max-width: 280px;
  }

  .footer .footer-section ul li {
    /* margin-bottom: 12px; */
    padding: 0;
  }

  .footer .footer-section ul {
    gap: 12px;
  }

  .custom-root-container {
    margin-left: 24px;
    margin-right: 24px;
  }

  .short-paragraph .title {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 5px;
  }

  .text-common-heading-2 {
    max-width: fit-content;
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .daytour-inner-card,
  .daytour-inner-card.reverse {
    flex-direction: column;
  }

  .img-custom-fluid {
    min-height: 300px;
  }

  .daytour-inner-card-right-side {
    padding: 30px 25px 30px 25px !important;
  }

  .daytour-inner-card.reverse .col-7 {
    padding-left: 15px;
  }

  .daytour-inner-card-left-side img {
    min-height: 250px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .daytour-inner-card-right-side {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
  }

  .g-col-1 {
    left: 0%;
    top: 0%;
    left: 0%;
    transform: none;
    text-align: start;
    position: relative;
    width: 100%;
  }

  .daytour-inner-card.reverse .g-col-1 {
    left: 0%;
  }
}

.daytours .tours-section {
  max-width: 1190px;
  margin: 0 auto;
}

.daytours .tour-card {
  background: white;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 5px 3px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 390px;
  width: 100%;
  padding: 4px;
}

.daytours .tour-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 5px 3px rgba(0, 0, 0, 0.1);
}

.daytours .tour-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 24px;
}

.daytours .tour-content {
  padding: 30px 25px;
  text-align: center;
  height: 200px;
}

.daytours .tour-title {
  font-size: 20px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 30px;
}

.daytours .explore-btn {
  background: linear-gradient(135deg, #4d8e06, #3a5899);
  color: white;
  padding: 9px 28px;
  border-radius: 5px;
  font-weight: 500;
  font-size: 15px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(107, 142, 35, 0.4);
  text-decoration: none;
}

.daytours .explore-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107, 142, 35, 0.5);
}

.daytours .swiper {
  padding: 20px 0 80px 0;
  position: relative;
}

.daytours .swiper-slide {
  height: auto;
}

.daytours .swiper-button-next,
.daytours .swiper-button-prev {
  background: transparent;
  width: 30px;
  height: 30px;
  top: auto;
  bottom: 10px;
  margin-top: 0;
  transition: opacity 0.3s ease;
}

.daytours .swiper-button-next:after,
.daytours .swiper-button-prev:after {
  content: "";
  display: none;
}

.daytours .swiper-button-next img,
.daytours .swiper-button-prev img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.daytours .swiper-button-next {
  right: 48%;
  transform: translateX(30px);
}

.daytours .swiper-button-prev {
  left: 48%;
  transform: translateX(-30px);
}

.daytours .swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .daytours .swiper-button-next,
  .daytours .swiper-button-prev {
    width: 30px;
    height: 30px;
    bottom: 5px;
  }

  .daytours .swiper-button-next {
    right: 47%;
    transform: translateX(30px);
  }

  .daytours .swiper-button-prev {
    left: 47%;
    transform: translateX(-30px);
  }
  .daytours .tour-image {
    height: 180px;
  }
}

/* sliders */
.activity-slider .activities-section {
  max-width: 1190px;
  margin: 0 auto;
}

.activity-slider .activity-card {
  background: white;
  border-radius: 38px;
  overflow: hidden;
  box-shadow: 0 5px 3px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 320px;
  padding: 4px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.activity-slider .activity-card:hover {
  transform: translateY(-10px);
}

.activity-slider .activity-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 38px;
}

.activity-slider .activity-content {
  padding: 25px;
  text-align: center;
  height: 150px;
}

.activity-slider .activity-title {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 24px;
}

.activity-slider .explore-btn {
  background: linear-gradient(135deg, #4d8e06, #3a5899);
  color: white;
  padding: 9px 28px;
  border-radius: 5px;
  font-weight: 500;
  font-size: 15px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(107, 142, 35, 0.4);
  text-decoration: none;
}

.activity-slider .explore-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107, 142, 35, 0.5);
}

.activity-slider .swiper {
  padding: 20px 0 80px 0;
  position: relative;
}

.activity-slider .swiper-slide {
  height: auto;
}

.activity-slider .swiper-button-next,
.activity-slider .swiper-button-prev {
  background: transparent;
  width: 30px;
  height: 30px;
  top: auto;
  bottom: 10px;
  margin-top: 0;
  transition: opacity 0.3s ease;
}

.activity-slider .swiper-button-next:after,
.activity-slider .swiper-button-prev:after {
  content: "";
  display: none;
}

.activity-slider .swiper-button-next img,
.activity-slider .swiper-button-prev img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.activity-slider .swiper-button-next {
  right: 48%;
  transform: translateX(30px);
}

.activity-slider .swiper-button-prev {
  left: 48%;
  transform: translateX(-30px);
}

.activity-slider .swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .activity-slider .swiper-button-next,
  .activity-slider .swiper-button-prev {
    width: 30px;
    height: 30px;
    bottom: 5px;
  }

  .activity-slider .swiper-button-next {
    right: 47%;
    transform: translateX(30px);
  }

  .activity-slider .swiper-button-prev {
    left: 47%;
    transform: translateX(-30px);
  }
  .activity-slider .activity-image {
    height: 180px;
  }
}

.main-card-pac {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 0;
}

.main-card-pac:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.main-card-pac .package-image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.main-card-pac .package-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.main-card-pac:hover .package-image {
  transform: scale(1.1);
}

.main-card-pac .package-con {
  padding: 24px 12px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  height: 100px;
}

.main-card-pac .package-title {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  margin: 0;
}

.main-card-pac .discover-btn {
  padding: 8px 16px;
  background: transparent;
  border: 1px solid #4d8e06;
  border-radius: 5px;
  color: #4d8e06;
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}

.main-card-pac .discover-btn:hover {
  background: #4d8e06;
  color: #ffffff;
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 576px) {
  .main-card-pac .package-image-wrapper {
    height: 250px;
  }

  .main-card-pac .package-con {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 15px;
    height: auto;
  }

  .main-card-pac .package-title {
    font-size: 16px;
  }

  .main-card-pac .discover-btn {
    width: 100%;
    text-align: center;
    padding: 10px 20px;
  }

  .main-card-pac {
    max-width: unset !important;
  }

  .main-card-pac .discover-btn {
    width: auto;
    text-align: center;
    padding: 8px 16px;
  }
}

@media (min-width: 577px) and (max-width: 768px) {
  .main-card-pac .package-image-wrapper {
    height: 300px;
  }

  .main-card-pac .package-title {
    font-size: 1.35rem;
  }
}
.strengths-container {
  width: 100%;
  padding: 0 15px;
}

.strengths-wrapper {
  width: 100%;
  position: relative;
}

.strengths-row {
  align-items: flex-start;
}

.strengths-image-col {
  padding: clamp(10px, 3vw, 40px);
}

.image-stack {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  display: block;
  width: fit-content;
}

.frame {
  position: absolute;
  border: 1px solid #00696d;
  background: transparent;
  border-radius: 0px;
}

.frame-1 {
  width: 200px;
  height: 180px;
  top: -20px;
  right: -10px;
  z-index: 1;
}

.frame-2 {
  width: 200px;
  height: 160px;
  top: -10px;
  right: -25px;
  z-index: 2;
}

.frame-3 {
  width: 200px;
  height: 200px;
  bottom: -18px;
  left: -10px;
  z-index: 2;
}

.frame-4 {
  width: 200px;
  height: 180px;
  bottom: -9px;
  left: -22px;
  z-index: 2;
}

.strengths-image {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
  z-index: 3;
}

.strengths-image:hover {
  transform: scale(1.05);
}

.strengths-content-col {
  padding: clamp(15px, 3vw, 30px) clamp(20px, 6vw, 40px) clamp(15px, 3vw, 30px)
    clamp(20px, 4vw, 40px);
}

.strengths-title {
  font-size: 32px;
  font-weight: 500;
  color: #1f1f1f;
  margin-bottom: clamp(20px, 3vw, 30px);
  line-height: 1.2;
  text-align: center;
}

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(15px, 2vw, 25px);
}

.strength-card {
  padding: clamp(12px, 2vw, 16px);
}

.strength-icon img {
  width: 40px;
  height: 40px;
}

.strength-content {
  flex: 1;
}

.strength-heading {
  font-size: 14px;
  font-weight: 600;
  color: #175f5b;
  margin-bottom: 14px;
}

.strength-text {
  font-size: 14px;
  color: #1f1f1f;
}

/* Tablet Portrait - 768px to 991px */
@media (max-width: 991px) {
  .strengths-content-col {
    padding: clamp(20px, 4vw, 40px) !important;
  }

  .strengths-image {
    max-width: 100%;
    height: clamp(250px, 40vw, 350px);
  }

  .frame-1,
  .frame-2 {
    width: 240px;
    height: 180px;
  }

  .package-content {
    height: 175px;
  }
}

/* Mobile & Small Tablet - below 768px */
@media (max-width: 767px) {
  .strengths-image-col {
    padding: 20px 20px 0 20px;
  }

  .strengths-content-col {
    padding: 20px 25px 25px 25px !important;
  }

  .strengths-image {
    border-radius: 15px;
  }

  .strengths-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .strength-card {
    padding: 15px;
  }

  .strength-icon {
    width: 35px;
    height: 35px;
  }

  .strength-icon svg {
    width: 35px;
    height: 35px;
  }

  .package-content {
    height: auto;
  }

  .daytours .tour-content {
    height: auto;
  }
}

/* Extra Small Mobile - below 480px */
@media (max-width: 479px) {
  .strengths-content-col {
    padding: 15px 20px 20px 20px !important;
  }

  .strength-card {
    padding: 12px;
    gap: 12px;
  }

  .strength-icon {
    width: 32px;
    height: 32px;
  }

  .strength-icon svg {
    width: 32px;
    height: 32px;
  }
}

.vision-mission-section {
  background-color: #ffffff;
}

.vm-container {
  max-width: 1190px;
}

.vm-wrapper {
  width: 100%;
  position: relative;
  margin-bottom: clamp(30px, 5vw, 60px);
}

.vm-wrapper:last-child {
  margin-bottom: 0;
}

/* Odd cards */
.vm-wrapper:nth-child(odd) {
  background: linear-gradient(to bottom, white 0%, white 19%, transparent 19%),
    linear-gradient(to top, white 0%, white 18%, transparent 18%),
    linear-gradient(
      90deg,
      #4d8e06 0%,
      rgba(77, 142, 6, 0.85) 20%,
      rgba(77, 142, 6, 0.6) 40%,
      rgba(77, 142, 6, 0.4) 60%,
      rgba(77, 142, 6, 0.2) 80%,
      rgba(77, 142, 6, 0.05) 100%
    );
}

/* Even cards */
.vm-wrapper:nth-child(even) {
  background: linear-gradient(to bottom, white 0%, white 18%, transparent 18%),
    linear-gradient(to top, white 0%, white 18%, transparent 18%),
    linear-gradient(
      90deg,
      rgba(77, 142, 6, 0.05) 0%,
      rgba(77, 142, 6, 0.2) 20%,
      rgba(77, 142, 6, 0.4) 40%,
      rgba(77, 142, 6, 0.6) 60%,
      rgba(77, 142, 6, 0.85) 80%,
      #4d8e06 100%
    );
}

.vm-row {
  align-items: center;
}

/* Odd cards (1st, 3rd, 5th...) - normal order: image left, content right */
.vm-wrapper:nth-child(odd) .image-col {
  order: 1;
}

.vm-wrapper:nth-child(odd) .content-col {
  order: 2;
  text-align: end;
}

/* Even cards (2nd, 4th, 6th...) - reversed order: content left, image right */
.vm-wrapper:nth-child(even) .image-col {
  order: 2;
}

.vm-wrapper:nth-child(even) .content-col {
  order: 1;
}

.image-col {
  padding: clamp(20px, 3vw, 40px);
}

.vm-image {
  width: 100%;
  max-width: 450px;
  height: clamp(280px, 35vw, 420px);
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
  margin: 0 auto;
}

.vm-image:hover {
  transform: scale(1.05);
}

.content-col {
  padding: clamp(20px, 3vw, 40px) clamp(40px, 6vw, 80px) clamp(20px, 3vw, 40px)
    clamp(30px, 4vw, 60px);
}

.vm-wrapper:nth-child(even) .content-col {
  padding: clamp(20px, 3vw, 40px) clamp(30px, 4vw, 60px) clamp(20px, 3vw, 40px)
    clamp(40px, 6vw, 80px);
}

.vm-title {
  font-size: 24px;
  font-weight: 500;
  color: #1f1f1f;
  margin-bottom: clamp(15px, 2vw, 25px);
  text-transform: uppercase;
  line-height: 1.2;
}

@media (max-width: 1500px) {
    .footer .footer-section ul li a,
    .footer .footer-contact a,
    .footer-bottom p {
        font-size: 15.5px;
    }

    .ask-more-btn {
      font-size: 19px;
      padding: 11px 32px;
    }

    .footer .footer-section h3 { font-size: 19px; }

    .text-common-heading-2 {
      font-size: 30px;
    }

    .hero-section .hero-title {
      font-size: 45px;
    }
}

/* Tablet & Small Laptop - 992px to 1199px */
@media (max-width: 1199px) {
  .vm-container {
    max-width: 960px;
  }

  .vm-image {
    max-width: 400px;
  }

  .footer .footer-section ul li a,
  .footer .footer-contact a,
  .footer-bottom p {
      font-size: 15px;
  }

  .ask-more-btn {
    font-size: 18px;
    padding: 10px 30px;
  }

  .footer .footer-section h3 { font-size: 18px; }

  .text-common-heading-2 {
    font-size: 28px;
  }

  .hero-section .hero-title {
    font-size: 40px;
  }
}

/* Tablet Portrait - 768px to 991px */
@media (max-width: 991px) {
  .vm-container {
    max-width: 720px;
  }

  .content-col,
  .vm-wrapper:nth-child(even) .content-col {
    padding: clamp(20px, 4vw, 40px) !important;
    text-align: center;
  }

  .content-col,
  .vm-wrapper:nth-child(odd) .content-col {
    text-align: center;
  }

  .vm-image {
    max-width: 100%;
    height: clamp(250px, 40vw, 350px);
  }

  .vm-wrapper:nth-child(odd) .image-col,
  .vm-wrapper:nth-child(even) .image-col {
    order: 1;
  }

  .vm-wrapper:nth-child(odd) .content-col,
  .vm-wrapper:nth-child(even) .content-col {
    order: 2;
  }

  .footer .footer-section ul li a,
  .footer .footer-contact a,
  .footer-bottom p {
      font-size: 14.5px;
  }

  .ask-more-btn {
    font-size: 17px;
    padding: 10px 28px;
  }

  .footer .footer-section h3 { font-size: 17px; }

  .text-common-heading-2 {
    font-size: 26px;
  }

  .hero-section .hero-title {
    font-size: 35px;
  }
}

/* Mobile & Small Tablet - below 768px */
@media (max-width: 767px) {
  .vm-wrapper {
    padding: clamp(30px, 5vw, 40px) 0;
    margin-bottom: clamp(20px, 4vw, 30px);
  }

  .vm-wrapper:nth-child(odd),
  .vm-wrapper:nth-child(even) {
    background: #fff !important;
  }

  .vm-wrapper:nth-child(odd) .image-col,
  .vm-wrapper:nth-child(even) .image-col {
    order: 1;
  }

  .vm-wrapper:nth-child(odd) .content-col,
  .vm-wrapper:nth-child(even) .content-col {
    order: 2;
  }

  .image-col {
    padding: 20px 20px 0 20px;
  }

  .content-col,
  .vm-wrapper:nth-child(even) .content-col {
    padding: 20px 25px 25px 25px !important;
  }

  .vm-image {
    max-width: 100%;
    height: clamp(220px, 50vw, 300px);
    border-radius: 25px;
  }

  .vm-title {
    font-size: clamp(1.5rem, 5vw, 1.75rem);
    margin-bottom: 15px;
  }

  .vm-text {
    font-size: clamp(0.875rem, 2vw, 0.95rem);
    line-height: 1.7;
  }

  .footer .footer-section ul li a,
  .footer .footer-contact a,
  .footer-bottom p {
      font-size: 14px;
  }

  .ask-more-btn {
    font-size: 16px;
    padding: 9px 26px;
  }

  .footer .footer-section h3 { font-size: 16px; }

  .text-common-heading-2 {
    font-size: 24px;
  }

  .hero-section .hero-title {
      font-size: 35px;
  }
}

@media (max-width: 575px) {
    .footer .footer-section ul li a,
    .footer .footer-contact a,
    .footer-bottom p {
        font-size: 13.5px;
    }

    .ask-more-btn {
    font-size: 14px;
    padding: 8px 22px;
  }

  .footer .footer-section h3 { font-size: 15px; }

  .text-common-heading-2 {
    font-size: 22px;
  }

  .hero-section .hero-title {
    font-size: 25px;
  }
}

/* Extra Small Mobile - below 480px */
@media (max-width: 479px) {
  .vm-container {
    padding: 0 10px;
  }

  .content-col,
  .vm-wrapper:nth-child(even) .content-col {
    padding: 15px 20px 20px 20px !important;
  }

  .vm-image {
    height: clamp(200px, 55vw, 250px);
    border-radius: 20px;
  }

  .vm-title {
    font-size: 1.5rem;
  }

  .vm-text {
    font-size: 0.875rem;
  }

  .footer .footer-section ul li a,
  .footer .footer-contact a,
  .footer-bottom p {
      font-size: 13px;
  }

  .footer .footer-section h3 { font-size: 14.5px; }

  .text-common-heading-2 {
    font-size: 20px;
  }

  .hero-section .hero-title {
    font-size: 20px;
  }
}

@media (max-width: 375px) {
    .footer .footer-section ul li a,
    .footer .footer-contact a,
    .footer-bottom p {
        font-size: 12.5px;
    }

    .ask-more-btn {
    font-size: 13px;
    padding: 7px 20px;
  }

  .footer .footer-section h3 { font-size: 13px; }

  .text-common-heading-2 {
    font-size: 18px;
  }

  .hero-section .hero-title {
    font-size: 18px;
  }
}
