body {
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    color: #333;
    background-color: #ffffff;
}

.navbar-brand {
    letter-spacing: 0.5px;
}

.section {
    padding: 60px 0;
}

.section-title {
    font-weight: 600;
    margin-bottom: 30px;
}

footer a {
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}


.hero-video {
    position: relative;
    margin-top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #000; /* fallback background */
}

.hero-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

@media (max-width: 768px) {
    .hero-video {
        height: 40vh;
    }
}

/* NAVBAR BASE */
#mainNavbar {
    transition: all 0.3s ease;
    padding: 20px 0;
    z-index: 999;
}

/* Transparent state (on load) */
.navbar-transparent {
    background-color: transparent;
}

/* Solid state (on scroll) */
.navbar-solid {
    background-image: radial-gradient( circle farthest-corner at 32.7% 49.8%,  rgba(28,88,238,1) 0%, rgba(0,39,137,1) 100.2% );
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 60px;
    padding: 0 !important; /* IMPORTANT */
    display: flex;
    align-items: center;
}

/* Brand */
.navbar-brand img {
    height: 40px;
    transition: all 0.3s ease;
}

/* Smaller logo when navbar is solid */
.navbar-solid .navbar-brand img {
    height: 32px;
}

/* Links */
.navbar-nav .nav-link {
    font-weight: 500;
    padding: 8px 15px;
    transition: color 0.3s ease;
}

/* Transparent text */
.navbar-transparent .nav-link {
    color: #ffffff;
}

/* Solid text */
.navbar-solid .nav-link {
    color: #f5f10b;
}

/* Hover */
.navbar-nav .nav-link:hover {
    color: #ffffff; /* Bootstrap primary */
}
/* MOBILE MENU OVERLAY */
@media (max-width: 991px) {

    .mobile-nav {
        position: absolute;
        top: 60px; /* solid navbar height */
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        padding: 20px 0 30px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 998;
    }

    .mobile-nav.show {
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-nav .navbar-nav {
        text-align: center;
    }

    .mobile-nav .nav-link {
        color: #ffffff !important;
        font-size: 1.1rem;
        padding: 12px 0;
        display: block;
    }

    /* CLOSE BUTTON */
    .mobile-nav-close {
        position: absolute;
        top: 10px;
        right: 15px;
        background: none;
        border: none;
        color: #ffffff;
        font-size: 2rem;
        line-height: 1;
        cursor: pointer;
    }
}

.navbar-transparent .navbar-toggler {
    border-color: rgba(255,255,255,0.6);
}

.navbar-transparent .navbar-toggler-icon {
    filter: invert(1);
}
/* SERVICES – MODERN CARDS */
.service-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 14px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.service-card h5 {
    margin-top: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.service-card p {
    color: #202427;
    font-size: 0.95rem;
}

/* ICON STYLING */
.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 193, 7, 0.15); /* yellow tint */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.service-icon i {
    font-size: 30px;
    color: #ffc107; /* Bootstrap yellow */
}

/* HOVER EFFECT */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}
/* ABOUT SECTION STYLING */
.about-eyebrow {
    color: #ffc107;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.about-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 15px 0 20px;
    line-height: 1.3;
}

.about-text {
    font-size: 1rem;
    color: #202427;;
    margin-bottom: 25px;
}

/* BULLET POINTS */
.about-points ul {
    list-style: none;
    padding-left: 0;
}

.about-points li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: #202427;;
}

.about-points li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ffc107;
    font-weight: bold;
}

/* FACEBOOK FEED WRAPPER */
.facebook-wrapper {
    background: #fff;
    padding: 10px;
}
@media (max-width: 768px) {
    .about-heading {
        font-size: 2rem;
    }
}
@media (min-width: 992px) {
    .facebook-wrapper {
        max-width: 100%;
        margin-left: auto;
        padding-left: 150px;
    }
}

/* ==============================
   WE COMMUNICATE TO CONNECT
============================== */

.connect-section {
    position: relative;
    background: url("../images/history_bg.jpg") center center / cover no-repeat;
    padding: 100px 0;
    color: #ffffff;
}

/* DARK OVERLAY */
.connect-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0, 0, 0, 0.65),
        rgba(0, 0, 0, 0.75)
    );
    z-index: 1;
}

