@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary-color: #01bbbf;
  --text-dark: #1d293d;
  --text-light: #62748e;
  --extra-light: #fafafa;
  --white: #ffffff;
  --max-width: 1200px;
  --header-font: "Dancing Script", serif;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.section__subheader {
  margin-bottom: 0.5rem;
  font-size: 1.75rem;
  font-weight: 700;
  font-family: var(--header-font);
  color: var(--primary-color);
  text-align: center;
}

.section__header {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
}

.section__description {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
  line-height: 1.75rem;
  text-align: center;
}

.btn {
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-family: "Roboto", serif;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 5rem;
  transition: 0.3s;
  cursor: pointer;
}

.btn:hover {
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.15);
}

img {
  display: flex;
  width: 100%;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

ul {
  list-style: none;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", serif;
}

nav {
  position: fixed;
  isolation: isolate;
  width: 100%;
  z-index: 9;
}

.nav__header {
  padding: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--extra-light);
}

.nav__logo a img {
  max-width: 100px;
}

.nav__menu__btn {
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
}

.nav__links {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  background-color: var(--extra-light);
  transition: transform 0.5s;
  z-index: -1;
}

.nav__links.open {
  transform: translateY(100%);
}

.nav__links a {
  font-weight: 500;
  color: var(--text-dark);
  white-space: nowrap;
}

.nav__links a:hover {
  color: var(--primary-color);
}

.nav__links .btn {
  font-weight: 500;
  color: var(--text-dark);
  background-color: var(--extra-light);
}

.header__container {
  display: grid;
  gap: 2rem;
}

.header__image img {
  max-width: 650px;
  margin-inline: auto;
 }

.header__content img {
  max-width: 150px;
  margin-inline: auto;
  transform: rotate(-10deg);
}

.header__content h1 {
  margin-bottom: 1rem;
  font-size: 4rem;
  font-weight: 800;
  color: var(--text-dark);
  text-align: center;
}

.header__content form {
  margin-top: 2rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem 1rem;
  flex-direction: column;
  flex-wrap: wrap;
  border-radius: 1rem;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.header__content .input__group {
  flex: 1;
  display: grid;
  gap: 0.5rem;
}

.header__content label {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 500;
  color: var(--text-light);
}

.header__content label span {
  color: var(--primary-color);
}

.header__content input {
  width: 100%;
  outline: 0;
  border: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.header__content input::placeholder {
  color: var(--text-dark);
}

.header__content .btn {
  font-size: 1.2rem;
  background-color: var(--text-dark);
}

.header__content .btn:hover {
  background-color: var(--primary-color);
}

.about {
  background-color: var(--extra-light);
  overflow: hidden;
}

.about__container {
  display: grid;
  gap: 2rem;
}

.about__image {
  position: relative;
  isolation: isolate;
  max-width: 450px;
  margin-inline: auto;
}

.about__image img {
  border: 0.75rem solid var(--white);
  border-radius: 0.5rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.about__image::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  transform: rotate(8deg);
  z-index: -1;
}

.about__content .section__header {
  margin-bottom: 1rem;
}

.about__content .section__header span {
  color: var(--primary-color);
}

.about__signature {
  margin-top: 2rem;
  font-size: 2rem;
  font-weight: 600;
  font-family: var(--header-font);
  color: var(--text-dark);
  text-align: center;
}

.tour__grid {
  margin-block: 2rem;
  display: grid;
  gap: 0 1rem;
}

.tour__card {
  padding: 2rem 1rem;
  transition: 0.3s;
  border-radius: 1rem;
}

.tour__card:hover {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}

.tour__card img {
  max-width: 125px;
  margin-inline: auto;
  margin-bottom: 1rem;
  border-radius: 10rem;
}

.tour__card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
}

.tour__card p {
  font-weight: 500;
  color: var(--text-light);
  text-align: center;
  transition: 0.3s;
}

.tour__card:hover p {
  color: var(--primary-color);
}

.tour__btn {
  display: flex;
  justify-content: center;
}

.destination {
  background-color: var(--extra-light);
}

.destination__grid {
  margin-block: 4rem 2rem;
  display: grid;
  gap: 1rem;
}

.destination__card {
  background-color: var(--white);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: 0.3s;
}

.destination__card:hover {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}

.destination__card img {
  border-radius: 0.5rem;
}

.destination__card__content {
  padding: 1rem;
  padding-bottom: 2rem;
}

.destination__card__content h4 {
  position: relative;
  isolation: isolate;
  margin-block: -3rem 0.5rem;
  max-width: 250px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.75rem;
}

.destination__card__content h4::before {
  position: absolute;
  content: "";
  top: -1rem;
  left: -1rem;
  width: calc(100% + 2rem);
  height: calc(100% + 1rem);
  background-color: var(--white);
  z-index: -1;
  border-top-right-radius: 0.5rem;
}

.destination__card__content h4::after {
  position: absolute;
  content: "";
  top: 1rem;
  right: -2rem;
  width: 1rem;
  height: 1rem;
  background-color: transparent;
  z-index: -1;
  border-bottom-left-radius: 0.5rem;
  box-shadow: -0.25rem 0.25rem 0 0.25rem var(--white);
}

.destination__card__content h5 {
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
}

.destination__card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.destination__card__footer h6 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
}

