/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-green: #1B201C;
    --cream: #FFF4DC;
    --gold: #CBB484;
    --black: #000000;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 50px 0;
}

.navbar.scrolled {
    background-color: var(--dark-green);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 30px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    text-decoration: none !important;
}

.nav-link {
    color: var(--white);
    text-decoration: none !important;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
    text-decoration: none !important;
}

.nav-link,
.nav-link:hover,
.nav-link:focus,
.nav-link:active {
    text-decoration: none !important;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 70px;
}

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

.social-icons a {
    color: var(--white);
    font-size: 16px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--gold);
}

.btn-contact {
    background-color: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 10px 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background-color: var(--gold);
    color: var(--dark-green);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

/* ===================================
   HERO SECTION - CENTERED WITH SERIF FONT
   =================================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/Homepageherosection.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Slight overlay for text readability */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
     padding: 0 40px; /* Added 80px top padding */
    padding-top: 50px;
    animation: fadeInUp 1.5s ease;
}


.hero-subtitle {
    max-width: 900px;
    color: var(--white);
    font-size: 16px; /* Increased from 14px for better readability */
    font-weight: 300;
    letter-spacing: 0.5px; /* Reduced from 2px */
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.7; /* Added for better line spacing */
}
.hero-title {
     padding: 80px 40px 0 40px; /* Added 80px top padding */
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 50px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 30px;
    line-height: 1.3;
    color: var(--white);
}

.hero-tagline {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: var(--white);
    opacity: 0.95;
}

.btn-primary {
    background-color: var(--dark-green);
    color: var(--gold);
    padding: 15px 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background-color: var(--gold);
    color: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* ===================================
   MARQUEE SECTIONS
   =================================== */
.marquee-section {
    background-color: #9FA8AA;
    padding: 25px 0;
    overflow: hidden;
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee 10s linear infinite;
}

.marquee-content span {
    display: inline-block;
    padding: 0 30px;
    font-size: 16px;
    font-weight: 40;
    letter-spacing: 2px;
    color: #ffffff;
}

.marquee-reverse .marquee-content {
    animation: marqueeReverse 20s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes marqueeReverse {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials-section {
    padding: 100px 0;
    background-color: #F1EFEA;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.testimonial-card {
    text-align: center;
    padding: 30px;
}

.testimonial-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--gold);
}

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

.testimonial-card h3 {
    font-size: 20px;
    font-weight: 1000;
    margin-bottom: 10px;
    color: var(--dark-green);
}

.testimonial-title {
    font-size: 12px;
    color: var(--dark-green);
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--black);
    margin-bottom: 20px;
}

.testimonial-quote {
    font-size: 13px;
    line-height: 1.7;
    color: #666;
    font-style: italic;
}

.btn-secondary {
    background-color: var(--dark-green);
    color: var(--gold);
    border: none;
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
}

.btn-secondary:hover {
    background-color: var(--gold);
    color: var(--dark-green);
    transform: translateY(-2px);
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 0 350px 0;
    margin-bottom: -330px;
}

.services-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background-image: url('../assets/images/servicesbg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.services-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
}

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

.services-content {
    position: relative;
    z-index: 2;
}

.services-content h2 {
    font-size: 80px;
    color: var(--white);
    font-weight: 700;
    letter-spacing: 5px;
    margin-top: 70px;
    margin-bottom: 40px;
}

/* ===================================
   STATS SECTION
   =================================== */
.stats-section {
    position: relative;
    z-index: 10;
    padding: 0 0 40px 0;
    background-color: transparent;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.stat-card {
    background-color: var(--white);
    padding: 15px 5px;
    text-align: center;
    border-radius: 1px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    border-top: 4px solid var(--gold);
}

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

.stat-card h3 {
    font-size: 60px;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 20px;
}

.stat-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ===================================
   WHO IS THIS FOR SECTION - CAROUSEL
   =================================== */
.who-section {
    padding: 100px 0;
    background-color: #F1EFEA;
    overflow: hidden;
}

.section-title {
    font-size: 50px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: var(--dark-green);
    letter-spacing: 3px;
}

.section-subtitle {
    font-size: 16px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--black);
    letter-spacing: 2px;
}

