@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Playfair+Display:ital,wght@1,400&display=swap');

:root {
    --logo-green-dark: #164D18;
    --logo-orange: #FD7801;
    --logo-lime: #80C20A;
    --logo-red: #E70501;
    --logo-yellow: #FDEC15;
    --logo-light: #E1F655;
    
    --primary-color: var(--logo-green-dark);
    --accent-color: var(--logo-orange);
    --bg-dark: #0a150a; /* Deep green-black background */
    --text-white: #ffffff;
    --text-muted: #a0b0a0;
    --nav-bg: #ffffff;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Hide default cursor for custom cursor */
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* Custom Cursor Ring */
.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 2px solid var(--logo-orange);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s ease-out, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
    mix-blend-mode: difference;
}

.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: var(--logo-lime);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
}

/* Header Top Bar */
.top-bar {
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    color: #333;
}

.logo-container {
    position: relative;
    height: 60px; 
    width: 250px; 
}

.logo-container img {
    height: 110px; /* Large visible size */
    position: absolute;
    top: -25px; /* Centered vertically within the 60px container */
    left: 0;
    z-index: 100;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
    transition: var(--transition-smooth);
    animation: logoReveal 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes logoReveal {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.logo-container img:hover {
    transform: scale(1.05);
}

.contact-info {
    display: flex;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-item i {
    font-size: 24px;
    color: var(--accent-color);
}

.info-text span {
    display: block;
    font-size: 12px;
    color: #888;
}

.info-text a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

.info-text a:hover {
    color: var(--logo-orange);
}

.info-text strong {
    font-size: 14px;
    font-weight: 600;
}

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

.social-links a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
}

/* Navbar */
.main-nav {
    background: var(--nav-bg);
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    padding: 30px 20px;
    display: block;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 19px;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 25px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--logo-lime);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    transform: scaleX(1);
}

.nav-actions {
    display: flex;
    align-items: center;
}

.search-btn {
    padding: 20px;
    border-left: 1px solid #eee;
    color: #333;
    cursor: none;
}

.book-btn {
    background: var(--logo-green-dark);
    color: white;
    padding: 30px 40px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    transition: var(--transition-smooth);
    border-left: 1px solid rgba(255,255,255,0.1);
}

.book-btn:hover {
    background: var(--logo-orange);
    color: white;
}

/* Hero Section */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    padding: 40px;
    z-index: 2;
}

.hero-icon {
    font-size: 50px;
    color: var(--logo-orange);
    margin-bottom: 20px;
    opacity: 0;
    transform: scale(0.5);
    animation: fadeInScale 0.8s forwards 0.3s;
}

.hero-subtitle {
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--logo-lime);
    margin-bottom: 20px;
    display: block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInSlideUp 0.8s forwards 0.5s;
}

.hero-title {
    font-size: 100px; /* Increased from 84px */
    font-weight: 700;
    line-height: 1;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInSlideUp 0.8s forwards 0.7s;
}

.hero-title span {
    color: var(--logo-orange);
    font-family: 'Playfair Display', serif; /* Use a serif font for the ampersand */
    font-style: italic;
    font-weight: 400;
}


/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
}

.scroll-indicator span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse {
    width: 20px;
    height: 35px;
    border: 2px solid white;
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 2px;
    height: 6px;
    background: white;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

/* Menu Toggle (Hamburger) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: none;
    z-index: 1001;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--logo-green-dark);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .contact-info {
        display: none; /* Hide detailed contact info on smaller screens */
    }
    
    .hero-title {
        font-size: 60px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        padding: 15px 5%;
    }

    .logo-container {
        width: 180px;
        height: 40px;
    }

    .logo-container img {
        height: 70px;
        top: -15px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(380px, 86%);
        height: 100vh;
        height: 100dvh;
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: var(--transition-smooth);
        z-index: 2000;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 110px 24px 40px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li a {
        padding: 15px 0;
        font-size: 20px;
    }

    .nav-links li a::after {
        bottom: 10px;
        left: 0;
        right: 0;
    }

    .nav-actions {
        display: none; /* Hide search and book button on small mobile nav */
    }

    .menu-toggle {
        z-index: 2001;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .discover-btn {
        padding: 15px 30px;
        font-size: 12px;
    }

    .floating-border {
        width: 90%;
        height: 70%;
    }

    /* Animation for Hamburger to X */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

@media (max-width: 600px) {
    .about,
    .services,
    .features-grid,
    .expectations,
    .projects,
    .testimonials {
        padding: 90px 0;
    }

    .section-title {
        font-size: 42px;
        line-height: 1.12;
    }

    .section-subtitle {
        font-size: 13px;
        letter-spacing: 2px;
    }

    .read-more-btn {
        padding: 18px 28px;
        font-size: 14px;
    }

    .service-link {
        font-size: 13px;
    }
}


.discover-btn {
    display: inline-block;
    padding: 20px 45px;
    background: #fff;
    color: #333;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    transition: var(--transition-smooth);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInSlideUp 0.8s forwards 0.9s;
}

.discover-btn:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-5px);
}

