body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    color: #333;
    text-align: center;
}


/* Logo & Company Name */

.logo-company-wrapper {
    background-color: #007c91;
    padding: 10px 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.company-name {
    font-size: 22px;
    font-weight: bold;
    color: #ffeb3b;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin: 0;
    animation: pulse 3s ease-in-out infinite;
    cursor: default;
}

@keyframes pulse {
    0%,
    100% {
        color: #ffeb3b;
        transform: scale(1);
        text-shadow: none;
    }
    50% {
        color: #ffd54f;
        transform: scale(1.1);
        text-shadow: 0 0 8px #ffd54f;
    }
}


/* Navigation */

.nav-menu {
    background-color: #2c3e50;
    padding: 10px 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.nav-menu ul {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
    max-width: 600px;
    width: 100%;
}

.nav-menu ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

.nav-menu ul li a:hover {
    background-color: #e74c3c;
    color: #fff;
    transform: scale(1.05);
}

nav {
    background: #00bcd4;
    padding: 5px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
}

.logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 3px solid #fff;
    background: #ff5722;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
}

.circle-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
    transform-origin: 50% 50%;
    animation: rotate 10s linear infinite;
}

.circle-svg text {
    fill: #000;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


/* Hero Section (with dark overlay) */

.hero {
    position: relative;
    padding-top: 100px;
    padding: 120px 20px;
    background: url("https://s3-ap-south-1.amazonaws.com/soulveda-media-prod/wp-content/uploads/2024/04/12143533/Explore-these-1000-Years-old-temples-in-India-if-you-are-a-history-and-heritage-geek.jpg") no-repeat center center/cover;
    color: #fff;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}


.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero h1,
.hero p,
.hero .btn {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.2s ease-in-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #00bcd4;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background: #0097a7;
    transform: scale(1.05);
}


/* About + Inquiry Section */

.about-inquiry {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 50px auto 0 auto;
    flex-wrap: wrap;
    text-align: left;
    min-height: 400px;
}

.welcome {
    flex: 1 1 56%;
    min-width: 320px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.welcome h2 {
    color: #00bcd4;
    margin-bottom: 10px;
}

.quick-inquiry {
    flex: 1 1 38%;
    min-width: 280px;
    box-sizing: border-box;
}

.quick-query::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    z-index: 1;
}

.quick-query {
    position: relative;
    border: 3px solid #007BFF;
    border-radius: 10px;
    padding: 20px;
    background: url('image.png') no-repeat center center/cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.quick-query form {
    position: relative;
    z-index: 2;
}

.quick-inquiry input,
.quick-inquiry textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}

.quick-inquiry button {
    background: #00bcd4;
    color: #fff;
    padding: 10px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.quick-inquiry button:hover {
    background: #0097a7;
}

.phone-container {
    display: flex;
    align-items: center;
    gap: 5px;
}

#countryCode {
    padding: 5px;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background: white;
    cursor: pointer;
}


/* Packages (unchanged: professional card view) */

.featured-packages {
    background: #e3fdfd;
    padding: 48px 12px 36px 12px;
    text-align: center;
}

.featured-packages h2 {
    color: #00bcd4;
    font-size: 2.1em;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 0 0 12px #39c3e7, 0 0 24px #0097a7;
    letter-spacing: 1px;
}

.packages-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    align-items: stretch;
}

.package-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 21px 0 rgba(0, 180, 212, 0.14), 0 2px 4px rgba(44, 62, 80, 0.10);
    max-width: 340px;
    width: 100%;
    overflow: hidden;
    text-align: left;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s, box-shadow 0.35s;
}

.package-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 12px 28px rgba(0, 131, 143, 0.25);
}

.package-img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-bottom: 2px solid #00bcd4;
}

