/* Modern UI Variables */
:root {
    --primary: #d4af37;
    /* Elegant Gold */
    --primary-dark: #b5952f;
    --primary-light: #fdfaf0;
    --text-main: #111827;
    /* Nearly Black */
    --text-muted: #6b7280;
    /* Cool Gray */
    --bg-main: #ffffff;
    --bg-gray: #f9fafb;
    --bg-dark: #0f172a;
    /* Deep Slate Blue/Black */

    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;

    --font-main: 'Plus Jakarta Sans', sans-serif;

    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

/* Base Styles */
body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
.brand-text {
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Utilities */
.text-gold {
    color: var(--primary) !important;
}

.bg-light-gold {
    background-color: var(--primary-light);
}

.bg-light-gray {
    background-color: var(--bg-gray);
}

.bg-dark-modern {
    background-color: var(--bg-dark);
}

.py-section {
    padding: 120px 0;
}

.shadow-modern {
    box-shadow: var(--shadow-soft);
    border-radius: var(--radius-lg);
}

.tracking-wide {
    letter-spacing: 2px;
}

/* Clean Navbar */
.navbar {
    padding: 20px 0;
    transition: 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled .nav-link,
.navbar.scrolled .brand-text,
.navbar.scrolled .fa-bars {
    color: var(--text-main) !important;
}

.navbar.scrolled .brand-icon {
    background: var(--primary);
    color: white;
}

.brand-text {
    color: white;
    font-size: 1.25rem;
    font-weight: 800;
    transition: 0.3s;
}

.brand-icon {
    width: 35px;
    height: 35px;
    background: white;
    color: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: 0.3s;
}

.nav-link {
    color: white !important;
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0 15px;
    transition: 0.3s;
}

.nav-link:hover {
    color: var(--primary) !important;
}

/* Modern Buttons */
.btn-primary-modern {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 12px 28px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    text-decoration: none;
    display: inline-block;
}

.btn-primary-modern:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 28px;
    font-weight: 700;
    border-radius: 50px;
    transition: 0.3s;
    text-decoration: none;
}

.btn-glass:hover {
    background: white;
    color: var(--text-main);
}

.link-modern {
    color: var(--primary);
    text-decoration: none;
    font-size: 1.1rem;
    transition: 0.3s;
}

.link-modern:hover {
    color: var(--primary-dark);
    padding-left: 5px;
}

/* Hero Video Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.4));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
}

.modern-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    opacity: 0.9;
    max-width: 600px;
}

/* Floating Stats Box */
.stats-section {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.stats-wrapper {
    background: white;
    padding: 40px;
}

.stat-item {
    border-right: 1px solid #e5e7eb;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Bento Grid Services */
.section-title {
    font-size: 2.8rem;
}

.bento-card {
    position: relative;
    height: 350px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: 0.4s;
    box-shadow: var(--shadow-soft);
}

.bento-large {
    height: 100%;
    min-height: 350px;
}

.bento-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.bento-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 60%);
    transition: 0.4s;
}

.bento-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    color: white;
    transform: translateY(20px);
    transition: 0.4s;
}

.bento-icon {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.bento-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.bento-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    opacity: 0;
    transition: 0.4s;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.bento-card:hover .bento-bg {
    transform: scale(1.08);
}

.bento-card:hover .bento-content {
    transform: translateY(0);
}

.bento-card:hover p {
    opacity: 1;
}

/* Feature Cards (Why Us) */
.impact-card {
    background: white;
    border-left: 4px solid var(--primary);
}

.feature-card {
    background: white;
    border: 1px solid #f3f4f6;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Leadership */
.director-img {
    width: 150px;
    height: 150px;
    border-radius: var(--radius-md);
    object-fit: cover;
}

/* Conversion Form Area */
.conversion-wrapper {
    overflow: hidden;
}

.form-modern {
    background: var(--bg-gray);
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
    transition: 0.3s;
}

.form-modern:focus {
    background: white;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
    outline: none;
}

.form-label {
    margin-bottom: 8px;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        padding-bottom: 20px;
    }

    .stat-item:last-child {
        border: none;
        padding-bottom: 0;
    }

    .bento-card {
        height: 300px;
    }

    .bento-content {
        transform: translateY(0);
    }

    .bento-card p {
        opacity: 1;
    }

    .navbar-collapse {
        background: white;
        padding: 20px;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-soft);
        margin-top: 15px;
    }

    .navbar-collapse .nav-link {
        color: var(--text-main) !important;
    }
}

/* --- Additions specifically for about-us.html --- */

.about-hero {
    background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-gray) 100%);
}