/* Floating Elements Animation */
.floating-border {
    position: absolute;
    width: 600px;
    height: 400px;
    border: 1px solid rgba(255,255,255,0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.floating-border::before,
.floating-border::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid var(--accent-color);
}

.floating-border::before {
    top: -3px;
    left: -3px;
    border-right: 0;
    border-bottom: 0;
}

.floating-border::after {
    bottom: -3px;
    right: -3px;
    border-left: 0;
    border-top: 0;
}

/* Animations */
@keyframes fadeInSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effects for cursor */
.hover-target:hover ~ .cursor-ring {
    width: 60px;
    height: 60px;
    background: rgba(199, 161, 122, 0.1);
}

/* About Section */
.container {
    max-width: 1400px; /* Increased from 1200px */
    margin: 0 auto;
    padding: 0 5%;
}

.about {
    padding: 100px 0;
    background-color: #fff;
    color: #333;
    overflow: hidden;
}

.about-container {
    display: flex;
    gap: 120px; /* Increased from 80px */
    align-items: center;
}

.about-content {
    flex: 1;
}

.section-subtitle {
    font-size: 16px; /* Increased from 14px */
    font-weight: 700;
    color: var(--logo-orange);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.section-title {
    font-size: 60px; /* Increased from 48px */
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--logo-green-dark);
}

.section-title span {
    color: var(--logo-orange);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
}

.about-experience {
    font-size: 18px;
    font-weight: 600;
    color: var(--logo-orange);
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px; /* Increased padding */
    border: 1px solid #eee;
    border-radius: 60px 0 60px 60px;
    transition: var(--transition-smooth);
}

.feature-box:hover {
    border-color: var(--logo-lime);
    background: #f9fff9;
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 32px; /* Increased from 24px */
    color: var(--logo-orange);
}

.feature-box h3 {
    font-size: 18px; /* Increased from 14px */
    font-weight: 700;
}

.about-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 18px; /* Increased from default */
}

.about-footer {
    display: flex;
    align-items: center;
    gap: 40px;
}

.read-more-btn {
    padding: 25px 45px; /* Increased from 20px 35px */
    background: var(--logo-green-dark);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px; /* Increased from 14px */
    transition: var(--transition-smooth);
}

.read-more-btn:hover {
    background: var(--logo-orange);
    transform: translateY(-5px);
}

.about-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 70px; /* Increased from 50px */
    height: 70px; /* Increased from 50px */
    background: var(--logo-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px; /* Increased from 20px */
}

.contact-text span {
    display: block;
    font-size: 12px;
    color: #888;
}

.contact-text strong {
    font-size: 16px;
    color: var(--logo-green-dark);
}

/* About Images */
.about-images {
    flex: 1;
    position: relative;
    padding-right: 50px;
}

.image-wrapper {
    overflow: hidden;
    border-radius: 50px 0 50px 50px;
}

.main-img {
    width: 90%; /* Increased from 80% */
    margin-left: auto;
}

.small-img {
    position: absolute;
    bottom: -50px; /* Adjusted for larger size */
    left: -20px;
    width: 60%; /* Increased from 50% */
    border: 15px solid #fff; /* Thicker border for premium look */
}


.about-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.about-images img:hover {
    transform: scale(1.1);
}

