:root {
    --primary-color: #003974;
    --secondary-color: #0A74FF;
    --light-color: #F5F8FF;
    --dark-color: #062442;
    --accent-color:#80CFFF ;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top:64px;
}

.navbar {
    padding: 1rem 2rem;
    background: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar-brand {
    color: var(--primary-color) !important;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link {
    margin: 0 1rem;
    color: var(--dark-color) !important;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.navbar-brand img {
    height: 64px;        
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 64px;
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

.navbar-nav .nav-item:last-child .nav-link {
    color: #ffffff !important;
}

.navbar-nav .nav-item:last-child .nav-link {
    background: var(--secondary-color);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    margin-left: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
}

.navbar-nav .nav-item:last-child .nav-link::after {
    background: none;
}

.navbar-nav .nav-item:last-child .nav-link:hover::after {
    width: 0; 
}

.btn-primary {
    background: var(--secondary-color);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary:hover {
    background: #0056CC;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {

    .navbar-nav {
        margin-top: 1rem;
        text-align: center;
    }

    .navbar-nav .nav-item:last-child .nav-link {
        padding: 0.45rem 1rem;     
        font-size: 0.9rem;        
        border-radius: 6px;
        width: auto;              
        margin: 0.5rem auto 0;   
    }
}

@media (max-width: 576px) {
        .navbar-nav .nav-item:last-child .nav-link {
        padding: 0.4rem 0.9rem;
        font-size: 0.85rem;
    }
}

.hero-section {
    position: relative;                
    width: 100%;
    height: 100vh;                      
    overflow: hidden;                    
}

/*  HERO SLIDER CONTAINER */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

/* INDIVIDUAL SLIDE */
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    transform: translateX(100%);
    transition: transform 0.9s ease-in-out;
}

.hero-slide.active {
    transform: translateX(0);
    z-index: 2;
}

.hero-slide.prev {
    transform: translateX(-100%);
    z-index: 1;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.6),
        rgba(0, 0, 0, 0.3)
    );
    z-index: 1;
}


.hero-slide .container {
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 3;                      
    max-width: 650px;
}


.hero-content h1 {
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.hero-content p {
    color: rgba(255,255,255,0.95);
    font-size: 1.1rem;
}

/* HERO BUTTON */
.hero-content .btn {
    padding: 0.75rem 2rem;
    font-size: 1rem;
}

/*  CAROUSEL CONTROLS (NEXT / PREV)*/
.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 5;
}
.control-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 1.3rem;
    backdrop-filter: blur(6px);
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

/* ================= HERO INDICATORS ================= */
.carousel-indicators {
    position: absolute;
    bottom: 32px;
    left: 0;
    right: 0;                 
    display: flex;
    justify-content: center;  
    align-items: center;
    gap: 12px;
    z-index: 4;
}

.carousel-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: whitesmoke;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicators .indicator.active {
    background: var(--secondary-color);
    transform: scale(1.3);
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-section {
        height: 85vh;
    }
}

@media (max-width: 576px) {
    .hero-content {
        text-align: center;
    }

    .carousel-controls {
        padding: 0 1rem;
    }

    .hero-section {
        height: 80vh;
    }
}

/* SERVICE SECTION */
.services-section {
    background: var(--light-color);
    padding: 5rem 0;
}

.services-section p.lead{
   text-align: center;
   color:#062442;
}
.service-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    width: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(10, 116, 255, 0.25);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.service-card h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.partnership-section {
    background: white;
    padding: 4rem 0;
}

.partners-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 0 auto;
    max-width: 1200px;
}

.partner-logo {
    width: 180px;
    height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 8px;
    background: white;
    padding: 0.5rem;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}


/* ===== Footer Contact Section  ===== */
.footer-top {
    padding: 48px 0; 
}
.footer-contact {
    background: #4A90E2;
    color: white;
    margin-top: 64px;
}

/* Each footer block: Address / Contact / Hours / Follow */
.footer-item {
    display: flex;
    gap: 32px; 
    align-items: flex-center;
    margin-bottom: 32px;
}

/* Icons */
.footer-item i {
    font-size: 24px;
    min-width: 24px;
    margin-top: 2px; 
    color:#003974;
}

/* Section headings */
.footer-item h6 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px; 
    color: #003974;
}

/* Text lines (Address, Contact, Hours) */
.footer-item p {
    margin-bottom: 4px; 
    font-size: 16px;
    line-height: 24px; 
    color: #003974;
}

