@import url('https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html,body {
  font-family: "Roboto Flex", sans-serif;
  /* font-family: 'Roboto', sans-serif; */
  font-optical-sizing: auto;
  font-style: normal;
  background-color: #F5EDF0;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}



.logo {
  width: 280px;
  height: 110px;
}

.arabic-logo {
  width: 250px;
  height: 100px;
}

#nav {
  background-color: #353535;
  padding: 10px 50px;
  align-items: start;
}

@media (max-width: 400px) {
  .lost-table-container table th,
  .lost-table-container table td,
  .lost-table-container .contact-section span,
  .lost-table-container .button-group button {
    font-size: 10px !important;
  }
}
.page-nav{
  background-color: #353535;
}
.nav-links {
  align-self: flex-end;
}

.logo img {
  cursor: pointer;
}


#nav a {
  color: #0dcaf0;
  margin-left: 15px;
  text-decoration: none;
  font-family: 'Roboto';
  font-size: 17px;
  color: white;
}


#nav a.active {
  color: #2E9583;
  border-bottom: 1px solid red;
}

#nav a.activecontact {
  
  border-bottom: 1px solid red;
}
@media (max-width: 768px) {
  #nav a {
    font-size: 15px; /* Font size reduced for tablets */
  }
}

@media (max-width: 576px) {
  #nav a {
    font-size: 14px; /* Font size further reduced for mobile screens */
   
  }


  #nav {
    background-color: #353535;
    padding: 1px 2px;
    align-items: start;
  }


}
.banner_decs {
  margin-left: 6%;
  margin-top: 50px;
}

.banner_decs h1 {
  font-size: 70px ;
  font-weight: 600;

}
.extra-large-heading {
  display: inline-block;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-top: 8rem; /* Pushes the heading down */

}

.heading-underline {
  content: "";
  position: absolute;
  left:  1.5rem;
  bottom: -10px; /* distance from bottom of h1 */
  height: 2px;
  width: 95%;
  background-color: rgb(221, 216, 216);
  border-radius: 2px;
}

@media (min-width: 992px) {
  .underline {
    width: 300px;
  }
}
.banner_decs p {
  font-size: 20px;
  font-weight: 500px;
  text-align: justify;
  margin-block: 30px;
}

.primary_btn {
  background-color: #2E9583;
  padding-block: 5px;
  padding-inline: 10px;
  border-radius: 5px;
  color: white;
}


.ham-icon {
  display: none;
}


input , select , option , textarea {
  background-color: #ECE3E1 !important; /* Change background color */
}








.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef !important;
  opacity: 1;
}
/* /////////////////////////////////////////////// */
/* Footer Css */


#footer {
  background-color: #353535;

  font-family: 'Roboto', sans-serif;
  color: white;
}

.footer_fist_container p {
  font-size: 20px;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  margin-top: 20px;
  width: 90%;
  justify-content: end;
  padding-left: 22px;
}



@media (max-width: 768px) {
  .footer_fist_container p {
    font-size: 18px; /* Font size for medium screens (tablets) */
  }
}

@media (max-width: 576px) {
  .footer_fist_container p {
    font-size: 12px !important; /* Font size for smaller screens (phones) */
  }
}

#footer h3 {
  color: #AAAAAA;
  font-size: 32px;

}





.modal-open .modal {
  overflow-x: hidden;
  overflow-y: hidden !important; /* or just remove this line */
}
.modal-content {
  overflow: hidden;
}

.modal-body {
  max-height: 80vh;           /* limit modal height */
  overflow-y: auto !important; /* scroll only inside modal */
  padding-right: 1rem;
}

@media (max-width: 576px) {
  .modal-body {
    max-height: 50vh; /* Adjust height to fit small screens */
    padding-right: 0.5rem; /* Reduce padding to fit more content */
  }

  .modal-dialog {
    margin: 0.5rem; /* Reduce margin around modal */
  }

  .modal-content {
    height: auto;
  }
}
/* /////////////////////////////////////////////// */
/* About us Section */

#about-us {
  padding-block: 20px;
}

.custom-row {
  padding-block: 20px;
}
/* Initial off-screen positions */
.animate-left {
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
}

.animate-right {
  transform: translateX(100%);
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
}

/* Animation to bring elements into view */
.animate-left.animate,
.animate-right.animate {
  transform: translateX(0);
  opacity: 1;
}
#carousel-container1 {
  position: relative; /* container relative */
  overflow: hidden;   /* hide overflow so no flicker */
  width: 100%;        /* set your desired width */
  height: auto !important;
  min-height: 400px; /* optional minimum height */
  overflow: visible !important;
}

/* Initial hidden state */
/* Target only carousel items within the specific container */
#carousel-container1 .carousel-item {
  position: relative; /* stack on top of each other */
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
  pointer-events: none; /* disable clicks on invisible slides */
  z-index: 0;           /* base z-index */
}

/* Visible state with animation */
#carousel-container1 .carousel-item.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto; /* enable clicks on active */
  z-index: 10;          /* bring active slide on top */
}
.carousel-item {
  transition: opacity 0.5s ease, transform 0.5s ease;
  opacity: 0;
  transform: scale(0.95);
  position: relative; /* ensure stacking */
  z-index: 0;
}

.carousel-item.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.carousel-item.exiting {
  opacity: 0;
  transform: scale(0.95);
  z-index: 0;
  position: absolute; /* keep it over the active slide */
}

.carousel-item.incoming {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
  position: relative;
}

/* Base styles for carousel items */

/* Active slide styling */


/* Exiting slide effect */



#overlay-section {
  position: relative;
  width: 100%;
  height: auto;
}

.overlay-image-wrapper {
  width: 100%;
  height: auto;
  position: relative;
}

.overlay-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.overlay-heading-container {
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 1rem;
}

.overlay-heading {
  color: #AAAAAA;
  font-family: 'Roboto Flex', sans-serif;
  font-weight: 500;
  font-size: calc(1.2rem + 2.5vw);
  line-height: 1.4;
}


