/*
 * Mount Business Group - Main Stylesheet
 * Version: 1.0
 * Author: Mount Business Group
 */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

/* ===========================
   CSS VARIABLES & THEME
   =========================== */
:root {
    /* Brand Colors */
    --primary-blue: #1a3a6c;
    --primary-blue-dark: #122a4f;
    --primary-blue-light: #2a5a9c;
    --primary-gold: #f5a623;
    --primary-gold-dark: #d4901e;
    --primary-gold-light: #ffc754;

    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e9ecef;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --black: #212529;

    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    --font-size-base: 15px;
    --line-height-base: 1.6;

    /* Spacing */
    --section-padding: 80px;
    --section-padding-sm: 50px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.2);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;
}

/* ===========================
   GLOBAL STYLES
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--medium-gray);
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary-gold);
}

img {
    max-width: 100%;
    height: auto;
}

/* ===========================
   UTILITY CLASSES
   =========================== */
.section-padding {
    padding: var(--section-padding) 0;
}

.section-padding-sm {
    padding: var(--section-padding-sm) 0;
}

.bg-primary-blue {
    background-color: var(--primary-blue);
}

.bg-primary-gold {
    background-color: var(--primary-gold);
}

.bg-light {
    background-color: var(--off-white) !important;
}

.bg-gradient-blue {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
}

.bg-gradient-gold {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
}

.text-primary-blue {
    color: var(--primary-blue) !important;
}

.text-primary-gold {
    color: var(--primary-gold) !important;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-gold));
    border-radius: 2px;
}

.section-title p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 1rem auto 0;
}

/* ===========================
   BUTTONS
   =========================== */
