@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

* {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}



.navigation.clearfix>li>a {
    font-size: 14px !important;
    /* Increase from default */


}

/* For dropdown items too */
.navigation.clearfix>li ul li a {
    font-size: 14px !important;

}



/* Change language dropdown color to blue */
.navigation.clearfix>li.dropdown:last-child>a {
    background-color: #007bff !important;
    /* Blue background */

}

.navigation.clearfix>li.dropdown:last-child>a:hover {
    background-color: #0056b3 !important;
    /* Darker blue on hover */
}

/* For sticky header language dropdown */
.sticky-header .navigation.clearfix>li.dropdown:last-child>a {
    background-color: #007bff !important;

}


/* Mobile menu adjustments */
@media (max-width: 991px) {
    .navigation.clearfix>li>a {
        font-size: 14px !important;

    }
}




.footer-info p {
    font-size: 20px !important;
    font-family: 'FontAwesome';
    color: rgb(201, 199, 199) !important;
}


.services-section {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;

}

.section-title h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;

}

.section-title h2 .highlight {
    color: #f39c12;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #f39c12;
    margin: 15px auto 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 50px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Alternating backgrounds */
.service-card:nth-child(3n+1) {
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
}

.service-card:nth-child(3n+2) {
    background: rgba(255, 255, 255, 0.95);
    color: #2c3e50;
}

.service-card:nth-child(3n) {
    background: rgba(173, 216, 230, 0.7);
    color: #2c3e50;
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 25px;
}

.service-card:nth-child(3n+1) .service-icon {
    color: #f39c12;
}

.service-card:nth-child(3n+2) .service-icon {
    color: #f39c12;
}

.service-card:nth-child(3n) .service-icon {
    color: #3498db;
}

.service-card h3 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #FFD700;
}


/* What We Do Section */
.what-we-do {
    padding: 80px 20px;
    background: #f8f9fa;
}



.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.service-card.leadership {
    background: url('img2/downloadfile-3.jpg') center/cover;
}

.service-card.administration {
    background: url(img2/downloadfile-2.png) center/cover;
}

.service-card.recruitment {
    background: url('https://images.unsplash.com/photo-1560179707-f14e90ef3623?w=800&h=600&fit=crop') center/cover;
}

.service-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
}

.service-content h3 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #FFD700;
}

.service-content p {
    font-size: 1.1em;
    line-height: 1.6;
}

/* Mission & Vision Section */
.mission-vision {
    padding: 80px 0;
    background: linear-gradient(135deg,
            rgba(0, 123, 255, 0.3) 0%,
            /* Light transparent blue */
            rgba(0, 86, 179, 0.3) 100%
            /* Darker transparent blue */
        );
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mission-card,
.vision-card {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.mission-card h3,
.vision-card h3 {
    font-weight: 30px;
    color: #f39c12;
    font-size: 50px;
    margin-bottom: 1rem;
}

.mission-card p,
.vision-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}


/* Hero Section */
.hero1 {

    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #1a1a1a;
}

.hero1::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('images/aaa.jpg') center/cover;
    z-index: 0;
}

.hero1::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('images/juliet.jpg') center/cover;
    z-index: 0;
}

.hero1-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    width: 100%;
    z-index: 1;
    margin: 0 auto;
}

.hero1-card {
    background: rgba(30, 144, 255, 0.05);
    backdrop-filter: blur(3px);
    border-radius: 12px;
    padding: 30px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s, background 0.3s;
}

.hero1-card:hover {
    transform: translateY(-5px);
    background: rgba(30, 144, 255, 0.08);
}

