/* ===== CSS RESET & VARIABLES ===== */
:root {
    /* Brand palette (Nepal-inspired) */
    --primary: #c8102e; /* crimson red */
    --primary-dark: #8c0c1f;
    --primary-light: #e63950;
    --secondary: #1f4ea8; /* flag blue */
    --secondary-dark: #163a7a;
    --accent: #2f6ed8;

    /* Neutral UI colors */
    --page-bg: #f8f9fc; /* neutral with a cool tint */
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --info: #17a2b8;
    
    /* Effects */
    --shadow: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--page-bg);
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

#preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--light-gray);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* ===== NAVBAR ===== */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-lg);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 8px;
    transition: var(--transition);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-sub {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--gray);
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.2rem;
    border-radius: var(--border-radius);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary) !important;
    background: rgba(26, 93, 26, 0.1);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    transform: translateX(-50%);
}






.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

/* Remove Bootstrap caret/dash after dropdown toggles */
.navbar-nav .dropdown-toggle::after {
    display: none !important;
}

/* Remove default dotted focus ring on nav links/toggler */
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:active,
.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

/* Show dropdowns on hover for desktop */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    .navbar .dropdown-menu {
        margin-top: 0;
    }
}

.btn-contact {
    background: #ffffff;
    color: rgb(18, 11, 11) !important;
    border-radius: 50px;
    padding: 0.5rem 1.5rem !important;
}

.btn-contact:hover {
    
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: rgba(26, 93, 26, 0.1);
    padding-left: 2rem;
}

/* ===== HERO SECTION ===== */
#hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    margin-top: 76px;
}

.heroSwiper {
    height: 100%;
}

.swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.slide-1 {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../assets/images/photo1.jpg');
}

.slide-2 {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../assets/images/photo2.jpg');
}

.slide-3 {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../assets/images/photo3.jpg');
}

.hero-content {
    color: white;
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: slideUp 1s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons .btn {
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.swiper-button-next,
.swiper-button-prev {
    color: white;
    background: rgba(255,255,255,0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.5rem;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary);
}

/* ===== LEADERSHIP INSIGHTS ===== */
.leaderSwiper {
    padding: 1rem 0;
}
.leaderSwiper .leader-next,
.leaderSwiper .leader-prev {
    color: var(--primary);
    background: rgba(26,93,26,0.12);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    box-shadow: var(--shadow);
}
.leaderSwiper .leader-next:after,
.leaderSwiper .leader-prev:after {
    font-size: 1.25rem;
}
.leaderSwiper .swiper-pagination-bullet {
    background: var(--primary);
    opacity: 0.35;
}
.leaderSwiper .swiper-pagination-bullet-active {
    opacity: 1;
}
.leaderSwiper .swiper-slide {
    display: flex;
    align-items: stretch;
}
.insight-card {
    min-height: 200px;
    height: auto;
}
.insight-card .insight-text {
    overflow: visible;
    white-space: normal;
    word-break: break-word;
}
.insight-social {
    margin-top: 0.5rem;
    display: flex;
    gap: 0.5rem;
}
.insight-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(26,93,26,0.08);
    color: var(--primary);
    transition: var(--transition);
}
.insight-social-link:hover {
    background: rgba(26,93,26,0.16);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

/* ===== Clients Logos Carousel ===== */
.clients-section {
    background: linear-gradient(180deg, rgba(250,250,250,0.6), rgba(245,247,250,0.6));
}
.clients-section .clients-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}
.client-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 80px;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    padding: 10px;
}
.clients-logo {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(0.03);
}

/* Make carousel area taller on desktop so logos sit centered */
.clients-section .swiper {
    padding: 10px 0 20px;
}



/* ===== STATS SECTION ===== */
.stats-section {
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/images/pattern.png');
    opacity: 0.05;
    pointer-events: none;
}

.stat-card {
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0.5rem 0;
}

.stat-label {
    color: var(--gray);
    font-weight: 500;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: white;
}

.section-header {
    margin-bottom: 3rem;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    padding: 0.25rem 1rem;
    background: rgba(26, 93, 26, 0.1);
    border-radius: 50px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-description {
    color: var(--gray);
    font-size: 1.1rem;
}

.about-features {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(26, 93, 26, 0.05);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(26, 93, 26, 0.1);
    transform: translateX(10px);
}

.feature-item i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-right: 1rem;
}

.about-image-container {
    position: relative;
    padding: 20px;
}

.about-image-container .main-img {
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 2;
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.experience-card {
    top: -20px;
    left: -20px;
    border-top: 5px solid var(--primary);
}

.project-card {
    bottom: -20px;
    right: -20px;
    border-top: 5px solid var(--accent);
}

.floating-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.floating-card h4 {
    font-size: 2rem;
    margin: 0;
    color: var(--primary-dark);
}

.floating-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray);
}

/* ===== MISSION & VISION ===== */
.mission-vision {
    background:  linear-gradient(135deg, #1c0c93 0%, #484343 100%);
    color: white;
}

.mv-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-xl);
    padding: 3rem;
    height: 100%;
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.15);
}

.mv-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.mv-card h3 {
    margin-bottom: 1.5rem;
    color: white;
}

