/*
Theme Name: Alishba Theme
Author: Aazim
Description: Custom WordPress Theme
Version: 1.0
*/

.flx_direction{
    display:flex;
    flex-direction:column;
  }
  .flx_direction ._row_flex{
    display:flex;
    flex-wrap:wrap;
  }
  ._contact_padd{
    padding: 50px 0;
  }
  /* ===== SERVICES SECTION (ISOLATED) ===== */

.alishba-services {
  background: #0b0b0b;
  padding: 50px 0;
}
.alishba-services.bgimage{
    background-image: url("./assets/images/slide02.png");
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
}

.alishba-services__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.alishba-services__title {
  text-align: center;
  color: #ffffff;
  font-size: 36px;
  letter-spacing: 1px;
  margin-bottom: 70px;
}

/* GRID */
.alishba-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARD */
.alishba-services__item {
  text-align: center;
  padding: 45px 30px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgb(255 255 255 / 21%);
  transition: all 0.35s ease;
  border-radius: 8px;
}

.alishba-services__item img {
  width: 60px;
  margin-bottom: 22px;
  filter: brightness(0) invert(1);
}
.alishba-services__item svg path{
  fill: #fff;
}
.alishba-services__item:hover svg path{
  fill: #000;
}

.alishba-services__item p {
  color: #ffffff;
  font-size: 17px;
  line-height: 1.4;
  margin: 0;
}

/* HOVER */
.alishba-services__item:hover {
  transform: translateY(-8px);
  background: rgb(244 251 255);
  border-color: rgba(255,255,255,0.3);
}
.alishba-services__item:hover p{
  color: #000;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .alishba-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .alishba-services__grid {
    grid-template-columns: 1fr;
  }

  .alishba-services__title {
    font-size: 26px;
  }
}

/* ===== WHY TRAVEL WITH US ===== */

.alishba-why {
  background: #fff;
  padding: 50px 0;
}

.alishba-why__container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.alishba-why__title {
  text-align: center;
  margin-bottom: 70px;
  letter-spacing: 1px;
}

/* GRID */
.alishba-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}

/* ITEM */
.alishba-why__item {
  text-align: center;
  padding: 45px 30px;
  /*background: rgb(0 0 0 / 73%);*/
  background: rgb(197 139 42);
  /*border: 1px solid rgba(0,0,0,0.2);*/
  border: 1px solid rgb(255 255 255 / 20%);
  transition: all 0.35s ease;
  border-radius: 8px;
}

/* ICON */
.alishba-why__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
}

.alishba-why__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #ffffff;
  stroke-width: 1.6;
}

/* TEXT */
.alishba-why__item h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 10px;
}

.alishba-why__item p {
  color: #cccccc;
  font-size: 15px;
  line-height: 1.5;
}

/* HOVER */
.alishba-why__item:hover {
  transform: translateY(-8px);
  /*background: rgb(244 251 255);*/
  /*border-color: rgba(0,0,0,0.3);*/
  background: rgb(255 255 255);
  border-color: rgb(195 138 42);
}
.alishba-why__item:hover h4{
  /*color: #000;*/
  color: #c58b2a;
}
.alishba-why__item:hover p{
  /*color: #000;*/
  color: #c58b2a;
}
.alishba-why__item:hover .alishba-why__icon svg{
  /*stroke: #000;*/
  stroke: #c58b2a;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .alishba-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .alishba-why__grid {
    grid-template-columns: 1fr;
  }
}
.alishba-why__icon svg {
  stroke: #fff;
}
.formModelSection{
  text-align: center;
  background-image: url(https://images.hdqwalls.com/download/taj-mahal-india-hd-3840x2160.jpg);
  background-size: cover;
  background-position: top;
  position: relative;
}
.formModelSection:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
}
.formModelSection .section-title{
  background: #fff;
  padding: 48px 24px;
  border-radius: 8px;
}
/* ===== SIMPLE MODAL ===== */
.journey-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.journey-modal.active {
  display: flex;
}

.journey-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
}

.journey-modal__content {
  position: relative;
  max-width: 480px;
  background: #fff;
  margin: 10% auto;
  padding: 35px;
  text-align: center;
  z-index: 2;
  animation: modalFade 0.3s ease;
}

.journey-modal__content h3 {
  margin-bottom: 10px;
}

.journey-modal__content p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #666;
}

.journey-modal__content input,
.journey-modal__content textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
}

.journey-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
}

@keyframes modalFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}