/* HEADING */
.connect-heading {
    font-size: 2.6rem;
    font-weight: 600;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

/* CARD */
.connect-card {
    position: relative;
    z-index: 2;
    padding: 30px 20px;
}

.connect-card h5 {
    color: #ffc107;
    margin-top: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}

.connect-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ICON */
.connect-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid rgba(255, 193, 7, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.connect-icon i {
    font-size: 28px;
    color: #ffffff;
}

/* HOVER EFFECT (DESKTOP ONLY) */
@media (min-width: 992px) {
    .connect-card:hover .connect-icon {
        background: rgba(255, 193, 7, 0.15);
        transform: translateY(-5px);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .connect-section {
        padding: 70px 0;
    }

    .connect-heading {
        font-size: 2rem;
        text-align: center;
    }
}

/* ==============================
   CTA SECTION
============================== */

.cta-card {
    background-image: radial-gradient( circle farthest-corner at 32.7% 49.8%,  rgba(28,88,238,1) 0%, rgba(0,39,137,1) 100.2% );
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* TEXT */
.cta-heading {
    font-size: 1.9rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    padding-left: 60px;
}

.cta-text {
    color: rgba(255, 255, 255, 0.9);
    max-width: 480px;
    margin-bottom: 25px;
    padding-left: 60px;
}

.cta-btn{
    margin-left: 60px;
}

/* IMAGE */
.cta-image {
    max-height: 300px;
    object-fit: contain;
}



/* RESPONSIVE */
@media (max-width: 991px) {
    .cta-card {
        padding: 40px 30px;
        text-align: center;
    }

    .cta-heading {
        color: #ffffff;
        padding-left: 0;
    }

    .cta-text {
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
    }
    .cta-btn{
        margin-left: 0;
    }
}

@media (max-width: 576px) {
    .cta-card {
        padding: 35px 25px;
    }

    .cta-heading {
        font-size: 1.6rem;
    }
}

/* About Us Hero Section */
/* ==============================
   ABOUT HERO – GRADIENT VERSION
============================== */

.about-hero-modern {
    background-image: radial-gradient(
        circle farthest-corner at 32.7% 49.8%,
        rgba(28, 88, 238, 1) 0%,
        rgba(0, 39, 137, 1) 100.2%
    );
    padding: 120px 0 100px;
    color: #ffffff;
}

/* Eyebrow */
.about-eyebrow {
    color: #ffc107;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Heading */
.about-hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.25;
    margin: 15px 0 20px;
    color: #ffffff;
}

/* Description */
.about-hero-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 520px;
    margin-bottom: 25px;
}

/* Breadcrumb */
.about-breadcrumb {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.about-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
}

.about-breadcrumb span {
    margin: 0 6px;
}

/* Image */
.about-hero-image {
    max-height: 360px;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero-modern {
        padding: 100px 0 80px;
        text-align: center;
    }

    .about-hero-title {
        font-size: 2.1rem;
    }

    .about-hero-text {
        margin-left: auto;
        margin-right: auto;
    }
}


/* ==============================
   SECTION TITLES
============================== */

.section-eyebrow {
    color: #ffc107;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin: 10px 0;
}

.section-subtitle {
    color: #666;
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}


/* leadership card */

.leader-card {
    background: #fff;
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.leader-img {
    max-width: 180px;
    border-radius: 12px;
}

.leader-card h3 {
    font-weight: 600;
}

.leader-card h6 {
    color: #666;
    margin-bottom: 15px;
}

/* ==============================
   WHO WE ARE SECTION
============================== */

.who-we-are-section {
    position: relative;
    background: url("../images/history_bg.jpg") center center / cover no-repeat;
    padding: 120px 0;
    color: #ffffff;
}

/* Overlay */
.who-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.856);
    z-index: 1;
}

/* Ensure content is above overlay */
.who-we-are-section .container {
    z-index: 2;
    position: relative;
}

/* Title */
.who-title {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

/* Subtitle */
.who-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
}

/* Main text */
.who-text {
    font-size: 1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    text-align: justify;
}

/* Drop cap */
.drop-cap {
    float: left;
    font-size: 4rem;
    line-height: 1;
    font-weight: 700;
    color: #ffc107;
    margin-right: 10px;
    margin-top: 6px;
}

/* Responsive */
@media (max-width: 768px) {
    .who-we-are-section {
        padding: 90px 0;
    }

    .who-title {
        font-size: 2rem;
    }

    .drop-cap {
        font-size: 3rem;
    }
}
/* ==============================
   WHY CHOOSE US
============================== */

.why-choose-section {
    background: #f2f2f2;
    padding: 100px 0;
}

/* Title */
.why-title {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.why-title span {
    color: #ffc107;
}

.why-intro {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.8;
}

/* Feature item */
.why-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
}

/* Icon */
.why-icon {
    width: 55px;
    height: 55px;
    background: #ffc107;
    color: #000;
    font-size: 22px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Text */
.why-item h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.why-item p {
    color: #444;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .why-choose-section {
        padding: 70px 0;
    }

    .why-title {
        font-size: 2.1rem;
    }

    .why-item {
        margin-bottom: 30px;
    }
}
/* ==============================
   AWARDS CARD STYLE
============================== */

.awards-section {
    background: #f2f2f2;
    padding: 20px 0;
}

/* Card container */
.awards-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 70px 60px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

/* Title */
.awards-title {
    font-size: 2.6rem;
    font-weight: 700;
}

.awards-title span {
    color: #ffc107;
}

/* Award items */
.award-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
}

/* Icon */
.award-icon {
    width: 55px;
    height: 55px;
    background: #ffc107;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

/* Text */
.award-item h5 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.award-item p {
    margin-bottom: 0;
    color: #444;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .awards-section {
        padding: 70px 0;
    }

    .awards-card {
        padding: 50px 30px;
    }

    .awards-title {
        font-size: 2.1rem;
    }
}

/* ==============================
   OUR CLIENTS
============================== */

.clients-section {
    background: #ffffff;
}

/* Logos */
.client-logo {
    width: 100%;
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

/* Hover (desktop only) */
@media (min-width: 992px) {
    .client-logo:hover {
        filter: grayscale(0%);
        opacity: 1;
        transform: scale(1.05);
    }
}

/* ==============================
   SERVICES HERO
============================== */

.services-hero {
    background-image: radial-gradient(
        circle farthest-corner at 32.7% 49.8%,
        rgba(28, 88, 238, 1) 0%,
        rgba(0, 39, 137, 1) 100.2%
    );
    padding: 120px 0 100px;
    color: #ffffff;
}

.services-hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.25;
    margin: 15px 0 20px;
}

.services-hero-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 520px;
}

