/********** Template CSS **********/
:root {
    --primary: #015FC9;
    --secondary: #0DD3F1;
    --light: #F6F7FC;
    --dark: #15233C;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover,
.btn.btn-secondary,
.btn.btn-outline-secondary:hover {
    color: #FFFFFF;
}

.btn.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-brand img {
        max-height: 45px;
    }
}


.navbar .navbar-nav .nav-link {
    margin-left: 25px;
    padding: 10px 0;
    color: #696E77;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-brand img {
        max-height: 45px;
    }

    .navbar .navbar-nav {
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .navbar .nav-item .dropdown-menu {
        padding-left: 30px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    text-align: start;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 15px solid var(--primary);
    border-radius: 50px;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-weight: 500;
}

.page-header .breadcrumb-item a,
.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #696E77;
}

.page-header .breadcrumb-item a:hover,
.page-header .breadcrumb-item.active {
    color: var(--primary);
}


/*** Service ***/
.service-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item .service-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item .service-icon img {
    max-width: 60px;
    max-height: 60px;
}

.service-item a.btn {
    color: var(--primary);
}

.service-item a.btn:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}


/*** Footer ***/
.footer {
    color: #A7A8B4;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #A7A8B4;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #A7A8B4;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: #A7A8B4;
    border: 1px solid#A7A8B4;
}

.footer .btn.btn-square:hover {
    color: var(--secondary);
    border-color: var(--light);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--secondary);
}

.footer .copyright a:hover {
    color: #FFFFFF;
}
.premium-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.premium-card h4 {
    margin-bottom: 15px;
    font-weight: 600;
}

.premium-card ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 20px;
}

.premium-card ul li {
    padding-left: 22px;
    margin-bottom: 8px;
    position: relative;
    font-size: 15px;
}

.premium-card ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #0d6efd;
    font-size: 13px;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: #0d6efd;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}

.vmo-card.premium {
    background: #ffffff;
    padding: 40px 28px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
}

.vmo-card.premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.18);
}