.counter-box {
    position: absolute;
    bottom: -80px; /* Adjusted for size */
    right: -20px;
    background: var(--logo-green-dark);
    color: #fff;
    padding: 40px 50px; /* Increased padding */
    border-radius: 60px 0 60px 60px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    z-index: 10;
}

.counter-box i {
    font-size: 50px; /* Increased from 40px */
    color: var(--logo-lime);
}

.counter-text h2 {
    font-size: 42px; /* Increased from 32px */
    font-weight: 700;
}

.counter-text span {
    font-size: 14px; /* Increased from 12px */
    opacity: 0.8;
}

/* Features Grid Section */
.features-grid {
    padding: 120px 0; /* Increased from 100px */
    background-color: #f8f8f8;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px; /* Increased from 30px */
}

.grid-item {
    background: #fff;
    padding: 60px 50px; /* Increased from 50px 40px */
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    border-radius: 10px; /* Added slight rounding */
}

.grid-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.08);
}

.grid-icon {
    font-size: 55px; /* Increased from 45px */
    color: var(--logo-orange);
    margin-bottom: 30px;
    transition: var(--transition-smooth);
}


.grid-item:hover .grid-icon {
    transform: scale(1.1) rotate(10deg);
    color: var(--logo-lime);
}

.grid-item h3 {
    font-size: 24px; /* Increased from 20px */
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--logo-green-dark);
}

.grid-item p {
    font-size: 16px; /* Increased from 14px */
    color: #777;
    line-height: 1.6;
    margin-bottom: 30px;
}

.grid-link {
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: #333;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.grid-item:hover .grid-link {
    background: var(--logo-orange);
    color: #fff;
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        gap: 60px;
    }

    .about-images {
        padding-right: 0;
        width: 100%;
    }

    .main-img {
        width: 100%;
        margin-left: 0;
    }

    .small-img {
        position: relative;
        bottom: auto;
        left: auto;
        width: 78%;
        margin: 18px auto 0;
        border-width: 12px;
    }

    .counter-box {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 24px auto 0;
        width: min(560px, 100%);
        justify-content: center;
        padding: 30px 34px;
    }
    
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .grid-container {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .small-img {
        width: 100%;
        border-width: 10px;
    }

    .counter-box {
        padding: 24px 24px;
        gap: 16px;
        border-radius: 36px 0 36px 36px;
    }

    .counter-box i {
        font-size: 38px;
    }

    .counter-text h2 {
        font-size: 34px;
    }
}

/* Services Section */
.services {
    padding: 120px 0;
    background-color: #f7f2ee; /* Premium light brown/beige */
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.service-card {
    background: #fff;
    transition: var(--transition-smooth);
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    border-bottom-color: var(--logo-orange);
    transform: translateY(-10px);
}

.service-img {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 5px;
}

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

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-icon {
    position: absolute;
    bottom: 0;
    left: 20px;
    width: 80px;
    height: 80px;
    background: #332d2a; /* Dark brown from image */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 2;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background: var(--logo-orange);
    transform: translateY(-10px);
}

.service-info {
    padding: 30px 20px;
    background: #fff;
}

.service-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--logo-green-dark);
    transition: var(--transition-smooth);
}

.service-card:hover .service-info h3 {
    color: var(--logo-orange);
}

.service-info p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--logo-green-dark);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-card:hover .service-link {
    color: var(--logo-orange);
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-img {
        height: 300px;
    }
}

/* Expectations Section */
.expectations {
    padding: 120px 0;
    background-color: #f8f8f8;
    overflow: hidden;
}

.expectations-container {
    display: flex;
    gap: 100px;
    align-items: center;
}

.expectations-visual {
    flex: 1;
    position: relative;
    height: 600px;
}

.decorative-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: #e5e5e5;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    z-index: 1;
}

.main-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 90%;
    z-index: 2;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}

