  /* Common Styles */
    * {
      margin: 0;
      padding: 0;
            box-sizing: border-box;
            justify-content:center;

    }

    body {
      font-family: Arial, sans-serif;
      background-color: #fff;
      color: #000;
      line-height: 1.6;
      
    }
      section {
      padding: 30px;
    }
  .hero-section {
    position: relative;
    height: 120vh; /* Adjust height as needed */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden; /* Prevent content from overflowing */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://kashmirtourprovider.com/wp-content/uploads/2024/05/shutterstock_2044050407-scaled.avif');
    background-size: cover;
    background-position: center;
    filter: brightness(40%);
    z-index: 1; /* Send the background behind the content */
}

.hero-content {
    position: relative; /* Make content position relative */
    z-index: 2; /* Bring the content above the background */
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Wrap for mobile */
    align-items: center;
    padding: 20px; /* Add some padding */
}

.hero-content > div {
    flex: 1;
    margin: 10px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8); /* White background with opacity */
    border-radius: 10px;
}

.hero-content h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 16px;
    margin-bottom: 15px;
}


    .cta-button {
      padding: 10px 20px;
      background-color: #000099;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

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

    /* Form Section in Hero */
    .form-group {
      margin-bottom: 15px;
    }

    .form-group label {
      display: block;
      font-size: 14px;
      margin-bottom: 5px;
      color: #333;
    }

    .form-group input, .form-group select, .form-group textarea {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-size: 14px;
    }

    .form-group textarea {
      resize: vertical;
      height: 100px;
    }

    .form-submit {
      display: flex;
      justify-content: center;
    }

    .form-submit button {
      padding: 10px 20px;
      background-color: #000099;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .form-submit button:hover {
      background-color: #333399;
    }

    /* Media Query for Mobile */
    @media (max-width: 1200px) {
      .hero-section {
        padding: 15px;
      }

      .hero-content {
        flex-direction: column; /* Stack columns on mobile */
        text-align: center;
      }

      .hero-content > div {
        width: 100%;
        margin-bottom: 20px;
      }
    }

  
    /* Cards Section */
    .cards-section {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 15px;
      text-align: center;

    }

    /* Card Styling */
    .card {
      background-color: white;
      border-radius: 10px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Light shadow for depth */
      border: 1px solid #e0e0e0; /* Subtle border */
      transition: transform 0.2s ease, box-shadow 0.2s ease; /* Smooth transition for hover effect */
      width:100%;

    }

    .card:hover {
      transform: translateY(-5px); /* Slight lift on hover */
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Enhanced shadow on hover */
    }

    .card img {
      width: 100%;
      height: 150px;
      object-fit: cover;
      border-radius: 10px;
      margin-bottom: 10px;
    }

    .card h3 {
      color: #000099;
      margin: 10px 0;
    }

    /* Footer Section */
    footer {
      background-color: #0354A6;
      color: white;
      padding: 20px;
      text-align: center;
    }

    footer p {
      font-size: 14px;
    }
       }
      

    /* Media Query for Mobile */
    @media (max-width: 678px) {
      .cards-section {
        grid-template-columns: 1fr;
      }
    }

hr {
  margin: 0.123em 0;
  border: none;
  border-bottom: solid 1px #000000;
}
.dashed {
  border-bottom: dashed 1px #000000; }
  
  /* header */
        .header {
    border-bottom: 3px solid #ededed;
    background-color: #ffffff;
    min-height: 68px;
    display: flex;
}

.hidden {
  display: none;
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
    -webkit-animation-duration: .4s;
    animation-duration: .4s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    position: relative; /* Ensure positioning context for z-index */
    z-index: 6;
}


@-webkit-keyframes slideInDown {
  0% {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  visibility: visible;
  }
  100% {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  }
  }
  @keyframes slideInDown {
  0% {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  visibility: visible;
  }
  100% {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  }
} 


.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
  -webkit-animation-duration: .6s;
  animation-duration: .6s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
   z-index: 6;
  }
  @-webkit-keyframes slideInUp {
  0% {
  -webkit-transform: translateY(15%);
  transform: translateY(15%);
  visibility: visible;
  }
  100% {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  }
  }
  @keyframes slideInUp {
  0% {
  -webkit-transform: translateY(15%);
  transform: translateY(15%);
  visibility: visible;
  }
  100% {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  }
  }

.header .header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
}

/* Mobile menu styles */ 
.header .header-row .mobile-menu {
  position: absolute;
  background-color: #2376ad;
  top: 100%;
  left: 0;
  width: 100%;
  border-top: 3px solid #e9900a;
}

.header .header-row .mobile-menu {
  background-color: #fff;
  padding: 15px 20px;
  box-shadow: 0 5px 8px rgb(0 0 0 / 15%);
}

