/* public/assets/css/style.css */
/* Design System & CSS Variables */
:root {
    --primary: #27ae60;
    --primary-hover: #219653;
    --secondary: #e67e22;
    --accent: #f1c40f;
    --dark: #2c3e50;
    --light-grey: #7f8c8d;
    --bg-creme: #faf8f5;
    --bg-white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.12);
}
/* Reset & Base styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Inter', sans-serif;
    color: #333;
    background-color: var(--bg-creme);
    line-height: 1.6;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--dark);
    font-weight: 700;
}
a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}
a:hover {
    color: var(--primary-hover);
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}
.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.2);
}
.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.35);
}
.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.2);
}
/* Top Utility Bar */
.topbar {
    background-color: var(--dark);
    color: #eee;
    font-size: 0.85rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.topbar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.topbar-contact a {
    color: #ccc;
    margin-right: 20px;
    font-weight: 500;
}
.topbar-contact a i {
    color: var(--primary);
    margin-right: 6px;
}
.topbar-contact a:hover {
    color: #fff;
}
.topbar-social a {
    color: #ccc;
    margin-left: 15px;
    transition: var(--transition);
}
.topbar-social a:hover {
    color: var(--primary);
}
.topbar-social .admin-login-link {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 4px 12px;
    border-radius: 20px;
    color: #fff;
    font-weight: 600;
    margin-left: 15px;
    font-size: 0.8rem;
}
.topbar-social .admin-login-link i {
    margin-right: 4px;
    color: var(--primary);
}
.topbar-social .admin-login-link:hover {
    background-color: var(--primary);
    color: #fff;
}
/* Header & Navigation Bar */
.main-header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: relative;
    top: 0;
    z-index: 999;
    transition: var(--transition);
}
.main-header.sticky {
    position: fixed;
    width: 100%;
    animation: slideDown 0.4s ease-out;
    box-shadow: var(--shadow-md);
}
@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}
.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}
.logo img {
    max-height: 55px;
    display: block;
}
.nav-menu ul {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}
.nav-menu ul li {
    margin-left: 28px;
}
.nav-menu ul li a {
    color: #333;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    padding: 8px 0;
}
.nav-menu ul li a:hover,
.nav-menu ul li a.active {
    color: var(--primary);
}
.nav-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: var(--transition);
    border-radius: 2px;
}
.nav-menu ul li a:hover::after,
.nav-menu ul li a.active::after {
    width: 100%;
}
.nav-menu ul li .btn-donate-nav {
    background: var(--primary);
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(231, 76, 60, 0.2);
}
.nav-menu ul li .btn-donate-nav:hover {
    background: var(--primary-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(231, 76, 60, 0.3);
}
.nav-menu ul li .btn-donate-nav::after {
    display: none;
}
/* -----------------------------------
 * Dropdown Navigation Menu Styling
 * ----------------------------------- */
.nav-menu ul li {
    position: relative;
}
.dropdown-icon {
    font-size: 0.72rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}
/* Submenu container */
.nav-menu ul li .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    box-shadow: var(--shadow-md);
    border-radius: 8px;
    min-width: 240px;
    padding: 10px 0;
    margin: 0;
    list-style: none;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1000;
    border-top: 3px solid var(--primary);
}
.nav-menu ul li .submenu li {
    margin: 0;
    width: 100%;
    display: block;
}
.nav-menu ul li .submenu li a {
    padding: 10px 20px;
    display: block;
    color: #475569;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
}
.nav-menu ul li .submenu li a:hover {
    color: var(--primary);
    background-color: #faf9f6;
    padding-left: 24px;
}
.nav-menu ul li .submenu li a::after {
    display: none; /* Hide hover underline for sub-menus */
}
/* Hover behaviors for Desktop */
@media (min-width: 992px) {
    .nav-menu ul li.has-dropdown:hover .submenu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-menu ul li.has-dropdown:hover .dropdown-icon {
        transform: rotate(180deg);
    }
}
/* Collapsible sub-menus for Mobile */
@media (max-width: 991px) {
    .nav-menu ul li.has-dropdown {
        flex-direction: column;
        align-items: flex-start;
    }
    .nav-menu ul li.has-dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    .nav-menu ul li .submenu {
        position: static;
        box-shadow: none;
        border-radius: 0;
        min-width: 100%;
        padding: 0;
        margin: 5px 0 0 0;
        border-top: none;
        background-color: #f8fafc;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none; /* Controlled by JS class toggle */
        transition: none;
        width: 100%;
        border-left: 2px solid var(--primary);
    }
    
    .nav-menu ul li.has-dropdown.open .submenu {
        display: block;
    }
    
    .nav-menu ul li.has-dropdown.open > a .dropdown-icon {
        transform: rotate(180deg);
    }
    .nav-menu ul li .submenu li a {
        padding: 10px 20px;
        font-size: 0.9rem;
        color: #64748b;
    }
    
    .nav-menu ul li .submenu li a:hover {
        padding-left: 24px;
        background-color: #f1f5f9;
    }
}
.nav-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
}
/* Mobile Action Buttons */
.mobile-header-actions {
    display: none; /* Hidden by default on desktop */
    align-items: center;
    gap: 12px;
}
.mobile-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 30px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.mobile-action-btn i {
    font-size: 1.15rem;
}
.mobile-action-btn.whatsapp-btn {
    background-color: #25D366;
}
.mobile-action-btn.whatsapp-btn:hover {
    background-color: #20ba5a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.25);
}
.mobile-action-btn.call-btn {
    background-color: #007bff;
}
.mobile-action-btn.call-btn:hover {
    background-color: #0069d9;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.25);
}
/* Sections */
section {
    padding: 90px 0;
}
.section-bg {
    background-color: var(--bg-white);
}
h2 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}
h2::after {
    content: '';
    width: 70px;
    height: 4px;
    background: var(--primary);
    display: block;
    margin: 12px auto 0;
    border-radius: 2px;
}
/* Breadcrumb / Banner Area */
.page-banner {
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: #fff;
    text-align: center;
    position: relative;
}
.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
}
.banner-content {
    position: relative;
    z-index: 1;
}
.banner-content h1 {
    font-size: 3.2rem;
    color: #fff;
    margin-bottom: 15px;
}
.banner-content p {
    font-size: 1.15rem;
}
.banner-content p a {
    color: #fff;
}
.banner-content p a:hover {
    color: var(--primary);
}
/* Hero Slider */
.hero-slider {
    position: relative;
    height: 650px;
    overflow: hidden;
    padding: 0 !important;
    margin: 0 !important;
}
.slider-container {
    display: flex;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}
