@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Outfit:wght@100..900&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');

.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

.blackThemeBg{
  background-color: #0B161E;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins";
}

/* Background Section */
.bgImgContainer {
  width: 100%;
  height: 900px;
  background: url("imgs/indexBg.jpg") no-repeat center center;
  background-size: cover;
}

/* Navbar */
.navbar-brand img {
  max-width: 150px;
}

.nav-link {
  position: relative;
  text-decoration: none;
  padding-bottom: 5px;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: width 0.3s ease-in-out;
}

.nav-link:hover::after {
  width: 100%;
}

/* Main Content */
.discoverH {
  font-size: 70px;
}

.mainHead {
  font-size: 50px;
}

.mainHeadpara {
  line-height: 1.5;
  color: white;
  font-size: 14px;
}

/* Social Icons */
.social-icons {
  position: absolute;
  left: 30px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-icons a {
  font-size: 24px;
  color: white;
  transition: transform 0.3s ease-in-out;
}

.social-icons a:hover {
  transform: scale(1.2);
}

/* Events Section */
.eventsDiv {
  position: absolute;
  right: 0px;
  display: flex;
  gap: 90px;
  background-color: #fff;
}

.events {
  position: relative;
  width: 200px;
  height: 150px;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: bold;
  padding: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.3);
}

.events::before {
  content: attr(data-number);
  position: absolute;
  font-size: 180px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.1);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .discoverH {
    font-size: 50px;
    padding-left:20px ;
  }

  .mainHead {
    font-size: 35px;
    padding-left:20px ;
  }

  .mainHeadpara {
    font-size: 12px;
    padding-left:20px ;
  }

  .eventsDiv {
    right: 20px;
    gap: 10px;
  }

  .events {
    width: 170px;
    height: 130px;
  }

  .social-icons {
    left: 20px;
    bottom: 20px;
  }

  .social-icons a {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .bgImgContainer {
    height: auto;
    padding: 20px;
  }

  .discoverH {
    font-size: 40px;
  }

  .mainHead {
    font-size: 30px;
  }

  .mainHeadpara {
    font-size: 12px;
  }

  .eventsDiv {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    background-color: transparent;
  }

  .rowMob {
    display: flex;
    justify-content: center;
  }

  .disp {
    display: none;
  }

  .events {
    width: 90%;
    height: auto;
    padding: 15px;
    background-color: #fff;
  }

  .events::before {
    font-size: 100px;
  }

  .social-icons {
    flex-direction: row;
    gap: 15px;
    justify-content: center;
  }

  .social-icons a {
    font-size: 18px;
  }

  .nav-link:hover::after {
    width: 0;
  }
}

.events p span {
  font: bold;
  color: black;
}

.event p {
  font-size: xx-small;
  color: gray;
}

/* carousel cards */

.carousel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
  position: relative;
  overflow: hidden;
  background: transparent;
  padding: 20px;
  /* border-radius: 15px; */
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); */
}

.left-fixed {
  width: 39%;
  padding: 30px;
  background: #fff;
  color: black;
  z-index: 3;
  position: relative;
  box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.4);
  text-align: center;
  /* border-radius: 10px; */
  transform: scale(1.05);
}

.left-fixed h2 {
  font-size: 26px;
  font-weight: bold;
}

