/* 🔹 General Styling */
body, p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 18px;
    line-height: 1.3;
    overflow-x: hidden;
}

.navbar {
    position: relative;
    z-index: 1050; /* Ensures dropdown is above other content */
}

.card-img-top {
    height: 250px; /* Adjust as needed */
    object-fit: cover;
}

.nav-link, h6 {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.2;
    text-transform: uppercase;
    text-transform: bold;    
    
}

h1, h2, h3, h4 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.3;
    font-weight: bold;
  }
  
  /* Desktop sizes */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 22px;
  }
  
  h4 {
    font-size: 16px;
  }
  
  /* Responsive adjustments for mobile devices */
  @media (max-width: 767.98px) {
    h1 {
      font-size: 22px;
    }
  
    h2 {
      font-size: 20px;
    }
  
    h3 {
      font-size: 16px;
    }
  
    h4 {
      font-size: 14px;
    }
  }
  
.text-primary, .text-decoration-none {
    color:#F58838 !important;
}
/* ........................................
            Nav Bar and Buttons
......................................... */


/* scrolling logos */

  .logo-marquee-wrapper {
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .logo-marquee {
    display: flex;
    align-items: center;
    animation: scroll-left 30s linear infinite;
  }

  .logo-item {
    flex: 0 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .affiliation-img {
    max-height: 60px;
    width: auto;
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  /* Responsive tweaks */
  @media (max-width: 768px) {
    .logo-item {
      padding-left: 0.75rem;
      padding-right: 0.75rem;
    }

    .affiliation-img {
      max-height: 40px;
    }
  }




/* 🔹 Contact Section Styling */
.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* 🔹 Stacked Icon Design */
.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    border: 2px solid #F58838;
    color: #F58838;
    font-size: 22px;
    padding: 10px;
    background: white;
    transition: 0.3s ease-in-out;
}

/* 🔹 Hover Effect for Icons */
.contact-icon:hover {
    background: #F58838;
    color: white;
}




/* 🔹 Social Media Icons */
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #F58838;
    color: #F58838;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

/* 🔹 Hover Effect */
.social-icon:hover {
    background: #F58838;
    color: white;
}

/* 🔹 Buttons with Shadow */
.btn {
    background: #F58838;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    border: none;
}

.btn:hover {
    background: #d16c2b;
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.3);
}

/* 🔹 Navbar Active & Hover Colors */
.navbar .nav-link {
    color: black;
    transition: 0.3s ease-in-out;
}

.navbar .nav-link:hover {
    color: #C6B245;   
}

.navbar .nav-link.active {    
    color: #F58838;
   
}


.navbar-nav .nav-link.active {    
    color: #F58838;
   
}
/* 🔹 Dropdown Styling */
.navbar .dropdown-menu {
    background: black;
    border: none;
}

.navbar .dropdown-item {
    color: white;
}

.navbar .dropdown-item:hover {
    background: #C6B245;
    color: black;
}

.navbar .dropdown-item.active {
    background: #F58838;
    color: white;
}


/* circle stacked icons */

.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid orange;
    border-radius: 50%;
    padding: 20px; /* Adjust padding as needed */
    color: orange;
  }

/* ........................................
                    Slider
......................................... */

/* 🔹 Reduce slider height by 20% */
#carouselExampleCaptions,
.carousel-item,
.carousel-img {
    height: 80vh;
    object-fit: cover;
    width: 100%;
    object-position: top center;
}

/* 🔹 Background overlay */
.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

/* 🔹 Move text to left, vertically centered */
.carousel-text {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  z-index: 2;
}

.carousel-text-box {
  max-width: 50%; /* Adjust as needed */
  color: white;
}

/* Mobile tweak (optional) */
@media (max-width: 767px) {
  .carousel-text-box {
    max-width: 90%;
  }
}





/* 🔹 Smooth fade-in animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
}

.delay-1 { animation-delay: 0.5s; }
.delay-2 { animation-delay: 1s; }
.delay-3 { animation-delay: 1.5s; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 🔹 Hero Section Buttons */
.hero-buttons {
    margin-top: 20px;
}

/* CTA Button */
.hero-buttons .btn-primary {
    background-color: #F58838;
    color: white;
    border: none;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-primary:hover {
    background-color: #d16c2b;
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.3);
}

/* Secondary Button */
.hero-buttons .btn-secondary {
    background: white;
    color: #333;
    border: 1px solid #ccc;
    padding: 12px 24px;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
}

.hero-buttons .btn-secondary:hover {
    background: #f4f4f4;
}

/* 🔹 Random cool slide transitions */
.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
    transition: transform 1.2s ease-in-out, opacity 1s ease-in-out;
}






/* Section Background & Spacing */
.care-section {
    padding: 60px 0;
}

/* Section Title Styling */
.section-title {
    color: #f57c00; /* Orange accent */
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 14px;
    margin-bottom: 5px;
}

/* Section Heading */
.section-heading {
    font-weight: bold;
    color: #211915; /* Dark text */
}

/* Care Step Box */
.care-step {
    text-align: center;
    padding: 20px;
}

/* Circular Icon Wrapper */
.care-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #f57c00; /* Orange border */
    border-radius: 50%;
    margin: 0 auto 15px;
    background-color: #fff; /* White background */
}

/* Icon Styling */
.care-step i {
    font-size: 32px;
    color: #211915; /* Dark text */
}

/* Step Headings */
.care-step h5 {
    font-weight: bold;
    margin-bottom: 10px;
    color: #211915; /* Darker text */
}

/* Divider Line */
.divider {
    width: 100%;
    max-width: 80px;
    height: 2px;
    background-color: #d18c48; /* Light brown/orange */
    margin: 0 auto;
}

/* Hide Divider on Mobile */
@media (max-width: 767px) {
    .divider {
        display: none;
    }
}


/* Ensure carousel matches image height */
#affiliationCarousel {
    height: 100px; /* Match the image height */
    display: flex;
    align-items: center;
    overflow: hidden; /* Prevent background images from being visible */
}

/* Ensure all images fit within the container */
.affiliation-img {
    max-height: 80px; /* Set consistent height */
    width: auto;
    object-fit: contain;
}


/* Ensure the carousel items are properly aligned */
.carousel-item-affiliations {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.fit-image {
    object-fit: cover; /* Ensures the image fills the div without distortion */
    width: 100%; /* Makes image fill the div width */
    height: 100%; /* Makes image fill the div height */
    max-height: 100%; /* Prevents overflow */
}


/* Reviews Cards */
.review-card {  
    height: 200px;
    border-radius: 8px;    
    padding: 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    margin: 3 auto; /* Center the card in the carousel item */
  }
  .review-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 0.75rem;
  }
  .review-header i.google-icon {
    font-size: 1.75rem;
    color: #4285f4;
    margin-right: 0.5rem;
  }
  .review-author-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .review-author-info h5 {
    margin: 0;
    font-size: 1.1rem;
  }
  .star-rating {
    margin-left: 0.75rem;
  }
  .star-rating i {
    font-size: 1rem;
    margin-right: 2px;
  }
  
  /* Carousel adjustments */
  #reviewsCarousel,
  #reviewsCarousel .carousel-inner,
  #reviewsCarousel .carousel-item {
    height: auto;
  }
 
  
  /* Mobile Responsive Adjustments */
  @media (max-width: 576px) {
    .review-card {
      height: auto;  /* Allow card height to adjust based on content */
      padding: 0.75rem;
    }
    .review-header {
      flex-direction: column;
      align-items: flex-start;
    }
    /* Adjust the Google icon to display at the bottom right of the header on mobile */
    .review-header i.google-icon {
      margin: 0.5rem 0 0 0;
      align-self: flex-end;
    }
    .review-author-info {
      width: 100%;
      margin-top: 0.5rem;
    }
    .review-author-info h5 {
      font-size: 1rem;
    }
    .star-rating {
      margin-left: 0;
      margin-top: 0.5rem;
    }
    .star-rating i {
      font-size: 0.9rem;
    }
  }
  

  /* Accordiobn css */

  .accordion-item + .accordion-item {
    border-top: none;
    border-bottom: none;
  }
  .accordion-item {
    border: none;
    margin-bottom: 1rem;
  }
  .accordion-item:not(:last-of-type) {
    border-bottom: 1px solid #ddd;
  }
  .accordion-button {
    background-color: #f8f9fa;
    font-weight: normal;
  }
  .accordion-button:not(.collapsed) {
    background-color: #F58838;
    color: #fff;
  }
 
  .accordion-body {
    font-size: 1rem;
    color: #212529;
  }
  .accordion-header {
    font-size: 1rem;
    font-weight: normal;
  }



/* timeline css */

.timeline-date, .timeline-icon {
    background-color: #F58838 !important;
}


.logezy-recruitment-jobs-list {
    display: none !important;
}
