* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: white;

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top:80px;
}
html, body {
    overflow-x: hidden;
    width: 100%;
}

/* Top Contact Bar */


.top-bar {
    position: fixed;
    width: 100%;
    min-height: 40px;
    background: #0f172a;
    color: white;

    display: flex;
    /* justify-content: center; */
     justify-content: flex-end;
    align-items: center;

    padding: 0 8%;
    
    /* margin-top: 10px; */
    z-index: 1001;
    font-size: 14px;
    text-align: center;
}

.top-bar h3{
    margin: 0;
    line-height: 20px;
}
.top-btn{
    color: rgb(166, 235, 5);
    text-decoration: none;
    font-weight: 600;
}

#musicBtn{
    background: #16a34a; /* Green = Stop state */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
}

/* Navbar */
.navbar{
    position: fixed;
    top: 40px;   /* top-bar height */
    left: 0;
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 8%;

    background: rgba(0,0,0,.25);
    backdrop-filter: blur(15px);

    z-index: 1000;
}

.nav-links a {
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: white;
    transition: .3s;
}
.nav-links a:hover::after {
    width: 100%;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo img {
    height: 40px;
    width: auto;
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #ffb703;
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Book Now Button */
.nav-btn {
    background: linear-gradient(135deg, #ffb703, #fb8500);
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.nav-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* Hero Slider */
.hero-slider::before {
    content: "";
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0);

    z-index: 1;
}

.hero-text {
    z-index: 10;
}

.hero-text h1 {
    font-size: 65px;
    font-weight: 700;
}

.hero-text p {
    font-size: 22px;
}

.hero-slider {
  
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 1s;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slider {
    height: 100vh;
    /* background: url("./images/insta2.png") center/cover; */
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 90%;
}

.hero-tag {
    background: rgba(255, 255, 255, .15);
    padding: 10px 20px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.hero-content h1 {
    font-size: 70px;
    margin: 20px 0;
}

.hero-content h1 span {
    color: #ffb703;
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 30px;
}

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

.card span {
    display: block;
    color: #198754;
    font-size: 22px;
    font-weight: 700;
}

.btn-outline {
    border: 2px solid white;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    margin-left: 10px;
    border-radius: 5px;
}
/* package start */

.packages {

  padding: 60px 20px;
  text-align: center;

}

.packages h2 {
  font-size: 32px;
  color: #222;
  
}

.package-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

/* CARD BASE */

.card {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* CONTENT */
.card-content {
  padding: 15px;
}

.card-content h3 {
  font-size: 20px;
  margin: 10px 0;
}

.card-content p {
  color: #666;
}

/* LIST */
.card-content ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  text-align: left;
}

.card-content ul li {
  font-size: 14px;
  padding: 4px 0;
  color: #444;
}

/* BUTTON */
.book-btn {
  background: linear-gradient(45deg, #ff512f, #dd2476);
  color: white;
  border: none;
  padding: 10px;
  width: 100%;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
  

}

.book-btn:hover {
  opacity: 0.9;
}

/* BADGE */
.badge {
  display: inline-block;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 20px;
  color: white;
  margin-bottom: 8px;
}

/* COLOR THEMES */
.card.ooty .badge {
  background: #00bcd4;
}

.card.kodaikanal .badge {
  background: #ff9800;
}

.card.kerala .badge {
  background: #4caf50;
}
 /*  package end*/

.featured{
    border:3px solid #ff9800;
}

.modal {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    top: 0;
    left: 0;
}

.modal-content {
    background: white;
    width: 400px;
    margin: 10% auto;
    padding: 30px;
    border-radius: 10px;
}

.close {
    float: right;
    cursor: pointer;
}


/* About Us & Gallery */
.about{
    padding: 80px 20px;
    text-align: center;
    background: #f8f9fa;
}

.about h2{
    font-size: 32px;
    margin-bottom: 40px;
    color: #222;
}

.features{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: auto;
}

.feature-card{
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
    cursor: pointer;
}

.feature-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.icon{
    font-size: 40px;
    margin-bottom: 10px;
}

.feature-card h3{
    margin-bottom: 8px;
    color: #333;
}

.feature-card p{
    font-size: 14px;
    color: #666;
}
/* about end*/

/* Gallery */

.gallery{
    padding: 80px 20px;
    text-align: center;
    background: #fff;
}

.gallery h2{
    font-size: 32px;
    margin-bottom: 40px;
}

.gallery-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    max-width: 1100px;
    margin: auto;
}

.gallery-item{
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}

.gallery-item img{
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.4s ease;
}

/* zoom effect */
.gallery-item:hover img{
    transform: scale(1.1);
}

/* overlay */
.overlay{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
    font-size: 14px;
    opacity: 0;
    transition: 0.3s;
}

.gallery-item:hover .overlay{
    opacity: 1;
}
/* Gallery end */

/* Contact ,Form start*/
.contact{
    padding: 80px 20px;
    background: #f4f6f9;
    text-align: center;
}

.contact h2{
    font-size: 32px;
    margin-bottom: 40px;
}

.contact-container{
    display: flex;
    gap: 30px;
    max-width: 1100px;
    margin: auto;
    align-items: stretch;
}
.contact-info p{
    margin:12px 0;
    font-size:16px;
    line-height:1.6;
}

/* LEFT SIDE */
.contact-info{
    flex: 1;
    background: linear-gradient(135deg, #0984e3, #74b9ff);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: left;
}

.contact-info h3{
    margin-bottom: 15px;
}

/* RIGHT SIDE FORM */
.contact-form{
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea{
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color: #0984e3;
    box-shadow: 0 0 5px rgba(9,132,227,0.3);
}

.contact-form button{
    padding: 12px;
    background: #0984e3;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.contact-form button:hover{
    background: #0652dd;
}
.contact-info .logo{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:24px;
    font-weight:700;
    color:#fff;
    margin:20px 0;
}

@media (max-width:768px){

    .contact-container{
        flex-direction:column;
    }

    .contact h2{
        font-size:28px;
    }

    .contact-info,
    .contact-form{
        width:100%;
    }
}
/* contact, form end */

footer {
    background: #111827;
    color: white;
    text-align: center;
    padding: 50px 20px;
}

footer h3 {
    margin-bottom: 10px;
}

footer p {
    margin: 8px 0;
}

.whatsapp {
    position: fixed;
    
    right: 20px;
    bottom: 20px;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 50px;
    font-weight: 600;
}


@media(max-width:768px) {

    .hero-text h1 {
        font-size: 35px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .navbar {
        display: none;
    }

    .navbar{
        flex-direction:column;
        gap:15px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

    .logo{
        font-size:24px;
    }

}

/* Testimonials */

.testimonials {
    padding: 80px 8%;
    background: white;
    text-align: center;
}

.testimonial {
    display: none;
    max-width: 700px;
    margin: auto;
}

.testimonial.active {
    display: block;
}

.testimonial p {
    font-size: 20px;
    margin-bottom: 15px;
}


.reveal {

    opacity: 0;

    transform: translateY(80px);

    transition: 1s;
}

.reveal.active {

    opacity: 1;

    transform: translateY(0);
}

.stats {
    padding: 80px 8%;
    background: #0d6efd;

    color: white;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

    gap: 30px;

    text-align: center;
}

.stat-box h2 {
    font-size: 50px;
}


.instagram {
    padding: 80px 8%;
    text-align: center;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    gap: 20px;

    margin: 30px 0;
}

.insta-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;

    border-radius: 15px;

    transition: .4s;
}

.insta-grid img:hover {
    transform: scale(1.05);
}

.insta-btn {
    background: #E1306C;
    color: white;
    text-decoration: none;

    padding: 12px 25px;

    border-radius: 30px;
}


.map-section {
    padding: 80px 8%;
    background: #fff;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 25px;
}

.btn,
.book-btn {
    
    background: linear-gradient(135deg,
            #0d6efd,
            #198754);

    border: none;

    color: white;

    transition: .3s;

}
.btn{
    display:inline-block;
    padding:14px 32px;
    background:linear-gradient(135deg,#ffb703,#fb8500);
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:0.3s;
    box-shadow:0 5px 15px rgba(0,0,0,.2);
}

.btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,0,0,.25);
}

.btn:hover,
.book-btn:hover {

    transform: translateY(-3px);

    box-shadow: 0 10px 25px rgba(0, 0, 0, .2);
}

/* Vehicle Fleet */
.vehicles {
  padding: 60px 20px;
  text-align: center;
  background: #f5f7fa;
}

.vehicle-subtitle {
  color: #666;
  margin-bottom: 30px;
}

.vehicle-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

.vehicle-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.vehicle-card:hover {
  transform: translateY(-8px);
}

.vehicle-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.vehicle-content {
  padding: 15px;
}

.vehicle-content h3 {
  margin: 10px 0;
  font-size: 20px;
}

.vehicle-info {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #555;
  margin: 10px 0;
  flex-wrap: wrap;
  gap: 5px;
}

.vehicle-content h2 {
  color: #e63946;
  font-size: 18px;
  margin: 10px 0;
}

/* Buttons */
.book-btn, .callback-btn {
  display: block;
  padding: 10px;
  margin: 8px 0;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.book-btn {
  background: #25D366;
  color: white;
}

.callback-btn {
  background: #007bff;
  color: white;
}
/* vechile end */

.tour-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    transition: .4s;
}

.tour-card:hover {
    transform: translateY(-10px);
}

.tour-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.tour-content {
    padding: 25px;
}

.location {
    display: inline-block;
    background: #0d6efd;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    margin: 10px 0;
    font-size: 14px;
}

.tour-content h4 {
    color: #ff6600;
    margin: 15px 0;
}

.choose-btn {
    width: 100%;
    padding: 12px;
    border: 1px solid #0d6efd;
    background: white;
    cursor: pointer;
    border-radius: 8px;
}

.callback-btn {
    display: block;
    text-align: center;
    margin-top: 10px;
    padding: 12px;
    border: 1px solid #ff6600;
    color: #ff6600;
    text-decoration: none;
    border-radius: 8px;
}

/* Starts start*/
.stats{
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 80px 20px;
    color: white;

    /* background: url("./images/mountain.jpg") center/cover no-repeat; */
    position: relative;
}
.stats::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 31, 182, 0.6);
    z-index: 1;
}
.stat-box{
    position: relative;
    z-index: 2;
    text-align: center;
}
/* Starts end */


/* Tariff Section */
.tariff{
    padding:80px 8%;
    background:#f8fafc;
    text-align:center;
}

.table-container{
    overflow-x:auto;
    margin-top:30px;
}

.tariff table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.tariff th{
    background:#0f766e;
    color:#fff;
    padding:15px;
    font-size:15px;
}

.tariff td{
    padding:14px;
    border:1px solid #e5e7eb;
}

.tariff tr:nth-child(even){
    background:#f9fafb;
}

.tariff tr:hover{
    background:#ecfeff;
}

@media(max-width:768px){
    .tariff table{
        min-width:900px;
    }
}




/* vechile over card */
.vehicle-card{
    position:relative;
    overflow:hidden;
}

.price-popup{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.9);
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    opacity:0;
    transition:0.4s;
    padding:20px;
    text-align:center;
}

.vehicle-card:hover .price-popup{
    opacity:1;
}

.price-popup h4{
    margin-bottom:15px;
}



/* Tariff Section end */


@media(max-width:768px) {

    .hero-text h1 {
        font-size: 35px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .navbar {
        display: none;
    }

    .navbar{
        flex-direction:column;
        gap:15px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

    .logo{
        font-size:24px;
    }

}
   @media (max-width: 768px){
    .top-bar{
        min-height: 60px;
        font-size: 13px;
          
    }
@media (max-width:768px){

    .top-bar{
        height:auto;
        padding:8px 15px;
        flex-direction:column;
        gap:5px;
        text-align:center;
        font-size:12px;
    }
 
}

    .navbar{
        top:60px;
        padding:15px;
        flex-direction:column;
        gap:15px;
    }

    .logo{
        font-size:22px;
    }

    .logo img{
        height:32px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
        gap:12px;
    }

    .nav-links a{
        font-size:14px;
    }

    .hero-content h1{
        font-size:36px;
    }

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

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

    .btn,
    .btn-outline{
        width:220px;
        text-align:center;
    }

    .whatsapp{
        right:15px;
        bottom:15px;
        padding:12px 16px;
        font-size:14px;
    }
}
