body{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  /* font-family: 'Poppins', sans-serif; */
   font-family: 'Poppins', sans-serif;
}
 p, a, span, button {
  /* font-family: 'Poppins', sans-serif; */
    font-family: 'Poppins', sans-serif;
}

h1, h2, h3, h4,h5 {
 /* font-family: 'Poppins', sans-serif; */
  font-family: 'Poppins', sans-serif;
}

/* start of Topbar  */
.topbar{
    background-color: #00879c;
}
.topbar a {
  text-decoration: none;
}
.topbar i {
  margin-right: 5px;
}

.main-text-mgin{
    margin-left: 10px;
    margin-right: 10px;
}
.nav-icons{
    font-size: 14px;
}

.priva-term{
    font-size: 14px;
}

/* End of Topbar start */

/* start of enquire now */
.enquire-btn {
    position: fixed;
    top: 60%;
    left: 0;
    transform: translateY(-50%);
    writing-mode: vertical-rl; /* makes text vertical */
    text-orientation: mixed;
    background: #c9972c; /* same golden brown color */
    color: #fff;
    padding: 10px 8px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 0 5px 5px 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    z-index: 9999;
}

.enquire-btn:hover {
    background: #a67c1a;
}
/* End of enquire now */


/*  star of Header: Logo + CTA Box */

/* Default desktop sizing */


.log-img img {
  height: 110px;
  max-width: 180px;
}

.group-logo img {
  height: 90px;
  max-width: 500px;
}

.cta-box {
  font-size: 16px;
  font-weight: 600;
  padding: 20px 24px;
  background-color: #00879c;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
     min-height: 60px;
}

.cta-box i {
  font-size: 25px;
  margin-right: 15px;
}
.cta-box strong {
  font-size: 15px;
  
}
.cta-box span{
    font-size: 12px;
}

/* Tablet screens */
@media (max-width: 991.98px) {
  .log-img img {
    height: 65px;
    max-width: 100px;
  }

  .group-logo img {
    height: 60px;
    max-width: auto;
  }

  .cta-box {
    font-size: 14px;
    padding: 8px 18px;
  }

  .cta-box i {
    font-size: 20px;
  }
  
}


/* Mobile screens */
@media (max-width: 575.98px) {
  .log-img img {
    height: 40px;
    max-width: 60px;
  }

  .group-logo img {
    height: 40px;
    max-width: 150px;
  }

  .cta-box {
    font-size: 8px;
    padding: 5px 10px;
    font-weight: 400;
  }

  .cta-box i {
    font-size: 18px;
    margin-right: 8px;
  }

.cta-box strong {
  font-size: 10px;
  
}
.cta-box span{
    font-size: 8px;
}
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-90px);
    -webkit-transform: translateX(-90px);
    -moz-transform: translateX(-90px);
    -ms-transform: translateX(-90px);
    -o-transform: translateX(-90px);
}
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(90px);
    -webkit-transform: translateX(90px);
    -moz-transform: translateX(90px);
    -ms-transform: translateX(90px);
    -o-transform: translateX(90px);
}
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-slide-left {
  animation: slideInLeft 0.9s ease-out forwards;
  -webkit-animation: slideInLeft 0.9s ease-out forwards;
}

.animate-fade-up {
  animation: fadeInUp 0.8s ease-out forwards;
}
.animate-slide-right {
  animation: slideInRight 0.9s ease-out forwards;
}

/* End of Header: Logo + CTA Box */


/* start of navbar */


.navbar{
   margin-left: 80px;
   margin-right: 80px;
}

/* Custom dropdown styling */
.navbar-nav .dropdown-menu {
  background-color: #00879c;
  border: none;
  border-radius: 10px;
  margin-top: 0;
}
.navbar-nav .dropdown-item {
  color: #fff;
  padding: 10px 20px;
}
.navbar-nav .dropdown-item:hover {
  background-color: #00879c;
  color: #fff;
  border-radius: 6px;
}

/* Sub-dropdown positioning */
/* Sub-dropdown layout */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: 5px;
  margin-top: -8px;
  background-color: #00879c;
  border-radius: 10px;
  display: none;
  min-width: 180px;
}

.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

/* Submenu arrow icon */
.submenu-arrow {
  float: right;
  transition: transform 0.2s ease;
  font-size: 0.8rem;
  opacity: 0.7;
}

.dropdown-submenu:hover .submenu-arrow {
  transform: translateX(3px);
  opacity: 1;
}

.navbar-nav li {
  padding-right: 30px;
}
.navbar-nav li a {
  color: #ffffff !important;
  transition: color 0.3s ease, background-color 0.3s ease;
}

/* Yellow on hover + dark teal background */
.navbar-nav li a:hover {
  color: #ffd700 !important; /* Yellow */
  background-color: #005f66;
  border-radius: 6px;
}

