:root {
    --primary: #669966;
    --primary-hover: #4f7f4f;
    --secondary: #cc9966;
    --secondary-hover: #b07f4f;
    --accent: #3f5d7d;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --bg-light: #fff;
    --footer-bg: #f8f8f8;
    --border-color: #e5e5e5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Instrument Sans", sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

button,
a,
select,
input,
textarea {
    cursor: pointer;
    font-family: "Instrument Sans", sans-serif;
    text-decoration: none;
}

h1,
h2,
h3 {
    font-family: "Varela Round", sans-serif;
}

.title-highlight {
    color: #d4af37;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-dark);
}

.nav-logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-logo-img-mobile {
    display: none;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.nav-link i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-dropdown {
    position: fixed;
    left: 0;
    top: 72px;
    width: 100%;
    background: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    max-height: 0;
    overflow: hidden;
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    max-height: 600px;
}

.nav-dropdown-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.nav-dropdown-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    background: rgba(247, 247, 247, 0.5);
}

.nav-dropdown-item:hover {
    background: rgba(204, 153, 102, .4);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.nav-dropdown-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.nav-dropdown-item:hover .nav-dropdown-icon {
    transform: scale(1.1);
}

.nav-dropdown-icon.icon-blue {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.nav-dropdown-icon.icon-green {
    background: linear-gradient(135deg, #6b9b8e 0%, #4a7c6f 100%);
    color: white;
}

.nav-dropdown-icon.icon-orange {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.nav-dropdown-icon.icon-purple {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    color: #764ba2;
}

.nav-dropdown-icon.icon-teal {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.nav-dropdown-icon.icon-pink {
    background: linear-gradient(135deg, #e8b4a8 0%, #d89a8d 100%);
    color: white;
}

.nav-dropdown-icon.icon-yellow {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    color: #d86e3a;
}

.nav-dropdown-icon.icon-indigo {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
}

.nav-dropdown-text {
    flex: 1;
}

.nav-dropdown-title {
    font-family: "Varela Round", sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.nav-dropdown-desc {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

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

.nav-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    font-family: "Instrument Sans", sans-serif;
}

.nav-btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 1.5px solid var(--primary);
}

.nav-btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 155, 142, 0.3);
}

.nav-btn-primary {
    background: var(--primary);
    color: white;
}

.nav-btn-primary:hover {
    background: #5a8a7d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 155, 142, 0.4);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: transparent;
    border: none;
}

.nav-hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-hamburger.active .nav-hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active .nav-hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active .nav-hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    width: 100vw;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    transition: max-height 0.3s ease;
}

.nav-mobile-menu.active {
    max-height: calc(100vh - 72px);
    padding: 0 0 20px 0;
}

.nav-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
    margin-bottom: 20px;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}

.nav-mobile-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
}

.nav-mobile-link {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    padding: 14px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 0;
    width: 100%;
}

.nav-mobile-submenu.active {
    max-height: 800px;
    padding-bottom: 12px;
}

.nav-mobile-sublink {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 13px;
    width: 100%;
}

.nav-mobile-sublink i {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.nav-mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}

.nav-mobile-actions .nav-btn {
    width: 100%;
    text-align: center;
    display: block;
    box-sizing: border-box;
}

@media (max-width: 1050px) {
    .nav-logo-img {
        display: none;
    }
    
    .nav-logo-img-mobile {
        display: block;
        height: 32px;
        width: auto;
    }

    .nav-menu,
    .nav-actions {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-mobile-menu {
        display: block;
    }
}

@media (max-width: 640px) {
    .nav-content {
        height: 64px;
    }

    .nav-mobile-menu {
        top: 64px;
    }

    .nav-mobile-menu.active {
        max-height: calc(100vh - 64px);
    }

    .nav-logo-img-mobile {
        height: 28px;
    }

    .nav-mobile-links {
        padding: 0 20px;
    }

    .nav-mobile-actions {
        padding: 0 20px;
    }
}

.nav-btn-donate {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    background: transparent;
    border: none;
    font-family: "Instrument Sans", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.nav-donate-icon {
    width: 18px;
    height: 18px;
    color: #e8b4a8;
    transition: all 0.3s ease;
}

.nav-btn-donate:hover {
    background: rgba(232, 180, 168, 0.1);
    color: #e8b4a8;
}

.nav-btn-donate:hover .nav-donate-icon {
    transform: scale(1.1);
    animation: heartbeat 0.6s ease-in-out;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.15); }
    50% { transform: scale(1); }
}
.don-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 30, 0.85);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
}

.don-overlay.active {
    opacity: 1;
    visibility: visible;
}