.slide {
    flex: 0 0 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    position: relative;
}
.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
}
.slide-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 24px;
}
.slide-content h1 {
    font-size: 3.8rem;
    color: #fff;
    margin-bottom: 24px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
}
.slide-content h1,
.slide-content p,
.slide-content .btn {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.slide.active .slide-content h1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}
.slide.active .slide-content p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}
.slide.active .slide-content .btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}
.slide-content p {
    font-size: 1.4rem;
    margin-bottom: 35px;
    color: #f1f1f1;
}
.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    transform: translateY(-50%);
    z-index: 2;
}
.slider-controls button {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 1.8rem;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-controls button:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}
/* About Home Section Overhaul */
.about-home {
    padding: 90px 0;
    background-color: #ffffff;
    overflow: hidden;
}
.about-home-flex {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}
/* Left Column: Image Collage */
.about-image-column {
    position: relative;
    display: flex;
    justify-content: center;
}
.about-image-collage {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 400px;
}
.collage-img {
    position: absolute;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    object-fit: cover;
    transition: all 0.4s ease;
}
.collage-img:hover {
    transform: translateY(-5px);
}
.collage-img-primary {
    top: 0;
    left: 0;
    width: 75%;
    height: 80%;
    z-index: 2;
    border: 6px solid #ffffff;
}
.collage-img-secondary {
    bottom: 0;
    right: 0;
    width: 65%;
    height: 70%;
    z-index: 3;
    border: 6px solid #ffffff;
}
.collage-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: var(--primary);
    color: #ffffff;
    padding: 15px 22px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(39, 174, 96, 0.3);
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: bounceSlow 3s infinite ease-in-out;
}
.collage-badge i {
    font-size: 1.8rem;
    color: #ffffff;
}
.collage-badge span {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    line-height: 1.2;
}
/* Right Column: Text & Features */
.about-text-column {
    text-align: left;
}
.about-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}
.about-text-column h2 {
    font-size: 2.3rem;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 20px;
}
.about-divider {
    width: 50px;
    height: 4px;
    background-color: var(--primary);
    margin-bottom: 25px;
    border-radius: 2px;
}
.about-desc {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
    text-align: justify;
    font-weight: 400 !important;
}
.about-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 35px;
}
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.feature-icon {
    font-size: 1.35rem;
    color: var(--primary);
    margin-top: 2px;
}
.feature-text strong {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    color: var(--dark);
    display: block;
    margin-bottom: 2px;
}
.feature-text p {
    color: #64748b;
    font-size: 0.92rem;
    line-height: 1.4;
    margin: 0 !important;
    font-weight: 400 !important;
}
.about-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}
.btn-phone-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-phone-cta:hover {
    transform: translateY(-2px);
}
.btn-phone-cta i {
    font-size: 1.5rem;
    color: var(--primary);
    background: rgba(39, 174, 96, 0.08);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-phone-cta div {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.btn-phone-cta div span {
    font-size: 0.8rem;
    color: #7f8c8d;
    font-weight: 500;
}
.btn-phone-cta div strong {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    color: var(--dark);
}
/* Animations */
@keyframes bounceSlow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}
/* Responsive adjustments */
@media (max-width: 991px) {
    .about-home {
        padding: 60px 0;
    }
    
    .about-home-flex {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-image-column {
        order: 2; /* Image below text on mobile for better flow */
    }
    
    .about-text-column h2 {
        font-size: 1.95rem;
    }
}
@media (max-width: 576px) {
    .about-image-collage {
        height: 320px;
    }
    
    .collage-badge {
        bottom: 20px;
        left: -10px;
        padding: 10px 16px;
    }
    
    .collage-badge i {
        font-size: 1.5rem;
    }
    
    .about-actions {
        gap: 20px;
    }
    
    .btn-phone-cta div strong {
        font-size: 1.05rem;
    }
}
/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.service-card {
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}
.service-card .service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}
.service-card:hover .service-image {
    transform: scale(1.05);
}
.service-card .service-content {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}
.service-card i {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 15px;
}
.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
    color: var(--dark);
}
.service-card p {
    color: var(--light-grey);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}
