/*style.css*/
/* Location Container Setup */
.location-box {
    background: rgba(255, 255, 255, 0.1); /* Light transparent white */
    backdrop-filter: blur(10px); /* Blur effect like glass */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 25px;
    max-width: 350px;
    margin: 20px auto;
    text-align: center;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    color: #333; /* Dark text for readability */
}

/* Heading Styling */
.location-box p {
    font-family: 'Poppins', sans-serif;
    margin: 10px 0;
    font-size: 16px;
    font-weight: 500;
}

/* Values (City & Altitude) Styling */
#location-name, #altitude-value {
    color: #0077b6; /* Professional Blue color */
    font-weight: 700;
    display: block;
    font-size: 20px;
    margin-top: 5px;
}

/* The "Meri Location" Button */
.btn-location {
    background: linear-gradient(135deg, #00b4d8, #0077b6); /* Gradient Blue */
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px; /* Capsule shape */
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(0, 119, 182, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px; /* Icon aur text ke beech space */
}

/* Hover Effect */
.btn-location:hover {
    transform: translateY(-3px); /* Thoda upar uthega */
    box-shadow: 0 6px 20px rgba(0, 119, 182, 0.4);
    background: linear-gradient(135deg, #0077b6, #00b4d8);
}

/* Active Click Effect */
.btn-location:active {
    transform: scale(0.95);
}

/* Dashboard container ka design */
.stats-box {
    background: rgba(255, 255, 255, 0.2); /* Glass effect ke liye transparent background */
    backdrop-filter: blur(10px); /* Background blur effect */
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 20px;
    border-radius: 20px;
    color: #333;
    text-align: center;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
    margin: 20px;
}

/* Stats text ka style */
.stats-box p {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 10px 0;
    color: #2c3e50;
}

/* Number ko highlight karne ke liye */
#distance-display, #places-display {
    color: #e67e22; /* Orange color for a 'travel' feel */
    font-size: 1.5rem;
}
.altitude-box {
    background: #f4f4f4; /* Light grey background */
    color: #d81515;
    padding: 15px;
    border-radius: 10px;
    margin: 20px auto;
    text-align: center;
    margin-top: 10px; /* Paragraph se thoda door */
    border: 1px solid #ddd;
    width: 100%; /* Ya phir 'auto' rakh sakte ho */
    max-width: 300px; /* Size control karne ke liye */
    text-align: center;
}

.itinerary-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0;
}

.btn {
    padding: 12px 24px;
    background-color: #25D366; /* WhatsApp Green */
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background-color: #128C7E;
    transform: scale(1.05);
}

.weather-card {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    padding: 15px;
    border-radius: 15px;
    margin: 15px;
    border: 1px solid #7dd3fc;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.weather-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: bold;
    color: #0369a1;
}

.packing-tip {
    margin-top: 10px;
    font-size: 14px;
    color: #075985;
    text-align: center;
    background: rgba(255, 255, 255, 0.5);
    padding: 8px;
    border-radius: 10px;
    width: 100%;
}

/* Jab Night Mode On hoga toh ye class body par lagegi */
body.night-mode {
    background-color: #050b1a !important; /* Ekdum gehra neela/kaala rang */
    color: #ffffff !important;
    transition: background-color 1s ease;
}

/* Taaron ki setting */
#star-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Isse taare buttons ko block nahi karenge */
    z-index: 999;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0.5;
    animation: twinkle var(--duration) infinite ease-in-out;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Night Mode mein button ka style badal jaye */
body.night-mode #starryBtn {
    background: #1a2a4a;
    color: #ffeb3b;
    border-color: #ffeb3b;
    box-shadow: 0 0 10px #ffeb3b;
}

.greeting-container {
    background: #f0f7ff; /* Halka neela rang, fresh look ke liye */
    padding: 10px;
    text-align: center;
    font-weight: bold;
    font-size: 15px;
    color: #003366;
    border-bottom: 2px solid #007bff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#welcome-text {
    font-family: 'Arial', sans-serif;
}

