/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

input, textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

:root {
    --seagreen: #2E8B57;
    --seagreen-dark: #1F5F3F;
    --seagreen-light: #3CB371;
    --seagreen-lighter: #66CDAA;
    --black: #000000;
    --white: #ffffff;
    --dark: #0a0a0a;
    --dark-gray: #1a1a1a;
    --light-gray: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-light: #6b7280;
    --text-lighter: #9ca3af;
    --shadow: rgba(46, 139, 87, 0.08);
    --shadow-hover: rgba(46, 139, 87, 0.15);
    --shadow-lg: rgba(0, 0, 0, 0.1);
    --gradient-seagreen: linear-gradient(135deg, #66CDAA 0%, #2E8B57 50%, #1F5F3F 100%);
    --gradient-bg: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.white-bg {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.navbar.white-bg .nav-menu a {
    color: var(--dark);
}

.navbar.white-bg .nav-menu a:hover {
    background: rgba(46, 139, 87, 0.1);
    color: var(--seagreen);
}

.navbar.white-bg .nav-menu a.active {
    background: rgba(46, 139, 87, 0.2);
    color: var(--seagreen);
    box-shadow: 0 2px 8px rgba(46, 139, 87, 0.2);
}

.nav-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 1.25rem 24px;
    width: 100%;
    gap: 2.5rem;
    padding-left: 280px;
    min-height: 80px;
}

.logo {
    position: fixed;
    left: 120px;
    top: 10px;
    z-index: 1001;
    transition: transform 0.3s ease;
    width: 150px;
    height: 150px;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-img {
    width: 130px;
    height: 130px;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 6px 20px rgba(46, 139, 87, 0.25));
    border-radius: 50%;
    background: white;
    padding: 7px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 1;
    border: none;
    display: block;
}

.logo:hover .logo-img {
    transform: translate3d(0, 0, 0) rotate(5deg) scale(1.05);
    filter: drop-shadow(0 10px 30px rgba(46, 139, 87, 0.4));
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.nav-menu a.active {
    background: rgba(255, 255, 255, 0.25);
    color: var(--white);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--seagreen);
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

/* Hero Section - Black to Green Gradient Night Mode */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #0d1b0f 25%, #1a2e1f 50%, #0d1b0f 75%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

/* Hero Leaf Decorations */
.hero-leaves-left {
    position: absolute;
    top: 120px;
    left: -100px;
    width: 250px;
    height: 100%;
    /* background-image: url('images/leaves/left.png'); */
    background-size: contain;
    background-repeat: repeat-y;
    background-position: left top;
    z-index: 1;
    pointer-events: none;
    opacity: 0.4;
    filter: brightness(0.5) contrast(1.2) drop-shadow(0 0 8px rgba(46, 139, 87, 0.3)) drop-shadow(0 0 15px rgba(46, 139, 87, 0.2));
    mix-blend-mode: screen;
}

.hero-leaves-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(46, 139, 87, 0.1) 20%,
        rgba(46, 139, 87, 0.2) 40%,
        rgba(46, 139, 87, 0.15) 60%,
        rgba(46, 139, 87, 0.1) 80%,
        transparent 100%
    );
    animation: shine-left 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shine-left {
    0%, 100% {
        opacity: 0.3;
        transform: translateX(-20px);
    }
    50% {
        opacity: 0.6;
        transform: translateX(20px);
    }
}

.hero-leaves-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 250px;
    height: 100%;
    /* background-image: url('images/leaves/right.png'); */
    background-size: contain;
    background-repeat: repeat-y;
    background-position: right top;
    z-index: 1;
    pointer-events: none;
    opacity: 0.4;
    filter: brightness(0.3) contrast(1.2) drop-shadow(0 0 8px rgba(46, 139, 87, 0.3)) drop-shadow(0 0 15px rgba(46, 139, 87, 0.2));
    mix-blend-mode: screen;
}

.hero-leaves-right::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        270deg,
        transparent 0%,
        rgba(46, 139, 87, 0.1) 20%,
        rgba(46, 139, 87, 0.2) 40%,
        rgba(46, 139, 87, 0.15) 60%,
        rgba(46, 139, 87, 0.1) 80%,
        transparent 100%
    );
    animation: shine-right 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shine-right {
    0%, 100% {
        opacity: 0.3;
        transform: translateX(20px);
    }
    50% {
        opacity: 0.6;
        transform: translateX(-20px);
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 0;
    pointer-events: none;
}

.particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 1;
    background: transparent;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

@media (max-width: 768px) {
    .particle-canvas {
        z-index: 0;
    }
    
    .project-cycle-container {
        z-index: 20;
    }
    
    .cycle-step {
        z-index: 20;
    }
    
    .step-circle {
        z-index: 20;
    }
}

.hero-banner {
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
}

.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background-image: url('images/logo_transparent.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.03;
    z-index: 0;
    pointer-events: none;
    filter: drop-shadow(0 0 30px rgba(46, 139, 87, 0.3)) drop-shadow(0 0 60px rgba(46, 139, 87, 0.2)) drop-shadow(0 0 100px rgba(46, 139, 87, 0.1));
}

.hero-bg-image-bottom-left {
    position: absolute;
    bottom: 20px;
    left: -50px;
    width: 400px;
    height: 400px;
    z-index: 1;
    pointer-events: none;
}

.leaf-bunch {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom left;
    opacity: 0.4;
    filter: brightness(0.8) contrast(1.1);
    animation: leafShine 3s ease-in-out infinite;
}

.leaf-bunch::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(46, 139, 87, 0.2) 30%,
        rgba(255, 215, 0, 0.3) 50%,
        rgba(46, 139, 87, 0.2) 70%,
        transparent 100%
    );
    animation: shineSweep 4s ease-in-out infinite;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(10px);
}