.btn-primary {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    padding: 12px 32px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.btn-primary:hover {
    background: var(--primary-blue-dark);
    border-color: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-gold {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--white);
    padding: 12px 32px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.btn-gold:hover {
    background: var(--primary-gold-dark);
    border-color: var(--primary-gold-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-primary {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    background: transparent;
    padding: 10px 30px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.btn-outline-primary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===========================
   HEADER & NAVIGATION
   =========================== */
.top-bar {
    background: var(--primary-blue);
    opacity: .5;
    color: var(--white);
    padding: 8px 0;
    font-size: 0.875rem;
}

.top-bar a {
    color: var(--white);
}

.top-bar a:hover {
    color: var(--primary-gold);
}

.top-bar i {
    color: var(--primary-gold);
    margin-right: 5px;
}

.navbar {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 2px 0;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand img {
    height: 90px;
    transition: var(--transition-normal);
}

.navbar.scrolled .navbar-brand img {
    height: 50px;
}

.navbar-nav .nav-link {
    color: var(--dark-gray);
    font-weight: 500;
    padding: 10px 18px;
    position: relative;
    transition: var(--transition-fast);
}

/* .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition-normal);
    transform: translateX(-50%);
} */

/* .navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 70%;
} */

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-blue);
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 10px 0;
    margin-top: 0;
}

/* Dropdown hover for desktop */
@media (min-width: 992px) {
    .navbar-nav .dropdown:hover>.dropdown-menu {
        display: block;
        animation: fadeIn 0.3s ease;
    }

    .navbar-nav .dropdown>.dropdown-toggle::after {
        transition: transform 0.3s ease;
    }

    .navbar-nav .dropdown:hover>.dropdown-toggle::after {
        transform: rotate(180deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background: var(--off-white);
    color: var(--primary-gold);
    padding-left: 25px;
}

/* ===========================
   HERO BANNER
   =========================== */
.hero-banner {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-pattern.png') repeat;
    opacity: 0.1;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.hero-content h1 {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.hero-content h1 span {
    color: var(--primary-gold);
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Infinite Scroll Text */
.hero-scroll-text {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    overflow: hidden;
    z-index: 3;
}

.scroll-text-inner {
    display: flex;
    animation: scrollText 30s linear infinite;
}

.scroll-text-inner span {
    flex-shrink: 0;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    white-space: nowrap;
    padding-right: 100px;
}

@keyframes scrollText {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Hero Slider Carousel */
.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slider .carousel {
    position: relative;
}

.hero-slide {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 58, 108, 0.9) 0%, rgba(18, 42, 79, 0.85) 100%);
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

.hero-slide .hero-content h1 {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.hero-slide .hero-content h1 span {
    color: var(--primary-gold);
}

.hero-slide .hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-slider .carousel-indicators {
    bottom: 80px;
    z-index: 10;
}

.hero-slider .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    margin: 0 5px;
    transition: var(--transition-normal);
}

.hero-slider .carousel-indicators button.active {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    transform: scale(1.2);
}

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition-normal);
}

.hero-slider:hover .carousel-control-prev,
.hero-slider:hover .carousel-control-next {
    opacity: 1;
}

.hero-slider .carousel-control-prev {
    left: 30px;
}

.hero-slider .carousel-control-next {
    right: 30px;
}

.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover {
    background: var(--primary-gold);
}

.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Carousel slide animations */
.carousel-item.active .hero-content h1,
.carousel-item.active .hero-content p,
.carousel-item.active .hero-buttons {
    animation: fadeInUp 0.8s ease forwards;
}

.carousel-item.active .hero-content h1 {
    animation-delay: 0.2s;
}

.carousel-item.active .hero-content p {
    animation-delay: 0.4s;
}

.carousel-item.active .hero-buttons {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero scroll text position adjust for slider */
.hero-slider .hero-scroll-text {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    overflow: hidden;
    z-index: 10;
}

/* ===========================
   PAGE BANNER
   =========================== */
.page-banner {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: var(--primary-gold);
    opacity: 0.1;
    border-radius: 50%;
}

.page-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: var(--primary-gold);
    opacity: 0.1;
    border-radius: 50%;
}

.page-banner h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    background: transparent;
    justify-content: center;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item a:hover {
    color: var(--primary-gold);
}

.breadcrumb-item.active {
    color: var(--primary-gold);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about-section {
    position: relative;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    right: -30px;
    bottom: -30px;
    border: 4px solid var(--primary-gold);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-content h2 span {
    color: var(--primary-gold);
}

.about-features {
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.about-feature i {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-right: 1rem;
    flex-shrink: 0;
}

.about-feature h5 {
    margin-bottom: 0.25rem;
}

.about-feature p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* ===========================
   INFINITE SCROLL CAROUSEL
   =========================== */
.infinite-carousel {
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
    position: relative;
    /* For button positioning */
}

.infinite-carousel-track {
    display: flex;
    /* animation: infiniteScroll 25s linear infinite; REMOVED FOR MANUAL CONTROL */
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    /* Easing added */
    will-change: transform;
}

/* Nav Buttons */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    color: var(--primary-blue);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-normal);
    opacity: 0.8;
}

.carousel-nav-btn:hover {
    background: var(--primary-gold);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
}

.carousel-nav-btn.prev-btn {
    left: 10px;
}

.carousel-nav-btn.next-btn {
    right: 10px;
}

.carousel-item-card {
    flex-shrink: 0;
    width: 350px;
    margin: 0 15px;
}

/* Testimonials specific adjustments if needed */
.testimonial-card {
    /* Keeping existing styles, just ensuring flex behavior */
    flex-shrink: 0;
    width: 400px;
    /* Confirmed from earlier view */
    margin: 0 15px;
}

.blog-card {
    /* Blog cards are inside carousel-item-card wrapper usually, 
        but checking HTML structure, they seem to be wrapped in .carousel-item-card 
        in the blog-preview section of index.html. 
        Wait, let me double check index.html blog structure. 
        From previous read: 
        <div class="carousel-item-card"> <div class="blog-card">...</div> </div>
        So width is controlled by carousel-item-card. 
     */
}

/* ===========================
   SISTER CONCERNS CARDS
   =========================== */
.sister-concern-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    height: 100%;
}

.sister-concern-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.sister-concern-card .card-image {
    height: 200px;
    overflow: hidden;
}

.sister-concern-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.sister-concern-card:hover .card-image img {
    transform: scale(1.1);
}

.sister-concern-card .card-body {
    padding: 1.5rem;
}

.sister-concern-card .card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.sister-concern-card .card-text {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonial-section {
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
    width: 400px;
    margin: 0 15px;
}

.testimonial-card .quote-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-card .testimonial-text {
    font-size: 1rem;
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-card .author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
}

.testimonial-card .author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card .author-info h5 {
    margin-bottom: 0;
    font-size: 1rem;
}

.testimonial-card .author-info span {
    font-size: 0.875rem;
    color: var(--medium-gray);
}

/* ===========================
   BLOG CARDS
   =========================== */
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.blog-card .card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .card-image img {
    transform: scale(1.1);
}

.blog-card .card-image .category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-gold);
    color: var(--white);
    padding: 5px 15px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-card .card-body {
    padding: 1.5rem;
}

.blog-card .card-meta {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: var(--medium-gray);
}

.blog-card .card-meta i {
    margin-right: 5px;
    color: var(--primary-gold);
}

.blog-card .card-meta span {
    margin-right: 15px;
}

.blog-card .card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.blog-card .card-title a {
    color: var(--primary-blue);
}

.blog-card .card-title a:hover {
    color: var(--primary-gold);
}

.blog-card .card-text {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.blog-card .read-more {
    font-weight: 600;
    color: var(--primary-blue);
    display: inline-flex;
    align-items: center;
}

.blog-card .read-more i {
    margin-left: 5px;
    transition: var(--transition-fast);
}

.blog-card .read-more:hover {
    color: var(--primary-gold);
}

.blog-card .read-more:hover i {
    transform: translateX(5px);
}

/* ===========================
   GALLERY
   =========================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(26, 58, 108, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item .overlay h5 {
    color: var(--white);
    text-align: center;
    margin: 0;
}

/* Masonry Gallery */
.masonry-gallery {
    columns: 4;
    column-gap: 20px;
}

.masonry-gallery .gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
}

.masonry-gallery .gallery-item img {
    height: auto;
}

/* Video Gallery */
.video-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.video-card:hover img {
    transform: scale(1.05);
}

.video-card .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    transition: var(--transition-normal);
}

.video-card:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--primary-blue);
}

.video-card .video-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 1.5rem 1rem 1rem;
    color: var(--white);
}

.video-card .video-title h5 {
    color: var(--white);
    margin: 0;
    font-size: 1rem;
}

/* ===========================
   VISION MISSION VALUES
   =========================== */
.vmv-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: var(--transition-normal);
    border-bottom: 4px solid transparent;
}

.vmv-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary-gold);
}

