/* Homepage css */
.hero {
       position: relative;
      display: flex;
      flex-direction: column;
     justify-content: space-between;
    }

    .hero::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
    .hero-content {
      position: relative;
      max-width: 700px;
      padding: 0 40px;
      z-index: 1;
    }

    .hero-content h1 {
      font-size: 64px;
      font-weight: bold;
      margin: 0 0 20px;
      color: #000000;
    }
    .hero-content h1 span {
      color: #86BA2F; 
    }
    .hero-content p {
      font-size: 24px;
      line-height: 1.6;
      color: #000000;
      width: 470px;
    }
   .hero-form{
   }
    @media (max-width: 600px) {
      .hero {
        height: 100%;
        text-align: center;
      }
      .hero-content {
        max-width: 100%;
        padding: 20px 20px 0px;
      }
      .hero-content h1 {
        font-size: 36px;
      }
      .hero-content p {
        font-size: 16px;
        width:100%;
      }
    }

.icons-container {
  width: 100%;
  margin: 0 auto;
  padding: 20px 0;
}

.icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px; 
}

.icon-box {
  width: 150px;   
  height: 70px; 
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.icon-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(0.2);
  transition: filter 0.3s ease;
}

.icon-box img:hover {
  filter: grayscale(0);
}

@media (max-width: 600px) {
  .icons {
    gap: 15px;
  }
  .icon-box {
    width: 45%; 
    height: 90px;
  }
}

.services-section {
  padding: 0px 20px;

}

.services-title {
  font-size: 34px;
  font-weight: 900 !important;
  margin-bottom: 20px;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  color: #181414;
}

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

.service-card {
  
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: transform 0.3s ease;
}

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

.service-image {
  position: relative;
  height: 236px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}
.service-content {
  padding: 15px;
   width: 95%;
   position: relative;
   top : -45px;
   left: 7px;
   border-radius: 8px;
   background: #fff;
}

.service-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
  color: #181414;
  font-family: 'Onest', sans-serif;
}

.service-content p {
  font-size: 14px;
  margin-bottom: 10px;
  font-family: 'DM Sans', sans-serif;
  color: #333333;
}

.service-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: 'DM Sans', sans-serif;
}

.service-content li {
  font-size: 14px;
  margin: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
}

.tick-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
}
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr; 
  }
  .service-card {
    width : 300px;
    margin: 0 auto;
}
	.services-title {
   text-align: center;
 }
}
 .section-container {
      max-width: 1200px;
      margin: auto;
    }
    .section-title {
      font-size: 34px;
      font-weight: bold;
      margin-bottom: 30px;
          font-family: 'Onest', sans-serif;
    }

    .section-title span {
      color: #629C59;
    }

    .section-content {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 25px;
      align-items: stretch;
    }

    .cards-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
      gap: 25px;
    }

    .card {
      background: #FBFBFB;
      border-radius: 10px;
      padding: 25px;
      display: flex;
      flex-direction: column;
    }

    .card img {
      width: 60px;
      height: 60px;
      margin-bottom: 15px;
      border: 2px solid #629C59;
      border-radius: 50%;
      padding: 10px;
    }

    .card div {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 10px;
          font-family: 'Onest', sans-serif;
    }

    .card p {
      color: #555;
      font-size: 14px;
      line-height: 1.5;
    }
    .about-card {
      background: #232622;
      color: #fff;
      border-radius: 10px;
      padding: 30px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .about-card div {
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 15px;
    }

    .about-card p {
      font-size: 14px;
      line-height: 1.6;
      font-weight: 400;
      margin-bottom: 20px;
    }

    .about-card .btn {
      background: #4CAF50;
      color: #fff;
      border: none;
      padding: 12px 18px;
      font-size: 14px;
      border-radius: 6px;
      cursor: pointer;
      font-weight: bold;
      align-self: start;
    }

    .about-card .btn:hover {
      background: #3b9441;
    }
    @media (max-width: 992px) {
      .section-content {
        grid-template-columns: 1fr;
      }
      .cards-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

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

.packages-heading {
  font-family: 'Onest', sans-serif;
  font-weight: 700;
  font-size: 34px;
}

.home-packages-button,
.home-packages-button:hover {
  background: #fff;
  color: #629C59;
  padding: 8px 14px !important;
  border: 2px solid #629C59;
  font-weight: 600;
  border-radius: 6px;
  font-size: 14px;
  display: inline-block;
  margin-right: 24px !important;
}

.heading-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.heading-button .fa-chevron-right {
  margin-left: 10px;
}

.home-package-card,
.package-card {
  width: 350px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 15px;
margin: 0 auto;
}

.home-package-card img,
.package-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px !important;
}

.home-package-card-content,
.package-card-content {
  padding-top: 16px;
}

.home-package-card-content h3,
.package-card-content h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 12px;
  color: #181414;
  font-family: 'DM Sans', sans-serif;
}

