/* Reset + Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

/* Navbar */
.navbar {
  width: 100%;
  background-color: #0057a3;
  padding: 15px 30px;
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 1.5rem;
}
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}
.main-nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}
.main-nav ul li a:hover {
  color: #ffdd57;
}

/* Full Banner Split */
/* 🎯 Banner Height Reduced */
.hero-split {
  display: flex;
  width: 100%;
  height: 500px;
  overflow: hidden;
  background: #f5faff;
}

/* ✅ LEFT SIDE - Clean background */
.hero-left {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  background: #ffffff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-card {
  background-color: #002f6c;
  color: white;
  height: 130px;
  width: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: 0.3s ease;
  text-align: center;
}

.service-card i {
  font-size: 30px;
  margin-bottom: 8px;
}

.service-card:hover {
  background-color: #001e44;
  transform: translateY(-4px);
}


/* ✅ RIGHT SIDE - Slider in cloud shape */
/* ✅ Right half – no clip path, clean rectangle */
.hero-right {
  width: 50%;
  height: 100%;
  background: #f5faff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-reviews {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-slide {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 80%;
  max-width: 350px;
  text-align: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.review-slide img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid #0057a3;
}

.review-slide p {
  font-size: 1rem;
  color: #333;
  font-style: italic;
  line-height: 1.4;
}

/* Active slide is visible */
.review-slide.active {
  opacity: 1;
  z-index: 1;
}





.hero-slider {
  height: 100%;
  width: 100%;
  position: relative;
}

.hero-slider img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slider img.active {
  opacity: 1;
  z-index: 1;
}



.hero-slider img:nth-child(1) { animation-delay: 0s; }
.hero-slider img:nth-child(2) { animation-delay: 5s; }
.hero-slider img:nth-child(3) { animation-delay: 10s; }

@keyframes slideBg {
  0% { transform: translateX(0); }
  33% { transform: translateX(-100%); }
  66% { transform: translateX(-200%); }
  100% { transform: translateX(0); }
}



/* Banner */
.hero-banner {
  background: url('../images/banner.jpg') center/cover no-repeat;
  height: 50vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 80px; /* for navbar height */
}
.banner-content {
  color: white;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 12px;
}
.banner-content h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.banner-content p {
  font-size: 1.2rem;
}

/* Flight Search Form */
.flight-search {
  margin-top: -100px; /* pull up to overlap */
  background-color: #ffffff;
  padding: 30px;
  width: 85%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  position: relative;
  z-index: 10;
}
.search-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.search-form label {
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
}
.search-form input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 100%;
}
.search-form select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  appearance: none;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' width='10' height='10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='30,50 70,90 110,50' fill='none' stroke='%23333' stroke-width='20' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 12px center;
  background-color: white;
  background-size: 12px;
  font-weight: 500;
}

.search-form button[type="submit"] {
  grid-column: span 2;
  padding: 8px 16px; /* less padding = thinner button */
  background-color: #0057a3;
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: max-content;
  align-self: center;
  justify-self: start;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease, transform 0.2s ease;
}

.search-form button[type="submit"]:hover {
  background-color: #003f7d;
  transform: translateY(-2px);
}







/* 🕋 Umrah Packages Section */
.umrah-packages {
  padding: 60px 30px;
  background-color: #f1f6fb;
  text-align: center;
}

.section-title h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #003f7d;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.package-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  height: auto; /* reduce fixed height */
  min-height: 100%;
}

.package-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.card-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.package-card h3 {
  font-size: 1.1rem;
  color: #0057a3;
  margin-bottom: 10px;
  text-align: left;
}

.package-details {
  font-size: 0.9rem;
  text-align: left;
  color: #444;
}

.info-row {
  margin-bottom: 8px;
}

.info-row strong {
  display: block;
  font-weight: 600;
  color: #222;
  margin-bottom: 4px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-row span {
  background-color: #eef4ff;
  color: #0057a3;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 0.85rem;
  white-space: nowrap;
}

.price-box {
  margin-top: 12px;
  background-color: #0057a3;
  color: white;
  padding: 8px;
  text-align: center;
  border-radius: 6px;
  font-weight: bold;
  font-size: 0.95rem;
}

/* 🔘 View More Button */
.view-more-container {
  margin-top: 40px;
}

.view-more-btn {
  padding: 10px 24px;
  background-color: #0057a3;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.view-more-btn:hover {
  background-color: #003f7d;
}

/* 🌍 Visa Services Section */
.visa-services {
  padding: 60px 30px;
  background-color: #ffffff;
  text-align: center;
}

.visa-services .section-title h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #003f7d;
}

.visa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.visa-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 15px 10px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, background 0.3s ease;
  cursor: pointer;
}

.visa-card img {
  width: 60px;
  height: auto;
  margin-bottom: 8px;
  border-radius: 6px;
}