.leaf-bunch::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at 30% 40%,
        rgba(255, 215, 0, 0.4) 0%,
        rgba(46, 139, 87, 0.2) 40%,
        transparent 70%
    );
    animation: fruitGlow 2.5s ease-in-out infinite;
    pointer-events: none;
    border-radius: 50%;
}

.leaf-1 {
    bottom: 0;
    left: 0;
    width: 200px;
    height: 250px;
    background-image: url('images/leaves/left.png');
    transform: rotate(-5deg);
    animation-delay: 0s;
}

.leaf-2 {
    bottom: 30px;
    left: 80px;
    width: 180px;
    height: 220px;
    background-image: url('images/leaves/left_one.png');
    transform: rotate(8deg);
    animation-delay: 0.5s;
    z-index: 1;
}

.leaf-3 {
    bottom: 60px;
    left: 150px;
    width: 160px;
    height: 200px;
    background-image: url('images/leaves/left.png');
    transform: rotate(-10deg);
    animation-delay: 1s;
    z-index: 2;
}

@keyframes leafShine {
    0%, 100% {
        opacity: 0.4;
        filter: brightness(0.8) contrast(1.1) drop-shadow(0 0 5px rgba(46, 139, 87, 0.3));
    }
    50% {
        opacity: 0.6;
        filter: brightness(1.1) contrast(1.2) drop-shadow(0 0 15px rgba(46, 139, 87, 0.5)) drop-shadow(0 0 25px rgba(255, 215, 0, 0.3));
    }
}

@keyframes shineSweep {
    0% {
        transform: translateX(-100%) translateY(-100%);
        opacity: 0;
    }
    50% {
        transform: translateX(50%) translateY(50%);
        opacity: 0.6;
    }
    100% {
        transform: translateX(200%) translateY(200%);
        opacity: 0;
    }
}

@keyframes fruitGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}




.hero .decoration-gradient {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(46, 139, 87, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.hero-content {
    text-align: left;
    z-index: 1;
    max-width: 700px;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Feature Cards Container */
.feature-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.feature-card {
    position: relative;
    width: 100%;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
    text-align: left;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.15);
}

.feature-card.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.feature-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(46, 139, 87, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.feature-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.feature-list li {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
    font-weight: 400;
}

.feature-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--seagreen);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Hero Brand Name */
.hero-brand-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--seagreen);
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.3px;
    order: 0;
}

/* Hero Main Title */
.hero-main-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
    order: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Hero Description */
.hero-description {
    margin-top: 0;
    padding: 1rem 0;
    order: 2;
}

.hero-description p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 400;
    max-width: 600px;
    min-height: 2rem;
}

#typing-text::after {
    content: '|';
    animation: blink 1s infinite;
    color: var(--seagreen);
    font-weight: 300;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/* Hero Contact Info */