/* Introduction Section */
#intro-section h2 {
  font-size: 2rem;
  font-weight: 500;
  text-align: left;
  font-family: 'Roboto Flex';
}
#intro-section p {
  font-size: 1rem;
  color: #000;
  text-align: justify;
  font-family: 'Roboto Flex', sans-serif; /* Add sans-serif fallback */
  font-weight: 400;
  max-width: 85%;
  margin: 0 auto; /* Center the block element horizontally */
}


/* Image Grid */
.image-card-unique {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.image-card-unique img {
  cursor: pointer;
  transition: transform 0.3s ease;
}
.image-card-unique img:hover {
  transform: scale(1.05);
}
.text-justify-custom {
  text-align: justify;
}
/* Popup Modal */


.close-unique:hover, .close-unique:focus {
  color: #999;
  text-decoration: none;
}

.popup-modal-unique {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Image and Transition */
.popup-content-unique {
  max-width: 80%;
  max-height: 80%;
  transform: scale(0.8);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.popup-modal-unique.active .popup-content-unique {
  transform: scale(1);
  opacity: 1.5;
}

/* Close Button */
.close-unique {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
}

/* Navigation Buttons */
.nav-arrow-unique {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  z-index: 1001;
  user-select: none;
}
.shadow {
   box-shadow: none !important; 
}
.nav-left-unique {
  left: calc(50% - 300px); /* Adjust placement */
}

.nav-right-unique {
  right: calc(50% - 300px); /* Adjust placement */
}









.custom-row h2 {
  color: #2E9583;
  font-size: 40px;
  font-weight: 500;
}

.description {}

/* /////////////////////////////////////////////// */
/* Strategy Section */



#strategy h2 {
  color: #D94E73;
  font-size: 48px;
  font-weight: 400;
}

#strategy .description {
  width: 500px;
 


}

#strategy .description h3 {
  color: #2E9583;
  font-size: 32px;
  font-weight: 400;
}
@media (max-width: 768px) {
  #strategy h2 {
    font-size: 36px; /* Shrink title */
   
  }

  #strategy .description {
    width: 100%; /* Let description take full width */
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 0 !important;
  }

  #strategy .description h3 {
    font-size: 24px;
 
  }

  #strategy .description p {
  
    font-size: 16px;
   
  }
}
@media (max-width: 576px) {
  .mobile-text {
    text-align: center;
    font-size: 16px;
    padding: 0 15px;
  }
}

@media (max-width: 576px) {
  .text-center h5 {
    font-size: 1rem !important; /* Around 16px */
  }
}
@media (max-width: 480px) {
  #strategy h2 {
    font-size: 28px;
  }

  #strategy .description h3 {
    font-size: 20px;
  }

  #strategy .description p {
    font-size: 14px;
    margin-top: 0px;
  }
}
.recaptcha-wrapper {
  max-width: 100%;
  overflow: hidden;
}
.popup-recaptcha-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;

}

.popup-recaptcha-wrapper .g-recaptcha {
  transform: scale(1);
  transform-origin: center;
  transition: transform 0.2s ease-in-out;
}

/* Medium screens (tablet) */
@media (max-width: 768px) {
  .popup-recaptcha-wrapper .g-recaptcha {
    transform: scale(0.85);
  }
}

/* Small screens (mobile) */
@media (max-width: 480px) {
  .popup-recaptcha-wrapper .g-recaptcha {
    transform: scale(0.7);
  }
}

.g-recaptcha {
  transform: scale(0.9);
  transform-origin: 0 0;
}

@media (max-width: 768px) {
  .g-recaptcha {
    transform: scale(0.8);
  }
}

@media (max-width: 576px) {
  .g-recaptcha {
    transform: scale(0.7);
  }
}
@media (max-width: 273px) {
  .g-recaptcha {
    transform: scale(0.4) !important;
  }
}

/* Very small screens like 323px or less */
@media (max-width: 323px) {
  .popup-recaptcha-wrapper .g-recaptcha {
    transform: scale(0.4);
  }
}
/* /////////////////////////////////////////////////// */
/* missing page css */

#missing-form {
  font-family: 'Roboto', sans-serif;
  padding-block: 40px;

}
.form-control {
  background-color: #fff !important;
}

.form-control-file, .form-control-range {

  background: white !important;
}
.form-select {
  background-color: white !important;
 
}
.text-center-container {
  display: flex;
  justify-content: center;
  /* Centers the content horizontally */
}

#missing-form h3 {
  color: #2E9583;
  display: inline-block;
  /* Makes the element shrink to the text width */
  border-bottom: 2px solid #2E9583;
}

#missing-form button {
  border-radius: unset;
  font-size: 20px;
  background-color: #000;
  padding: 12px 20px; /* Adjust padding as needed */
}
@media (max-width: 768px) {
  #missing-form button {
    font-size: 18px; /* Slightly smaller font for tablets */
    padding: 5px 4px;
  }
}

/* Adjust font size for phones */
@media (max-width: 576px) {
  #missing-form button {
    font-size: 16px; /* Smaller font for phones */
    padding: 5px 4px;
  }
}

/* Adjust font size for very small screens */
@media (max-width: 375px) {
  #missing-form button {
    font-size: 10px; /* Even smaller font for very small screens */
    padding: 10px 12px !important;
  }
}

#missing-cards-section {
  font-family: 'Roboto', sans-serif;


}

#missing-cards-section h3 {
  font-size: 40px;
  font-weight: 400;
  color: #2E9583;
  border-bottom: 2px solid #2E9583;
  display: inline-block;

}

#missing-cards-section .card {
  position: relative;
  margin-bottom: 120px;

}

#missing-cards-section .card-body {
  position: absolute;
  background-color: white;
  width: 90%;
  bottom: -100px;
  left: 50%;
  transform: translate(-50%);
}


.details-container{
  display: flex;
  justify-content: space-between;
}

.details-container .title{
font-size: 19px;
font-weight: 700;
}

.details-container .details{
  font-size: 19px;
  font-weight: 400;
  }

