/* ====================================
   Main Stylesheet
   ==================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0B1E43;
    --secondary-color: #051129;
    --text-color: #070707;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --white: #ffffff;
    --black: #000000;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
}

h2 {
    font-weight: 700;
}

h1 { font-size: 48px; }
h2 { font-size: 40px; }
h3 { font-size: 28px; }
h4 { font-size: 24px; }
h5 { font-size: 20px; }
h6 { font-size: 18px; }

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Section Padding */
.section-padding {
    padding: 80px 0;
}

/* Background Colors */
.bg-light {
    background-color: var(--light-gray);
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(11, 30, 67, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-light {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.btn-light:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 18px;
}

/* Header Top */
.header-top {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info a {
    color: var(--white);
    margin-right: 20px;
}

.contact-info a:hover {
    opacity: 0.8;
}

.contact-info i {
    margin-right: 5px;
}

.social-links a {
    color: var(--white);
    margin-left: 15px;
    font-size: 16px;
    transition: var(--transition);
}

.social-links a:hover {
    opacity: 0.7;
    transform: translateY(-2px);
}

/* Main Navigation */
.main-nav {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-img {
    height: 60px;
    margin-right: 10px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
}

.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
}

.nav-list li {
    position: relative;
    margin: 0 15px;
}

.nav-link {
    color: var(--text-color);
    font-weight: 600;
    padding: 10px 0;
    display: flex;
    align-items: center;
    font-size: 15px;
}

.nav-link i {
    margin-left: 5px;
    font-size: 12px;
}

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

/* Dropdown Menu */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    border-top: 3px solid var(--primary-color);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-color);
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu a:hover {
    background-color: var(--light-gray);
    color: var(--primary-color);
    padding-left: 25px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 650px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-wrapper {
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(11,30,67,0.5) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    margin-top: 25%;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: var(--white);
}

@media screen and (max-width: 768px) {
    .slide-content {
        margin-top: 5%;
    }
}

.slide-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 56px;
    margin-top: 60px;
    margin-bottom: 20px;
    color: var(--white);
}

.slide-subtitle {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 400;
}

.slide-buttons {
    display: flex;
    gap: 15px;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 3;
    transform: translateY(50%);
}

.slider-btn {
    background-color: rgba(255,255,255,0.3);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    font-size: 20px;
}

.slider-btn:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

/* Slider Pagination */
.slider-pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
}

.pagination-dot.active {
    background-color: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

/* Section Header */
.section-header {
    margin-bottom: 50px;
}

.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-label.light {
    color: var(--white);
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title.light {
    color: var(--white);
}

.section-desc {
    font-size: 18px;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.section-desc.light {
    color: rgba(255,255,255,0.9);
}

.text-center {
    text-align: center;
}

/* Section Grid */
.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-content .section-text {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.section-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.section-image img {
    width: 100%;
    transition: var(--transition);
}

.section-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11,30,67,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.section-image:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: var(--white);
}

.overlay-content i {
    font-size: 60px;
    margin-bottom: 10px;
}

.overlay-content span {
    font-size: 18px;
    font-weight: 600;
}

/* Check List */
.check-list {
    margin: 30px 0;
}

.check-list li {
    padding: 10px 0;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.check-list i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 20px;
}

/* Mission & Vision Grid */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.mv-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--white);
}

.mv-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.mv-card p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.mv-card .btn {
    margin-top: 10px;
}

.mv-card .btn-outline {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.mv-card .btn-outline:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
}

/* VIP Grid */
.vip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.vip-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.vip-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.vip-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--white);
}

.vip-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.vip-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11,30,67,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-link {
    width: 60px;
    height: 60px;
    background-color: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: var(--transition);
}

.service-link:hover {
    transform: rotate(90deg);
}

