body {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    padding-top: 90px; /* Adjusted for the new fixed navbar height */
    background-color: #f8f9fa; /* Lighter gray for a softer look */
}

.hero-section {
    position: relative;
    height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background: url('../images/hero-bg.jpg') no-repeat center center/cover;
    background-color: #111; /* Fallback color */
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(2,0,36,0.7) 0%, rgba(9,9,121,0.6) 35%, rgba(0,100,255,0.7) 100%);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    animation: fadeInDown 1s both;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-weight: 300;
    animation: fadeInDown 1s 0.5s both;
}

.hero-content .btn-primary {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 1s 1s both;
}

.hero-content .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-box {
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    background-color: #f8f9fa;
    margin-bottom: 20px;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.feature-box i {
    color: #0d6efd; /* Bootstrap Primary Color */
}

#screenshots .card {
    transition: all 0.3s ease-in-out;
}

#screenshots .card:hover {
    transform: scale(1.05);
}

.card-price {
    font-size: 3em;
    font-weight: 700;
}

.card-price .period {
    font-size: 0.8rem;
    color: #6c757d;
}

.navbar-brand strong {
    font-weight: 700;
    font-size: 1.5rem;
}

.screenshot-item:hover img {
    transform: scale(1.05);
}

.price-card {
    transition: all 0.3s ease-in-out;
    border: 1px solid #e9ecef;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
}

/* --- New Header Styles --- */

.main-container {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

#main-nav {
    padding: 0.75rem 0;
    transition: all 0.3s ease-in-out;
    border-bottom: 1px solid #e9ecef;
    background-color: #ffffff !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04); /* Softer, more spread out shadow */
}

#main-nav.navbar-scrolled {
    padding: 0.75rem 0; /* Keep padding consistent */
}

#main-nav .navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--bs-primary);
}

#main-nav .nav-link {
    font-size: 1.1rem;
    font-weight: 600; /* Slightly bolder links */
    color: #343a40;
    margin: 0 0.75rem;
    padding: 0.5rem 0;
    transition: color 0.3s, border-bottom-color 0.4s ease; /* Smoother border transition */
    position: relative;
    border-bottom: 3px solid transparent; /* Slightly thicker underline */
}

#main-nav .nav-link:hover,
#main-nav .nav-link.active {
    color: #0d6efd; /* Use Bootstrap primary color */
    border-bottom-color: #0d6efd;
}

#main-nav .btn {
    border-radius: 50rem; /* pill shape */
    padding: 0.6rem 1.5rem; /* Slightly adjusted padding */
    font-weight: 600; /* Bolder font */
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); /* More subtle shadow for buttons */
}

#main-nav .btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: #fff; /* Ensure text is white */
}

#main-nav .btn-outline-primary {
    border-width: 2px;
    border-color: #0d6efd;
    color: #0d6efd;
}

#main-nav .btn-outline-primary:hover {
    color: #fff;
    background-color: #0d6efd; /* Fill color on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 123, 255, 0.2);
}

#main-nav .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 123, 255, 0.3);
    background-color: #0056b3;
    border-color: #0056b3;
}

.dropdown-menu {
    border-radius: 0.5rem;
    border: 1px solid #f0f0f0;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15)!important;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    font-weight: 500;
    transition: background-color 0.2s;
}

.dropdown-item i {
    color: #6c757d;
    transition: color 0.2s;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

.dropdown-item:hover i {
    color: var(--bs-primary);
}

/* --- End New Header Styles --- */

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
}

.testimonial-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 40px;
    margin: 20px auto;
    max-width: 650px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-size: 1.1rem;
    color: #555;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-rating .fa-star {
    color: #ffc107; /* Bootstrap yellow */
    font-size: 1.2rem;
    margin: 0 2px;
}

.testimonial-author {
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.testimonial-title {
    color: #777;
    font-size: 0.9rem;
}

#testimonialCarousel .carousel-control-prev-icon,
#testimonialCarousel .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-size: 50% 50%;
}

footer.footer {
    padding: 25px 0;
    background-color: #212529; /* Darker footer */
}

/* --- Professional UX Enhancements --- */

