 body, html {
    margin: 0;
    padding: 0;
    font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
    background: radial-gradient(circle at right,
  #6A2A0A 0%,
  #3E0A00 45%,
  #250600 100%
);
  }

/* Navbar background, blur, compact height */
.custom-navbar {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  padding: 6px 30px;   /* ⬅ smaller top-bottom padding */
}

/* Brand logo circle (slightly smaller) */
.brand-logo {
  width: 42px;
  height: 42px;
  background: #ffb300;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 20px;
  font-weight: 700;
  margin-right: 10px;
}

/* Brand subtitle */
.brand-subtitle {
  font-size: 12px;
  letter-spacing: 1px;
  margin-top: -2px; /* pulls text closer */
  display: block;
}

/* Contact number spacing */
.contact-number {
  margin-right: 1rem;
  font-size: 14px;
  color: white;
}

/* Navbar links – reduced vertical padding */
.navbar-nav .nav-link {
  padding: 4px 12px;   /* ⬅ smaller height */
  font-size: 15px;
}




  .hero {
    background: linear-gradient(to right, rgba(128,0,0,0.7), rgba(0,0,0,0.7)), url('images/murugan123.jpeg');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    min-height: 100vh;
    position: relative;
  }
  .hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 70px;
    line-height: 1.2;
  }
  .highlight { color: #ffb300; }
  .btn-gold {
    background: linear-gradient(to right, #ffba00, #d98b00);
    color: #000;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 600;
  }
  .btn-gold:hover {
  background: linear-gradient(to right, #ffba00, #d98b00); 
  color: #000;
  transform: translateY(-2px); /* slight lift */
}
  .btn-outline-gold {
    border: 2px solid #fff;
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 600;
  }
  .navbar-brand {
    font-size: 26px;
    font-weight: 600;
  }

  /* Animation */
  @keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px);}
    100% { opacity: 1; transform: translateY(0);}
  }

  /* Badge */
  .hero-badge {
    display: inline-block;
    background: rgba(255, 140, 0, 0.8);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 0.9rem;
  }

  @media(max-width: 768px){
    .hero-content h1 { font-size: 2rem; }
    .hero-content h2 { font-size: 1.8rem; }
    .hero-content p { font-size: 1rem; }
  }


  /* WHO WE ARE SECTION */
.who-section {
  background: #fff;
  color: #333;
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
}

/* Badge */
.who-badge {
  background: #fff3d1;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.who-badge .dot {
  width: 10px;
  height: 10px;
  background: #ffb300;
  border-radius: 50%;
  display: inline-block;
}

/* Titles & Text */
.who-title {
  font-size: 55px;
  line-height: 1.2;
}

.highlight {
  color: #d99d28;
}

.who-text {
  font-size: 18px;
  line-height: 1.8;
}

/* Feature Box */
.feature-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.feature-box .icon {
  width: 45px;
  height: 45px;
  background: #0aa297;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
}

.feature-title {
  font-weight: 600;
}

/* Stat Cards */
.stat-card {
  padding: 45px 20px;
  border-radius: 20px;
  text-align: center;
  font-size: 38px;
  font-weight: 600;
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
}

.stat-card .label {
  font-size: 16px;
  margin-top: 10px;
}

/* Colors */
.stat-card.yellow {
  background: linear-gradient(45deg, #ffcf4a, #ff9a1f);
  color: #fff;
}

.stat-card.red {
  background: linear-gradient(45deg, #8b0f1a, #a71425);
  color: #fff;
}

.stat-card.green {
  background: #0aa297;
  color: #fff;
}

.stat-card.beige {
  background: #faf4e6;
  color: #5a4634;
}



   /*GALLERIES*/

    .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 50px 15px;
        }
        .text-center {
            text-align: center;
        }
        .text-center h2 {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .text-center p {
            color: #555;
            margin-bottom: 50px;
        }
        .text-center span {
            color: #ffb300;
        }
        .gallery-row {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            width: calc(33.333% - 20px);
            cursor: pointer;
        }
        .gallery-item img {
            width: 100%;
            display: block;
            transition: transform 0.5s ease;
        }
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        .overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.6);
            color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            opacity: 0;
            transition: opacity 0.4s ease;
            padding: 15px;
        }
        .gallery-item:hover .overlay {
            opacity: 1;
        }
        .overlay h4 {
            margin: 0;
            font-size: 1.3rem;
            font-weight: 600;
        }
        .overlay p {
            margin: 5px 0 0;
            font-size: 1rem;
        }

        /* Responsive */
        @media(max-width: 992px){
            .gallery-item {
                width: calc(50% - 20px);
            }
        }
        @media(max-width: 576px){
            .gallery-item {
                width: 100%;
            }
        }

        .gallery-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery-item {
  flex: 1 1 calc(33.333% - 10px); /* 3 per row */
  height: 250px; /* adjust as needed */
}