.hero1-card h2 {
    color: #FFD700;
    font-size: 1.7em;
    margin-bottom: 18px;
    text-align: center;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.card-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-btn {
    display: block;
    width: 100%;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    font-size: 12px;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.card-btn:hover {
    background: rgba(255, 215, 0, 0.85);
    color: #000;
    transform: scale(1.03);
    border-color: #FFD700;
    text-shadow: none;
}




.welcome-section {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    min-height: 100vh;
}

/* LEFT IMAGE AREA */
.left-image {
    flex: 1;
}

.left-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* RIGHT CONTENT */
.right-content {
    flex: 1;
    padding: 60px 40px;
    background: #ffffff;
}

.right-content h1 {
    font-size: 36px;
    color: #e5a300;
    font-weight: bold;
    margin-bottom: 20px;
}

.intro-text {
    line-height: 1.6;
    margin-bottom: 20px;
}

/* FEATURES LIST */
.features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.features li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.features li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #e5a300;
    font-weight: bold;
}

/* BUTTON */
.btn-read {
    display: inline-block;
    padding: 12px 25px;
    border: 2px solid #e5a300;
    text-decoration: none;
    color: #000;
    font-weight: bold;
    transition: 0.3s;
}

.btn-read:hover {
    background: #e5a300;
    color: white;
}

/* RESPONSIVE FOR SMALL PHONES */
@media (max-width: 768px) {
    .welcome-section {
        flex-direction: column;
    }

    .right-content {
        padding: 30px 20px;
    }

    .right-content h1 {
        font-size: 28px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {


    .mission-vision-grid1 {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero1-card h2 {
        font-size: 1.3em;
    }

    .card-btn {
        font-size: 12px;
        padding: 9px 10px;
    }

    /* Team Section */
    .team-section {
        padding: 80px 20px;
        background: #fff;
        position: relative;
    }

    .section-title {
        text-align: center;
        font-size: 3em;
        color: #1e3c72;
        margin-bottom: 60px;
        font-weight: 700;
    }

    .team-carousel-container {
        max-width: 1400px;
        margin: 0 auto;
        position: relative;
        padding: 0 80px;
    }

    .team-carousel-wrapper {
        overflow: hidden;
        width: 100%;
    }

    .team-grid {
        display: flex;
        transition: transform 0.5s ease;
    }

    .team-member {
        flex-shrink: 0;
        padding: 0 20px;
    }

    .carousel-controls {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        display: flex;
        justify-content: space-between;
        pointer-events: none;
        left: 0;
        padding: 0 10px;
    }

    .carousel-btn {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: #1e3c72;
        color: #fff;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        font-weight: bold;
        transition: all 0.3s;
        pointer-events: all;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .carousel-btn:hover:not(:disabled) {
        background: #FFD700;
        color: #000;
        transform: scale(1.1);
    }

    .carousel-btn:disabled {
        background: #ccc;
        cursor: not-allowed;
        opacity: 0.5;
    }

    .team-member {
        text-align: center;
        flex-shrink: 0;
        padding: 0 10px;
        border-radius: 15px;
        background: #fff;
        transition: transform 0.3s, box-shadow 0.3s;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .team-photo-wrapper {
        position: relative;
        width: 100%;
        height: 350px;
        overflow: hidden;
        cursor: pointer;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
    }

    .team-photo {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        transition: transform 0.4s ease;
    }

    .team-photo-wrapper:hover .team-photo {
        transform: scale(1.05);
    }

    .view-profile-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s;
    }

    .team-photo-wrapper:hover .view-profile-overlay {
        opacity: 1;
    }

    .view-profile-btn {
        background: #FFD700;
        color: #000;
        padding: 12px 30px;
        border-radius: 25px;
        font-weight: bold;
        text-decoration: none;
        transition: transform 0.3s;
    }

    .view-profile-btn:hover {
        transform: scale(1.1);
    }

    .team-info {
        padding: 25px;
    }

    .team-member h4 {
        font-size: 1.5em;
        color: #1e3c72;
        margin-bottom: 8px;
    }

    .team-member p {
        color: #666;
        font-size: 1.1em;
        font-weight: 500;
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .team-member {
            min-width: 50%;
        }

        .team-carousel-container {
            padding: 0 70px;
        }
    }

    @media (max-width: 768px) {
        .section-title {
            font-size: 2em;
        }

        .team-member {
            min-width: 100%;
        }

        .team-carousel-container {
            padding: 0 50px;
        }

        .carousel-btn {
            width: 45px;
            height: 45px;
            font-size: 24px;
        }

        .team-photo-wrapper {
            height: 300px;
        }

        .team-member h4 {
            font-size: 1.3em;
        }

        .team-member p {
            font-size: 1em;
        }
    }

    @media (max-width: 480px) {
        .section-title {
            font-size: 1.6em;
        }

        .team-carousel-container {
            padding: 0 40px;
        }

        .carousel-btn {
            width: 35px;
            height: 35px;
            font-size: 20px;
        }

        .team-photo-wrapper {
            height: 280px;
        }
    }



}

/* Responsive */
@media (max-width: 1024px) {
    .hero-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-card h2 {
        font-size: 1.3em;
    }

    .card-btn {
        font-size: 12px;
        padding: 9px 10px;
    }

}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
}

/* Main About Section */
.about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 5%;
    gap: 40px;
}

/* Left Image */
.about-left {
    flex: 1;
}

.about-left img {
    width: 100%;
    border-radius: 8px;
}

/* Right Text */
.about-right {
    flex: 1.2;
}

.about-right h1 {
    font-size: 36px;
    color: #e5a300;
    margin-bottom: 15px;
}

.about-right p {
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Stats under text */
.stats-inline {
    display: flex;
    gap: 40px;
    margin-top: 20px;
}

.stat-box {
    text-align: center;
}

.stat-box i {
    font-size: 40px;
    color: #e5a300;
    margin-bottom: 10px;
}

.stat-box h2 {
    font-size: 26px;
    margin: 5px 0;
    color: #e5a300;
}

.stat-box p {
    font-size: 14px;
    color: #555;
}


/* Responsive for Phones */
@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        text-align: center;
    }

    .stats-inline {
        flex-direction: column;
        gap: 25px;
    }
}


/* Main About Section */
.about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 5%;
    gap: 40px;
}

/* Left Image */
.about-left {
    flex: 1;
}

.about-left img {
    width: 100%;
    border-radius: 8px;
}

/* Right Text */
.about-right {
    flex: 1.2;
}

.about-right h1 {
    font-size: 36px;
    color: #e5a300;
    margin-bottom: 15px;
}

.about-right p {
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Stats under text */
.stats-inline {
    display: flex;
    gap: 40px;
    margin-top: 20px;
}

.stat-box {
    text-align: center;
}

.stat-box i {
    font-size: 40px;
    color: #e5a300;
    margin-bottom: 10px;
}

.stat-box h2 {
    font-size: 26px;
    margin: 5px 0;
    color: #e5a300;
}

.stat-box p {
    font-size: 14px;
    color: #555;
}


/* Responsive for Phones */
@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        text-align: center;
    }

    .stats-inline {
        flex-direction: column;
        gap: 25px;
    }
}