/* ===== GLOBAL STYLES ===== */
:root {
    /* Light Theme Colors */
    --primary-color: #0cbb6b;
    --secondary-color: #ff9800;
    --text-color: #084faa;
    --bg-color: #fff;
    --light-bg-color: #f9f9f9;
    --dark-bg-color: #f0f4f8;
    --border-color: #ddd;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --success-color: #28a745;
    --wave-fill: #f0f4f8;
    
    /* Transitions */
    --transition: all 0.3s ease;
    
    /* Font sizes */
    --h1-size: 3.5rem;
    --h2-size: 2.5rem;
    --h3-size: 1.75rem;
    --body-size: 1rem;
    --small-size: 0.875rem;
}

.dark-mode {
    --primary-color: #0cbb6b;
    --secondary-color: #ffb74d;
    --text-color: #084faa;
    --bg-color: #1a1a1a;
    --light-bg-color: #262626;
    --dark-bg-color: #333;
    --border-color: #444;
    --shadow-color: rgba(0, 0, 0, 0.3);
    --success-color: #43a047;
    --wave-fill: #262626;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    transition: var(--transition);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 5rem 0;
    position: relative;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: rgba(0, 86, 179, 0.9);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
}

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

.section-header h2 {
    font-size: var(--h2-size);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2 span {
    color: var(--primary-color);
}

.section-header p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-color);
    opacity: 0.8;
}

/* ===== HEADER STYLES ===== */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: var(--bg-color);
    box-shadow: 0 2px 10px var(--shadow-color);
    transition: var(--transition);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
    letter-spacing: 1px;
}

.logo h1 span {
    color: var(--primary-color);
    font-weight: 800;
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    margin-right: 1.5rem;
}

.nav-links li {
    margin: 0 1rem;
}

