* {
  margin: 0;

  padding: 0;

  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;

  background-color: #fffff4;

  color: #2d1f16;
}

/* Header Styling */

.header {
  background-color: #2d1f16;

  color: #fffff4;

  height: 60px;

  width: 100%;

  display: flex;

  align-items: center;

  justify-content: center;
}

.header-container {
  width: 90%;

  /* max-width: 1440px; */

  display: flex;

  align-items: center;

  justify-content: flex-end;

  gap: 20px;
}

/* Links and Buttons */

.header-link {
  color: #fffff4;

  text-decoration: none;

  font-size: 14px;
}

.icon-btn {
  background: none;

  border: none;

  color: #fffff4;

  font-size: 16px;

  cursor: pointer;
}

.icon-btn:hover {
  color: #ffffcc;
}

.language-dropdown {
  position: relative;
}

.language-btn {
  background-color: #fffff4;

  color: #2d1f16;

  border: none;

  padding: 5px 10px;

  font-size: 14px;

  cursor: pointer;
}

.language-btn:hover {
  background-color: #ffffcc;
}

.language-options {
  display: none;

  position: absolute;

  top: 35px;

  right: 0;

  background-color: #fffff4;

  list-style: none;

  border: 1px solid #2d1f16;

  padding: 5px 0;

  z-index: 10;
}

.language-options li button {
  background: none;

  border: none;

  color: #2d1f16;

  width: 100%;

  text-align: left;

  padding: 5px 10px;

  font-size: 14px;

  cursor: pointer;
}

.language-options li button:hover {
  background-color: #eeeeee;
}

/* Responsive Design */

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;

    align-items: flex-end;
  }
}

/* Header 2 Styling */

.header-2 {
  background-color: #fffff4;

  color: #2d1f16;

  height: 80px;

  display: flex;

  align-items: center;

  justify-content: center;
}

.header-2-container {
  width: 90%;

  /* max-width: 1440px; */

  display: flex;

  align-items: center;

  justify-content: space-between;
}

/* Logo */

.logo {
  font-size: 20px;

  font-weight: bold;
}

.logo a {
  text-decoration: none; /* Removes underline */

  color: inherit; /* Makes the link take the color of its parent element */
}

/* Navigation */

.nav {
  display: flex;

  gap: 20px;
}

.nav-item {
  position: relative;

  font-size: 14px;

  text-decoration: none; /* Removes underline */

  color: #2d1f16;

  cursor: pointer;
}

.nav-item a {
  color: #ed5722; /* Makes the link take the color of its parent element */

  font-size: 14px;
}

.nav-item:hover {
  color: #ed5722;
}

.nav-item:hover a {
  color: #ed5722;
}

/* Dropdown Styling */

.dropdown-toggle {
  background: none;

  border: none;

  font-size: 14px;

  cursor: pointer;

  color: #2d1f16;
}

.dropdown-toggle:hover {
  color: inherit;
}

.dropdown-menu {
  display: none;

  position: absolute;

  top: 25px;

  left: 0;

  color: #2d1f16;

  background-color: #fffff4;

  list-style: none;

  border: 0.5px solid #2d1f16;

  border-radius: 4px;

  padding: 5px 0;

  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

  z-index: 10;
}

.dropdown-menu li a {
  padding: 5px 10px;

  display: block;

  text-decoration: none;

  color: inherit;
}

.dropdown-menu li a:hover {
  background-color: #eeeeee;

  text-decoration: none;

  color: inherit;
}

/* Buttons */

.header-buttons {
  display: flex;

  gap: 10px;
}

.btn {
  padding: 8px 16px;

  border: none;

  font-size: 14px;

  cursor: pointer;
}

.btn-signin {
  color: #2d1f16;

  background: none;
}

.btn-know {
  color: #fffff4;

  background: none;
}

.btn-get-started {
  background-color: #ed5722;

  color: #fffff4;

  border-radius: 4px;
}

.btn-get-started:hover {
  background-color: #d14d1c;
}

/* Show Dropdown on Hover */

.dropdown:hover .dropdown-menu {
  display: block;
}

/* Responsive Design */

@media (max-width: 768px) {
  .nav {
    flex-direction: column;

    gap: 10px;
  }

  .header-buttons {
    flex-direction: column;

    gap: 5px;
  }
}

/* Hero Section Styling */
.hero-section {
  background-size: cover;
  background-color: #fffff4;
  background-position: center;
  width: 100%;
  /* max-width: 1440px; */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 60px;
  box-sizing: border-box;
}