.card-body .btn-container {
  display: flex;
  justify-content: flex-end;

}


.btn-container button{
  margin-top: 10px;
  background-color: #2E9583;
  color: white;
  padding: 5px 30px;
  border: none;
  border-radius: 10px;

}

.load-more{
  background-color: #D94E73;
  color: white;
  padding: 10px 35px;
  border: none;
  font-size: 20px;
  border-radius: 5px;
}



/* ////////////////////////////////////////// */
/* contact us page */


#contact-us{
  font-family: 'Roboto', sans-serif;
  padding-block: 150px;

}
.details-container .heading{
  font-size: 20px;
  font-weight: 700;
}
.details-container .description{
  font-size: 20px;
  font-weight: 400;
}

#contact-us .form-container{
padding-left: 50px;
}


#contact-us .form-container h4{
  font-size: 20px;
  font-weight: 700;
  color:#00828F;
  line-height: 24px;
}


.quick-links li{
  color: #AAAAAA;
}


.quick-links a{
  text-decoration: none;
  color: #AAAAAA;
}


.modal .subject-details{
  font-weight: 400;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;

}


.custom-close-btn {
  background-color:#D94E73;
font-style: none;
  padding: 0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  position: relative;
}

.custom-close-btn::before {
  content: '×'; /* UTF-8 character for "X" */
  color: white;
  font-size: 2rem;
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
}






/* /////////////////////////////////////////////////// */
/* lost and found section */


#lost-found{
  padding-block: 150px;
  font-family: 'Roboto', sans-serif;
 color: #7A7D7D;
}

#lost-found button{
  color: #7A7D7D;

}

#lost-found h2 {
  color: #2E9583;
  font-size: 48px ; /* Base font size */
  font-weight: 600;
 
}
#lost-found .custom-tab {
  border: none;
  font-weight: 400;
  font-size: 32px ; /* Base font size */
  margin-left: 20px;
  
}



/* Medium screens (tablets) */


/* Large screens (desktops) */
@media (min-width: 992px) {
  #lost-found .custom-tab {
    font-size: 32px !important; /* Default font size for larger screens */
  }

  #lost-found h2 {
    font-size: 48px !important; /* Default font size for larger screens */
  }
}
@media (max-width: 768px) {
  #lost-found .custom-tab {
    font-size: 24px ; /* Font size for tablets */
  }

  #lost-found h2 {
    font-size: 28px ; /* Font size for tablets */
  }
}
@media (max-width: 576px) {
  #lost-found .custom-tab {
    font-size: 14px ; /* Further reduce font size for smaller screens */
    margin-left: 8px; /* Slightly reduce the margin for better spacing */
  }

  #lost-found h2 {
    font-size: 14px ; /* Further reduce the font size for smaller screens */
  }
}
 #lost-found .custom-tab.active{
 color: #CD004B;
 border-bottom: 2px solid; /* Creates a custom underline */

}
 
#lost-found .custom-hr{
  margin:none !important;
  margin-top: -2px;
}

.lost-table-container{
  padding-inline: 5%;
}

.lost-found .lost-table-container{

  font-size: 20px;
}
.lost-table-container{
}


table {
  width: 100%;
  border-collapse: collapse;

}

th,
td {
  border: 1px solid #000000;
  padding: 8px;
  text-align: left;
  color: #000000;
}

th {
  font-weight: normal;
  width: 30%;
}
.contact-section {
        text-align: center;
        font-family: Arial, sans-serif;
        margin-top: 20px;
    }
    
    .button-group {
        display: flex;
        justify-content: center;
        gap: 10px;
    }
    .button {
      padding: 10px 20px; /* Default padding */
      border: none; /* Remove border */
      border-radius: 5px; /* Rounded corners */
      font-weight: bold; /* Bold text */
      cursor: pointer; /* Pointer cursor */
      text-align: center; /* Center text */
      display: inline-block; /* Inline block for button behavior */
      font-size: 16px; /* Default font size */
      
  }
  @media (max-width: 576px) {
    button {
      font-size: 0.9rem; /* Reduce font size on smaller screens */
      padding: 10px 15px; /* Adjust padding for smaller screens */
      white-space: nowrap !important; /* Prevent the text from wrapping */

    }
  }
  /* Hover and focus effects */

  
  /* Large screens (above 1200px) */
  @media (min-width: 1200px) {
      .button {
          padding: 12px 24px; /* Increase padding */
          font-size: 18px; /* Larger font size */
      }
  }
  
  /* Medium screens (992px to 1199px) */
  @media (max-width: 1199px) {
      .button {
          padding: 10px 20px; /* Default padding */
          font-size: 16px; /* Default font size */
      }
  }
  
  /* Small screens (768px to 991px) */
  @media (max-width: 991px) {
      .button {
          padding: 8px 16px; /* Reduce padding */
          font-size: 14px; /* Smaller font size */
      }
  }
  
  /* Extra small screens (below 768px) */
  @media (max-width: 767px) {
      .button {
          padding: 6px 12px; /* Further reduce padding */
          font-size: 12px; /* Smallest font size */
      }
  }
  
    .call-button {
        background-color: #d82e5b;
    }
    .whatsapp-button {
        background-color: #4caf50;
    }
    .facebook-button {
        background-color: #3b5998;
    }

    /* cusom carosule navigation */

    .custom-prev-icon, .custom-next-icon {
      display: inline-block;
      width: 30px;
      height: 30px;
      background-size: cover;
    }
    
    .carousel-control-prev-icon {
      background-image: url('../images/preicon.svg') !important;
    }
    
    .carousel-control-next-icon {
      background-image: url('../images/nexticon.svg') !important;
      transform: rotate(180deg); /* Rotate the icon */
    }
    .custom-margin-banner-col{
      margin-top: 200px;
    }

    .fixed-nav {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000; /* Ensure it stays on top */
      background-color: #fff; /* Background color to match design */
      /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); Optional shadow for better visibility */
      padding: 10px 20px; /* Optional padding for spacing */
    }
    /* cusom carosule navigation */