.nav-links li a {
    color: var(--text-color);
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.theme-toggle {
    display: flex;
    align-items: center;
    margin-right: 1rem;
}

.theme-toggle i {
    font-size: 1.2rem;
    color: var(--text-color);
}

.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 24px;
    margin: 0 0.5rem;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--light-bg-color);
    transition: var(--transition);
    border-radius: 24px;
    border: 1px solid var(--border-color);
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--dark-bg-color);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.hamburger .line {
    width: 100%;
    height: 3px;
    background-color: var(--text-color);
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    padding-top: 10rem;
    padding-bottom: 5rem;
    background-color: var(--bg-color);
    overflow: hidden;
    position: relative;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: var(--h1-size);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-graphic {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-graphic i {
    position: absolute;
    font-size: 3rem;
    color: var(--primary-color);
    background-color: var(--bg-color);
    border-radius: 50%;
    padding: 1rem;
    box-shadow: 0 5px 20px var(--shadow-color);
    animation: float 3s ease-in-out infinite;
}

.hero-graphic i:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.hero-graphic i:nth-child(2) {
    bottom: 20%;
    left: 0;
    animation-delay: 0.5s;
}

.hero-graphic i:nth-child(3) {
    top: 40%;
    right: 0;
    animation-delay: 1s;
}

.hero-graphic i:nth-child(4) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1.5s;
}

.connection-line {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px dashed var(--primary-color);
    border-radius: 50%;
    opacity: 0.5;
    animation: rotate 30s linear infinite;
}

.hero-wave {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

.hero-wave svg path {
    fill: var(--wave-fill);
}

/* ===== STATS SECTION ===== */
.stats {
    background-color: var(--wave-fill);
    padding: 2rem 0;
}

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

.stat-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 8px;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-item .counter {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.stat-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    opacity: 0.8;
}

/* ===== ABOUT SECTION ===== */
.about {
    background-color: var(--bg-color);
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image i {
    font-size: 15rem;
    color: var(--primary-color);
    opacity: 0.1;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: var(--h3-size);
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
}

.feature i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/* ===== SERVICES SECTION ===== */
.services {
    background-color: var(--wave-fill);
    position: relative;
}

.service-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
}

.service-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

.service-wave svg path {
    fill: var(--bg-color);
}

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

.service-card {
    background-color: var(--bg-color);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: var(--transition);
    text-align: center;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(0, 86, 179, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

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

.service-card p {
    color: var(--text-color);
    opacity: 0.8;
}

/* ===== PROCESS SECTION ===== */
.process {
    background-color: var(--bg-color);
}

.process-steps {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-steps::before {
    content: "";
    position: absolute;
    top: 0;
    left: 2rem;
    height: 100%;
    width: 2px;
    background-color: var(--primary-color);
    opacity: 0.3;
}

.step {
    display: flex;
    margin-bottom: 2rem;
    position: relative;
}

.step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 2rem;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
}

.step-content {
    flex: 1;
    padding: 1rem 1.5rem;
    background-color: var(--light-bg-color);
    border-radius: 8px;
    box-shadow: 0 3px 10px var(--shadow-color);
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background-color: var(--wave-fill);
    position: relative;
}

.testimonial-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
}

.testimonial-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

.testimonial-wave svg path {
    fill: var(--bg-color);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-container {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.testimonial {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 2rem;
    background-color: var(--bg-color);
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--shadow-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.testimonial.active {
    opacity: 1;
    transform: translateX(0);
}

.quote {
    text-align: center;
}

.quote i {
    color: var(--primary-color);
    font-size: 1.5rem;
    opacity: 0.5;
}

.quote i:first-child {
    margin-right: 0.5rem;
    vertical-align: top;
}

.quote i:last-child {
    margin-left: 0.5rem;
    vertical-align: bottom;
}

.quote p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 1rem 0;
}

.client {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

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

.client-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.client-info p {
    opacity: 0.7;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.3);
}

.testimonial-arrows {
    display: flex;
    margin-left: 2rem;
    gap: 1rem;
}

.arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--bg-color);
    color: var(--text-color);
    border: 1px solid var(--border-color);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.arrow:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* ===== CTA SECTION ===== */
.cta {
    background-color: var(--primary-color);
    padding: 4rem 0;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

.cta .btn-primary:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background-color: var(--bg-color);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: 8px;
    background-color: var(--light-bg-color);
    box-shadow: 0 3px 10px var(--shadow-color);
    transition: var(--transition);
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px var(--shadow-color);
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    margin-right: 1rem;
}

.info-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.info-content p {
    opacity: 0.8;
    margin-bottom: 0;
}

.contact-form {
    background-color: var(--light-bg-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.form-group input:focus ~ .focus-border,
.form-group textarea:focus ~ .focus-border {
    width: 100%;
}

.form-success {
    display: none;
    text-align: center;
    padding: 2rem;
    background-color: rgba(40, 167, 69, 0.1);
    border-radius: 8px;
    animation: fadeIn 0.5s ease;
}

.form-success i {
    font-size: 3rem;
    color: var(--success-color);
    margin-bottom: 1rem;
}

/* ===== FOOTER SECTION ===== */
footer {
    background-color: var(--dark-bg-color);
    padding: 4rem 0 0;
}

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

.footer-logo h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-logo h2 span {
    color: var(--primary-color);
}

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

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--bg-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

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

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: var(--text-color);
    transition: var(--transition);
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-form {
    display: flex;
    margin-top: 1rem;
}

.footer-form input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 4px 0 0 4px;
    background-color: var(--bg-color);
    color: var(--text-color);
}

.footer-form button {
    padding: 0.75rem 1rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: var(--transition);
}

.footer-form button:hover {
    background-color: rgba(0, 86, 179, 0.9);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin-bottom: 0;
}

.footer-bottom-links a {
    color: var(--text-color);
    margin-left: 1.5rem;
    opacity: 0.8;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
    opacity: 1;
}

/* ===== BACK TO TOP BUTTON ===== */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 99;
}

#backToTop.active {
    opacity: 1;
    visibility: visible;
}

#backToTop:hover {
    background-color: rgba(0, 86, 179, 0.9);
    transform: translateY(-5px);
}

/* ===== ANIMATIONS ===== */
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 1s ease forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

.delay-3 {
    animation-delay: 0.9s;
}

.delay-4 {
    animation-delay: 1.2s;
}

/* ===== SCROLL REVEAL ANIMATION ===== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE STYLES ===== */
@media screen and (max-width: 1024px) {
    :root {
        --h1-size: 3rem;
        --h2-size: 2.2rem;
        --h3-size: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats .container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: var(--bg-color);
        box-shadow: 0 5px 10px var(--shadow-color);
        padding: 1rem 0;
        margin: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: var(--transition);
    }
    
    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-links li {
        margin: 0;
    }
    
    .nav-links li a {
        display: block;
        padding: 1rem 1.5rem;
    }
    
    .hero .container,
    .about-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 576px) {
    :root {
        --h1-size: 2.5rem;
        --h2-size: 2rem;
        --h3-size: 1.3rem;
    }
    
    .services-grid,
    .stats .container {
        grid-template-columns: 1fr;
    }
    
    .hero-graphic {
        width: 300px;
        height: 300px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-bottom-links a {
        margin: 0 0.5rem;
    }
    
}