.destination__card__footer p {
  font-weight: 500;
  color: var(--primary-color);
}

.destination__btn {
  display: flex;
  justify-content: center;
}

.review__container {
  display: grid;
  gap: 2rem;
}

.review__image img {
  max-width: 400px;
  margin-inline: auto;
}

.review__content {
  overflow: hidden;
}

.swiper {
  width: 100%;
  margin-top: 2rem;
}

.review__card > span {
  display: inline-block;
  font-size: 5rem;
  color: var(--primary-color);
}

.review__card .section__description {
  margin-bottom: 1rem;
  text-align: left;
}

.review__card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.review__card h5 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
}

.review__card > div {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.review__card > div > span {
  font-size: 1rem;
  color: goldenrod;
}

.blog {
  background-color: var(--extra-light);
}

.blog__grid {
  margin-block: 4rem 2rem;
  display: grid;
  gap: 1rem;
}

.blog__card {
  background-color: var(--white);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: 0.3s;
}

.blog__card:hover {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}

.blog__card img {
  border-radius: 0.5rem;
}

.blog__content {
  padding: 1rem;
  padding-bottom: 1.5rem;
}

.blog__content h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.75rem;
}

.blog__content .btn {
  padding: 0.5rem 1rem;
  color: var(--primary-color);
  background-color: var(--white);
  border: 1px solid var(--primary-color);
}

.blog__card .btn:hover {
  color: var(--white);
  background-color: var(--primary-color);
}

.blog__btn {
  display: flex;
  justify-content: center;
}

.banner {
  overflow: hidden;
}

.banner__wrapper {
  width: max-content;
  display: flex;
  align-items: center;

  animation: scroll-left 45s linear infinite;
}

.banner__wrapper img {
  max-width: 300px;
}

@keyframes scroll-left {
  to {
    transform: translateX(calc(-50%));
  }
}

.footer__logo {
  margin-bottom: 2rem;
}

.footer__logo img {
  max-width: 150px;
  margin-inline: auto;
}

