﻿/*GOOGLE FONT*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins',sans-serif;
    overflow-x: hidden;
    color: #333;
    background: #fff;
}

a {
    text-decoration: none;
}

a:hover{
    text-decoration:none;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/*TOP BAR*/

.topbar {
    background: #0B4F9C;
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
    transition: .4s;
    z-index: 1050;
}

.top-contact {
    display: flex;
    gap: 30px;
    align-items: center;
}

.top-contact a {
    color: #fff;
    transition: .3s;
}

.top-contact a:hover {
    color: #FFD54F;
}

.top-contact i {
    margin-right: 8px;
}

.social-icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.12);
    color: #fff;
    transition: .35s;
}

.social-icons a:hover {
    background: #FFD54F;
    color: #0B4F9C;
    transform: translateY(-3px);
}

/*NAVBAR*/

.custom-navbar {
    background: #fff;
    padding: 18px 0;
    transition: .35s;
    z-index: 999;
}

.custom-navbar.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 12px 0;
    box-shadow: 0 8px 30px rgba(0,0,0,.10);
    animation: slideDown .4s ease;
}

@keyframes slideDown {

    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.logo {
    height: 75px;
    transition: .3s;
}

.custom-navbar.fixed .logo {
    height: 60px;
}

.navbar-brand {
    margin-right: 70px;
}

.navbar-nav {
    align-items: center;
}

.nav-item {
    position: relative;
    margin: 0 8px;
}

.nav-link {
    color: #222 !important;
    font-size: 16px;
    font-weight: 600;
    padding: 25px 12px !important;
    transition: .3s;
    position: relative;
    display: inline-block;
}

.nav-link:hover {
    color: #0B4F9C !important;
}

.nav-link.active {
    color: #0B4F9C !important;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 12px;
    width: 0;
    height: 3px;
    background: #0B4F9C;
    transition: .35s;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

/*DROPDOWN*/

.dropdown-menu {
    border: none;
    border-radius: 10px;
    min-width: 250px;
    margin-top: 0;
    padding: 12px 0;
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
    opacity: 0;
    visibility: hidden;
    display: block;
    transform: translateY(20px);
    transition: .35s;
}

.dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 12px 22px;
    font-weight: 500;
    transition: .3s;
}

.dropdown-item:hover {
    background: #0B4F9C;
    color: #fff;
    padding-left: 30px;
}

.dropdown-toggle::after {
    display: none !important;
}

/*TOGGLER*/

.navbar-toggler {
    border: none;
    box-shadow: none !important;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/*SCROLL SHADOW*/

.custom-navbar.fixed {
    background: #fff;
}

/*RESPONSIVE*/

@media(max-width:991px) {

    .topbar {
        display: none;
    }

    .custom-navbar {
        padding: 12px 0;
    }

    .logo {
        height: 60px;
    }

    .navbar-brand {
        margin-right: 0;
    }

    .navbar-collapse {
        background: #fff;
        margin-top: 20px;
        border-radius: 10px;
        padding: 15px;
        box-shadow: 0 10px 25px rgba(0,0,0,.10);
    }

    .nav-item {
        margin: 0;
    }

    .nav-link {
        padding: 14px !important;
    }

    .nav-link::after {
        display: none;
    }

    .dropdown-menu {
        display: none;
        opacity: 1;
        visibility: visible;
        position: relative;
        transform: none;
        box-shadow: none;
        padding-left: 15px;
    }

    .dropdown-menu.show {
        display: block;
    }

    .social-icons {
        justify-content: center;
        margin-top: 10px;
    }

    .top-contact {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media(max-width:767px) {

    .logo {
        height: 50px;
    }

    .nav-link {
        font-size: 15px;
    }
}

@media(max-width:576px) {

    .logo {
        height: 45px;
    }

    .social-icons {
        gap: 10px;
    }

    .social-icons a {
        width: 32px;
        height: 32px;
    }
}

/*PAGE TITLE BAR*/
.page-title-bar {
    position: relative;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    padding: 90px 0 60px;
    overflow: hidden;
    text-align: center;
}

.page-title-bar .breadcrumb {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
    list-style: none;
}

/* Grid Pattern Background */
.page-title-bar .grid-pattern {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 40px 40px;
    -webkit-mask-image: radial-gradient(circle at center, rgba(0,0,0,.9) 0%, transparent 80%);
    mask-image: radial-gradient(circle at center, rgba(0,0,0,.9) 0%, transparent 80%);
}

.page-title-bar .container {
    position: relative;
    z-index: 2;
}

.page-title-bar h1 {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: .5px;
}

.page-title-bar .breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.page-title-bar .breadcrumb li {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,.85);
    display: flex;
    align-items: center;
    gap: 10px;
}

.page-title-bar .breadcrumb li a {
    color: rgba(255,255,255,.85);
    transition: .3s;
}

.page-title-bar .breadcrumb li a:hover {
    color: #FFD54F;
}

.page-title-bar .breadcrumb li i {
    font-size: 11px;
    color: rgba(255,255,255,.6);
}

.page-title-bar .breadcrumb li.active {
    color: #FFD54F;
    font-weight: 600;
}

/*COLOR VARIATIONS (Page-wise)*/
.page-title-bar.bg-blue {
    background: linear-gradient(135deg, #0B4F9C, #063a75);
}

.page-title-bar.bg-orange {
    background: linear-gradient(135deg, #E67E22, #C0620F);
}

.page-title-bar.bg-green {
    background: linear-gradient(135deg, #1E8449, #145A32);
}

.page-title-bar.bg-purple {
    background: linear-gradient(135deg, #6C3483, #4A235A);
}

.page-title-bar.bg-teal {
    background: linear-gradient(135deg, #117A65, #0B4F44);
}

.page-title-bar.bg-red {
    background: linear-gradient(135deg, #B03A2E, #7B241C);
}

/*RESPONSIVE*/
@media(max-width:767px) {
    .page-title-bar {
        padding: 70px 0 40px;
    }

    .page-title-bar h1 {
        font-size: 28px;
    }

    .page-title-bar .breadcrumb li {
        font-size: 13px;
    }
}


/*FOUNDER SPOTLIGHT SECTION*/
.founder-spotlight {
    padding: 60px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.founder-spotlight-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
}

.founder-spotlight-card {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 70px;
    position: relative;
}

.founder-spotlight-card:last-child {
    margin-bottom: 0;
}

/* Alternate layout for even cards (image right) */
.founder-spotlight-card:nth-child(even) {
    grid-template-columns: 1fr 400px;
}

.founder-spotlight-card:nth-child(even) .founder-spot-media {
    order: 2;
}

.founder-spotlight-card:nth-child(even) .founder-spot-content {
    order: 1;
}

/* IMAGE SIDE - Organic blob background */
.founder-spot-media {
    position: relative;
    display: flex;
    justify-content: center;
}

.founder-spot-blob {
    position: absolute;
    width: 340px;
    height: 380px;
    background: linear-gradient(135deg, #0B4F9C, #063a75);
    border-radius: 42% 58% 65% 35% / 45% 40% 60% 55%;
    top: 10px;
    z-index: 0;
    transition: .5s cubic-bezier(.2,1,.3,1);
}

.founder-spotlight-card:hover .founder-spot-blob {
    border-radius: 58% 42% 35% 65% / 55% 60% 40% 45%;
}

.founder-spot-photo-wrap {
    position: relative;
    z-index: 2;
    width: 300px;
}

.founder-spot-photo-wrap img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(11,79,156,.25);
    border: 6px solid #fff;
}

/* Floating credential badge */
.founder-spot-badge {
    position: absolute;
    z-index: 3;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 12px 26px;
    border-radius: 40px;
    box-shadow: 0 15px 30px rgba(0,0,0,.15);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.founder-spot-badge i {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #FFD54F, #F5B700);
    color: #0B4F9C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.founder-spot-badge span {
    font-size: 13px;
    font-weight: 700;
    color: #0B4F9C;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* CONTENT SIDE */
.founder-spot-content {
    position: relative;
}

.founder-spot-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(230,126,34,.1);
    color: #E67E22;
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 7px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.founder-spot-name {
    font-size: 36px;
    font-weight: 800;
    color: #16213e;
    margin-bottom: 6px;
    line-height: 1.2;
}

.founder-spot-role {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #0B4F9C, #063a75);
    padding: 6px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
}

/* Message with big opening quote mark (top-left) */
.founder-spot-message {
    position: relative;
    padding-left: 35px;
    border-left: 3px solid #FFD54F;
}

.founder-spot-message i.fa-quote-left {
    position: absolute;
    left: -3px;
    top: -8px;
    font-size: 26px;
    color: #FFD54F;
    background: #fff;
    padding-right: 8px;
}

.founder-spot-message p {
    font-size: 15.5px;
    line-height: 1.95;
    color: #555;
    margin-bottom: 16px;
    text-align: justify;
}

.founder-spot-message p:last-child {
    margin-bottom: 0;
}

/* Signature line */
.founder-spot-signature {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.founder-spot-signature .sign-line {
    width: 55px;
    height: 3px;
    background: linear-gradient(90deg, #E67E22, #FFD54F);
    border-radius: 3px;
}

.founder-spot-signature span {
    font-size: 13.5px;
    font-weight: 600;
    color: #0B4F9C;
    font-style: italic;
}

/* RESPONSIVE */
@media(max-width:991px) {
    .founder-spotlight-card,
    .founder-spotlight-card:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 55px;
        text-align: center;
    }

    .founder-spotlight-card:nth-child(even) .founder-spot-media,
    .founder-spotlight-card:nth-child(even) .founder-spot-content {
        order: unset;
    }

    .founder-spot-message {
        text-align: left;
    }

    .founder-spot-role {
        margin-left: auto;
        margin-right: auto;
    }
}

@media(max-width:576px) {
    .founder-spot-name {
        font-size: 28px;
    }

    .founder-spot-blob {
        width: 260px;
        height: 300px;
    }

    .founder-spot-photo-wrap {
        width: 230px;
    }

    .founder-spot-photo-wrap img {
        height: 280px;
    }

    .founder-spotlight-card {
        margin-bottom: 90px;
    }
}

/*FACILITY SHOWCASE SECTION*/
.facility-showcase {
    padding: 60px 0;
    position: relative;
}

.facility-showcase-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.facility-showcase-heading {
    text-align: center;
    margin-bottom: 55px;
}

.facility-showcase-heading span.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(11,79,156,.08);
    color: #0B4F9C;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 7px 20px;
    border-radius: 30px;
    margin-bottom: 16px;
}

.facility-showcase-heading h2 {
    font-size: 34px;
    font-weight: 800;
    color: #16213e;
}

.facility-showcase-heading h2 span {
    color: #E67E22;
}

.facility-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* CARD */
.facility-showcase-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 320px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.facility-showcase-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.16,1,.3,1);
}

.facility-showcase-card:hover .facility-showcase-img {
    transform: scale(1.12);
}

/* Dark gradient always visible at bottom (so title is readable) */
.facility-showcase-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6,20,40,.9) 0%, rgba(6,20,40,.15) 45%, transparent 65%);
    z-index: 1;
}

/* Number badge top-left corner */
.facility-showcase-number {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    transition: .4s;
}

.facility-showcase-card:hover .facility-showcase-number {
    background: #FFD54F;
    color: #0B4F9C;
    border-color: #FFD54F;
}

/* Bottom info panel: title always visible, description slides up on hover */
.facility-showcase-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 22px 20px;
}

.facility-showcase-title {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .3px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.facility-showcase-title .view-link {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    text-decoration: none !important;
    transition: .35s;
}

.facility-showcase-card:hover .view-link {
    background: #FFD54F;
    color: #0B4F9C !important;
    transform: rotate(45deg);
}

/* Accent underline that grows on hover */
.facility-showcase-title::before {
    content: "";
}

.facility-showcase-card .underline-grow {
    display: block;
    width: 30px;
    height: 3px;
    background: #E67E22;
    border-radius: 3px;
    margin-top: 10px;
    transition: width .45s cubic-bezier(.16,1,.3,1);
}

.facility-showcase-card:hover .underline-grow {
    width: 100%;
}

/* RESPONSIVE */
@media(max-width:1200px) {
    .facility-showcase-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:768px) {
    .facility-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .facility-showcase-heading h2 {
        font-size: 26px;
    }
}

@media(max-width:480px) {
    .facility-showcase-grid {
        grid-template-columns: 1fr;
    }

    .facility-showcase-card {
        height: 260px;
    }
}