.bento-card-clean {
    border-radius: var(--radius-lg);
    transition: all 0.4s ease;
}

.bento-card-clean:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.object-fit-cover {
    object-fit: cover;
}

/* Ensure the navbar links stay dark on the secondary pages */
.navbar .nav-link.text-dark {
    color: var(--text-main) !important;
}

.navbar .nav-link.text-primary {
    color: var(--primary) !important;
}

.bg-opacity-10 {
    --bs-bg-opacity: 0.1;
}

.bg-opacity-25 {
    --bs-bg-opacity: 0.25;
}

/* Hover Gold Utility */
.hover-gold:hover {
    color: var(--primary) !important;
    transition: 0.3s ease;
}

.page-hero {
    background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-gray) 100%);
}

/* If not already in your style.css, ensure these are present */
.rounded-custom {
    border-radius: var(--radius-lg);
    /* Usually 24px */
}

/* For image positioning */
.relative {
    position: relative;
}

/* Gold background utility */
.bg-gold {
    background-color: var(--primary) !important;
}
.from-text{
	font-size:23px;
	font-weight:700;
}
@media (max-width: 450px) {
    .hero-title {
        font-size: 2rem;
    }
	
.hero-subtitle {
    font-size: 1rem;
}
	.btn-primary-modern{
		padding:13px;
		font-weight:500;
	}
	.btn-glass {
		padding:13px;
		font-weight:500;
	}
	.stat-number{
		font-size: 2rem;
	}
	.stat-label {
		font-size: 0.7rem;
	}
	.py-section{
		padding:55px 0px;
	}
.section-title {
    font-size: 2.0rem;
}
.from-text{
	font-size:15px;
	font-weight:500;
}
}

/* =========================================
   1. DESKTOP VIEW (Laptops & Big Screens)
========================================= */
@media (min-width: 992px) {
    /* Home Page Top */
    .is-homepage #mainNav {
        background-color: transparent !important;
        transition: all 0.3s ease-in-out;
    }
    .is-homepage #mainNav .nav-link,
    .is-homepage #mainNav .brand-text { color: #ffffff !important; }
    .is-homepage #mainNav .brand-icon .fas { color: #d4af37 !important; }

    /* Home Page Scrolled */
    .is-homepage #mainNav.scrolled {
        background: rgba(255, 255, 255, 0.85) !important; 
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }
    .is-homepage #mainNav.scrolled .nav-link,
    .is-homepage #mainNav.scrolled .brand-text,
    .is-homepage #mainNav.scrolled .brand-icon .fas { color: #000000 !important; }

    /* Inner Pages (Always Blur) */
    .is-inner-page #mainNav {
        background: rgba(255, 255, 255, 0.85) !important; 
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }
    .is-inner-page #mainNav .nav-link,
    .is-inner-page #mainNav .brand-text,
    .is-inner-page #mainNav .brand-icon .fas {
        color: #000000 !important; 
        font-weight: 600;
    }

    /* Hover */
    .is-inner-page #mainNav .nav-link:hover,
    .is-homepage #mainNav.scrolled .nav-link:hover { color: #d4af37 !important; }
}


.is-homepage #mainNav .navbar-toggler .fas { color: #ffffff !important; }
.is-homepage #mainNav.scrolled .navbar-toggler .fas,
.is-inner-page #mainNav .navbar-toggler .fas { color: #000000 !important; }

@media (max-width: 991px) {

    .offcanvas.offcanvas-end {
        background-color: #ffffff !important;
        width: 300px !important; 
        height: 100vh !important; /* Force Full Screen Height */
        border-left: none !important;
        box-shadow: -5px 0 25px rgba(0,0,0,0.15) !important;
        visibility: visible;
    }
    
    .offcanvas-body .nav-link {
        color: #000000 !important; 
        font-weight: 600;
        font-size: 1.1rem;
        padding: 12px 15px !important;
        border-bottom: 1px solid #eeeeee;
        display: block;
         
    }

    .offcanvas-body .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    .offcanvas-body .nav-link:hover {
        color: #d4af37 !important;
        background-color: #f8f9fa;
        padding-left: 20px !important;
        transition: 0.3s;
    }
}







