* {
  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;
}

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

  border: none;

  font-size: 14px;

  cursor: pointer;
}

.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 */

.contact-us-section {
  background-color: #fffff4;
  width: 100%;
  /* max-width: 1440px; */
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding-top: 10%;
  padding-bottom: 2%;
}

.how-to-reach-tabs {
  display: flex;
  justify-content: center;
  background-color: #2d1f16;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 auto;
  width: 80%;
  /* max-width: 1200px; */
  border: solid 1px black;
}

.tab-button {
  flex: 1;
  padding: 10px 20px;
  background: #2d1f16;
  color: #fff;
  border: none;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  outline: none;
  transition: background 0.3s ease;
}

.tab-button.active {
  background: #fffff4;
  color: #2d1f16;
  border-radius: 30px;
}

.tab-content {
  margin: 20px auto;
  text-align: center;
  font-size: 16px;
  background-color: #fffff4;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.hero-section-contact {
  background-color: #fffff4;
  width: 100%;
  /* max-width: 1440px; */
  height: 800px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 2%;
}

.content-contact {
  display: flex;
  width: 80%;
  height: 80%;
  /* max-width: 1200px; */
}

.form-container-contact {
  background-color: #2d1f16;
  width: 60%;
  height: 95%;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 8px 0 0 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.2); /* Black with 20% opacity */
}

.image-container-contact {
  background: url('https://kumbhyatrablob.blob.core.windows.net/kumbhyatraimages/img/haridwar/haridhwar-flight.png')
    no-repeat center center;
  background-size: cover;
  width: 40%;
  height: 95%;
  border-radius: 0 8px 8px 0;
  border: 1px solid rgba(0, 0, 0, 0.2); /* Black with 20% opacity */
}

.hero-section {
  background-color: #fffff4;
  width: 100%;
  /* max-width: 1440px; */
  height: 700px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 2%;
}

.content {
  display: flex;
  width: 80%;
  height: 70%;
  max-width: 1200px;
}

.image-container {
  background: url('https://kumbhyatrablob.blob.core.windows.net/kumbhyatraimages/img/haridwar/haridhwar-flight.png')
    no-repeat center center;
  background-size: cover;
  width: 40%;
  height: 95%;
  border-radius: 0 8px 8px 0;
  border: 1px solid rgba(0, 0, 0, 0.2); /* Black with 20% opacity */
}

.form-container {
  background-color: #2d1f16;
  width: 60%;
  height: 95%;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 8px 0 0 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.2); /* Black with 20% opacity */
}

h3 {
  font-weight: 600px;
  margin: 10px;
  color: #ed5722;
}

p {
  font-size: 16px;
  line-height: 1.5;
}

ul {
  list-style-type: disc;
  margin-left: 20px;
  line-height: 1.6;
  color: #fffff499;
  font-style: 'Inter' San;
}

ul li strong {
  color: #fffff4;
}
.content-container {
  text-align: left;
  color: #fffff4;
  border-radius: 12px;
}

@media (max-width: 1024px) {
  .hero-section-contact {
    flex-direction: column; /* Stack sections vertically */
    height: auto;
    padding-top: 5%;
  }

  .content-contact {
    width: 90%;
    height: auto;
    flex-direction: column;
  }

  .form-container-contact {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: none;
    order: 2; /* Move form container after the image */
  }

  .image-container-contact {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    order: 1; /* Move image container first */
  }

  .content-container {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero-section-contact {
    padding: 10px;
  }

  .content-contact {
    width: 100%;
  }

  .form-container-contact {
    width: 100%;
    padding: 15px;
    order: 2;
    border-radius: 0 0 8px 8px;
  }

  .image-container-contact {
    display: block;
    width: 100%;
    height: 200px;
    border-radius: 8px 8px 0 0;
    order: 1;
  }

  .content-container {
    font-size: 14px;
  }
}

/* New Codes/sections */

.highlight-section-product {
  width: 1%;

  max-width: 140px;

  height: 50px;

  background-color: #fffff4;

  display: flex;

  align-items: center;

  justify-content: flex-start;
}

.highlight-content {
  /* width: 10%; */

  /* 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 {
  width: 100%;

  /* max-width: 1440px; */

  height: 500px;

  background-color: #fffff4;

  display: flex;

  align-items: center;

  justify-content: center;
}

.highlight-content {
  width: 80%;

  /* 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: 1500px;
  }

  .footer-columns {
    flex-direction: column;

    gap: 20px;

    align-items: center;
  }

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

    text-align: center;
  }

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