.hero-contact-info {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    order: 3;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-contact-info.show {
    opacity: 1;
    transform: translateY(0);
}

.contact-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.contact-link:hover {
    color: var(--seagreen);
}

.contact-separator {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

.contact-icon {
    margin-right: 0.5rem;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: currentColor;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    order: 3;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease, opacity 0.8s ease, transform 0.8s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}

.cta-button.primary {
    background: var(--seagreen-dark);
    box-shadow: 0 4px 15px rgba(46, 139, 87, 0.3);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

.cta-button.show {
    opacity: 1;
    transform: translateY(0);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    pointer-events: none;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.8), rgba(46, 139, 87, 0.4), rgba(255, 255, 255, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: -1;
}

.cta-button:hover::after {
    opacity: 1;
    animation: borderGlow 2s ease-in-out infinite;
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(46, 139, 87, 0.5), 
                0 0 20px rgba(46, 139, 87, 0.3),
                0 0 40px rgba(46, 139, 87, 0.1);
    background: var(--seagreen-dark);
}

.cta-button.secondary:hover {
    transform: translateY(-3px);
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 0.6;
        filter: brightness(1);
    }
    50% {
        opacity: 1;
        filter: brightness(1.3);
    }
}

.cta-button:active {
    transform: translateY(-1px);
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-seagreen);
    opacity: 0.06;
    animation: float 25s infinite ease-in-out;
    filter: blur(40px);
}

.decoration-circle:nth-child(1) {
    width: 400px;
    height: 400px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.decoration-circle:nth-child(2) {
    width: 300px;
    height: 300px;
    bottom: 15%;
    left: 15%;
    animation-delay: 8s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(40px, -40px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 30px) scale(0.9);
    }
}

/* Project Cycle Animation */
.project-cycle-container {
    width: 100%;
    max-width: 650px;
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.project-cycle-container.show {
    opacity: 1;
    transform: translateY(0);
}

.process-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-align: center;
}

.process-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 2rem;
}

.project-cycle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 3rem 2rem;
    position: relative;
    padding: 2rem;
}

.cycle-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.step-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 229, 92, 0.3);
    /* background-image: url('images/leaves/left1.png'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(46, 139, 87, 0.2);
    transform: translate3d(0, 0, 0) scale(1);
    will-change: transform, box-shadow;
    backface-visibility: hidden;
    flex-shrink: 0;
    overflow: hidden;
}

.cycle-step.inactive .step-circle {
    background: rgba(255, 229, 92, 0.2);
    /* background-image: url('images/leaves/left1.png'); */
    background-size: cover;
    background-position: center;
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.6;
    animation: none !important;
    will-change: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.cycle-step.active .step-circle {
    background: rgba(255, 229, 92, 0.4);
    transform: scale(1);
    box-shadow: 0 0 4px rgba(255, 229, 92, 0.15), 
                0 1px 6px rgba(255, 229, 92, 0.1);
    animation: goldenPulse 2s ease-in-out infinite;
    position: relative;
}

.cycle-step.completed .step-circle {
    background: rgba(255, 229, 92, 0.4);
    transform: translate3d(0, 0, 0) scale(1);
    box-shadow: 0 1px 8px rgba(255, 229, 92, 0.15), 
                0 0 5px rgba(255, 229, 92, 0.1);
    animation: completedShine 3s ease-in-out infinite;
    will-change: auto;
    transition: opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.cycle-step.completed .step-circle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 229, 92, 0.1) 0%, transparent 70%);
    animation: completedShineGlow 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes completedShine {
    0%, 100% {
        box-shadow: 0 1px 8px rgba(255, 229, 92, 0.15), 
                    0 0 5px rgba(255, 229, 92, 0.1);
    }
    50% {
        box-shadow: 0 1px 10px rgba(255, 229, 92, 0.18), 
                    0 0 6px rgba(255, 229, 92, 0.12);
    }
}

@keyframes completedShineGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.5;
        transform: scale(1);
    }
}

@keyframes goldenPulse {
    0%, 100% {
        box-shadow: 0 0 4px rgba(255, 229, 92, 0.15), 
                    0 1px 6px rgba(255, 229, 92, 0.1);
    }
    50% {
        box-shadow: 0 0 5px rgba(255, 229, 92, 0.2), 
                    0 1px 8px rgba(255, 229, 92, 0.15);
    }
}

.step-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--seagreen);
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(1);
    animation: none;
}

.cycle-step.active .step-pulse {
    animation: goldenPulseRing 2s ease-out infinite;
    background: radial-gradient(circle, rgba(255, 229, 92, 0.15) 0%, rgba(255, 229, 92, 0) 100%);
}

.cycle-step.inactive .step-pulse,
.cycle-step.completed .step-pulse {
    animation: none;
    opacity: 0;
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes goldenPulseRing {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.step-icon {
    width: 55px;
    height: 55px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.cycle-step.active .step-icon {
    transform: scale(1.2);
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
}

.cycle-step.completed .step-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.25));
}