.carousel-wrapper {
  width: 68%;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.carousel-track {
  display: flex;
  transition: transform 0.8s ease-in-out;
  gap: 15px;
}

.carousel-item-custom {
  flex: 0 0 33.333%;
  overflow: hidden;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s ease-in-out;
  /* background: white; */
  position: relative;
}

.carousel-item-custom img {
  width: 100%;
  height: auto;
}

.custom-caption {
  /* background: rgba(0, 0, 0, 0.7); */
  padding: 10px;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 18px;
  font-weight: bold;
  border-radius: 5px;
}

@media (max-width: 992px) {
  .carousel-container {
    flex-direction: column;
    padding: 15px;
  }

  .left-fixed {
    width: 100%;
    margin-bottom: 20px;
    box-shadow: none;
  }

  .carousel-wrapper {
    width: 100%;
  }

  .carousel-item-custom {
    flex: 0 0 50%;
  }
  .carousel-item-custom img{
    height:300px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .carousel-item-custom {
    flex: 0 0 100%;
  }
  .left-fixed {
    width: 100%;
    margin-bottom: 20px;
    box-shadow: none;
  }
  .carousel-item-custom img{
    height:300px;
    width: 100%;
  }
}

.bannerImg {
  max-height: 627px;
  max-width: 521px;
  width: 100%;
  height: auto;
}

.banner {
  position: relative;
}

.bgwhite {
  min-width: 670px;
  padding: 30px;
  min-height: auto;
  background-color: #fff;
  position: absolute;
  right: 150px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.bannerContent {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
}

.bg-white p {
  font-size: 11px;
}

/* Responsive Styling */
@media (max-width: 992px) {
  .bgwhite {
    min-width: 100%;
    right: 0;
    position: relative;
    margin-top: 20px;
  }

  .bannerContent {
    justify-content: center;
    text-align: center;
    overflow-x: hidden;
  }

  .bannerImg {
    max-width: 100%;
    height: auto;
  }

  .align {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 768px) {
  .banner {
    flex-direction: column;
    text-align: center;
  }

  .bannerImg {
    display: none;
  }

  .bgwhite {
    padding: 20px;
    width: 100%;
    position: relative;
    /* Absolute position ko hatao */
    right: auto;
    box-shadow: none;
  }

  .align {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 15px;
  }

  .bannerContent {
    width: 100%;
    /* Content ka width full karna */
    justify-content: center;
    /* Center align */
    overflow-x: hidden;
  }
}

/* testimonial */
.testimonial-card .card-up {
  height: 120px;
  overflow: hidden;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  background: linear-gradient(to right, #000000, #050a12, #0e1d2a, #003a66, #0377B4);
}
.testimonial-card .avatar {
  width: 110px;
  margin-top: -60px;
  overflow: hidden;
  border: 3px solid #fff;
  border-radius: 50%;
}

/* blogs */
.cardStyle{
  border: none;
  box-shadow: rgba(255, 255, 255, 0.35) 0px 5px 15px;
}
/* .cardPackageStyle{
  border: none;
}
.cardPackageStyle:hover{
  background-color: #0B161E;
  color:#fff;
  cursor: pointer;
} */

.custom-card {
  width: 340px; /* Set a fixed width for all cards */
  height: 800px; /* Set a fixed height for uniformity */
  border: 1px solid #ddd; /* Light border for separation */
  border-radius: 3px; /* Rounded corners */
  overflow: hidden; /* Prevents content from overflowing */
  display: flex;
  flex-direction: column;
  background-color: #fff; /* Card background */
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.custom-card:hover{
  color:#fff;
  background-color: #0B161E;
}

.custom-card-img {
  width: 100%; /* Ensures image spans full width */
  height: 356px; /* Fixed height for image */
  object-fit: cover; /* Keeps image aspect ratio while covering space */
}

.custom-card-body {
  flex-grow: 1; /* Fills remaining space */
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Keeps title and text spaced */
}

.custom-card-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 2px;
}

.custom-card-text {
  font-size: 14px;
  color: #555;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 16; /* Limits text to 5 lines */
  -webkit-box-orient: vertical;
}



.footer {
  background: url('imgs/footer.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-overlay {
  background: rgba(0, 0, 0, 0.8); /* Dark overlay for readability */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-content {
  color: white;
  max-width: 600px;
  padding: 20px;
}

.footer-content h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.footer-content p {
  font-size: 14px;
  margin-bottom: 40px;
}

.subscribe-form {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.subscribe-form input {
  padding: 10px;
  border: none;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;  width: 60%;
}

.subscribe-form button {
  background: #0B161E;
  border: none;
  padding: 10px;
  color: white;
  cursor: pointer;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-nav a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.footer-bottom p {
  font-size: 12px;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer {
    height: auto;
  }
  .footer-content{
    padding: 40px 20px;
  }
  
  .subscribe-form {
    flex-direction: column;
  }

  .subscribe-form input {
    width: 100%;
    margin-bottom: 10px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 10px;
  }
}

/* package page */
.custom-bg {
  background-image: url('imgs/packageDetailCover.jpg'); /* Replace with your image path */
  background-size: cover; 
  background-position: center; 
  background-repeat: no-repeat;
  padding: 200px 20px 40px 20px; /* Adjusted padding for small screens */
  color: white; 
  position: relative; /* Ensures child elements are positioned correctly */
}

/* Form Container */
.custom-form-container {
  background-color: #0B161E; 
  height: fit-content;
  border-radius: 10px;
  padding: 50px;
  position: absolute;
  bottom: -200px;
  right: 20px;
  color: white;
  width: 350px; /* Fixed width for desktop */
}

/* Adjust Form Position for Smaller Screens */
@media (max-width: 992px) { 
  .custom-form-container {
    position: relative; /* Moves form below content on smaller screens */
    bottom: 0;
    width: 100%; /* Full width on smaller screens */
    margin-top: 20px;
  }
}

/* Input Fields */
.custom-input {
  width: 100%;
  border-radius: 5px;
  background-color: #0B161E;
  border: 0.5px solid grey;
  padding: 10px;
  color: white;
}

.custom-input::placeholder {
  color: grey;
}

/* Submit Button */
.custom-btn {
  width: 100%;
  background-color: grey; 
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease-in-out;
}

.custom-btn:hover {
  background-color: white;
  color: black;
}

/* Package Content */
.package-container {
  border-radius: 10px;
  padding: 20px;
  color: #333;
  position: relative; /* Ensures content stacks correctly */
}

.package-title {
  color: #0B161E;
  text-align: center;
  margin-bottom: 20px;
}

.package-section {
  margin-bottom: 20px;
}


/* about page */

.section-title {
  color: #0B161E;
  border-bottom: 2px solid #0B161E;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

.package-list {
  list-style-type: none; /* Removes bullets */
  padding-left: 0;
  font-size: 16px;
}

.package-list li {
  margin-bottom: 5px;
}

/* Map Styling */
.map-container {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  margin-top: 20px;
}

/* about */
.detailsSection {
  position: relative;
  display: flex;
  flex-wrap: wrap; /* Ensures responsiveness */
  align-items: center;
}

.detailsSecHeading {
  font-size: 54px;
}

.title-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.line {
  width: 80px;
  height: 3px;
  background-color: #0B161E;
}

.bgWhite {
  position: relative;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 20px;
  z-index: 1;
  background-color: white;
}

.DetailsImg {
  position: absolute;
  top: 50%;
  left: 60%;
  transform: translate(-40%, -50%); 
  width: 80%; 
  max-width: 600px; 
  height: auto;
  z-index: -1;
}

/* Responsive Fixes */
@media (max-width: 992px) {
  .detailsSection {
    flex-direction: column;
  }

  .title-container {
    width: 100%;
    text-align: center;
  }

  .DetailsImg {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    width: 100%;
    max-width: none;
    z-index: -1;
  }
}

.icon-style{
  font-size: 55px;
}
.sec2-card{
  display: flex;
  flex-direction: column;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  color: #0B161E;
  background-color: #fff;
}
.sec2-card:hover{
  background-color: #0B161E;
  color: #fff;
}
.blog-cards{
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border: none;
}



.blue{
  color:#002233;
}

#content{
  z-index: 2;
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: auto;
}
/* form background */

.form{
  background-color: transparent;
  padding: 40px 20px;
  width: 100%;
  /* max-width: 300px; */
  box-sizing: border-box;
  border-radius: 5px;
  box-shadow: 0px 0px 10px 0px #666;
}
.input-group {
  position: relative;
  margin-bottom: 1.5rem; /* Add space between input groups */
}
.input-group input {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  outline: none;
  background-color: transparent;
  border: 1px solid rgb(145, 141, 141);
  border-top: none;
  border-left: none;
  border-right: none;
  color: black;
  font-size: 16px;
}
.placeholder {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 16px;
  color: grey;
  transition: 0.3s;
  pointer-events: none;
}
.input-group input:focus + .placeholder,
.input-group input:not(:placeholder-shown) + .placeholder {
  top: -10px;
  left: 0;
  font-size: 12px;
  color: grey;
}

.gradient-btn {
  background: linear-gradient(to right, #0377B4, #002233, #100c14);
  border: none;
  border-radius: 25px;
  color: white;
  padding: 10px 30px;
  font-size: 16px;
  width: 100%;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.gradient-btn:hover {
  background: linear-gradient(to right, #100c14, #002233, #0377B4);
  transform: scale(1.05);
}

.gradient-btn:active {
  transform: scale(1);
}

.gradient-btn-width{
  background: linear-gradient(to right, #0377B4, #002233, #100c14);
  border: none;
  border-radius: 25px;
  color: white;
  padding: 10px 30px;
  font-size: 16px;
  width: 20%;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.gradient-btn-width:hover {
  background: linear-gradient(to right, #100c14, #002233, #0377B4);
  transform: scale(1.05);
}
.gradient-btn-width:active {
  transform: scale(1);
}

/* icon */
.foricon a {
  border: 13px solid transparent;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  line-height: 1; /* Ensure line-height is consistent */
}

.bi-facebook, .bi-twitter, .bi-instagram, .bi-youtube {
  font-size: large;
  transition: all 0.3s ease; /* Add transition for smooth effect */
}

.bi-facebook {
  color: #3b5998;
}

.bi-facebook:hover {
  color: #fff;
  background-color: #3b5998;
  box-shadow: 0 0 10px #3b5998; /* Add shadow for hover effect */
  border-radius: 30%;
}

.bi-twitter {
  color: #00acee;
}

.bi-twitter:hover {
  background-color: #00acee;
  color: #FFF;
  box-shadow: 0 0 10px #00acee; /* Add shadow for hover effect */
  border-radius: 30%;
}

.bi-instagram {
  background: linear-gradient(to bottom, #E1306C 0%, #FD1D1D 100%);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease; /* Add transition for smooth effect */
}

.bi-instagram:hover {
  -webkit-text-fill-color: #fff; /* Change text color to white */
  color: #fff; /* Fallback for other browsers */
  background-color: #FD1D1D; /* Adjust the background color on hover */
  box-shadow: 0 0 10px #FD1D1D; /* Add shadow for hover effect */
  border-radius: 30%;
  text-decoration: none; /* Remove underline if any */
}

.bi-youtube {
  color: #FF0000;
}

.bi-youtube:hover {
  color: #fff;
  background-color: #FF0000;
  box-shadow: 0 0 10px #FF0000; /* Add shadow for hover effect */
  border-radius: 30%;
}





.bgTransparent {
  background-color: #fff;
  z-index: 2;
  box-shadow: 0px 0px 10px 0px #fffefe;
  border-radius: 15px;
  backdrop-filter: blur(0.2px);
  position: relative;
  overflow: hidden;
}


.inner-content {
  position: relative;
  background: #fff; /* Inner background color */
  border-radius: 10px;
  padding: 20px;
  color: #0377B4; /* Text color */
  z-index: 2; /* Ensure content is above the gradient */
  width: 99.4%;
  margin-left: 4px;
  margin-top: 4px;
  margin-bottom: 4px;
}

@keyframes rotate {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(-360deg);
  }
}


/* form validation */

.error-msg {
  color: red;
  font-size: 12px;
  margin-top: -1px;
  margin-bottom: 10px;
  display: none; /* Hide by default */
}


/* media query */

/* Target phones (portrait and landscape) */
@media only screen and (max-width: 767px) {
  .inner-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }
  .col-lg-4, .col-md-6, .col-md-12 {
      max-width: 100%;
      flex: 0 0 100%;
      padding: 10px 0;
  }
  .text-center {
      text-align: center;
  }
}