.navbar-nav .dropdown-item {
  color: #ffffff !important;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Hover style for main + sub dropdown */
.navbar-nav .dropdown-item:hover {
  background-color: #005f66;
  color: #ffd700 !important; 
  border-radius: 6px;
}

/* End of  of navbar */
/* End of complete navbar  without carousel*/

/* start of carousel css */

/*  Navbar floats on top of carousel only */
.navbar-overlay {
  background-color: rgba(0, 124, 137, 0.95);
  position: absolute;
  top: 25%; /* This will push it down just below header  keep in mind */
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1px 0px;
}

/* You must wrap header + topbar in a div with ID for offset reference */
#header-wrapper {
  position: relative;
  z-index: 10;
}

/* Carousel starts at full screen */
.hero-slide {
  height: 80vh; /* Or use 90vh if preferred */
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll; /* Keep it smooth for mobile */
  background: url('../images/umrah2.jpg') no-repeat center center/cover;
  margin-top: -40px; /* give space from navbar */
   

}

/* Background override for slide 2 and 3 */
.carousel-item:nth-child(2) .hero-slide {
  background-image: url('../images/umrah1.jpg');
}
.carousel-item:nth-child(3) .hero-slide {
  background-image: url('../images/umrah2.jpg');
}

/* Optional dark overlay for readability */
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7); /* black color above the image.*/
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin-top: 0px;
}
.hero-text .subtitle {
  font-size: 1rem;
  letter-spacing: 1px;
  opacity: 1;
}
.hero-text .desc {
  font-size: 1.1rem;
  max-width: 600px;
  margin-top: 10px;
}

/* Slide indicators */
.slide-indicators {
  position: absolute;
  top: 50%;
  right: 120px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 2;
}
.slide-indicators .indicator {
  cursor: pointer;
  padding: 8px 5px;
  opacity: 0.6;
  transition: all 0.3s ease;
}
.slide-indicators .indicator.active {
  opacity: 1;
  border-right: 2px solid #fff;
}

/* End fo carousel css */


/* start of  navbar and carsoule responsiveness according to different screens where hide the carsoule when screen size less then 767px and more*/

@media (max-width: 767px) {
  /* Hide the carousel below 998px */
  #heroCarousel {
    display: none !important;
  }

  /* Navbar becomes block-style */
  .navbar-overlay {
    position: relative !important;
    top: unset !important;
    border-radius: 0 !important;
    background-color: #007c89 !important;
    z-index: 5;
    margin: 0;
    width: 100%;
  }

  .inquiry-box-wrapper {
   
  margin-top: 10px;
}
  .navbar-overlay .container {
    max-width: 100% !important;
    padding: 0 15px;
  }

  .navbar-overlay .navbar-nav {
    width: 100%;
  }

  .navbar-overlay .nav-link {
    text-align: left;
    padding: 12px 20px;
  }

  .navbar-brand.d-lg-none {
    font-weight: bold;
    padding-left: 10px;
  }
}

@media (min-width: 768px) and (max-width: 967px) {


  .hero-slide {
    height: 50vh;
    margin-top: -40px;
  }

  .navbar-overlay {
    position: relative !important;
    top: unset !important;
    border-radius: 0 !important;
    background-color: #007c89 !important;
    margin: 0;
    width: 100%;
    z-index: 5;
  }
}

@media(max-width:1280px){

  .navbar-overlay {
  background-color: rgba(0, 124, 137, 0.95);
  position: absolute;
  top: 20%; 
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1px 0px;
}
.hero-slide {
    height: 65vh;
    margin-top: -40px;
  }
}
@media(max-width:1024px){

  .navbar-overlay {
  background-color: rgba(0, 124, 137, 0.95);
  position: absolute;
  top: 26%; /* This will push it down just below header  keep in mind */
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1px 0px;
}

}

@media only screen 
  and (min-device-width: 1024px) 
  and (max-device-width: 1024px) 

  and (orientation: portrait) 
  and (-webkit-min-device-pixel-ratio: 2) {
.hero-slide {
    height: 60vh;
    margin-top: -40px;
  }
  .navbar-overlay {
    background-color: rgba(0, 124, 137, 0.95);
    position: absolute;
    top: 11%;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1px 0px;
  }

  .navbar{
   margin-left: 70px;
   margin-right: 70px;
}

  .hero-slide {
    height: 50vh;
    margin-top: -40px;
  }


}

@media(min-width:1281px){

  .navbar-overlay {
  background-color: rgba(0, 124, 137, 0.95);
  position: absolute;
  top: 17%; /* This will push it down just below header  keep in mind */
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1px 0px;
}
 .hero-slide {
    height: 60vh;
    margin-top: -40px;
  }
}






/* =========================
   UNIVERSAL, STABLE OVERRIDES
   ========================= */

/* Controls how much the hero tucks under the navbar (adjust if you like) */
:root { --nav-overlap: 40px; }

/* 1) Keep navbar in flow; no absolute % positioning anymore */
.navbar-overlay{
  position: absolute !important;      /* Take out of flow */
  top: calc(4.4 * var(--nav-overlap)); /* Lift above slider */
  left: 0;
  right: 0;
  z-index: 200 !important;            /* Always above slider + form */
  background-color: rgba(0,124,137,.95);
  border-radius: 30px;
  margin: 0 auto;
  width: 90%;                         /* keeps centered, no full bleed */
}
/* 2) Make the hero “slide up” under the navbar for the overlay effect */
/* Hero section slides neatly under navbar */
.hero-slide{
  margin-top: 0 !important;           /* reset */
  padding-top: var(--nav-overlap) !important;
}

