@import url('../../../../../templates/css/themes.css');

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}



html {
    scroll-behavior: smooth;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.7;
    background-color: var(--color-bg-base);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-bg-top);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 20px 0;
}

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

.text-left {
    text-align: left;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--color-bg-top);
    color: var(--color-surface);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: #163A5F;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-accent {
    background: var(--accent-gradient);
    color: var(--color-bg-top);
    box-shadow: 0 4px 15px rgba(0, 230, 118, 0.4);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 230, 118, 0.6);
}

.btn-outline {
    border: 2px solid var(--color-surface);
    color: var(--color-surface);
    background: transparent;
}

.btn-outline:hover {
    background: var(--color-surface);
    color: var(--color-bg-top);
}

/* Header */
.header {
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: var(--glass-blur);
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    height: 70px;
    box-shadow: 0 4px 30px rgba(0, 75, 135, 0.15);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

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

.logo img {
    height: 55px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-bg-top);
    font-size: 1.3rem;
    letter-spacing: 0.5px;
}

.logo-text span:last-child {
    color: var(--color-brand);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-weight: 500;
    color: var(--color-text);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--accent-gradient);
    transition: width 0.3s;
}

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

.nav-link.active {
    color: var(--color-brand);
}

.nav-cta {
    background: var(--accent-gradient);
    color: var(--color-bg-top) !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 230, 118, 0.4);
}

.nav-cta::after {
    display: none;
}

/* Dropdown Styles */
.nav-item-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 240px;
    background: #fff;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    border: 1px solid rgba(0, 75, 135, 0.08);
}

/* Invisible bridge to keep menu open on hover transition */
.nav-item-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 16px;
}

.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: var(--color-text);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-menu a i {
    font-size: 0.9rem;
    color: var(--color-brand);
    transition: transform 0.2s ease;
}

.dropdown-menu a:hover {
    background-color: rgba(0, 75, 135, 0.05);
    color: var(--color-brand);
}

.dropdown-menu a:hover i {
    transform: translateX(3px);
}

.dropdown-divider {
    height: 1px;
    background-color: rgba(0, 0, 0, 0.06);
    margin: 8px 0;
}

.dropdown-arrow {
    font-size: 0.75rem;
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .dropdown-arrow,
.nav-item-dropdown:focus-within .dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-bg-top);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    background-image: url('../assets/Gemini_Generated_Image_cq8cvscq8cvscq8c.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 0;
    /* Reset */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.9) 0%, rgba(0, 75, 135, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
    max-width: 900px;
    padding-top: var(--header-height);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Section Titles */
.section-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--color-bg-top), var(--color-brand));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Cards (Services, Testimonials) */
.card-hover {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.card-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

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

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    background: var(--accent-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--color-text-muted);
    margin-bottom: 25px;
}

.learn-more {
    color: var(--color-brand);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.learn-more:hover {
    gap: 12px;
    color: var(--color-accent);
}

/* Why Choose Us */
.bg-light {
    background-color: #FFFFFF;
    /* Override for cleaner look */
    position: relative;
}

.bg-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 230, 118, 0.05), transparent 40%);
    pointer-events: none;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.col-half {
    flex: 1;
    min-width: 300px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--color-text);
}

.feature-list i {
    color: var(--color-accent);
    font-size: 1.4rem;
    filter: drop-shadow(0 2px 4px rgba(0, 230, 118, 0.3));
}

.about-image-placeholder {
    background: linear-gradient(135deg, #F0F4F8 0%, #E2E8F0 100%);
    height: 500px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-icon-dim);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.about-image-placeholder::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    top: -50%;
    left: -50%;
}

.about-image-placeholder i {
    font-size: 8rem;
    margin-bottom: 20px;
    color: var(--color-accent);
    filter: drop-shadow(0 2px 4px rgba(0, 230, 118, 0.3));
    opacity: 1;
}

.about-image-placeholder span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-bg-top);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--color-surface);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    color: var(--color-text);
    font-size: 1.1rem;
    line-height: 1.6;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-bg-top);
    font-size: 1.5rem;
    margin-right: 15px;
}

/* Footer */
.footer {
    background-color: var(--color-bg-top);
    color: var(--color-surface);
    padding: 100px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent-gradient);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    margin-bottom: 80px;
}

