body{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}
 p, a, span, button {
  font-family: 'Poppins', sans-serif;
}

h1, h2, h3, h4,h5 {
  font-family: 'Playfair Display', 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 */

/*  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);
}

.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;
}

@media (max-width: 768px) {
.navbar{
   margin-left: 0px;
   margin-right: 0px;
}
}
@media (max-width: 820px) {
.navbar{
   margin-left: 0px;
   margin-right: 0px;
}
}


/* start for cards with 1669px to make it shrink and make it little responsive*/
.pkg-container, .pkg-container14{
   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-container,.pkg-container14{
  width: 100%;

  }
}

@media (max-width: 769px) {
.pkg-container, .pkg-container14{
   width: 100%;

  }
}

/* On small screens (mobile), use full width */
@media (max-width: 575.98px) {
 .pkg-container,.pkg-container14{
    max-width: 100%;
 
  }
}
/* start for cards with 1669px to make it shrink and make it little responsive*/


/* =========================
   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.2 * 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  of navbar */
/* End of complete navbar  without carousel*/
/* 
.hotel-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
  border-radius: 6px;
} */

/* start of detail page styling sidebar (form and recent post and details)*/


.package-detail{
  background-color: #fafafa;
}
.hotel-detail h5 {
  font-size: 1.25rem;
}

.hotel-detail p {
  line-height: 1.6;
}

.text-teal {
  color: #004954;
}

.text-secondary {
  color: #555;
}

.hotel-details img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 15px 0;
}

.hotel-title {
  font-size: 1.4rem;
  color: #004954;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.hotel-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

.hotel-img {
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;

} 

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}



.card.bg-teal input,
.card.bg-teal select {
  font-size: 0.85rem;
}

.card.bg-teal ::placeholder {
  color: #ddd;
}


.recent-articles .article-thumb {
  width: 60px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
}

.recent-articles .media-body h6 {
  font-size: 0.95rem;
  line-height: 1.2;
  color: #333;
}

.recent-articles .media-body p {
  font-size: 0.8rem;
  color: #666;
}

.list-group-item {
  border: none;
  border-bottom: 1px solid #e9ecef;
}

.list-group-item:last-child {
  border-bottom: none;
}
/* End of detail page styling sidebar (form and recent post and details)*/

/* 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 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: 24px;
  --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 .package-card img{
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.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-wrapper {
    max-width: min(var(--card-width), 100%);
  }
  
  .card {
    width: calc(100% - 2rem);
    min-width: auto;
  }
}

@media screen and (max-width: 368px) {
  :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; }



/* 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 10px; /* small gap */
    font-size: clamp(12px, 2vw, 16px);
    white-space: nowrap; /* no breaking */
}

.package-card .btn:hover {
      background-color: black;
      color: white;
}

.package-card {
    font-size: clamp(12px, 2vw, 16px);  /* auto scale all text inside */
}

@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: 11px;
  }
  .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 of Paltinum umrah packages 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 footer Section Styling */
.footer {
  /* background-color: #013237; */
    background-color: #004a55;
  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 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 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 */



/* footer contact watsapp button */
.contact-btn {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 1050; /* higher than modals and dropdowns */
  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;
}








.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.2rem;
  }
  .btn-custom {
    font-size: 0.75rem;
    padding: 4px 8px;
  }
  .call-btn {
    font-size: 0.8rem;
  }
}

/* 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.1rem;
  }
  .btn-custom {
    font-size: 0.7rem;
    padding: 4px 6px;
  }
  .call-btn {
    font-size: 0.75rem;
    padding: 6px;
  }
}












/* STart of the css code for the for the when the boostrap 4 boosratp hide on samll screen and move the hambaruger to CTA*/

@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*/