nav ul li a {
  color: #2a3958 !important;
}

nav ul li :hover {
  background-color: #7fca5e;
  color: white !important;
  border-radius: 5px;
}

/* contact us css */

.contact-hero {
  padding-top: 5rem;
  height: 450px;
  position: relative;
  overflow: hidden;
}

.contact-hero h1 {
  display: flex;
  align-items: center;
  font-family: "Dancing Script", cursive;
  font-weight: bold;
  color: white;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  background-image: url("images/contactbg.jpg");
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
}

.glass-bg {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.contactsection1 {
  padding-top: 5rem;
  padding-bottom: 4rem;
  padding-left: 10rem;
  padding-right: 10rem;
}

.contact-card {
  position: relative;
  background: rgb(255, 255, 255);
  transition: color 0.3s ease;
  overflow: hidden;
  z-index: 1;
  padding: 2rem;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  width: 100%;
  height: 100%;
  background-color: #7fca5e;
  transition: right 0.4s ease;
  z-index: 0;
}

.contact-card:hover::before {
  right: 0;
}

.contact-card:hover {
  color: #fff !important;
}

.contact-card:hover p {
  color: #fff !important;
}

.contact-card:hover h5 {
  color: #fff !important;
}

.contact-card:hover a {
  color: #fff !important;
}

.contact-card > * {
  position: relative;
  z-index: 1;
}

.contact-card h5 {
  color: #2a3958 !important;
  font-weight: bold;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}

.contact-card p {
  color: #2a3958;
  font-weight: bold;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}

.contact-card a {
  color: #2a3958; /* match your text color */
  font-weight: bold;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-card:hover a {
  color: #fff !important;
}

.contactsection2 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 10rem;
  padding-right: 10rem;
}

/* about us css */

.aboutussection3 {
  padding: 6rem;
  text-align: center;
}

.aboutussection3 h1 {
  font-family: "Dancing Script", cursive;
  font-weight: bold;
  color: #7fca5e;
}

.aboutussection3 h5 {
  color: #2a3958 !important;
  font-family: "Times New Roman", Times, serif;
  font-weight: bold;
  font-size: 1.4rem;
}

/* footer design */

.footer {
  background-image: url("images/footer_bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 3rem 0;
  position: relative;
}

/* home page css */

.hero {
  display: flex;
  gap: 40px;
  margin-top: 5rem;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("images/homeimg1.jpg") center center / cover no-repeat;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.god {
  position: relative;
  width: 250px;
  height: 400px;
  overflow: hidden;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
}

.god img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
}

.god:hover {
  transform: scale(1.05);
}

/* Petals behind */
.petal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("images/petalshome.png") center center / cover no-repeat;
  background-size: cover;
  opacity: 0.8;
  z-index: 0;
  pointer-events: none;
  display: none; /* hidden by default */
}

.petal-overlay.animate {
  display: block;
  animation: moveDown 10s linear infinite;
}

@keyframes moveDown {
  0% {
    transform: translateY(-100px);
  }
  100% {
    transform: translateY(100px);
  }
}

.homesection1 {
  padding-top: 0rem;
  padding-left: 6rem;
  padding-right: 6rem;
  padding-bottom: 1rem;
}

.homesection1 h2 {
  text-align: center;
  font-weight: bold;
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #2a3958 !important;
}

.homesection1 p {
  text-align: center;
  font-weight: bold;
  color: grey;
}

.homesection2 {
  display: flex;
  flex-direction: row;
  padding: 4rem !important;
  padding-left: 6rem !important;
  padding-right: 6rem !important;
  align-items: center;
  justify-content: space-around;
}

.homesection2 .homesection2content {
  width: 50%;
}

.homesection2 img {
  width: 40%;
}

.homesection2 h3 {
  color: rgb(44, 44, 76);
  font-weight: bold;
  font-family: "Lora", serif;
  text-align: left;
}

.homesection2 p {
  line-height: 32px;
}

.report-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.report-item {
  flex: 0 0 48%;
  background: #f9f9f9;
  padding: 8px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: bold;
}

.homesection3 {
  display: flex;
  flex-direction: row;
  padding: 4rem !important;
  padding-left: 6rem !important;
  padding-right: 6rem !important;
  align-items: center;
  justify-content: space-around;
}

.homesection3 .homesection3content {
  width: 50%;
}

.homesection3 img {
  width: 30%;
}

.homesection3 h3 {
  color: rgb(44, 44, 76);
  font-weight: bold;
  font-family: "Lora", serif;
  text-align: left;
}

.homesection3 p {
  line-height: 32px;
}

/* Card Style */

.homesection4 {
  padding: 5rem;
  padding-left: 13rem !important;
  padding-right: 13rem !important;
}

.homesection4 h1 {
  font-family: "Dancing Script", cursive;
  font-weight: bold;
  color: #7fca5e;
  font-size: 2rem !important;
}

.card-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 50% / 40%;
  aspect-ratio: 3/4;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.card-wrapper:hover {
  transform: scale(1.05);
}

.destination-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.destination-label {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  padding: 6px 16px;
  font-weight: bold;
  font-size: 14px;
  color: #ff6600;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Filter Buttons */
.filter-buttons .filter-btn {
  background-color: #646464;
  color: #fff;
  border: none;
  padding: 8px 18px;
  margin: 5px;
  border-radius: 30px;
  font-size: 14px;
  transition: background 0.3s;
  font-weight: bold;
}

.filter-buttons .filter-btn.active,
.filter-buttons .filter-btn:hover {
  background-color: #ff6600;
  color: #fff;
}

.aboutussection2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-left: 5rem;
  padding-right: 5rem;
  padding: 2rem;
  flex-wrap: wrap;
}

.aboutussection2 .hero-images {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.aboutussection2 .side-images {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.aboutussection2 .img-style {
  width: 200px;
  height: 240px;
  object-fit: cover;
  border-top-left-radius: 80px;
  border-bottom-right-radius: 80px;
}

.aboutussection2 .img-center {
  width: 400px;
  height: 500px;
  object-fit: cover;
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
}

.aboutussection2 .hero-content {
  flex: 1;
  max-width: 600px;
}

.aboutussection2 .tag {
  background: #ffe7cc;
  color: #ff6600;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 1rem;
}

.aboutussection2 .hero-content h3 {
  font-weight: bold;
  color: #58b947;
  font-family: "Dancing Script", cursive;
}

.aboutussection2 .hero-content p {
  color: #666;
  margin-bottom: 1rem;
  line-height: 32px;
}

.aboutussection2 .features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.aboutussection2 .feature-box {
  background: #ecfce5;
  padding: 1rem;
  border-radius: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #2d7034;
}

.aboutussection1 {
  padding: 5rem;
  padding-top: 11rem;
}

.aboutussection1 h1 {
  font-weight: bold;
  color: #2a3958 !important;
  font-size: 2rem !important;
  font-family: "Dancing Script", cursive;
  padding-bottom: 1.2rem;
}

.aboutussection1 p {
  line-height: 1.3;
  font-size: 15px;
  color: #333;
}

.founder-img {
  width: 280px; /* Controls image size */
  height: auto;
  border-radius: 130px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  margin-top: 20px;
}

/* travel gallery css */

.travel-hero {
  padding-top: 5rem;
  height: 380px;
  position: relative;
  overflow: hidden;
}

.travel-hero h1 {
  display: flex;
  align-items: center;
  font-family: "Dancing Script", cursive;
  font-weight: bold;
  color: white;
}

.travel-hero .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  background-image: url("images/aboutusheadbg.jpg");
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
}

.travel-hero .hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
}

.travel-btn {
  margin-top: 1rem;
  color: #fff8f0;
  padding: 0.8rem !important;
  min-width: 220px; /* Wider button */
  box-shadow: 0 6px 14px rgba(112, 66, 20, 0.25);
  font-family: "Times New Roman", Times, serif !important;
  font-size: 1.2rem !important;
  font-weight: bold !important;
  transition: all 0.3s ease-in-out;
}

.travel-btn:hover {
  background-color: #704214; /* darker brown */
  color: #ffffff;
  transform: scale(1.07);
}

.travel-btn.active-btn {
  background-color: #a0522d; /* saddle brown */
  box-shadow: 0 8px 20px rgba(112, 66, 20, 0.4);
  color: #fff;
}

/* travel page css */

.travelsection {
  padding: 3rem;
}

.travelsection h3 {
  font-family: "Dancing Script", cursive;
  font-weight: bold;
}

.travelsection .object-fit-contain {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.travelsection .card {
  height: 100%;
}

.travelsection .glightbox {
  height: 180px;
  background-color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.travelsection .glightbox img,
.glightbox video {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  background-color: transparent; /* Important for videos */
}

.custom-col-5 {
  flex: 0 0 20%;
  max-width: 20%;
}

@media (max-width: 1199px) {
  .custom-col-5 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

@media (max-width: 991px) {
  .custom-col-5 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
}

@media (max-width: 767px) {
  .custom-col-5 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 575px) {
  .custom-col-5 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Apply only when it's video */
.gslide-media.video-center {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  background: #000;
  height: 100%;
}

.gslide-media.video-center video {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  background: #ffffff;
}

/* Do NOT center or mess with image layout */
.glightbox-clean .gslide-media img {
  max-height: 350px !important;
  width: auto;
  margin: 0 auto;
  display: block;
}

/* footer design  */

.first-footer {
  position: relative;
  color: black;
  padding: 4rem 5rem 0.5rem 5rem;
  font-family: "Times New Roman", Times, serif;
  line-height: 1.8rem;
  background: url("images/footer_bg.jpg") center center / cover no-repeat;
  z-index: 1;
}

.first-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.5); /* White overlay with 0.7 opacity */
  z-index: -1;
}

.first-footer h3 {
  font-weight: bold;
  color: #2a3958 !important;
}

.first-footer .footercontent {
  justify-content: space-evenly !important;
}

.first-footer .footercontent ul li a {
  text-decoration: none;
  color: black;
  font-weight: bold;
}

#social {
  display: flex !important;
  flex-direction: row !important;
  margin: 0.5rem;
}

#social ul li i {
  margin: 0.5rem;
}

.first-footer .footercontent1 h5 {
  text-align: center;
  font-size: 1.1rem;
}