.package-inclusions {
  font-size: 14px;
  margin-bottom: 12px;
  font-family: 'DM Sans', sans-serif;
color: #000;
}

.package-features {
  background: #FBFBFB;
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 16px;
  font-family: 'DM Sans', sans-serif;
}

.package-features li {
  list-style: none;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: #333;
  font-size: 14px;
}

.package-features li:last-child {
  margin-bottom: 0;
}

.package-features li img {
  width: 24px !important;
  margin-right: 12px;
}

.package-price-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.package-price {
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: #8C8C8C;
}

.package-price-row {
  display: flex;
  align-items: baseline;
  margin-top: 2px;
}

.package-price strong {
  font-size: 32px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  color: #000;
}

.package-price small {
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: #555;
  margin-left: 6px;
}

.package-btn {
  background: #629C59;
  color: #fff;
  padding: 8px 14px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 15px;
}

.package-btn:hover {
  background: #1b5e20;
}

.package-btn .fa-chevron-right {
  margin-left: 15px;
}
 .swiper-pagination {
  text-align: center;
  margin-top: 15px;
}
.swiper-pagination {
  display: block;
}

.swiper-pagination-bullet {
  width: 15px !important;
  height: 15px !important;
  background: #ccc !important;
  border-radius: 50%;
  margin: 0 5px;
  opacity: 1;
  transition: background 0.3s ease;
}


 .swiper-pagination-bullet-active {
  background: #3E7829 !important;
}
.swiper-pagination {
    position: static !important;
}
.swiper {
    padding: 20px 0px !important;
}

@media (max-width: 600px) {
  .package-card {
    width: 350px;
    margin: 0 auto;
  }

  .home-packages-button {
    width: 90%;
    text-align: center;
    margin: 0 auto !important;
    display: block;
    margin-top: 20px !important;
  }
.heading-button {
    justify-content: center;
}
  .slide-item {
    width: 100% !important;
  }
	.package-card-content h3 {
   font-size: 20px;
}
a.home-packages-button .fa-chevron-right:before{
    margin-left: 10px;
}
}

.reviews-heading{
    font-family: 'Onest', sans-serif;
    font-weight: 700;
    font-size: 34px;
}
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1200px;
}

.review-card {
  position: relative;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  font-family: 'Onest', sans-serif;
  line-height: 1.6;
  color: #333;
  overflow: hidden;
}

.review-card.green {
  background: #629C59;
  color: #fff;
}
.review-card::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
  background: url("https://internationalhajj.com/wp-content/uploads/2025/09/quotation.svg") no-repeat center/contain;
  opacity: 0.1;
  pointer-events: none;
}
.review-card.green::before {
  background: url("https://internationalhajj.com/wp-content/uploads/2025/09/quotation-icon.svg") no-repeat center/contain;
  opacity: 0.15;
}

.review-card p {
  margin-bottom: 20px;
  font-size: 15px;
}
.review-card .more-text {
  display: none;
}
.review-card.expanded .more-text {
  display: inline;
}
.review-card .read-more {
  color: #0073e6;
  font-weight: bold;
  cursor: pointer;
  margin-left: 5px;
}
.review-card .read-more {
  color: #629C59;
  font-weight: bold;
  cursor: pointer;
  margin-left: 5px;
}
.review-card.green .read-more {
  color: #fff;
}
.review-footer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-footer img {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  object-fit: cover;
}

.review-footer .name {
  font-weight: 600;
  flex: 1;
}

.review-footer .stars {
  color: #FFB000;
  font-size: 18px;
}
.load-more-btn {
  display: none;
  margin: 20px auto;
  width: 80%;
  padding: 10px 20px;
  background: #629C59;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

@media (max-width: 600px) {
  .review-card {
    display: none;
  }
  .review-card:nth-child(-n+3) {
    display: block;
  }
  .load-more-btn {
    display: block;
  }
	.reviews-heading {
   text-align: center;
}
}

.booking-section {
  text-align: center;
  
  background: #fff;
}

.booking-title {
  font-size: 34px;
  font-weight: bold;
  color: #333;
  font-family: 'Onest', sans-serif;
  margin-bottom: 5px;
}

.booking-subtitle {
  font-size: 24px;
  color: #181414;
  margin-bottom: 40px;
}

.booking-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* always 2 columns */
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.step-card {
  background: #FBFBFB;
  padding: 25px;
  border-radius: 12px;
  text-align: left;
  position: relative;
}

.step-icon {
  width: 50px;
  height: 50px;
  border: 2px solid #4caf50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.step-icon img {
  width: 24px;
  height: 24px;
}

.step-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  font-weight: bold;
  color: #ccc;
  font-family: 'Onest', sans-serif;
}

.step-title {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  font-family: 'Onest', sans-serif;
  margin-bottom: 10px;
}