.don-modal {
    background: linear-gradient(135deg, #ffffff 0%, #fefaf7 100%);
    border-radius: 24px;
    max-width: 580px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(107, 155, 142, 0.1);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.don-overlay.active .don-modal {
    transform: scale(1) translateY(0);
}

.don-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(107, 155, 142, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #4a5568;
    z-index: 10;
}

.don-close:hover {
    background: var(--primary);
    color: white;
    transform: rotate(90deg);
    border-color: var(--primary);
}

.don-content {
    padding: 48px 40px 40px;
}

.don-header {
    text-align: center;
    margin-bottom: 36px;
}

.don-title {
    font-size: 32px;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.don-subtitle {
    font-size: 15px;
    color: #718096;
    line-height: 1.6;
    margin: 0;
    max-width: 460px;
    margin: 0 auto;
}

.don-frequency {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 28px;
    background: rgba(107, 155, 142, 0.08);
    padding: 6px;
    border-radius: 14px;
}

.don-freq-btn {
    padding: 14px 24px;
    border: none;
    background: transparent;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.don-freq-btn.active::before {
    transform: scaleX(1);
}

.don-freq-btn span {
    position: relative;
    z-index: 1;
}

.don-freq-btn.active {
    color: var(--primary);
}

.don-amounts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}

.don-amount-btn {
    padding: 20px 16px;
    border: 2px solid rgba(107, 155, 142, 0.2);
    background: white;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.don-amount-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary) 0%, #5a8a7d 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.don-amount-btn:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(107, 155, 142, 0.2);
}

.don-amount-btn.active {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--primary) 0%, #5a8a7d 100%);
}

.don-amount-btn.active::before {
    opacity: 1;
}

.don-amount-btn.active .don-currency,
.don-amount-btn.active .don-value {
    color: white;
}

.don-currency {
    font-size: 12px;
    font-weight: 500;
    color: #718096;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.don-value {
    font-size: 24px;
    font-weight: 700;
    color: #2d3748;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.don-amount-popular {
    position: relative;
    border-color: var(--secondary);
}

.don-popular-tag {
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 4px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(232, 180, 168, 0.3);
}

.don-custom {
    margin-bottom: 28px;
}

.don-custom-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #4a5568;
    margin-bottom: 10px;
}

.don-custom-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.don-custom-currency {
    position: absolute;
    left: 18px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    pointer-events: none;
}

.don-custom-input {
    width: 100%;
    padding: 16px 18px 16px 56px;
    border: 2px solid rgba(107, 155, 142, 0.2);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
    background: white;
    transition: all 0.3s ease;
}

.don-custom-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(107, 155, 142, 0.1);
}

.don-custom-input::placeholder {
    color: #cbd5e0;
    font-weight: 400;
}

.don-dedication {
    margin-bottom: 28px;
}

.don-checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin-bottom: 12px;
}

.don-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(107, 155, 142, 0.3);
    border-radius: 6px;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background: white;
}

.don-checkbox:checked {
    background: var(--primary);
    border-color: var(--primary);
}

.don-checkbox:checked::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 6px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.don-checkbox-label {
    font-size: 14px;
    font-weight: 500;
    color: #4a5568;
}

.don-dedication-input {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.don-dedication-input.active {
    max-height: 100px;
}

.don-text-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(107, 155, 142, 0.2);
    border-radius: 12px;
    font-size: 15px;
    color: #2d3748;
    background: white;
    transition: all 0.3s ease;
}

.don-text-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(107, 155, 142, 0.1);
}

.don-text-input::placeholder {
    color: #cbd5e0;
}

.don-impact {
    background: linear-gradient(135deg, rgba(107, 155, 142, 0.08) 0%, rgba(107, 155, 142, 0.04) 100%);
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 28px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.don-impact-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.don-impact-text {
    font-size: 13px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

.don-impact-text strong {
    color: #2d3748;
    font-weight: 600;
}

.don-submit-btn {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--primary) 0%, #5a8a7d 100%);
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 16px rgba(107, 155, 142, 0.3);
    position: relative;
    overflow: hidden;
}

.don-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.don-submit-btn:hover::before {
    left: 100%;
}

.don-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(107, 155, 142, 0.4);
}

.don-submit-btn:active {
    transform: translateY(0);
}

.don-btn-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.don-submit-btn:hover .don-btn-icon {
    transform: translateX(4px);
}

.don-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 13px;
    color: #718096;
}

.don-security svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

@media (max-width: 640px) {
    .don-content {
        padding: 40px 24px 32px;
    }

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

    .don-subtitle {
        font-size: 14px;
    }

    .don-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 16px;
    }

    .don-heart-icon {
        width: 36px;
        height: 36px;
    }

    .don-amounts {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .don-amount-btn {
        padding: 16px 12px;
    }

    .don-value {
        font-size: 20px;
    }

    .don-submit-btn {
        padding: 16px 28px;
        font-size: 15px;
    }
}

@media (max-width: 400px) {
    .don-amounts {
        grid-template-columns: 1fr;
    }
}