.mv-points p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.mv-points i {
    margin-right: 10px;
    color: #4cd964;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: var(--light);
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    height: 100%;
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.service-card:hover::before {
    width: 100%;
    opacity: 0.1;
}

.service-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h4 {
    margin-bottom: 1rem;
    color: var(--dark);
}

.service-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.service-card ul li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.service-card ul li i {
    color: var(--primary);
    margin-right: 10px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

/* ===== ORGANIZATIONAL STRUCTURE ===== */
.org-structure {
    background: white;
}

.org-chart {
    position: relative;
}

.org-level {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.org-node {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.org-node:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.org-node i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.board {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    max-width: 300px;
}

.board i {
    color: white;
}

.director {
    background: linear-gradient(135deg, var(--accent), #0d47a1);
    color: white;
    max-width: 250px;
}

.director i {
    color: white;
}

.division {
    background: white;
    height: 100%;
}

.org-arrow {
    text-align: center;
    margin: 1rem 0;
    color: var(--primary);
}

/* ===== PROJECTS SECTION ===== */
.projects-section {
    background: var(--light);
}

.project-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.project-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.project-badge.ongoing {
    background: var(--warning);
    color: var(--dark);
}

.project-badge.completed {
    background: var(--success);
    color: white;
}

.project-image {
    height: 200px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-content {
    padding: 1.5rem;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
    font-size: 0.9rem;
    color: var(--gray);
}

.project-meta span {
    display: flex;
    align-items: center;
}

.project-meta i {
    margin-right: 5px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tag {
    padding: 0.25rem 0.75rem;
    background: rgba(26, 93, 26, 0.1);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--primary);
}

/* ===== EXPERTS SECTION ===== */
.experts-section {
    position: relative;
    background: linear-gradient(180deg, #f5f8ff 0%, #ffffff 60%, #f8fbf6 100%);
    overflow: hidden;
}

.experts-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 20%, rgba(33, 150, 243, 0.08), transparent 45%),
                radial-gradient(circle at 85% 10%, rgba(255, 152, 0, 0.08), transparent 40%),
                radial-gradient(circle at 75% 85%, rgba(26, 93, 26, 0.08), transparent 45%);
    pointer-events: none;
}

.experts-section .container {
    position: relative;
    z-index: 1;
}

.experts-section .section-subtitle {
    color: var(--primary);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
}

.experts-section .section-title {
    color: #10223a;
}

.expert-card {
    height: 100%;
    padding: 2rem 1.5rem;
    text-align: left;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(16, 34, 58, 0.08);
    box-shadow: 0 12px 30px rgba(16, 34, 58, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.expert-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(16, 34, 58, 0.15);
    border-color: rgba(33, 150, 243, 0.2);
}

.expert-image {
    width: 140px;
    height: 140px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid #ffffff;
    box-shadow: 0 12px 22px rgba(16, 34, 58, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.expert-card:hover .expert-image {
    transform: scale(1.06);
    box-shadow: 0 16px 28px rgba(16, 34, 58, 0.25);
}

.expert-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert-content h5 {
    margin-bottom: 0.4rem;
    color: #10223a;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: left;
}

.expert-content p {
    color: #6f7b88;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: left;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--light);
}

.testimonialSwiper {
    padding: 2rem 0;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    height: 100%;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    color: rgba(26, 93, 26, 0.1);
    font-family: serif;
}

.testimonial-content i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    border-top: 1px solid var(--light-gray);
    padding-top: 1rem;
}

.testimonial-author h6 {
    margin-bottom: 0.25rem;
    color: var(--dark);
}

.testimonial-author small {
    color: var(--gray);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(rgba(26, 93, 26, 0.9), rgba(26, 93, 26, 0.9)), url('../assets/images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-buttons .btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.cta-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: white;
    padding: 5rem 0 2rem;
}

.footer-widget {
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 50px;
    width: auto;
    border-radius: 8px;
}

.footer-widget h5 {
    color: white;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.footer-widget ul {
    list-style: none;
    padding-left: 0;
}

.footer-widget ul li {
    margin-bottom: 0.75rem;
}

.footer-widget ul li a {
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
}

.footer-widget ul li a:hover {
    color: white;
    padding-left: 10px;
}

.contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    margin-right: 10px;
    color: var(--primary);
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 50px 0 0 50px;
    background: rgba(255,255,255,0.1);
    color: white;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.7);
}

.newsletter-form button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0 1.5rem;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    margin-top: 3rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: white;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: var(--shadow);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* ===== ANIMATIONS ===== */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .org-chart .row {
        flex-direction: column;
    }
    
    .org-level.level-3 .col-md-3 {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .navbar-nav {
        padding: 1rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .floating-card {
        position: relative;
        margin: 1rem 0;
    }
}

@media (max-width: 576px) {
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-buttons .btn.me-3 {
        margin-right: 0 !important;
    }
    
    .stats-section .col-6 {
        margin-bottom: 1rem;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar,
    .hero-buttons,
    .back-to-top,
    .footer {
        display: none !important;
    }
    
    body {
        background: white !important;
    }
    
    .container {
        width: 100%;
        max-width: none;
    }
}