/* Electric Gallery - Main Styles */
:root {
    --primary-color: #1E1E2D;
    --secondary-color: #d12a0f;
    --accent-color: #FE3F22;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --text-dark: #1E1E2D;
    --text-muted: #6c757d;
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 5px 15px rgba(0,0,0,0.1);
    --shadow-heavy: 0 10px 30px rgba(0,0,0,0.15);
    --border-radius: 15px;
    --transition: all 0.3s ease;
}


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

html, body {
    font-family: 'Cairo', sans-serif !important;
    background-color: var(--light-gray);
    line-height: 1.6;
    color: var(--text-dark);
    transition: background-color 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.4;
}

p, span, a, li, button {
    font-weight: 400;
}

.strong, .bold {
    font-weight: 600;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Navbar Styles */
.navbar {
    background: #FE3F22 !important;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    padding: 1rem 0;
}

.navbar.scrolled {
    background: #FE3F22 !important;
    padding: 0.5rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white) !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand:hover {
    color: var(--accent-color) !important;
}

.nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #FFFFFF !important;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    right: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
    right: 0;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, #1a252f 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23FFD700" stop-opacity="0.1"/><stop offset="100%" stop-color="%23FFD700" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn-hero {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

.btn-primary-hero:hover {
    background: transparent;
    color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(254, 63, 34, 0.3);
}

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

.btn-outline-hero:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Cards */
.card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    overflow: hidden;
}

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

.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    height: 100%;
}

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

.product-image {
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
    width: 100%;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

/* Lazy Loading */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazy-load.loaded {
    opacity: 1;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    border-radius: 2px;
}

/* Forms */
.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--light-gray);
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(254, 63, 34, 0.25);
    background-color: var(--white);
}

.btn-submit {
    background: var(--accent-color);
    border: 2px solid var(--accent-color);
    color: var(--primary-color);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    width: 100%;
}

.btn-submit:hover {
    background: transparent;
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(254, 63, 34, 0.3);
}

/* Footer */
.footer {
    background: #FE3F22 !important;
    background: linear-gradient(135deg, #FE3F22 0%, #d12a0f 50%, #FE3F22 100%) !important;
    color: var(--white);
    padding: 70px 0 0;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FE3F22, transparent);
}

.footer-top {
    padding-bottom: 40px;
}

.footer-widget {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.footer-widget:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(254, 63, 34, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 215, 0, 0.1);
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
    padding-bottom: 12px;
    letter-spacing: 0.5px;
}

.footer-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    inset-inline-start: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #FE3F22, rgba(254, 63, 34, 0.5));
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

.footer-logo img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.footer-logo:hover img {
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(254, 63, 34, 0.3);
    transform: scale(1.05);
}

.footer-brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}


.footer-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.85;
    margin: 0;
    font-size: 0.95rem;
}

.footer-text {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    transition: color 0.3s ease;
}

.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 12px;
}


.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 18px;
}

.social-link:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-4px) scale(1.1);
    border-color: var(--accent-color);
    box-shadow: 0 8px 20px rgba(254, 63, 34, 0.4);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    border-radius: 6px;
    padding-right: 8px;
}

.footer-links li a i {
    color: var(--accent-color);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: var(--accent-color);
    transform: translateX(-8px);
    background: rgba(254, 63, 34, 0.1);
    padding-right: 12px;
}

.footer-links li a:hover i {
    transform: scale(1.2);
    color: var(--accent-color);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    color: rgba(255, 255, 255, 0.78);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 8px 0;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding-right: 8px;
}

.footer-contact li:hover {
    background: rgba(254, 63, 34, 0.08);
    padding-right: 12px;
    transform: translateX(-4px);
}

.footer-contact i {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(254, 63, 34, 0.15);
    color: var(--accent-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
    border: 1px solid rgba(254, 63, 34, 0.2);
    transition: all 0.3s ease;
}

.footer-contact li:hover i {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(254, 63, 34, 0.3);
}

.footer-contact span {
    line-height: 1.8;
    display: inline-block;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 30px 0;
    margin-top: 20px;
    background: rgba(0, 0, 0, 0.2);
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FE3F22, transparent);
}