/* success stories section */

.success-heading{
  font-size: 48px;
  color: #d82e5b;
  text-align: center;
}


/* Tablet screens (width < 992px) */
@media (max-width: 991.98px) {
  .success-heading {
    font-size: 40px;
  }
}
.content-container {
  display: flex;
  flex-direction: column;  /* Stack h2 elements vertically */
  justify-content: center; /* Vertically center content */
  align-items: center;     /* Horizontally center content */
  height: 100%;            /* Make container fill the available height */
  text-align: center;      /* Center text inside headings */
}
/* Mobile screens (width < 768px) */
@media (max-width: 767.98px) {
  .success-heading {
    font-size: 32px;
  }
}

/* Extra small screens (width < 576px) */
@media (max-width: 575.98px) {
  .success-heading {
    font-size: 28px;
  }
}
.success-description{
  font-size: 24px;
  text-align: justify;
  
}
@media (max-width: 991.98px) {
  .success-description {
    font-size: 18px;
  }
}

/* Mobile screens (width < 768px) */
@media (max-width: 767.98px) {
  .success-description {
    font-size: 16px;
  }
}

/* Extra small screens (width < 576px) */
@media (max-width: 575.98px) {
  .success-description {
    font-size: 14px;
  }
}
.success-view-more {
  background-color: #d82e5b;
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 0.2rem;
  font-weight: 500;
  display: inline-block;
  text-align: center;
  white-space: nowrap;

  font-size: 1.125rem; /* ~18px for large screens */
  padding: 0.75rem 2rem; /* ~15px top/bottom, 50px left/right */
  margin-bottom: 2rem; /* Adjust as needed */
  transition: all 0.2s ease-in-out;
}

/* Scale down font and padding for medium screens */
@media (max-width: 768px) {
  .success-view-more {
    font-size: 1rem; /* ~16px */
    padding: 0.5rem 1.5rem;
  }
}

/* Further reduce for small screens */
@media (max-width: 576px) {
  .success-view-more {
    font-size: 0.875rem; /* ~14px */
    padding: 0.4rem 1.2rem;
  }
}

.success-view-more:hover {
  opacity: 0.9;
  text-decoration: none;
}



    /* Style for the Move to Top button */
.move-to-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #007bff; /* Button background color */
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  width: 50px;
  height: 50px;
  display: none; /* Initially hidden */
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 999; /* Ensure it stays on top */
}

.move-to-top-btn:hover {
  background-color: #0056b3; /* Darker background on hover */
}
#success-stories{
  margin-bottom: 100px;
}


/* testimonials section */
#testimonials{
  background-image: url('../images/testimonial-bg.png');
  /* min-height: 500px; */
  margin-bottom: 100px;
  padding-block: 60px;
}

.testimonial-card{
  min-height: 300px;
  background-size: contain;
  background-position: left;
  background-repeat: no-repeat;

  background-color: #F7F3E3;
  position: relative;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;

}
@media (max-width: 1800px) {
  .testimonial-card {
    background-image: none !important;
  }
}
.about-us-pre-icon{}

.data-container{
  display: flex;
  flex-direction: row; /* Keep items in a row */
  align-items: center; /* Center the content vertically */
  gap: 20px; /* Space between image and text */
}
.user-img-container {
  overflow: hidden; /* Prevent any overflow */
  max-width: 100px; /* Image size control for larger screens */
  flex-shrink: 0; /* Prevent image from shrinking */
  margin-left: 60px;
}
.user-img-container img {
  width: 100%; /* Make image scale to container size */
  height: auto; /* Maintain aspect ratio */
  border-radius: 50%; /* Circle shape */
  border: 3px solid white; /* White border */
}
.message-container {
  display: flex; /* Make it a flex container */
  flex: 1; /* Take up the remaining space */
  flex-direction: column; /* Stack content vertically */
  justify-content: center; /* Center content vertically */
  align-items: flex-start; /* Align text to the left */
  word-wrap: break-word; /* Allow long words to wrap onto the next line */
  white-space: normal; /* Ensure text wraps normally */
  overflow-wrap: break-word; /* Alternative property to handle overflow in words */
  width: 100%; /* Allow it to use full available width */
  max-width: 400px; /* Max width to prevent it from expanding too much */
  margin: 0 auto; /* Center the content */
}
.message-container h3{
  font-size: 25px;
  color: #D94E73;
}



.message-container .user-name {
  color: #2C419B ;
  font-weight: 600 !important;
}

.message-container .app-name {
  color: #D94E73;
  font-size: 15px;
}

.talking-about{
font-size: 50px;
}
.about-us-hr{
  color: white;
  margin-top: 0.5rem; /* smaller top margin */
  margin-bottom: 1rem; /* or whatever space you want below hr */
  border: 1px solid #fff; /* example style */
  width: 450px; /* adjust width if needed */
  /* You can add margin-left/right:auto if you want centered hr */
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 576px) {
  .message-container {
    max-width: 90%; /* Ensure it takes 90% of the screen width on small screens */
    font-size: 16px; /* Adjust font size for small screens */
  }
}

@media (max-width: 768px) {
  .message-container {
    max-width: 80%; /* Adjust to 80% width for tablets */
    font-size: 18px; /* Slightly larger font for tablets */
  }
}

@media (min-width: 992px) {
  .message-container {
    max-width: 70%; /* Adjust to 70% width for larger screens */
  }
}


@media (max-width: 576px) {
  .message-container h3 {
    font-size: 14px;
  }

 
  .user-img-container {
    overflow: hidden;
    max-width: 66px;
    flex-shrink: 0;
    margin-left: 8px;
    margin-right: -17px;
}
}
/* testimonials section */

#carouselExampleControls .carousel-control-prev {
  width: 2%; /* Keep the control width relative */
  position: absolute; /* Ensure it stays in place relative to the carousel */
  left: 7px; /* Set the initial position */
  top: 50%; /* Vertically center the control */
  transform: translateY(-50%); /* Adjust for perfect centering */
  z-index: 1; /* Ensure it stays above carousel content */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #carouselExampleControls .carousel-control-prev {
      left: 5px; /* Adjust for smaller screens */
      width: 8%; /* Slightly larger for touch-friendly interaction */
  }
}

