/*
Theme Name: main-themes
Author: ahmad
Description: Theme WordPress siap pakai (Classic Editor)
Version: 1.0
*/

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

:root {
    --cyan-500: #06b6d4;
    --cyan-600: #0891b2;
    --cyan-400: #22d3ee;
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--slate-900);
    background: #fff;
}

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

.icon {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--slate-200);
}

.header-top {
    background: linear-gradient(to right, var(--slate-900), #164e63, var(--slate-900));
    color: white;
    padding: 0.5rem 0;
}

.header-top-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
}

.header-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

.header-contact-item:hover {
    color: var(--cyan-400);
}

.icon-box {
    padding: 0.375rem;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-center;
}

.icon-cyan {
    background: rgba(6, 182, 212, 0.2);
}

.icon-orange {
    background: rgba(249, 115, 22, 0.2);
}

.nav {
    padding: 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    background: linear-gradient(to bottom right, var(--slate-900), #0e7490);
    padding: 0.75rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-center;
    position: relative;
}

.logo-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, var(--cyan-400), var(--orange-500));
    border-radius: 0.75rem;
    filter: blur(15px);
    opacity: 0.5;
    z-index: -1;
}

.logo-icon .icon {
    width: 24px;
    height: 24px;
    color: var(--cyan-400);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: -0.025em;
    background: linear-gradient(to right, var(--slate-900), #0e7490, var(--slate-900));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-subtitle {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--orange-500);
}

.nav-links {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    padding: 0.625rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    color: var(--slate-700);
}

.nav-link:hover {
    background: var(--slate-100);
}

.nav-link.active {
    background: linear-gradient(to right, var(--cyan-500), var(--cyan-600));
    color: white;
    box-shadow: 0 10px 15px -3px rgba(6, 182, 212, 0.3);
}

.nav-link.cta-button {
    background: linear-gradient(to right, var(--slate-900), #0e7490);
    color: white;
    margin-left: 0.5rem;
}

.nav-link.cta-button:hover {
    background: linear-gradient(to right, var(--slate-800), #0e7490);
    box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.2);
}

.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-center;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    border-radius: 0.5rem;
    cursor: pointer;
    position: relative;
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
    stroke: var(--slate-900);
    transition: all 0.3s;
    position: absolute;
}

.mobile-menu-toggle:hover {
    background: var(--slate-100);
}

.menu-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.close-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

.mobile-menu-toggle.active .menu-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

.mobile-menu-toggle.active .close-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu {
	display:none;
    position: fixed;
    top: 45px;
    right: 0px;
    bottom: 0;
    width: 100%;
    max-width: 400px;
    background: white;
    z-index: 1050;
    padding: 16px;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    overflow-y: auto;
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.15);
	height: 100vh;
}

.mobile-menu.active {
    transform: translateX(0);
	display:block;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-center;
    border: none;
    background: transparent;
    border-radius: 0.5rem;
    cursor: pointer;
}

.mobile-menu-close:hover {
    background: var(--slate-100);
}

.mobile-menu-close .icon {
    width: 24px;
    height: 24px;
    stroke: var(--slate-900);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    color: var(--slate-700);
}

.mobile-nav-link:hover {
    background: var(--slate-100);
}

.mobile-nav-link.active {
    background: linear-gradient(to right, var(--cyan-500), var(--cyan-600));
    color: white;
    box-shadow: 0 10px 15px -3px rgba(6, 182, 212, 0.3);
}

.mobile-nav-link.cta {
    background: linear-gradient(to right, var(--slate-900), #0e7490);
    color: white;
}

.mobile-nav-link.cta:hover {
    background: linear-gradient(to right, var(--slate-800), #0e7490);
    box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.2);
}

.mobile-menu-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--slate-200);
}

.mobile-contact-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: #ecfeff;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s;
}

.mobile-contact-card:hover {
    background: #cffafe;
}

.mobile-contact-card .icon-box {
    background: var(--cyan-500);
    padding: 0.5rem;
    border-radius: 0.5rem;
}

.mobile-contact-card .icon {
    color: white;
}

.mobile-contact-label {
    font-size: 0.75rem;
    color: var(--slate-600);
    font-weight: 500;
}

.mobile-contact-value {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--slate-900);
}

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(to bottom right, var(--slate-900), #0e7490, var(--slate-900));
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://www.stanhopeservice.com/wp-content/uploads/2026/01/hannah-busing-RvF2R_qMpRk-unsplash_small-scaled.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.hero.service::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://www.stanhopeservice.com/wp-content/uploads/2026/01/getty-images-yDIukFWwcGw-unsplash_small-scaled.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.hero.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://www.stanhopeservice.com/wp-content/uploads/2026/01/ben-duchac-96DW4Pow3qI-unsplash_small-scaled.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: var(--cyan-500);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.2;
}