.service-content {
    padding: 30px;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    margin-bottom: 20px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-content p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-btn {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.service-btn i {
    margin-left: 8px;
    transition: var(--transition);
}

.service-btn:hover i {
    margin-left: 15px;
}

/* LCA Grid */
.lca-grid {
    display: grid;
    gap: 30px;
}

.lca-item {
    display: flex;
    align-items: center;
    background-color: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.lca-number {
    font-size: 60px;
    font-weight: 700;
    color: rgba(255,255,255,0.2);
    margin-right: 30px;
    font-family: 'Playfair Display', serif;
}

.lca-content h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--white);
}

.lca-content p {
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.stat-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--gray);
    font-weight: 600;
}

/* Testimonials Slider */
.testimonials-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 0;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    scroll-snap-align: start;
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.quote-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--gray);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.author-info span {
    font-size: 14px;
    color: var(--gray);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.blog-date .day {
    font-size: 24px;
    line-height: 1;
}

.blog-date .month {
    font-size: 14px;
    text-transform: uppercase;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--gray);
}

.blog-meta span {
    display: flex;
    align-items: center;
}

.blog-meta i {
    margin-right: 5px;
}

.blog-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.blog-content h3 a {
    color: var(--text-color);
    transition: var(--transition);
}

.blog-content h3 a:hover {
    color: var(--primary-color);
}

.blog-content p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.read-more i {
    margin-left: 8px;
    transition: var(--transition);
}

.read-more:hover i {
    margin-left: 15px;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.newsletter-text h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--white);
}

.newsletter-text p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
}

.newsletter-form-inline {
    flex: 1;
    max-width: 500px;
    display: flex;
    gap: 10px;
}

.newsletter-form-inline input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

.newsletter-form-inline button {
    white-space: nowrap;
}

/* Footer */
.main-footer {
    background-color: #1a1a1a;
    color: var(--white);
}

.footer-top {
    padding: 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
    margin-right: 10px;
}

.footer-logo h3 {
    font-size: 24px;
    color: var(--white);
}

.footer-desc {
    margin-bottom: 25px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    color: rgba(255,255,255,0.7);
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 3px;
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 14px;
}

.newsletter-form button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-content p {
    color: rgba(255,255,255,0.7);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    font-size: 20px;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

/* Page Header */
.page-header {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(11,30,67,0.6) 100%);
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.page-header-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--white);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

.breadcrumb li {
    color: rgba(255,255,255,0.8);
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
}

.breadcrumb a {
    color: var(--white);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

/* ====================================
   Blog Single - Author Box
   ==================================== */
.author-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 60px 50px;
    margin-top: 70px;
    margin-bottom: 40px;
    box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.06), 0 4px 8px -2px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.author-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.author-box::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(11, 30, 67, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.author-box:hover {
    box-shadow: 0 20px 32px -8px rgba(0, 0, 0, 0.1), 0 8px 16px -4px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
    border-color: #d1d5db;
}

.author-info {
    position: relative;
    padding-left: 40px;
    z-index: 1;
}

.author-info h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
    opacity: 0.9;
}

.author-info h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.author-info p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray);
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    max-width: 700px;
}

/* Optional: Add author avatar circle placeholder */
.author-box .author-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    box-shadow: 0 8px 20px rgba(11, 30, 67, 0.25);
    transition: all 0.3s ease;
}

.author-box:hover .author-avatar {
    transform: scale(1.05);
    box-shadow: 0 12px 28px rgba(11, 30, 67, 0.35);
}

/* ====================================
   Program Cards & Gallery Styles
   ==================================== */

/* Program Card Styles */
.program-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.program-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.program-card:hover .program-image img {
    transform: scale(1.1);
}

.program-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.program-content .service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    margin-bottom: 20px;
}

.program-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.program-content p {
    color: var(--gray);
    line-height: 1.8;
    flex: 1;
}

/* Gallery Item Styles */
.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    background: var(--white);
    padding: 20px;
    text-align: center;
}

.gallery-caption p {
    margin: 0;
    color: var(--text-color);
    font-weight: 600;
    font-size: 15px;
}

/* Testimonial Card Styles */
.testimonial-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.testimonial-image {
    display: flex;
    justify-content: center;
    padding: 30px 30px 0;
}

.testimonial-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
}