/* Tablet (2 per row) */
@media (max-width: 992px) {
  .gallery-item {
    flex: 1 1 calc(50% - 10px);
    height: 220px;
  }
}

/* Mobile (1 per row) */
@media (max-width: 576px) {
  .gallery-item {
    flex: 1 1 100%;
    height: 200px;
  }
}

 
      /*TOUR PACKAGES*/

      /* Premium Packages */
.premium-packages {
  padding: 0px 20px;
  background: #fff;
  text-align: center;
}
.section-title {
  font-size: 2.8rem;
  margin-bottom: 40px;
  color: #0e1a35;
  font-weight: bold;
}
.packages-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  justify-items: center;
}
.package-card {
  position: relative;
  width: 100%;
  max-width: 350px;
  height: 520px;              /* FIXED CARD HEIGHT */
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
}
.package-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.package-card:hover { transform: translateY(-10px); }
.package-img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
}
.package-info {
  padding: 22px;
  background: #fff;
  border-top: 4px solid #ff6700;
}
.icon-lottie { width: 70px; margin-bottom: 10px; }
.package-info h3 { font-size: 1.6rem; margin-bottom: 8px; color: #0e1a35; }
.route, .details { font-size: 14px; color: #5a5a5a; margin: 4px 0; }
.price {
  margin: 10px 0;
  font-size: 1.5rem;
  color: #ffb300;
  font-weight: bold;
}
.btn-book {
  background: linear-gradient(to right, #ffba00, #d98b00);
  color: #fff;
  padding: 11px 22px;
  border-radius: 6px;
  font-weight: 600;
  border: none;
}
.btn-book:hover { background: linear-gradient(to right, #ffba00, #d98b00); }
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #ffb300;
  border-radius: 50%;
  padding: 18px;
}

@media (max-width: 576px) {
  .package-card {
    height: auto; /* natural height on mobile */
  }
}

/* Fixed card image container */
.package-img {
  width: 100%;
  height: 220px;          /* FIXED height */
  object-fit: cover;      /* fills the div without distortion */
  display: block;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

/* Ensure card height stays consistent */
.package-card {
  height: 100%;
  overflow: hidden;
}



        /*TESTIMONIALS*/

         .section-title {
        text-align: center;
        padding-top: 40px;
    }

    .tag {
        background: #ffe6c9;
        padding: 6px 16px;
        border-radius: 20px;
        font-size: 12px;
        color: #c77a29;
        display: inline-block;
        margin-bottom: 10px;
    }

    .section-title h2 {
        font-size: 36px;
        font-weight: 700;
    }

    .section-title span {
        color: brown;
    }

    /* SLIDER WRAPPER */
    .slider-wrapper {
        position: relative;
        padding: 40px 40px;
    }

    .slider-container {
        display: flex;
        gap: 25px;
        overflow-x: auto;
        scroll-behavior: smooth;
        padding-bottom: 20px;
    }

    .slider-container::-webkit-scrollbar {
        display: none;
    }

    .card {
        min-width: 320px;
        background: white;
        padding: 25px;
        border-radius: 16px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        transition: 0.3s ease;
    }

    /* HOVER EFFECT */
   /* .card:hover {
        transform: translateY(-8px) scale(1.03);
        box-shadow: 0 12px 28px rgba(0,0,0,0.12);
    }*/

    .quote-icon {
        font-size: 24px;
        background: #ffb300;
        color: #fff;
        width: 40px;
        height: 40px;
        border-radius: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 10px;
    }

    .stars i {
        color: #ffaa00;
        font-size: 18px;
    }

    .card p {
        color: #555;
        font-size: 14px;
        line-height: 1.6;
    }

    .user {
        display: flex;
        align-items: center;
        margin-top: 15px;
    }

    .avatar {
        width: 45px;
        height: 45px;
        background: #009688;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        font-weight: 600;
        margin-right: 12px;
    }

    .name {
        font-weight: 600;
        font-size: 15px;
    }

    .location {
        font-size: 12px;
        color: gray;
    }

    /* CAROUSEL BUTTONS */
    .arrow-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: #ffb300;
        color: white;
        border: none;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 22px;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: .3s;
        z-index: 10;
    }

    /*.arrow-btn:hover {
        background: #d96a00;
    }*/

    .left-btn {
        left: 10px;
    }

    .right-btn {
        right: 10px;
    }

.slider-container {
    scroll-snap-type: x mandatory;
}

.card {
    scroll-snap-align: start;
}


    /*CONTACTUS*/

      .contact-section {
    padding: 0px 0 80px;
}

.contact-title {
    text-align: center;
    font-size: 48px;
   font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
    font-weight: 600;
}

.contact-title span {
    color: #d89b00;
}

.contact-subtitle {
    text-align: center;
    margin-top: 5px;
    margin-bottom: 40px;
    font-size: 18px;
    color: #666;
}

/* CARDS */
.contact-card {
    background: #fdf8ef;
    border-radius: 15px;
    padding: 25px;
    min-height: 180px;
    border: 1px solid #ede6d8;
}

.icon-box {
    background: linear-gradient(to bottom right, #ffb000, #d88900);
    width: 55px;
    height: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.icon-box i {
    color: white;
    font-size: 22px;
}

.contact-card h5 {
    font-size: 20px;
    margin-bottom: 10px;
    color: black;
}

.contact-card p {
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* FORM BOX */
.contact-form-box {
    background: #fbf7ef;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #ebdfd0;
}

.contact-form-box h4 {
    font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
    font-size: 26px;
    color: black;
}

/* FORM FIELDS */
label {
    font-weight: 500;
    margin-bottom: 5px;
    color: black;
}

.form-control {
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

textarea.form-control {
    resize: none;
}

/* BUTTON */
.send-btn {
    width: 100%;
    padding: 14px;
    font-size: 18px;
    border-radius: 10px;
    border: none;
    color: white;
    background: linear-gradient(to right, #ffba00, #d98b00);
    transition: 0.3s;
}

.send-btn:hover {
    opacity: 0.9;
}
 

 /* SUBSCRIBE SECTION */
.subscribe-section {
    text-align: center;
    padding: 80px 20px;
    animation: fadeIn 1.5s ease;
    background-color: #1c120d;
}

.subscribe-icon i {
    font-size: 50px;
    background: #f4a026;
    padding: 20px;
    border-radius: 50%;
    color: #2a1a12;
    animation: pop 1s ease;
}

h2 {
    font-size: 32px;
    margin: 20px 0 10px;
    color: white;
}

h2 span {
    color: #f4a026;
}

.sub-text {
    color: #000;
    line-height: 1.6;
}

.sub-benefits {
    margin: 25px 0;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.sub-benefits span {
    color: brown;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.sub-benefits span:hover {
    transform: translateY(-3px);
}

.subscribe-box {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.subscribe-box input {
    width: 350px;
    padding: 12px 20px;
    border-radius: 8px;
    border: none;
    outline: none;
}

.subscribe-box button {
    background: linear-gradient(to right, #ffba00, #d98b00);
    padding: 12px 22px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.subscribe-box button:hover {
    background: linear-gradient(to right, #ffba00, #d98b00);
    transform: scale(1.07);
}

.policy-text {
    margin-top: 12px;
    font-size: 12px;
    opacity: 0.7;
    color: white;
}

/* FOOTER */
.footer {
    background: #1c120d;
    padding: 60px 20px 20px;
    /*margin-top: 40px;*/
    animation: fadeUp 1.5s ease;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.footer-logo i {
    font-size: 32px;
    color: #f4a026;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-about {
    margin: 10px 0 20px;
    color: #c9b8a9;
    font-size: 14px;
}

.footer-social a {
    margin-right: 12px;
    color: #f4a026;
    font-size: 18px;
    transition: 0.3s;
}

.footer-social a:hover {
    transform: scale(1.2);
}

.footer-col h4 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #f4a026;
}

.footer-col ul {
    padding: 0;
    list-style: none;
}

.footer-col ul li a {
    color: #c9b8a9;
    font-size: 14px;
    display: block;
    margin-bottom: 8px;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-col p {
    font-size: 14px;
    color: #c9b8a9;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #3a2a23;
    padding-top: 15px;
    font-size: 13px;
    color: #bda89c;
}

.policy-links a {
    margin-left: 15px;
    color: #f4a026;
    transition: 0.3s;
}

.policy-links a:hover {
    color: #ffb347;
}

/* ANIMATIONS */
@keyframes fadeIn {
    from {opacity: 0; transform: translateY(20px);}
    to {opacity: 1; transform: translateY(0);}
}

@keyframes fadeUp {
    from {opacity: 0; transform: translateY(40px);}
    to {opacity: 1; transform: translateY(0);}
}

@keyframes pop {
    0% {transform: scale(0);}
    100% {transform: scale(1);}
}


   /*ANIMATIONS*/


section, .who-section, .gallery-row, .slider-wrapper, .contact-section, 
.subscribe-section, .footer {
    animation: fadeInSoft 1.2s ease forwards;
    opacity: 0;
}

@keyframes fadeInSoft {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}


.feature-box {
    animation: slideFeature 1.3s ease;
}

@keyframes slideFeature {
    0% { opacity:0; transform: translateX(-25px); }
    100% { opacity:1; transform: translateX(0); }
}

.gallery-item img {
    transition: transform 0.6s ease, filter 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.12);
    filter: brightness(0.7);
}

.card {
    animation: cardEntry 1s ease;
}

@keyframes cardEntry {
    0% { opacity: 0; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

.contact-form-box {
    animation: slideUp 1.3s ease;
}

@keyframes slideUp {
    0% { opacity:0; transform: translateY(40px); }
    100% { opacity:1; transform: translateY(0); }
}

.footer a,
.subscribe-section a {
    text-decoration: none;
}

.footer a:hover,
.subscribe-section a:hover {
    text-decoration: none;
}



button, .btn, .send-btn {
    transition: transform 0.3s ease, background 0.3s ease;
}

button:hover, .btn:hover, .send-btn:hover {
    transform: scale(1.05);
}


.about-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0px 15px;
        }

.contact-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0px 15px;
        }


 /*ANIMATION*/

animation: fadeInSoft 1.2s ease forwards;

img, video {
  will-change: transform;
  backface-visibility: hidden;
}



/*TESTIMONIAL*/

.testimonial-section {
  /*background: #121212;*/
  color: #fff;
  text-align: center;
  padding: 0px 20px;
}

.title {
  font-size: 36px;
  font-weight: 700;
}

.underline {
  display: block;
  width: 60px;
  height: 3px;
  background: #ff3b3b;
  margin: 12px auto 40px;
}

.testimonial-wrapper {
  position: relative;
  max-width: 800px;
  margin: auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease;
}

.testimonial-slide {
  min-width: 100%;
  opacity: 0;
  transform: scale(0.95);
  transition: 0.6s;
}

.testimonial-slide.active {
  opacity: 1;
  transform: scale(1);
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: auto;
  margin-bottom: 20px;
  overflow: hidden;
  background: #222;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.testimonial-slide h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.stars {
  color: gold;
  font-size: 20px;
  margin-bottom: 20px;
}

.testimonial-slide p {
  font-size: 16px;
  line-height: 1.7;
  max-width: 700px;
  margin: auto;
  color: #ddd;
}

/* DOTS */
.dots {
  margin-top: 40px;
}

.dot {
  width: 12px;
  height: 12px;
  background: #444;
  border-radius: 50%;
  display: inline-block;
  margin: 0 6px;
  cursor: pointer;
}

.dot.active {
  background: #ffb300;
}
