/* General */
:root{
      --background-blue-color: radial-gradient(ellipse at left, #0a1e4d 60%, #0a2a9c 100%);
  --button-color:#ffb300;

}


body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
}

/* Hero */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 20px;
  overflow: hidden; /* ensures background doesn’t spill */
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.5));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2; /* bring text above background + overlay */
}


.hero h1 { font-size: 3rem;
    color:white ;
    font-weight: bold;
    font-size: 3.8rem;
     margin: 0; }
.hero p { font-size: 200px; 
    font-weight: 400;
    font-size: 1.5rem;
    max-width: 700px; 
    margin-top: 15px; }
/* Services Section */
.services {
  background: #f9f9f9;
  padding: 80px 20px;
}

.services .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Heading */
.services-heading {
  text-align: center;
  margin-bottom: 50px;
}
.services-heading h2 {
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #222;
}
.services-heading p {
  font-size: 1.5rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Services Grid */
.services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Force 3x3 Layout for large screens */
@media (min-width: 1024px) {
  .services-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet View (2 per row) */
@media (max-width: 1023px) and (min-width: 600px) {
  .services-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile View (1 per row) */
@media (max-width: 599px) {
  .services-cards {
    grid-template-columns: 1fr;
  }
}

/* Card */
.card {
  position: relative;
  height: 280px;
  border-radius: 15px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  color: white;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* Overlay */
.overlay {
  background: rgba(0,0,0,0.5);
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;  /* centers everything horizontally */
  text-align: center;  /* makes text inside centered */
  padding: 20px;
  transition: background 0.3s;
}

.card:hover .overlay { 
  background: rgba(0,0,0,0.7); 
}


.overlay h2 {
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
  margin-bottom: 10px;
  text-align: center;  /* ensure heading is also centered */
}

.overlay p {
  font-size: 1rem;
  max-width: 80%;   /* prevent it from spanning too wide */
  line-height: 1.5;
  font-weight: 500;
  text-align: center; 
  margin: 0 auto;   /* keeps it centered */
  display: block;   /* ensures width respects max-width */
}




/* About travel Section */
.about-travel {
  background: var(--background-blue-color);
  padding: 50px 20px;
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid !important;
  grid-template-columns: 55% 45% !important;
  column-gap: 80px !important;
  row-gap: 40px !important;
  align-items: center !important;
}

.about-text h2 {
  font-size: 3.5rem;
  margin-bottom: 15px;
  font-weight: bold;
  color: white;
}

.about-text p {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 15px;
  line-height: 1.5;
  letter-spacing: 0.7px;
  font-family: Arial, 'Poppins', sans-serif;
}

.about-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-text ul li {
  margin-bottom: 8px;
  color: white;
  padding-left: 22px;
  position: relative;
  font-size: 1.1rem;
  font-family: Arial, 'Poppins', sans-serif;
}

.about-text ul li::before {
  content: "✔";
  color: var(--button-color);
  position: absolute;
  left: 0;
}

.about-image {
  text-align: right;
}

.about-image img {
  max-width: 400px;
  width: 100%;
  height: 400px;
  border-radius: 20px;
  display: inline-block;
}

/* ✅ Laptop screens (1024px and below) */
@media (max-width: 1200px) {
  .about-container {
    grid-template-columns: 50% 50% !important;
    column-gap: 50px !important;
  }
  .about-text h2 {
    font-size: 2.8rem;
  }
  .about-image img {
    max-width: 350px;
    height: 350px;
  }
}

/* ✅ Tablets (768px – 1024px) */
@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr 1fr; /* two columns but tighter */
    column-gap: 30px !important;
  }
  .about-text h2 {
    font-size: 2.5rem;
  }
  .about-text p {
    font-size: 1rem;
  }
  .about-image img {
    max-width: 300px;
    height: 300px;
  }
}

/* ✅ Mobile screens (below 768px) */
@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr; /* stack content */
    text-align: center;
  }
  .about-text h2 {
    font-size: 2rem;
  }
  .about-text p {
    font-size: 0.95rem;
  }
  .about-text ul li {
    font-size: 0.9rem;
  }
  .about-image {
    text-align: center;
  }
  .about-image img {
    max-width: 250px;
    height: auto;
    margin-top: 20px;
  }
}

/* ✅ Small mobile screens (below 480px) */
@media (max-width: 480px) {
  .about-text h2 {
    font-size: 1.7rem;
  }
  .about-text p {
    font-size: 0.9rem;
  }
  .about-text ul li {
    font-size: 0.85rem;
  }
  .about-image img {
    max-width: 200px;
    height: auto;
  }
}



/* Why Us Section */
.why-us {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-us h2 {
  font-size: 2.6rem;
  margin-bottom: 20px;
  font-weight: bold;
  color: #222;
}

.why-us p {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 40px;
  color: #555;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.why-card {
  background: #f9fafc;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.why-card:hover {
  transform: translateY(-8px);
  background-color: #fdf6ec;
}

.why-card i {
  font-size: 2rem;
  color: var(--button-color);
  margin-bottom: 15px;
}

.why-card h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #222;
}

.why-card p {
  font-size: 1.1rem;
  color: #666;
}

.services-overview {
  background: #f8f9fb;
  padding: 60px 20px;
  text-align: center;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-overview h2 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  font-weight: bold;
  color: var(--heading-color, #002147);
}

.services-subtitle {
  font-size: 1.3rem;
  color: #555;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-2px);
}

.service-card img {
  max-width: 60px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.3rem;
  color: var(--heading-color, #002147);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}

/* ✅ Responsive */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}