.don-modal::-webkit-scrollbar {
    width: 8px;
}

.don-modal::-webkit-scrollbar-track {
    background: rgba(107, 155, 142, 0.05);
    border-radius: 4px;
}

.don-modal::-webkit-scrollbar-thumb {
    background: rgba(107, 155, 142, 0.3);
    border-radius: 4px;
}

.don-modal::-webkit-scrollbar-thumb:hover {
    background: rgba(107, 155, 142, 0.5);
}
.hero-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 72px 20px 20px;
    overflow: hidden;
    border-radius: 12px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../images/hero1.jpg);
    /* background-image: url("../../images/hero1.jpg"); */
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(63, 93, 125, 0.85) 0%,
        rgba(102, 153, 102, 0.75) 100%
    );
    z-index: 2;
} */

.hero-curve {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--bg-light);
    z-index: 3;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    color: var(--text-light);
    padding: 60px 20px 100px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-content.hero-animate {
    opacity: 1;
    transform: translateY(0);
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.hero-content.hero-animate .hero-title {
    opacity: 1;
    transform: translateY(0);
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 35px;
    opacity: 0.95;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

.hero-content.hero-animate .hero-subtitle {
    opacity: 0.95;
    transform: translateY(0);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s;
}

.hero-content.hero-animate .hero-buttons {
    opacity: 1;
    transform: translateY(0);
}

.hero-btn {
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Instrument Sans", sans-serif;
}

.hero-btn-primary {
    background: var(--secondary);
    color: var(--text-light);
}

.hero-btn-primary:hover {
    background: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(204, 153, 102, 0.3);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-light);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.hero-features {
    position: relative;
    z-index: 4;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.8s, transform 0.8s ease 0.8s;
}

.hero-content.hero-animate .hero-features {
    opacity: 1;
    transform: translateY(0);
}

.hero-feature-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
    filter: brightness(0) invert(1);
}

.hero-feature-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .hero-section {
        margin: 64px 15px 15px;
    }

    .hero-content {
        padding: 50px 20px 80px;
    }

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

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

    .hero-buttons {
        flex-direction: column;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
        padding: 13px 28px;
    }

    .hero-features {
        gap: 35px;
        margin-top: 40px;
    }

    .hero-feature-logo {
        height: 38px;
    }

    .hero-curve {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

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

    .hero-features {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .hero-feature-logo {
        height: 35px;
    }
}

.abt-section {
    background: var(--bg-light);
    padding: 80px 20px;
    overflow: hidden;
}

.abt-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.abt-content {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.abt-content.visible {
    opacity: 1;
    transform: translateX(0);
}

.abt-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 16px;
    display: inline-block;
}

.abt-heading {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.abt-description {
    font-size: 15px;
    line-height: 1.7;
    color: #5a5a5a;
    margin-bottom: 32px;
}

.abt-founder {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
}

.abt-founder-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.abt-founder-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.abt-founder-info p {
    font-size: 13px;
    color: #777;
}

.abt-signature {
    margin-top: 12px;
    opacity: 0.7;
    max-width: 120px;
    height: auto;
}

.abt-visual {
    position: relative;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease 0.2s;
}

.abt-visual.visible {
    opacity: 1;
    transform: translateX(0);
}

.abt-image-main {
    position: relative;
    border-radius: 200px 200px 20px 20px;
    overflow: hidden;
    background: rgba(63, 93, 125, .4);
    aspect-ratio: 3/4;
    max-width: 450px;
}

.abt-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    opacity: 1;
}

.abt-service-card {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 20px 28px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 2;
}

.abt-service-card:hover {
    transform: translateX(-50%) translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.abt-service-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.abt-service-icon i {
    font-size: 20px;
    color: white;
}

.abt-service-text h5 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.abt-service-text p {
    font-size: 12px;
    color: #777;
}

.abt-image-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 280px;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.abt-image-secondary:hover {
    transform: translateY(-10px);
}

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

@media (max-width: 768px) {
    .abt-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .abt-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .abt-heading {
        font-size: 36px;
    }

    .abt-image-main {
        max-width: 380px;
        margin: 0 auto;
    }

    .abt-image-secondary {
        width: 220px;
        height: 260px;
        bottom: -30px;
        right: -30px;
    }
}

@media (max-width: 640px) {
    .abt-section {
        padding: 60px 16px;
    }

    .abt-heading {
        font-size: 32px;
    }

    .abt-description {
        font-size: 14px;
    }

    .abt-image-main {
        max-width: 100%;
    }

    .abt-image-secondary {
        width: 180px;
        height: 220px;
        bottom: -20px;
        right: -20px;
    }

    .abt-service-card {
        padding: 16px 20px;
        bottom: 20px;
    }
}

.serv-section {
    position: relative;
    width: 100%;
    min-height: 70vh;
    padding: 100px 0;
    overflow: hidden;
    margin-top: 100px;
    margin-bottom: 80px;
    /* overflow-x: hidden; */
}

.serv-image {
    position: absolute;
    left: 0;
    bottom: 5%;
    width: 50%;
    height: 100%;
    background: url(../images/serv.jpg) center/cover no-repeat;
    z-index: 1;
    border-top-right-radius: 24px;
    border-bottom-right-radius: 24px;
    overflow: hidden;
}

.serv-bg {
    position: absolute;
    top: 5%;
    right: 0;
    width: 55%;
    height: 94%;
    background: var(--footer-bg);
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.serv-container {
    position: absolute;
    top: 50%;
    /* left: 50%; */
    right: 0;
    transform: translateY(-50%);
    width: 100%;
    max-width: 1400px;
    padding: 0 40px;
    z-index: 3;
}

.serv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.serv-card {
    background: var(--bg-light);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.serv-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-6px);
}

.serv-hero {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.serv-hero-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
}

.serv-meditation {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    display: grid;
    grid-template-columns: 55% 45%;
}

.serv-meditation-text {
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.serv-meditation-img {
    position: relative;
}

.serv-meditation-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.serv-app {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
}

.serv-app-text {
    flex: 0;
}

.serv-app-mockup {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px 0 10px;
}

.serv-phone {
    width: 220px;
    height: 440px;
    position: relative;
}

.serv-phone-screen {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #fff;
    position: relative;
}

.serv-phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.serv-workshop {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
    display: grid;
    grid-template-columns: 45% 55%;
    border-radius: 12px;
}

.serv-workshop-img {
    position: relative;
}

.serv-workshop-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.serv-workshop-text {
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.serv-card-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--text-dark);
    font-family: "Varela Round", sans-serif;
}

.serv-card-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

@media (max-width: 1200px) {
    .serv-hero-title {
        font-size: 32px;
    }
    
    .serv-card-title {
        font-size: 20px;
    }
}

@media (max-width: 968px) {
    .serv-container {
        position: relative;
        transform: none;
        top: 0;
        left: 0;
        padding: 60px 40px;
    }

    .serv-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto auto;
        gap: 16px;
    }
    
    .serv-hero {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
        padding: 50px 40px;
        text-align: center;
    }
    
    .serv-meditation {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        text-align: center;
    }
    
    .serv-app {
        grid-column: 2 / 3;
        grid-row: 2 / 4;
        text-align: center;
    }
    
    .serv-workshop {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
        text-align: center;
    }
    
    .serv-hero-title {
        font-size: 28px;
    }
}

@media (max-width: 640px) {
    .serv-section {
        display: flex;
        flex-direction: column;
        padding: 0;
    }

    .serv-image,
    .serv-bg {
        position: relative;
        width: 100%;
        border-radius: 0;
    }

    .serv-bg {
        order: 0;
        min-height: 300px;
    }

    .serv-image {
        order: 1;
        min-height: 450px;
        height: 450px;
    }

    .serv-container {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        padding: 40px 24px;
        margin-top: -200px;
    }

    .serv-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 16px;
    }
    
    .serv-hero {
        grid-column: 1;
        grid-row: auto;
        padding: 40px 30px;
    }
    
    .serv-hero-title {
        font-size: 24px;
    }
    
    .serv-meditation {
        grid-column: 1;
        grid-row: auto;
        grid-template-columns: 1fr;
    }
    
    .serv-meditation-img {
        height: 220px;
    }
    
    .serv-app {
        grid-column: 1;
        grid-row: auto;
        min-height: 520px;
    }
    
    .serv-workshop {
        grid-column: 1;
        grid-row: auto;
        grid-template-columns: 1fr;
    }
    
    .serv-workshop-img {
        height: 220px;
    }
    
    .serv-phone {
        width: 190px;
        height: 380px;
    }

    .serv-meditation-text,
    .serv-workshop-text,
    .serv-app-text {
        padding: 28px 24px;
    }
    
    .serv-card-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .serv-card-desc {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .serv-hero {
        padding: 30px 24px;
    }
    
    .serv-hero-title {
        font-size: 20px;
    }
    
    .serv-card-title {
        font-size: 16px;
    }
    
    .serv-card-desc {
        font-size: 12px;
    }
    
    .serv-phone {
        width: 170px;
        height: 340px;
    }
}
.why-section {
    width: 100%;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.why-container {
    width: 100%;
    max-width: 1400px;
    background: var(--primary);
    border-radius: 40px;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.why-container.why-visible {
    opacity: 1;
    transform: translateY(0);
}

.why-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

.why-card {
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 50px 60px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.why-container.why-visible .why-card {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.why-tagline {
    display: inline-block;
    background: rgba(102, 153, 102, 0.1);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.why-title {
    font-size: 32px;
    line-height: 1.4;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 28px;
}

.why-highlight {
    color: var(--primary);
    font-weight: 400;
}

.why-list {
    list-style: none;
    margin-bottom: 36px;
    padding-left: 0;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.why-container.why-visible .why-item:nth-child(1) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.4s;
}

.why-container.why-visible .why-item:nth-child(2) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.55s;
}

.why-container.why-visible .why-item:nth-child(3) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.7s;
}

.why-item i {
    font-size: 18px;
    color: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
}

.why-item-text {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.7;
}

.why-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.why-container.why-visible .why-cta {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.85s;
}

.why-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary), #5a8a5a);
    color: var(--text-light);
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(102, 153, 102, 0.3);
    position: relative;
    overflow: hidden;
}

.why-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.why-btn:hover::before {
    left: 100%;
}

.why-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(102, 153, 102, 0.4);
}

.why-btn i {
    transition: transform 0.3s ease;
}

.why-btn:hover i {
    transform: translateX(5px);
}

.why-partners {
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.why-container.why-visible .why-partners {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.why-partners-header {
    text-align: center;
    margin-bottom: 50px;
}

.why-partners-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-light);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.why-partners-title {
    font-size: 28px;
    color: var(--text-light);
    font-weight: 700;
    margin: 0;
}

.why-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.why-partner-logo {
    background: transparent;
    border-radius: 16px;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.9);
    animation: fadeInScale 0.6s ease-out forwards;
}

.why-partner-logo:nth-child(1) { animation-delay: 0.1s; }
.why-partner-logo:nth-child(2) { animation-delay: 0.15s; }
.why-partner-logo:nth-child(3) { animation-delay: 0.2s; }
.why-partner-logo:nth-child(4) { animation-delay: 0.25s; }
.why-partner-logo:nth-child(5) { animation-delay: 0.3s; }
.why-partner-logo:nth-child(6) { animation-delay: 0.35s; }
.why-partner-logo:nth-child(7) { animation-delay: 0.4s; }
.why-partner-logo:nth-child(8) { animation-delay: 0.45s; }
.why-partner-logo:nth-child(9) { animation-delay: 0.5s; }
.why-partner-logo:nth-child(10) { animation-delay: 0.55s; }
.why-partner-logo:nth-child(11) { animation-delay: 0.6s; }
.why-partner-logo:nth-child(12) { animation-delay: 0.65s; }

@keyframes fadeInScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.why-partner-logo:hover {
    transform: translateY(-8px) scale(1.05);
}

.why-partner-logo img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.why-partner-logo:hover img {
    filter: brightness(0) invert(1) drop-shadow(0 4px 8px rgba(255, 255, 255, 0.3));
}

@media (max-width: 1024px) {
    .why-container {
        padding: 60px 40px;
        border-radius: 32px;
    }

    .why-content {
        gap: 60px;
    }

    .why-card {
        padding: 40px 45px;
    }

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

    .why-partners-title {
        font-size: 24px;
    }

    .why-partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .why-section {
        padding: 60px 15px;
    }

    .why-container {
        padding: 50px 30px;
        border-radius: 28px;
    }

    .why-content {
        gap: 50px;
    }

    .why-card {
        padding: 35px 30px;
        border-radius: 20px;
        max-width: 450px;
    }

    .why-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .why-item {
        margin-bottom: 16px;
    }

    .why-partners-header {
        margin-bottom: 40px;
    }

    .why-partners-title {
        font-size: 22px;
    }

    .why-partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
        gap: 16px;
    }

    .why-partner-logo {
        padding: 24px 16px;
        min-height: 85px;
    }

    .why-partner-logo img {
        max-height: 50px;
    }
}

@media (max-width: 480px) {
    .why-section {
        padding: 50px 12px;
    }

    .why-container {
        padding: 40px 20px;
        border-radius: 24px;
    }

    .why-content {
        gap: 40px;
    }

    .why-card {
        padding: 30px 24px;
        border-radius: 18px;
    }

    .why-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .why-tagline {
        font-size: 11px;
        padding: 6px 14px;
    }

    .why-item {
        gap: 12px;
        margin-bottom: 14px;
    }

    .why-item-text {
        font-size: 13px;
    }

    .why-btn {
        padding: 12px 24px;
        font-size: 13px;
    }

    .why-partners-label {
        font-size: 11px;
        padding: 6px 14px;
    }

    .why-partners-title {
        font-size: 18px;
    }

    .why-partners-header {
        margin-bottom: 32px;
    }

    .why-partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .why-partner-logo {
        padding: 20px 12px;
        min-height: 75px;
    }

    .why-partner-logo img {
        max-height: 45px;
    }
}
.vls-section {
    width: 100%;
    min-height: 1000px;
    position: relative;
    padding: 200px 0;
    background: rgba(102, 153, 102, 0.2);
    border-radius: 50% 50% 0 0 / 80px 80px 0 0;
    margin-top: 200px;
    margin-bottom: 200px;
}

.vls-values-container {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1600px;
    background: transparent;
    padding: 60px;
    z-index: 10;
}

.vls-values-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 350px;
}