.sun-moon-icon {
    font-size: 20px;
}

 .Trekking-section {
    padding: 25px 15px;
    background: #ffffff;
    margin: 30px auto;
    max-width: 800px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.trekking-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 20px;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    overflow: hidden; /* Corners round karne ke liye */
}

.trekking-table th {
    background-color: #ff0000; /* Professional Blue */
    color: white;
    padding: 15px;
    text-align: left;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.trekking-table td {
    padding: 14px;
    border-bottom: 1px solid #dee2e6;
    color: #333;
    font-size: 15px;
}

/* Alternate row color (Zebra effect) */
.trekking-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

/* Hover effect: Mouse le jaane par row highlight hogi */
.trekking-table tr:hover {
    background-color: #eef6ff;
    transition: 0.3s;
}
 
.weatherclimate-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 20px;
    padding: 25px 15px;
    background: #ffffff;
    box-shadow:  0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #dee2e6;
    border-radius: 18px;
    overflow: hidden; /* Corners round karne ke liye */
}

.weatherclimate-table th {
    background-color: #0056b3; /* Professional Blue */
    color: white;
    padding: 15px;
    text-align: left;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.weatherclimate-table td {
    padding: 14px;
    border-bottom: 1px solid #dee2e6;
    color: #333;
    font-size: 15px;
}

/* Alternate row color (Zebra effect) */
.weatherclimate-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

/* Hover effect: Mouse le jaane par row highlight hogi */
.weatherclimate-table tr:hover {
    background-color: #0056b3;
    transition: 0.3s;
}

/* Calculator Main Container */
.calculator-box {
    background: linear-gradient(135deg, green 0%, lightgreen 100%);
    color: white;
    padding: 35px;
    border-radius: 25px;
    max-width: 550px;
    margin: 50px auto;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.calculator-box h3 {
    font-size: 26px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: red;
}

.calculator-box p {
    font-size: 14px;
    margin-bottom: 25px;
    opacity: 0.9;
}

/* Input Groups */
.calc-group {
    text-align: left;
    margin-bottom: 20px;
}

.calc-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #ade8f4;
}

/* Select and Input Styling */
.calculator-box select, 
#duration_display {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 2px solid transparent;
    font-size: 15px;
    background: #ffffff;
    color: #333;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.calculator-box select:focus {
    border-color: #90e0ef;
    outline: none;
    box-shadow: 0 0 10px rgba(144, 224, 239, 0.5);
}

#duration_display {
    background: #e0f1ff;
    color: #03045e;
    cursor: default;
}

/* Price Display Section */
.total-price {
    font-size: 32px;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 20px;
    margin: 30px 0;
    border: 2px dashed rgba(255, 255, 255, 0.4);
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.total-price span {
    color: #ff0000; /* Price highlighted in Neon Cyan */
}

/* WhatsApp Button */
.book-btn {
    background: #ff0000;
    color: #ffffff;
    border: none;
    padding: 18px;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 700;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.book-btn:hover {
    background: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4);
}

/* Responsive for Mobile */
@media (max-width: 480px) {
    .calculator-box {
        padding: 20px;
        margin: 20px;
    }
    .total-price {
        font-size: 24px;
    }
}

.essentials-section {
    background-color: #fff3cd; /* Light yellow like a notice board */
    padding: 20px;
    margin: 30px auto;
    max-width: 800px;
    border-radius: 10px;
    border-left: 8px solid #ffc107; /*&copy;* yeh iske liye © */
}

.tips-list {
    list-style: none;
    padding: 0;
}

.tips-list li {
    margin-bottom: 12px;
    font-size: 16px;
    color: #856404;
    line-height: 1.5;
}
.features-section {
    padding: 40px 20px;
    background-color: #f0f4f8;
    margin-top: 30px;
}

.feature-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.feature-item .icon {
    font-size: 40px;
    display: block;
    margin-bottom: 10px;
}

.feature-item h4 {
    margin: 10px 0;
    color: #0056b3;
}


.weatherclimate-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 20px;
    max-width:800px;
    margin: 30px auto;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    overflow: hidden; /* Corners round karne ke liye */
}