.cycle-step.inactive .step-icon {
    opacity: 0.7;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.15));
}

.step-label {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
    text-align: center;
    transition: all 0.3s ease;
    line-height: 1.3;
    margin-top: 0.5rem;
}

.step-sublabel {
    font-size: 0.7rem;
    color: var(--text-light);
    text-align: center;
    font-weight: 400;
    line-height: 1.2;
}

/* Wavy Connectors with Progress Bars */
.wavy-connector-right {
    position: absolute;
    top: 50%;
    right: -3rem;
    width: 3rem;
    height: 3px;
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0.4;
    transition: opacity 0.4s ease;
}

.wavy-connector-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 6' preserveAspectRatio='none'%3E%3Cpath d='M 0,3 Q 15,0 30,3 T 60,3' stroke='%232E8B57' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.3;
}

.wavy-connector-right::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 6' preserveAspectRatio='none'%3E%3Cpath d='M 0,3 Q 15,0 30,3 T 60,3' stroke='%232E8B57' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: left center;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.wavy-connector-down {
    position: absolute;
    bottom: -3rem;
    left: 50%;
    width: 3px;
    height: 3rem;
    transform: translateX(-50%);
    z-index: 1;
    opacity: 0.4;
    transition: opacity 0.4s ease;
}

.wavy-connector-down::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 60' preserveAspectRatio='none'%3E%3Cpath d='M 3,0 Q 0,15 3,30 T 3,60' stroke='%232E8B57' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.3;
}

.wavy-connector-down::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 60' preserveAspectRatio='none'%3E%3Cpath d='M 3,0 Q 0,15 3,30 T 3,60' stroke='%232E8B57' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center top;
    transition: height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.wavy-connector-right.completed::after {
    width: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 6' preserveAspectRatio='none'%3E%3Cpath d='M 0,3 Q 60,0 120,3' stroke='%23FFD700' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
}

.wavy-connector-down.completed::after {
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 60' preserveAspectRatio='none'%3E%3Cpath d='M 3,0 Q 0,15 3,30 T 3,60' stroke='%23FFD700' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
}

.wavy-connector-right.active::after {
    width: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 6' preserveAspectRatio='none'%3E%3Cpath d='M 0,3 Q 60,0 120,3' stroke='%23FFD700' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    animation: progressPulse 1.5s ease-in-out infinite;
}

.wavy-connector-down.completed::after {
    height: 100%;
}

.wavy-connector-down.active::after {
    height: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 60' preserveAspectRatio='none'%3E%3Cpath d='M 3,0 Q 0,15 3,30 T 3,60' stroke='%23FFD700' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    animation: progressPulseVertical 1.5s ease-in-out infinite;
}

@keyframes progressPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes progressPulseVertical {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.cycle-step.completed .wavy-connector-right,
.cycle-step.completed .wavy-connector-down {
    opacity: 0.8;
}

.cycle-step.completed .wavy-connector-right::before,
.cycle-step.completed .wavy-connector-down::before {
    opacity: 0.5;
}

.cycle-step:nth-child(3) .wavy-connector-right {
    display: none;
}

.cycle-step:nth-child(3) .wavy-connector-down {
    display: none;
}

.cycle-step:nth-child(6) .wavy-connector-right {
    display: none;
}

.cycle-step.active .step-label {
    color: #FFFFFF;
    font-weight: 700;
    transform: scale(1.05);
}

.cycle-step.active .step-sublabel {
    color: #FFFFFF;
    opacity: 1;
}

.cycle-step.completed .step-label {
    color: #FFFFFF;
}

.cycle-step.completed .step-sublabel {
    color: #FFFFFF;
    opacity: 1;
}

.cycle-step.inactive .step-label,
.cycle-step.inactive .step-sublabel {
    color: rgba(255, 255, 255, 0.5);
    opacity: 0.6;
}

.cycle-step.inactive .step-icon {
    opacity: 0.5;
    filter: brightness(0.8);
}

/* Progress Bars */
.progress-bar-wrapper {
    flex: 1;
    height: 4px;
    position: relative;
    margin: 0 1rem;
    max-width: 120px;
}

.progress-bar-line {
    width: 100%;
    height: 100%;
    background: rgba(46, 139, 87, 0.15);
    border-radius: 2px;
    position: absolute;
    top: 0;
    left: 0;
}

.progress-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    border-radius: 2px;
    position: absolute;
    top: 0;
    left: 0;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.progress-bar-wrapper.completed .progress-bar-fill {
    width: 100%;
}

.progress-bar-wrapper.active .progress-bar-fill {
    width: 50%;
    animation: progressPulse 1.5s ease-in-out infinite;
}

@keyframes progressPulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    }
}