@media (max-width: 576px) {
  #carouselExampleControls .carousel-control-prev {
    left: -26px; /* Adjust for smaller screens */
    width: 9%; 
  }
}

/* Ensuring next control retains position */
#carouselExampleControls .carousel-control-next {
  width: 2%; /* Keep the control width relative */
  position: absolute; /* Ensure it stays in place relative to the carousel */
  right: 7px; /* Set the initial position */
  top: 50%; /* Vertically center the control */
  transform: translateY(-50%); /* Adjust for perfect centering */
  z-index: 1; /* Ensure it stays above carousel content */
}
#carouselExampleControls .carousel-inner .carousel-item {
  transition-duration: 0.5s; /* Adjust timing for smoother transition */
}
/* Responsive adjustments */
@media (max-width: 768px) {
  #carouselExampleControls .carousel-control-next {
      right: 5px; /* Adjust for smaller screens */
      width: 8%; /* Slightly larger for touch-friendly interaction */
  }
}
#carouselExampleControls3 {
  position: relative !important;
  z-index: 1;
  overflow: visible; /* Ensures controls aren't hidden */

}
#carouselExampleControls3 .carousel-control-prev,
#carouselExampleControls3 .carousel-control-next {
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  position: absolute;
}

@media (max-width: 576px) {
  #carouselExampleControls .carousel-control-next {
      right: -25px; /* Further adjust position for very small screens */
      width: 9%; /* Increase the width for better usability */
  }
}


  #carouselExampleControls3 .carousel-control-next{
    width: 9%;
    right: -35px;
    }
    
    #carouselExampleControls3 .carousel-control-prev {
    width: 9%; /* Keep the control width relative */
    top: 50%; /* Vertically center the control */
    left:-38px; 
    }
/* Positioning and appearance of carousel items */
/* Carousel item transitions */
/* Carousel base positioning */
#carouselExampleControls2 {
  position: relative;
}

/* Base styles for nav buttons */
#carouselExampleControls2 .carousel-control-prev,
#carouselExampleControls2 .carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;

  border-radius: 50%;
  z-index: 10;
  transition: 0.3s ease-in-out;
}

#carouselExampleControls2 .carousel-control-prev {
  left: -30px;
}

#carouselExampleControls2 .carousel-control-next {
  right: -30px;
}




@media (max-width: 768px) {
  .carousel-control-prev,
  .carousel-control-next {
    width: 30px;
    height: 30px;
    top: auto;
    bottom: 20px;
    transform: none;
   
    border-radius: 50%;
  }

  .carousel-control-prev {
    left: 20px;
  }

  .carousel-control-next {
    right: 20px;
  }                                                                                                     
  
}

/* Medium screens (e.g., tablets) */
@media (max-width: 992px) {
  #carouselExampleControls2 .carousel-control-prev,
  #carouselExampleControls2 .carousel-control-next {
    top: auto;
    bottom: 12px;
   
    right: 13% !important;
  }

  #carouselExampleControls2 .carousel-control-prev {
    left: 14%;
  }

  #carouselExampleControls2 .carousel-control-next {
    right: 25%;
  }
}

/* Small screens (e.g., phones) */
@media (max-width: 576px) {
  #carouselExampleControls2 .carousel-control-prev,
  #carouselExampleControls2 .carousel-control-next {
    bottom: 15px;
    width: 30px;
    height: 30px;

  }

  #carouselExampleControls2 .carousel-control-prev {
    left: 14%;
  }

  #carouselExampleControls2 .carousel-control-next {
    right: 20%;
  }
}

 
#carouselExampleControls4 .carousel-control-next {
  width: 5% !important;
  left: auto !important;
  right: 20px !important;
}

#carouselExampleControls4 .carousel-control-prev {
  width: 5% !important;
  left: 20px !important;
}

/* Adjust spacing on smaller screens */
@media (max-width: 768px) {
  #carouselExampleControls4 .carousel-control-next {
    right: 10px !important;
  }

  #carouselExampleControls4 .carousel-control-prev {
    left: 10px !important;
  }
}


@media (max-width: 480px) {
  #carouselExampleControls4 .carousel-control-next {
    right: 5px !important;
  }

  #carouselExampleControls4 .carousel-control-prev {
    left: 5px !important;
  }
}

/* media query */
@media (max-width: 768px) {
  .fixed-nav {
    /* Normal position for smaller devices */
   
  }
}

@media (max-width: 1480p) {
  .banner_decs h1 {
    font-size: 55px;
  }

  .logo {
    width: 230px;
    height: 120px;
  }

  .arabic-logo {
    width: 300px;
    height: 115px;
  }
}

@media (max-width: 1350px) {
  .banner_decs h1 {
    font-size: 45px;
  }
}

@media (max-width: 1310px) {
  .banner_decs h1 {
    font-size: 45px;
  }

  .logo {
    width: 190px;
    height: 75px;
  }

  .arabic-logo {
    width: 160px;
    height: 75px;
  }

  #nav a {
    margin-left: 6px;
    font-size: 10px;
  }
}
@media (max-width: 1001px) {
  #nav a {
    margin-left: 6px;
    font-size: 8px; /* Font size adjusted for 1001px screens */
  }
}
/* Wrapper for positioning images */
.image-wrapper {
  position: relative;
  width: 551px; /* Set width matching image dimensions */
  height: 374px; /* Set height matching image dimensions */
  margin: auto; /* Center the container */
  overflow: hidden; /* Hide anything outside the container */
}