.carousel-container {
    overflow: hidden;
    margin-bottom: 40px;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    gap: 30px;
    animation: carouselScroll 40s linear infinite;
}

.carousel-track.paused {
    animation-play-state: paused !important;
}

.carousel-card {
    min-width: 300px;
    max-width: 300px;
    flex-shrink: 0;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.carousel-card h3 {
    padding: 20px 20px 10px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    color: var(--dark-green);
    letter-spacing: 1px;
}

.carousel-card p {
    padding: 0 20px 20px;
    font-size: 14px;
    text-align: center;
    line-height: 1.6;
    color: var(--black);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--gold);
    transform: scale(1.2);
}

.dot:hover {
    background-color: var(--gold);
    opacity: 0.8;
}

@keyframes carouselScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-4 * (300px + 30px)));
    }
}

/* ===================================
   MEET CHIAMAKA SECTION
   =================================== */
.meet-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.meet-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/meetChibg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.meet-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.meet-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.meet-image {
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
}

.meet-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

.meet-content h2 {
    font-size: 70px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
    line-height: 1.1;
    margin-bottom: 30px;
}

.meet-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 40px;
}

.btn-tertiary {
    background-color: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-tertiary:hover {
    background-color: var(--gold);
    color: var(--dark-green);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background-color: var(--dark-green);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: var(--gold);
}

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

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-column ul {
    list-style: none;
}

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

.footer-column ul li a,
.footer-column p {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-column ul li a:hover {
    color: var(--gold);
}

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

.footer-social a {
    color: var(--white);
    font-size: 18px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--gold);
}

.footer-bottom {
    background-color: #9FA8AA;
    padding: 30px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--white);
    letter-spacing: 1px;
}

.footer-bottom a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-animate {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-animate.animate-ready {
    opacity: 0;
    transform: translateY(30px);
}

.section-animate.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ===================================
   MOBILE-ONLY ELEMENTS
   =================================== */
.mobile-only {
    display: none !important;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 25px;
    }
    
    .hero-title {
        font-size: 55px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-section {
        min-height: 80vh;
        padding: 80px 0 250px 0;
        margin-bottom: -200px;
    }
    
    .services-content h2 {
        font-size: 60px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .meet-container {
        gap: 40px;
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-menu,
    .nav-right {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .mobile-only {
        display: block !important;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 12px;
    }
    
    .hero-tagline {
        font-size: 15px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .services-section {
        min-height: 70vh;
        padding: 80px 0 200px 0;
        margin-bottom: -150px;
    }
    
    .services-content h2 {
        font-size: 45px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-card {
        padding: 40px 20px;
    }
    
    .section-title {
        font-size: 35px;
    }

    .section-subtitle {
        font-size: 14px;
        padding: 0 20px;
    }

    .carousel-track {
        gap: 20px !important;
        animation: carouselScrollMobile 30s linear infinite !important;
    }

    .carousel-card {
        min-width: 280px !important;
        max-width: 280px !important;
        flex-shrink: 0 !important;
    }

    .card-image {
        height: 200px;
    }

    .carousel-card h3 {
        font-size: 16px;
        padding: 15px 15px 10px;
    }

    .carousel-card p {
        font-size: 13px;
        padding: 0 15px 15px;
    }

    .carousel-dots {
        display: none;
    }

    @keyframes carouselScrollMobile {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-4 * (280px + 20px)));
        }
    }
    
    .meet-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .meet-content h2 {
        font-size: 45px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-tagline {
        font-size: 14px;
    }

    .services-content h2 {
        font-size: 40px;
    }
    
    .meet-content h2 {
        font-size: 35px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 12px;
    }

    .carousel-track {
        gap: 15px !important;
        animation: carouselScrollSmall 25s linear infinite !important;
    }

    .carousel-card {
        min-width: 260px !important;
        max-width: 260px !important;
    }

    .card-image {
        height: 180px;
    }

    .carousel-card h3 {
        font-size: 15px;
    }

    .carousel-card p {
        font-size: 12px;
    }

    @keyframes carouselScrollSmall {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-4 * (260px + 15px)));
        }
    }
}