.footer-bottom .container {
    padding-top: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom .row > div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 0;
}

.footer-bottom .text-danger {
    color: var(--accent-color) !important;
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Footer Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 50px 0 0;
        margin-top: 60px;
    }
    
    .footer-widget {
        padding: 24px 20px;
        margin-bottom: 20px;
    }
    
    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }
    
    .footer-logo img {
        width: 56px;
        height: 56px;
    }
    
    .footer-brand-name {
        font-size: 1.3rem;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
    
    .footer-contact i {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
    
    .footer-bottom {
        padding: 25px 0;
    }
    
    .footer-bottom .row > div {
        justify-content: center !important;
        text-align: center;
        margin-bottom: 10px;
    }
}

@media (min-width: 768px) {
    .footer-bottom .row > div:first-child {
        justify-content: flex-start;
    }
    .footer-bottom .row > div:last-child {
        justify-content: flex-end;
    }
}

@media (max-width: 991.98px) {
    .footer-widget {
        padding: 22px;
    }
    .footer-bottom .row > div {
        justify-content: center !important;
        text-align: center;
    }
}


/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: var(--shadow-light);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #1EBE5D;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    color: var(--white);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Hide WhatsApp on desktop */
@media (min-width: 769px) {
    .whatsapp-float {
        display: none !important;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
        font-size: 25px;
    }
    
    .product-image {
        height: 200px;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }

    gap: 10px;
    padding: 6px 0;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    border-radius: 6px;
    padding-right: 8px;
}

.footer-links li a i {
    color: var(--accent-color);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: var(--accent-color);
    transform: translateX(-8px);
    background: rgba(254, 63, 34, 0.1);
    padding-right: 12px;
}

.footer-links li a:hover i {
    transform: scale(1.2);
    color: var(--accent-color);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    color: rgba(255, 255, 255, 0.78);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 8px 0;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding-right: 8px;
}

.footer-contact li:hover {
    background: rgba(254, 63, 34, 0.08);
    padding-right: 12px;
    transform: translateX(-4px);
}

.footer-contact i {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(254, 63, 34, 0.15);
    color: var(--accent-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
    border: 1px solid rgba(254, 63, 34, 0.2);
    transition: all 0.3s ease;
}

.footer-contact li:hover i {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(254, 63, 34, 0.3);
}

.footer-contact span {
    line-height: 1.8;
    display: inline-block;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 30px 0;
    margin-top: 20px;
    background: rgba(0, 0, 0, 0.2);
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FE3F22, transparent);
}

.footer-bottom .container {
    padding-top: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom .row > div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 0;
}

.footer-bottom .text-danger {
    color: var(--accent-color) !important;
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Footer Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 50px 0 0;
        margin-top: 60px;
    }
    
    .footer-widget {
        padding: 24px 20px;
        margin-bottom: 20px;
    }
    
    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }
    
    .footer-logo img {
        width: 56px;
        height: 56px;
    }
    
    .footer-brand-name {
        font-size: 1.3rem;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
    
    .footer-contact i {
        width: 38px;
        height: 38px;
        font-size: 15px;
}

.footer-bottom {
        padding: 25px 0;
    }
    
    .footer-bottom .row > div {
        justify-content: center !important;
        text-align: center;
        margin-bottom: 10px;
    }
}

@media (min-width: 768px) {
    .footer-bottom .row > div:first-child {
        justify-content: flex-start;
    }
    .footer-bottom .row > div:last-child {
        justify-content: flex-end;
    }
}

@media (max-width: 991.98px) {
    .footer-widget {
        padding: 22px;
    }
    .footer-bottom .row > div {
        justify-content: center !important;
    text-align: center;
    }
}


/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: var(--shadow-light);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #1EBE5D;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    color: var(--white);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Hide WhatsApp on desktop */
@media (min-width: 769px) {
    .whatsapp-float {
        display: none !important;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
        font-size: 25px;
    }
    
    .product-image {
        height: 200px;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }
