/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;700&display=swap');
body, h1, h2, h3, h4, h5, h6 {
    font-family: 'Quicksand', sans-serif;
}

body {
    line-height: 1.6;
}

/* --- Header & Navigation --- */
.top-bar {
    background-color: #333;
    font-size: 0.9rem;
}
.main-logo {
    height: 50px;
    width: auto;
}
.navbar-nav .nav-link {
    font-weight: 500;
    text-transform: uppercase;
    color: #333;
    margin-inline: 10px;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: #f0c15a;
}

/* --- Hero Carousel --- */
/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 28px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.4);
    color: #FFF;
}
#hero-carousel .carousel-item {
    height: 85vh; /* Adjust height as needed */
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
#hero-carousel .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
}
#hero-carousel .carousel-caption {
    bottom: 50%;
    transform: translateY(50%);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}
#hero-carousel .carousel-caption h1 {
    font-size: 3.5rem;
    font-weight: 700;
}
#hero-carousel .carousel-caption p {
    font-size: 1.2rem;
}

/* --- General Section Styling --- */
.section-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}
.custom-btn {
    background-color: #f0c15a;
    border-color: #f0c15a;
    color: #000;
    font-weight: bold;
    padding: 10px 30px;
    text-transform: uppercase;
}
.custom-btn:hover {
    background-color: #d8ad4f;
    border-color: #d8ad4f;
    color: #000;
}

/* --- Specific Section Styling --- */
.associate-logo {
    max-width: 150px;
    /* filter: grayscale(100%); */
    opacity: 0.6;
    transition: all 0.3s ease;
}
.associate-logo:hover {
    /* filter: grayscale(0%); */
    opacity: 1;
}

/* Associates Continuous Scroll Animation */
.associates-scroll-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.associates-scroll {
    display: flex;
    animation: scroll-left 30s linear infinite;
    width: max-content;
}

.associate-item {
    flex-shrink: 0;
    margin: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.associates-scroll-container:hover .associates-scroll {
    animation-play-state: paused;
}

/* Associates Carousel Styling */
#associates-carousel .carousel-indicators {
    bottom: -50px;
}

#associates-carousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

#associates-carousel .carousel-indicators button.active {
    background-color: #f0c15a;
    transform: scale(1.2);
}

#associates-carousel .carousel-indicators button:hover {
    background-color: #f0c15a;
    transform: scale(1.1);
}

.award-icon {
    width: 100%;
    max-width: 350px; /* Controls max size on large screens */
    height: auto;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

/* --- FAQ Accordion --- */
.accordion-item {
    background-color: transparent;
    border: none;
    margin-bottom: 10px;
    border-radius: 0;
}

.accordion-button {
    font-weight: 600;
    color: #2c3e50;
    padding: 1rem;
    background-color: transparent;
    border: none;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    color: #000;
    background-color: transparent;
    box-shadow: none;
}

.accordion-button:hover {
    background-color: transparent;
    color: #f0c15a;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f0c15a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    background-color: transparent;
    padding: 1rem;
    color: #495057;
    line-height: 1.6;
    font-size: 0.95rem;
}


/* --- Footer --- */
footer {
    background-color: #1e1e1e;
}
.footer-logo {
    max-width: 150px;
    filter: brightness(0) invert(1);
}
.footer-link {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-link:hover {
    color: #fff;
}
footer h5 {
    color: #f0c15a;
}
footer hr {
    background-color: #444;
}
footer .fa-home, .fa-envelope, .fa-phone {
    color: #f0c15a;
}


/* --- Responsive Adjustments --- */
/* --- Map Section Responsive Styles --- */
.map-section-container {
    margin-bottom: 2rem;
}
.map-section-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0.75rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    object-fit: cover;
}
@media (max-width: 768px) {
    .map-section-container img {
        min-height: 120px;
        max-height: 220px;
        border-radius: 0.5rem;
    }
}
@media (max-width: 480px) {
    .map-section-container img {
        min-height: 80px;
        max-height: 140px;
        border-radius: 0.35rem;
    }
}
@media (max-width: 768px) {
    #hero-carousel .carousel-caption h1 {
        font-size: 2.5rem;
    }
    .section-title, h3 {
        text-align: center;
    }
    .row > div {
        text-align: center;
    }
}

/*
=================================
  Career Page Styles
=================================
*/

/* --- Page Header for internal pages --- */
.page-header {
    padding: 7rem 0 7rem 0;
    min-height: 340px;
    position: relative;
    background-size: cover;
    background-position: center center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
@media (max-width: 991.98px) {
    .page-header {
        min-height: 220px;
        padding: 4rem 0 4rem 0;
    }
}

@media (max-width: 768px) {
    .page-header {
        min-height: 140px;
        padding: 2.5rem 0 2.5rem 0;
    }
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */
}

.page-header h1 {
    position: relative; /* To make sure text is on top of the overlay */
    font-size: 3rem;
    font-weight: 700;
}


/* --- Career Intro Text --- */
.career-intro .lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: #555;
    margin-bottom: 2rem;
}

.career-intro h4 {
    color: #333;
    font-weight: 700;
}

.career-intro p strong {
    color: #000;
}

/* --- Join Us & Form Section --- */
.contact-info-item .fas {
    color: #f0c15a; /* Use the brand's accent color */
}

.career-form {
    border: 1px solid #e0e0e0;
}

.career-form .form-label {
    font-weight: 500;
    color: #333;
}

.career-form .form-control {
    padding: 0.75rem 1rem;
}

.career-form .form-control:focus {
    border-color: #f0c15a;
    box-shadow: 0 0 0 0.25rem rgba(240, 193, 90, 0.25);
}

/*
=================================
  Contact Page Styles
=================================
*/

.contact-details-section {
    border-radius: 0.375rem 0 0 0.375rem;
}

.contact-form-wrapper {
    background-color: #EBE9E4;
    color: #fff;
    border-radius: 0 0.375rem 0.375rem 0;
}

/* Make form elements visible on dark background */
.contact-form-wrapper .form-label {
    color: #000000;
}

/* .contact-form-wrapper .form-control {
    color: #fff;
}

.contact-form-wrapper .form-control:focus {
    background-color: #444;
    border-color: #f0c15a;
    box-shadow: 0 0 0 0.25rem rgba(240, 193, 90, 0.25);
    color: #fff;
} */

/* Adjust for mobile where columns stack */
@media (max-width: 991.98px) {
    .contact-details-section {
        border-radius: 0.375rem 0.375rem 0 0;
    }
    .contact-form-wrapper {
        border-radius: 0 0 0.375rem 0.375rem;
    }
}

/*
=================================
  Thank You Page Styles
=================================
*/

.thank-you-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh; /* Ensures the content is vertically centered */
    padding: 4rem 0;
}

.thank-you-content {
    max-width: 600px;
    margin: auto;
}

.thank-you-icon {
    font-size: 5rem;
    color: #28a745; /* A success green color */
    margin-bottom: 1.5rem;
}


/* Project Associates - Responsive Logo Styling */
.brands-logo-item {
    padding: 15px;
    text-align: center;
}

.brands-logo-item img {
    max-width: 160px; /* Bigger logo size */
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brands-logo-item img:hover {
    transform: scale(1.05);
}


.partners-items img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  margin: 0 auto;
  object-fit: contain;
  filter: brightness(1); /* Adjust if white logos need brightening */
  transition: transform 0.3s ease;
}

.partners-items img:hover {
  transform: scale(1.05);
}