.header .header-row .mobile-menu ul {
  list-style: none;
}

.header .header-row .mobile-menu ul li {
  margin-bottom: 10px;
}

.header .header-row .mobile-menu ul li:hover {
  background-color: rgba(222, 225, 226, 0.466);
}


/* Mega menu styles */
.header .header-row .mobile-menu ul li.mega-menu {
  position: relative;
}

.header .header-row .mobile-menu ul li.mega-menu .mega-menu-wrapper {
  display: none;
}

.header .header-row .mobile-menu ul li a {
  text-decoration: none;
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: rgb(128, 131, 131);
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 8px;
}

.header .header-row .mobile-menu ul li.mega-menu:hover .mega-menu-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 20px;
}

.header .header-row .mobile-menu ul li.mega-menu .mega-menu-wrapper .mega-menu-col {
  margin-bottom: 20px;
}

.header .header-row .mobile-menu ul li.mega-menu .mega-menu-wrapper .mega-menu-col h5 {
  font-weight: 800;
  text-transform: uppercase;
}

.header .header-row .mobile-menu ul li.mega-menu .mega-menu-wrapper .mega-menu-col ul li a {
  font-weight: 400;
}



/* Simple drop down menu */
.header .header-row .mobile-menu ul li.dropdown {
  position: relative;
}

.header .header-row .mobile-menu ul li.dropdown .sub-menu-wrapper {
  display: none;
}

.header .header-row .mobile-menu ul li.dropdown .sub-menu-wrapper ul li a {
  font-weight: 400;
  padding-left: 15px;
}

.header .header-row .mobile-menu ul li.dropdown:hover .sub-menu-wrapper {
  display: block;
}


/* Hide desktop menu on mobile up to 48em */
@media (max-width: 48em) {
  .header .header-row .header-right .main-menu {
    display: none;
  }
}


/* Show menu on desktop 48em and above */
@media (min-width: 48em) {

  .header {
    border-bottom: 3px solid #ededed;
    background-color: #ffffff;
  }

  .header .header-row {
      display: flex;
      flex-flow: row nowrap;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      position: relative;
  }

  .header .mobile-toggler {
    display: none;
  }

  .header .header-row .header-right .main-menu {
    display: flex;
  }

  .header .header-row .header-right .main-menu li.menu-item {
    display: block;
  }

  .header .header-row .header-right .main-menu li.dropdown {
    position: relative;
  }

  .header .header-row .header-right .main-menu li.menu-item:not(:last-child) {
    margin: 0 20px 0 0;
  }

  .header .header-row .header-right .main-menu li.menu-item > a {
    font-size: 13px;
    font-weight: 600;
    line-height: 20px;
    color: #444444;
    padding: 40px 14px 40px 14px;
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
  }

  .header .header-row .header-right .main-menu li.menu-item a.active {
    color: #e9900a;
  }

  .header .header-row .header-right .main-menu .sub-menu-wrapper {
    position: absolute;
    text-align: left;
    margin: 0;
    z-index: 111;
    min-width: 100%;
    line-height: 20px;
    display: none;
  }

  /* Show dropdown menu on hover */
  .header .header-row .header-right .main-menu > li.menu-item:hover .sub-menu-wrapper {
    display: block;
  }

  .header .header-row .header-right .main-menu .dropdown ul.sub-menu {
    background-color: #ffffff;
    border-top: 3px solid #e9900a;
    min-width: 200px;
    padding: 0px 0;
    box-shadow: 0 5px 8px rgb(0 0 0 / 15%);
    text-transform: none;
  }

  .header .header-row .header-right .main-menu li.menu-item:hover .sub-menu-wrapper li.menu-item {
    padding: 0;
    margin-right: 0;
  }

  .header .header-row .header-right .main-menu li.menu-item:hover .sub-menu-wrapper li.menu-item > a {
    padding: 8px;
    display: block;
    text-transform: none;
    color: #6d6c6c;
    font-size: 14px;
    font-weight: 400;
  }

  .header .header-row .header-right .main-menu .sub-menu-wrapper ul li:not(:last-child) {
    border-bottom: 1px solid rgba(204, 204, 204, 0.432);
  }

  .header .header-row .header-right .main-menu .sub-menu-wrapper ul li:hover {
    background-color: #ededed;
  }


  /* Mega menu styles */
  .header .header-row .header-right .main-menu .mega-menu .mega-menu-wrapper {
    position: absolute;
    left: 0px;
    display: none;
    padding: 20px 25px;
    background-color: #ffffff;
    border-top: 3px solid #e9900a;
    width: 100%;
    box-shadow: 0 5px 8px rgb(0 0 0 / 15%);

  }


  /* Show mega menu on hover */
  .header .header-row .header-right .main-menu li.mega-menu:hover .mega-menu-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .header .header-row .header-right .main-menu li.mega-menu:hover .mega-menu-wrapper .mega-menu-col h5 {
    text-transform: uppercase;
    margin-bottom: 15px;
    padding-left: 8px;
  }

  .header .header-row .header-right .main-menu li.mega-menu:hover .mega-menu-wrapper .mega-menu-col ul {
    list-style: none;
    margin-left: 0px;
    margin-right: 20px;
  }

  .header .header-row .header-right .main-menu li.mega-menu:hover .mega-menu-wrapper .mega-menu-col ul li a {
    text-decoration: none;
    padding: 8px;
    display: block;
    font-size: 14px;
    color: rgba(149, 151, 151, 1);
  }

  .header .header-row .header-right .main-menu li.mega-menu:hover .mega-menu-wrapper .mega-menu-col ul li:hover a {
    background-color: rgba(222, 225, 226, 0.466);
  }

}