.step-text {
  font-size: 14px;
  color: #323232;
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
}
@media (max-width: 600px) {
  .booking-steps {
    grid-template-columns: 1fr;
  }
}

.gallery-heading {
     font-size: 34px;
  font-weight: bold;
  color: #333;
  font-family: 'Onest', sans-serif;
  text-align: center;
}
.image-layout {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.column img {
  display: block;
  margin-bottom: 20px;
  object-fit: cover;
  border-radius: 8px;
}
.desktop-only { display: flex; gap: 20px; }
.mobile-only { display: none; }
@media (max-width: 768px) {
  .desktop-only { display: none; }
  .mobile-only { display: block; width: 100%; }
   .mobile-only .swiper-slide {
    position: relative;
    width: 100%;
    padding-top: 100%; 
    overflow: hidden;
  }
  .mobile-only .swiper-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
  }
  .mobile-swiper .swiper-pagination-bullet {
  background-color: #fff !important  ; 
  opacity: 1; 
}

.mobile-swiper .swiper-pagination-bullet-active {
  background-color: #649C5C !important; 
}
.mobile-only .swiper-pagination {
    position: absolute !important;
}
}

.blog-section {
      max-width: 1200px;
      margin: 0px auto;
      text-align: center;
      padding: 0 20px;
    }

    .blog-section h2 {
     font-size: 34px;
  font-weight: bold;
  color: #333;
  font-family: 'Onest', sans-serif;
  margin-bottom: 35px;
      
    }

    .blog-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 3fr));
      gap: 20px;
    }

    .blog-card {
      display: block;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.08) !Important;
      overflow: hidden;
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-decoration: none;
      color: inherit;
      box-shadow: 0 6px 15px rgba(0,0,0,0.12);
    }

    .blog-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0,0,0,0.12);
    }

    .blog-card img {
      width: 100%;
    }

    .blog-content {
      padding: 18px;
    }

    .blog-meta {
  font-size: 12.3px;
  color: #475569 !important;
  font-weight: 300;
  font-family: 'DM Sans', sans-serif;
  display: flex;
  gap: 8px;
  margin-top: 10px;
  align-items: center;
  margin-bottom: 0px;
}

.blog-meta i {
  color: #475569;
  font-size: 13px;
}

.blog-meta .dot {
  font-size: 28px;
  line-height: 0;
  color: #475569;
}


    .blog-content h3 {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 30px;
      font-family: 'Onest', sans-serif;
    }

    .blog-content p {
      font-size: 14px;
      color: #475569;
      margin-bottom: 12px;
      line-height: 1.5;
      font-family: 'DM Sans', sans-serif;
    }

    .read-more {
      color: #00706F;
      font-weight: 400;
      font-size: 14px;
      display: inline-flex;
      align-items: center;
      transition: color 0.3s;
    }

    .blog-card:hover .read-more {
      color: #497D45;
    }

    .read-more i {
      margin-left: 5px;
      font-size: 13px;
    }

    .blog-btn {
      margin-top: 40px;
    }

    .blog-btn button {
      background: #629C59;
      color: #fff;
      font-size: 15px;
      font-weight: 400;
      border: none;
      padding: 10px 18px;
      border-radius: 5px;
      cursor: pointer;
      transition: background 0.3s;
      font-family: 'DM Sans', sans-serif;
    }

    .blog-btn button:hover {
      background: #497D45;
    }

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

.faq-container {
      max-width: 700px;
      width: 100%;
      margin: 0 auto;
    }

    .faq-container h2 {
      text-align: center;
     font-size: 34px;
  font-weight: bold;
  color: #333;
  font-family: 'Onest', sans-serif;
  margin-bottom: 30px;
    }

    .faq-item {
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      margin-bottom: 15px;
      overflow: hidden;
      transition: all 0.3s ease;
    }
  
    .faq-question {
      cursor: pointer;
      padding: 18px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 16px;
    margin-bottom: 0px;
		font-weight: 500;
    color: #242528;
    font-family: 'Onest', sans-serif;
    }

    .faq-question i {
      font-size: 14px;
      color: #4CAF50;
      transition: transform 0.3s ease;
      padding: 5px;
      border-radius: 50%;
       background: #F7F6F5;
      color: #629C59;
      width: 24px;
    }

    .faq-item.active .faq-question {
      
    }

    .faq-item.active .faq-question i {
      transform: rotate(180deg);
      background: #629C59;
      color: #fff;
    }
     .faq-item.active {
  background-color: #fff; 
  color: #1e293b; 
}
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      font-size: 15px;
      color: #475569;
      line-height: 1.6;
      transition: max-height 0.4s ease, padding 0.3s ease;
      font-family: 'DM Sans', sans-serif;
    }

    .faq-item.active .faq-answer {
      max-height: 500px;
      padding: 15px 20px 20px;
    }