.vmv-card .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.vmv-card .icon i {
    font-size: 2rem;
    color: var(--white);
}

.vmv-card h4 {
    margin-bottom: 1rem;
}

.vmv-card p {
    margin-bottom: 0;
}

/* ===========================
   HISTORY TIMELINE
   =========================== */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-blue), var(--primary-gold));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item .timeline-content {
    width: 45%;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-item .timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--primary-gold);
    border: 4px solid var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    z-index: 1;
}

.timeline-item .timeline-year {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1.25rem;
}

.timeline-item:nth-child(odd) .timeline-year {
    left: calc(50% - 100px);
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-year {
    right: calc(50% - 100px);
    text-align: left;
}

/* ===========================
   MARKETING POINTS
   =========================== */
.marketing-point {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    height: 100%;
}

.marketing-point:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.marketing-point .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.marketing-point .icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.marketing-point h5 {
    margin-bottom: 0.75rem;
}

.marketing-point p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* ===========================
   CONTACT SECTION
   =========================== */
.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.contact-form .form-control {
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    padding: 12px 15px;
    transition: var(--transition-fast);
}

.contact-form .form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(26, 58, 108, 0.1);
}

.contact-form textarea.form-control {
    min-height: 150px;
    resize: none;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
    min-height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    height: 100%;
    transition: var(--transition-normal);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-info-card .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-info-card .icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-info-card h5 {
    margin-bottom: 0.5rem;
}

.contact-info-card p {
    margin-bottom: 0;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
    color: var(--white);
    padding: 60px 0 0;
}

.footer h5 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 2px;
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-address i {
    color: var(--primary-gold);
    margin-right: 10px;
    width: 20px;
}

.footer-address p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: .25rem;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.8);
    display: inline-flex;
    align-items: center;
    transition: var(--transition-fast);
}

.footer-links li a::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    margin-right: 10px;
    color: var(--primary-gold);
}

.footer-links li a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-map {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.footer-map iframe {
    width: 100%;
    height: 180px;
    border: 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    transition: var(--transition-normal);
}

.social-links a:hover {
    background: var(--primary-gold);
    transform: translateY(-5px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

/* ===========================
   BLOG INNER PAGE
   =========================== */
.blog-inner-content {
    padding-right: 2rem;
}

.blog-inner-content .blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 1.5rem;
    color: var(--medium-gray);
}

.blog-inner-content .blog-meta i {
    color: var(--primary-gold);
    margin-right: 5px;
}

.blog-inner-content .blog-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 2rem;
}

.blog-inner-content .blog-image img {
    width: 100%;
    height: auto;
}

.blog-inner-content .blog-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.blog-inner-content .blog-text p {
    margin-bottom: 1.5rem;
}

.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.sidebar-widget h5 {
    margin-bottom: 1.25rem;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-gray);
}

.sidebar-widget .recent-post {
    display: flex;
    gap: 15px;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--light-gray);
}