.image-wrapper img { 
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Ensure images inside the wrapper scale properly */
.image-animate-behind img, 
.image-animate-front img {
  width: 100%;  /* Make the images flexible */
  height: auto; /* Maintain aspect ratio */
  object-fit: contain; /* Prevent distortion */
}
@media (max-width: 768px) {
  .image-wrapper {
    transform: scale(0.8);
    transform-origin: top left;
  }
  .image-responsive-wrapper
  {
    height: 270px;


  }
}

@media (max-width: 576px) {
  .image-wrapper {
    transform: scale(0.6);
    transform-origin: top left;
  }
}

/* Specifically for very small screens (below 303px) */
@media (max-width: 303px) {
  .image-wrapper {
    width: auto;
   
  }

  .image-animate-behind img, 
  .image-animate-front img {
    width: 200px; /* Ensure image resizes fully */
    height: auto; /* Maintain aspect ratio */
  }

  .image-animate-front {
    top: -255px;
        left: 60px !important;
      animation-name: slideFromLeftFront;
      z-index: 2; /* In front of the behind image */
    }
    
}
/* Common styles for images */
.image-animate-behind, .image-animate-front {
  position: relative;
  width: 314px; /* Set width of images */
  height: 314px; /* Set height of images */
  animation-duration: 2s; /* Duration of the animations */
  animation-timing-function: ease-in-out; /* Smooth transition */
  animation-fill-mode: forwards; /* Retain the final position */
  opacity: 0; /* Start with hidden images */
  animation-play-state: paused; /* Pause animation initially */
}

/* Behind Image Animation - sliding from top */
.image-animate-behind {
  top: 0; /* Start above the container */
  left: 0;
  animation-name: slideFromAboveBehind;
  z-index: 1; /* Behind the front image */
}

/* Front Image Animation - sliding from left */
.image-animate-front {
top: -255px;
    left: 176px;
  animation-name: slideFromLeftFront;
  z-index: 2; /* In front of the behind image */
}
@media (min-width: 820px) and (max-width: 1180px) {
  .image-wrapper {
  height: 305px;
    right: -20px;
  }
}

@media (max-width: 1430px) and (min-width: 720px) {
  .image-wrapper {
    transform: scale(0.9);
    transform-origin: top left;
    width: 480px;
    height: auto;
    right: 120px;
  }

  .image-responsive-wrapper {
    max-width: 100%;
    height: auto;
  }
  .animate-right {
    margin-left: -2rem; /* Move right column closer to the left one */
  }
  .image-animate-behind,
  .image-animate-front {
    width: 270px;
    height: 270px;
  }

  .image-animate-front {
    top: -220px;
    left: 150px;
  }
}


@media (max-width: 768px) {
  .justify-sm {
    text-align: justify !important;
  }
}

@media (max-width: 576px) {
  .justify-sm {
    text-align: justify !important;
  }
}

/* Keyframes for behind image */
@keyframes slideFromAboveBehind {
  0% {
    transform: translateY(-100%);
    opacity: 0; /* Hidden at the start */
  }
  100% {
    transform: translateY(0); /* Move the image into the container from above */
    opacity: 1; /* Fully visible */
  }
}

/* Keyframes for front image */
@keyframes slideFromLeftFront {
  0% {
    transform: translateX(-150%);
    opacity: 0; /* Hidden at the start */
  }
  100% {
    transform: translateX(0); /* Align perfectly in the container */
    opacity: 1; /* Fully visible */
  }
}

.banner-image {
  background-image: url('../images/Mother_son.png'); /* Ensure the path is correct */
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  height: 685px; /* Set a specific height */
  opacity: 0; /* Start with hidden image */
  transform: scale(1); /* Initial scale */
  animation: zoomInEffect 2s ease-in-out forwards; /* Corrected animation name */
  min-height: 100vh;
}
@media (max-width: 991.98px) {
  .banner-image {
    display: none !important;
  }

  .custom-margin-banner-col{
    margin-top: 30px !important;
  }

}
@keyframes zoomInEffect {
  0% {
    opacity: 0;
    transform: scale(1); /* No zoom at start */
  }
  100% {
    opacity: 1;
    transform: scale(1.2); /* Zoomed-in final state */
  }
}




@media (max-width: 768px) {
  #banner .row {
    flex-direction: column;
  }

  .banner-image {
    display: none !important;
  }
}
#banner .row {
  height: 100%; /* 👈 Make row full height */
  margin: 0;
}
#banner {
  background-color: #353535;
  width: 100vw;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: hidden; /* 👈 Prevent vertical scroll */
  min-height: 100vh;
  display: flex;
  align-items: center;
}

#banner .container-fluid {
  max-width: 100%;
  padding: 0;
  height: 100%; /* 👈 Important */
}
@media (max-width: 1140px) {

  header {
    background-position: right;
  }

 
}

@media (max-width: 1000px) {

  header {
    background-position: right;
  }

  

  .logo {
    width: 120px;
    height: 60px;
  }

  .arabic-logo {
    width: 110px;
    height: 60px;
  }

  #nav a {
    margin-left: 8px;
        font-size: 12px;
  }

  .banner_decs {
    margin-left: 0%;
  }


}


@media (min-width: 768px) and (max-width: 930px) {
  .arabic-logo {
    display: none;
  }



  .banner_decs {
    margin-left: 0%;
  }

  #nav {
    padding: 10px 20px;
  }
}



@media (max-width: 777px) {



  #nav .nav-links {
    display: none !important;
  }

  .ham-icon {
    display: block;
  }



  #contact-us .form-container{
    padding: 10px;
    }
    

}
  /* Wrapper for controlling container width */
  #main-container {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px; /* Optional for spacing */
    box-sizing: border-box;
   
}
#load-more-wrapper {
  display: flex;
  justify-content: center;
  align-items: center; /* Ensure vertical centering too */
  width: 100%;
  margin-top: 20px; /* Adjust top margin */
}


/* CSS for the records grid layout */


.banner-item1 {
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 5px;
  box-sizing: border-box;
  background-color: #f9f9f9;
  text-align: center;
  position: relative;
  max-width: 745px;
}