/* Gallery Grid & Lightbox triggers */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.gallery-grid a {
    display: block;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    box-shadow: var(--shadow-sm);
}
.gallery-grid a::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    font-size: 2rem;
    color: #fff;
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}
.gallery-grid a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(231, 76, 60, 0.85);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}
.gallery-grid a:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.gallery-grid a:hover::before {
    opacity: 1;
}
.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}
.gallery-grid a:hover img {
    transform: scale(1.1);
}
/* Statistics Counter */
.stats-home {
    background: linear-gradient(135deg, var(--dark) 0%, #1a252f 100%);
    color: #fff;
    padding: 70px 0;
}
.stats-home .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}
.stat-item {
    text-align: center;
    flex: 1 1 200px;
}
.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary);
    display: block;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 8px;
}
.stat-item p {
    font-size: 1.1rem;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* Testimonials */
.testimonial-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Hide scrollbar Firefox */
}
.testimonial-slider::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
}
.testimonial-item {
    flex: 0 0 calc(33.33% - 20px);
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    scroll-snap-align: start;
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
    border-top: 4px solid var(--primary);
}
.testimonial-item img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--primary);
}
.testimonial-item blockquote {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
    font-size: 1.05rem;
}
.testimonial-item cite {
    font-weight: 700;
    color: var(--dark);
    font-size: 1.1rem;
    font-style: normal;
    display: block;
}
/* Partners */
.partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    align-items: center;
}
.partner-logos img {
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: var(--transition);
}
.partner-logos img:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.08);
}
/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.blog-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}
.blog-content {
    padding: 25px;
}
.blog-content h3 {
    margin-bottom: 12px;
    font-size: 1.35rem;
}
.blog-content h3 a {
    color: var(--dark);
}
.blog-content h3 a:hover {
    color: var(--primary);
}
.blog-content p {
    color: var(--light-grey);
    margin-bottom: 20px;
}
.blog-date {
    font-size: 0.85rem;
    color: var(--light-grey);
    text-transform: uppercase;
    font-weight: 600;
    display: block;
}
/* Call To Action (CTA) Home */
.cta-home {
    background: linear-gradient(135deg, var(--primary) 0%, #d35400 100%);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}
.cta-home::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -50px;
    left: -50px;
}
.cta-home::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -100px;
    right: -100px;
}
.cta-home h2 {
    color: #fff;
    margin-bottom: 20px;
}
.cta-home h2::after {
    background: #fff;
}
.cta-home p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.cta-home .btn {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.cta-home .btn:hover {
    background: #fdfdfd;
    color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
/* Main Site Footer styling */
.main-footer {
    background-color: var(--dark);
    color: #bbb;
    padding: 80px 0 0 0;
    font-size: 0.95rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 50px;
}
.footer-widget h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}
.footer-widget h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
}
.footer-logo {
    max-height: 55px;
    margin-bottom: 20px;
    display: block;
}
.footer-about p {
    line-height: 1.7;
    margin-bottom: 25px;
}
.footer-social a {
    display: inline-block;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 38px;
    margin-right: 10px;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}