.footer-social-icons a:nth-child(1){
    color: #0854b7;
}

.footer-social-icons a:nth-child(2){ 
    color: #147036;
 } 

.footer-social-icons a:nth-child(3){
     color: #105192; 
} 

.footer-social-icons i {
    color: inherit;
}

.footer-item p:last-child {
    margin-bottom: 0;
}

.footer-social-icons {
    display: flex;
    gap: 16px; 
    margin-top: 16px; 
}

.footer-social-icons a {
    width: 40px; 
    height: 40px; 
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    color: #4A90E2;
    transition: var(--transition);
}

.footer-social-icons a:hover { 
    transform: translateY(-4px); 
}

.footer-bottom {
    padding: 20px 0; 
    border-top: 1px solid rgba(255, 255, 255, 0.2); /* Divider line */
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end; 
    position: relative; 
}

/* copyright text */
.footer-copy {
    position: absolute; 
    left: 50%;
    transform: translateX(-50%); 
    text-align: center;
}

/* Copyright text */
.footer-copy p {
    margin: 0;
    font-size: 14px;
    color: #003974;
}

/* Developer credit */
.footer-copy span {
    display: block;
    font-size: 13px;
    color: #003974;
}

.footer-links {
    display: flex; 
    gap: 24px; 
}

.footer-links a {
    font-size: 14px;
    color: #003974;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* ================= Footer Mobile Responsive ================= */
@media (max-width: 768px) {

    .footer-bottom-inner {
        flex-direction: column;
        gap: 10px;
    }

    .footer-copy {
        position: static;
        transform: none;
        order: 1;
    }

    .footer-links {
        order: 2;
    }
}

.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.scroll-top-btn:hover {
    background: #0056CC;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.scroll-top-btn.show {
    display: flex;
}

@media (max-width: 992px) {
    .hero-section {
        height: 80vh;
    }
    
    .container.h-100 {
        height: calc(80vh - 56px);
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
    
    .service-card {
        margin-bottom: 1.5rem;
    }

    .contact-hero-banner {
        padding: 120px 0 60px;
    }

    .contact-hero-banner h1 {
        font-size: 2rem;
    }

    .contact-main-section {
        padding: 40px 0;
    }

    .contact-info-box,
    .contact-form-box {
        margin-bottom: 3rem;
    }

    .map-container {
        height: 300px;
    }

    .footer-bottom a {
        margin-left: 0;
        margin-right: 16px;
    }

    .motto-title {
        font-size: 1.5rem;
    }

    .motto-subtitle {
        font-size: 1rem;
    }

    .about-content-section {
        padding: 40px 0;
    }

    .purpose-section {
        padding: 40px 0;
    }

    .purpose-title {
        font-size: 2rem;
    }

    .team-section-title {
        font-size: 2rem;
    }

    .other-team-title {
        font-size: 2rem;
    }

    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

/* ================= ABOUT HERO ================= */
.contact-hero-banner {
    background:
    linear-gradient(
            rgba(0, 57, 116, 0.65),
            rgba(0, 57, 116, 0.65)
        ), url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=1200') center/cover no-repeat;
    position: relative;
    padding: 60px 0 100px; 
    margin-top: 20px;
    color: #ffffff;
}

.contact-hero-banner h1{
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
}

.contact-hero-banner p{
    max-width: 650px;
    margin: 0 auto;
    font-size: 1rem;
    color: #ffffff;
    opacity: 1;
}
.about-content-section {
    padding: 60px 0 40px;
    background: #ffffff;
}

.team-photo-wrapper {
    text-align: center;
}

.team-photo {
    width: 100%;
    max-width: 1200px;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.about-text-section {
    padding: 40px 0;
}

.about-text-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-text-content p {
    text-align: center;
    font-size: 16px;
    line-height: 2;
}

.motto-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
}

.motto-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 2rem;
}

/* ===== Purpose Section ===== */
.purpose-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.purpose-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.purpose-image {
     width: 500px; 
     height: 409px; 
     object-fit: cover; /* prevents distortion */ 
     object-position: center; /* keeps image centered */ 
     border-radius: 12px; 
     box-shadow: 0 5px 20px rgba(0,0,0,0.1); 
}

.purpose-accordion-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.purpose-tab-item {
    width: 100%;
    padding: 16px 24px;
    border: none;
    background: #fff;
    font-weight: 500;
    cursor: pointer;
}

.purpose-tab-item.active {
    background: #e8f2ff;
    color: var(--secondary-color);
}

.purpose-tab-content {
    display: none;
    padding: 20px 24px;
    background: #f8f9fa;
}

.purpose-tab-content.active {
    display: block;
}
 
/*==== SERVICES HERO SECTION ====*/
.services-hero-banner {
    background:
        linear-gradient(
            rgba(0, 57, 116, 0.65),
            rgba(0, 57, 116, 0.65)
        ),
        url("https://images.unsplash.com/photo-1552664730-d307ca884978?w=1600&auto=format&fit=crop")
        center / cover no-repeat;
    padding: 60px 0 100px;    
    position: relative;
    margin-top: 20px;
    color: #ffffff;
}

.services-hero-banner h1 {
    font-size: 3rem;
    font-weight: 700;
}

.services-hero-banner p {
    max-width: 650px;
    margin: 0 auto;
    font-size: 1rem;
    opacity: 0.95;
}

/* ===============================
   SERVICES GRID
================================ */
.services-section h1 {
    margin-bottom: 1.5rem;
}

.services-intro {
    max-width: 900px;
    margin: 0 auto;
    color: #333;
}

.service-card i {
    font-size: 3rem;
    color: #0a74ff;
    margin-bottom: 20px;
}

.service-card h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #062442;
}

.service-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.service-card:hover i {
    color: #003974;
}

/* ===============================
   CTA SECTION
================================ */
.services-cta {
    background: linear-gradient(
        135deg,
        rgba(0, 57, 116, 0.65),
        rgba(0, 57, 116, 0.65)
    ), url("../images/service-images.jpg") center/cover;
    color: #ffffff;
    padding: 90px 20px;
    margin-bottom: 80px;
    text-align: center;
}

.services-cta h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.services-cta p {
    max-width: 650px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* CTA Button */
.services-cta .btn {
    background-color: #ffffff;
    color: #0b5ed7;
    font-weight: 600;
    border-radius: 50px;
    padding: 14px 36px;
    border: none;
    box-shadow: 0 10px 25px rgba(180, 37, 37, 0.2);
    transition: all 0.3s ease;
}

.services-cta .btn:hover {
    background-color: #0b5ed7;
    color: #ffffff;
    transform: translateY(-3px);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2.3rem;
    }

    .services-cta h2 {
        font-size: 2rem;
    }

    .service-text-content p {
        font-size: 1.05rem;
    }
}

/* ===== Team Page Hero Section ===== */
/*Same as About Hero section*/
/* ===== Team Section / Other Team Section ===== */
.team-section-title,
.other-team-title {
    font-weight: 700;
    color: var(--primary-color);
}
.team-member-card,
.other-team-card {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}
.team-member-image,
.other-team-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.team-member-info,
.other-team-info {
    padding: 1rem;
    text-align: center;
}
.team-member-name,
.other-team-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
}
.team-member-position,
.other-team-position {
    font-size: 0.85rem;
    color: #666;
}

