/* Top Contact Bar - Compact */
.top-contact-bar {
    background: #131212;
    color: #fff;
    padding: 3px 0;
    font-size: 11px;
    border-bottom: none;
    position: relative;
    z-index: 1001;
    width: 100%;
    display: block !important;
}

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

.top-contact-info {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-item i {
    color: #fff;
    font-size: 10px;
    background: #094c23;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 6px;
    flex-shrink: 0;
}

.top-social-icons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.social-icon {
    color: #fff;
    font-size: 10px;
    background: #094c23;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: #fff;
    background: #0a5c2a;
    transform: scale(1.1);
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #fff;
    overflow-x: hidden;
    background: #131212;
    padding-top: 70px; /* Add padding to compensate for fixed header */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Mobile Contact Section - Hidden by default, shown only in mobile hamburger menu */
.mobile-contact-section {
    display: none;
    padding: 20px 0 10px 0;
    border-top: 1px solid #094c23;
    margin-top: 10px;
}

/* Desktop Ultra-Compact Layout Optimizations */
@media (min-width: 1025px) {
    /* Ultra-compact sections on desktop */
    .services-section {
        padding: 8px 0;
    }
    
    .portfolio-section {
        padding: 8px 0;
    }
    
    .info-bar-section {
        padding: 5px 0;
    }
    
    .testimonials-section {
        padding: 15px 0;
        min-height: 300px;
    }
    
    .footer-main {
        padding: 15px 0 10px;
    }
    
    /* Much smaller service cards */
    .service-card {
        height: 240px;
    }
    
    .service-content {
        padding: 10px;
    }
    
    /* Ultra-tight grid gaps */
    .services-grid {
        gap: 8px;
    }
    
    .info-items {
        gap: 8px;
    }
    
    .footer-grid {
        gap: 15px;
    }
    
    /* Minimal section headers */
    .section-header {
        margin-bottom: 5px;
    }
    
    .testimonials-section .section-header {
        margin-bottom: 10px;
    }
    
    /* Smaller hero text on desktop */
    .hero-content h1 {
        font-size: 48px;
        margin-bottom: 8px;
    }
    
    .hero-content h2 {
        font-size: 36px;
        margin-bottom: 6px;
    }
    
    .hero-content p {
        margin-bottom: 8px;
        max-width: 250px;
    }
    
    /* Compact info items */
    .info-item {
        padding: 10px;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    /* Smaller testimonial cards */
    .testimonial-card {
        padding: 15px;
    }
    
    .testimonial-slide.active {
        gap: 15px;
    }
}

/* Header Styles */
/* Green line between header and hero */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #131212;
    z-index: 1000; /* Ensure header is above other content */
    transition: all 0.3s ease;
    border-bottom: 1px solid #094c23;
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #094c23;
    z-index: 1001;
}

/* Hero Section - Full Height */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    z-index: 1; /* Lower z-index than header */
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    background: #131212 !important;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.logo h1 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 40px;
    background: transparent;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    background: transparent;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu a:hover {
    color: #fff;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #131212;
    box-shadow: 0 5px 20px rgba(9,76,35,0.1);
    min-width: 200px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
    border: 1px solid #fff;
}

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

.dropdown-menu li {
    padding: 8px 20px;
}

.dropdown-menu a {
    color: #fff;
    font-size: 14px;
}

.dropdown-menu a:hover {
    color: #fff;
}

.btn-purchase {
    background: #e74c3c;
    color: #fff;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-purchase:hover {
    background: #c0392b;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1002; /* Ensure toggle button is above navbar */
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 3px;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section - Full Height */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
}

/* Hero Image Optimizations */
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Optimize for faster loading */
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    transition: transform 0.3s ease;
}

.hero-bg-image:hover {
    transform: scale(1.05);
}

/* Loading state for hero image */
.hero-bg-image {
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Optimize image loading on mobile */
@media (max-width: 768px) {
    .hero-bg-image {
        object-fit: cover;
    }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg::before,
.hero-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    max-width: 1200px;
    padding: 0 30px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.hero-line {
    display: none;
}

.hero-content h1 {
    font-size: 60px;
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 0.9;
    letter-spacing: -2px;
    text-transform: uppercase;
    background: linear-gradient(to right, #fff, rgba(255,255,255,0.8));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255,255,255,0.1);
}

.hero-content h2 {
    font-size: 45px;
    font-weight: 900;
    margin-bottom: 10px;
    line-height: 0.9;
    letter-spacing: -1px;
    text-transform: uppercase;
    background: linear-gradient(to right, #fff, rgba(255,255,255,0.8));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255,255,255,0.1);
}

.hero-content p {
    font-size: 12px;
    margin-bottom: 10px;
    opacity: 0.9;
    line-height: 1.5;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.btn-primary {
    background: #fff;
    color: #094c23;
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
    width: fit-content;
    margin: 0 auto;
}

.btn-primary:hover {
    background: #094c23;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(9,76,35,0.3);
}

/* Show More Insights Button */
.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #ffffff; /* White border */
    border-radius: 25px;
    color: #ffffff; /* White text */
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: transparent;
    transition: all 0.3s ease;
    margin: 20px 0;
}

.btn-secondary:hover {
    border-color: #094c23; /* Green border on hover */
    background: #094c23; /* Green background on hover */
    color: #ffffff; /* White text on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(9, 76, 35, 0.3);
}

/* Info Bar Section - Compact */
.info-bar-section {
    background: #1a1a1a;
    padding: 15px 0;
    box-shadow: none;
    border: none;
}

.info-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #ffffff; /* White background for cards */
    padding: 15px;
    border-radius: 0;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none !important;
}

.info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.12);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: #094c23;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #000; /* Black text */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-content p {
    color: #000; /* Black text */
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

/* Mobile responsive for info bar */
@media (max-width: 768px) {
    .info-bar-section {
        padding: 20px 0;
    }
    
    .info-items {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .info-item {
        padding: 15px;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
        background: #094c23;
        color: #fff;
    }
    
    .info-content h4 {
        font-size: 14px;
        color: #000;
    }
    
    .info-content p {
        font-size: 16px;
        color: #000;
    }
}

/* Section Headers - Compact */
.section-header {
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #fff;
    font-size: 12px; /* Smaller text */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px; /* Minimal margin */
}

.section-header h2 {
    font-size: 24px; /* Much smaller heading */
    font-weight: 700;
    color: #fff;
}

.section-header h2.with-underline {
    position: relative;
    padding-bottom: 15px;
}

.section-header h2.with-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: #094c23;
    border-radius: 2px;
}

/* Services Section */
.services-section {
    padding: 20px 0;
    background: #111111;
    border: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    perspective: 1000px;
}

.service-card {
    background: #111111;
    border: none;
    box-shadow: 0 3px 15px rgba(0,0,0,0.2);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 320px;
    transform-origin: center bottom;
}

.service-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(2deg) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    animation: swing 0.6s ease-in-out;
}

/* Service Images Section - Takes half the card */
.service-images {
    position: relative;
    height: 50%;
    overflow: hidden;
}

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

.service-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-slide.active {
    opacity: 1;
}

.service-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-slide img {
    transform: scale(1.1) rotate(1deg);
}

/* Swinging animation */
@keyframes swing {
    0% { transform: translateY(-15px) rotateX(0deg) rotateY(0deg) scale(1); }
    25% { transform: translateY(-20px) rotateX(3deg) rotateY(-1deg) scale(1.01); }
    50% { transform: translateY(-15px) rotateX(5deg) rotateY(2deg) scale(1.02); }
    75% { transform: translateY(-18px) rotateX(2deg) rotateY(1deg) scale(1.015); }
    100% { transform: translateY(-15px) rotateX(5deg) rotateY(2deg) scale(1.02); }
}

/* Enhanced service card hover effects */
.service-card:hover .service-content h3 {
    color: #fff;
    transform: translateY(-2px);
}

.service-content h3 {
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Service Navigation */
.service-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.service-prev,
.service-next {
    background: rgba(9, 76, 35, 0.8);
    color: #fff;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
}

.service-prev:hover,
.service-next:hover {
    background: #094c23;
    transform: scale(1.1);
}

/* Service Content Section - Takes half the card */
.service-content {
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 50%;
}

.service-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
    line-height: 1.2;
}

.service-content p {
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 14px;
    flex-grow: 1;
}

.read-more {
    background: #111111;
    border: none;
    border-radius: 25px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 20px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.2);
    transform: translateY(0);
}

.read-more:hover {
    background: #094c23;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(9, 76, 35, 0.4);
}

/* Portfolio Section - Compact */
.portfolio-section {
    padding: 20px 0;
    background: #1a1a1a;
    border: none;
}

.portfolio-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.portfolio-sort {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-dropdown {
    padding: 8px 15px;
    border: none;
    border-radius: 15px;
    background: #111111;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    outline: none;
}

.sort-dropdown:focus {
    box-shadow: 0 0 10px rgba(9,76,35,0.3);
}

.portfolio-view-toggle {
    display: flex;
    gap: 8px;
}

.view-btn {
    padding: 8px 12px;
    border: none;
    border-radius: 8px;
    background: #111111;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.view-btn:hover,
.view-btn.active {
    background: #fff;
    color: #fff;
}

.filter-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    background: #111111;
    color: #fff;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-btn:hover,
.filter-btn.active {
    background: #094c23;
    color: #fff;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.portfolio-card {
    background: #111111;
    border: none !important;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.portfolio-card:hover {
    transform: translateY(-10px);
}

.portfolio-image {
    position: relative;
    width: 100%;
    padding-top: 140%; /* Makes image container portrait (1.4:1 ratio) */
    overflow: hidden;
}

.portfolio-image img,
.portfolio-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.portfolio-slider {
    position: absolute;
    width: 100%;
    height: 100%;
}

.portfolio-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.portfolio-slide.active {
    opacity: 1;
}

.portfolio-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
    visibility: visible;
}

.portfolio-icon {
    width: 45px;
    height: 45px;
    background: rgba(9, 76, 35, 0.9);
    border: 2px solid #094c23;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.portfolio-icon:hover {
    background: #094c23;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(9, 76, 35, 0.4);
}

.portfolio-content {
    padding: 20px;
    text-align: left;
    background: #111111;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
    line-height: 1.3;
}

.portfolio-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    line-height: 1.4;
    flex-grow: 1;
}

.project-details {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    font-size: 11px;
    opacity: 0.9;
}

.project-year,
.project-location {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 4px 8px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 10px;
}

.portfolio-nav {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 2;
}

.portfolio-prev,
.portfolio-next {
    background: rgba(9, 76, 35, 0.8);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.portfolio-prev:hover,
.portfolio-next:hover {
    background: rgba(9, 76, 35, 1);
    transform: scale(1.1);
}

.portfolio-dots {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 2;
}

.portfolio-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio-dot.active {
    background: rgba(9, 76, 35, 0.9);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

    .portfolio-content {
    padding: 20px;
    }
}

/* Blog Section */
.blog-section {
    padding: 60px 0;
    background: #1a1a1a;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-post {
    background: #111111;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.post-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

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

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

.post-category {
    position: absolute;
    top: 15px;
    left: 15px; /* Changed from right to left alignment */
    background: #094c23; /* Green background */
    color: #ffffff; /* White text */
    padding: 3px 8px; /* Slightly more horizontal padding */
    border-radius: 12px; /* Rounded corners */
    font-size: 10px; /* Smaller font for compact look */
    font-weight: 600;
    line-height: 1.2; /* Slightly more line height for better readability */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap; /* Prevent text wrapping */
    display: inline-block; /* Ensure tight fit */
    min-width: auto; /* Allow element to shrink to content */
    text-align: left; /* Changed from center to left alignment */
}

.post-content {
    padding: 20px;
}

.post-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
    line-height: 1.4;
}

.post-content p {
    color: #bdc3c7;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.read-more {
    color: #094c23;
    font-weight: 600;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #fff;
    text-decoration: none;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

.blog-more {
    text-align: center;
    margin-top: 30px;
}

/* Show More Insights Button */
.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border: 4px solid #ffffff; /* Thick white border */
    border-radius: 25px;
    color: #ffffff; /* White text */
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: transparent;
    /* Remove transition for no hover effect */
}

/* Remove hover effect */

/* Footer */
.footer {
    background: #111111;
    color: #fff;
    border-top: none;
    border-bottom: 1px solid #094c23;
}

.footer-main {
    padding: 30px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
}

.footer-col h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.footer-col p {
    color: #bdc3c7;
    line-height: 1.5;
    margin-bottom: 15px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
}

.contact-item i {
    color: #fff;
    font-size: 14px;
    background: #094c23;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.open-hours {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    color: #bdc3c7;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 14px;
}

/* Testimonials Section - Compact */
.testimonials-section {
    padding: 40px 0;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    background: #111111;
    border: none;
    box-shadow: 0 -5px 20px rgba(9,76,35,0.1);
    border-top: 1px solid #094c23;
}

.testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('avif/TESTIMONIAL.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    z-index: 1;
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

.testimonials-section .section-header {
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.testimonials-section .section-subtitle {
    color: #ffffff;
    font-weight: 600;
}

.testimonials-section .section-header h2 {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.testimonials-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: all 0.5s ease;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

/* Grid layout for 3 testimonials */
.testimonial-slide.active {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    opacity: 1;
}

.testimonial-card {
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(2px);
    border: none;
    border-top: 3px solid #ffffff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.customer-image {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.customer-image:hover {
    opacity: 1;
}

.customer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-icon {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 15px;
    opacity: 0.8;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    font-weight: 500;
}

.testimonial-author h4 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 500;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #094c23;
    border: 2px solid #094c23;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.carousel-btn:hover {
    background: #0a5c2a;
    border-color: #0a5c2a;
    color: #fff;
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.dot.active,
.dot:hover {
    background: #fff;
    border-color: #fff;
    transform: scale(1.2);
}

/* Mobile responsive for testimonials */
@media (max-width: 968px) {
    .testimonial-slide.active {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 25px;
        background: rgba(0, 0, 0, 0.25);
    }
    
    .testimonial-card:hover {
        background: rgba(0, 0, 0, 0.3);
    }
}

@media (max-width: 768px) {
    .testimonial-slide.active {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 20px;
        background: rgba(0, 0, 0, 0.25);
    }
    
    .testimonial-card:hover {
        background: rgba(0, 0, 0, 0.3);
    }
    
    .customer-image {
        width: 60px;
        height: 60px;
        border: 3px solid #fff;
        box-shadow: 0 3px 15px rgba(255, 255, 255, 0.3);
    }
    
    .testimonial-content p {
        font-size: 14px;
    }
    
    .quote-icon {
        font-size: 20px;
        color: #fff;
    }
    
    .carousel-controls {
        gap: 25px;
        margin-top: 35px;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
        background: #094c23;
        border: 2px solid #094c23;
    }
    
    .carousel-btn:hover {
        background: #0a5c2a;
        border-color: #0a5c2a;
    }
}

/* Team Section */
.team-section {
    padding: 60px 0; /* Reduced from 100px */
    background: #4a4a4a;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    position: relative;
    background: #111111;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: none;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.member-info {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(9, 76, 35, 0.95); /* Green background with slight transparency */
    backdrop-filter: blur(5px);
    color: #fff;
    padding: 18px 22px;
    text-align: center;
    width: 80%; /* Slightly smaller width for better proportions */
    border-radius: 12px 12px 0 0; /* Rounded top corners only */
    box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 2;
}

.team-member:hover .member-info {
    background: rgba(9, 76, 35, 1); /* Solid green on hover */
    transform: translateX(-50%) translateY(-5px); /* Slight lift on hover */
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.4);
}

.member-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 500;
    margin: 0;
    line-height: 1.3;
}

/* Add social media icons for team members */
.member-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
}

.member-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: #fff;
    color: #094c23;
    transform: scale(1.1);
}

/* CTA Section */
.cta-section {
    padding: 60px 0; /* Reduced from 100px */
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('avif/Architecture Department, Library Design by Dezick Architects.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    position: relative;
}

.cta-section .section-header {
    color: #ffffff;
}

.cta-section .section-subtitle {
    color: #ffffff;
}

.cta-section .section-header h2 {
    color: #ffffff;
}

.cta-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    color: #fff;
}

.cta-subtitle {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.cta-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
    color: #fff;
}

.cta-video {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #e74c3c;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-btn:hover {
    background: #c0392b;
    transform: scale(1.1);
}

.cta-video span {
    font-weight: 600;
    font-size: 16px;
}

/* Stats Section */
.stats-section {
    padding: 50px 0; /* Reduced from 80px */
    background: #4a4a4a;
    color: #fff;
    border-bottom: 1px solid #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 16px;
    opacity: 0.9;
    color: #fff;
}

/* Blog Section */
.blog-section {
    padding: 30px 0;
    background: #4a4a4a;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.blog-post {
    background: #111111;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.post-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-post:hover .post-content h3::after {
    width: 100px;
    background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.6) 100%);
}