.vls-value-image {
    position: absolute;
    width: 110px;
    height: 110px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.vls-value-image.left {
    top: 20px;
    left: 80px;
}

.vls-value-image.right {
    bottom: 20px;
    right: 80px;
}

.vls-value-icon {
    position: absolute;
    bottom: 40px;
    left: 120px;
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.vls-values-center {
    text-align: center;
    max-width: 600px;
    z-index: 5;
}

.vls-values-label {
    display: inline-block;
    background: #e8e8e8;
    color: var(--text-dark);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 20px;
}

.vls-values-heading {
    font-size: 38px;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 18px;
}

.vls-values-text {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 25px;
}

.vls-values-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.vls-icon-item {
    width: 48px;
    height: 48px;
    background: #f8f8f8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.vls-icon-item:hover {
    background: var(--primary);
    color: var(--text-light);
    transform: translateY(-3px);
}

.vls-testimonials-container {
    position: absolute;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1400px;
    z-index: 10;
}

.vls-testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.vls-testimonials-label {
    font-size: 13px;
    color: #777;
    margin-bottom: 12px;
}

.vls-testimonials-heading {
    font-size: 32px;
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.4;
}

.vls-testimonials-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 60px;
}

.vls-testimonials-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.vls-testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.6s ease;
    opacity: 0;
    transform: translateY(30px);
}