.footer-links ul {
    list-style: none;
    padding: 0;
}
.footer-links ul li {
    margin-bottom: 12px;
}
.footer-links ul li a {
    color: #bbb;
    transition: var(--transition);
}
.footer-links ul li a i {
    font-size: 0.8rem;
    margin-right: 6px;
    color: var(--primary);
}
.footer-links ul li a:hover {
    color: #fff;
    padding-left: 8px;
}
.footer-contact ul {
    list-style: none;
    padding: 0;
}
.footer-contact ul li {
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
}
.footer-contact ul li i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-right: 12px;
    margin-top: 4px;
}
.footer-contact ul li span,
.footer-contact ul li a {
    color: #bbb;
    line-height: 1.5;
}
.footer-contact ul li a:hover {
    color: #fff;
}
/* Footer Bottom copyright bar */
.footer-bottom {
    background-color: #1a252f;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.footer-bottom p {
    font-size: 0.9rem;
    color: #888;
}
.bottom-links a {
    color: #888;
    margin-left: 20px;
    font-size: 0.9rem;
}
.bottom-links a:hover {
    color: #fff;
}
/* Simple Lightbox CSS */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
}
.lightbox-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 75vh;
    border-radius: 8px;
    animation: zoomIn 0.3s ease-out;
}
@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}
.lightbox-close:hover {
    color: var(--primary);
}
#lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    text-align: center;
    color: #ccc;
    padding: 15px 0;
    height: 60px;
    font-size: 1.1rem;
}
.lightbox-prev, .lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}
.lightbox-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
.lightbox-prev {
    left: 0;
}
.lightbox-prev:hover, .lightbox-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
    color: var(--primary);
}
/* Animations and reveals */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}
/* ============================================================
   Page Banner Component
   ============================================================ */
.page-banner {
    background: linear-gradient(135deg, var(--dark), var(--primary));
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-banner h1 {
    color: #fff;
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.page-banner p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
}
/* ============================================================
   Contact Page Section
   ============================================================ */
.contact-section {
    padding: 80px 0;
    background-color: var(--bg-creme);
}
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: start;
}
.contact-info h3, .contact-form-wrapper h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    color: var(--dark);
}
.contact-info h3::after, .contact-form-wrapper h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary);
    border-radius: 2px;
}
.contact-info p {
    color: var(--light-grey);
    margin-bottom: 30px;
    font-size: 1.05rem;
}
.contact-info ul {
    list-style: none;
    padding: 0;
}
.contact-info ul li {
    margin-bottom: 25px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    color: var(--dark);
}
.contact-info ul li i {
    width: 45px;
    height: 45px;
    background-color: rgba(39, 174, 96, 0.1);
    color: var(--primary);
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    margin-right: 15px;
    font-size: 1.1rem;
    transition: var(--transition);
}
.contact-info ul li:hover i {
    background-color: var(--primary);
    color: #fff;
    transform: rotate(360deg);
}
.contact-info ul li a {
    color: var(--dark);
    font-weight: 500;
}
.contact-info ul li a:hover {
    color: var(--primary);
}
.contact-info .social-links {
    margin-top: 35px;
    display: flex;
    gap: 12px;
}
.contact-info .social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #f1f2f6;
    color: var(--dark);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 1.05rem;
    transition: var(--transition);
}
.contact-info .social-links a:hover {
    background-color: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}