.package-info {
    padding: 14px 18px 16px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.package-info h3 {
    font-size: 1.18em;
    color: #0288d1;
    margin-top: 0;
    margin-bottom: 7px;
    font-weight: bold;
}

.package-info p {
    margin: 0 0 7px 0;
    font-size: 0.98em;
    color: #333;
}

.book-btn {
    align-self: flex-start;
    background: linear-gradient(90deg, #00bcd4 60%, #0288d1 100%);
    color: white;
    border: none;
    padding: 8px 22px;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 500;
    letter-spacing: 1.2px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    margin-top: 8px;
    margin-bottom: 5px;
    text-decoration: none;
}

.book-btn:hover {
    background: linear-gradient(90deg, #039be5 50%, #40c4ff 100%);
    transform: scale(1.06);
}

@media (max-width: 1020px) {
    .packages-grid {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    .package-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: center;
    }
    .nav-menu ul {
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }
    .hero h1 {
        font-size: 1.8em;
    }
    .about-inquiry {
        flex-direction: column;
        text-align: center;
    }
    .welcome,
    .quick-inquiry {
        flex: 1 1 100%;
    }
}


/* ---- Reviews Box (professional horizontal) ---- */

.reviews-horizontal {
    background: #fdf6ec;
    padding: 44px 14px 24px 14px;
    border-radius: 22px 22px 0 0;
    box-shadow: 0 4px 22px 0 rgba(242, 56, 49, 0.07);
    max-width: 1200px;
    margin: 0 auto 0 auto;
    position: relative;
}

.reviews-title {
    font-size: 2em;
    font-weight: 700;
    color: #00bcd4;
    margin-bottom: 24px;
    letter-spacing: 2px;
    text-align: center;
}

.reviews-row {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.review-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(44, 62, 80, 0.10);
    padding: 30px 22px 22px 22px;
    min-width: 240px;
    max-width: 300px;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    transition: transform 0.25s, box-shadow 0.22s;
    border-top: 4px solid #00bcd4;
}

.review-card:hover {
    box-shadow: 0 6px 28px rgba(0, 188, 212, .17);
    transform: translateY(-6px) scale(1.03);
}

.review-text {
    font-size: 1.08em;
    color: #263238;
    margin-bottom: 14px;
    font-style: italic;
    letter-spacing: 0.3px;
}

.review-author {
    margin-top: 6px;
    font-weight: 600;
    font-size: 1em;
    color: #ff9800;
    align-self: flex-end;
}

@media (max-width: 880px) {
    .reviews-row {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }
    .review-card {
        width: 90%;
        min-width: 0;
    }
}


/* WhatsApp Floating Button */

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: #fff;
    font-size: 28px;
    width: 55px;
    height: 55px;
    text-align: center;
    line-height: 55px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #20b358;
}


/* Footer */

footer {
    background: #333;
    color: #fff;
    padding: 10px;
    margin-top: 20px;
    text-align: center;
}


/* Overlay Success Message */

.overlay-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: #00bcd4;
    color: white;
    padding: 18px 26px;
    border-radius: 10px;
    font-size: 1.2em;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2000;
}

.overlay-message.show {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}


/* ======== WHY CHOOSE US ======== */
.why-choose-us {
  padding: 90px 20px;
  background: linear-gradient(135deg, #f0f8ff, #e6f7ff);
  text-align: center;
  overflow: hidden;
  position: relative;
}
.why-choose-us::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, #ff9800 0%, transparent 70%);
  border-radius: 50%;
  top: -60px;
  left: -60px;
  opacity: 0.4;
}
.why-choose-us::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, #004d7a 0%, transparent 70%);
  border-radius: 50%;
  bottom: -80px;
  right: -80px;
  opacity: 0.4;
}

.section-title {
  font-size: 2.7rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #00334d;
}
.section-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 35px;
  max-width: 1100px;
  margin: auto;
}

.feature-box {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 35px 25px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.5s ease;
  transform: perspective(800px) rotateX(10deg);
  opacity: 0;
  animation: slideUp 1s forwards;
}
.feature-box:nth-child(1) { animation-delay: 0.2s; }
.feature-box:nth-child(2) { animation-delay: 0.4s; }
.feature-box:nth-child(3) { animation-delay: 0.6s; }
.feature-box:nth-child(4) { animation-delay: 0.8s; }