.overlay-visual {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 45%;
    height: 45%;
    z-index: 3;
    border: 10px solid #fff;
    border-radius: 5px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.overlay-visual img, .main-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-badge {
    position: absolute;
    bottom: 10%;
    left: 60%;
    width: 150px;
    height: 150px;
    z-index: 10;
}

.badge-text {
    width: 100%;
    height: 100%;
    background: #3d3430;
    border-radius: 50%;
    animation: rotateCircle 15s linear infinite;
}

.badge-text svg {
    fill: #fff;
    width: 100%;
    height: 100%;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--logo-orange);
    font-size: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

@keyframes rotateCircle {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.expectations-content {
    flex: 1;
}

.expectations-lead {
    font-size: 20px;
    font-weight: 600;
    color: var(--logo-orange);
    margin-bottom: 30px;
    font-style: italic;
}

.expectations-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.exp-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.exp-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(253, 120, 1, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--logo-orange);
    font-size: 24px;
}

.exp-text h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--logo-green-dark);
}

.expectations-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 16px;
}

/* Skill Bars */
.skills-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.skill-item {
    width: 100%;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--logo-green-dark);
}

.skill-bar {
    width: 100%;
    height: 8px;
    background: #e5e5e5;
    border-radius: 4px;
    position: relative;
}

.skill-progress {
    height: 100%;
    background: var(--logo-orange);
    border-radius: 4px;
    position: relative;
    width: 0; /* Set to 0 for animation */
    transition: width 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.skill-item.visible .skill-progress {
    width: var(--progress-width);
}


@media (max-width: 992px) {
    .expectations-container {
        flex-direction: column;
        gap: 60px;
    }
    
    .expectations-visual {
        width: 100%;
        height: 500px;
    }
}

@media (max-width: 600px) {
    .expectations-visual {
        height: 380px;
    }

    .overlay-visual {
        top: 6%;
        right: 0;
        width: 62%;
        height: 48%;
        border-width: 8px;
    }

    .play-badge {
        width: 120px;
        height: 120px;
        left: 56%;
        bottom: 6%;
    }

    .play-icon {
        width: 52px;
        height: 52px;
        font-size: 18px;
    }

    .expectations-features {
        flex-direction: column;
        gap: 18px;
        margin-bottom: 28px;
    }

    .skills-container {
        gap: 22px;
    }
}

/* Successful Projects Section */
.projects {
    padding: 120px 0;
    background-color: #fff;
}

.projects-header {
    text-align: center;
    margin-bottom: 60px;
}

.project-showcase {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
}

.project-featured {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.featured-img-wrapper {
    flex: 1.5;
    height: 600px;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.featured-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-img-wrapper:hover img {
    transform: scale(1.05);
}

.brush-stroke {
    position: absolute;
    top: -20px;
    right: -50px;
    width: 300px;
    height: 200px;
    background: var(--logo-orange);
    opacity: 0.15;
    z-index: -1;
    mask-image: radial-gradient(circle, black 50%, transparent 100%);
    filter: blur(40px);
}

.project-content-box {
    flex: 1;
    background: #fff;
    padding: 60px;
    margin-left: -100px;
    z-index: 5;
    box-shadow: 0 40px 100px rgba(0,0,0,0.1);
    border-radius: 5px;
    transition: var(--transition-smooth);
}

.project-content-box h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--logo-green-dark);
}

.project-content-box p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
}

