@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: --bg-color;*/
/*}*/

:root {
  --primary-btn:#004855;
  --primary-btn-hover: #003C47;
  --secondary-btn: #E5A853;
  --secondary-btn-hover: #f6a02d;
  --primary-color: #004855;
  --secondary-color: #003C47;
  --primary-bg-color: #124170;
  --secondary-bg-color: #EDFCFF;
  --span-color:#E5A853;
  --ankar-hover: rgba(238, 253, 255, 0.26);
  --mustard-color:#E5A853;
  --white-color:#FFFFFF;
  --black-color:#000000;

}

/* Floating contact bar */
.floating-contact {
  position: fixed;
  right: 18px;
  left: auto;
  bottom: 90px; /* keep above your scroll-top */
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.floating-contact__btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(0,0,0,0.2);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  opacity: 0.98;
}

.floating-contact__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.25);
  opacity: 1;
}

.floating-contact__btn i {
  font-size: 22px;
  line-height: 1;
}

/* Specific colors */
.floating-contact__btn--phone {
  background: #25a55f; /* green-ish phone */
}

.floating-contact__btn--whatsapp {
  background: var(--primary-color); /* WhatsApp green */
}
a.floating-contact__btn--whatsapp:hover {
  background: #25a55f!important;
}

/* Optional: slightly larger on touch for accessibility */
@media (pointer: coarse) {
  .floating-contact__btn {
    width: 58px;
    height: 58px;
  }
}

.whatsapp::before{
  font-size: 32px;
}




/* -------------------------------------
Nav Bar Section Start
------------------------------------- */
nav{
  height: 32px;
  width: 100%;
  background-color: var(--primary-color);
  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: var(--white-color);
  font-size: 12px;
  font-weight: 600;
}
.icon{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.icon a:hover{
  color: var(--secondary-btn);
}
.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;
}

.form-control:focus{
  border-color: var(--primary-color);
  box-shadow: none;
}
.form-select:focus{
  border-color: var(--primary-color);
  box-shadow: none;
}

/* 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: var(--secondary-color);
  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;
  background: var(--secondary-color);
  backdrop-filter: blur(10px);
}


@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(--secondary-btn);
  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(--secondary-btn-hover);
  color: var(--primary-color);
}

.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: var(--primary-color);
  color: white;
  padding: 12px 80px;
  display: flex;
  flex-direction: column;
  min-height: 125px;
}

.hero-title {
  font-family: kufam;
  font-size: 40px;
  font-weight: 600;
  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: var(--primary-color);
    color: white;
    padding: 1rem 18px;
    display: flex;
    flex-direction: column;
    min-height: 125px;
  }
  .hero-title {
    font-size: 28px;
    font-family: kufam;
  }

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

@media (max-width: 480px) {
  .hero-section {
    background-color: var(--primary-color);
    color: white;
    display: flex;
    flex-direction: column;
    min-height: 99px;
    padding: 1rem 18px;
  }
  .hero-title {
    font-size: 22px;
    font-family:kufam ;
  }

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

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

/* -------------------------------------
Umrah Enquiry Section Start
------------------------------------- */
.form-section{
  background-color: var(--primary-color);
}

.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(--secondary-btn);
  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 var(--primary-color);
  outline: none;
}

.submit-btn{
  width: 100%;
  padding: 8px;
  background-color: var(--primary-btn);
  color: #f0f0f0;
  border: 1px solid #ddd;
  border-radius: 4px;
  position: relative;
}
.submit-btn:hover{
  background-color: var(--primary-btn-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, var(--primary-color) 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: 12px;
  opacity: 0.9;
  font-family: kufam;
}

.umrah-view-all {
  position: absolute;
  top: 121px;
  right: 25px;
  background-color: var(--secondary-btn);
  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(--secondary-btn-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: var(--secondary-color);
  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: var(--primary-color);
  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: var(--mustard-color);
}

.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: var(--primary-color);
  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(--secondary-btn);
  color: white;
}

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

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

.umrah-button-details:hover {
  background-color: var(--primary-btn-hover);
  color: var(--secondary-btn-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: var(--primary-color);
}

.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: var(--primary-color);

}

.umrah-control-button:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.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: var(--primary-color);

}

.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: var(--primary-color);
}