/*--- CONTACT SECTION--- */
.contact-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.contact-hero-banner h1 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-hero-banner .breadcrumb {
    background: transparent;
    margin-bottom: 0;
}

.contact-hero-banner .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.contact-hero-banner .breadcrumb-item.active {
    color: white;
}

.contact-hero-banner .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
    content: ">";
}

.contact-main-section {
    padding: 60px 0;
    background: #ffffff;
}

.contact-info-box {
    background: white;
    padding: 0;
}

.contact-info-box h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--secondary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.contact-text h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-text p {
    margin-bottom: 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-text a {
    color: #666;
    text-decoration: none;
}

.contact-text a:hover {
    color: var(--secondary-color);
}

.social-section {
    margin-top: 2.5rem;
}

.social-section h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.social-icons-contact {
    display: flex;
    gap: 1rem;
}

.contact-form-box {
    background: white;
    padding: 0;
}

.contact-form-box h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form .form-control {
    padding: 0.875rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-form .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(10, 116, 255, 0.15);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.word-count {
    font-size: 0.85rem;
    color: #999;
    margin-top: -0.5rem;
    margin-bottom: 1rem;
}

.submit-btn {
    background: var(--secondary-color);
    color: white;
    padding: 0.75rem 2.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    transition: var(--transition);
}

.submit-btn:hover {
    background: #0056CC;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.map-section {
    padding: 0;
    margin: 0;
}

.map-container {
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