.vls-testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.vls-testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.vls-values-content {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.vls-values-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.vls-testimonials-header {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.vls-testimonials-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.vls-testimonial-stars {
    color: var(--secondary);
    font-size: 13px;
    margin-bottom: 18px;
}

.vls-testimonial-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
}

.vls-testimonial-text {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
}

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

.vls-author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.vls-author-info {
    flex: 1;
}

.vls-author-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.vls-author-role {
    font-size: 13px;
    color: #888;
}

.vls-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: var(--bg-light);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
}

.vls-slider-btn:hover {
    background: var(--primary);
    color: var(--text-light);
    transform: translateY(-50%) scale(1.05);
}

.vls-slider-btn.vls-prev {
    left: 0;
}

.vls-slider-btn.vls-next {
    right: 0;
}

@media (max-width: 1200px) {
    .vls-section {
        padding: 200px 0;
        border-radius: 50% 50% 0 0 / 60px 60px 0 0;
        min-height: 800px;
    }

    .vls-values-container {
        padding: 50px 40px;
    }

    .vls-value-image.left {
        left: 20px;
    }

    .vls-value-image.right {
        right: 20px;
        bottom: -40px;
    }

    .vls-value-icon {
        left: 80px;
    }

    .vls-values-heading {
        font-size: 32px;
    }

    .vls-testimonials-heading {
        font-size: 28px;
    }

    .vls-testimonial-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 900px) {
    .vls-section {
        padding: 150px 0;
        border-radius: 50% 50% 0 0 / 40px 40px 0 0;
    }

    .vls-values-container {
        top: -80px;
        padding: 40px 30px;
        width: 95%;
    }

    .vls-values-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vls-values-content {
        min-height: 280px;
    }

    .vls-value-image {
        width: 90px;
        height: 90px;
    }

    .vls-value-image.left {
        left: 0px;
        top: 15px;
    }

    .vls-value-image.right {
        right: 20px;
    }

    .vls-value-icon {
        left: 50px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .vls-values-heading {
        font-size: 26px;
    }

    .vls-testimonials-container {
        bottom: -200px;
        width: 95%;
    }

    .vls-testimonials-heading {
        font-size: 20px;
    }

    .vls-testimonial-card {
        flex: 0 0 100%;
        padding: 35px;
    }

    .vls-testimonials-slider {
        padding: 0 50px;
    }

    .vls-slider-btn {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 500px) {
    .vls-values-container {
        min-height: 600px;
        top: -200px;
    }

    .vls-values-content {
        min-height: 400px;
    }

    .vls-value-image.left {
        left: 10px;
        top: 10px;
    }

    .vls-value-image:last-child {
        right: 10px;
        bottom: 10px;
    }

    .vls-value-icon {
        left: 35px;
        bottom: 30px;
    }

    .vls-values-heading {
        font-size: 18px;
    }

    .vls-values-icons {
        flex-wrap: wrap;
    }

    .vls-testimonials-container {
        bottom: -220px;
    }

    .vls-testimonials-heading {
        font-size: 17px;
    }

    .vls-testimonial-card {
        padding: 28px;
    }

    .vls-testimonial-title {
        font-size: 15px;
    }

    .vls-testimonial-text {
        font-size: 12px;
    }

    .vls-author-image {
        width: 40px;
        height: 40px;
    }

    .vls-author-name {
        font-size: 11px;
    }

    .vls-author-role {
        font-size: 9px;
    }

    .vls-testimonials-slider {
        padding: 0 45px;
    }
}
.psl-section {
    position: relative;
    /* min-height: 80vh; */
    padding: 80px 20px 200px;
    overflow: hidden;
}

.psl-circle {
    position: absolute;
    border: 1.5px solid #a8d4a8;
    border-radius: 50%;
    pointer-events: none;
}

.psl-circle.psl-left {
    width: 900px;
    height: 800px;
    left: 180px;
    top: 100px;
}

.psl-circle.psl-right {
    width: 500px;
    height: 500px;
    right: 400px;
    top: 220px;
}


@media (max-width: 1800px) {
    .psl-circle.psl-left {
        width: 750px;
        height: 750px;
        left: 230px;
        top: 200px;
        transform: translateX(-50%);
    }

    .psl-circle.psl-right {
        width: 450px;
        height: 450px;
        right: 50px;
        top: 200px;
    }
}

@media (max-width: 1400px) {
    .psl-circle.psl-left {
        width: 600px;
        height: 600px;
        left: 200px;
        top: 200px;
        transform: translateX(-50%);
    }

    .psl-circle.psl-right {
        width: 400px;
        height: 400px;
        right: -50px;
        top: 220px;
    }

    .psl-chat {
        align-items: center;
    }

    .psl-message {
        max-width: 90%;
    }

    .psl-message.psl-left,
    .psl-message.psl-right {
        align-self: center;
    }

    .psl-event {
        margin-left: 0;
    }
}

@media (max-width: 875px) {
    .psl-circle.psl-left {
        width: 1000px;
        height: 700px;
        left: -50px;
        top: 180px;
        transform: translateX(-50%);
    }

    .psl-circle.psl-right {
        display: none;
    }

    .psl-chat {
        align-items: center;
    }

    .psl-message {
        max-width: 90%;
    }

    .psl-message.psl-left,
    .psl-message.psl-right {
        align-self: center;
    }

    .psl-event {
        margin-left: 0;
    }
}

@media (max-width: 500px) {
    .psl-circle.psl-left {
        width: 800px;
        height: 800px;
        left: -50px;
        top: 280px;
        transform: translateX(-50%);
    }
}

.psl-header {
    text-align: center;
    margin-bottom: 80px;
}

.psl-header h1 {
    font-family: "Varela Round", sans-serif;
    font-size: 32px;
    margin: 0 0 10px;
    font-weight: 700;
}

.psl-header p {
    font-size: 14px;
    color: #444;
    max-width: 560px;
    margin: 0 auto;
}

.psl-chat {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: relative;
    z-index: 2;
}

.psl-message {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    max-width: 70%;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease-out;
}

.psl-message.psl-visible {
    opacity: 1;
    transform: translateX(0);
}

.psl-message.psl-left {
    align-self: flex-start;
}

.psl-message.psl-right {
    align-self: flex-end;
    flex-direction: row-reverse;
    transform: translateX(50px);
}

.psl-message.psl-right.psl-visible {
    transform: translateX(0);
}

.psl-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e5e7eb;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.psl-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.psl-avatar.psl-online::after {
    content: "";
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 7px;
    height: 7px;
    background: #669966;
    border-radius: 50%;
    border: 2px solid #fff;
}

.psl-bubble {
    background: #fff3e0;
    padding: 14px 16px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.psl-bubble.psl-bubble-client {
    background: #f0fdf4;
}

.psl-name {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #669966;
}

.psl-text {
    font-size: 13px;
    line-height: 1.45;
    color: #222;
}

.psl-event {
    width: 220px;
    background: #fff3e0;
    border-radius: 16px;
    padding: 14px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    margin-left: 52px;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease-out;
}

.psl-event.psl-visible {
    opacity: 1;
    transform: translateX(0);
}

.psl-event .psl-tag {
    display: inline-block;
    background: #d4e8d4;
    color: #4f7f4f;
    padding: 5px 11px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 12px;
}

.psl-event .psl-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 12px;
    color: #333;
}

.psl-bell {
    font-size: 16px;
}

.cta-section {
    width: 100%;
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background-color: var(--bg-light);
    position: relative;
}

.cta-container {
    width: 100%;
    max-width: 1400px;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
}

.cta-image-left {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-image-left.cta-visible {
    opacity: 1;
    transform: translateY(-40px);
}

.cta-image-right {
    position: relative;
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.2s;
}

.cta-image-right.cta-visible {
    opacity: 1;
    transform: translateY(40px);
}

.cta-image-wrapper {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
}

.cta-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.cta-content {
    text-align: center;
    padding: 40px 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.1s;
}

.cta-content.cta-visible {
    opacity: 1;
    transform: translateY(0);
}

.cta-heading {
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-subheading {
    font-family: "Instrument Sans", sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 35px;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-btn-primary {
    background-color: var(--primary);
    color: var(--text-light);
}

.cta-btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 153, 102, 0.3);
}

.cta-btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.cta-btn-secondary:hover {
    background-color: var(--primary);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.2);
}

.cta-btn:active {
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .cta-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-image-left.cta-visible {
        transform: translateY(0);
    }

    .cta-image-right.cta-visible {
        transform: translateY(0);
    }

    .cta-heading {
        font-size: 2.5rem;
    }

    .cta-image-left {
        order: 1;
        max-width: 350px;
        margin: 0 auto;
    }

    .cta-content {
        order: 2;
    }

    .cta-image-right {
        order: 3;
        max-width: 350px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 40px 15px;
    }

    .cta-heading {
        font-size: 2rem;
    }

    .cta-subheading {
        font-size: 0.9rem;
    }

    .cta-btn {
        padding: 12px 28px;
        font-size: 0.9rem;
    }

    .cta-image-left,
    .cta-image-right {
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .cta-heading {
        font-size: 1.75rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .cta-btn {
        width: 100%;
        max-width: 280px;
    }
}

.blg-section {
    width: 100%;
    padding: 80px 20px;
    background: var(--bg-light);
    overflow-x: hidden;
}

.blg-container {
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: hidden;
}

.blg-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    gap: 20px;
}

.blg-header-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.blg-section-number {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.blg-title {
    font-family: 'Varela Round', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--text-dark);
}

.blg-browse-btn {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--primary);
    border-radius: 8px;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 13px;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.blg-browse-btn:hover {
    background: var(--primary);
    color: var(--text-light);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.blg-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    overflow-x: hidden;
}

.blg-featured {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--footer-bg);
    transition: transform 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: inherit;
}

.blg-featured:hover {
    transform: translateY(-4px);
}

.blg-featured-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.blg-featured-content {
    padding: 40px;
}

.blg-featured-title {
    font-family: 'Varela Round', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.blg-featured-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.blg-meta-item {
    font-size: 13px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blg-meta-separator {
    color: var(--border-color);
}

.blg-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--secondary);
    text-decoration: none;
    margin-top: 20px;
    transition: gap 0.3s ease;
    pointer-events: none;
}

.blg-featured:hover .blg-read-more {
    gap: 12px;
}

.blg-featured,
.blg-card {
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blg-featured {
    transform: translateX(-60px);
}

.blg-card {
    transform: translateX(60px);
}

.blg-featured.blg-animate,
.blg-card.blg-animate {
    opacity: 1;
    transform: translateX(0);
}

.blg-card.blg-animate:nth-child(1) {
    transition-delay: 0.1s;
}

.blg-card.blg-animate:nth-child(2) {
    transition-delay: 0.2s;
}

.blg-card.blg-animate:nth-child(3) {
    transition-delay: 0.3s;
}

.blg-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blg-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--footer-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.blg-card:hover {
    background: #f0f0f0;
    transform: translateX(4px);
}

.blg-card-image {
    width: 180px;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.blg-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    flex: 1;
}

.blg-card-title {
    font-family: 'Varela Round', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.4;
}

.blg-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.blg-card-meta-item {
    font-size: 10px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 1024px) {
    .blg-title {
        font-size: 30px;
    }
    
    .blg-content {
        gap: 24px;
    }
    
    .blg-featured-image {
        height: 400px;
    }
    
    .blg-featured-content {
        padding: 30px;
    }
    
    .blg-featured-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .blg-section {
        padding: 60px 20px;
    }
    
    .blg-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 40px;
    }
    
    .blg-title {
        font-size: 28px;
    }
    
    .blg-browse-btn {
        align-self: stretch;
        text-align: center;
    }
    
    .blg-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blg-featured-image {
        height: 300px;
    }
    
    .blg-featured-content {
        padding: 24px;
    }
    
    .blg-featured-title {
        font-size: 24px;
        margin-bottom: 16px;
    }
    
    .blg-card {
        flex-direction: column;
        gap: 16px;
    }
    
    .blg-card-image {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .blg-section {
        padding: 40px 16px;
    }
    
    .blg-title {
        font-size: 24px;
    }
    
    .blg-featured-content {
        padding: 20px;
    }
    
    .blg-featured-title {
        font-size: 22px;
    }
    
    .blg-card {
        padding: 16px;
    }
    
    .blg-card-title {
        font-size: 18px;
    }
    
    .blg-featured-meta,
    .blg-card-meta {
        flex-wrap: wrap;
    }
}