.visa-card span {
  margin-top: 5px;
  font-size: 0.95rem;
  color: #0057a3;
  font-weight: 500;
}

.visa-card:hover {
  background-color: #0057a3;
  transform: translateY(-5px);
}

.visa-card:hover span {
  color: white;
}

.study-visa {
  background-color: #f9fbff;
  padding: 60px 30px;
}

.study-visa .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.study-visa .section-title h2 {
  font-size: 2rem;
  color: #003f7d;
  margin-bottom: 10px;
}

.study-visa .section-title p {
  color: #444;
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

.study-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  justify-content: space-between;
}

.study-left {
  flex: 1 1 48%;
}

.study-left h3 {
  color: #0057a3;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.study-left ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.study-left ul li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #333;
}

.cta-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0057a3;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #003f7d;
}

.study-right {
  flex: 1 1 48%;
}

.study-right h3 {
  color: #0057a3;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.country-flags {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 20px;
}

.country-flags div {
  background-color: white;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.country-flags div:hover {
  transform: translateY(-5px);
}

.country-flags img {
  width: 50px;
  height: auto;
  margin-bottom: 8px;
}

.country-flags span {
  font-size: 0.9rem;
  color: #0057a3;
  font-weight: 500;
}

.happy-customers {
  padding: 60px 30px;
  background-color: #eef4ff;
  text-align: center;
}

.happy-customers .section-title h2 {
  font-size: 2rem;
  color: #003f7d;
  margin-bottom: 10px;
}

.happy-customers .section-title p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: auto;
}

.counter-box {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.counter-box:hover {
  transform: translateY(-6px);
}

.counter-box h3 {
  font-size: 2rem;
  color: #0057a3;
  margin-bottom: 10px;
}

.counter-box p {
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
}


.main-footer {
  background-color: #002f6c;
  color: #fff;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-top > div {
  flex: 1 1 200px;
}

.footer-about h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #ffffff;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #ffffff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 6px;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: #fff;
}

.footer-contact p {
  margin: 6px 0;
  font-size: 0.95rem;
}

.footer-contact i {
  margin-right: 8px;
  color: #ffcc00;
}

.footer-social .social-icons a {
  color: #fff;
  font-size: 18px;
  margin-right: 12px;
  transition: 0.3s;
}

.footer-social .social-icons a:hover {
  color: #ffcc00;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #555;
  padding-top: 15px;
  font-size: 0.9rem;
  color: #ccc;
}
a{
    text-decoration: none;
}


.umrah-query-section {
  background: #f9fbff;
  padding: 60px 20px;
}

.query-form-wrapper {
  background: white;
  max-width: 800px;
  margin: auto;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

.form-heading {
  font-size: 24px;
  color: #002f6c;
  margin-bottom: 30px;
  text-align: center;
}

.styled-query-form .form-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.styled-query-form input,
.styled-query-form select,
.styled-query-form textarea {
  flex: 1;
  min-width: 220px;
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: 0.3s ease;
  background: #fefefe;
}

.styled-query-form input:focus,
.styled-query-form select:focus,
.styled-query-form textarea:focus {
  border-color: #0057a3;
  outline: none;
  background-color: #ffffff;
}

.form-submit-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: #0057a3;
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  transition: 0.3s;
  cursor: pointer;
}

.form-submit-btn:hover {
  background: #003e7c;
}

/* 🌍 Tour Packages Section */
.tour-packages {
  padding: 60px 20px;
  background: #f9fafc;
}

.tour-packages .section-title h2 {
  text-align: center;
  font-size: 28px;
  color: #222;
  margin-bottom: 40px;
  position: relative;
}

.tour-packages .section-title h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #ff9800;
  display: block;
  margin: 10px auto 0;
  border-radius: 3px;
}

/* Grid */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 25px;
}

/* Card */
.package-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* Image */
.package-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* Content */
.card-content {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-content h3 {
  font-size: 20px;
  color: #222;
  margin-bottom: 12px;
}

/* Info rows */
.package-details {
  flex: 1;
}

.info-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin: 6px 0;
  color: #555;
}

.info-row strong {
  color: #111;
}

/* Price Box */
.price-box {
  background: #ff9800;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 8px 12px;
  text-align: center;
  border-radius: 8px;
  margin-top: 15px;
}

/* View More Button */
.view-more-container {
  text-align: center;
  margin-top: 35px;
}

.view-more-btn {
  display: inline-block;
  background: #ff9800;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.view-more-btn:hover {
  background: #e68900;
}
.tours-container {
    width: 90%;
    margin: 40px auto;
}

.page-title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.tour-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.tour-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-5px);
}

.tour-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.tour-info {
    padding: 15px;
}

.tour-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #222;
}

.tour-info .description {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.tour-info ul {
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
}

.tour-info ul li {
    font-size: 14px;
    margin-bottom: 6px;
    color: #444;
}

.no-packages {
    text-align: center;
    font-size: 18px;
    color: #999;
}