.banner-upper img,
.banner-footer img {
    width: 100%;
    max-width: 297px;
    height: auto;
}
.banner-upper1 img,
.banner-footer1 img {
  max-width: 100%;
    
    height: auto;
}
.api-image-box img {
    width: 86px;
    height: 117px;
    border: 2px solid black;
    margin-bottom: 10px;
}
.api-image-box1 img {
  max-width: 308px;
  height: 417px;
  border: 2px solid black;
  margin-bottom: 10px;
}
.overlay_22 {
  max-width: 10vw; /* Scale width relative to viewport width */
  height: auto; /* Maintain aspect ratio automatically */
  position: absolute;
  left: 40px; /* Fixed horizontal position */
  top: 49%; /* Center vertically relative to the parent */
  transform: translateY(-50%); /* Ensure vertical centering */
}

/* Add media queries for specific adjustments */
@media (max-width: 992px) {
  .overlay_22 {
      max-width: 15vw; /* Slightly larger for medium screens */
      left: 30px; /* Adjust horizontal position */
  }
}

@media (max-width: 768px) {
  .overlay_22 {
      max-width: 15vw; /* Larger scaling for smaller screens */
      left: 20px; /* Adjust horizontal position */
  }
}

@media (max-width: 576px) {
  .overlay_22 {
      max-width: 20vw; /* Larger scaling for extra small screens */
      left: 10px; /* Adjust horizontal position */
  }
}

@media (max-width: 576px) { /* Small screens and below */
  .banner-upper1 img,
  .banner-footer1 img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px; /* Add spacing for smaller screens */
   
  }

  .api-image-box1 img {
    width: 150px; /* Ensure full-width scaling */
    height: 150px; /* Maintain aspect ratio */
    border: 2px solid black;
    margin-bottom: 10px;
    object-fit: contain;
  }
}

@media (min-width: 577px) and (max-width: 768px) { /* Medium screens */
  .banner-upper1 img,
  .banner-footer1 img {
    max-width: 90%;
    height: auto;
    margin-bottom: 10px; /* Slightly less spacing */
  }

  .api-image-box1 img {
    max-width: 200px; /* Keep original max-width */
    height: 200px; /* Adjust height */
    margin: 0 auto 10px auto; /* Center the image */
    object-fit: contain;
  }
}

@media (min-width: 769px) { /* Larger screens */
  .banner-upper1 img,
  .banner-footer1 img {
    max-width: 100%;
    height: auto;
  }

  .api-image-box1 img {
    max-width: 300px;
    height: 300px;
    margin-bottom: 10px;
    object-fit: contain;
  }
}
/* Style for Load More button */
#load-more-btn {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#load-more-btn:disabled {
    background-color: #ccc;
}

/* Ensure the images are displayed properly */
.banner-upper img,
.banner-footer img {
    max-width: 100%;
    height: auto;
}



/* for banner page css */

#main-container {
            width: 1600px;
            margin: 0 auto;
        }
     
        .banner-item {
          border: 1px solid #ccc;
          padding: 10px;
          border-radius: 5px;
          box-sizing: border-box;
          background-color: #f9f9f9;
          text-align: center;
          position: relative;
          width: 100%;         /* ✅ Allow grid to manage width */
          max-width: 297px;    /* ✅ Optional limit */
          
        }
        .banner-upper img,
        .banner-footer img {
            width: 100%;
      
            height: auto;
        }
        .api-image-box img {
            width: 86px;
            height: 117px;
            border: 2px solid black;
            margin-bottom: 10px;
        }
        .pagination {
            margin-top: 20px;
            text-align: center;
        }
        .pagination form {
            display: inline-block;
        }
        .pagination button {
            margin: 0 5px;
            padding: 10px 20px;
            background-color: #007bff;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }
        .pagination button:disabled {
            background-color: #ccc;
        }
          /* Styles for the page */
   /* Default: 6 banners per row */
   #records-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 6 items per row */
    gap: 15px; /* Adjust gap between items */
    justify-items: center; /* Center items horizontally */
    justify-content: center; /* Ensure the grid is centered */
    width: 100%; /* Ensure the container spans the full width */
    margin: 0 auto; /* Center the container itself if needed */
    overflow: auto; /* Allow scrolling if needed */
    min-height: 100px; /* Prevent container collapse */
    box-sizing: border-box; /* Include padding and borders in width/height */
}

#records-container > * {
  display: block; /* Ensure child elements are block elements */
  width: 100%; /* Make items take full width in smaller layouts */
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* Include padding and border in size calculation */
}

/* Large screens (below 1200px): 3 items per row */
@media (max-width: 1200px) {
  #records-container {
      grid-template-columns: repeat(3, 1fr); /* 3 items per row */
      gap: 10px;
  }
}

/* Medium screens (below 992px): 2 items per row */
@media (max-width: 992px) {
  #records-container {
      grid-template-columns: repeat(2, 1fr); /* 2 items per row */
      gap: 8px;
  }
}

/* Small screens (below 768px): 2 items per row */
@media (max-width: 768px) {
  #records-container {
      grid-template-columns: repeat(2, 1fr); /* 2 items per row */
      gap: 5px;
  }
}

/* Extra small screens (below 576px): 1 item per row */
@media (max-width: 576px) {
  #records-container {
   
   
        
      justify-items: center; /* Center items within their grid cells */
      justify-content: start; /* Start-align the grid to prevent shifting */
      width: 49% !important; /* Ensure full-width grid */
      margin: 0 !important;
  }

.banner-item {
            margin-bottom: 10px !important;

}
  
}