/* Contact Form Wrapper */
.contact-form-wrapper {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid #f1f2f6;
}
.contact-form .form-group {
    margin-bottom: 20px;
}
.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 0.95rem;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background-color: #fafbfc;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
    outline: none;
}
.contact-form button[type="submit"] {
    width: 100%;
    padding: 14px;
    border-radius: 30px;
    font-size: 1.05rem;
    margin-top: 10px;
}
/* Google Maps Iframe */
.google-map {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid #f1f2f6;
    margin-top: 40px;
}
.google-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}
/* Responsive Overrides */
@media (max-width: 992px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .page-banner {
        padding: 60px 0;
    }
    
    .page-banner h1 {
        font-size: 2.2rem;
    }
}
/* ============================================================
   Gallery Page Layouts
   ============================================================ */
.gallery-albums {
    padding: 80px 0;
    background-color: var(--bg-creme);
}
.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}
.album-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #f1f2f6;
}
.album-card a {
    text-decoration: none;
    display: block;
}
.album-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}
.album-placeholder {
    width: 100%;
    height: 220px;
    background-color: #fafbfc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 3.5rem;
}
.album-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}
.album-card:hover img {
    transform: scale(1.05);
}
.album-info {
    padding: 25px;
}
.album-info h3 {
    font-size: 1.35rem;
    color: var(--dark);
    margin-bottom: 10px;
    font-weight: 700;
}
.album-info p {
    color: var(--light-grey);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    height: 48px;
    overflow: hidden;
}
.album-info .view-link {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-block;
    transition: var(--transition);
}
.album-card:hover .view-link {
    color: var(--secondary);
    padding-left: 5px;
}
/* Album Detail Images Section */
.gallery-images {
    padding: 80px 0;
    background-color: var(--bg-white);
}
.gallery-actions {
    margin-top: 40px;
    text-align: center;
}
.gallery-actions .btn {
    padding: 12px 25px;
    border-radius: 30px;
}
/* ============================================================
   About Page Layouts
   ============================================================ */
.about-history {
    padding: 80px 0;
    background-color: var(--bg-white);
}
.section-title {
    margin-bottom: 40px;
}
.section-title h2 {
    font-size: 2.4rem;
    color: var(--dark);
    margin-bottom: 10px;
    font-weight: 700;
}
.section-title .title-line {
    width: 60px;
    height: 3px;
    background-color: var(--secondary);
    margin: 0 auto;
    border-radius: 2px;
}
.history-card {
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid #f1f2f6;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}
.history-content {
    position: relative;
}
.history-content .quote-icon {
    font-size: 3rem;
    color: rgba(39, 174, 96, 0.1);
    position: absolute;
    top: -25px;
    left: -20px;
    z-index: 1;
}
.history-content p {
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--light-grey);
    position: relative;
    z-index: 2;
    margin: 0;
}
/* Mission & Vision Grid */
.about-mission-vision {
    padding: 80px 0;
    background-color: var(--bg-creme);
}
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}
.mv-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #f1f2f6;
    transition: var(--transition);
}
.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.mv-card .card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}
.mv-card .mv-icon {
    font-size: 1.8rem;
    color: var(--secondary);
    background-color: rgba(230, 126, 34, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
}
.mission-card .mv-icon {
    color: var(--primary);
    background-color: rgba(39, 174, 96, 0.1);
}
.mv-card h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin: 0;
    font-weight: 700;
}
.mv-card p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--light-grey);
    margin: 0;
}
/* Founder's Message Section */
.founder-message-section {
    padding: 90px 0;
    background-color: var(--bg-white);
}
.founder-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 50px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}
.founder-card {
    background-color: var(--bg-creme);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid #f1f2f6;
    text-align: center;
    transition: var(--transition);
}
.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.founder-img-wrapper {
    width: 100%;
    height: 320px;
    overflow: hidden;
}
.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}
.founder-card:hover .founder-img {
    transform: scale(1.05);
}
.founder-info {
    padding: 24px;
}
.founder-info h3 {
    font-size: 1.45rem;
    color: var(--dark);
    margin-bottom: 6px;
    font-weight: 700;
}
.founder-title {
    font-size: 0.95rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}