.hero .container {
    position: relative;
    z-index: 1;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(6, 182, 212, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(6, 182, 212, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.badge .icon {
    color: var(--cyan-400);
}

.badge span {
    color: var(--cyan-400);
    font-weight: 600;
    font-size: 0.875rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    display: block;
    background: linear-gradient(to right, var(--cyan-400), var(--orange-500));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--slate-300);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn .icon {
    transition: transform 0.3s;
}

.btn-primary {
    background: linear-gradient(to right, var(--cyan-500), var(--cyan-600));
    color: white;
    box-shadow: 0 20px 25px -5px rgba(6, 182, 212, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 25px 50px -12px rgba(6, 182, 212, 0.5);
    transform: scale(1.05);
}

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-dark {
    background: linear-gradient(to right, var(--slate-900), #0e7490);
    color: white;
}

.btn-dark:hover {
    box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.2);
}

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

.btn-white {
    background: white;
    color: var(--cyan-600);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    background: var(--slate-50);
}

.btn-dark-outline {
    background: var(--slate-900);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-dark-outline:hover {
    background: var(--slate-800);
}

.btn-dark-outline:hover .icon {
    transform: translateX(4px);
}

.hero-image {
    display: none;
    position: relative;
}

@media (min-width: 1024px) {
    .hero-image {
        display: block;
    }
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, var(--cyan-500), var(--orange-500));
    border-radius: 1.5rem;
    filter: blur(40px);
    opacity: 0.2;
}

.hero-image img {
    position: relative;
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.stats {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--slate-50), white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    text-align: center;
}

.stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    margin-bottom: 1rem;
    transition: transform 0.3s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.stat-icon.cyan {
    background: linear-gradient(to bottom right, var(--cyan-500), var(--cyan-600));
}

.stat-icon.orange {
    background: linear-gradient(to bottom right, var(--orange-500), var(--orange-600));
}

.stat-icon .icon {
    width: 32px;
    height: 32px;
    stroke: white;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
}

.stat-value {
    font-size: 2.25rem;
    font-weight: 900;
    background: linear-gradient(to right, var(--slate-900), #0e7490);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--slate-600);
    font-weight: 600;
}

.services-preview {
    padding: 6rem 0;
    background: white;
}

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

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--slate-900);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.25rem;
    color: var(--slate-600);
    max-width: 48rem;
    margin: 0 auto;
}

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

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

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    position: relative;
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    border: 2px solid var(--slate-100);
    transition: all 0.3s;
}

.service-card:hover {
    border-color: transparent;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, var(--slate-50), white);
    border-radius: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card > * {
    position: relative;
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.service-icon.cyan {
    background: linear-gradient(to bottom right, var(--cyan-500), #2563eb);
}

.service-icon.orange {
    background: linear-gradient(to bottom right, var(--orange-500), #dc2626);
}

.service-icon.purple {
    background: linear-gradient(to bottom right, #a855f7, #ec4899);
}

.service-icon.teal {
    background: linear-gradient(to bottom right, #14b8a6, var(--cyan-600));
}

.service-icon.rose {
    background: linear-gradient(to bottom right, #f43f5e, #ec4899);
}

.service-icon.indigo {
    background: linear-gradient(to bottom right, #6366f1, #2563eb);
}

.service-icon .icon {
    width: 32px;
    height: 32px;
    stroke: white;
}

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

.service-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--slate-900);
    margin-bottom: 0.75rem;
}

.service-description {
    color: var(--slate-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--cyan-600);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.service-link:hover {
    color: var(--cyan-700);
    gap: 0.5rem;
}

.service-link .icon {
    width: 16px;
    height: 16px;
}

.section-cta {
    text-align: center;
}

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom right, var(--cyan-500), var(--cyan-600));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(249, 115, 22, 0.2), transparent);
}

.cta-section .container {
    position: relative;
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.25rem;
    color: #ecfeff;
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.footer {
    position: relative;
    background: linear-gradient(to bottom right, var(--slate-900), var(--slate-800), var(--slate-900));
    color: white;
    overflow: hidden;
    padding: 4rem 0;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(6, 182, 212, 0.1), rgba(249, 115, 22, 0.1));
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 384px;
    height: 384px;
    background: rgba(6, 182, 212, 0.05);
    border-radius: 50%;
    filter: blur(80px);
}

.footer .container {
    position: relative;
}

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

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-col.about {
    grid-column: 1 / -1;
}

@media (min-width: 768px) {
    .footer-col.about {
        grid-column: auto;
    }
}

.footer-description {
    color: var(--slate-300);
    line-height: 1.6;
    font-size: 1.125rem;
    margin-top: 1.5rem;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--cyan-400);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--slate-300);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.footer-links a::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--orange-500);
    border-radius: 50%;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--cyan-400);
}

.footer-links a:hover::before {
    width: 12px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact .icon-box {
    background: rgba(249, 115, 22, 0.2);
    padding: 0.5rem;
    border-radius: 0.5rem;
}

.footer-contact .icon {
    color: var(--orange-500);
    width: 16px;
    height: 16px;
}

.footer-contact a {
    color: var(--slate-300);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--cyan-400);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(203, 213, 225, 0.1);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-bottom p {
    color: var(--slate-400);
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: var(--slate-400);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--cyan-400);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 5rem;
}
@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.contact-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    border: 2px solid #f1f5f9;
    transition: all 0.3s;
}
.contact-card:hover {
    border-color: transparent;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.form-section {
    background: linear-gradient(to bottom right, var(--slate-900), #0e7490, var(--slate-900));
    border-radius: 1.5rem;
    padding: 3rem;
    color: white;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #e2e8f0;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    color: white;
    font-size: 1rem;
    transition: all 0.3s;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #cbd5e1;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cyan-500);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.2);
}
.form-group textarea {
    resize: vertical;
    min-height: 150px;
}
.success-message {
    display: none;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    color: #ecfeff;
    font-weight: 600;
}