.vmo-icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.vmo-icon-box.vision {
    background: linear-gradient(135deg, #0d6efd, #084298);
}

.vmo-icon-box.mission {
    background: linear-gradient(135deg, #198754, #0f5132);
}

.vmo-icon-box.objective {
    background: linear-gradient(135deg, #fd7e14, #b45309);
}

.vmo-card h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

.vmo-divider {
    width: 50px;
    height: 3px;
    background: #0d6efd;
    margin: 12px auto 18px auto;
    border-radius: 5px;
}

.vmo-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.floating-cta {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Base Button */
.cta-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px 12px 12px;
    border-radius: 60px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}

/* Icon Circle */
.cta-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* Text */
.cta-text {
    font-size: 15px;
    white-space: nowrap;
}

/* WhatsApp */
.cta-btn.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    animation: pulseGreen 2.5s infinite;
}

.cta-btn.whatsapp:hover {
    transform: translateY(-4px);
}

/* Call */
.cta-btn.call {
    background: linear-gradient(135deg, #0d6efd, #084298);
    animation: pulseBlue 2.5s infinite;
}

.cta-btn.call:hover {
    transform: translateY(-4px);
}

/* Pulse Animations */
@keyframes pulseGreen {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
    70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

@keyframes pulseBlue {
    0% { box-shadow: 0 0 0 0 rgba(13,110,253,0.6); }
    70% { box-shadow: 0 0 0 18px rgba(13,110,253,0); }
    100% { box-shadow: 0 0 0 0 rgba(13,110,253,0); }
}

/* Mobile View */
@media (max-width: 576px) {
    .cta-text {
        display: none;
    }

    .cta-btn {
        width: 54px;
        height: 54px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }

    .cta-icon {
        width: 54px;
        height: 54px;
        font-size: 22px;
    }
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.partner-grid img {
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.85;
    transition: all 0.3s ease;
}

.partner-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* ===== PARTNERS SECTION ENHANCEMENT ===== */

/* Partner logo container (auto-detects existing images) */
.partner-grid img,
.partner-logos img,
.partner-section img {
    transition: all 0.4s ease;
    filter: grayscale(100%);
    opacity: 0.85;
    animation: partnerZoom 4s ease-in-out infinite;
}

/* Hover Effect */
.partner-grid img:hover,
.partner-logos img:hover,
.partner-section img:hover {
    transform: scale(1.15);
    filter: grayscale(0%);
    opacity: 1;
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.25);
    z-index: 2;
}

/* Smooth Zoom In – Zoom Out Animation */
@keyframes partnerZoom {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Add card-like feel to logos (without changing HTML) */
.partner-grid img,
.partner-logos img {
    background: #ffffff;
    padding: 15px;
    border-radius: 14px;
}

/* Slight staggered animation feel */
.partner-grid img:nth-child(odd),
.partner-logos img:nth-child(odd) {
    animation-delay: 1.2s;
}
.partner-grid img:nth-child(even),
.partner-logos img:nth-child(even) {
    animation-delay: 2.4s;
}

/* Improve spacing on mobile */
@media (max-width: 768px) {
    .partner-grid img,
    .partner-logos img {
        padding: 12px;
        animation: none; /* Disable auto zoom on mobile for smooth UX */
    }
}

/* ===== PARTNERS SECTION ===== */

.partners-section {
    background: linear-gradient(180deg, #f8f9fc, #ffffff);
}

/* Grid Layout */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    align-items: center;
    justify-items: center;
}

/* Partner Card */
.partner-card {
    width: 100%;
    max-width: 220px;
    height: 120px;
    background: #ffffff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    animation: partnerPulse 4s ease-in-out infinite;
}

/* Logo Styling */
.partner-card img {
    max-width: 80%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.85;
    transition: all 0.4s ease;
}

/* Hover Effects */
.partner-card:hover {
    transform: scale(1.08);
    box-shadow: 0 20px 50px rgba(13, 110, 253, 0.25);
}

.partner-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Zoom In – Zoom Out Animation */
@keyframes partnerPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.04);
    }
    100% {
        transform: scale(1);
    }
}

/* Staggered Animation */
.partner-card:nth-child(odd) {
    animation-delay: 1.5s;
}
.partner-card:nth-child(even) {
    animation-delay: 3s;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .partner-card {
        height: 100px;
        animation: none;
    }
}

/* ===== FOUNDER SECTION ===== */

.founder-section {
    background: linear-gradient(180deg, #ffffff, #f8f9fc);
}

/* Founder Image Box */
.founder-img-box {
    width: 280px;
    height: 280px;
    margin: auto;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border: 6px solid #ffffff;
    transition: all 0.4s ease;
}

.founder-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-img-box:hover {
    transform: scale(1.05);
}

/* Founder Info */
.founder-info h5 {
    font-weight: 600;
}

.founder-info span {
    color: #6c757d;
    font-size: 15px;
}

/* Social Icons */
.founder-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-right: 10px;
    border-radius: 50%;
    background: #0d6efd;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.founder-social a:hover {
    background: #084298;
    transform: translateY(-4px);
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .founder-img-box {
        width: 220px;
        height: 220px;
        margin-bottom: 20px;
    }
}
/* ===== NAVBAR LOGO FIX ===== */

.navbar-brand {
    padding: 0;
}

/* ===== FORCE BIG LOGO IN NAVBAR ===== */

/* Increase navbar height */
.navbar {
    min-height: 90px !important;
}

/* Remove Bootstrap constraints */
.navbar-brand {
    padding: 0 !important;
    margin: 0 !important;
}

/* Logo wrapper */
.brand-logo-wrap {
    display: flex !important;
    align-items: center;
    height: 90px;
}

/* Actual logo */
.brand-logo-wrap img {
    height: 70px !important;   /* BIG & VISIBLE */
    width: auto !important;
    max-height: none !important;
    transform: scale(1.15);   /* Optical boost */
}

/* Sticky state (slightly smaller) */
.sticky-top .brand-logo-wrap {
    height: 80px;
}

.sticky-top .brand-logo-wrap img {
    height: 60px !important;
}

/* Mobile fix */
@media (max-width: 768px) {
    .navbar {
        min-height: 75px !important;
    }

    .brand-logo-wrap {
        height: 75px;
    }

    .brand-logo-wrap img {
        height: 55px !important;
    }
}

/* ===== SERVICES PAGE STYLING ===== */

.services-page {
    background: linear-gradient(180deg, #f8f9fc, #ffffff);
}

.service-category {
    margin-bottom: 70px;
}

.service-title {
    font-weight: 600;
    margin-bottom: 10px;
}

.service-desc {
    color: #6c757d;
    max-width: 800px;
    margin-bottom: 30px;
}

/* Service Cards */
.service-card {
    background: #ffffff;
    padding: 28px 22px;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.service-card i {
    font-size: 34px;
    color: #0d6efd;
    margin-bottom: 15px;
}

.service-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: #6c757d;
}

/* Hover */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(13,110,253,0.25);
}

/* Highlight Card */
.service-card.highlight {
    border: 2px solid #0d6efd;
}

/* Mobile */
@media (max-width: 768px) {
    .service-title {
        font-size: 22px;
    }
}

/* ===== OUR PARTNERS SECTION ===== */

.partners-section {
    background: linear-gradient(180deg, #f8f9fc, #ffffff);
}

/* Grid layout */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    align-items: center;
}

/* Logo Card */
.partner-logo {
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    animation: zoomPulse 4s ease-in-out infinite;
}

/* Logo Image */
.partner-logo img {
    max-width: 140px;
    max-height: 70px;
    object-fit: contain;
    filter: none; /* REAL COLORS */
    transition: all 0.4s ease;
}

/* Hover Effect */
.partner-logo:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 25px 60px rgba(13,110,253,0.25);
}

.partner-logo:hover img {
    filter: grayscale(0%);
    transform: scale(1.15);
}

/* Auto Zoom In – Zoom Out */
@keyframes zoomPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Stagger animation for natural feel */
.partner-logo:nth-child(odd) {
    animation-delay: 1.5s;
}
.partner-logo:nth-child(even) {
    animation-delay: 3s;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .partner-logo {
        padding: 20px;
        animation: none;
    }

    .partner-logo img {
        max-width: 120px;
    }
}

/* ===== FORCE REAL COLOR PARTNER LOGOS (GLOBAL FIX) ===== */

.partner-grid img,
.partner-card img,
.partner-logo img,
.partners-grid img,
.partners-section img {
    filter: none !important;
    -webkit-filter: none !important;
    opacity: 1 !important;
}

/* Hover enhancement (no grayscale) */
.partner-grid img:hover,
.partner-card img:hover,
.partner-logo img:hover {
    transform: scale(1.12);
    box-shadow: 0 20px 50px rgba(13,110,253,0.25);
}

/* ===== ABOUT PRIME POLICY ===== */

.about-prime {
    background: linear-gradient(180deg, #f8f9fc, #ffffff);
}

.about-image img,
.founder-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.about-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    font-weight: 600;
    color: #0d3b66;
}

/* Vision Mission Objective */
.vmo-card {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: 0.4s;
}

.vmo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(13,59,102,0.25);
}