.header .mobile-toggler {
    color: #ffffff;
    background-color: #0088cc;
    cursor: pointer;
    padding: 7px 13px;
    text-align: center;
    font-size: 13px;
    vertical-align: middle;
    margin: 8px 0 8px 1em;
    line-height: 20px;
}




.hero {
  background: rgb(5,146,200);
  background: linear-gradient(107deg, rgba(5,146,200,1) 0%, rgba(15,113,117,1) 100%);
  padding: 50px 20px;
  min-height: 80vh;
  color: #fff;
  display: flex;
  text-align: center;
  align-items: center;
  font-size: 40px;
}

@media (min-width: 48em) {
  .hero {
    font-size: 60px;
  }
}

/* Container styles */
.container {
    margin-right: auto;
    margin-left: auto;
  }
  
  @media (max-width: 36em) {
    .container {
      max-width: 540px;
    }
  }
  
  @media (min-width: 36em) {
    .container {
      max-width: 540px;
    }
  }
  
  @media (min-width: 48em) {
    .container {
      max-width: 720px;
    }
  }
  
  @media (min-width: 62em) {
    .container {
      max-width: 960px;
    }
  }
  
  @media (min-width: 75em) {
    .container {
      max-width: 1140px;
    }
  }
  
  @media (min-width: 87.5em) {
    .container {
      max-width: 1380px;
    }
  }
  
  /* Travel form */
  
  .travel-form-container {
    width: 100%;
    margin: 50px auto;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.travel-form-heading {
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff;
}

.travel-form-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 15px;
}

.travel-form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.travel-form-label {
    margin-bottom: 5px;
    color: #ffffff;
}

.travel-form-input {
    width: 100%;
    padding: 8px;
    border: 1px solid black;
    border-radius: 4px;
    color: black;
}

.travel-form-submit {
    width: 100%;
    padding: 10px;
    background-color: #FEC20F;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
        color:black;

}

.travel-form-submit:hover {
    background-color: #0354A6;
    color:white;
}
/* Table of Content */
        .contain {
            display: flex;
            flex-wrap: wrap;
            padding: 10px;
            box-sizing: border-box;

        }
        .left-column, .right-column {
            box-sizing: border-box;
            padding: 10px;
        }
        .left-column {
            flex: 0 0 70%; /* Fixed 80% width */
                        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
margin:2px;
        }
        .right-column {
            flex: 0 0 20%; /* Fixed 20% width */
                        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
                        margin: 2px;

        }
        .content-box {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 4px;
        }
        .table-of-contents ul {
            list-style-type: none;
            padding: 0;
        }
        .table-of-contents ul li {
            margin-bottom: 5px;
        }
        @media (max-width: 600px) {
            .container {
                flex-direction: column;
            }
            .left-column, .right-column {
                flex: 1 1 100%; /* Full width on small screens */
            }
        } 
        
        /* Table*/
        .responsive-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
    text-align: left;
    padding:10px;
                box-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);

}

.table-header .header-cell {
    background-color: #fec20f;
    padding: 10px;
    border-bottom: 2px solid #ddd;
    color: black;
}

.table-body .data-cell {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    color:black;
}

/* Make the table responsive */
.table-wrapper {
    overflow-x: auto;
}

@media (max-width: 768px) {
    .responsive-table, .table-header, .table-body, .header-cell, .data-cell, .table-row {
        display: block;
    }

    .table-header {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .table-row {
        border: 1px solid #ddd;
        margin-bottom: 10px;
        display: block;
    }

    .data-cell {
        border: none;
        position: relative;
        padding-left: 50%;
        text-align: right;
        white-space: nowrap;
    }

    .data-cell:before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 50%;
        padding-left: 10px;
        font-weight: bold;
        text-align: left;
        white-space: nowrap;
    }
}

