* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --kingdom-green: #0e1707;
            --kingdom-green: #213a10;
            --light-green: #3a5f1f;
            --cream: #f8f6f0;
            --sand: #e8e3d5;
            --warm-white: #fdfcf9;
            --dark-gold: #977a1a;
            --gold: #d4af37;
            --light-gold: #e5c04a;
            --dark-text: #1a1a1a;
            --light-text: #666;
        }

        html {
            overflow-x: hidden !important;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            color: var(--dark-text);
            background-color: var(--warm-white);
            line-height: 1.6;
            overflow-x: hidden !important;
        }

        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: var(--kingdom-green);
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(33, 58, 16, 0.15);
        }

        a {
            color: var(--dark-gold);
            text-decoration: none;
            border-bottom: 0
        }

        a {
            color: var(--dark-gold);
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            letter-spacing: 0.5px;
            transition: color 0.3s ease;
            position: relative;
        }

        a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width 0.3s ease;
        }

        a:hover::after,
        a.active::after {
            width: 100%;
        }

        a:hover,
        a.active {
            color: var(--gold);
        }

        nav {
            max-width: 1460px;
            margin: 0 auto;
            display: flex;
            height: 92px;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 1rem;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo {
            height: 60px;
            width: auto;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        .nav-links a {
            color: var(--cream);
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            letter-spacing: 0.5px;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--light-gold);
        }

        /* Mobile Menu */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 6px;
        }

        .menu-toggle span {
            width: 30px;
            height: 3px;
            background: var(--warm-white);
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .logo-no-show {
            height: 60px;
            position: absolute;
            cursor: pointer;
            opacity: 0;
            transition: all 0.3s;
        }
        .logo-no-show:hover {
            opacity: 1;
        }
        .hero {
            margin-top: 92px;
            background: linear-gradient(135deg, var(--kingdom-green) 0%, var(--light-green) 100%);
            color: var(--cream);
            padding: 8rem 3rem 6rem;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 35px,
                rgba(255, 255, 255, 0.03) 35px,
                rgba(255, 255, 255, 0.03) 70px
            );
            pointer-events: none;
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 5rem;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: 2px;
            animation: slideInLeft 0.8s ease-out;
        }

        .hero p {
            font-size: 1.3rem;
            max-width: 600px;
            margin-bottom: 2.5rem;
            opacity: 0.95;
            animation: slideInLeft 0.8s ease-out 0.2s backwards;
        }

        .cta-button {
            display: inline-block;
            background: var(--gold);
            color: var(--kingdom-green);
            padding: 1.2rem 3rem;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
            animation: slideInLeft 0.8s ease-out 0.4s backwards;
            letter-spacing: 1px;
            cursor: pointer;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
            background: var(--light-gold);
        }

        /* Section Styling */
        section {
            padding: 6rem 3rem;
            /* max-width: 1400px; */
            margin: 0 auto;
        }

        .body-section {
            max-width: 1400px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 3.5rem;
            color: var(--kingdom-green);
            margin-bottom: 1rem;
            letter-spacing: 2px;
        }

        .section-header p {
            font-size: 1.2rem;
            color: var(--light-text);
            max-width: 700px;
            margin: 0 auto;
        }

        /* About Section */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text h3 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2rem;
            color: var(--kingdom-green);
            margin-bottom: 1.5rem;
            letter-spacing: 1px;
        }

        .about-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--light-text);
            margin-bottom: 1.5rem;
        }

        .about-image {
            background: var(--sand);
            height: 400px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2rem;
            color: var(--light-green);
            letter-spacing: 2px;
            box-shadow: 0 10px 40px rgba(33, 58, 16, 0.1);
        }

        /* Reviews Section - Carousel */
        .reviews {
            background: var(--cream);
        }

        .carousel-container {
            position: relative;
            /* max-width: 900px; */
            margin: 0 auto;
            padding: 0 80px;
        }

        .reviews-carousel {
            /* overflow: hidden; */
            position: relative;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }

        .reviews-track {
            display: flex;
            transform: translateX(0%);
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .review-card {
            min-width: 100%;
            max-width: 100%;
            background: var(--warm-white);
            padding: 3rem;
            border-radius: 12px;
            flex-shrink: 0;
            margin: 0px 5% 0px 0px;
            box-shadow: 0 6px 20px rgba(33, 58, 16, 0.4);
        }
        .review-container {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            margin-bottom: 1.5rem;
        }

        .review-header {
            font-weight: 700;
            font-size: 1.3rem;
            color: var(--kingdom-green);
        }

        .carousel-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: var(--kingdom-green);
            color: var(--cream);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(33, 58, 16, 0.3);
            z-index: 10;
        }

        .carousel-button:hover {
            background: var(--light-green);
            transform: translateY(-50%) scale(1.1);
            /* box-shadow: 0 6px 20px rgba(33, 58, 16, 0.4); */
        }

        .carousel-button:active {
            transform: translateY(-50%) scale(0.95);
        }

        .carousel-button.prev {
            left: 0;
        }

        .carousel-button.next {
            right: 0;
        }

        .left-arrow {
            border-top: solid 2px #ffffff;
            border-left: solid 2px #ffffff;
            position: relative;
            left: 3px;
            width: 14px;
            height: 14px;
            transform: rotate(-45deg);
        }
        
        .right-arrow {
            border-top: solid 2px #ffffff;
            border-right: solid 2px #ffffff;
            position: relative;
            left: -3px;
            width: 14px;
            height: 14px;
            transform: rotate(45deg);
        }

        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 2.5rem;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--sand);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .dot.active {
            background: var(--kingdom-green);
            transform: scale(1.2);
        }

        .dot:hover {
            background: var(--light-green);
        }

        .stars {
            color: var(--gold);
            font-size: 1.3rem;
        }

        .review-text {
            font-size: 1rem;
            line-height: 1.8;
            color: var(--light-text);
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .reviewer-name {
            font-weight: 700;
            color: var(--kingdom-green);
            font-size: 1.1rem;
        }

        /* Handyman Services Section */
        .services-grid {
            display: grid;
            gap: 2rem;
        }

        .service-item {
            background: var(--warm-white);
            border: 2px solid var(--sand);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .service-item:hover {
            border-color: var(--light-green);
            box-shadow: 0 10px 40px rgba(33, 58, 16, 0.15);
        }

        .service-header {
            background: var(--kingdom-green);
            color: var(--cream);
            padding: 2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: 0.3s ease; /*used to ahve background*/
        }

        .service-header:hover {
            background: var(--light-green);
        }

        .service-header h3 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.8rem;
            letter-spacing: 1px;
        }

        .service-toggle {
            font-size: 2rem;
            transition: transform 0.3s ease;
        }

        .service-item.active .service-toggle {
            transform: rotate(45deg);
        }

        .service-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }

        .service-item.active .service-content {
            max-height: 1000px;
            padding: 2rem;
        }

        .service-content p {
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--light-text);
            margin-bottom: 1rem;
        }

        .service-content strong {
            color: var(--kingdom-green);
            display: block;
            /* margin-top: 1.5rem; */
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .service-note {
            background: var(--sand);
            padding: 1rem 1.5rem;
            border-radius: 8px;
            margin-top: 1.5rem;
            font-style: italic;
            color: var(--light-green);
            font-size: 0.95rem;
        }

        /* Footer */
        footer {
            background: var(--kingdom-green);
            color: var(--kingdom-dark-green);
            padding: 2rem 3rem 2rem;
            text-align: center;
        }

        .footer-content {
            width: 100%;
            margin: 0 auto;
        }

        .copyright {
            opacity: 0.8;
        }

        /* Animations */
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 1000px) {

            .logo {
                height: 40px;
                width: auto;
            }

            .logo-no-show {
                height: 40px;
            }
            
            nav {
                padding: 1rem 2rem;
                margin: 0px;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 70%;
                background: var(--kingdom-green);
                backdrop-filter: blur(10px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 3rem;
                transition: right 0.4s ease;
                padding: 2rem;
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links a {
                font-size: 3.2rem;
            }

            .menu-toggle {
                display: flex;
                z-index: 1001;
            }

            .menu-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 8px);
            }

            .menu-toggle.active span:nth-child(2) {
                opacity: 0;
            }

            .menu-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -8px);
            }

        }

        /* Responsive Design */
        @media (max-width: 768px) {

            .logo {
                height: 40px;
                width: auto;
            }

            .logo-no-show {
                height: 40px;
            }

            .hero {
                padding: 5rem 2rem 4rem;
            }

            .hero h1 {
                font-size: 3rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            section {
                padding: 4rem 2rem;
            }

            .section-header h2 {
                font-size: 2.5rem;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .carousel-button {
                display: none;
            }

            .carousel-container {
                position: relative;
                min-width: 316px;
                margin: 0 auto;
                padding: 0px;
            }

            .carousel-button {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .review-card {
                padding: 2rem;
            }

            .review-header {
                font-size: 1rem;
            }

            .review-text {
                font-size: 0.8rem;
            }

            .reviewer-name {
                font-size: 0.8rem;
            }
        }

        /* Responsive Design */
        @media (max-width: 600px) {
            .nav-links {
                width: 100%;
            }
        }

        /* Responsive Design */
        @media (max-width: 400px) {
            .logo {
                height: 35px;
                width: auto;
            }

            .logo-no-show {
                height: 35px;
            }
        }