.hero-content {
  background-image: url('https://kumbhyatrablob.blob.core.windows.net/kumbhyatraimages/img/where_to_stay/join-now-bg.png');
  background-size: cover;
  background-position: center;
  width: 100%;
  /* max-width: 1440px; */
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0px 80px;
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-position: right center;
  width: 100%;
  /* max-width: 1440px; */
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0px 50px;
  box-sizing: border-box;
  border-radius: 15px;
  position: relative;
  color: #ffffff;
}

.text-content {
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-width: 80%;
}

.text-content h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 5px;
}

.text-content p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 600px;
}

@media (max-width: 1024px) {
  .hero-section {
    padding: 0px 30px; /* Reduce horizontal padding */
  }

  .hero-content {
    height: 300px; /* Adjust height */
    padding: 0px 40px; /* Reduce horizontal padding */
    background-position: center; /* Adjust background position */
    border-radius: 12px; /* Slightly smaller border radius */
  }

  .text-content h2 {
    font-size: 36px; /* Reduce heading size */
  }

  .text-content p {
    font-size: 16px; /* Reduce paragraph font size */
    max-width: 100%; /* Allow full-width for smaller screens */
  }
}

/* Responsive styles for mobile devices */
@media (max-width: 768px) {
  .hero-section {
    padding: 0px 20px; /* Further reduce padding */
  }

  .hero-content {
    height: auto; /* Allow height to adjust automatically */
    flex-direction: column; /* Stack content vertically */
    padding: 20px; /* Add overall padding for better spacing */
    background-position: center top; /* Adjust background position */
  }

  .text-content {
    max-width: 100%; /* Use full width */
    align-items: center; /* Center-align text */
    text-align: center; /* Center-align content */
  }

  .text-content h2 {
    font-size: 28px; /* Further reduce heading size */
  }

  .text-content p {
    font-size: 14px; /* Further reduce paragraph font size */
  }
}

.hero-heading-section {
  background-size: cover;
  background-color: #fffff4;
  background-position: center;
  width: 100%;
  /* max-width: 1440px; */
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 20px 60px 10px;
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .hero-heading-section {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
  }
}

@media (max-width: 768px) {
  .hero-heading-section {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    text-align: center;
  }
}

.cta-button {
  background-color: #ff4500;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  text-transform: uppercase;
}

.cta-button:hover {
  background-color: #ff5722;
}