/* Button Send Enquiry */
<style>.button-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: 0 auto;
}

.button {
    flex: 1;
    padding: 12px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    margin: 5px;
    box-sizing: border-box;
}

.send-enquiry {
    background-color: #0354a6; /* Blue color for Send Enquiry */
}

.whatsapp {
    background-color: #2e294e; /* WhatsApp green color */
}

/* Optional: Add some responsive behavior */
@media (max-width: 600px) {
    .button {
        padding: 10px;
        font-size: 14px;
    }
}

/* Inclusions icons */
.icons-row {
                                            display: flex;
                                            justify-content: space-between;
                                            margin-top: 15px;
                                            background-color: #fec20f;
                                            Border-radius:15px;
                                            padding:15px;
                                        }
                                        
                                        .icon {
                                            text-align: center;
                                            font-size: 9px; /* Font size set to 9px */
                                        }
                                        
                                        .icon img {
                                            width: 25px;
                                            height: 25px;
                                            text-align: center;
                                        }
                                        /* FAQS sections */
                                     
/* Writing section */
        .section-container {
            max-width: 1800px;
            margin: 0 auto;
            padding: 30px;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
        }
        .section-heading {
            color: #0354a6;
            font-size: 1.5em;
            margin-bottom: 20px;
            text-align:left;
        }
        .section-paragraph {
            margin-bottom: 15px;
            
        }
        @media (max-width: 600px) {
            .section-heading {
                font-size: 1.2em;
            }
        }
    /* why Choose Us section */
  
 
            /* Footer Section*/
            
            
    .newsletter-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    box-sizing: border-box;
}

.newsletter-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 600px;
    width: 100%;
}

p {
    margin-bottom: 20px;
    color: black;
}

.footer-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.newsletter-email {
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    width: 100%;
    max-width: 400px;
    font-size: 16px;
    margin-bottom: 20px;
    transition: border-color 0.3s;
}

.newsletter-email:focus {
    border-color: #007BFF;
    outline: none;
}

button {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    background-color: #007BFF;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}</sytle>

     <style>
.footer {
    background-color:white;
    color: #fff;
    padding: 50px 30px;

}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: black;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin: 10px;

}
.footer-column h5 { font-size: 25px;}

.footer-logo {
    max-width: 100px;
}

.footer-menu, .footer-services {
    list-style: none;
    padding: 0;
    text-decoration: none;
}

.footer-menu li, .footer-services li {
    margin: 5px 0;
}

.footer-menu a, .footer-services a, .footer-column a {
    color: #fff;
    text-decoration: none;
}

.footer-menu a:hover, .footer-services a:hover {
    text-decoration: underline;
}

.social-icons {
    margin-top: 10px;
}

.social-icon {
    margin-right: 10px;
}

.social-icon img {
    width: 24px;
    height: 24px;
}

.tripadvisor-logo {
    max-width: 120px;
    margin-top: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }
}
/* Pop up Section */
  .booking-form {
          background-color: rgba(0, 0, 0, 0.7); /* Black background with 10% opacity */
          padding: 30px;
          border-radius: 10px;
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
          width: 370px;
      }
      h3 {
          text-align: center;
          margin-bottom: 25px;
          font-size: 24px;
          color: #fff; /* White text color */
      }
      .form-row {
          display: flex;
          justify-content: space-between;
          margin-bottom: 15px;
      }
      .form-group {
          display: flex;
          flex-direction: column;
          width: 48%;
      }
      .form-group label {
          margin-bottom: 5px;
          font-size: 14px;
          color: #fff; /* White label text color */
      }
      .form-group input, .form-group select {
          padding: 10px;
          border: 1px solid white; /* White border for inputs */
          border-radius: 5px;
          font-size: 14px;
          background-color: transparent; /* Transparent background */
          color: #fff; /* White text color for input fields */}
      button {
          width: 100%;
          padding: 10px;
          background-color: #0048ff;
          color: white;
          border: none;
          border-radius: 5px;
          cursor: pointer;
          font-size: 16px;
      }
      button:hover {
          background-color: #081bc1;
      }
      /* Popup styles */
      .popup-form {
          display: none; /* Hidden by default for the popup */
          position: fixed;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          z-index: 1000;
      }
      /* Background overlay for popup */
      .overlay {
          display: none;
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background-color: rgba(0, 0, 0, 0.5);
          z-index: 999;
      }
       /* Close button (cross mark) styles */
.close-btn {
position: absolute;
top: 0px;
right: 0px;
font-size: 20px;
background-color: rgb(40, 112, 237);
color: white; /* Red color for the close button */
cursor: pointer;
border: none;
}</style>