.weatherclimate-table th {
    background-color: #ff0000; /* Professional Blue */
    color: white;
    padding: 15px;
    text-align: left;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.weatherclimate-table td {
    padding: 14px;
    border-bottom: 1px solid #dee2e6;
    color: #333;
    font-size: 15px;
}

/* Alternate row color (Zebra effect) */
.weatherclimate-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

/* Hover effect: Mouse le jaane par row highlight hogi */
.weatherclimate-table tr:hover {
    background-color: #eef6ff;
    transition: 0.3s;
}
   
/* Table Section Styling */
.price-section {
    padding: 25px 15px;
    background: #ffffff;
    margin: 30px auto;
    max-width: 800px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.price-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 20px;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    overflow: hidden; /* Corners round karne ke liye */
}

.price-table th {
    background-color: #ff0000; /* Professional Blue */
    color: white;
    padding: 15px;
    text-align: left;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.price-table td {
    padding: 14px;
    border-bottom: 1px solid #dee2e6;
    color: #333;
    font-size: 15px;
}

/* Alternate row color (Zebra effect) */
.price-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

/* Hover effect: Mouse le jaane par row highlight hogi */
.price-table tr:hover {
    background-color: #eef6ff;
    transition: 0.3s;
}
 

/* Mobile Responsive: Choti screen par text chota ho jayega */
@media (max-width: 600px) {
    .price-table th, .price-table td {
        padding: 10px;
        font-size: 13px;
    }
    .price-section h2 {
        font-size: 20px;
    }
}
.reviews-section {
    width: 90%;
    margin: 40px auto;
    font-family: Arial, sans-serif;
}

.review-card {
    background: #f9f9f9;
    border-left: 5px solid #e63946; /* Wahi red color jo top bar ka hai */
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
}

.review-card p {
    font-style: italic;
    color: #444;
    margin-bottom: 8px;
    font-size: 16px;
}

.customer-name {
    font-weight: bold;
    color: #e63946;
    font-size: 14px;
}
.booking-container {
    text-align: center;
    margin: 30px 0;
}

.whatsapp-btn {
    background-color: rgb(79, 243, 79); /* WhatsApp Green Color */
    color: #ffffff;
    padding: 15px 25px;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    border-radius: 50px; /* Round button */
    display: inline-block;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.whatsapp-btn:hover {
    background-color: #128c7e;
    transform: scale(1.05);
}
/* --- Sirf ise <style> tag ke andar paste karein --- */

.top-bar {
    background-color: #e63946 !important; /* Pakka Red Color */
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #b91c1c;
    position: sticky;
    top: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 1000;
}

.site-title {
    font-size: 15px;
    font-weight: bold;
    color: white !important; /* Pakka White Color */
}

.hamburger-btn {
    font-size: 22px;
    background: none;
    color: black !important;
    border: 1px solid white;
    padding: 2px 8px;
    border-radius: 4px;
    cursor: pointer;
}

p {
    width: 90%;
    margin: 20px auto;
    line-height: 1.6;
    font-size: 18px;
    color: #333;
    word-wrap: break-word;
}
body {
    background: silver;
    font-family: 'Arial', sans-serif;

     
  
    opacity: 0;
    animation: fadeIn 1.5s ease-in forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }

  } 

img {
    border-radius: 15px;
}
h1{
   color: purple;
   font-size: 40px;
   background: white;
   border-radius: 18px;
  
  text-align: center;       /* already aapke paas hai */
  display: inline-block;    /* animation ke liye zaroori */
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
.myimg {
    display: block;
    margin: 15px auto;
    max-width: 100%;
    height: auto;
}
   
  
   h2{
     color: red;
     }
     p{color: blue}
h{
     font-size: 18px;
}
   h3{
     text-align: center;
     font-size: 40px;
     color: red;
     background: white;
     border-radius: 18px;
    
      }
     p{
        font-size: 18px;
        background: #ffffff;
        border-radius: 20px;
        color: #000;
     }
     h4{
      color: red;
      background: white;
      border-radius: 18px; 
      font-size: 40px;
      clear: both;
     }
     .topbar {
    background: black;
    color: white;
    padding: 8px 40px;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    font-size: 14px;
     }
h5{
  font-size: 30px;
  color: purple;
}
h6{
  font-size: 30px;
  color: purple;
}
h7{
  font-size: 30px;
  color:purple;
}
h8{
  font-size:30px;
  color: purple;
}
h9{
  font-size:30px;
  color: purple;
  background: white;
  border-radius: 18px;
}

h10{
  font-size: 30px;
  color: red;
  background: white;
  border-radius: 18px;
}
h11{
   text-align: center;
  font-size: 30px;
  color: red;
}
h12{
  text-align: center;
     font-size: 30px;
     color: red;
     background: white;
     border-radius: 18px;
}
h14{
    text-align: center;
    font-size: 30px;
    background: yellow;
    border-radius: 5px;
    color: #ff0000;
}

.footer {
    background-color: black; /* Dark color jo professional dikhe */
    color: white;
    padding: 40px 0 20px 0;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; /* Mobile par responsive hone ke liye */
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    margin: 10px;
    min-width: 250px;
}

.footer-section h3 {
   border-bottom: 2px solid white;
    padding-bottom: 10px;
    color:purple;
}
.footer-section h4{
    border-bottom: 2px solid #ffffff;
    padding-bottom: 10px;
    color: purple;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section a {
    color: blue;
    text-decoration: none;
}

.footer-section a:hover {
    color: white; /* Hover karne par chamakne ke liye */
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #7f8c8d;
    padding-top: 15px;
    font-size: 14px;
}
     
/* ===== Instagram Hover Effect ===== */
     a.insta-link {
  text-decoration: none;
  color: black;             /* Default text color */
  position: relative;
  font-size: 18px;
  font-weight: bold;
  display: inline-block;
}

a.insta-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, red, orange, yellow, green, blue, indigo, violet);
  transition: width 0.5s;
}

a.insta-link:hover::after {
  width: 100%;
}

a.insta-link:hover {
  background: linear-gradient(90deg, red, orange, yellow, green, blue, indigo, violet);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.5s;
}

p{
  /* ===== Instagram Hover Effect ===== */
     a.insta-link {
  text-decoration: none;
  color: black;             /* Default text color */
  position: relative;
  font-size: 18px;
  font-weight: bold;
  display: inline-block;
}

a.insta-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, red, orange, yellow, green, blue, indigo, violet);
  transition: width 0.5s;
}

a.insta-link:hover::after {
  width: 100%;
}

a.insta-link:hover {
  background: linear-gradient(90deg, red, orange, yellow, green, blue, indigo, violet);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.5s;
}
}
      