.services-hero-image {
    max-height: 360px;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
    .services-hero {
        padding: 100px 0 80px;
        text-align: center;
    }

    .services-hero-title {
        font-size: 2.1rem;
    }

    .services-hero-text {
        margin-left: auto;
        margin-right: auto;
    }
}
/* ==============================
   SERVICES LIST
============================== */

.services-list {
    background: #ffffff;
}

.service-row {
    margin-bottom: 100px;
}

.service-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    max-width: 520px;
}

.service-image {
    max-height: 320px;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
    .service-row {
        margin-bottom: 70px;
        text-align: center;
    }

    .service-text {
        margin-left: auto;
        margin-right: auto;
    }
}
/* ==============================
   GALLERY HERO
============================== */

.gallery-hero {
    background-image: radial-gradient(
        circle farthest-corner at 32.7% 49.8%,
        rgba(28, 88, 238, 1) 0%,
        rgba(0, 39, 137, 1) 100.2%
    );
    padding: 120px 0 100px;
    color: #ffffff;
}

.gallery-hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.25;
    margin: 15px 0 20px;
}

.gallery-hero-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 520px;
}

.gallery-hero-image {
    max-height: 360px;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-hero {
        padding: 100px 0 80px;
        text-align: center;
    }

    .gallery-hero-title {
        font-size: 2.1rem;
    }

    .gallery-hero-text {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ==============================
   GALLERY GRID
============================== */

.gallery-section {
    background: #ffffff;
}

/* Masonry-style grid */
/* ==============================
   GALLERY MASONRY FIX
============================== */

.gallery-grid {
    column-count: 4;
    column-gap: 20px;
}

/* Each item */
.gallery-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}

/* Image */
.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
    will-change: transform;
}

/* Hover zoom */
.gallery-item:hover img {
    transform: scale(1.08);
}

/* Hover overlay */
.gallery-item::after {
    content: "View";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Responsive breakpoints */
@media (max-width: 1200px) {
    .gallery-grid {
        column-count: 3;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        column-count: 2;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        column-count: 1;
    }
}

/* ==============================
   CONTACT PAGE
============================== */

.contact-section {
    background-image: radial-gradient(
        circle farthest-corner at 32.7% 49.8%,
        rgba(28, 88, 238, 1) 0%,
        rgba(0, 39, 137, 1) 100.2%
    );
    padding: 120px 0;
    color: #ffffff;
}

.contact-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin: 15px 0 20px;
}

.contact-text {
    /* max-width: 520px;
    opacity: 0.9;
    margin-bottom: 30px; */
    display: flex;
    flex-direction: column;
}

.contact-details {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
}

.contact-details i {
    font-size: 20px;
    color: #ffc107;
    line-height: 1;
    margin-top: 4px; /* aligns with label */
    flex-shrink: 0;
}

/* Contact form card */
.contact-form-card {
    background: #ffffff;
    color: #000;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.contact-label {
    font-weight: 600;
    font-size: 1rem;
    color: #ffffff;
}

/* Value */
.contact-value {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    word-break: break-word;
}


/* Responsive */
@media (max-width: 768px) {
    .contact-section {
        padding: 100px 0;
        text-align: center;
    }

    .contact-title {
        font-size: 2.2rem;
    }

    .contact-text {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-details {
        text-align: left;
    }
}