.footer__links {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer__links a {
  font-weight: 500;
  color: var(--text-dark);
  white-space: nowrap;
}

.footer__links a:hover {
  color: var(--primary-color);
}

.footer__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer__socials a {
  font-size: 1.25rem;
  color: var(--text-dark);
}

.footer__socials a:hover {
  color: var(--primary-color);
}

.footer__bar {
  padding: 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
  text-align: center;
}

@media (width > 540px) {
  .header__content form {
    flex-direction: row;
  }

  .tour__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .destination__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width > 768px) {
  nav {
    position: static;
    padding: 1rem;
    max-width: var(--max-width);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .nav__header {
    flex: 1;
    padding: 0;
    background-color: transparent;
  }

  .nav__menu__btn {
    display: none;
  }

  .nav__links {
    position: static;
    width: fit-content;
    padding: 0;
    flex-direction: row;
    gap: 3rem;
    background-color: transparent;
    transform: none !important;
  }

  .nav__links a {
    padding-bottom: 0.5rem;
    border-bottom: 2px solid transparent;
  }

  .nav__links a:hover {
    border-color: var(--primary-color);
  }

  .nav__links .btn {
    color: var(--white);
    background-color: var(--primary-color);
  }

  .header__container {
    padding-top: 2rem;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .header__image {
    grid-area: 1/2/2/3;
  }

  .header__content :is(h1, .section__description) {
    text-align: left;
  }

  .about__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .about__content
    :is(.section__header, .section__description, .about__signature) {
    text-align: left;
  }

  .tour__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .destination__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .review__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .review__image {
    grid-area: 1/2/2/3;
  }

  .review__content :is(.section__subheader, .section__header) {
    text-align: left;
  }

  .review__content .section__header {
    max-width: 400px;
  }

  .blog__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__links {
    gap: 3rem;
  }
}

@media (width > 1024px) {
  .tour__grid {
    gap: 1.5rem;
  }

  .destination__grid {
    gap: 1.5rem;
  }

  .blog__grid {
    gap: 1.5rem;
  }

  .blog__content {
    padding: 1.5rem;
    padding-bottom: 2rem;
  }
}




/* review btn */
.review__btn {
  margin-top: 25px;
  display: flex;
  justify-content: flex-start;
}

/* Button Style */
.review__btn a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #ff6b6b, #ff9f43);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* Hover Effect */
.review__btn a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Icon size */
.review__btn i {
  font-size: 18px;
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {
  .review__btn {
    justify-content: center;
  }

  .review__btn a {
    width: 100%;
    justify-content: center;
    padding: 12px;
    font-size: 15px;
  }
}

/* 📲 Small Devices */
@media (max-width: 480px) {
  .review__btn a {
    font-size: 14px;
    padding: 10px;
  }
}


/* __________ SERVICES (MODERN STYLE) */
.services {
  padding: 80px 0 40px;
  width: 70%;
  margin: auto;
  text-align: center;
}

.services .head .heading_1 {
  color: orangered;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.services .head .heading {
  font-size: 2.8rem;
  margin-top: 10px;
  font-weight: 700;
}

.services .boxes {
  margin-top: 3rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
}

/* CARD STYLE */
.services .box {
  background: #211917;
  padding: 30px 20px;
  border-radius: 15px;
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(228, 219, 219, 0.05);
}

/* HOVER EFFECT */
.services .box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
  border: 1px solid orangered;
}

/* ICON IMAGE */
.services .box img {
  width: 90px;
  margin-bottom: 15px;
  transition: 0.4s;
  margin: 0 auto 15px auto;
}

.services .box:hover img {
  transform: scale(1.1);
}

/* TITLE */
.services .box h4 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #fff;
}

/* DESCRIPTION */
.services .box p {
  font-size: 0.95rem;
  color: #aaa;
  line-height: 1.6;
}

/* GLOW EFFECT */
.services .box::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 0%;
  bottom: 0;
  left: 0;
  background: linear-gradient(to top, rgba(255,69,0,0.2), transparent);
  transition: 0.4s;
}

.services .box:hover::before {
  height: 100%;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .services .boxes {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services .boxes {
    grid-template-columns: 1fr;
  }

  .services .head .heading {
    font-size: 2rem;
  }
}

/* ===== SERVICES ===== */
.services-section {
  padding: 70px 20px;
  background: var(--white);
}

.services-container {
  max-width: var(--max-width);
  margin: auto;
  text-align: center;
}

/* TITLE */
.services-title {
  font-size: 2.2rem;
  color: var(--text-dark);
}

.services-title span {
  color: var(--primary-color);
  font-family: var(--header-font);
}

/* SUBTITLE */
.services-subtitle {
  margin: 10px 0 40px;
  color: var(--text-light);
  font-size: 1rem;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.service-card {
  background: var(--extra-light);
  padding: 25px;
  border-radius: 15px;
  transition: 0.3s;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.service-card:hover {
  transform: translateY(-10px);
}

/* ICON */
.service-card img {
  width: 50px;
  margin-bottom: 15px;
}

/* TEXT */
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-title {
    font-size: 1.7rem;
  }
}





.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px; /* left karna ho to left:20px */
  width: 55px;
  height: 55px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  text-decoration: none;
  transition: 0.3s;
}

/* Hover Effect */
.whatsapp-float:hover {
  background: #1ebe5d;
  transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 15px;
    right: 15px;
  }
}



/* ===== BANNER ===== */
.about-banner {
  height: 75vh;
  background: url("./assets/banner\ about\ us.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  position: relative;
  object-fit: cover;
}

.about-banner::before {
  position: relative;
  inset: 0;
}

.banner-content {
  position: relative;
}

.banner-content h1 {
  font-size: 3rem;
}

.banner-content span {
  color: var(--primary-color);
  font-family: var(--header-font);
}

.banner-content p {
  margin-top: 10px;
  font-size: 1.1rem;
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: 70px 20px;
  background: var(--extra-light);
}

.about-container {
  max-width: var(--max-width);
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* TEXT */
.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.about-text p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 15px;
}

.about-text ul {
  list-style: none;
  text-align: left;
}

.about-text ul li {
  padding: 6px 0;
  color: var(--text-dark);
}

/* IMAGE */
.about-img {
  flex: 1;
}

.about-img img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* ===== DRONE VIDEO ===== */
.drone-video {
  padding: 70px 20px;
  text-align: center;
  background: var(--white);
}

.drone-video h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: var(--text-dark);
}

.video-box {
  max-width: var(--max-width);
  margin: auto;
}

.video-box video {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .banner-content h1 {
    font-size: 2.3rem;
  }
}

@media (max-width: 600px) {
  .banner-content h1 {
    font-size: 1.8rem;
  }

  .drone-video h2 {
    font-size: 1.6rem;
  }
}


/* ===== ABOUT CONTENT ===== */
.about-content {
  padding: 70px 20px;
  background: var(--extra-light);
}

.about-box {
  max-width: var(--max-width);
  margin: auto;
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* ===== TITLE ===== */
.about-title {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.about-title span {
  color: var(--primary-color);
  font-family: var(--header-font);
}

/* ===== TEXT ===== */
.about-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 15px;
}

/* highlight */
.about-text strong {
  color: var(--text-dark);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .about-box {
    padding: 25px;
  }

  .about-title {
    font-size: 1.6rem;
  }

  .about-text {
    font-size: 0.95rem;
  }
}


/* ===== CONTACT ===== */
.contact {
  padding: 60px 0;
  background: var(--extra-light);
}

/* ===== MAP FULL WIDTH ===== */
.map iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

/* ===== CONTAINER ===== */
.contact-container {
  max-width: var(--max-width);
  margin: 40px auto;
  display: flex;
  gap: 30px;
  padding: 0 20px;
}

/* ===== LEFT ===== */
.contact-info {
  flex: 1;
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
}

.contact-info h2 {
  margin-bottom: 15px;
  color: var(--text-dark);
}

.contact-info p {
  margin-bottom: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ICON */
.contact-info i {
  color: var(--primary-color);
  margin-right: 6px;
}

/* ===== RIGHT ===== */
.contact-form {
  flex: 1;
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
}

/* INPUT */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
}

/* TEXTAREA */
.contact-form textarea {
  height: 120px;
}

/* BUTTON */
.contact-form button {
  width: 100%;
  padding: 12px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
  }
}


.book-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #01bbbf;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: 0.3s ease;
}

.book-btn:hover {
  background-color: #01989c;
}