.vmo-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #0d3b66, #1db954);
    color: #fff;
    border-radius: 50%;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

/* Founder */
.founder-section {
    background: #fff;
    padding: 40px;
    border-radius: 22px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.08);
}

/* Why Choose Us */
.why-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: 0.4s;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(13,59,102,0.25);
}

.why-card i {
    font-size: 34px;
    color: #0d3b66;
    margin-bottom: 15px;
}


/* ===== PREMIUM OFFER POPUP ===== */

.offer-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
.offer-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55); /* clean dark overlay */
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
}

.offer-popup.show {
    display: flex;
}
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
}

.offer-popup.show {
    display: flex;
    animation: fadeIn 0.5s ease;
}

/* Card */
.offer-card {
    background: linear-gradient(135deg, #ffffff, #f6f9ff);
    width: 92%;
    max-width: 520px;
    padding: 35px 30px;
    border-radius: 22px;
    position: relative;
    box-shadow: 0 40px 100px rgba(0,0,0,0.35);
    animation: zoomIn 0.6s ease;
}

/* Close */
.offer-close {
    position: absolute;
    top: 18px;
    right: 18px;
    border: none;
    background: #eef2ff;
    color: #333;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
}

/* Header */
.offer-header {
    text-align: center;
}

.offer-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff9800, #ff5722);
    color: #fff;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.offer-header h2 {
    font-size: 26px;
    font-weight: 700;
    color: #0d3b66;
    margin-bottom: 8px;
}