/* Prevent cutoffs on medium screens */
@media (max-width: 1199.98px){
  .navbar-overlay{ width: 94%; }
}
@media (max-width: 991.98px){
  .navbar-overlay{ width: 100%; border-radius: 0; left: 0; right: 0; }
}

/* Mobile: no overlap, full-width solid bar */
@media (max-width: 767.98px){
  .navbar-overlay{
    position: relative !important;
    top: auto !important;
    width: 100% !important;
    border-radius: 0 !important;
    background-color: #007c89 !important;
  }
}









/* End of  navbar and carsoule responsiveness according to different screens where hide the carsoule when screen size less then 767px and more*/


/* Start of Inquiry Box Floating Over Hero */

@media (max-width: 767px){
  .form_who_we {
 
  margin-top: 50px;
  
 

}
 .formbox {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

.inquiry-box-wrapper {
  position: relative;
  z-index: 10;
  margin-top: -45px;


}

.inquiry-box {
  background-color: #007c89;
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.20); /* Primary shadow */
  color: white;
}

.inquiry-box input,
.inquiry-box select {
  border-radius: 6px;
  font-size: 14px;
}

.inquiry-box h4 {
  font-size: 1.5rem;
  font-weight: 600;
}
/* End of Inquiry Box Floating Over Hero */


/* start of who we are */
.who-we-are_main{
  background-color: #f9fafe;
  margin-bottom: 30px;
}
.form_who_we{
     background-color: #f9fafe;
}

.who-we-are {
  background: linear-gradient(
      rgba(3, 155, 160, 0.85),
      rgba(2, 155, 172, 0.85)
    ),
    url('../images/kaba8.jpg') no-repeat center center/cover;
  border-radius: 20px;
   margin: 30px 0px;
    
}

.who-we-are h2{
  font-size: 40px;
}


.feature-box i {
  color: #ffffff;
  font-size: 3rem;
}

.feature-box h5 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}


.feature-box p {
  font-size: 0.80rem;
  line-height: 1.6;
}


/* Animation Keyframe */
@keyframes zoomInScroll {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Animation Class */
.animate-zoom-scroll {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.7s ease-out;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  -webkit-transition: all 0.7s ease-out;
  -moz-transition: all 0.7s ease-out;
  -ms-transition: all 0.7s ease-out;
  -o-transition: all 0.7s ease-out;
}

.animate-zoom-scroll.in-view {
  animation: zoomInScroll 0.6s ease-out forwards;
  -webkit-animation: zoomInScroll 0.6s ease-out forwards;
}


/* Mobile adjustments for "Who we are" section */
@media (max-width: 768px) {
  .who-we-are {
    text-align: left !important; /* Align content left */
    padding: 20px 15px; /* Reduce padding */
  }

  .who-we-are h5 {
    font-size: 16px !important;
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
  }

  /* Underline for h5 (short) */
  .who-we-are h5::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: #fff;
    margin-top: 5px;
  }

  .who-we-are h2 {
    font-size: 24px !important;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .who-we-are p {
    font-size: 14px !important;
    margin-bottom: 0px;
    line-height: 1.5;
  }

  /* Columns bottom border */
  .who-we-are .col-md-6 {
    border-bottom: 1px solid #fff; 
    margin-bottom: 5px;
    padding-bottom: 5px;
  }

  /* Remove line from last column */
  .who-we-are .col-md-6:last-child {
    border-bottom: none;
  }

  /* Feature box tweaks */
  .feature-box {
    text-align: left !important;
    margin-bottom: 2px !important;
  }

  .feature-box h5 {
    font-size: 15px !important;
    margin-bottom: 6px;
  }

  .feature-box p {
    font-size: 13px !important;
    line-height: 1.4;
    margin-bottom: 0;
  }

  .feature-box i {
    font-size: 1.8rem !important;
  }
}

/*End of who we are */

/* start fo cards sections */


/* start for cards with 1669px to make it shrink and make it little responsive*/

.pkg-container1, .pkg-container2, .pkg-container3,.pkg-container4,.pkg-container5,.pkg-container5,.pkg-container6,
.pkg-container7, .pkg-container8,.pkg-container9,.pkg-container10, .pkg-container11, .pkg-container12,
 .pkg-container13, .pkg-container14{
   width: 100%;
   max-width: 1320px;
   padding-left: 15px;
   padding-right: 15px;
   margin-left: auto;
   margin-right: auto;
}

/* On medium screens (tablet), reduce max-width */
@media (max-width: 991.98px) {
 .pkg-container1, .pkg-container2, .pkg-container3,.pkg-container4,.pkg-container5,.pkg-container5,.pkg-container6,
.pkg-container7, .pkg-container8,.pkg-container9,.pkg-container10, .pkg-container11, .pkg-container12,
 .pkg-container13, .pkg-container14{
   
   width: 100%;
  

  }
}

@media (max-width: 769px) {
.pkg-container1, .pkg-container2, .pkg-container3,.pkg-container4,.pkg-container5,.pkg-container5,.pkg-container6,
.pkg-container7, .pkg-container8,.pkg-container9,.pkg-container10, .pkg-container11, .pkg-container12,
 .pkg-container13, .pkg-container14{
   width: 100%;
  


  }
}

/* On small screens (mobile), use full width */
@media (max-width: 575.98px) {
  .pkg-container1, .pkg-container2, .pkg-container3,.pkg-container4,.pkg-container5,.pkg-container5,.pkg-container6,
.pkg-container7, .pkg-container8,.pkg-container9,.pkg-container10, .pkg-container11, .pkg-container12,
 .pkg-container13, .pkg-container14 {
    max-width: 100%;
 
  }
}
/* start for cards with 1669px to make it shrink and make it little responsive*/


.umrah-packages{
    background-color: #f9fafe;
  
    margin-top: -30px;
}
.umrah-packages h3 {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 3rem;
}

.umrah-packages h3::after {
  content: "";
  display: block;
  width: 270px;
  height: 3px;
  background-color: #d88f08;
  margin: 10px auto 0;
  border-radius: 2px;
}

.package-card {
  position: relative;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.20);
  /*Primaryshadow*/padding: 9px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}


