@import url('https://fonts.googleapis.com/css2?family=Kufam:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: poppins, kufam;
}
body {
    background-color: #494B90;
}

:root {
  --btn-yallow: #E5A853;
  --btn-yallow-hover: #e29d1d;
  --btn-blue: #494b90;
  --btn-blue-hover: #1e2478;
  --span-color:#E5A853;
  --ankar-hover:#E5A853;
}
/* -------------------------------------
Nav Bar Section Start
------------------------------------- */
nav{
    height: 32px;
    width: 100%;
    background-color: #E5A853;
    display: flex;
    align-content: center;
    align-items: center;
    padding: 0 5%;

}
.nav_bar{
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
nav a{
    text-decoration: none;
    color:#494B90;
    font-size: 12px;
}
.icon{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.left_icons {
    display: flex;
    align-items: center;
    gap: 24px;
}

.right_icons {
    display: flex;
    align-items: center;
}

.whatsapp_content{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav_bar {
        flex-direction: row;
        justify-content: space-between;
    }

    .left_icons {
        gap: 16px;
    }

    nav a {
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    nav {
        padding: 0 3%;
        height: auto;
        min-height: 32px;
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .nav_bar {
        flex-direction: column;
        gap: 8px;
    }

    .left_icons, .right_icons {
        width: 100%;
        justify-content: space-between;
    }

    .left_icons {
        gap: 8px;
    }
}

@media (max-width: 480px) {
    nav a {
        font-size: 10px;
        white-space: nowrap;
    }

    .icon {
        padding-left: 0;
    }

    .icon svg {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 375px) {
    .left_icons {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .right_icons {
        align-items: flex-start;
    }

    .nav_bar {
        gap: 10px;
    }
}
/* -------------------------------------
Nav Bar Section End
------------------------------------- */

/* -------------------------------------
Header Section Start
------------------------------------- */
.header {
  background-color: #494B90;
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

/* Sticky header styles */
.header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.3s ease-in-out;
}

@keyframes slideDown {
  from {
      transform: translateY(-100%);
  }
  to {
      transform: translateY(0);
  }
}

/* Adjust body padding when header is sticky to prevent content jump */
body.has-sticky-header {
  padding-top: 90px; /* Adjust this value to match your header height */
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin: 0 15px;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  transition: color 0.3s;
}

.nav-menu a:hover, .nav-menu a.active {
  color: var(--ankar-hover);
}
.enquiry-item{
  display: none;
}
.enquiry-btn {
  background-color: var(--btn-yallow);
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s;
  text-decoration: none;
  font-weight: 500;
}

.enquiry-btn:hover {
  background-color: var(--btn-yallow-hover);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 100;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 3px 0;
  transition: all 0.3s;
}

.hamburger span.rotate-45 {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger span.opacity-0 {
  opacity: 0;
}

.hamburger span.rotate-neg-45 {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu button styling */
.nav-menu .enquiry-btn-mobile {
  display: inline-block;
  background-color: #e9b356;
  color: rgb(255, 255, 255);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.3s;
  margin-top: 10px;
  width: auto;
  border:none;
}

.nav-menu .enquiry-btn-mobile:hover {
  background-color: #E5A853;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  color: #f0f0f0;

}

/* Responsive design */
@media screen and (max-width: 992px) {
  .header {
      flex-wrap: wrap;
  }

  .logo-menu-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
  }

  .hamburger {
      display: flex;
  }

  .nav-menu {
      position: fixed;
      left: -100%;
      top: 90px;
      flex-direction: column;
      background-color: #38397D;
      width: 100%;
      text-align: center;
      transition: 0.3s;
      box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
      padding: 20px 0;
      z-index: 99;
  }

  .nav-menu.active {
      left: 0;
  }

  .nav-menu li {
      margin: 15px 0;
  }

  .enquiry-btn {
      display: none;
  }

  .nav-menu li.enquiry-item {
      margin-top: 10px;
  }

  /* When header is sticky, adjust menu position */
  .header.sticky .nav-menu {
      top: 75px;
  }
}

/* Mobile specific adjustments */
@media screen and (max-width: 576px) {
  .enquiry-item{
  display: contents;
}
  .logo img {
      height: 45px;
  }

  .nav-menu .enquiry-btn-mobile {
      margin: 0 auto;
      font-size: 14px;
      width: 30%;

  }
  /* Adjust for smaller header on mobile */
  body.has-sticky-header {
      padding-top: 75px;
  }

}
/* -------------------------------------
Header Section End
------------------------------------- */

/* -------------------------------------
Super Headind Section Start
------------------------------------- */

.hero-section {
    background-color: #494B90;
    color: white;
    padding: 12px 80px;
    display: flex;
    flex-direction: column;
    min-height: 125px;
    margin-bottom: 2%;
  }

  .hero-title {
    font-family: kufam;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
    margin: 0;

  }

  .hero-subtitle {
    font-family: kufam;
    font-size: 32px;
    max-width: 1200px;

  }

  .highlight {
    color: var(--span-color);
    position: relative;
    display: inline-block;
  }

  .typing-text {
    position: relative;
    overflow: hidden;
    white-space: nowrap;
  }

  .typing-cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background-color: #E5A853;
    vertical-align: middle;
    margin-left: 2px;
    animation: blink 1s infinite;
  }

  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }

  /* Responsive styles */
  @media (max-width: 768px) {
    .hero-section {
        background-color: #494B90;
        color: white;
        padding: 5px 30px;
        display: flex;
        flex-direction: column;
        min-height: 125px;
        margin-bottom: 4%;
      }
    .hero-title {
      font-size: 28px;
      font-family: kufam;
    }

    .hero-subtitle {
      font-size: 22px;
      font-family: kufam;
    }
  }

  @media (max-width: 480px) {
    .hero-section {
        background-color: #494B90;
        color: white;
        padding: 0 38px;
        display: flex;
        flex-direction: column;
        min-height: 99px;
        margin-bottom: 3%;
      }
    .hero-title {
      font-size: 22px;
      font-family:kufam ;
    }

    .hero-subtitle {
      font-size: 18px;
      font-family: kufam;
    }
  }

/* -------------------------------------
Super Headind Section End
------------------------------------- */

/* -------------------------------------
Umrah Enquiry Section Start
------------------------------------- */
.search-form {
    background-color: white;
    border-radius: 10px;
    padding: 0 25px 25px 25px;
    max-width: 90%;
    margin: 0 auto;
  }
  /* _________________________ */

  .tab-buttons {
    display: flex;
    margin: 0 0 20px 0;
    gap: 5px; /* Added space between tabs */
}

.tab-button {
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
}

.tab-button.active {
    background-color: var(--btn-yallow);
    color: white;
    border-radius: 0 0 10px 10px;
}

.tab-button:not(.active) {
    background-color: transparent;
    color: #555;
}

.tab-button:not(.active):hover {
    background-color: #f0f0f0;
    color: #333;
    border-radius: 0 0 10px 10px;
}
@media (max-width: 768px){
  .tab-button{
    padding: 10px 10px;

  }
}
@media (max-width: 480px){
  .tab-button{
    padding: 10px 10px;

  }
}
  /* _________________________ */
  .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
  }

  .form-group {
    flex: 1;
    min-width: 200px;
  }

  .form-group label {
    display: block;
    margin-bottom: 5px;
    color: #454545;
    font-size: 14px;
  }

  .form-group input, .form-group select {
    width: 100%;
    padding: 8px;
    border: 0.5px solid #ddd;
    border-radius: 4px;
  }
.form-group input:focus-visible{
  border: 1px solid #494B90;
  outline: none;
}

  .submit-btn{
    width: 100%;
    padding: 8px;
    background-color: var(--btn-blue);
    color: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 4px;
    position: relative;
  }
  .submit-btn:hover{
    background-color: var(--btn-blue-hover);
  }
  .submit-btn span{
    text-align: center;
    position: absolute;
    left: 125px;
    bottom: 4px;
  }
  @media (max-width: 768px) {
    .submit-btn{
        position: relative;
  }
  .submit-btn span{
    position: absolute;
    left: 90px;
    bottom: 4px;
  }
}
@media (max-width: 480px) {
    .submit-btn{
        position: relative;
  }
  .submit-btn span{
    position: absolute;
    left: 90px;
    bottom: 4px;
  }
}
/* -------------------------------------
Umrah Enquiry Section End
------------------------------------- */


/* -------------------------------------
Travel Packages Card Start
------------------------------------- */
.umrah-cad-section{
  width: 100%;
  background: linear-gradient(180deg, #494B90 30%, #FFFFFF 100%);
}
.umrah-container {
  max-width: 90%;
  margin: 0 auto;
  /*padding: 20px 20px 0 20px;*/
  position: relative;

}

.umrah-header {
  color: white;
  padding: 30px 0;
}

.umrah-header-title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: kufam;

}

.umrah-header-title span {
  color: var(--span-color);
}

.umrah-header-description {
  font-size: 22px;
  opacity: 0.9;
  font-family: kufam;
}

.umrah-view-all {
  position: absolute;
  top: 121px;
  right: 25px;
  background-color: var(--btn-yallow);
  color: #333;
  padding: 7px 6px;
  border-radius: 6px;
  font-weight: normal;
  text-decoration: none;
  font-size: 11px;
  transition: all 0.2s ease;
}

.umrah-view-all:hover {
  background-color: var(--btn-yallow-hover);
  color: #404040;
}

.umrah-slider-wrapper {
  position: relative;
  overflow: hidden;
}

.umrah-slider {
  display: flex;
  transition: transform 0.5s ease;
}

.umrah-package {
  flex: 0 0 calc(33.33% - 14px);
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
}

.umrah-package-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  flex: 0 0 auto;
  border-radius: 0 0 10px 10px;
}

.umrah-package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.umrah-package-tags {
  position: absolute;
  top: 15px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 0 15px;
}

.umrah-duration-tag {
  background-color: rgba(73, 80, 162, 0.85);
  color: white;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}

.umrah-status-tag {
  background-color: #e8b75b;
  color: white;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}

.umrah-package-content {
  padding: 12px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
}

.umrah-package-title {
  color: #4950a2;
  font-size: 16px;
  margin-bottom: 8px;
  font-family: kufam;
  height: 40px;
  font-weight: 600;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.umrah-price-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.umrah-price-note {
  color: #666;
  font-size: 13px;
  max-width: 60%;
}

.umrah-price-value {
  font-size: 28px;
  font-weight: 700;
  color: #4950a2;
}

.umrah-price-symbol {
  font-size: 20px;
  margin-right: 5px;
}

.umrah-accommodations {
  margin-bottom: 10px;
}

.umrah-hotel-detail {
  display: flex;
  align-items: center;
  color: #666;
  font-size: 14px;
  margin-bottom: 6px;
}

.umrah-hotel-icon {
  color: #4950a2;
  margin-right: 10px;
  font-size: 16px;
}

.umrah-inclusions {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.umrah-inclusion-item {
  display: flex;
  align-items: center;
  background-color: #f8f0e3;
  padding: 5px 10px;
  border-radius: 30px;
  font-size: 12px;
  color: #666;
  margin: 0 5px 5px 0;
}

.umrah-inclusion-icon {
  margin-right: 5px;
  font-size: 14px;
}

.umrah-package-buttons {
  display: flex;
  gap: 10px;
  margin-top: auto;
}
.umrah-package-buttons a{
  text-decoration: none;
}

.umrah-button {
  padding: 12px;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border: none;
  font-size: 14px;
  flex: 1;
}

.umrah-button-enquiry {
  background-color: var(--btn-yallow);
  color: white;
}

.umrah-button-enquiry:hover {
  background-color: var(--btn-yallow-hover);
}

.umrah-button-details {
  background-color: var(--btn-blue);
  color: white;
}

.umrah-button-details:hover {
  background-color: var(--btn-blue-hover);
  color: var(--btn-yallow-hover);
}


.umrah-navigation {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 15px;
}

.umrah-pagination {
  display: flex;
  gap: 8px;
  margin-right: auto;
  margin-left: auto;
}

.umrah-pagination-dot {
  width: 15px;
  height: 4px;
  background-color: #ddd;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-bottom: 20px;
}

.umrah-pagination-dot.active {
  background-color: #4950a2;
}

.umrah-controls {
  display: flex;
  gap: 8px;
  position: absolute;
  right: 3px;
  bottom: 25px;
}

.umrah-control-button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: white;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 16px;
  color: #4950a2;

}

.umrah-control-button:hover {
  background-color: #4950a2;
  color: white;
  border-color: #4950a2;
}

.umrah-control-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 1024px) {
  .umrah-package {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  .umrah-package {
    flex: 0 0 100%;
  }

  .umrah-header-title {
    font-size: 22px;
  }

  .umrah-header-description {
    font-size: 14px;
  }

  .umrah-view-all {
    position: relative;
    top: 0;
    right: 0;
    display: block;
    width: fit-content;
    margin: 8px 0 0 auto;
  }
}

/* -------------------------------------
Travel Packages Card End
------------------------------------- */

/* -------------------------------------
Special offer Banner Start
------------------------------------- */

.offer-banner{
  background-color: #ffffff;
  padding-bottom: 20px;
}
.content-container {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 90%;
  margin: auto;
border-radius: 10px;
background-image: url('./../images/background.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}


.promo-banner {
  border-radius: 10px;
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);

  background-color: #494b90a4;

}

.offer-content {
  flex: 1;
}

.main-heading {
  color: white;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 10px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  font-family: kufam;
}

.sub-heading {
  color: white;
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.2;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  font-family: kufam;
}

.brand-logo-container {
  margin-left: 20px;
}

.brand-logo {
  max-width: 180px;
  height: auto;
  background-color: white;
  border-radius: 8px;
  padding: 8px;
}



/* Responsive styles */
@media screen and (max-width: 992px) {
  .main-heading {
      font-size: 2.8rem;
  }

  .sub-heading {
      font-size: 2.2rem;
  }
}

@media screen and (max-width: 768px) {
  .promo-banner {
      flex-direction: column;
      text-align: center;
      padding: 25px;
  }

  .brand-logo-container {
      margin-left: 0;
      margin-top: 20px;
  }

  .main-heading {
      font-size: 2.4rem;
  }

  .sub-heading {
      font-size: 1.8rem;
  }

  .section-title {
      font-size: 1.8rem;
  }
}

@media screen and (max-width: 480px) {
  .main-heading {
      font-size: 2rem;
  }

  .sub-heading {
      font-size: 1.5rem;
  }

  .brand-logo {
      max-width: 140px;
  }

  .promo-banner {
      padding: 20px;
  }

}

/* -------------------------------------
Special offer Banner End
------------------------------------- */

/* -------------------------------------
Special Ramadan Umrah Packages Star
------------------------------------- */
.umrah-cad-section-two{
  background-color:  #EFF0FF;
}
.umrah-ramzan-header {
  padding: 30px 0;
  color: #494B90;
}

.umrah-ramzan-header-title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: kufam;

}

.umrah-ramzan-header-title span {
  color: var(--span-color);
}

.umrah-ramzan-header-description {
  font-size: 22px;
  opacity: 0.9;
  font-family: kufam;
}

.umrah-ramzan-view-all {
  position: absolute;
  top: 121px;
  right: 25px;
  background-color: #E5A853;
  color: #333;
  padding: 7px 6px;
  border-radius: 6px;
  font-weight: normal;
  text-decoration: none;
  font-size: 11px;
  transition: all 0.2s ease;
}

.umrah-ramzan-view-all:hover {
  background-color: #d6a64a;
}
.umrah-ramzan-package {
  flex: 0 0 calc(33.33% - 14px);
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
}
.umrah-ramzan-navigation {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 15px;
}
.umrah-ramzan-pagination {
  display: flex;
  gap: 8px;
  margin-right: auto;
  margin-left: auto;
}

.umrah-ramzan-pagination-dot {
  width: 15px;
  height: 4px;
  background-color: #ddd;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-bottom: 20px;
}

.umrah-ramzan-pagination-dot.active {
  background-color: #4950a2;
}
@media (max-width: 1024px) {
  .umrah-ramzan-package {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  .umrah-ramzan-package {
    flex: 0 0 100%;
  }

  .umrah-ramzan-header-title {
    font-size: 22px;
    font-weight: 600;
  }

  .umrah-ramzan-header-description {
    font-size: 14px;
  }

  .umrah-ramzan-view-all {
    position: relative;
    top: 0;
    right: 0;
    display: block;
    width: fit-content;
    margin: 8px 0 0 auto;
  }
}

/* -------------------------------------
Special Ramadan Umrah Packages End
------------------------------------- */
/* -------------------------------------
A Wonderful Agency To Fulfill your Dreams Start
------------------------------------- */
.wonderful-agency-section{
  background-color: #f8f8f8;
  max-height: fit-content;

}
.wonderful-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  /* justify-content: space-between; */
  gap: 20px;
}

.left-section {
  flex: 1;
  min-width: 300px;
  height: 200px;
  position: relative;
}

.right-section {
  flex: 1;
  min-width: 300px;
  padding: 10px;
  margin-left: 20px;
  position: relative;
}

.person-image {
  position: absolute;
  top: -112px;
  left: 135px;
  z-index: 2;
  width: 1000%;
  max-width: 300px;
  display: block;
  margin: 0 auto;
  border-radius: 20px;
}

.review-bubble {
  position: absolute;
  background: white;
  border-radius: 15px;
  padding: 7px 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 3;
  display: flex;
  align-items: center;
}

.bubble-top {
  top: -28%;
  right: 5%;
  animation: pulse 2s infinite alternate, slideInFromRight 0.8s ease-out;
}

.bubble-bottom {
  bottom: -24%;
  right: 10%;
  animation: pulse 2.5s infinite alternate, slideInFromRight 1.2s ease-out;
}

.review-bubble img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}

.review-content {
  display: flex;
  flex-direction: column;
}

.review-name {
  font-weight: 600;
  font-size: 14px;
}

.rating {
  display: flex;
  align-items: center;
  color: #e7a74e;
}

.star {
  margin-right: 5px;
  animation: starTwinkle 1.5s infinite alternate;
}

.agency-logo {
  position: absolute;
  bottom: -67%;
  left: 36%;
  z-index: 3;
  max-width: 150px;
  animation: fadeIn 1s ease;
}

.right-section h1 {
  /* position: absolute; */
  color: #504293;
  font-size: 2.5rem;
  margin-bottom: 15px;
  animation: fadeInRight 0.8s ease;
  font-family: kufam;
}

.description {
  color: #555;
  margin-bottom: 18px;
  line-height: 1.6;
  animation: fadeInRight 1s ease;

}

.features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 19px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 15px;
  animation: fadeInRight 1.2s ease;
}

.feature:nth-child(2) {
  animation-delay: 0.2s;
}

.feature:nth-child(3) {
  animation-delay: 0.4s;
}

.feature:nth-child(4) {
  animation-delay: 0.6s;
}

.feature-icon {
  background-color: #e7a74e;
  width: 30px;
  height: 30px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
}

.buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  animation: fadeInUp 1.4s ease;
}

.btn {
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--btn-yallow);
  color: white;
}
.btn-primary:hover{
  background-color: var(--btn-yallow-hover);
}
.btn-secondary {
  background-color: var(--btn-blue);
  color: white;
}
.btn-secondary:hover{
  background-color: var(--btn-blue-hover);
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Background styling to match the image you provided */

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  100% {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
}

@keyframes starTwinkle {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  /* .wonderful-container {
    flex-direction: column;
  } */

  .left-section {
    height: 400px;
    margin-bottom: 30px;
    position: relative;
  }
  .person-image {
    position: absolute;
    top: 5px;
    left: 30px;
    /* width: 300px; */
    height: 350px;
  }
  .agency-logo {
    position: absolute;
    bottom: -2%;
    left: 22%;
    z-index: 3;
    max-width: 150px;
    animation: fadeIn 1s ease;
  }
  .right-section{
    /* flex: 1; */
    min-width: 300px;
    height: 420px;
    padding: 0px;
    margin: 0px 25px;
    position: relative;
  }
  .sub-right-section{
    position: absolute;
    bottom: -15px;
    right: 0px;
  }
  .right-section h1 {
    font-size: 1.5rem;
    margin-top:90% ;
  }

  .bubble-top {
    top: 5%;
    right: 6%;
  }

  .bubble-bottom {
    bottom: 17%;
    right: 9%;
  }

  .buttons {
    flex-direction: column;
  }
}



/* -------------------------------------
A Wonderful Agency To Fulfill your Dreams End
------------------------------------- */



/* -------------------------------------
Go to Haram Umrah & Holidays Packages Start
------------------------------------- */
.umrah-Holidays-section{
  background: linear-gradient(180deg, #ffffff 20%, #FFC265 100%);
}

.umrah-Holidays-header {
  padding: 30px 0;
  color: #494B90;

}

.umrah-Holidays-header-title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: kufam;

}

.umrah-Holidays-header-title span {
  color: var(--span-color);
}

.umrah-Holidays-header-description {
  font-size: 22px;
  opacity: 0.9;
}

.umrah-Holidays-view-all {
  position: absolute;
  top: 121px;
  right: 25px;
  background-color: #E5A853;
  color: #333;
  padding: 7px 6px;
  border-radius: 6px;
  font-weight: normal;
  text-decoration: none;
  font-size: 11px;
  transition: all 0.2s ease;
}

.umrah-Holidays-view-all:hover {
  background-color: #d6a64a;
}
.umrah-Holidays-package {
  flex: 0 0 calc(33.33% - 14px);
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
}
.umrah-Holidays-navigation {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 15px;
}
.umrah-Holidays-pagination {
  display: flex;
  gap: 8px;
  margin-right: auto;
  margin-left: auto;
}

.umrah-holidays-pagination-dot {
  width: 15px;
  height: 4px;
  background-color: #ddd;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-bottom: 20px;
}

.umrah-holidays-pagination-dot.active {
  background-color: #4950a2;
}
@media (max-width: 1024px) {
  .umrah-Holidays-package {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  .umrah-Holidays-package {
    flex: 0 0 100%;
  }

  .umrah-Holidays-header-title {
    font-size: 22px;
    font-weight: 600;
  }

  .umrah-Holidays-header-description {
    font-size: 14px;
  }

  .umrah-Holidays-view-all {
    position: relative;
    top: 0;
    right: 0;
    display: block;
    width: fit-content;
    margin: 8px 0 0 auto;
  }
}




/* -------------------------------------
Go to Haram Umrah & Holidays Packages End
------------------------------------- */


/* -------------------------------------
Go to Haram Umrah & Holidays Packages 2nd Part Start
------------------------------------- */
/* Main container */
.hajj-section{
background-color: #FFC265;
}
.hajj-container {
  max-width: 90%;
  margin: 0 auto;
}

/* Header styles */
.hajj-header {
  text-align: left;
  margin-bottom: 2.5rem;
}

.hajj-main-title {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 600;
  color: #4f5fa3;
  font-family: kufam;
}

.hajj-main-title span {
  color: #ffffff;
}

.hajj-subtitle {
  color: #4f5fa3;
  font-size: 1.2rem;

}

/* Card grid layout */
.hajj-card-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.625rem 1.875rem -0.625rem;
}

.hajj-card-column {
  flex: 0 0 25%;
  padding: 0 0.625rem;
  margin-bottom: 1.25rem;
}

/* Card styles */
.hajj-card {
  background-color: #ffffff;
  border-radius: 0.625rem;
  padding: 1.5rem;
  height: 100%;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hajj-card:hover {
  transform: translateY(-0.3125rem);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.hajj-icon-box {
  width: 3.125rem;
  height: 3.125rem;
  background-color: #4f5fa3;
  border-radius: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.hajj-icon {
  font-size: 1.5rem;
  color: white;
}

.hajj-card-title {
  font-size: 1.25rem;
  color: #333;
  margin-bottom: 0.625rem;
  font-weight: 600;
}

.hajj-card-text {
  color: #666;
  line-height: 1.5;
  font-size: 0.9375rem;
}

/* Responsive breakpoints */
@media screen and (max-width: 1024px) {
  .hajj-card-column {
      flex: 0 0 33.333333%;
  }
}

@media screen and (max-width: 768px) {
  .hajj-card-column {
      flex: 0 0 50%;
  }

  .hajj-main-title {
      font-size: 2rem;
  }

  .hajj-subtitle {
      font-size: 1rem;
  }
}

@media screen and (max-width: 576px) {
  .hajj-card-column {
      flex: 0 0 100%;
  }

  .hajj-main-title {
      font-size: 22px;
  }

  .hajj-container {
      padding: 1.25rem 0.9375rem;
  }
  .hajj-card {
   text-align: center;
   display: block;
    justify-items: center;
  }
}


/* -------------------------------------
Go to Haram Umrah & Holidays Packages 2nd Part End
------------------------------------- */

/* -------------------------------------
Testimonials from our customers Start
------------------------------------- */
.testimonials-section{
  background-color: #EFF0FF;
}
.testimonials-container {
  max-width: 90%;
  margin: 0 auto;
  padding: 35px 0  15px 0;
}

.testimonials-header {
  text-align: left;
  margin-bottom: 14px;
}

.testimonials-header h1 {
  color: #4b4b9d;
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-family: kufam;

}

.testimonials-header p {
  color: #5050a9;
  font-size: 20px;
  font-weight: 500;
}

.testimonials-row {
  overflow: hidden;
  position: relative;
  margin-bottom: 10px;
  padding: 15px 0;
  white-space: nowrap;
}

.testimonials-row-inner {
  display: inline-block;
  white-space: nowrap;
  animation-duration: 30s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.row-1 .testimonials-row-inner {
  animation-name: slideRight;
}

.row-2 .testimonials-row-inner {
  animation-name: slideLeft;
}

.testimonial-card {
  display: inline-block;
  width: 350px;
  margin: 0 15px;
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  vertical-align: top;
  white-space: normal;
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.testimonial-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  flex-shrink: 0;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  color: #333;
  font-size: 18px;
  font-weight: 600;
  font-family: kufam;
  margin-bottom: 5px;
}

.testimonial-button {
  display: inline-block;
  background-color: #f0b971;
  color: #333;
  font-size: 14px;
  padding: 8px 15px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 10px;
}

.testimonial-text {
  color: #555;
  font-size: 14px;
  font-family: kufam;
  line-height: 1.4;
}

.testimonial-rating {
  display: inline-block;
  background-color: #f0b971;
  color: #333;
  font-size: 14px;
  padding: 5px 12px;
  border-radius: 20px;
  margin-top: 10px;
  font-weight: 500;
}

@keyframes slideRight {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(-50%);
  }
}

@keyframes slideLeft {
  0% {
      transform: translateX(-50%);
  }
  100% {
      transform: translateX(0);
  }
}
@media (max-width: 768px) {
  .testimonials-header h1 {
    color: #4b4b9d;
    font-size: 22px;
  }
  .testimonials-header p{
    font-size: 16px;

  }
}

/* -------------------------------------
Testimonials from our customers End
------------------------------------- */

/* -------------------------------------
Footer Start
------------------------------------- */

.footer {
  width: 100%;
  background-color: #464993;
  color: white;
  padding: 35px 50px 20px 50px;
}

.footer-container {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  /*justify-content: space-between;*/
  gap: 2rem;
}

.footer-logo-section {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 20px;
  max-width: 100%;
}

.footer-logo img {
  max-width: 90%;
  height: auto;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.footer-links-section {
  flex: 1;
  min-width: 180px;
}

.footer-links-title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  cursor: default;
}

.footer-links {
  list-style: none;
}

.footer-link {
  margin-bottom: 10px;
}

.footer-link a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.footer-link a:hover {
  color: var(--ankar-hover);
}

.footer-link.active a {
  color: var(--ankar-hover);
  font-weight: 600;
}

/* Dropdown arrow icon */
.dropdown-icon {
  display: none;
  float: right;
  transition: transform 0.3s ease;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
  .footer {
    margin-bottom: 20px;
  }
  .footer-container {
      gap: 5px;
  }

  .footer-logo-section {
      flex: 100%;
      text-align: center;
  }

  .footer-links-section {
      min-width: 40%;
  }
  .footer-tagline {
    margin-bottom: 0px;
  }
}

@media (max-width: 600px) {
  .footer-links-section {
      min-width: 100%;
      width: 100%;
  }

  .footer-links-title {
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      padding: 15px 0;
      margin-bottom: 0;
      cursor: pointer;
      position: relative;
  }

  .dropdown-icon {
      display: inline-block;
      font-size: 18px;
      margin-right: 10px;
  }

  .footer-links {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
  }

  .footer-links-section.active .footer-links {
      max-height: 300px;
      padding-top: 15px;
      padding-bottom: 10px;
  }

  .footer-links-section.active .dropdown-icon {
      transform: rotate(180deg);
  }
}

/* -------------------------------------
Footer End
------------------------------------- */

/* -------------------------------------
Copyright and Social Media Start
------------------------------------- */

.social-footer {
  background-color: #3a3b7e;
  color: white;
  padding: 20px 51px 20px 51px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.copyright {
  font-size: 16px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s;
}

.social-icon:hover {
  transform: scale(1.1);
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .social-footer {
      flex-direction: column;
      gap: 20px;
      text-align: center;
      padding: 15px;
  }

  .copyright {
      font-size: 14px;
  }

  .social-icons {
      justify-content: center;
  }
}

@media (max-width: 480px) {
  .social-icon {
      width: 35px;
      height: 35px;
  }

  .social-icon img {
      width: 20px;
      height: 20px;
  }
}

ul{
  padding: 0;
}

/* -------------------------------------
Copyright and Social Media End
------------------------------------- */