.sidebar-widget .recent-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.sidebar-widget .recent-post img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.sidebar-widget .recent-post h6 {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.sidebar-widget .recent-post h6 a {
    color: var(--dark-gray);
}

.sidebar-widget .recent-post h6 a:hover {
    color: var(--primary-gold);
}

.sidebar-widget .recent-post span {
    font-size: 0.8rem;
    color: var(--medium-gray);
}

/* ===========================
   ALTERNATING CONTENT SECTION
   =========================== */
.alternating-section {
    padding: 4rem 0;
}

.alternating-section:nth-child(even) {
    background: var(--off-white);
}

.alternating-section .content-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.alternating-section .content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.alternating-section .content-text {
    padding: 2rem;
}

.alternating-section .content-text h3 {
    margin-bottom: 1.5rem;
}

.alternating-section .content-text ul {
    list-style: none;
    padding: 0;
}

.alternating-section .content-text ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 0.75rem;
}

.alternating-section .content-text ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-gold);
}

/* ===========================
   RESPONSIVE STYLES
   =========================== */
@media (max-width: 1199.98px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.75rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .masonry-gallery {
        columns: 3;
    }
}

@media (max-width: 991.98px) {
    :root {
        --section-padding: 60px;
    }

    .navbar-collapse {
        background: var(--white);
        padding: 1rem;
        margin-top: 1rem;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-lg);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
    }

    .timeline-item .timeline-dot {
        left: 30px;
    }

    .timeline-item .timeline-year {
        left: 0 !important;
        right: auto !important;
        text-align: left !important;
        top: -30px;
        transform: none;
    }

    .masonry-gallery {
        columns: 2;
    }

    .blog-inner-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
}

@media (max-width: 767.98px) {
    :root {
        --section-padding: 50px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .hero-banner {
        min-height: 500px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .scroll-text-inner span {
        font-size: 2.5rem;
    }

    .carousel-item-card {
        width: 280px;
    }

    .testimonial-card {
        width: 300px;
    }

    .about-image::before {
        top: 15px;
        left: 15px;
        right: -15px;
        bottom: -15px;
    }

    .masonry-gallery {
        columns: 1;
    }

    .footer {
        text-align: center;
    }

    .footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .top-bar {
        display: none;
    }

    .navbar-brand img {
        height: 45px;
    }

    .page-banner {
        padding: 100px 0 40px;
    }

    .page-banner h1 {
        font-size: 1.75rem;
    }
}

/* ===========================
   ANIMATION CLASSES
   =========================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Delay classes */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

/* ===========================
   FANCYBOX CUSTOMIZATION
   =========================== */
.fancybox__container {
    --fancybox-bg: rgba(0, 0, 0, 0.9);
}

.fancybox__toolbar {
    background: transparent;
}

.fancybox__caption {
    background: rgba(0, 0, 0, 0.7);
    padding: 15px 30px;
    text-align: center;
}


.concern-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition-normal);
            height: 100%;
        }

        .concern-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-xl);
        }

        .concern-card .card-image {
            height: 280px;
            overflow: hidden;
            position: relative;
        }

        .concern-card .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-slow);
        }

        .concern-card:hover .card-image img {
            transform: scale(1.1);
        }

        .concern-card .card-image .overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(26, 58, 108, 0.9), transparent 60%);
            opacity: 0;
            transition: var(--transition-normal);
        }

        .concern-card:hover .card-image .overlay {
            opacity: 1;
        }

        .concern-card .card-body {
            padding: 2rem;
            text-align: center;
        }

        .concern-card .card-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: -60px auto 1.5rem;
            position: relative;
            z-index: 2;
            box-shadow: var(--shadow-md);
        }

        .concern-card .card-icon i {
            font-size: 2rem;
            color: var(--white);
        }

        .concern-card .card-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .concern-card .card-text {
            margin-bottom: 1.5rem;
        }


        .gallery-category-card {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            height: 300px;
            cursor: pointer;
            transition: var(--transition-normal);
        }

        .gallery-category-card:hover {
            transform: translateY(-10px);
        }

        .gallery-category-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-slow);
        }

        .gallery-category-card:hover img {
            transform: scale(1.1);
        }

        .gallery-category-card .overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(26, 58, 108, 0.95), rgba(26, 58, 108, 0.3));
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            text-align: center;
            color: #fff;
        }

        .gallery-category-card .overlay i {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--primary-gold);
        }

        .gallery-category-card .overlay h4 {
            color: #fff;
            margin-bottom: 0.5rem;
        }

        .gallery-category-card .overlay p {
            font-size: 0.9rem;
            margin-bottom: 0;
            opacity: 0.9;
            color: #fff;
        }