/* Removed duplicate .post-category class to prevent conflicts */
/* No hover effect styles needed - removed empty ruleset */

.post-content {
    padding: 30px;
}

.post-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.4;
    position: relative;
    padding-bottom: 8px;
}

.post-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2ecc71, #27ae60);
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border-radius: 2px;
}

.post-content p {
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.btn-secondary {
    background: transparent;
    border: 4px solid #ffffff; /* Thick white border */
    color: #fff;
    padding: 15px 35px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    /* Remove transition for no hover effect */
}

/* Remove hover effect */

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.gallery-grid img {
    width: 100%;
    height: 70px;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.1);
}

/* Recent Posts */
.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-post {
    padding: 10px;
    border: none;
}

.recent-post a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.recent-post a:hover {
    color: #094c23;
    padding-left: 5px;
}

.recent-post a i {
    color: #094c23;
    font-size: 12px;
    margin-top: 2px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.recent-post a:hover i {
    color: #0a5c2a;
    transform: translateX(3px);
}

.recent-post span {
    color: #fff;
    font-size: 12px;
    display: block;
    margin-top: 5px;
    margin-left: 20px;
}

/* Footer Social Icons */
.footer-social-icons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.social-column {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex: 1;
    justify-content: space-around;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 0;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    padding-left: 8px;
}

.footer-social-icon:hover {
    color: #fff;
    border-left-color: #094c23;
    padding-left: 12px;
    transform: translateX(4px);
}

.footer-social-icon i {
    color: #fff;
    font-size: 16px;
    background: #094c23;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.footer-social-icon:hover i {
    background: #0a5c2a;
    transform: scale(1.1);
}

.footer-social-icon span {
    font-weight: 500;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 60px; /* Adjust padding for mobile header height */
    }

    /* Hide top contact bar on mobile - with higher specificity */
    .top-contact-bar {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important;
        opacity: 0 !important;
    }
    
    /* Mobile contact section - hidden by default, only shown in hamburger menu */
    .mobile-contact-section {
        display: none;
        padding: 20px 0 10px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 10px;
    }
    
    /* Show mobile contact section when hamburger menu is active */
    .navbar.mobile-active .mobile-contact-section {
        display: block;
    }
    
    .mobile-contact-info {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .mobile-contact-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 0;
        color: #fff;
        font-size: 14px;
        line-height: 1.4;
    }
    
    .mobile-contact-item i {
        color: #fff;
        font-size: 12px;
        background: #094c23;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-top: 2px;
    }
    
    .mobile-contact-item span {
        color: #fff;
        font-size: 13px;
        line-height: 1.3;
    }
    
    .mobile-social-icons {
        display: flex;
        gap: 12px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .mobile-social-icon {
        color: #fff;
        font-size: 14px;
        background: #094c23;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .mobile-social-icon:hover {
        color: #fff;
        background: #0a5c2a;
        transform: scale(1.1);
    }
    
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        background: #131212;
    }
    
    .nav-wrapper {
        padding: 8px 0;
    }
    
    .logo-img {
        height: 35px;
        max-width: 150px;
    }
    
    .navbar.mobile-active {
        display: block !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 0 0 15px 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        padding: 0;
        overflow: hidden;
        transform: translateY(0);
        opacity: 1;
    }
    
    .navbar.mobile-active .nav-menu {
        flex-direction: column;
        gap: 0;
        background: transparent;
        padding: 20px;
    }
    
    .navbar.mobile-active .nav-menu a {
        color: #ffffff !important;
        font-size: 16px;
        font-weight: 500;
        padding: 15px 0;
        border-bottom: 1px solid #094c23;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .navbar.mobile-active .nav-menu a:last-child {
        border-bottom: none;
    }
    
    .navbar.mobile-active .nav-menu a:hover {
        color: #fff !important;
        padding-left: 10px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .navbar {
        display: none;
    }
    
    .hero-section {
        height: 100vh; /* Ensure full height on mobile too */
    }
    
    .hero-content h1 {
        font-size: 32px;
        margin-bottom: 12px;
        letter-spacing: -1px;
    }
    
    .hero-content h2 {
        font-size: 32px;
        margin-bottom: 12px;
        letter-spacing: -1px;
    }
    
    .hero-content p {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.5;
        max-width: 400px;
    }
    
    .btn-primary {
        padding: 10px 25px;
        font-size: 12px;
    }
    
    .info-items {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-section {
        padding: 60px 0;
        min-height: 500px;
    }
    
    .testimonials-bg {
        background-attachment: scroll;
    }
    
    .testimonial-slide.active {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 20px;
        border-radius: 0;
    }
    
    .customer-image {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .testimonial-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .quote-icon {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .carousel-controls {
        gap: 20px;
        margin-top: 30px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .member-image {
        height: 350px;
    }
    
    .member-info {
        width: 85%;
        padding: 14px 18px;
    }
    
    .member-info h3 {
        font-size: 15px;
        margin-bottom: 5px;
    }
    
    .member-info p {
        font-size: 12px;
    }
    
    .member-social {
        gap: 8px;
        margin-top: 10px;
    }
    
    .member-social a {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-controls {
        flex-direction: column;
        gap: 15px;
    }
    
    .portfolio-filters {
        justify-content: center;
    }
    
    .portfolio-sort,
    .portfolio-view-toggle {
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-logo-img {
        height: 40px;
        max-width: 200px;
    }
    
    .footer-social-icons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }
    
    .social-column {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
        flex: none;
    }
    
    .footer-social-icon {
        font-size: 13px;
        gap: 10px;
        padding: 6px 0;
    }
    
    .footer-social-icon i {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .cta-text h2 {
        font-size: 28px;
    }
}

/* About Section */
.about-section {
    padding: 50px 0; /* Reduced from 80px */
    background: #4a4a4a;
    border-top: 1px solid #094c23;
    display: none; /* Hidden by default */
    transition: all 0.3s ease;
}

.about-section.show {
    display: block;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    text-align: left;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 20px;
}

.about-text h3 {
    font-size: 24px;
    color: #fff;
    margin: 30px 0 15px 0;
    font-weight: 600;
}

.about-text ul {
    margin: 20px 0;
    padding-left: 20px;
}

.about-text ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 8px;
}

/* Scroll Effect */
.header.scrolled {
    background: rgba(19, 18, 18, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #094c23;
    box-shadow: 0 2px 20px rgba(9,76,35,0.15);
}

.header.scrolled .nav-wrapper {
    padding: 4px 0; /* Make header more compact when scrolled */
}

.header.scrolled .logo-img {
    height: 35px; /* Slightly smaller logo when scrolled */
}

.header.scrolled .logo h1 {
    font-size: 20px; /* Slightly smaller logo when scrolled */
}

/* Base color */
:root {
    --primary-color: #fff;
    --primary-hover: #fff;
}

/* Replace all direct color references */
.nav-link {
    color: #fff;
}

.nav-link:hover {
    color: #fff;
}

.header {
    box-shadow: 0 2px 20px rgba(9,76,35,0.1);
    border-bottom: 1px solid #fff;
}

.hero-title {
    color: #fff;
}

.cta-button {
    color: #fff;
}

.services-section {
    box-shadow: 0 5px 20px rgba(9,76,35,0.1);
}

.service-card {
    border: none; /* Removed green border */
    box-shadow: 0 5px 20px rgba(0,0,0,0.2); /* Changed to black shadow */
}

.service-title {
    color: #fff;
}

.portfolio-filter button {
    background: #fff;
}

.portfolio-filter button:hover {
    background: #fff;
}

.testimonial-section {
    box-shadow: 0 -5px 20px rgba(9,76,35,0.1);
    border-top: 1px solid #fff;
}

.testimonial-quote {
    background: #fff;
}

.client-name {
    color: #fff;
}

.team-member-name {
    color: #fff;
}

.contact-form {
    border: 1px solid #094c23;
    box-shadow: 0 5px 20px rgba(9,76,35,0.1);
}

.form-control:focus {
    box-shadow: 0 10px 30px rgba(9,76,35,0.15);
}

.blog-title {
    color: #fff;
}

.read-more {
    color: #fff;
    background: #111111;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.read-more:hover {
    background: #094c23;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(9, 76, 35, 0.4);
}

.pagination .page-link {
    border: 1px solid #094c23;
    color: #fff;
}

.pagination .page-link:hover {
    box-shadow: 0 0 5px rgba(9,76,35,0.3);
}

.social-links a {
    border: 1px solid #094c23;
    color: #fff;
}

.social-links a:hover {
    background: #fff;
}

.footer-link {
    border: 1px solid #094c23;
    color: #fff;
}

.footer-link:hover {
    background: #fff;
}

.newsletter-form {
    border: 1px solid #094c23;
}

.copyright {
    color: #fff;
}

.card {
    box-shadow: 0 2px 15px rgba(9,76,35,0.1);
    border: 1px solid #094c23;
}

.card-title {
    color: #fff;
}

/* No badge styles needed */

.section-divider {
    border-top: 1px solid #094c23;
}

.stats-number {
    color: #fff;
}



.portfolio-title {
    color: #fff;
}

.contact-info {
}

.contact-method {
    color: #fff;
}

.footer {
    border-top: 1px solid #094c23;
    border-bottom: 1px solid #094c23;
}

.footer-title {
    color: #fff;
}

.mobile-menu {
    border-bottom: 1px solid #094c23;
}

.menu-item {
    color: #fff;
}

.dropdown-menu {
    box-shadow: 0 5px 20px rgba(9,76,35,0.1);
    border: 1px solid #094c23;
}

.dropdown-item:hover {
    background: #fff;
}

.alert-success {
    color: #fff;
}

.btn-outline-primary {
    border: 2px solid #094c23;
    color: #fff;
}

.btn-outline-primary:hover {
    background: #fff;
}

.tag {
    border: 1px solid #094c23;
}

.author-name {
    color: #fff;
}

.comment-author {
    color: #fff;
}

.sidebar-widget {
    box-shadow: 0 5px 20px rgba(9,76,35,0.1);
    border: 1px solid #094c23;
}

.top-bar {
    border-top: 1px solid #094c23;
}

.search-button {
    color: #fff;
}

.sticky-header {
    border-bottom: 1px solid #094c23;
    box-shadow: 0 2px 20px rgba(9,76,35,0.15);
}

/* Tablet responsive styles - Enable hamburger menu */
@media (max-width: 1024px) {
    /* Hide top contact bar on tablet and smaller devices - with higher specificity */
    .top-contact-bar {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important;
        opacity: 0 !important;
    }
    
    /* Mobile contact section - hidden by default, only shown in hamburger menu */
    .mobile-contact-section {
        display: none;
        padding: 20px 0 10px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 10px;
    }
    
    /* Show mobile contact section when hamburger menu is active */
    .navbar.mobile-active .mobile-contact-section {
        display: block;
    }
    
    .mobile-contact-info {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .mobile-contact-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 0;
        color: #fff;
        font-size: 14px;
        line-height: 1.4;
    }
    
    .mobile-contact-item i {
        color: #fff;
        font-size: 12px;
        background: #094c23;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-top: 2px;
    }
    
    .mobile-contact-item span {
        color: #fff;
        font-size: 13px;
        line-height: 1.3;
    }
    
    .mobile-social-icons {
        display: flex;
        gap: 12px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .mobile-social-icon {
        color: #fff;
        font-size: 14px;
        background: #094c23;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .mobile-social-icon:hover {
        color: #fff;
        background: #0a5c2a;
        transform: scale(1.1);
    }
    
    .hero-section {
        height: 100vh; /* Ensure full height on tablet too */
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 0 0 15px 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        overflow: hidden;
        transform: translateY(-20px);
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1001; /* Ensure navbar is above all content */
    }
    
    .navbar.mobile-active {
        display: block !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 0 0 15px 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        padding: 0;
        overflow: hidden;
        transform: translateY(0);
        opacity: 1;
        z-index: 1001; /* Ensure active navbar is above all content */
    }
    
    .navbar.mobile-active .nav-menu {
        flex-direction: column;
        gap: 0;
        background: transparent;
        padding: 20px;
    }
    
    .navbar.mobile-active .nav-menu a {
        color: #ffffff !important;
        font-size: 16px;
        font-weight: 500;
        padding: 15px 0;
        border-bottom: 1px solid #094c23;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .navbar.mobile-active .nav-menu a:last-child {
        border-bottom: none;
    }
    
    .navbar.mobile-active .nav-menu a:hover {
        color: #fff !important;
        padding-left: 10px;
    }
    
    .mobile-menu-toggle {
        position: relative;
        z-index: 1002; /* Ensure toggle button is above navbar */
    }
    
    .navbar {
        display: none;
    }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 72px;
        letter-spacing: -2px;
    }
    
    .hero-content p {
        font-size: 12px;
    }
}

/* Add animation for text transitions */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1, .hero-content p {
    animation: fadeInUp 1s ease-out forwards;
}

/* Increase hero content size for desktop/larger screens */
@media (min-width: 1025px) {
    .hero-content h2 {
        font-size: 55px !important;
        line-height: 1.1;
    }
    
    .hero-content p {
        font-size: 18px !important;
        max-width: 600px !important;
        line-height: 1.6;
        margin-bottom: 25px !important;
    }
    
    .btn-primary {
        padding: 12px 30px !important;
        font-size: 16px !important;
    }
}

@media (min-width: 1200px) {
    .hero-content h2 {
        font-size: 65px !important;
        line-height: 1.1;
    }
    
    .hero-content p {
        font-size: 20px !important;
        max-width: 700px !important;
    }
}

/* Responsive adjustments */
@media (max-width: 1600px) {
    .hero-content h1 {
        font-size: 108px;
    }
}

/* Portfolio Responsive Styles */
@media (max-width: 1200px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 968px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .portfolio-image {
        height: 300px;
    }
    
    .portfolio-content h3 {
        font-size: 16px;
    }
    
    .portfolio-content p {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .portfolio-image {
        height: 280px;
    }
    
    .portfolio-icon {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .portfolio-content {
        padding: 15px;
    }
    
    .portfolio-content h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .portfolio-content p {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .project-details {
        gap: 8px;
    }
    
    .project-year,
    .project-location {
        padding: 3px 6px;
        font-size: 9px;
    }
}

/* Sponsors Section Styles */
.sponsors-section {
    padding: 40px 0;
    background: #2c2c2c;
}

.sponsors-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.sponsors-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
    padding: 15px 0;
}

.sponsor-slide {
    flex: 0 0 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 0;
    padding: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    min-height: 80px;
}

.sponsor-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.sponsor-slide img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.sponsor-slide:hover img {
    filter: grayscale(0%);
}

.sponsors-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    width: 100%;
    pointer-events: none;
}

.sponsors-prev,
.sponsors-next {
    background: #fff;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    pointer-events: all;
    margin: 0 -25px;
    z-index: 10;
}

.sponsors-prev:hover,
.sponsors-next:hover {
    background: #fff;
    transform: scale(1.1);
}

.sponsors-prev {
    left: 0;
}

.sponsors-next {
    right: 0;
}

/* Responsive Sponsors Carousel */
@media (max-width: 768px) {
    .sponsors-section {
        padding: 30px 0;
    }
    
    .sponsors-slider {
        gap: 20px;
    }
    
    .sponsor-slide {
        flex: 0 0 140px;
        padding: 12px;
        min-height: 70px;
        border-radius: 0;
    }
    
    .sponsor-slide img {
        max-height: 45px;
    }
    
    .sponsors-prev,
    .sponsors-next {
        width: 40px;
        height: 40px;
        font-size: 14px;
        margin: 0 -20px;
    }
}

/* Force hamburger menu background to deep grey with highest specificity */
@media (max-width: 1024px) {
    .navbar.mobile-active {
        background: #1a1a1a !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6) !important;
    }
}

@media (max-width: 768px) {
    .navbar.mobile-active {
        background: #1a1a1a !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6) !important;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #094c23;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(9, 76, 35, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: #0a5c2a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(9, 76, 35, 0.4);
}

.scroll-to-top:active {
    transform: translateY(0);
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

/* Book Opening Animation Effect */
@keyframes bookOpen {
    0% {
        opacity: 0;
        transform: perspective(1200px) rotateY(-90deg) scale(0.8);
        transform-origin: left center;
    }
    50% {
        opacity: 0.7;
        transform: perspective(1200px) rotateY(-45deg) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: perspective(1200px) rotateY(0deg) scale(1);
        transform-origin: left center;
    }
}

/* Initial state for portfolio cards only - hidden and ready for book flip animation */
.portfolio-card {
    opacity: 0;
    transform: perspective(1200px) rotateY(-90deg) scale(0.8);
    transform-origin: left center;
    transition: none;
}

/* Other cards use normal visibility - no book flip animation */
.service-card,
.blog-post,
.team-member,
.testimonial-card {
    opacity: 1;
    transform: none;
    transition: all 0.3s ease;
}

/* Animation trigger class */
.card-animate {
    animation: bookOpen 0.8s ease-out forwards;
}

/* Stagger animation for multiple cards in same section */
.card-animate:nth-child(1) { animation-delay: 0s; }
.card-animate:nth-child(2) { animation-delay: 0.1s; }
.card-animate:nth-child(3) { animation-delay: 0.2s; }
.card-animate:nth-child(4) { animation-delay: 0.3s; }
.card-animate:nth-child(5) { animation-delay: 0.4s; }
.card-animate:nth-child(6) { animation-delay: 0.5s; }
.card-animate:nth-child(7) { animation-delay: 0.6s; }
.card-animate:nth-child(8) { animation-delay: 0.7s; }

/* Testimonial cards use normal visibility - no book flip animation */
.testimonial-slide.active .testimonial-card {
    opacity: 1;
    transform: none;
}

/* ========================
   NEWSLETTER SECTION
======================== */
.newsletter-section {
    background: linear-gradient(135deg, #094c23, #0a5c2a);
    padding: 60px 0;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.newsletter-text h3 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
}

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

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    outline: none;
    background: rgba(255, 255, 255, 0.9);
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form button {
    background: #fff;
    border: none;
    color: #094c23;
    padding: 15px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Newsletter responsive styles */
@media (max-width: 968px) {
    .newsletter-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .newsletter-form {
        flex-direction: column;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 40px 0;
    }
    
    .newsletter-text h3 {
        font-size: 24px;
    }
}

/* Modern Footer Styles */
.footer {
    position: relative;
    background: #1a1a1a;
    color: #fff;
    overflow: hidden;
}

.footer-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.footer-waves svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.footer-waves .parallax > use {
    animation: wave-animation 25s cubic-bezier(.55,.5,.45,.5) infinite;
    fill: rgba(255,255,255,0.05);
}

.footer-waves .parallax > use:nth-child(1) { animation-delay: -2s; }
.footer-waves .parallax > use:nth-child(2) { animation-delay: -3s; opacity: 0.5; }
.footer-waves .parallax > use:nth-child(3) { animation-delay: -4s; opacity: 0.3; }
.footer-waves .parallax > use:nth-child(4) { animation-delay: -5s; opacity: 0.2; }

@keyframes wave-animation {
    0% { transform: translateX(-90px); }
    100% { transform: translateX(85px); }
}

.footer-content {
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-col {
    padding: 0 15px;
}

.footer-col h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    font-weight: 600;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 30px;
    height: 2px;
    background: var(--primary-color, #094C23);
}

.company-info .footer-logo {
    width: 120px;
    margin-bottom: 20px;
}

.company-desc {
    color: #999;
    line-height: 1.6;
    margin-bottom: 25px;
}

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

.footer-social a {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.quick-links ul,
.services-links ul {
    list-style: none;
    padding: 0;
}

.quick-links li,
.services-links li {
    margin-bottom: 12px;
}

.quick-links a,
.services-links a {
    color: #999;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.quick-links a:hover,
.services-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.contact-details .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: #999;
}

.contact-item i {
    margin-right: 15px;
    color: var(--primary-color, #094C23);
}

.contact-item p {
    margin: 0;
    line-height: 1.5;
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
    margin-top: 40px;
}

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

.footer-bottom p {
    margin: 0;
    color: #999;
}

.admin-link {
    opacity: 0.3;
    font-size: 11px;
    color: #999;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.admin-link:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-col {
        padding: 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* Hero Carousel Navigation */
.hero-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.hero-prev,
.hero-next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-prev:hover,
.hero-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.hero-dots {
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: #fff;
    transform: scale(1.2);
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Hero Slide Transitions */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-nav {
        bottom: 20px;
        gap: 15px;
    }
    
    .hero-prev,
    .hero-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .hero-dot {
        width: 10px;
        height: 10px;
    }
}
