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

body {
    background: #f4f7fb;
    color: #333;
}

/* HEADER */
.header {
    background: #fff;
    padding: 15px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo h2 {
    color: #0a4b78;
}

.logo span {
    color: #f39c12;
}

/* ================= DESTINATIONS PAGE ================= */
.section {
    padding: 70px 8%;
}

.section h2, .section h3 {
    color: #0a4b78;
    margin-bottom: 20px;
    text-align: center;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

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

.card h3 {
    color: #0a4b78;
    font-size: 22px;
    margin-bottom: 12px;
}

.card h5 {
    color: #f39c12;
    font-size: 18px;
    margin: 15px 0 10px;
}

.card p {
    color: #555;
    font-size: 14px;
    margin-bottom: 12px;
}

.destination-img {
    width: 100%;
    border-radius: 12px;
    margin: 12px 0;
    transition: transform 0.3s;
}

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

/* SMALL TEXT */
.small-text {
    font-size: 13px;
    line-height: 1.5;
    color: #555;
}

/* FOOTER STAYS SAME */
footer {
    background: #0a4b78;
    color: white;
    padding: 25px;
    text-align: center;
}

/* PREMIUM BOOK NOW BUTTON */
.book-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 15px;
  margin-top: 20px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #f39c12, #ff6a00);
  box-shadow: 0 8px 20px rgba(243, 156, 18, 0.4);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

/* ===== GRAPHICAL 3D BOOK NOW BUTTON ===== */

.book-now {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 35px;
  margin-top: 20px;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  background: linear-gradient(145deg, #0a4b78, #0d5c92);
  box-shadow: 0 8px 20px rgba(10, 75, 120, 0.4),
              inset 0 -4px 8px rgba(0,0,0,0.3);
  overflow: hidden;
  transition: all 0.4s ease;
}

/* Circle animation background */
.book-now .circle {
  position: absolute;
  width: 0;
  height: 0;
  background: #f39c12;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
  z-index: 0;
}

/* Text above circle */
.book-now .icon,
.book-now .text {
  position: relative;
  z-index: 2;
}

/* Hover animation */
.book-now:hover .circle {
  width: 300px;
  height: 300px;
}

.book-now:hover {
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(243, 156, 18, 0.5);
}

/* Click press effect */
.book-now:active {
  transform: scale(0.95);
}

/* Hover Effect */
.book-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(243, 156, 18, 0.6);
}

/* Active Click Effect */
.book-btn:active {
  transform: scale(0.95);
}

/* Shine Animation */
.book-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-25deg);
  transition: 0.7s;
}

.book-btn span {
  position: relative;
  z-index: 2;
}

.book-btn:hover::before {
  left: 130%;
}

.book-btn:hover {
  background: #0a4b78;
}


/* ISHANI SECTION */
.ishani {
    text-align: center; /* centers text */
    display: block;
    padding: 50px 8%;
    background: #f4f7fb;
}

.ishani h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #0a4b78;
}

.ishani p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px; /* center text with margin below */
    color: #333;
}

.ishani-image img {
    width: 100%; /* full width */
    max-width: 900px; /* optional max size */
    border-radius: 12px;
    display: block;
    margin: 0 auto; /* centers the image */
}


/* RESPONSIVE FOR MOBILE */
@media (max-width: 768px) {
    .cards {
        grid-template-columns: 1fr;
        padding: 0 5%;
    }

    .card h3 {
        font-size: 20px;
    }

    .card h5 {
        font-size: 16px;
    }
}


nav a {
    margin-left: 25px;
    text-decoration: none;
    font-weight: bold;
    color: #0a4b78;
}

nav a:hover {
    color: #f39c12;
}

/* HERO */
.hero {
    position: relative;
    height: 85vh;
    overflow: hidden;
    color: white;
    padding: 0;       /* Remove extra padding */
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;      /* full width */
    height: 100%;     /* full height */
}

.slider img.slide {
    width: 100%;      /* stretch image fully */
    height: 100%;     /* cover entire hero area */
    object-fit: cover; /* keeps image aspect ratio while filling */
    display: block;
}


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

.hero-content p {
    margin: 15px 0 25px;
    font-size: 20px;
}

.hero-buttons .btn {
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin-right: 15px;
}

.primary {
    background: #0a4b78;
    color: white;
}

.outline {
    border: 2px solid white;
    color: white;
}

/* WELCOME */
.welcome {
    padding: 70px 8%;
    text-align: center;
    background: white;
}

.welcome p {
    max-width: 800px;
    margin: 20px auto;
}

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

.feature {
    background: #f4f7fb;
    padding: 15px;
    border-radius: 12px;
    font-weight: bold;
}

/* SERVICES */
.services {
    padding: 70px 8%;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 20px;
    margin-top: 40px;
}

.service-card {
    background: white;
    padding: 25px;
    border-radius: 14px;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* PACKAGES */
.packages {
    padding: 70px 8%;
    background: white;
}


.slider {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* CONTACT FORM DESIGN */

.contact-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.contact-form {
    width: 100%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
}

.contact-form h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #0a4b78;
    font-size: 24px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    font-size: 14px;
    transition: all 0.3s ease;
    outline: none;
}

/* MODERN CONTACT INFO */

.contact-info-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.package-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.toggle-btn {
    background: #0a4b78;
    color: white;
    padding: 8px 15px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

.toggle-btn:hover {
    background: #083a5c;
}


.icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #0a4b78, #0d6efd);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.info-card h4 {
    margin-bottom: 10px;
    color: #0a4b78;
    font-size: 18px;
}

.info-card p {
    font-size: 14px;
    color: #555;
}


.input-group input:focus,
.input-group textarea:focus {
    border-color: #0a4b78;
    box-shadow: 0 0 10px rgba(10, 75, 120, 0.2);
}

.send-btn {
    width: 100%;
    padding: 15px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(135deg, #0a4b78, #0d6efd);
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

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


.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 30px;
    margin-top: 40px;
}

.package-card {
    background: #f4f7fb;
    padding: 20px;
    border-radius: 16px;
}

.package-card h3 {
    margin: 15px 0 5px;
}

.package-card span {
    display: block;
    margin: 10px 0;
    font-weight: bold;
    color: #0a4b78;
}

.package-card a {
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    color: white;
    background: #0a4b78;
    padding: 10px 20px;
    border-radius: 20px;
}

/* TESTIMONIAL */
.testimonial {
    padding: 70px 8%;
    text-align: center;
}

.testimonial-box {
    background: white;
    padding: 30px;
    border-radius: 18px;
    max-width: 700px;
    margin: 30px auto 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* FOOTER */
footer {
    background: #0a4b78;
    color: white;
    padding: 25px;
    text-align: center;
}

/* MOBILE */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }

    nav {
        display: none;
    }
}
.book-now { all: unset; }