p{
  /* ===== Instagram Hover Effect ===== */
     a.insta-link {
  text-decoration: none;
  color: black;             /* Default text color */
  position: relative;
  font-size: 18px;
  font-weight: bold;
  display: inline-block;
}

a.insta-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, red, orange, yellow, green, blue, indigo, violet);
  transition: width 0.5s;
}

a.insta-link:hover::after {
  width: 100%;
}

a.insta-link:hover {
  background: linear-gradient(90deg, red, orange, yellow, green, blue, indigo, violet);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.5s;
}
}
p{
  /* ===== Instagram Hover Effect ===== */
     a.insta-link {
  text-decoration: none;
  color: black;             /* Default text color */
  position: relative;
  font-size: 18px;
  font-weight: bold;
  display: inline-block;
}

a.insta-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, red, orange, yellow, green, blue, indigo, violet);
  transition: width 0.5s;
}

a.insta-link:hover::after {
  width: 100%;
}
a.insta-link:hover {
  background: linear-gradient(90deg, red, orange, yellow, green, blue, indigo, violet);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.5s;
}
}

p{
  /* ===== Instagram Hover Effect ===== */
     a.insta-link {
  text-decoration: none;
  color: black;             /* Default text color */
  position: relative;
  font-size: 18px;
  font-weight: bold;
  display: inline-block;
}

a.insta-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, red, orange, yellow, green, blue, indigo, violet);
  transition: width 0.5s;
}

a.insta-link:hover::after {
  width: 100%;
}
a.insta-link:hover {
  background: linear-gradient(90deg, red, orange, yellow, green, blue, indigo, violet);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.5s;
}
}