.cycle-progress {
    width: 100%;
    height: 4px;
    background: rgba(46, 139, 87, 0.1);
    border-radius: 2px;
    margin-top: 2rem;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--seagreen) 0%, var(--seagreen-light) 100%);
    border-radius: 2px;
    width: 0%;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(46, 139, 87, 0.3);
}

/* Banner Logo in Hero */
.banner-logo {
    flex-shrink: 0;
    position: relative;
}

.banner-logo-img {
    width: 220px;
    height: 220px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
    padding: 15px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.banner-logo-img:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Section Styles */
section {
    padding: 4rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.about .section-title {
    color: var(--white);
}

.about .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-light);
    font-weight: 400;
}

/* About Section - Black & White Theme */
.about {
    background: var(--white);
    color: var(--dark);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 1%;
    right: 0;
    transform: scaleX(-1);
    width: 400px;
    height: 100%;
    max-height: 600px;
    background-image: url('images/leaves/left.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.about .container {
    position: relative;
    z-index: 1;
}

.about .section-title {
    color: var(--dark);
}

.about .section-subtitle {
    color: var(--text-light);
}

.about-content {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}

.about-text p {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    text-align: center;
}

.about-text p strong {
    color: var(--seagreen);
    font-weight: 600;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    width: 100%;
}

.feature-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(46, 139, 87, 0.1);
    text-align: left;
}

.feature-item > div:last-child {
    flex: 1;
    text-align: left;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(46, 139, 87, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--seagreen);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--seagreen);
    color: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(46, 139, 87, 0.3);
}

.feature-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-weight: 600;
    text-align: left;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
    margin: 0;
}

/* Services Section - White Theme */
.services {
    background: linear-gradient(135deg, #0a0a0a 0%, #0d1b0f 25%, #1a2e1f 50%, #0d1b0f 75%, #0a0a0a 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 1%;
    left: 0;
    width: 400px;
    height: 100%;
    max-height: 600px;
    background-image: url('images/leaves/left.png');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

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

.services .section-title {
    color: var(--white);
}

.services .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.upcoming-services-inline {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(46, 139, 87, 0.2);
}

.upcoming-services-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 1.5rem;
}

.upcoming-services-grid-inline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.upcoming-service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(46, 139, 87, 0.3);
    transition: all 0.3s ease;
}

.upcoming-service-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(46, 139, 87, 0.5);
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.2);
}

.upcoming-service-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.upcoming-service-item h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    padding: 1.25rem;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(46, 139, 87, 0.2);
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 140px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--seagreen);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(46, 139, 87, 0.15);
    border-color: var(--seagreen);
}

.service-icon {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
    display: inline-block;
    transition: transform 0.3s ease;
    text-align: center;
    width: 100%;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.25rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    line-height: 1.4;
    font-size: 0.8rem;
    text-align: center;
}

.service-list {
    list-style: none;
}

.service-list li {
    padding: 0.625rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.75rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.service-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--seagreen);
    font-weight: 700;
    transition: transform 0.3s ease;
}

.service-card:hover .service-list li::before {
    transform: translateX(4px);
}

/* Packages Section - Modern Premium Design */
.packages {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    color: var(--dark);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.packages::before {
    content: '';
    position: absolute;
    top: 1%;
    right: 0;
    transform: scaleX(-1);
    width: 400px;
    height: 100%;
    max-height: 600px;
    background-image: url('images/leaves/left.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.packages .container {
    position: relative;
    z-index: 1;
}

.packages .section-title {
    color: var(--dark);
}

.packages .section-subtitle {
    color: var(--text-light);
}

.package-category {
    margin-bottom: 3rem;
}

.package-category:last-child {
    margin-bottom: 0;
}

.package-category-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.package-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(46, 139, 87, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.package-card.featured {
    border: 2px solid var(--seagreen);
    box-shadow: 0 12px 48px rgba(46, 139, 87, 0.15), 0 4px 16px rgba(46, 139, 87, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(46, 139, 87, 0.02) 100%);
}

.package-card.premium {
    border: 2px solid rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 215, 0, 0.03) 100%);
    box-shadow: 0 12px 48px rgba(255, 215, 0, 0.1), 0 4px 16px rgba(255, 215, 0, 0.05);
}

.package-card.combo {
    border: 2px solid rgba(46, 139, 87, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(46, 139, 87, 0.03) 100%);
}

.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--seagreen) 0%, #3da068 100%);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(46, 139, 87, 0.3);
    z-index: 2;
}