.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 135, 156, 0.2);
}

.package-card img {
    height: 220px; 
  object-fit: cover; 
  object-position: center; 
  width: 100%;
  display: block;
  border-bottom: 1px solid #eaeaea;
 
}

.package-card .card-header {
  font-size: 1rem;
  padding: 8px;
  font-weight: 600;
  background-color: #00879c;
}

.package-card .card-footer {
  font-size: 1rem;
  padding: 12px;
  background-color: #00879c;
}


.package-card p,
.package-card ul {
  font-size: 0.92rem;

  line-height: 1.5;
}



/* this for the card fixing and reducing sizes and button on different screen sizes*/

.custom-underline {
    position: relative;
    display: inline-block; 
    padding-bottom: 6px;   
    width: 100%;   /* full width of container */
    text-align: center; /* center text & underline */
}

.custom-underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0; 
    width: 100%;   /* always match container width */
    height: 1px;  
    background-color: #c4c5c7; 
}

.price-title {
    position: relative;
    margin-top: 2px;
    padding-top: 0px;
}

.price-title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;  /* responsive */
    height: 1px;    
    background-color: #c4c5c7; 
}

.custom-underline {
    font-size: clamp(10px, 2vw, 16px);  /* auto shrink/grow text */
    /* white-space: nowrap;  */
    overflow: hidden;
    text-overflow: ellipsis;
}

.custom-underline i {
    margin: 0 4px;
    font-size: clamp(10px, 2vw, 16px);
}

.package-card .btn {
    flex: 1; /* make both buttons share space */
    margin: 0 5px; /* small gap */
    font-size: clamp(8px, 2vw, 16px);
    /* white-space: nowrap;  */
}

.package-card .btn:hover {
      background-color: black;
      color: white;
}

.package-card {
    font-size: clamp(12px, 2vw, 16px);  /* auto scale all text inside */
}

/* Make the "Included" icons + text bigger */
.package-card .d-flex.flex-wrap span {
  font-size: clamp(14px, 2.5vw, 16px);   
  font-weight: 600;
}

.package-card .d-flex.flex-wrap span i {
  font-size: clamp(16px, 2.5vw, 18px);     
  margin-right: 6px;
}

@media screen and (max-width: 1199px) {
  .package-card .btn {
    margin: 0 3px;
    font-size: 8px; /* slightly smaller */
    padding: 6px 6px;
  }
  .custom-underline span{
    font-size: 13px;
  }
  .custom-underline i {
    margin: 0 2px;
    font-size: clamp(10px, 2vw, 12px);
}



}

/* this for the card fixing and reducing sizes and button on different screen sizes*/

 /* End fo cards sections */

  /* Start of exclusive sections */

 .exclusive-offers {
  background-color: #004a55;
  color: #fff;
}

.exclusive-offers h2 {
  font-size: 2rem;
  position: relative;
}

.exclusive-offers p {
  font-size: 1.05rem;
  line-height: 1.6;
}

.exclusive-offers .btn-warning {
  border: none;
  font-weight: 600;
}

.section5-button{
  background-color: #d88f08;
}

.exclusive-offers-gradient {
  background-color: #004a55;
  color: #fff;
  overflow: hidden;
}

.image-gradient-wrapper {
  position: relative;
  width: 100%;
  max-height: 400px;
  overflow: hidden;
}


.gradient-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: cover;
  display: block;

  /* Fade from both left and right sides */
  mask-image: linear-gradient(to right, transparent 0%, black 7%, black 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 7%, black 80%, transparent 100%);
}

/* End of exclusive sections */

/* Start of Paltinum umrah packages sections */