.feature-box:hover {
  transform: perspective(800px) rotateX(0deg) translateY(-12px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.icon-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff9800, #ffcc80);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
  box-shadow: 0 0 15px rgba(255,152,0,0.6);
}
.icon {
  font-size: 2.5rem;
}

.feature-box h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #004d7a;
  font-weight: 600;
}
.feature-box p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
}

/* Animations */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 15px rgba(255,152,0,0.6); }
  50% { transform: scale(1.1); box-shadow: 0 0 25px rgba(255,152,0,0.8); }
}


/* ======== STATS SECTION (Light Theme) ======== */
.stats-section {
  padding: 90px 20px;
  background: linear-gradient(135deg, #e0f7fa, #e3f2fd);
  text-align: center;
  color: #00334d;
  position: relative;
  overflow: hidden;
}
.stats-section::before,
.stats-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 150, 255, 0.15), transparent 70%);
  animation: float 8s ease-in-out infinite alternate;
}
.stats-section::before {
  width: 250px; height: 250px;
  top: -100px; left: -100px;
}
.stats-section::after {
  width: 280px; height: 280px;
  bottom: -120px; right: -120px;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #004d7a;
}
.section-subtitle {
  font-size: 1.1rem;
  margin-bottom: 55px;
  opacity: 0.8;
  color: #333;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 35px;
  max-width: 1100px;
  margin: auto;
}

.stat-box {
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(0,0,0,0.08);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 35px 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  opacity: 0;
  transform: translateY(40px) scale(0.95);
}
.stat-box:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #008cff;
  animation: pulse-glow 2s infinite alternate;
}
.counter {
  font-size: 2.6rem;
  font-weight: 800;
  margin: 12px 0;
  color: #ff9800;
}
.stat-box p {
  font-size: 1rem;
  color: #333;
  opacity: 0.9;
}

/* Animations */
@keyframes float {
  from { transform: translateY(0); }
  to { transform: translateY(25px); }
}
@keyframes pulse-glow {
  from { text-shadow: 0 0 6px rgba(0,140,255,0.3); }
  to { text-shadow: 0 0 15px rgba(0,140,255,0.8); }
}
.reveal {
  transition: all 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ======== FUNNY TAGLINE ======== */
.funny-tagline {
  background: linear-gradient(135deg, #f0f9ff, #e0f7fa);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* floating travel icons */
.funny-tagline::before,
.funny-tagline::after {
  content: "✈️";
  position: absolute;
  font-size: 3rem;
  opacity: 0.15;
  animation: floatIcon 8s infinite linear alternate;
}
.funny-tagline::before {
  top: 20%; left: 12%;
}
.funny-tagline::after {
  content: "🌍";
  bottom: 18%; right: 15%;
}

.tagline-text {
  font-size: 2.2rem;
  font-weight: 800;
  color: #004d7a;
  line-height: 1.6;
  position: relative;
}
.tagline-text span {
  background: linear-gradient(90deg, #ff9800, #ff5722, #ff9800);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 4s linear infinite;
  display: inline-block;
}
.tagline-text small {
  display: block;
  margin-top: 15px;
  font-size: 1.1rem;
  color: #444;
  font-weight: 500;
  animation: fadeBounce 2.5s infinite;
}

/* Animations */
@keyframes shine {
  to { background-position: 300% center; }
}
@keyframes fadeBounce {
  0%,100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(-8px); opacity: 0.85; }
}
@keyframes floatIcon {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-20px) rotate(360deg); }
}

/* ======== BOOK NOW BUTTON ======== */
.book-now-wrap {
  text-align: center;
  margin-top: 25px;
}

.book-now-btn {
  display: inline-block;
  padding: 15px 40px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #ff9800, #ff5722);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

/* glow animation around button */
.book-now-btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, rgba(255,255,255,0.2), transparent, rgba(255,255,255,0.2));
  transform: rotate(45deg);
  animation: shineBtn 3s linear infinite;
}
@keyframes shineBtn {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

/* hover effects */
.book-now-btn:hover {
  transform: scale(1.1) rotate(-1deg);
  box-shadow: 0 12px 28px rgba(255,87,34,0.4);
}
.book-now-btn:active {
  transform: scale(0.95);
}