.footer-logo {
    height: 90px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--color-surface);
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col a {
    color: var(--color-surface-alt, #A0AEC0);
    transition: all 0.3s;
}

.footer-col a:hover {
    color: var(--color-accent);
    padding-left: 8px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--color-surface-alt, rgba(0, 0, 0, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    border: 1px solid var(--border-soft, rgba(0, 0, 0, 0.1));
}

.social-links a:hover {
    background: var(--accent-gradient);
    color: var(--color-bg-top);
    transform: translateY(-3px);
    border-color: transparent;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: #25D366;
    color: var(--color-surface);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

/* Services Page Specifics */
.service-detail-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 80px;
}

.service-detail-row.reverse {
    flex-direction: row-reverse;
}

.service-text h3 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.service-img-placeholder {
    height: 350px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #F0F4F8 0%, #E2E8F0 100%);
    box-shadow: var(--shadow-lg);
}

/* Featured Services Card Grid */
.featured-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.featured-service-card {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    padding: 40px 36px 36px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.featured-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.featured-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

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

.featured-service-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 230, 118, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.featured-service-icon i {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.featured-service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 14px;
    color: var(--color-text);
}

.featured-service-card p {
    color: var(--color-text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.featured-service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 18px;
}

.featured-service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.95rem;
    color: var(--color-text);
    font-weight: 500;
}

.featured-service-features li i {
    color: var(--color-accent);
    font-size: 1rem;
    filter: drop-shadow(0 1px 3px rgba(0, 230, 118, 0.3));
}

@media (max-width: 768px) {
    .featured-services-grid {
        grid-template-columns: 1fr;
    }
}

/* Portal & Dashboard */
.portal-container {
    min-height: 100vh;
    background-color: var(--color-bg-base);
    display: flex;
}

.sidebar {
    width: 280px;
    background: var(--color-bg-top);
    color: var(--color-surface);
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 100;
}

.sidebar-header {
    padding: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-logo {
    height: 40px;
    filter: brightness(0) invert(1);
}

.sidebar-nav {
    padding: 30px 0;
    flex: 1;
}

.sidebar-link {
    display: flex;
    align-items: center;
    padding: 15px 30px;
    color: #A0AEC0;
    font-weight: 500;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.sidebar-link i {
    width: 25px;
    margin-right: 10px;
    font-size: 1.2rem;
}

.sidebar-link:hover,
.sidebar-link.active {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-surface);
    border-left-color: var(--color-accent);
}

.main-content {
    flex: 1;
    margin-left: 280px;
    padding: 40px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--color-surface);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.stat-icon.blue {
    background: rgba(0, 75, 135, 0.1);
    color: var(--color-brand);
}

.stat-icon.green {
    background: rgba(0, 230, 118, 0.1);
    color: var(--color-accent);
}

.stat-icon.orange {
    background: rgba(255, 152, 0, 0.1);
    color: #FF9800;
}

.stat-info h3 {
    font-size: 2rem;
    margin-bottom: 5px;
    color: var(--color-bg-top);
}

.stat-info p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.table-container {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 30px;
    overflow-x: auto;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th {
    text-align: left;
    padding: 15px 20px;
    color: var(--color-text-muted);
    font-weight: 600;
    border-bottom: 2px solid #F0F4F8;
}

.table td {
    padding: 20px;
    border-bottom: 1px solid #F0F4F8;
    color: var(--color-text);
}

.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-valid {
    background: rgba(0, 230, 118, 0.15);
    color: #00C853;
}

.status-expiring {
    background: rgba(255, 152, 0, 0.15);
    color: #F57C00;
}

.status-expired {
    background: rgba(244, 67, 54, 0.15);
    color: #D32F2F;
}

/* Responsive */
@media (max-width: 992px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s;
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0;
    }

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

@media (max-width: 768px) {
    .nav-list {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: var(--color-surface);
        flex-direction: column;
        padding: 30px;
        box-shadow: var(--shadow-lg);
    }

    .nav-list.active {
        display: flex;
    }

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

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

    .hero {
        background-attachment: scroll;
    }

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

    .row {
        flex-direction: column;
    }

    .service-detail-row,
    .service-detail-row.reverse {
        flex-direction: column;
        gap: 40px;
    }

    /* Mobile Dropdown Styling */
    .nav-item-dropdown {
        position: static !important;
        width: 100%;
    }

    .nav-item-dropdown>.nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .dropdown-menu {
        position: static !important;
        transform: none !important;
        left: 0 !important;
        top: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none !important;
        border: none !important;
        padding: 8px 0 8px 20px;
        min-width: unset !important;
        width: 100% !important;
        display: none;
        background: rgba(0, 75, 135, 0.04);
        border-radius: var(--radius-sm);
        margin-top: 8px;
    }

    .dropdown-menu a {
        white-space: normal;
        word-break: normal;
        overflow-wrap: break-word;
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    /* Invisible bridge not needed on mobile */
    .nav-item-dropdown::after {
        display: none !important;
    }

    .nav-item-dropdown:hover .dropdown-menu,
    .nav-item-dropdown:focus-within .dropdown-menu {
        display: none !important;
        transform: none !important;
    }

    .nav-item-dropdown.open .dropdown-menu {
        display: block !important;
    }

    .nav-item-dropdown.open .dropdown-arrow {
        transform: rotate(180deg);
    }
}

/* About work image */
.about-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 480px;
}

.about-work-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.about-img-wrap:hover .about-work-img {
    transform: scale(1.03);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 300px;
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

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

.gallery-item:hover img {
    transform: scale(1.05);
}
.hero-badge {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--color-bg-top);
    padding: 6px 18px;
    border-radius: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(0,255,163,0.3);
}