.platinum-packages{
  background-color: #f9fafe;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
  margin-bottom: 1rem;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 120px;
  background-color:#d88f08; 
  border-radius: 2px;
}


:root {
  --card-width: 320px;
  --card-height: 460px;
  --gap: 21px;
  --transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}


.slider-container {
  width: 100%;
  overflow-x: hidden;
  overflow-y: visible;
  position: relative;
  padding: 1rem 0;
  margin-right: 2rem;
}

.slider-wrapper {
  width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  margin: 0 auto;
  padding: 0 1rem;
  padding-top: 5px;
  padding-bottom: 10px;
}

.slider {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  gap: var(--gap);
}

.card {
  flex: 0 0 100%;
  height: var(--card-height);
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  /* font-size: clamp(18px, 2vw, 24px); */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  transition: transform 0.3s ease;
  overflow-y: visible;
  height: auto;
}

.card:hover {
  transform: translateY(-5px);
}

.buttons {
  
  width: 100%;
  display: flex;
  justify-content: space-between;
 margin-top: -250px;

  pointer-events: none;
  z-index: 50;

}

.buttons button {
  background: rgba(51, 51, 51, 0.8);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
}

.buttons button:hover {
  background: rgba(51, 51, 51, 1);
}

.buttons button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@media screen and (min-width: 680px) and (max-width: 979.98px) {
  .slider-wrapper {
    max-width: 100%;
  }
  
  .card {
    flex: 0 0 calc(50% - var(--gap)/2);
  }
  
}

@media screen and (max-width: 679.98px) {
  .slider-container{
         width: 100%;
  }
  /* .slider-wrapper {
    max-width: min(var(--card-width), 100%);
  }
  
  .card {
    width: calc(100% - 2rem);
    min-width: auto;
  } */

   .slider-wrapper {
    max-width: 100%;
    padding: 0 0.5rem; /* smaller padding for mobile */
  }

  .card {
    width: 100%; 
    min-width: 90%; /* prevent text from squishing */
  }
}

@media screen and (max-width: 368px) {
    .slider-container{
         width: 100%;
  }
  :root {
    --card-width: 280px;
  }
  
  .slider-wrapper {
    max-width: 100%;
  }
  
  .card {
    width: calc(100% - 2rem);
    min-width: auto;
  }
}

@media screen and (min-width: 980px) {
  
  .slider-wrapper {
    max-width: 100%;
  }
  
  .card {
    flex: 0 0 calc((100% - var(--gap) * 2) / 3);
  }
  
  
}

.dots-container { display: flex; justify-content: center; align-items: center; gap: 8px; }
.dots-container .dot {
  width: 10px; height: 10px; background: #ccc;
  border-radius: 50%; cursor: pointer;
  transition: background 0.3s ease;
}
.dots-container .dot.active { background: #333; }

/* End of Paltinum umrah packages sections */

/* start of cheap Umrah deals sections */

.regions-section {
  background-color: #004954;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
}

.city-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
  height: 100%;
}

.city-link {
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  height: 100%;
  overflow: hidden;
}

.city-img {
  height: 230px;
  object-fit: cover;
  transition: transform 0.4s ease;
  will-change: transform;
}

.city-overlay {
  position: absolute;
  bottom: 0;
  top: 4%;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 73, 84, 0.8) 0%, rgba(0, 73, 84, 0.3) 40%, transparent 100%);
  transition: background 0.3s ease;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: end;
  padding: 20px;
}

.city-name {
  background-color: rgba(255, 255, 255, 0.95);
  color: #004954;
  font-weight: 600;
  padding: 5px 18px;
  font-size: 1rem;
  border-radius: 4px;
  margin-bottom: 16px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: inline-block;
  z-index: 3;
}

/* Hover Effects */
.city-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.city-card:hover .city-img {
  transform: scale(1.08);
}

.city-card:hover .city-name {
  background-color: #ffffff;
  transform: translateY(-4px);
}

/* End of cheap Umrah deals sections */

/* start of top rated Umrah deals sections */
.why-choose-us {
  background-color: #f9fafe;
}

.why-choose-us .small-text {
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.why-choose-us h2 {
  font-weight: 700;
  line-height: 1.3;
}

.why-choose-us .why-list li {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 8px;
  padding-left: 1.2rem;
  position: relative;
}

.why-choose-us .why-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00879c;
}

.why-choose-us .btn-info {
  background-color: #00879c;
  border: none;
  padding: 0.65rem 1.6rem;
  font-weight: 600;
}

 .why-choose-us img {
  width: 100%;
  height: 500px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  object-fit: cover;
} 

.animated-img {
  transition: transform 0.5s ease, box-shadow 0.3s ease;
  will-change: transform;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.animated-img:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
  .why-choose-us img {
    margin-top: 2rem;
    max-width: 100%;
  }
}
/* End of top rated Umrah deals sections */

/* start of why chooes Umrah deals sections */
/* .benefit-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.benefit-icon {
  color: #ffc107; 
  min-width: 40px;
} */




/* ===========================Why Book With Us================= */
/* Section background */