.offer-header p {
    font-size: 15px;
    color: #555;
}

/* Features */
.offer-features {
    margin: 25px 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.offer-features div {
    font-size: 15px;
    color: #333;
}

.offer-features i {
    color: #1db954;
    margin-right: 8px;
}

/* CTA */
.offer-actions {
    text-align: center;
}

.offer-actions .btn {
    padding: 12px 30px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 10px 25px rgba(13,59,102,0.3);
}

/* Animations */
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Mobile */
@media (max-width: 576px) {
    .offer-header h2 {
        font-size: 22px;
    }
}

/* ===== ABOUT HERO IMAGE SECTION ===== */
.about-hero-image {
    background: #f8fafc;
}

.about-hero-img {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.about-hero-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-hero-img:hover img {
    transform: scale(1.05);
}

/* ===== PAGE HERO IMAGE ===== */
.page-hero-image {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.page-hero-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

/* Tablet */
@media (max-width: 991px) {
    .page-hero-image img {
        height: 320px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .page-hero-image img {
        height: 240px;
    }
}

/* ===== FOUNDER SECTION ===== */
.founder-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #f8fbff, #ffffff);
}

.founder-badge {
    display: inline-block;
    background: #0d6efd;
    color: #fff;
    padding: 6px 16px;
    font-size: 14px;
    border-radius: 30px;
    margin-bottom: 15px;
}

.founder-title {
    font-size: 36px;
    font-weight: 700;
    color: #0b1c39;
    margin-bottom: 20px;
}

.founder-title span {
    color: #0d6efd;
}

.founder-text {
    font-size: 16.5px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.founder-name-box {
    margin-top: 25px;
    padding-left: 18px;
    border-left: 4px solid #0d6efd;
}

.founder-name-box h4 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #0b1c39;
}

.founder-name-box span {
    font-size: 15px;
    color: #666;
}

/* Image Styling */
.founder-image-wrap {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(13, 110, 253, 0.15);
}

.founder-image-wrap img {
    width: 100%;
    border-radius: 22px;
    transition: transform 0.4s ease;
}

.founder-image-wrap:hover img {
    transform: scale(1.04);
}

/* Responsive */
@media (max-width: 991px) {
    .founder-title {
        font-size: 28px;
    }
}

/* ==============================
   LOGO FORCE VISUAL FIX (CSS ONLY)
============================== */

/* Increase navbar height */
.navbar {
    min-height: 100px !important;
}

/* Logo wrapper */
.brand-logo-wrap {
    display: flex !important;
    align-items: center;
    height: 100px;
    overflow: visible;
}

/* Force logo to look bigger despite white space */
.brand-logo,
.navbar-brand img {
    height: 70px !important;
    width: auto !important;

    /* 🔥 FORCE SCALE */
    transform: scale(1.8);
    transform-origin: left center;

    /* 🔥 REMOVE OPTICAL WHITESPACE */
    margin-top: -8px;
    margin-bottom: -8px;

    max-height: none !important;
}

/* Sticky navbar adjustment */
.sticky-top .brand-logo,
.sticky-top .navbar-brand img {
    transform: scale(1.5);
}

/* Mobile */
@media (max-width: 768px) {
    .navbar {
        min-height: 80px !important;
    }

    .brand-logo,
    .navbar-brand img {
        height: 55px !important;
        transform: scale(1.4);
    }
}

/* CONTACT PAGE FIX */
.contact-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.contact-card h2 {
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-card .form-control {
    height: 52px;
    border-radius: 10px;
}

.contact-card textarea.form-control {
    height: auto;
}

.map-card {
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
}

/* Mobile fix */
@media (max-width: 768px) {
    .map-card iframe {
        min-height: 300px;
    }
}