.founder-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 15px;
    text-align: left;
}
.founder-meta .meta-item {
    font-size: 0.85rem;
    color: var(--light-grey);
    display: flex;
    align-items: center;
    gap: 8px;
}
.founder-meta .meta-item i {
    color: var(--secondary);
    font-size: 0.95rem;
    width: 16px;
}
.founder-message-content {
    display: flex;
    flex-direction: column;
}
.founder-message-content .section-title {
    margin-bottom: 25px;
    text-align: left;
}
.founder-message-content .section-title .subtitle {
    display: block;
    font-size: 0.85rem;
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.founder-message-content .section-title h2 {
    font-size: 2.3rem;
    color: var(--dark);
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}
.founder-message-content .section-title h2::after {
    display: none; /* Hide default center line */
}
.title-line-left {
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    margin-top: 15px;
    border-radius: 2px;
}
.message-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--light-grey);
    margin-bottom: 18px;
}
.message-text p.lead {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.6;
}
.founder-signature-block {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.founder-signature-block .regards {
    font-size: 1rem;
    color: var(--light-grey);
    margin-bottom: 5px;
}
.founder-signature-block .sig-name {
    font-size: 1.3rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2px;
}
.founder-signature-block .sig-title {
    font-size: 0.9rem;
    color: var(--light-grey);
    font-weight: 500;
}
/* Core Values Grid */
.about-core-values {
    padding: 80px 0;
    background-color: var(--bg-white);
}
.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}
.value-card {
    display: flex;
    background-color: #fafbfc;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    gap: 15px;
    transition: var(--transition);
}
.value-card:hover {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    border-left-color: var(--secondary);
}
.value-card:nth-child(even) {
    border-left-color: var(--secondary);
}
.value-card:nth-child(even):hover {
    border-left-color: var(--primary);
}
.value-card .check-icon {
    font-size: 1.4rem;
    color: var(--primary);
    margin-top: 2px;
}
.value-card:nth-child(even) .check-icon {
    color: var(--secondary);
}
.value-text h4 {
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 6px;
    font-weight: 700;
}
.value-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--light-grey);
    margin: 0;
}
/* Responsive Overrides */
@media (max-width: 768px) {
    .mission-vision-grid, .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .history-card {
        padding: 30px 20px;
    }
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .founder-card {
        max-width: 320px;
        margin: 0 auto;
    }
}
/* ============================================================
   Blog Layout & Listing Pages (Huly.io Inspired Style)
   ============================================================ */
/* Blog layout main structure */
.blog-layout {
    display: grid;
    grid-template-columns: 8fr 3.5fr;
    gap: 48px;
    align-items: start;
    margin-top: 50px;
    margin-bottom: 80px;
}
/* Blog listings main column */
.blog-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
/* Post Cards */
.blog-post-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.015);
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
}
.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.05);
    border-color: rgba(15, 23, 42, 0.12);
}
.blog-post-card .post-image {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.blog-post-card:hover .post-image {
    transform: scale(1.02);
}
/* Card content body */
.blog-post-card .post-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
/* Metadata styling */
.post-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    font-size: 0.88rem;
    color: #64748b;
    font-family: 'Inter', sans-serif;
}
.post-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.post-meta a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}
.post-meta a:hover {
    color: var(--primary-hover);
}
/* Post Title */
.blog-post-card .post-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0;
}
.blog-post-card .post-content h2 a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.25s ease;
}
.blog-post-card .post-content h2 a:hover {
    color: var(--primary);
}
/* Text summary */
.blog-post-card .post-content p {
    color: #475569;
    font-size: 1.02rem;
    line-height: 1.6;
    margin: 0;
    font-family: 'Inter', sans-serif;
}
/* Mini read more button */
.blog-post-card .post-content .btn-outline {
    border: 1px solid #cbd5e1 !important;
    color: #475569 !important;
    background: transparent !important;
    padding: 10px 24px !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    font-family: 'Outfit', sans-serif !important;
    border-radius: 30px !important;
    box-shadow: none !important;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}