/* 1. Scroll Animations */
.section-heading, .section-subheading, .service-box, .product-card, .testimonial-card, #contact .btn {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section-heading.visible, 
.section-subheading.visible, 
.service-box.visible, 
.product-card.visible, 
.testimonial-card.visible,
#contact .btn.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation for service boxes and product cards */
.service-box.visible:nth-child(1) { transition-delay: 0.1s; }
.service-box.visible:nth-child(2) { transition-delay: 0.2s; }
.service-box.visible:nth-child(3) { transition-delay: 0.3s; }
.service-box.visible:nth-child(4) { transition-delay: 0.4s; }

.product-card.visible:nth-child(1) { transition-delay: 0.1s; }
.product-card.visible:nth-child(2) { transition-delay: 0.2s; }
.product-card.visible:nth-child(3) { transition-delay: 0.3s; }


/* 2. Redesigned Service Section */
#services {
    background-color: #f8f9fa; /* Light gray background */
}

.service-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-box .service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-block;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-box p {
    color: #6c757d; /* Muted text color */
}

/* 3. General Polish */
.section-heading {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

hr.my-4 {
    border-color: var(--primary-color);
    border-width: 3px;
    max-width: 70px;
    margin-right: auto;
    margin-left: auto;
}

/* --- Advanced UX Enhancements (Phase 2) --- */

/* 1. Enhanced About Section - Revision 2 */
#about {
    background-color: #f8f9fa; /* Standard light gray for a cleaner look */
    padding: 80px 0; /* Adjusted padding for better balance */
    position: relative;
    overflow: hidden;
}

#about .container {
    position: relative;
    z-index: 1;
}

.about-img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-img:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.about-text .section-heading {
    margin-bottom: 20px;
    font-size: 2.3rem; /* Slightly adjusted size */
    font-weight: 700;
}

.about-text .lead {
    color: #5a6a78;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.15rem;
}
.about-features {
    list-style: none;
    padding-left: 0;
}
.about-features li {
    display: flex;
    align-items: center; /* Center align icon and text block vertically */
    margin-bottom: 25px; /* Increased space between features */
    font-size: 1.1rem;
    color: #34495e;
}
.about-features i {
    color: var(--primary-color);
    font-size: 1.1rem; /* Adjusted icon size */
    margin-right: 15px;
    background-color: #eaf4ff;
    border-radius: 50%;
    width: 45px; /* Slightly larger circle */
    height: 45px;
    line-height: 45px;
    text-align: center;
    flex-shrink: 0;
}
[dir="rtl"] .about-features i {
    margin-right: 0;
    margin-left: 15px;
}

/* 2. Redesigned Features Section */
#features {
    background-color: #f8f9fa; /* Light grey background for the section */
}

.feature-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease-in-out;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--bs-primary);
}

.feature-box .feature-icon {
    margin: 0 auto 20px;
    width: 70px;
    height: 70px;
    background: var(--bs-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.feature-box:hover .feature-icon {
    background: #fff;
    color: var(--bs-primary);
    border: 2px solid var(--bs-primary);
}

.feature-box .feature-icon i {
    color: #fff;
    font-size: 32px;
    transition: color 0.3s ease-in-out;
}

.feature-box:hover .feature-icon i {
    color: var(--bs-primary);
}

.feature-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #343a40;
}

.feature-box p {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.6;
}

/* 3. Enhanced Product Cards */
.product-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.product-card .card-footer {
    background: transparent;
    border-top: none;
    padding-bottom: 20px;
}
.product-card .card-title a {
    text-decoration: none;
    color: #343a40;
    transition: color 0.3s ease;
}
.product-card .card-title a:hover {
    color: var(--primary-color);
}

/* 4. New Expanded Footer */
.main-footer {
    background-color: #212529;
    color: #adb5bd;
    padding: 60px 0 0;
    font-size: 15px;
}

.main-footer h5 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.main-footer p {
    line-height: 1.7;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.footer-links a:hover, .footer-links a:focus {
    color: #ffffff;
    padding-right: 5px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    margin-left: 10px;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.social-icons a:hover {
    background-color: var(--bs-primary);
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
    font-size: 14px;
}

/* --- About Page Specific Styles --- */

.about-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/about-banner.jpg') no-repeat center center;
    background-size: cover;
    padding: 60px 0;
    color: #fff;
    text-align: center;
}

.about-banner h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

.about-section {
    padding: 80px 0;
}

.about-section .content-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.about-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bs-primary);
    margin-bottom: 20px;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.about-section img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.values-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.value-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.07);
}

.value-card .value-icon {
    font-size: 3rem;
    color: var(--bs-primary);
    margin-bottom: 20px;
}

.value-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