.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 span {
  /* position: absolute; */
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 15px;
  animation: fadeInRight 0.8s ease;
  font-weight: 600;
  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(--secondary-btn);
  color: white;
}
.btn-primary:hover{
  background-color: var(--secondary-btn-hover);
}
.btn-secondary {
  background-color: var(--primary-btn);
  color: white;
}
.btn-secondary:hover{
  background-color: var(--primary-btn-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 span {
    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: var(--primary-color);

}

.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: var(--primary-color);
  padding: 3rem 0;
}
.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: var(--primary-color);
  font-family: kufam;
}

.hajj-main-title span {
  color: var(--span-color);
}

.hajj-subtitle {
  color: var(--secondary-color);
  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.6rem;
  padding: 1rem;
  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;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  gap: 1.5rem;

}

.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;
  border-radius: 0.5rem;
}
/* Ensure icons scale consistently inside the box */
.hajj-icon-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.hajj-content{
  width: 100%;
}

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

.hajj-card-title {
  font-size: 1.25rem;
  color: #333;
  font-weight: 600;
  margin: 0 0 0.25rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;

}

.hajj-card-text {
  color: #666;
  line-height: 1.5;
  font-size: 0.9375rem;
  margin: 0;
  /* Reserve consistent text height and clamp overflow */
  min-height: calc(1.5em * 3); /* up to 3 lines visible */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;

}

/* 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;
  }
  .image-side{
    display: none;
  }
}

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

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

  .hajj-container {
    padding: 0;
  }
  .hajj-card {
    display: flex;
    align-items: center;
    text-align: center;
  }
  .hajj-icon-box {
    margin-bottom: 0.5rem;
  }
  .hajj-card-title,
  .hajj-card-text {
    text-align: center;
  }

  .image-side{
    display: none;
  }

}



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

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

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

.testimonials-header span {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-family: kufam;

}

.testimonials-header p {
  color: var(--span-color);
  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: 10px;
  padding: 4px 8px;
  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: var(--primary-color);
  color: white;
  padding: 35px 50px 20px 50px;

  /* Overlay setup */
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--footer-overlay);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.footer > .footer-container {
  position: relative;
  z-index: 1;
}
.footer-container {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  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: var(--secondary-color);
  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;
}


/* Airline Partners Section */
.airlines-section {
  background-color: #ffffff;
  padding: 32px 0;
}

.airlines-container {
  max-width: 90%;
  margin: 0 auto;
}

.airlines-header {
  text-align: left;
  margin-bottom: 18px;
}

.airlines-header span {
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 6px;
  font-family: kufam;
}

.airlines-header p {
  color: var(--mustard-color);
  font-size: 1rem;
  margin: 0;
}

/* Logo grid */
.airlines-logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
}