.required-asterisk {
  color: red;
}
  #load-more {
    padding: 10px 30px;
      background-color: #2F8979;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-size: 16px;
    
      display: inline-block;
      margin: 20px;
     
     
  }

  #load-more:hover { background-color: #2F8979; }

  #no-more-data { font-size: 18px; color: #999; text-align: center; display: none; margin-top: 20px; }

  /* Popup styles */
  .popup-container {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      justify-content: center;
      align-items: center;
      z-index: 1000;
  }

  .popup-box {
      background-color: white;
      padding: 20px;
      max-width: 1000px; /* Retaining the previous width */
      width: 90%; /* Make it responsive, adjusting the width dynamically */
      max-height: 80vh; /* Limiting the height to 80% of the viewport height */
      overflow-y: auto; /* Allow scrolling if content overflows */
      border-radius: 10px;
      position: relative;
  }

  .popup-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .close-popup {
      width: 30px;
      height: 30px;
      cursor: pointer;
  }
  .popup-content p {
      margin: 4px; /* Removed extra spacing */

  }
  .popup-content {
      margin-top: 20px;
      font-size: 14px; /* Reduce text size */
  }
  .footer_logo {
    margin: 12px;
    max-width: 260px; /* Adjust this value as needed */
    height: auto;
  }
  @media (max-width: 985px) {
    .form-group input,
    .form-group textarea,
    .form-group select {
      font-size: 11px;
    }
  
    .form-group ::placeholder {
      font-size: 11px;
    }
  }
  @media (max-width: 768px) {
    .form-group input,
    .form-group textarea,
    .form-group select {
      font-size: 14px;
    }
  
    .form-group ::placeholder {
      font-size: 14px;
    }
  }

 
/* Mobile */
@media (max-width: 576px) {
  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 10px;
  }

  .form-group ::placeholder {
    font-size: 10px;
  }
}
@media (max-width: 768px) {
  select.form-control {
    font-size: 14px;
    width: 100%;
  }

  select.form-control::placeholder {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  select.form-control {
    font-size: 12px;
    width: 100%;
  }

  select.form-control::placeholder {
    font-size: 12px;
  }
}



  .social-icon {
    width: 95px;
    height: 95px;
    max-width: 100%;
  }
  
  @media (max-width: 768px) {
    .social-icon {
      width: 60px;
      height: 60px;
    }
  }
  
  @media (max-width: 480px) {
    .social-icon {
      width: 40px;
      height: 40px;
    }
  }
  .social-icon {
    width: 95px;
    height: 95px;
    max-width: 100%;
  }
  
  @media (max-width: 768px) {
    .social-icon {
      width: 60px;
      height: 60px;
    }
  }
  
  @media (max-width: 480px) {
    .social-icon {
      width: 40px;
      height: 40px;
    }
  }
  .store-icon {
    width: 95px;
    height: 95px;
    max-width: 100%;
  }
  
  @media (max-width: 768px) {
    .store-icon {
      width: 60px;
      height: 60px;
    }
  }
  
  @media (max-width: 480px) {
    .store-icon {
      width: 40px;
      height: 40px;
    }
  }
      
  /* Ensure close button is inside the popup box */
  .popup-content p {
      font-size: 14px; /* Smaller text size */
  }

  @media (max-width: 576px) {
      .popup-box {
          max-width: 90%; /* Full width for small screens */
          width: 100%; /* Ensure it takes full width */
      }
  }
  .details-container {
  display: flex;
  flex-direction: column; /* Stack the items vertically */
  align-items: flex-start; /* Align everything to the left by default */
  width: 100%; /* Full width */
}

.overlay-1 {
  display: flex;
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid #ccc; /* Add border bottom */
}

.label-container {
  flex: 1;
  display: flex;
  justify-content: flex-start; /* Label is on the left */
}

.data-container {
  flex: 2;
  display: flex;
  justify-content: flex-end; /* Data is on the right */
}

.label {
  font-weight: bold;
  font-size: 12px; /* Set the font size for the label */
  color: #333; /* Optional: Adjust label color */
}

.data {
  text-align: right;
  font-size: 14px; /* Set the font size for the data */
  color: #555; /* Optional: Adjust data color */
}

.details-btn {
  align-self: flex-end; /* Align the button to the right */
  padding: 10px 20px;
  background-color: #2E9583;
  color: white;
  border: none;
  cursor: pointer;
  margin: 7px 7px 7px 0;
  font-size: 16px; /* Font size for the button */
}









  @media (max-width: 576px) {
   

      .details-btn {
          font-size: 12px;
          padding: 8px 16px;
      }
  }
  .navbar-light .navbar-toggler-icon {
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30"%3E%3Cpath stroke="rgba(255, 255, 255, 1)" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M4 7h22M4 15h22M4 23h22" /%3E%3C/svg%3E') !important;
    background-color: transparent !important;
 
  }
/* Always white icon */
/* Default navbar-toggler-icon for mobile devices */
@media (max-width: 767px) {
  .navbar-toggler-icon {
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30"%3E%3Cpath stroke="rgba(255, 255, 255, 1)" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M4 7h22M4 15h22M4 23h22" /%3E%3C/svg%3E') !important;
   
    background-color: transparent !important;
   
  }
}
@media (max-width: 767px) {
  .custom-navbar-light .custom-navbar-toggler-icon {
    background-color: transparent !important;
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30"%3E%3Cpath stroke="rgba(255, 255, 255, 1)" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M4 7h22M4 15h22M4 23h22" /%3E%3C/svg%3E') !important;
  }
}
.register-btn {
  background: linear-gradient(135deg, #2F8979, #3FB9A0);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.register-btn:hover {
  background: linear-gradient(135deg, #2F8979, #3FB9A0);
  box-shadow: 0 6px 14px rgba(0, 123, 255, 0.5);
  transform: translateY(-1px);
}
@media (max-width: 991.98px) {
  .arabic-logo {
    display: none !important;
  }
}
@media (max-width: 576px) {
  .register-btn {
    font-size: 14px; /* Font size for small screens */
  }
}

@media (max-width: 400px) {
  .register-btn {
    font-size: 12px; /* Font size for very small screens */
  }
}

@media (max-width: 300px) {
  .register-btn {
    font-size: 10px; /* Font size for extremely small screens */
  }
}
.close-btn-custom {
    background: none !important;
    border: none !important;
    font-size: 4rem !important;
    color: #ffffff !important;
    opacity: 1 !important;
    z-index: 1055 !important;
    position: absolute !important;
    top: -1rem !important;
    right: 1rem !important;
  }

  .close-btn-custom::before {
    content: '×';
    font-weight: bold !important;
    display: inline-block !important;
    color: #ffffff !important;
  }