.about-cta {
    background-color: var(--bs-dark);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.about-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-cta p {
    font-size: 1.2rem;
    color: #adb5bd;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 20px;
    bottom: 20px;
    z-index: 1049; /* Below the FABs */
    background: #007bff; /* Changed color */
    width: 44px; /* Increased size */
    height: 44px; /* Increased size */
    border-radius: 50px;
    transition: all 0.4s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Added shadow */
}

.back-to-top i {
    font-size: 24px; /* Adjusted icon size */
    color: #fff; /* Changed color */
    line-height: 0;
}

.back-to-top:hover {
    background: #0056b3; /* Darker blue on hover */
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/* --- Elite UX Enhancements (Phase 3) --- */

/* 1. Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}
#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid var(--primary-color);
    border-top-color: #eee;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}
@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* 2. Stats Counter Section */
#stats {
    background: url('../images/stats-bg.jpg') no-repeat center center/cover;
    padding: 100px 0;
    position: relative;
    color: #fff;
}
#stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}
.stat-item {
    text-align: center;
    position: relative;
    z-index: 2;
}
.stat-item i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}
.stat-item .counter {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
}
.stat-item p {
    font-size: 1.1rem;
    font-weight: 500;
}

/* 3. Homepage Navbar Scroll Effect */
.navbar-home {
    background: transparent !important;
}
.navbar-home .nav-link,
.navbar-home .navbar-brand {
    color: #343a40 !important; /* Make text dark on transparent bg */
}
.navbar-home.navbar-scrolled {
    background: #fff !important;
}
.navbar-home.navbar-scrolled .nav-link,
.navbar-home.navbar-scrolled .navbar-brand {
    color: #343a40 !important;
}

/* 4. Advanced Hero Section Effects */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-content h1 {
    animation: fadeInDown 1s both;
}
.hero-content p {
    animation: fadeInDown 1s 0.5s both;
}
.hero-content .btn {
    animation: fadeInUp 1s 1s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Fix for main content on homepage */
body.is-home main {
    display: none;
}

/* Screenshots Section */
#screenshots {
    background-color: #f8f9fa;
    padding: 80px 0;
}

#screenshots .col-lg-4,
#screenshots .col-md-6 {
    perspective: 1000px;
}

.screenshot-frame {
    position: relative;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(45, 90, 135, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    background-color: #fff;
    margin-bottom: 30px;
}

.screenshot-frame:hover {
    box-shadow: 0 25px 50px rgba(45, 90, 135, 0.2);
}

.browser-frame:hover {
    transform: rotateY(10deg) rotateX(5deg) scale(1.05);
}

.frame-header {
    height: 35px;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    position: relative;
    z-index: 2;
}

.frame-header::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #fd6458;
    box-shadow: 20px 0 0 #ffbd2e, 40px 0 0 #27c93f;
}

.screenshot-frame img {
    display: block;
    width: 100%;
    height: auto;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.mobile-frame {
    border: 12px solid #333;
    border-radius: 45px;
    padding: 0;
    overflow: hidden;
    background-color: #333;
}

.mobile-frame img {
    border-radius: 35px;
}

.mobile-frame:hover {
    transform: translateY(-10px) scale(1.05);
}

.screenshot-caption {
    font-weight: 700;
    color: #343a40;
    margin-top: 25px;
    font-size: 1.2rem;
}

#screenshots .card {
    border: none;
    background-color: transparent;
    box-shadow: none;
}


/* Pricing Section */
#pricing {
    background-color: #ffffff;
}

.pricing-card {
    border: 1px solid #e9ecef;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background-color: #f8f9fa;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card .card-header {
    background-color: transparent;
    border-bottom: none;
    padding: 1.5rem 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #495057;
}

.pricing-card .card-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--bs-primary);
}

.pricing-card .card-price .period {
    font-size: 0.9rem;
    color: #6c757d;
}

.pricing-card .card-price .currency {
    font-size: 0.7em;
    font-weight: normal;
    vertical-align: middle;
    margin-right: 5px;
}

.pricing-card .btn {
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Featured Plan */
.pricing-card.featured {
    border-color: var(--bs-primary);
    background-color: #fff;
    transform: scale(1.05);
    z-index: 10;
}

.pricing-card.featured:hover {
     transform: scale(1.05) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: -1px;
    right: -1px;
    background: var(--bs-primary);
    color: #fff;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 700;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
}


/* Testimonials Section */
#testimonials {
    padding: 80px 0;
}