.hero-heading {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-subheading {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  font-size: 16px;
  font-weight: 600;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

.btn-contact {
  background-color: #ed5722;
}

/* New Codes/sections */

.highlight-section-product {
  width: 100%;
  /* max-width: 140px; */
  height: 50px;
  background-color: #fffff4;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.highlight-content {
  width: 90%;
  /* max-width: 120px; */
  height: 30px;
  background-image: url('https://kumbhyatrablob.blob.core.windows.net/kumbhyatraimages/img/landing-page/CTA.png'); /* Replace with your image */
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fffff4;
  padding: 16px;
  box-sizing: border-box;
  border-radius: 20px;
}

.highlight-heading {
  font-size: 42px;

  font-weight: 700;

  margin-bottom: 15px;
}

.highlight-paragraph {
  font-size: 18px;

  line-height: 1.6;

  max-width: 600px;
}

/* Highlight Section Styling */
.highlight-section-products {
  /* max-width: 1180px; */
  margin: 20px auto;
  padding: 20px;
  background-color: #fffff4;
  border-radius: 5px;
  text-align: center;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  /* justify-content: flex-start; */
  background-color: #fffff4;
}

.card {
  flex: 1 1 calc(33.333% - 20px); /* Ensure all cards have equal width */
  /* max-width: calc(33.333% - 20px); //Add a max-width for consistency */
  max-width: 400px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: #fffff4;
}

.card-image {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
}

.card-content {
  background-color: #fffff4;
  padding: 10px;
  text-align: start;
  font-family: 'Inter', sans-serif;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-header h2 {
  font-size: 20px;
  margin: 0;
  font-weight: 600;
}

.rating {
  background-color: #f05a28;
  color: #fff;
  font-weight: bold;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 14px;
}

.card-content p {
  margin: 0;
  color: #838383e2;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.5;
}

.card-content i {
  padding-right: 1%;
}

/* .card-1 .card-image,
        .card-2 .card-image,
        .card-3 .card-image,
        .card-4 .card-image,
        .card-5 .card-image,
        .card-6 .card-image,
        .card-7 .card-image, */
.card-1 .card-image {
  background-image: url('https://kumbhyatrablob.blob.core.windows.net/kumbhyatraimages/img/Camps images/Shivadya by Era Camps.jpg');
}
.card-2 .card-image {
  background-image: url('https://kumbhyatrablob.blob.core.windows.net/kumbhyatraimages/img/Camps images/Aagman Camp.jpg');
}
.card-3 .card-image {
  background-image: url('https://kumbhyatrablob.blob.core.windows.net/kumbhyatraimages/img/Camps images/Kumbh camp India.png');
}
.card-4 .card-image {
  background-image: url('https://kumbhyatrablob.blob.core.windows.net/kumbhyatraimages/img/Camps images/TUTC Sangam Nivas.jpg');
}
.card-5 .card-image {
  background-image: url('https://kumbhyatrablob.blob.core.windows.net/kumbhyatraimages/img/Camps images/ Kumbh Village.jpg');
}
.card-6 .card-image {
  background-image: url('https://kumbhyatrablob.blob.core.windows.net/kumbhyatraimages/img/Camps images/Shivir.jpg');
}
.card-7 .card-image {
  background-image: url('https://kumbhyatrablob.blob.core.windows.net/kumbhyatraimages/img/Camps images/Rishikul Kumbh Cottages.jpg');
}
/* .card-8 .card-image {
          background-image: url('https://kumbhyatrablob.blob.core.windows.net/kumbhyatraimages/img/taxi%20and%20auto%20images/');
        } */

@media (max-width: 768px) {
  .card {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
    height: auto;
  }

  .card-header h2 {
    font-size: 16px;
  }

  .card-content p {
    font-size: 12px;
  }

  .rating {
    font-size: 12px;
    padding: 4px 8px;
  }
}

@media (max-width: 480px) {
  .card {
    flex: 1 1 100%;
    max-width: 100%;
    height: auto;
  }

  .card-header h2 {
    font-size: 14px;
  }

  .card-content p {
    font-size: 12px;
  }

  .rating {
    font-size: 10px;
    padding: 3px 6px;
  }
}

.highlight-section {
  width: 100%;

  /* max-width: 1440px; */

  height: 500px;

  background-color: #fffff4;

  display: flex;

  align-items: center;

  justify-content: center;
}

.highlight-content {
  width: 95%;

  /* max-width: 1280px; */

  height: 350px;

  background-image: url('https://kumbhyatrablob.blob.core.windows.net/kumbhyatraimages/img/landing-page/CTA.png'); /* Replace with your image */

  background-size: cover;

  background-position: center;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-align: center;

  color: #fffff4;

  padding: 16px;

  box-sizing: border-box;

  border-radius: 20px;
}

.highlight-heading {
  font-size: 42px;

  font-weight: 700;

  margin-bottom: 15px;
}

.highlight-paragraph {
  font-size: 18px;

  line-height: 1.6;

  max-width: 600px;
}

/* Responsive Adjustments */

@media (max-width: 768px) {
  .highlight-heading {
    font-size: 32px;
  }

  .highlight-paragraph {
    font-size: 16px;
  }
}

/* Footer Section Styling */

.footer {
  width: 100%;

  /* max-width: 1440px; */

  height: 300px;

  background-color: #2d1f16;

  padding: 40px 80px;

  box-sizing: border-box;

  color: #fffff4;

  display: flex;

  flex-direction: column;

  justify-content: space-between;
}

.footer-columns {
  display: flex;

  justify-content: space-between;
}

.footer-column {
  max-width: initial;
}

.footer-heading {
  font-size: 18px;

  font-weight: 700;

  color: #ed5722;

  margin-bottom: 15px;
}

.footer-list {
  list-style: none;

  padding: 0;
}

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

.footer-list li a {
  text-decoration: none;

  font-size: 16px;

  color: #fffff4;

  transition: color 0.3s ease;
}

.footer-list li a:hover {
  color: #ed5722;
}

/* Social Media Styling */

.social-media {
  display: flex;

  flex-direction: column;

  align-items: flex-start;
}

.social-icons {
  display: flex;

  gap: 15px;

  margin-top: 10px;
}

.social-icon img {
  width: 30px;

  height: 30px;

  transition: transform 0.3s ease;
}

.social-icon img:hover {
  transform: scale(1.2);
}

/* Divider Line */

.footer-line {
  border: none;

  border-top: 1px solid #fffff4;
}

/* Copyright Text */

.footer-copyright {
  text-align: center;

  font-size: 14px;

  color: #fffff4;
}

/* Responsive Adjustments */

@media (max-width: 768px) {
  .footer {
    height: 1200px;
  }

  .footer-columns {
    flex-direction: column;

    gap: 20px;

    align-items: center;
  }

  .footer-column {
    max-width: 100%;

    text-align: center;
  }

  .social-media {
    align-items: center;
  }
}