.project-content-box .read-more-btn {
    display: inline-block;
    padding: 20px 40px;
    background: #3d3430; /* Dark brown from image */
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.project-content-box .read-more-btn:hover {
    background: var(--logo-orange);
    transform: translateY(-5px);
}

.project-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.thumb-item {
    height: 150px;
    cursor: pointer;
    overflow: hidden;
    border-radius: 5px;
    border: 3px solid transparent;
    transition: var(--transition-smooth);
}

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

.thumb-item:hover img {
    transform: scale(1.1);
}

.thumb-item.active {
    border-color: var(--logo-orange);
}

@media (max-width: 992px) {
    .project-featured {
        flex-direction: column;
    }
    
    .featured-img-wrapper {
        width: 100%;
        height: 400px;
        flex: none;
    }
    
    .project-content-box {
        margin-left: 0;
        margin-top: -50px;
        width: 90%;
        padding: 40px;
    }
}

@media (max-width: 600px) {
    .project-thumbnails {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    color: var(--text-white);
    background:
        linear-gradient(90deg, rgba(10, 21, 10, 0.94) 0%, rgba(10, 21, 10, 0.84) 45%, rgba(10, 21, 10, 0.92) 100%),
        url('https://images.unsplash.com/photo-1523413307857-ef24c53571ee?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(800px circle at 20% 30%, rgba(253, 120, 1, 0.12), transparent 55%),
        radial-gradient(700px circle at 80% 70%, rgba(128, 194, 10, 0.10), transparent 60%);
    pointer-events: none;
}

.testimonials::after {
    content: '';
    position: absolute;
    inset: -30px;
    background:
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 2px, transparent 2px 14px);
    opacity: 0.15;
    pointer-events: none;
}

.testimonials-container {
    display: flex;
    gap: 90px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.testimonials-intro {
    flex: 0.95;
    max-width: 460px;
}

.testimonials .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.testimonials-title {
    font-size: 66px;
    font-weight: 700;
    line-height: 1.05;
    margin: 10px 0 16px;
}

.testimonials-title span {
    color: var(--logo-orange);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
}

.testimonials-line {
    width: 54px;
    height: 3px;
    border-radius: 3px;
    background: var(--logo-orange);
    opacity: 0.9;
    margin: 18px 0 32px;
}

.testimonials-copy {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.85;
    font-size: 18px;
    max-width: 420px;
}

.testimonials-stage {
    flex: 1.55;
    min-width: 0;
}

.testimonials-viewport {
    overflow: hidden;
    padding: 20px 10px 34px;
}

.testimonials-track {
    display: flex;
    gap: 40px;
    align-items: stretch;
    will-change: transform;
    transition: transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonials-track.no-anim {
    transition: none;
}

.testimonial-card {
    flex: 0 0 min(540px, 84vw);
    background: #fff;
    color: #2f2a28;
    border-radius: 22px;
    padding: 54px 50px 46px;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.28);
    transform-origin: center;
    transition: transform 720ms cubic-bezier(0.16, 1, 0.3, 1), opacity 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card.is-active {
    transform: translateY(-10px);
}

.testimonial-card.is-next {
    opacity: 0.96;
    transform: translateY(6px) scale(0.985);
}

.testimonial-quote-badge {
    position: absolute;
    top: -22px;
    left: 56px;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #e9e2dd;
    color: #7b6a63;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.12);
}

.testimonial-card.is-active .testimonial-quote-badge {
    background: var(--logo-orange);
    color: #fff;
    animation: testimonialQuotePop 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes testimonialQuotePop {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.75);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.testimonial-text {
    color: #6a6765;
    font-size: 18px;
    line-height: 1.9;
    margin-top: 6px;
}

.testimonial-divider {
    height: 1px;
    background: #ece4df;
    margin: 30px 0 26px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 18px;
}

.testimonial-avatar {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

.testimonial-avatar span {
    transform: translateY(1px);
}

.testimonial-avatar.avatar-1 {
    background: linear-gradient(135deg, var(--logo-orange), var(--logo-green-dark));
}

.testimonial-avatar.avatar-2 {
    background: linear-gradient(135deg, var(--logo-lime), var(--logo-green-dark));
}

.testimonial-avatar.avatar-3 {
    background: linear-gradient(135deg, var(--logo-orange), var(--logo-red));
}

.testimonial-avatar.avatar-4 {
    background: linear-gradient(135deg, var(--logo-yellow), var(--logo-green-dark));
}

.testimonial-name {
    font-size: 20px;
    font-weight: 800;
    color: #2f2a28;
    line-height: 1.2;
}

.testimonial-role {
    font-size: 12px;
    letter-spacing: 3px;
    margin-top: 4px;
    font-weight: 700;
    color: rgba(253, 120, 1, 0.75);
}

.testimonials-progress {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
    padding: 0 18px 0 0;
}

.testimonial-segment {
    border: 0;
    background: rgba(255, 255, 255, 0.20);
    height: 7px;
    width: 78px;
    border-radius: 999px;
    transition: width 520ms cubic-bezier(0.16, 1, 0.3, 1), background-color 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-segment.active {
    width: 125px;
    background: var(--logo-orange);
}

.testimonial-segment:focus-visible {
    outline: 3px solid rgba(128, 194, 10, 0.6);
    outline-offset: 6px;
}

@media (max-width: 1100px) {
    .testimonials-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 50px;
    }

    .testimonials-title {
        font-size: 54px;
    }

    .testimonials-progress {
        justify-content: flex-start;
        padding-right: 0;
    }
}

@media (max-width: 600px) {
    .testimonials {
        padding: 90px 0;
    }

    .testimonials-title {
        font-size: 44px;
    }

    .testimonial-card {
        padding: 48px 28px 36px;
    }

    .testimonial-quote-badge {
        left: 28px;
    }

    .testimonial-segment {
        width: 58px;
    }

    .testimonial-segment.active {
        width: 96px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .testimonials-track,
    .testimonial-card,
    .testimonial-segment {
        transition: none !important;
    }

    .testimonial-card.is-active {
        transform: none;
    }
}

/* Alternate reveal (different animation feel, same observer) */
.animate-on-scroll.alt-reveal {
    opacity: 0;
    transform: translateY(34px) scale(0.985);
    filter: blur(8px);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), filter 0.9s ease;
}

.animate-on-scroll.alt-reveal.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* Visually hidden (for accessibility labels) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Footer */
.site-footer {
    background: #12110f;
    color: rgba(255, 255, 255, 0.86);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px circle at 20% 10%, rgba(253, 120, 1, 0.12), transparent 55%),
        radial-gradient(800px circle at 85% 55%, rgba(128, 194, 10, 0.10), transparent 60%);
    pointer-events: none;
    opacity: 0.9;
}

.footer-newsletter {
    padding: 70px 0 0;
}

.newsletter-card {
    margin-top: 0;
    background: linear-gradient(135deg, rgba(253, 120, 1, 0.62), rgba(31, 26, 24, 0.94));
    border-radius: 26px;
    padding: 42px 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.newsletter-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.10) 0 2px, transparent 2px 14px);
    opacity: 0.18;
    pointer-events: none;
}

.newsletter-card::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -160px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 62%);
    transform: rotate(12deg);
    pointer-events: none;
}

.newsletter-left {
    position: relative;
    z-index: 1;
}

.newsletter-left h3 {
    color: #fff;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 8px;
}

.newsletter-left p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    align-items: center;
    gap: 0;
    min-width: min(520px, 100%);
    position: relative;
    z-index: 1;
}