/* ===========================Why Book With Us================= */
/* Section background */
.why-book {
  background: #0B6C79;
  color: #fff;
  overflow: hidden;
}
/* Title */
.row .section-title {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
}
.row .section-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #f1f1f1;
  text-align: center;
}

/* Why Item Container */
.why-item {
  display: flex;
  align-items: center;
}

/* Text Box */
.text-box {
  padding: 15px;
  border-radius: 8px;
  text-align: justify;
  flex: 1;
}

/* Headings inside Text Box */
.why-item .text-box h5.highlight {
  color: #DDAF5B;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 18px;
}

/* Paragraph inside Text Box */
.why-item .text-box p {
  font-size: 14px;
  line-height: 1.6;
  color: #f1f1f1;
  margin: 0;
}

/* Icon Circle */
.icon-circle {
  background: #000;
  border-radius: 50%;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 55px;
  min-height: 55px;
  margin: 0 15px;
}

.icon-circle i {
  font-size: 22px;
  color: #fff;
}

/* Center Image */
.center-image{
  height: 100%;
  width:100%;
}
.center-image img {
  max-width: 100%;
  height: 500px;
  display: block;
  margin: 0 auto;
  margin-bottom: -80px; /* Overlap to touch bottom border */
}

@media (max-width: 1024px) {
.center-image img {
  max-width: 100%;
  height: 715px;
  display: block;
    
 
}
}
@media (max-width: 768px) {

.center-image{
  padding-bottom: 50px;
}
.row .section-title {
font-size: 26px;
}
.center-image img {
  max-width: 100%;
  height: 400px;
  margin-bottom: 10px;

}

}



@media (min-width: 768px) {
  .why-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .text-box,
  .text {
    flex: 1;
  }
}
.center-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  margin-bottom: -60px;
}
/* Prevent extra spacing on last elements */
.why-item:last-child {
  margin-bottom: 0;
}


/* End of why chooes Umrah deals sections */


/* start of FAQ Section Styling */


.qa-image {
  width: 570px;
  max-height: 600px;
  object-fit: cover;

  border-radius:20px;
  -webkit-border-radius:20px;
  -moz-border-radius:20px;
  -ms-border-radius:20px;
  -o-border-radius:20px;
 

}

/* Accordion Styling */
.faq-scroll-container {
  max-height: 520px;
  overflow-y: auto;
  padding-right: 5px;
}

.faq-card {
  background-color: #f1f1f1;
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  
}