.blog-post-card .post-content .btn-outline:hover {
    border-color: var(--primary) !important;
    color: var(--primary) !important;
    background: rgba(39, 174, 96, 0.04) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.08) !important;
}
/* Sidebar Styling */
.blog-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
/* Widget Box */
.widget {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.015);
}
/* Widget Title */
.widget h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 20px 0;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 12px;
    position: relative;
}
.widget h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}
/* Search widget */
.widget-search form {
    display: flex;
    position: relative;
    width: 100%;
}
.widget-search input {
    width: 100%;
    padding: 12px 50px 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--dark);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.widget-search input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
    outline: none;
}
.widget-search button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: #ffffff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.widget-search button:hover {
    background: var(--primary-hover);
}
/* Category & Recent lists */
.widget-categories ul,
.widget-recent ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}
.widget-categories ul li,
.widget-recent ul li {
    border-bottom: 1px solid #f1f5f9;
    padding: 12px 0;
}
.widget-categories ul li:last-child,
.widget-recent ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.widget-categories ul li:first-child,
.widget-recent ul li:first-child {
    padding-top: 0;
}
.widget-categories ul li a,
.widget-recent ul li a {
    color: #475569;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: inline-block;
    line-height: 1.4;
}
.widget-categories ul li a:hover,
.widget-recent ul li a:hover {
    color: var(--primary);
    transform: translateX(4px);
}
/* Tags Cloud widget */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.tag-cloud .tag,
.post-tags .tag {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #475569;
    padding: 6px 12px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: inline-block;
}
.tag-cloud .tag:hover,
.post-tags .tag:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(39, 174, 96, 0.15);
}
/* Pagination Styling */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 50px;
}
.pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    color: #475569;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.25s ease;
    background: #ffffff;
}
.pagination a:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(39, 174, 96, 0.04);
    transform: translateY(-1px);
}
.pagination a.active {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.2);
}
/* ============================================================
   Blog Detail Page Styling
   ============================================================ */
.blog-detail {
    margin-top: 50px;
    margin-bottom: 80px;
}
.post-full {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.015);
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.post-full .featured-image {
    width: 100%;
    max-height: 480px;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.06);
}
.post-full .featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.post-full .post-meta {
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 20px;
    margin-bottom: 10px;
}
/* Full reading layout for post content */
.post-full .post-content {
    color: #334155;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
}
.post-full .post-content p {
    margin-bottom: 24px;
}
.post-full .post-content h2,
.post-full .post-content h3,
.post-full .post-content h4 {
    font-family: 'Outfit', sans-serif;
    color: var(--dark);
    font-weight: 700;
    margin-top: 36px;
    margin-bottom: 16px;
    line-height: 1.3;
}
.post-full .post-content h2 { font-size: 1.8rem; }
.post-full .post-content h3 { font-size: 1.5rem; }
.post-full .post-content h4 { font-size: 1.25rem; }
.post-full .post-content blockquote {
    border-left: 4px solid var(--primary);
    background: #f8fafc;
    padding: 24px;
    margin: 36px 0;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.6;
}
.post-full .post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 28px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}
.post-full .post-content ul,
.post-full .post-content ol {
    margin-left: 24px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.post-full .post-content ul li,
.post-full .post-content ol li {
    line-height: 1.7;
}
/* Post tags listing */
.post-tags {
    margin-top: 40px;
    border-top: 1px solid #f1f5f9;
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
}
.post-tags strong {
    color: var(--dark);
    font-size: 0.95rem;
}
/* Related Posts Styling */
.related-posts {
    margin-top: 60px;
    border-top: 1px solid #e2e8f0;
    padding-top: 40px;
}
.related-posts h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 24px;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.related-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.01);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
    border-color: rgba(15, 23, 42, 0.1);
}
.related-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}
.related-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}
.related-card h4 a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.2s ease;
}
.related-card h4 a:hover {
    color: var(--primary);
}
.related-card span {
    font-size: 0.85rem;
    color: #64748b;
    font-family: 'Inter', sans-serif;
}
/* Responsive adjustments for Blog Grid & Layout */
@media (max-width: 991px) {
    .blog-layout {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .blog-sidebar {
        position: static !important;
    }
}
@media (max-width: 768px) {
    .blog-post-card .post-image {
        height: 240px;
    }
    
    .post-full {
        padding: 24px;
    }
    
    .post-full .featured-image {
        max-height: 300px;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}