/*body {
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #f4f5f0 50%, #fff1f2 100%);
}*/

/* --- Background Animation Shapes --- */
.hero-section1 {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blob-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.6;
    pointer-events: none;
}

.blob {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(80px);
    mix-blend-mode: multiply;
    animation: float 10s infinite alternate ease-in-out;
}

.blob-1 {
    top: 5%;
    left: 10%;
    background-color: #7dd3fc; /* sky-300 */
    animation-delay: 0s;
}

.blob-2 {
    top: 20%;
    right: 10%;
    background-color: #fda4af; /* rose-300 */
    animation-delay: 2s;
}

.blob-3 {
    bottom: -10%;
    left: 30%;
    background-color: #fef08a; /* yellow-200 */
    animation-delay: 4s;
}

@keyframes float {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}

/* --- Content Styling --- */
.content-wrapper {
    position: relative;
    z-index: 10;
    padding: 80px 20px;
}

.brand-logo {
    width: 128px;
    height: 128px;
    object-fit: contain;
    border-radius: 50%;
    margin-bottom: 2rem;
}

h1.main-title {
    color: #2d3f37;
    font-weight: 700;
    letter-spacing: -1px;
    font-family: var(--font-02);
}

.gradient-text {
    background: linear-gradient(to right, #0284c7, #5c8272);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-top: 10px;
}

.subtitle {
    color: #3d574d;
    font-weight: 500;
    font-size: 1.35rem;
    max-width: 600px;
    font-family: var(--font-02);
}

/* --- Glassmorphism Card --- */
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid #d1dcd7;
    border-radius: 1.25rem;
    max-width: 700px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.glass-card h3 {
    color: #5c8272;
    font-weight: 700;
    font-family: var(--font-01);
    font-size: 1.5rem;
}

.glass-card p {
    color: #3d574d;
    font-size: 1.125rem;
    font-family: var(--font-01);
    font-weight: 400;
}
.glass-card .leading-relaxed{
    font-size: 1rem;
}
/* --- Buttons --- */
.btn-custom-primary {
    background-color: #5c8272;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 16px 40px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(92, 130, 114, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-custom-primary i {
    transition: transform 0.3s ease;
}

.btn-custom-primary:hover {
    background-color: #4a6b5e;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(92, 130, 114, 0.3);
}

.btn-custom-primary:hover i {
    transform: translateX(5px);
}

.community-text {
    color: #5c8272;
    font-size: 0.875rem;
    letter-spacing: 1.5px;
    margin-top: 4rem;
    font-weight: 500;
    font-family: var(--font-01);
}

/* --- Scroll Arrow --- */
.scroll-indicator {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: #5c8272;
    font-size: 2rem;
    animation: bounce 2s infinite;
}
.scroll-indicator .fas{
    color: #5c8272!important;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-15px) translateX(-50%); }
    60% { transform: translateY(-7px) translateX(-50%); }
}

/* Responsive Title adjustments */
@media (min-width: 768px) {
    h1.main-title { font-size: 6rem; }
}
@media (max-width: 767px) {
    h1.main-title { font-size: 3rem; }
    .blob { width: 300px; height: 300px; }
}