.faq-btn {
  width: 100%;
  text-align: left;
  background-color: #f1f1f1;
  color: #004954;
  font-weight: 600;
  padding: 1rem 1.25rem;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-btn:hover{
  background-color: #004954;
  color: white;
}

.arrow-icon {
  transition: transform 0.3s ease;
}

.faq-btn[aria-expanded="true"] .arrow-icon {
  transform: rotate(180deg);
}

.faq-body {
  background-color: white;
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  color: #333;
}
/* start of FAQ Section Styling */

/* start of Testimonail Section Styling */
.testimonials-section {
  background: #f8f9fa;
}

.testimonials-section .subtitle {
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  color: #00879c;
  margin-bottom: .5rem;
}
.testimonials-section .subtitle span {
  display: block;
  width: 40px;
  height: 2px;
  background: #00879c;
  margin-right: .5rem;
}
.testimonials-section h2 {
  font-size: 2rem;
  margin: 0;
}

.testimonial-card {
  background: #00879c;
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  animation: fadeInUp 0.5s ease both;
}

.testimonial-card .stars {
  font-size: 1.2rem;
  color: #ffd700;
}

.testimonial-card blockquote {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  flex-grow: 1;
  margin-bottom: 1rem;
}

.testimonial-card hr {
  border-color: rgba(255,255,255,0.3);
  margin: 0 0 1rem;
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonial-footer h6 {
  color: #ffc107;
  margin: 0;
}

.testimonial-footer small {
  color: rgba(255,255,255,0.8);
}

.testimonial-footer i {
  opacity: 0.6;
}

/* Fade-in animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive tweak */
@media (max-width: 575.98px) {
  .testimonial-card {
    padding: 1.5rem 1rem;
  }
}
/* End of Testimonail Section Styling */

/* start of latest blogs Section Styling */

.latest-blogs {
 background-color: #f9f9f9;
}

.latest-blogs .small {
  color: #b39654;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-card {
  border-radius: 8px;
  overflow: hidden;
}

.blog-card .card-img-top {
  object-fit: cover;
  height: 180px;

}

.date-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background-color: #00879c;
  color: #fff;
  padding: 6px 12px;
  font-size: 0.85rem;
  font-weight: bold;
  border-radius: 50px;
}

.blog-card .card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.blog-card .card-text {
  font-size: 0.9rem;
  line-height: 1.4;
}

.btn-gold {
  background-color: #00879c;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

.btn-gold:hover {
   background-color: #d88f08;
}

/* Ensures all cards have equal height */
.blog-card {
  display: flex;
  flex-direction: column;
}

.blog-card .card-body {
  display: flex;
  flex-direction: column;
}

.position-relative{
  width: 100%;
}
/* Responsive tweaks if needed */
@media(max-width: 767.98px) {
  .blog-card .card-img-top {
    height: 150px;

  }
}

/* End of latest blogs Section Styling */

/* Start of footer Section Styling */
.footer {
  /* background-color: #013237; */
    background-color: #1e2420;
  color: #e0e6e6;
}
.footer h6 {
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}
.footer a {
  color: #93cfd5;
  text-decoration: none;
}
.footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}
 .footer ul li {
  color: white;
  line-height: 30px;
}
.footer ul li a{
   color: #dab44f;
   font-size: 15px;
}
.footer i {
  color: #12c0d2;
}
.footer hr.border-secondary {
  border-color: #0a3337;
}
@media (max-width: 767.98px) {
  .footer .text-md-left {
    text-align: center !important;
  }
}

/* End of footer Section Styling */

/* start of sub last footer section styling */
.footer-note {
  background-color: #f5f4f4;
  color: #333;
  font-size: 0.875rem;
}

.footer-note .cert-logo {
  height: 40px;
  max-width: 600px;
  vertical-align: middle;
}

.note-text {
  font-size: 10px;
  font-family: 'Poppins', sans-serif;
}

/* Floating contact buttons */
.contact-btn {
  position: fixed;
  right: 20px;            
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

/* Button Colors */
.btn-phone {
  bottom: 20px;          
  background-color: #28a745;
}

.btn-whatsapp {
  bottom: 80px;           
  background-color: #25D366;
}

/* End of sub last footer section styling */


/* start of popup modal */
.modal-body p, .modal-body ul {
  font-size: 0.95rem;
  line-height: 1.5;
}
/* End of popup modal */




/* footer contact watsapp button */
.contact-btn {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 1050; 
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: white;

  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  margin-bottom: 10px;
}

.btn-whatsapp {
  bottom: 20px;
  background-color: #25D366;
}










/* start style for the holidays page and the cards.*/

.custom-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 10px;
}

.custom-card img {
  height: 170px;
  object-fit: cover;
  width: 100%;
}

/* Header */
.card-header-title {
  background-color: #00879c;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 8px;
  text-align: center;
  width: 100%;
}

/* Days & Nights */
.days-nights {
  background-color: #00879c;
  color: #fff;
  display: flex;
  justify-content: space-around;
  padding: 8px 15px;
  font-size: 0.9rem;
  width: 100%;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

/* Text Styling */
.text-teal {
  color: #008080;
}
.card-body{
  width: 100%;
}
.card-body p {
  font-size: 0.9rem;
  margin-bottom: 5px;
}

/* Price Section */
.price-text {
  font-size: 1rem;
  font-weight: 500;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  color: #008080;
}

.per {
  font-size: 1rem;
  font-weight: 500;
}

/* Buttons */
.btn-custom {
  border-radius: 4px;
  font-size: 0.9rem;
  padding: 6px 12px;
  border: 1px solid #00879c

}
.btn-custom:hover{
background-color: black;
color: white;
}

.me-2 {
  margin-right: 17px !important;
}
.call-btn {
  background-color: #00879c;
  color: #fff;
  border-radius: 0;

}

/* Responsive font scaling */
@media (max-width: 768px) {
  .card-header-title { font-size: 0.9rem; }
  .days-nights { font-size: 0.8rem; }
  .price { font-size: 1.4rem; }
  .btn-custom { font-size: 0.8rem; padding: 5px 8px; }
}

@media (max-width: 576px) {
  .card-header-title { font-size: 0.8rem; }
  .days-nights { font-size: 0.75rem; }
  .price { font-size: 1.2rem; }
  .btn-custom { font-size: 0.75rem; }
}


/* Tablet screens (between 768px and 991px) */
@media (max-width: 992px) {
  .card-header-title {
    font-size: 1rem;
    padding: 6px;
  }
  .days-nights {
    font-size: 0.85rem;
    padding: 6px 10px;
  }
  .card-body p {
    font-size: 0.85rem;
  }
  .price {
    font-size: 1.3rem;
  }
  .price-text {
    font-size: 0.9rem;
  }
  .btn-custom {
    font-size: 0.8rem;
    padding: 5px 10px;
  }
  .call-btn {
    font-size: 0.9rem;
    padding: 8px;
  }
  .custom-card {
    padding: 8px;
  }
}

/* Mobile screens (below 768px) */
@media (max-width: 768px) {
  .card-header-title {
    font-size: 0.9rem;
  }
  .days-nights {
    font-size: 0.8rem;
  }
  .card-body p {
    font-size: 0.8rem;
  }
    .price {
    font-size: 1.7rem;
  }
  .btn-custom {
    font-size: 1rem;
    padding: 4px 25px;
  }
  .call-btn {
    font-size: 0.75rem;
    padding: 6px;
  }
}

/* Small mobiles (below 576px) */
@media (max-width: 576px) {
  .card-header-title {
    font-size: 0.8rem;
  }
  .days-nights {
    font-size: 0.75rem;
  }
  .price {
    font-size: 1.7rem;
  }
  .btn-custom {
    font-size: 1rem;
    padding: 4px 25px;
  }
  .call-btn {
    font-size: 0.75rem;
    padding: 6px;
  }
}



/* end style for the holidays page and the cards.*/




/* start of the css code for the for the when the boostrap 4 boosratp hide on samll screen and move the hambaruger to CTA*/

/* ===== Mobile Adjustments (<= 767px) ===== */
/* ===== Mobile & Tablet Adjustments (<= 912px) ===== */
/* 
@media (max-width: 912px) {
 nav.navbar {
    display: none !important;
  }
  .cta-logos{
     display: none !important;
  }

  .cat-box-main {
    display: none !important;
  }
  


  .header-mobile-wrapper {
    display: flex;
   align-items: center;
  justify-content: space-between;
  padding: 0px 30px;
  background-color: #fff;
  gap: 5px; 
  }
   

   .small-logo img{
     height: 7rem;       
  max-height:7rem;
  width: auto;
  object-fit: contain;
  display: block;
  }

  .small-group-logo {
 flex-grow: 1;
  text-align: center;

  }
 
  .small-group-logo img {
      height: 5rem;
  max-height: 5rem;
  width: auto;
  object-fit: cover;
  display: inline-block;
  }

  .navbar-toggler {
     border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: none;
  }

  .navbar-toggler-icon {
   width: 42px;
  height: 42px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23007c89' stroke-width='3' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }

 
  .redundant-navbar {
    display: none;
  }


  .redundant-navbar .collapse.show {
    display: block !important;
  }


  .redundant-navbar.active {
    display: block;
  }




  .header .container-fluid,
  .header .row,
  .header .col-lg-12 {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }


  #mainNavbar {
    background: #007c89;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
  }


  #mainNavbar .navbar-nav {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  #mainNavbar .nav-item {
    width: 100% !important;
    margin: 0 !important;
  }


  #mainNavbar .nav-link {
    display: block;
    width: 100% !important;
    padding: 12px 15px;
    color: #fff !important;
    text-align: left;
  }


  #mainNavbar .dropdown-menu {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    background: #006b76;  
    left: 0 !important;
    right: 0 !important;
  }


  #mainNavbar .dropdown-item {
    width: 100% !important;
    padding: 10px 15px !important;
    color: #fff !important;
  }


} */

@media (max-width: 912px) {
  nav.navbar {
    display: none !important;

  }
  .cta-logos,
  .cat-box-main {
    display: none !important;
  }

  /* Header layout */
 .header-mobile-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between; /* equal spacing */
  flex-wrap: nowrap;   /* keep one line */
  padding: 0 8px;
  background-color: #fff;
}

/* Main logo */
.small-logo img {
  height: auto;
  width: auto;
  max-height: 60px;   /* control max height */
  max-width: 80px;    /* avoid stretching */
  object-fit: contain;
  display: block;
}

/* Group logo (centered, flexible) */
.small-group-logo {
  flex: 1;            /* take middle space */
  text-align: center;
}
.small-group-logo img {
  height: auto;
  max-height: 60px;
  width: auto;
  max-width: 100%;    /* responsive, no stretch */
  object-fit: contain;
  display: inline-block;
}

/* Hamburger */
.navbar-toggler {
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: none;
  flex-shrink: 0;
}
.navbar-toggler-icon {
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23007c89' stroke-width='3' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* At very small screens */
@media (max-width: 600px) {
  .header-mobile-wrapper {
    padding: 0 6px;
  }
  .small-logo img {
    max-height: 50px;
    max-width: 60px;
  }
  .small-group-logo img {
    max-height: 90px;
    max-width: 290px;
  }
  .navbar-toggler-icon {
    width: 36px;
    height: 36px;
  }
}

  @media (max-width: 400px) {
    .header-mobile-wrapper {
      gap: 4px;
      padding: 0 5px;
    }
    .small-logo img { height: 70px;width:70px; }
    .small-group-logo img { height: 50px;width: 245px; }
    .navbar-toggler-icon { width: 32px; height: 32px; }
  }

  /* Navbar dropdown full width (same as yours) */
  #mainNavbar {
    background: #007c89;
    width: 100% !important;
    margin: 0;
    padding: 0;
  }
  #mainNavbar .navbar-nav,
  #mainNavbar .nav-item,
  #mainNavbar .nav-link {
    width: 100% !important;
  }
  #mainNavbar .nav-link {
    display: block;
    padding: 12px 15px;
    color: #fff !important;
    text-align: left;
  }
  #mainNavbar .dropdown-menu {
    width: 100% !important;
    border-radius: 0;
    background: #006b76;
  }
  #mainNavbar .dropdown-item {
    color: #fff !important;
    padding: 10px 15px !important;
  }


  
  .header .container-fluid,
  .header .row,
  .header .col-lg-12 {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

}

/* End of the code navbar dropdown background color and full width */
/* End of the css code for the for the when the boostrap 4 boosratp hide on samll screen and move the hambaruger to CTA*/