
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: '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);
}

.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: auto; /* 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 */
  min-height: 50vh;   /* ensures it's not too small */
  height: auto !important;  /* lets content control height */
  padding: 60px 0;    /* gives spacing above/below text */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

}

/* 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: 100%;
  margin-top: 60px;
  text-align: center;
}
.hero-text .subtitle {
  font-size: 1rem;
  letter-spacing: 1px;
  opacity: 1;
}
.hero-text .desc {
  font-size: 1.1rem;
  max-width: 1200px;
  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;
}

}
@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) {

  .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;
}
}



/* =========================
   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: -50px;


}

.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 */



.umrah-highlights-section {
  margin-top: -70px;

}


.umrah-highlights-box {
  background-color: #007c89;
  padding: 2rem;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}


.umrah-subtitle { font-size: 0.9rem; letter-spacing: 1px; }
.umrah-title    { font-size: 1.75rem; }
.umrah-intro    { font-size: 1rem; max-width: 750px; margin: 0 auto; }

@media (max-width:769px){

  .inquiry-overlay {
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 50;
  background-color: #005f66;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.umrah-highlights-section {
  margin-top: 30px;

}

}

@media (max-width:567px){
 .inquiry-overlay {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 50;
  background-color: #005f66;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
}



/*End of who we are section*/


/* start fo cards sections */

/* start for cards with 1669px to make it shrink and make it little responsive*/

.pkg-container, .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-container, .pkg-container14 {
   
   max-width: 1320px;
  

  }
}

@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*/


.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 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: 968px) {
  .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, 16px);
}
}
@media screen and (max-width: 1280px) {

  .custom-underline span{
    font-size: 14px;
  }
  .custom-underline i {
    margin: 0 2px;
    font-size: clamp(10px, 2vw, 16px);
}
}

/* this for the card fixing and reducing sizes and button on different screen sizes*/

 /* End fo cards 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 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: #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;
}





/* 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*/