/*
Theme Name: Car Wash Service
Theme URI: https://example.com/carwash
Author: Your Name
Author URI: https://example.com
Description: A WordPress theme for car wash and detailing services, featuring online booking functionality.
Requires at least: 6.7
Tested up to: 6.9
Requires PHP: 7.2
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: carwash
Tags: car-wash, detailing, booking, service, business
*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Base Styles */
* {
    
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #8e37df;
}

/* Ensure header extends to viewport edge */
header {
    width: 100%;
    background-color: #fff;
}

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

a:hover {
    color: #8a2be2;
    text-decoration: none;
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    transition: opacity 0.5s ease-in-out !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    z-index: 1 !important;
    background-color: #000 !important;
}

.slider-slide.active {
    opacity: 1 !important;
    z-index: 10 !important;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 10;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content .subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-content .cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #8e37df;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.hero-content .cta-button:hover {
    background-color: #8e37df;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.4);
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    font-size: 2rem;
    color: #8e37df;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
}

.slider-prev:hover,
.slider-next:hover {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: #fff;
    transform: scale(1.2);
}

/* Header Styles */
header {
    background: #fff;
    color: #333;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.site-header {
    width: 100%;
    background-color: #8e37df;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    padding-right: 2rem;
}

.site-branding {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-logo .custom-logo {
    max-width: 150px;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
}

.site-title {
    margin: 0;
    font-size: 1.5rem;
}

.site-title a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

.site-description {
    display: none;
}

/* Navigation Styles */
nav {
    background: #8e37df;
    padding: 0.5rem 0;
    margin: 0;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

nav ul li {
    margin: 0 0.5rem;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Current menu item */
nav ul li.current-menu-item a,
nav ul li.current_page_item a {
    background: rgba(255, 255, 255, 0.3);
    font-weight: 600;
}

/* Login and Register Styles */
.login-section, .register-section {
    padding: 4rem 0;
    background: #8e37df;
}

.login-form-container, .register-form-container {
    max-width: 500px;
    margin: 0 auto;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.login-form-container h1, .register-form-container h1 {
    margin-bottom: 2rem;
    text-align: center;
    color: #333;
}

.carwash-login-form, .carwash-register-form {
    width: 100%;
}

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

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #555;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #8a2be2;
    box-shadow: 0 0 0 2px rgba(138, 43, 226, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 0.75rem;
    background: #8a2be2;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background: #6a1b9a;
}

.form-error {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    border: 1px solid #f5c6cb;
}

.login-register-link, .register-login-link {
    margin-top: 1.5rem;
    text-align: center;
}

.login-register-link a, .register-login-link a {
    color: #8a2be2;
    text-decoration: none;
    font-weight: 500;
}

.login-register-link a:hover, .register-login-link a:hover {
    text-decoration: underline;
}

/* Profile Page Styles */
.profile-section {
    padding: 4rem 0;
    background: #8e37df;
}

.profile-container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.profile-container h1 {
    margin-bottom: 2rem;
    text-align: center;
    color: #333;
}

.profile-container h2 {
    margin-bottom: 1.5rem;
    color: #333;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

.profile-container h3 {
    margin-bottom: 1.5rem;
    color: #333;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    border: 1px solid #c3e6cb;
}

.profile-info {
    margin-bottom: 3rem;
}

.profile-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.profile-field {
    margin-bottom: 1rem;
}

.profile-field label {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 500;
    color: #555;
}

.profile-field span {
    display: block;
    padding: 0.5rem;
    border-radius: 5px;
    border-style:solid;
    border-width:1px;
    color: #333;
}

.profile-vehicles {
    margin-top: 3rem;
}

.vehicles-list {
    margin-bottom: 2rem;
}

.vehicle-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 5px;
    margin-bottom: 1rem;
    border-style: solid;
    border-width: 1px;
    transition: background-color 0.3s ease;
}

.vehicle-item:hover {
    background: #e9ecef;
}

.vehicle-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: #333;
}

.vehicle-info p {
    margin: 0.25rem 0;
    color: #555;
}

.vehicle-actions .delete-vehicle {
    background: #dc3545;
    color: #ffffff;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.vehicle-actions .delete-vehicle:hover {
    background: #c82333;
}

.add-vehicle-form {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 5px;
}

/* Menu Toggle */
.menu-toggle {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: none;
}

/* Hero Section Styles */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://img1.wsimg.com/isteam/ip/72c5c81f-de18-429f-bf7a-d6ad3d45e845/IMG_2178.jpeg') no-repeat center center;
    background-size: cover;
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    margin-top: 10px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin: 0 0 1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

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

.hero-content .cta-button {
    display: inline-block;
    background: #8a2be2;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    border-radius: 50px;
}

.hero-content .cta-button:hover {
    background: #6a1b9a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
}

/* Services Section Styles */
.services-section {
    padding: 2rem 2rem;
    background: #8e37df;
}

.services-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    font-weight: 700;
}

/* Services Card Container */
.services-card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    margin-top: 3rem;
}

/* Service Card */
.service-card {
    background: #f8f8f8;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    padding: 2.5rem 1.5rem;
    position: relative;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Featured Badge */
.featured-badge {
    position: absolute;
    top: 0rem;
    right: 0rem;
    background: #ffc107;
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Service Card Content */
.service-card h3 {
    font-size: 1.5rem;
    margin: 0 0 0.5rem;
    color: #333;
    font-weight: 700;
}

.service-category {
    color: #8a2be2;
    font-weight: 600;
    margin-bottom: 0.2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.2rem;
}

.service-duration {
    color: #666;
    margin-bottom: 0.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-description {
    color: #666;
    margin-bottom: 0.2rem;
    line-height: 1.6;
}

/* Service CTA Button */
.service-cta {
    text-align: center;
}

.service-cta .cta-button {
    display: inline-block;
    padding: 10px 10px;
    background-color: #8a2be2;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

.service-cta .cta-button:hover {
    background-color: #6a1b9a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.4);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.package {
    background: #f8f8f8;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.package:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.package h3 {
    background: #8a2be2;
    color: white;
    padding: 1.5rem;
    margin: 0;
    font-size: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: #f0f0f0;
}

.package-header .price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

.package-header .popular-badge {
    background: #ff9800;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.package-content {
    padding: 1.5rem;
}

.package-section {
    margin-bottom: 2rem;
}

.package-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
    border-bottom: 2px solid #8a2be2;
    padding-bottom: 0.5rem;
}

.package-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-section ul li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.package-section ul li::before {
    content: "✓";
    color: #8a2be2;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0.5rem;
}

/* Additional Services */
.additional-services {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 10px;
}

.additional-services h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
    font-weight: 700;
    text-align: center;
}

.additional-service-item {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.additional-service-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.service-price {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: #666;
}

.service-description h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.service-description ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-left: 1rem;
}

.service-description ul li {
    padding: 0.25rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.service-description ul li::before {
    content: "•";
    color: #8a2be2;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0.5rem;
}

/* Disclaimer */
.disclaimer {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1rem;
    background: #f0f0f0;
    border-radius: 5px;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0;
    background-color: #8e37df;
}



/* Contact Section */
.contact-section {
    padding: 5rem 2rem;
    background: #f8f8f8;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
    font-weight: 700;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 600;
}

.contact-info p {
    margin: 0.5rem 0;
    color: #666;
    font-size: 1.1rem;
}

/* Footer Styles */
footer {
    background: #8e37df;
    color: #8e37df;
}

.site-footer {
    width: auto;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    background-color: #8e37df;
}

.footer-widget h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 600;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    margin-bottom: 0.5rem;
}

.footer-widget ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-widget ul li a:hover {
    color: #8a2be2;
}

.site-info {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #555;
    text-align: center;
    color: #ccc;
}

.copyright {
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-header {
        padding: 0 1rem;
    }
    
    nav ul {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-content h1 {

        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .services-section h2 {
        font-size: 2rem;
        color:#ffffff
    }
    
    .services-container {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .service-price {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .additional-services {
        padding: 1rem;
    }
}



/* Hero Section Styles */
.hero {
    background: linear-gradient(to right, #8a2be2, #6a1b9a);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.cta-button {
    background: white;
    color: #8a2be2;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Booking Form Styles */
.booking-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: #f9f9f9;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.booking-form label {
    display: block;
    margin: 0.5rem 0;
    font-weight: bold;
}

.booking-form input, .booking-form select, .booking-form textarea {
    width: 100%;
    padding: 0.75rem;
    margin: 0.5rem 0 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.booking-form button {
    background: #8a2be2;
    color: #fff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.booking-form button:hover {
    background: #6a1b9a;
}

/* Services Section Styles */
.services-section {
    text-align: center;
}

.services-section h2 {
    color: #ffffff;
    font-size: 2.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

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

.service-card {
    background: white;
    border: 1px solid #e0d4ff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.15);
    border-color: #8a2be2;
}

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

.service-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* About Section Styles */
.about-section {
        background-color: #8e37df;
    padding: 4rem 0;
    margin: 4rem 0;
}

.about-section h2 {
    color: #ffffff;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color:white;
}

.about-text ul {
    list-style-type: none;
    padding: 0;
}

.about-text li {
    margin: 1rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.about-text li::before {
    content: "✓";
    color: #8a2be2;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Footer Styles */
footer {
    background: #6a1b9a;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}