.newsletter-input {
    flex: 1;
    height: 56px;
    border: 0;
    padding: 0 20px;
    font-size: 16px;
    outline: none;
    border-radius: 10px 0 0 10px;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    cursor: text;
}

.newsletter-input::placeholder {
    color: #7a7a7a;
}

.newsletter-btn {
    height: 56px;
    border: 0;
    padding: 0 28px;
    border-radius: 0 10px 10px 0;
    background: #1f1a18;
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.newsletter-btn:hover {
    background: var(--logo-green-dark);
    transform: translateY(-2px);
}

.footer-main {
    padding: 100px 0 70px;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
    margin: 18px 0 24px;
    max-width: 360px;
}

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

.footer-logo img {
    height: 70px;
    filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.25));
}

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

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    display: grid;
    place-items: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.92);
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    background: var(--logo-orange);
    transform: translateY(-4px);
}

.footer-title {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 36px;
    height: 3px;
    border-radius: 3px;
    background: var(--logo-orange);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.76);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-links a::before {
    content: '›';
    color: rgba(255, 255, 255, 0.55);
    transform: translateY(-1px);
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(6px);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 6px;
}

.footer-contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding-top: 4px;
}

.footer-contact-item + .footer-contact-item {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding-top: 18px;
}

.footer-contact-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    display: grid;
    place-items: center;
    color: var(--logo-orange);
}

.footer-contact-label {
    font-size: 12px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.footer-contact-value {
    color: rgba(255, 255, 255, 0.90);
    font-weight: 700;
    text-decoration: none;
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding: 18px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
}

@media (max-width: 1100px) {
    .newsletter-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .newsletter-form {
        min-width: 100%;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .newsletter-card {
        padding: 36px 22px;
        margin-top: 0;
    }

    .newsletter-left h3 {
        font-size: 28px;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .newsletter-input {
        border-radius: 10px;
    }

    .newsletter-btn {
        border-radius: 10px;
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}