.airline-logo-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 16px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.airline-logo-card img {
  max-height: 42px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.9;
  transition: filter 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.airline-logo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.airline-logo-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Empty state */
.airlines-empty {
  grid-column: 1 / -1;
  color: #666;
  text-align: center;
  padding: 16px 0;
}

/* Responsive */
@media (max-width: 1200px) {
  .airlines-logos {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
@media (max-width: 992px) {
  .airlines-logos {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .airlines-header h2 {
    font-size: 1.5rem;
  }
  .airlines-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
  .airline-logo-card img {
    max-height: 38px;
  }
}
@media (max-width: 480px) {
  .airlines-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .airline-logo-card {
    min-height: 70px;
    padding: 12px 10px;
  }
  .airline-logo-card img {
    max-height: 34px;
  }
}

/* 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;
}

.bluish-bg {
  background-color: var(--secondary-bg-color);
  padding: 50px 0;
}
.packages-title{
  color: var(--primary-color);
  font-family: Kufam;
}
.packages-title span{
  color: var(--span-color);
  font-family: Kufam;
}


/*Detail Page*/

.packageDetails{
  background: linear-gradient(to bottom, var(--primary-color) 32%, var(--white-color) 100%);
}
.packageDetails .txt{
  padding: 2.2rem 3.5rem 0 3.5rem;
}
.packageDetails .txt p{
  font-family: Kufam;
  font-weight: 600;
  font-size: 46px;
  line-height: 140%;
  letter-spacing: 0;
  color: var(--white-color);
}
.packageDetails .txt p span{
  color: var(--mustard-color);
  font-family: Poppins;
  font-weight: 600;
  font-size: 38px;
}
.packageDetails .txt span{
  font-family: Poppins;
  font-weight: 400;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--white-color);
}
.view-btn{
  display: flex;
  justify-content: flex-end;
  padding: 0 3.5rem 1.8rem 0;
}
.view-btn a{
  text-decoration: none;
  padding: 11px 24px;
  color: var(--primary-color);
  font-family: Poppins, sans-serif;
  font-weight: 500;
  font-size: 11.1px;
  line-height: normal;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
  background-color: var(--mustard-color);
  border-radius: 8px;
}
.packges{
  padding: 0 2rem 1rem 2rem;
  width: 100%;
  display: flex;
  gap: 1rem;
}
.package-1{
  width: 100%;
  display: flex;
  gap: 1.5rem;
}
.pkg-1-img1{
  width: 30rem;
}
.pkg-1-img2{
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 28%;
}
.pkg-1-img2 img {
  object-fit: cover;
}
.pkg-1-img1 img{
  width: 100%;
  height: 80%;
  border-radius: 1rem;
  object-fit: cover; /* Maintain aspect ratio while covering the container */
}
.package-2{
  width: 50%;
  height: 400px; /* Match height with package-1 */
}
.card{
  width: 100%;
  background-color: var(--white-color);
  display: flex;
  flex-direction: column;
  overflow-y: auto; /* Add scrolling if content exceeds height */
  border-radius: 1rem!important;
}

.card h3{
  font-family: Poppins;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 110%;
  vertical-align: middle;
  color: var(--primary-color);
  margin: 0 0 1rem 0;
}

.card-txt{
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.card-txt p{
  font-family: Poppins;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0;
  vertical-align: middle;
  color: #6F7A8F;
}
.info{
  display: flex;
  gap: 14px;
}
.info a{
  text-decoration: none;
  font-family: Poppins;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0;
  vertical-align: middle;
  margin:0;
  color: #6F7A8F;
}
.info a span i{
  color: var(--primary-color);
  padding: 4px;
}
.info a span{
  height: 16px;
  width: 16px;
  background: var(--ankar-hover);
  border-radius: 2.5px;
  margin-right: 8px;
}
.card-txt-2{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.3rem;
}
.card-txt-2 p{
  font-family: Poppins;
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
  letter-spacing: 0;
  vertical-align: middle;
  color: #6F7A8F;
  max-width: 60%;
}
.card-txt-2 h4{
  font-family: Kufam;
  font-weight: 700;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: right;
  vertical-align: middle;
  color: var(--mustard-color);
  margin: 0;
}
.card-txt-2 h4 span{
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  vertical-align: middle;
  color: var(--mustard-color);
}
.umrah-inclusion-item {
  display: inline-flex;
  align-items: center;
  margin-right: 10px;
  margin-bottom: 5px;
  font-size: 12px;
  color: #6F7A8F;
}

.umrah-inclusion-icon {
  display: inline-flex;
  margin-right: 4px;
}

.package-detail-btn{
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 0.3rem;
}
.package-detail-btn a{
  text-decoration: none;
  color: var(--white-color);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
  width: 49.5%;
  background-color: var(--mustard-color);
  padding: 6px 0;
  border-radius: 4px;
}
.package-detail-btn a:last-child{
  background-color: var(--primary-color);
}

/*overview */
.overview{
  padding: 1rem 2rem 1rem 2rem;
  background-color: var(--white-color);
  width: 100%;
  display: flex;
  gap: 1rem;
}
.overview1{
  padding: 0 1.5rem;
  width: 50%;
}
.overview1 p{
  font-family: Kufam;
  font-weight: 600;
  font-size: 32px;
  line-height: 140%;
  letter-spacing: 0;
  color: var(--primary-color);
}
.overview-info{
  display: flex;
  gap: 5rem;
  margin-top: 24px;
}
.included span{
  font-family: Poppins;
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0;
  vertical-align: middle;
  color: var(--primary-color);
}
.overview-txt p{
  font-family: Poppins;
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0;
  vertical-align: middle;
  color: #6F7A8F;
  margin: 12px 0 12px 0;
}
.overview-txt p span{
  font-family: Poppins;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0;
  vertical-align: middle;
  color: #6F7A8F;
}
.excluded h4{
  font-family: Poppins;
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0;
  vertical-align: middle;
  color: var(--mustard-color);
}
.excluded .overview-txt p:first-child a{
  font-family: Poppins;
  font-weight: 400;
  font-style: italic;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0;
  vertical-align: middle;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-offset: 0;
  text-decoration-thickness: 0;
  text-decoration-skip-ink: auto;
  color: var(--mustard-color);
}
.tick i{
  color: var(--secondary-color);
}
.overview2{
  width: 50%;
}
.form-card{
  width: 100%;
  padding: 24px 36px 24px 36px;
  border-radius: 16px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-box{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.input-box label{
  font-family: Poppins;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
}
.input-box input{
  border-radius: 4px;
  border: 1px solid #E9E9E9;
  padding: 8px 18px;
}
.input-box input:focus-visible{
  border: 1px solid var(--primary-color);
  outline: none;
}
.input-box textarea{
  border-radius: 4px;
  border: 1px solid #E9E9E9;
  padding: 8px 18px;
  width: 100%;
  resize: vertical;
}
.input-box textarea:focus-visible{
  border: 1px solid var(--primary-color);
  outline: none;
}
.submit-btn{
  width : 100%;
  background-color : var(--primary-color);
}
.submit-btn:hover{
  background-color :  var(--secondary-color); !important;
  scale : 1 !important;
  color : white !important;
}




/* Responsive styles for mobile devices */
@media (max-width: 768px) {
  .packageDetails .txt {
    padding: 1.5rem 1rem 0 1rem!important;
  }

  .packageDetails .txt p {
    font-size: 22px;
  }
  .packageDetails .txt p span{
    font-size: 22px;
  }

  .packageDetails .txt span {
    font-size: 18px;
  }

  .view-btn {
    padding: 0 1rem 1rem 0;
  }

  .packges {
    padding: 0 1rem 1rem 1rem;
    flex-direction: column;
  }

  .package-1, .package-2 {
    width: 100%;
    height: auto; /* Reset fixed height on mobile */
  }

  .card{
    margin-bottom: 1rem;
  }
  .card h3{
    font-size: 18px;
  }


  .pkg-1-img1 {
    width: 100%;
    height: 160px; /* Smaller height on mobile */
  }

  .pkg-1-img2 {
    display: none; /* Hide this class in mobile view */
  }

  .package-2 .card {
    overflow-y: visible; /* No need for scrolling on mobile */
  }

  .card-txt-2 h4 {
    font-size: 24px;
  }

  .overview {
    padding: 1rem;
    flex-direction: column;
  }

  .overview1, .overview2 {
    width: 100%;
    padding: 1rem 0;
  }
  .overview1 p {
    margin-bottom: 0;
  }

  .overview1 span {
    font-size: 24px;
  }

  .overview-info {
    flex-direction: column;
    gap: 2rem;
    margin-top:12px;
  }
  .overview-contact {
    flex-direction: column;
    gap: 1rem;
    margin-left: 0;
  }

  .overview-contact a {
    font-size: 16px;
    display: flex;
    align-items: center;
  }

  .overview-contact a i {
    margin-right: 8px;
  }

  .form-card {
    padding: 20px;
  }

  .info {
    flex-wrap: wrap;
  }
}
.related-packages{
  background-color:#EFF0FF ;
}
.related-packages-title span{
  color: var(--mustard-color);
}
.checkbox-container a{
  color: var(--primary-color);
}
.checkbox-container a:hover{
  color:  var(--mustard-color);
}
.input-box span{
  font-size: 12px;
}

/*Contact US*/
.packageDetails .txt{
  padding : 2.2rem 3.5rem 0 3.5rem ;
}
.packageDetails .txt h3{
  font-family: Kufam;
  font-weight: 600;
  font-size: 46px;
  line-height: 140%;
  letter-spacing: 0%;
  color : white;
}
.packageDetails .txt h3 span{
  color : var(--mustard-color) ;
}
.packageDetails .txt h4{
  font-family: Poppins;
  font-weight: 400;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0%;
  color : var(--white-color) ;
}
.view-btn{
  display : flex;
  justify-content : flex-end ;
  padding : 0 3.5rem 1.8rem 0 ;
}
.view-btn a{
  text-decoration : none ;
  padding : 11px 24px ;
  color : var(--primary-color) ;
  font-family: font family/Font 1;
  font-weight: 500;
  font-size: 11.1px;
  line-height: line;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  background-color : var(--mustard-color) ;
  border-radius : 8px ;
}
.contact{
  padding : 0 2.5rem 2rem 2.5rem;
}
.card{
  padding : 1rem 1.5rem;
  border-radius : 16px;
}

.input-box{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.input-box label{
  font-family: Poppins;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
}
.input-box input{
  border-radius: 4px;
  border: 1px solid #E9E9E9;
  padding: 8px 18px;
}
.input-box input:focus-visible{
  border: 1px solid var(--primary-color);
  outline: none;
}
.input-box textarea{
  border-radius: 4px;
  border: 1px solid #E9E9E9;
  padding: 8px 18px;
  width: 100%;
  resize: vertical;
}
.input-box textarea:focus-visible{
  border: 1px solid var(--primary-color);
  outline: none;
}
.submit-btn{
  width : 100%;
  background-color : var(--primary-color);
}
.submit-btn:hover{
  background-color :  var(--secondary-color); !important;
  scale : 1 !important;
  color : white !important;
}
.location{
  background-color: white!important;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.location h3{
  font-family: Kufam;
  font-weight: 600;
  font-size: 2.8rem;
  line-height: 140%;
  letter-spacing: 0%;
  color: var(--primary-color);
}
.location h3 span{
  color: var(--mustard-color);
}
.contacts{
  padding: 1.7rem 0 1.7rem 0;
  background-color: rgb(120 248 255 / 26%);
  border-radius: 18px;
}
.contact-icon i{
  color: var(--primary-color);
}
.contact-txt p{
  font-family: Poppins;
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  vertical-align: middle;
  color: #6F7A8F;

}
.contact-txt a{
  font-family: Poppins;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  vertical-align: middle;
  color: #6F7A8F;
  text-decoration:  none;
}
.contact-txt a:hover{
  color: var(--mustard-color);
}

@media (max-width: 768px) {
  .packageDetails .txt h3 {
    font-size: 28px;
  }
  .packageDetails .txt h4 {
    font-size: 16px;
  }
  .location h3 {
    font-size: 1.8rem;
  }

  iframe{
    width: 360px;
  }
}

.input-box span{
  font-size: 12px;
}

.content-container {
  margin-bottom: 40px;
}
.content-card {
  background-color: var(--mustard-color);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}
.page-title h1 {
  font-family: Kufam;
  font-weight: 600;
  font-size: 46px;
  margin-bottom: 30px;
  color : var(--mustard-color) ;
  text-align:  center;
}

/*Thank You*/

.thank-you-section {
  background: linear-gradient(to bottom, var(--primary-color) 40%, var(--white-color) 100%);
  padding: 3rem 0;
}
.thank-you-header {
  text-align: center;
  margin-bottom: 2rem;
}
.thank-you-header h1 {
  font-family: Kufam;
  font-weight: 600;
  font-size: 46px;
  line-height: 140%;
  color: white;
  margin-bottom: 1rem;
}
.thank-you-header h1 span {
  color: var(--mustard-color);
}
.thank-you-header p {
  font-family: Poppins;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: white;
  max-width: 700px;
  margin: 0 auto;
}
.thank-you-card {
  background-color: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  text-align: center;
}
.thank-you-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  background-color: #EFF0FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thank-you-icon i {
  font-size: 3rem;
  color: var(--primary-color);
}
.thank-you-card h2 {
  font-family: Kufam;
  font-weight: 600;
  font-size: 28px;
  color:var(--primary-color);
  margin-bottom: 1rem;
}
.thank-you-card p {
  font-family: Poppins;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #6F7A8F;
  margin-bottom: 1.5rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.feature-item {
  background-color: #EFF0FF;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}
.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon i {
  font-size: 1.5rem;
  color: var(--primary-color);
}
.feature-item h3 {
  font-family: Kufam;
  font-weight: 600;
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}
.feature-item p {
  font-family: Poppins;
  font-weight: 400;
  font-size: 14px;
  color: rgba(1, 94, 112, 0.64);
  margin-bottom: 0;
}
.contact-section {
  background-color: white;
  padding: 2rem 0;
}
.contact-card {
  background-color: #EFF0FF;
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.contact-icon {
  width: 50px;
  height: 50px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon i {
  font-size: 1.2rem;
  color: var(--primary-color);
}
.contact-info h3 {
  font-family: Poppins;
  font-weight: 600;
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}
.contact-info p, .contact-info a {
  font-family: Poppins;
  font-weight: 400;
  font-size: 16px;
  color: #6F7A8F;
  margin-bottom: 0;
  text-decoration: none;
}
.contact-info a:hover {
  color: #E5A853;
}
.btn-primary {
  background-color: var(--primary-color);
  border: none;
  padding: 0.75rem 1.5rem;
  font-family: Poppins;
  font-weight: 500;
  font-size: 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background-color: var(--mustard-color);
  transform: translateY(-2px);
}
.image-container {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.image-container img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .thank-you-header h1 {
    font-size: 32px;
  }
  .thank-you-header p {
    font-size: 16px;
  }
  .features-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/*Navbar style customizations*/
/* Mobile sidebar scroll behavior */
.side-manu {
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
}


.side-manu-links {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

/* Custom scrollbar styling for webkit browsers */
.side-manu-links::-webkit-scrollbar {
  width: 6px;
}

.side-manu-links::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
}

.side-manu-links::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.3);
  border-radius: 3px;
}

.side-manu-links::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.5);
}





/*Mega menu Header style for desktop and mobile both*/

/* Primary list menu (desktop) */
.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.nav-menu li { position: relative; }
/* Top-level items only: direct children anchors */
.nav-menu > li > a {
  position: relative;
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .2px;
  padding: 10px 12px;
  border-radius: 8px;
  transition: color .18s ease, background-color .18s ease;
}
.nav-menu > li > a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 6px;
  height: 2px;
  background: #E5A853;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .18s ease;
  opacity: .95;
  border-radius: 2px;
}
.nav-menu > li > a:hover,
.nav-menu > li > a:focus {
  color: #E5A853;
  background-color: rgba(255,255,255,0.06);
}
.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after { transform: scaleX(1); }
.nav-menu > li > a.active {
  color: #E5A853;
  background-color: rgba(229,168,83,0.12);
}
.nav-menu > li > a:focus-visible {
  outline: 2px dashed #E5A853;
  outline-offset: 2px;
}

/* Spacing tweaks for medium screens */
@media (max-width: 1199px) {
  .nav-menu { gap: 14px; }
  .nav-menu a { padding: 9px 10px; }
}

/* Hide desktop nav on mobile (use side menu) */
@media (max-width: 991px) {
  .nav-menu { display: none; }
}

/* Simple dropdown for Packages list */
.nav-menu .has-sub { position: relative; }
.nav-menu .has-sub .sub-menu {
  position: absolute;
  top: 90%; left: 0;
  min-width: 220px;
  margin:0; padding: 10px;
  list-style: none;
  background: linear-gradient(
    123deg, var(--primary-color) 40%, var(--secondary-bg-color) 115%
    25%
  );
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
  max-height: 340px;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: rgba(255,255,255,0.25) transparent; /* Firefox */
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
  transform: translateY(6px);
  z-index: 1000;
}
.nav-menu .has-sub:hover .sub-menu,
.nav-menu .has-sub:focus-within .sub-menu {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
}
.nav-menu .has-sub .sub-menu li { margin: 2px 0; }
.nav-menu .has-sub .sub-menu a {
  display: block;
  padding: 8px 10px;
  color: #fff; text-decoration: none; font-size: 14px; font-weight: 600;
  border-radius: 6px;
  transition: background-color .18s ease, color .18s ease;
}
.nav-menu .has-sub .sub-menu a:hover { background: rgba(255,255,255,0.08); color: #E5A853; }

/* Sub-menu custom scrollbar (WebKit) */
.nav-menu .has-sub .sub-menu::-webkit-scrollbar { width: 6px; }
.nav-menu .has-sub .sub-menu::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
}
.nav-menu .has-sub .sub-menu::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.25);
  border-radius: 3px;
}
.nav-menu .has-sub .sub-menu::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.35);
}

header { position: relative; }
.header-email { display: inline-flex; align-items: center; gap: 10px; margin-right: 16px; }
.header-email i { color: #ffffff; font-size: 28px; line-height: 1; display: inline-block; }
.header-email a { color: #ffffff; font-weight: 600; text-decoration: none; display: flex; flex-direction: column; line-height: 1; font-size: 14px; }
.header-email .em-label { font-size: 14px; }
.header-email .em-address { font-size: 14px; }
.header-email:hover i, .header-email:hover a {color: #E5A853 !important;}
.header-whatsapp { display: inline-flex; align-items: center; gap: 10px; margin-right: 12px; }
.header-whatsapp i { color: #ffffff; font-size: 28px; line-height: 1; display: inline-block; }
.header-whatsapp a { color: #ffffff; font-weight: 600; text-decoration: none; display: flex; flex-direction: column; line-height: 1; font-size: 14px; }
.header-whatsapp .wa-label { font-size: 14px; }
.header-whatsapp .wa-number { font-size: 14px; }
.header-whatsapp:hover i, .header-whatsapp:hover a {color: #E5A853 !important;}
.nav-menu .has-mega { position: relative; }
.nav-menu .mega-menu {
  position: absolute;  top: 100%;
  transform: translateX(-15%);
  width: auto; min-width: 1200px; max-width: 1200px;
  background: #004855;
  color: #fff;
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
  padding: 20px 24px; z-index: 1000; border-radius: 12px; overflow: hidden;
  grid-template-columns: repeat(6, minmax(140px, 1fr)); gap: 0.5rem;
  /* Smooth show/hide without flicker */
  display: grid; opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
}
.nav-menu .has-mega::after {
  content: "";
  position: absolute; left: 0; top: 100%; width: 100%; height: 16px;
  background: transparent;
}
.nav-menu .has-mega:hover .mega-menu,
.nav-menu .has-mega:focus-within .mega-menu,
.nav-menu .has-mega .mega-menu:hover {
  opacity: 1; visibility: visible; pointer-events: auto;
}
.mega-menu .mega-col { min-width: 0; }
.mega-menu .mega-col a{ color: #E5A853;text-decoration: none;font-size: 14px !important;font-weight:700!important; }
.mega-menu .mega-col .mega-list li a{ color: white!important;font-weight: 600!important;}
.mega-parent { font-weight: 700; display: block; margin-bottom: 10px; color: #fff; }
.mega-list { list-style: none; margin: 0; padding: 0; }
.mega-list li { margin: 6px 0; }
.mega-list a { color: #f0f0f0; }
.mega-list a:hover { color: #ffffff; text-decoration: underline; }
.mega-caret { margin-left: 6px; font-size: .8em; }

.mobile-menu-group { margin: 8px 0; }
.mobile-menu-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.mobile-submenu { padding: 8px 12px; background: rgba(255,255,255,.05); border-left: 2px solid #b5b8fa; }
.mobile-submenu ul { list-style: none; margin: 4px 0 12px; padding-left: 12px; }
.mobile-submenu .parent { font-weight: 600; display: block; margin-top: 8px; }

/* Mobile accordion styles */
.mobile-parent-toggle { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin: 8px 0; }
.mobile-parent-toggle span { color: wheat!important; font-weight: 600!important; }
.mobile-child-toggle { background: none; border: none; color: #fff!important; padding: 4px; }
.mobile-child-list { list-style: none; margin: 4px 0 12px; padding-left: 16px; }
.mobile-child-list li { margin: 4px 0; }
.mobile-child-list a { color: #f0f0f0!important; font-size: 14px!important; }
@media (hover: none) {
  .nav-menu .has-mega:hover .mega-menu { display: none; }
}
@media (max-width: 991px) {
  .nav-menu .mega-menu { display: none !important; }
}

/* Hide nav_bar on mobile view */
@media (max-width: 767px) {
  nav{
    display: none;
  }
  .whatsapp-float{
    display: none;
  }
  .header-email { display: none; }
  .header-whatsapp { display: none; }
  .wonderful-agency-section .content-side{
    display: none;
  }
}