.testimonial-content {
    padding: 20px 30px 30px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-content p {
    font-style: italic;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
    flex: 1;
}

.testimonial-content h4 {
    margin-bottom: 5px;
    color: var(--text-color);
}

.testimonial-content span {
    color: var(--gray);
    font-size: 14px;
}

/* Benefit Card Styles */
.benefit-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 28px;
}

.benefit-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.7;
}

.benefits-list li i {
    font-size: 20px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Statistics Section */
.stat-item {
    text-align: center;
    padding: 30px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 18px;
    color: var(--white);
    font-weight: 500;
}

/* Responsive Images */
.img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
}

.rounded {
    border-radius: 12px;
}

.shadow {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.shadow-lg {
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* Row and Column Utilities */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.row.align-items-center {
    align-items: center;
}

[class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
}

.col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

/* Spacing Utilities */
.mb-4 {
    margin-bottom: 30px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-5 {
    margin-top: 50px;
}

/* Team Section Styles */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    flex: 0 0 calc(33.333% - 20px);
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.team-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}

.team-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h4 {
    margin-bottom: 8px;
    color: var(--text-color);
    font-size: 20px;
}

.team-info span {
    color: var(--gray);
    font-size: 15px;
}

/* Founder Section Styles */
.founder-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
}

.founder-image {
    flex: 0 0 400px;
    position: relative;
}

.founder-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.founder-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(11, 30, 67, 0.3);
}

.founder-info {
    flex: 1;
}

.founder-info h3 {
    font-size: 32px;
    margin-bottom: 10px;
}

.founder-title {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 18px;
}

.founder-info p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.founder-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.founder-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.founder-social a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Values Grid Styles */
.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    flex: 0 0 calc(33.333% - 20px);
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 32px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.value-card p {
    color: var(--gray);
    line-height: 1.8;
    margin: 0;
}

/* Mission Vision Grid */
.mv-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.mv-card {
    flex: 0 0 calc(50% - 15px);
    background: var(--white);
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.mv-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--white);
    font-size: 40px;
}

.mv-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.mv-card p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Partners Logo Section */
.partners-section {
    background: var(--white);
}

.partners-logo-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 50px;
    margin-top: 40px;
}

.partner-logo-item {
    flex: 0 0 auto;
    max-width: 560px;
    padding: 30px 50px;
    background: #f8f9fa;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo-item:hover {
    background: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.partner-logo-item img {
    max-height: 160px;
    max-width: 500px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s ease;
    border-radius: 12px;
}

.partner-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .partners-logo-grid {
        flex-wrap: wrap;
        gap: 30px;
    }

    .partner-logo-item {
        max-width: 400px;
        padding: 24px 40px;
    }

    .partner-logo-item img {
        max-height: 120px;
        max-width: 360px;
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .col-md-3,
    .col-md-4,
    .col-md-6,
    .col-md-8 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .program-image,
    .gallery-item img {
        height: 300px;
    }

    .stat-number {
        font-size: 40px;
    }

    .team-card {
        flex: 0 0 calc(50% - 15px);
    }

    .value-card {
        flex: 0 0 calc(50% - 15px);
    }

    .founder-content {
        flex-direction: column;
        gap: 30px;
    }

    .founder-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .program-image,
    .gallery-item img {
        height: 250px;
    }

    .program-content,
    .gallery-caption {
        padding: 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 16px;
    }

    .team-card {
        flex: 0 0 100%;
    }

    .team-image {
        height: 280px;
    }

    .value-card {
        flex: 0 0 100%;
    }

    .mv-card {
        flex: 0 0 100%;
    }
}

@media (max-width: 576px) {
    .program-image,
    .gallery-item img {
        height: 220px;
    }

    .program-content h3 {
        font-size: 20px;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .stat-number {
        font-size: 32px;
    }

    .team-image {
        height: 250px;
    }

    .team-info h4 {
        font-size: 18px;
    }

    .founder-info h3 {
        font-size: 26px;
    }

    .founder-title {
        font-size: 16px;
    }

    .value-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .mv-icon {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }
}