.package-badge.premium-badge {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: var(--dark);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.package-header {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(46, 139, 87, 0.15);
}

.package-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
    font-weight: 700;
    line-height: 1.3;
}

.package-price {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-light);
    font-family: 'Space Grotesk', sans-serif;
}

.package-price .price-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--seagreen);
    display: block;
    margin-top: 0.25rem;
}

.package-price .price-gst {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-light);
    opacity: 0.8;
    margin-left: 0.25rem;
}

.package-price .price-usd {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--seagreen);
    margin-left: 0.5rem;
}

.package-description {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.package-includes {
    flex: 1;
    margin-bottom: 1.5rem;
}

.package-includes h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.package-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.package-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--seagreen);
    font-weight: bold;
    font-size: 0.9rem;
    top: 0.5rem;
}

.package-button {
    display: block;
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, var(--seagreen) 0%, #3da068 100%);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(46, 139, 87, 0.2);
    margin-top: auto;
}

.package-button:hover {
    background: linear-gradient(135deg, #3da068 0%, var(--seagreen) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(46, 139, 87, 0.3);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
    border-color: rgba(46, 139, 87, 0.25);
}

.package-card.featured:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(46, 139, 87, 0.2), 0 8px 24px rgba(46, 139, 87, 0.15);
}

.package-card.premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.15), 0 8px 24px rgba(255, 215, 0, 0.1);
}

/* Vision Section - White Theme */

/* Why Choose Section - Dark Theme */
.why-choose {
    background: linear-gradient(135deg, #0a0a0a 0%, #0d1b0f 25%, #1a2e1f 50%, #0d1b0f 75%, #0a0a0a 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 1%;
    left: 0;
    width: 400px;
    height: 100%;
    max-height: 600px;
    background-image: url('images/leaves/left.png');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.why-choose .container {
    position: relative;
    z-index: 1;
}

.why-choose .section-title {
    color: var(--white);
}

.why-choose .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.why-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    padding: 2.75rem;
    border-radius: 24px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(46, 139, 87, 0.2);
    position: relative;
    overflow: hidden;
}

.why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 139, 87, 0.1);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-item:hover::before {
    opacity: 1;
}

.why-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(46, 139, 87, 0.2);
    border-color: var(--seagreen);
}

.why-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--seagreen);
    opacity: 0.3;
    margin-bottom: 1rem;
    line-height: 1;
}

.why-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.why-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
}

/* Tech Stack Section - Dark Theme */
.tech-stack {
    background: var(--white);
    color: var(--dark);
    position: relative;
    overflow: hidden;
}

.tech-stack::before {
    content: '';
    position: absolute;
    top: 1%;
    right: 0;
    transform: scaleX(-1);
    width: 400px;
    height: 100%;
    max-height: 600px;
    background-image: url('images/leaves/left.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.tech-stack .container {
    position: relative;
    z-index: 1;
}

.tech-stack .section-title {
    color: var(--dark);
}

.tech-stack .section-subtitle {
    color: var(--text-light);
}

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

.tech-category {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(46, 139, 87, 0.1);
    transition: all 0.3s ease;
}

.tech-category:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(46, 139, 87, 0.15);
    border-color: var(--seagreen);
    background: rgba(46, 139, 87, 0.05);
}

.tech-category h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tech-badge {
    padding: 0.5rem 1.25rem;
    background: var(--white);
    color: var(--seagreen);
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--seagreen);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.85rem;
    cursor: default;
    box-shadow: 0 2px 8px rgba(46, 139, 87, 0.1);
}

.tech-badge:hover {
    background: var(--seagreen);
    color: var(--white);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(46, 139, 87, 0.3);
}


