* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #fff;
  color: #333;
}

.container {
  width: 95%;
  max-width: 1426px;
  margin: auto;
}

/* Navbar */
/* .navbar {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
} */

.navbar {
  height: 61px;              /* 🔥 FIXED HEIGHT */
  background: #fff;
  padding: 0;                /* padding remove */
  display: flex;
  align-items: center;       /* vertically center content */
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}


.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: bold;
  font-size: 29px;
  font-family: auto;
  color: #333;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 700;
}

.btn {
  background: #2563eb;
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 6px;
}

/* .hero {
  height: 80vh;        
  width: 100%;
  overflow: hidden;
} */

/* .hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;  
  object-position: center;
} */

.hero {
  height: calc(100vh - 80px);  /* 🔥 NAVBAR HEIGHT SUBTRACT */
  width: 100%;
  overflow: hidden;
}


.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;               /* full width look */
  object-position: center bottom;  /* 🔥 IMPORTANT */
  display: block;
}

/* TEXT OVER IMAGE */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}

.hero-content h1 {
  font-size: 52px;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 20px;
}


/* Sections */

.sections-wrapper {
  position: relative;
  background: url("Images/photo-1507525428034-b723cf961d3e.jfif") center 30% no-repeat;
  background-size: cover;
}

.sections-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.35);
}

.sections-wrapper .section {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}




.section {
  padding: 60px 0;
}

.light-bg {
  background: transparent;
}

.section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  color: #2c4d95;
  margin-bottom: 40px;
  font-weight: 600;
}

/* Grid */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Cards */
.card {
  background: #fff;
  padding: 19px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

/* Tour Cards */
.tour-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.tour-card img {
  width: 100%;
  height: 236px;
  object-fit: cover;
}

.tour-card h4 {
  margin-top: 15px;
  color: #333;
}

.tour-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 992px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h1 {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .nav-links {
    display: none;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero {
    height: 55vh;
  }

  .hero h1 {
    font-size: 28px;
  }
}

.section {
  padding: 26px 20px;
  text-align: center;
}

.section-title {
  font-size: 32px;
  margin-bottom: 32px;
}

.cardcontainer {
  max-width: 1200px;
  margin: auto;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

/* 🔥 IMAGE FIX */
.card img {
  width: 100%;
  height: 236px;        /* control image height */
  object-fit: cover;   /* crop nicely without distortion */
  border-radius: 10px;
  margin-bottom: 15px;
}

.card h4 {
  font-size: 18px;
  margin: 0;
  color: #333;
}

@media (max-width: 600px) {
  .card img {
    height: 140px;
  }
}


/* contact section css */
/* Contact Section Background */
.contact-section {
  background: url("Images/contact-bg.png") center/cover no-repeat;
  padding: 80px 20px;
  position: relative;
}

/* Dark overlay */
.contact-overlay {
  background: rgba(0, 0, 0, 0.55);
  padding: 60px 0;
}

.container {
  /* max-width: 1100px; */
  margin: auto;
  text-align: center;
  color: #fff;
}

.contact-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.contact-subtitle {
  margin-bottom: 40px;
  color: #ddd;
}

/* Cards Layout */
.contact-wrapper {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Glass Card Style */
.contact-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(15px);
  border-radius: 15px;
  padding: 30px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  text-align: left;
  color: #fff;
}

.contact-card h3 {
  margin-bottom: 20px;
}

/* Form */
.contact-card form input,
.contact-card form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: none;
  outline: none;
}

.contact-card form button {
  width: 100%;
  padding: 12px;
  background: #2c5aa0;
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.contact-card form button:hover {
  background: #1f417a;
}

/* Info Section */
.info-item {
  margin-bottom: 15px;
  font-size: 15px;
}

/* WhatsApp Button */
.whatsapp-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 18px;
  background: #25D366;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
}

.whatsapp-btn:hover {
  background: #1ebc57;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

.error-border {
  border: 2px solid #e74c3c !important;
}

.error-text {
  color: #e74c3c;
  font-size: 13px;
  /* margin-top: 4px; */
  display: block;
}

/* About us css */

.about-section {
  padding: 120px 0;
  background: url("Images/About-Us.png") center/cover no-repeat;
  position: relative;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(255,255,255,0.75);  */
}

.about-section .container {
  position: relative;
  z-index: 2;
  color: #323030;
}


.about-wrapper {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.about-text-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 12px;
  width: 480px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: 0.3s ease;
 
}

.about-text-card:hover {
  transform: translateY(-5px);
}

.about-text-card h3 {
  margin-bottom: 15px;
  color: #2c4d95;
}


html {
  scroll-behavior: smooth;
}




