﻿
/*Header*/
body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #fff;
}

/* Navbar */
.navbar {
    background-color: #fff;
    border-bottom: 1px solid #eee;
   
    padding: 1px 15px;
    display: flex;
    align-items: center;
}

/* ---- MAIN LOGO ---- */
.faca-logo {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    letter-spacing: 4px;
    line-height: 1;
}

/* Desktop Size */
.faca-logo {
    font-size: 40px;
}

/* Tablet */
@media (max-width: 992px) {
    .faca-logo {
        font-size: 32px;
        letter-spacing: 3px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .faca-logo {
        font-size: 25px;
        letter-spacing: 2px;
    }
}
/* ---- SUBTITLE ---- */
.faca-subtitle {
    font-size: 10px;
    gap: 10px;
}

/* Tablet */
@media (max-width: 992px) {
    .faca-subtitle {
        font-size: 9px;
        gap: 6px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .faca-subtitle {
        font-size: 7px;
        gap: 2px;
    }
}


.nav-link {
    font-weight: 500;
    color: #333 !important;
    margin-right: 15px;
}

.btn-orange {
    background-color: #f47b00;
    color: #fff !important;
    border-radius: 5px;
}

    .btn-orange:hover {
        background-color: #d66e00;
    }


/* SECTION BACKGROUND (Orange Gradient)  */
.leaders-section {
    background: linear-gradient(137deg, #f8b46a 0%, #e8a86a 35%, #d9a67d 70%, #67bf8d 100%);
    color: #000;
}

/* Leader Card */
.leader-card {
    background: transparent;
    max-width: 550px;
}

.leader-img {
    width: 190px;
    height: 190px;
    object-fit: fill;
    border-radius: 5px;
    border: 2px solid #fff;
}

.leader-text {
    font-size: 15px;
    line-height: 1.7;
    color: #111;
    margin-bottom: 20px;
}

/* Read More Button */
.btn-read {
    width: 160px;
    height:35px;
    background-color: #f47b00;
    color: #fff !important;
    font-weight: 500;
    border-radius: 6px;
    padding: 5px 22px;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .btn-read:hover {
        background-color: #d86900;
        color: #fff;
    }

.custom-footer {
    background-color: #111;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    padding: 15px 0; /* vertical padding */
    width: 100%; /* poora screen width */
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}

/* Footer */
.footer-link {
    color: #3aa3ff;
    text-decoration: none;
}

    .footer-link:hover {
        text-decoration: underline;
    }

.footer-right a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

    .footer-right a:hover {
        color: #f47b00;
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .custom-footer {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

    .footer-left,
    .footer-right {
        justify-content: center;
        padding: 0;
    }
}

/* ====== RESPONSIVE ====== */
@media (max-width: 992px) {
    .leader-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .leaders-section {
        text-align: center;
        padding: 40px 20px;
    }

    .leader-text {
        text-align: center;
    }

    .footer-container {
        flex-direction: column !important;
        text-align: center !important;
        gap: 8px !important;
    }

    .footer-right {
        justify-content: center !important;
    }

    /* Default - Mobile (full width) */
    .custom-modal-width {
        max-width: 80% !important;
        margin: auto;
    }

    /* Tablets (min-width: 576px) */
    @media (min-width: 576px) {
        .custom-modal-width {
            max-width: 70% !important; /* Medium width */
        }
    }

    /* Laptops (min-width: 768px) */
    @media (min-width: 768px) {
        .custom-modal-width {
            max-width: 70% !important;
        }
    }
}

#globalLoader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.9);
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 7px solid #f3f3f3;
    border-top: 7px solid #f47b00; /* Orange color */
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}