/* Contact Section - White Theme */
.contact {
    background: linear-gradient(135deg, #0a0a0a 0%, #0d1b0f 25%, #1a2e1f 50%, #0d1b0f 75%, #0a0a0a 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 1%;
    left: 0;
    width: 400px;
    height: 100%;
    max-height: 600px;
    background-image: url('images/leaves/left.png');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact .section-title {
    color: var(--white);
}

.contact .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.contact .section-title,
.contact .section-subtitle {
    color: var(--white);
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    width: 100%;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    min-height: 100px;
    text-align: center;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(46, 139, 87, 0.2);
    background: rgba(46, 139, 87, 0.1);
    border-color: var(--seagreen);
}

.contact-icon {
    flex-shrink: 0;
    line-height: 1;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}

.contact-icon svg {
    width: 28px;
    height: 28px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-icon.whatsapp-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.contact-item:hover .contact-icon svg,
.contact-item:hover .contact-icon {
    color: var(--seagreen);
}

.contact-item a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-word;
    overflow-wrap: break-word;
    line-height: 1.5;
    text-align: center;
    width: 100%;
}

.contact-item a:hover {
    color: var(--seagreen);
}

.contact-form {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.125rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--seagreen);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 4px rgba(46, 139, 87, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .cta-button {
    width: 100%;
    text-align: center;
}

/* Footer */
.footer {
    background: var(--white);
    color: var(--dark);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(46, 139, 87, 0.2);
    opacity: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    max-width: 300px;
}

.footer-logo-container {
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: none;
    opacity: 1;
}

.footer-tagline {
    color: var(--text-light);
    margin-top: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-services h4,
.footer-about h4 {
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 1.25rem;
    color: var(--seagreen);
    font-weight: 600;
    font-size: 1.1rem;
}

.footer-services ul,
.footer-about ul {
    list-style: none;
}

.footer-services ul li,
.footer-about ul li {
    margin-bottom: 0.75rem;
}

.footer-services a,
.footer-about a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-services a:hover,
.footer-about a:hover {
    color: var(--seagreen);
    padding-left: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(46, 139, 87, 0.2);
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-in;
}

.fade-in-delay {
    animation: fadeIn 1s ease-in 0.3s both;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-in 0.6s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .logo {
        left: calc((100vw - 960px) / 2 + 120px);
    }
}

@media (max-width: 900px) {
    .logo {
        left: calc((100vw - 720px) / 2 + 80px);
        width: 150px;
        height: 150px;
    }

    .logo-img {
        width: 130px;
        height: 130px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        flex-direction: column;
        background: linear-gradient(135deg, #0a0a0a 0%, #0d1b0f 25%, #1a2e1f 50%, #0d1b0f 75%, #0a0a0a 100%);
        backdrop-filter: blur(20px);
        width: 100%;
        height: 100vh;
        padding: 6rem 2rem 2rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 1.5rem;
        justify-content: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .logo-text-container {
        display: none;
    }

    .logo {
        left: calc((100vw - 768px) / 2 + 80px);
        top: 5px;
        width: 140px;
        height: 140px;
    }

    .logo::before {
        background-image: url("data:image/svg+xml,%3Csvg width='140' height='140' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cstyle%3E.e-shape%7Bfill:none;stroke:%235ea37a;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;opacity:0.4;%7D%3C/style%3E%3C/defs%3E%3Cpath class='e-shape' d='M 20 20 L 120 20 L 120 45 L 75 45 L 75 65 L 120 65 L 120 85 L 75 85 L 75 105 L 120 105 L 120 120 L 20 120 L 20 105 L 50 105 L 50 85 L 20 85 L 20 65 L 50 65 L 50 45 L 20 45 Z'/%3E%3C/svg%3E");
    }

    .logo::after {
        width: 160px;
        height: 160px;
        background-image: url("data:image/svg+xml,%3Csvg width='160' height='160' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cstyle%3E.e-shape-glow%7Bfill:none;stroke:%235ea37a;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;opacity:0.15;filter:blur(2px);%7D%3C/style%3E%3C/defs%3E%3Cpath class='e-shape-glow' d='M 25 25 L 135 25 L 135 50 L 85 50 L 85 70 L 135 70 L 135 90 L 85 90 L 85 110 L 135 110 L 135 125 L 25 125 L 25 110 L 55 110 L 55 90 L 25 90 L 25 70 L 55 70 L 55 50 L 25 50 Z'/%3E%3C/svg%3E");
    }

    .logo-img {
        width: 120px;
        height: 120px;
        border: 6px #5ea37a solid;
        padding: 5px;
    }

    .nav-content {
        padding-left: 0;
        justify-content: center;
        gap: 1rem;
    }

    .hero {
        min-height: auto;
        padding-bottom: 4rem;
        margin-bottom: 2rem;
    }

    .hero-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 2rem 1rem 3rem 1rem;
    }

    .particle-canvas {
        position: fixed;
        width: 100vw;
        height: 100vh;
        top: 0;
        left: 0;
    }

    .project-cycle-container {
        max-width: 100%;
        margin-top: 2rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem 2rem 0.5rem;
        width: 100%;
        position: relative;
        z-index: 10;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .project-cycle-container::-webkit-scrollbar {
        height: 4px;
    }

    .project-cycle-container::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
    }

    .project-cycle-container::-webkit-scrollbar-thumb {
        background: var(--seagreen);
        border-radius: 2px;
    }

    .process-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        text-align: center;
        color: var(--white);
        position: relative;
        z-index: 10;
    }

    .project-cycle-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(100px, 1fr));
        grid-template-rows: repeat(2, auto);
        gap: 1.5rem 1rem;
        padding: 1rem 0.5rem;
        width: 100%;
        max-width: 100%;
        position: relative;
        z-index: 10;
    }

    .cycle-step {
        min-width: 100px;
        max-width: 120px;
        width: 100%;
        position: relative;
        z-index: 10;
    }

    .step-circle {
        width: 70px;
        height: 70px;
        position: relative;
        z-index: 10;
    }

    .step-icon {
        width: 35px;
        height: 35px;
        position: relative;
        z-index: 10;
    }

    .step-label {
        font-size: 0.75rem;
        line-height: 1.2;
        text-align: center;
        color: var(--white);
        position: relative;
        z-index: 10;
    }

    .step-sublabel {
        font-size: 0.65rem;
        line-height: 1.2;
        text-align: center;
        color: rgba(255, 255, 255, 0.8);
        position: relative;
        z-index: 10;
    }

    .wavy-connector-right,
    .wavy-connector-down {
        display: none;
    }

    .hero-content {
        text-align: center;
    }

    .feature-cards-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
        padding: 0 1rem;
    }

    .feature-card {
        padding: 1.5rem 1rem;
    }

    .feature-title {
        font-size: 1.25rem;
    }

    .feature-subtitle {
        font-size: 0.9rem;
    }

    .feature-list li {
        font-size: 0.85rem;
    }

    .banner-logo-img {
        width: 180px;
        height: 180px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .upcoming-services-grid-inline,
    .why-grid,
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-category {
        margin-bottom: 3rem;
    }
    
    .package-category-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .package-card {
        padding: 2rem;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .package-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .upcoming-services-inline {
        margin-top: 2rem;
        padding-top: 2rem;
    }
    
    .upcoming-services-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .upcoming-service-item {
        padding: 1.25rem;
    }
    
    .upcoming-service-item h4 {
        font-size: 1rem;
    }

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

    section {
        padding: 4rem 0;
    }

    .service-card,
    .why-item,
    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .service-card,
    .why-item,
    .contact-form {
        padding: 1.5rem;
    }

    .logo {
        left: 20px;
        top: 5px;
        width: 100px;
        height: 100px;
    }

    .logo::before {
        background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cstyle%3E.e-shape%7Bfill:none;stroke:%235ea37a;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;opacity:0.4;%7D%3C/style%3E%3C/defs%3E%3Cpath class='e-shape' d='M 15 15 L 85 15 L 85 35 L 55 35 L 55 50 L 85 50 L 85 65 L 55 65 L 55 80 L 85 80 L 85 85 L 15 85 L 15 80 L 40 80 L 40 65 L 15 65 L 15 50 L 40 50 L 40 35 L 15 35 Z'/%3E%3C/svg%3E");
    }

    .logo::after {
        width: 120px;
        height: 120px;
        background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cstyle%3E.e-shape-glow%7Bfill:none;stroke:%235ea37a;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;opacity:0.15;filter:blur(2px);%7D%3C/style%3E%3C/defs%3E%3Cpath class='e-shape-glow' d='M 20 20 L 100 20 L 100 40 L 65 40 L 65 55 L 100 55 L 100 70 L 65 70 L 65 85 L 100 85 L 100 90 L 20 90 L 20 85 L 45 85 L 45 70 L 20 70 L 20 55 L 45 55 L 45 40 L 20 40 Z'/%3E%3C/svg%3E");
    }

    .logo-img {
        width: 90px;
        height: 90px;
        border: none;
        padding: 4px;
    }

    .hero-banner-content {
        padding: 2rem 1rem 3rem 1rem;
        gap: 1rem;
    }

    .hero {
        padding-bottom: 5rem;
        margin-bottom: 2rem;
    }

    .project-cycle-container {
        padding: 0 0.25rem;
    }

    .project-cycle-grid {
        grid-template-columns: repeat(3, minmax(90px, 1fr));
        gap: 1rem 0.75rem;
        padding: 1rem 0.25rem;
    }

    .step-circle {
        width: 60px;
        height: 60px;
    }

    .step-icon {
        width: 30px;
        height: 30px;
    }

    .step-label {
        font-size: 0.7rem;
    }

    .step-sublabel {
        font-size: 0.6rem;
    }

    .process-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
}