/* Global Styles */
:root {
    --primary-color: #2563eb;
    --secondary-color: #6c757d;
    --dark-color: #1e293b;
    --light-color: #f8f9fa;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #3b82f6;
    --gradient: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    --transition: all 0.3s ease;
}

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

/* Card hover effect */
.card {
    transition: var(--transition);
    transform: translateY(0);
}

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

/* Button hover effect */
.btn {
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.btn:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.btn:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }

    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

/* Top header styles */
.toper {
    background-color: #002e70 !important;
    height: 35px;
}

.bg-dark {
    padding: 0;
    font-size: 0.9rem;
    line-height: 35px;
}

.bg-dark .container {
    height: 100%;
    display: flex;
    align-items: center;
}

.bg-dark .d-flex {
    height: 100%;
    align-items: center;
}

.bg-dark a,
.bg-dark span {
    display: inline-flex;
    align-items: center;
    height: 100%;
    padding: 0 5px;
}

.bg-dark i {
    margin-right: 5px;
    font-size: 0.9em;
}

/* Navbar styles */
.navbar {
    transition: var(--transition);
    background-color: rgba(13, 110, 253, 0.98) !important;
}

/* Adjust main content to account for headers */
main {
    min-height: calc(100vh - 300px);
    /* Adjust this value based on your header/footer height */
    padding-top: 20px;
}

/* Footer styles */
footer {
    background-color: #263238;
    line-height: 35px;
    color: white;
    padding: 2rem 0;
    margin-top: 2rem;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .nav-link {
    color: var(--dark-color) !important;
}

.navbar.scrolled .navbar-brand {
    color: var(--dark-color) !important;
}

/* Fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background: #1d4ed8;
}

/* Loading animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loading.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

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

/* Hover effect for service cards */
.service-card {
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.service-card .card-body {
    position: relative;
    z-index: 2;
    background: white;
    transition: var(--transition);
}

.service-card:hover .card-body {
    transform: translateY(-10px);
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition);
}

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

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
    background: var(--gradient);
    position: relative;
    overflow: hidden;
    margin-top: 100px;
}

/* Ensure content is properly aligned vertically */
.hero .container {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('banner.jpg') no-repeat center center/contain;
    opacity: 0.15;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

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

.hero .lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero .btn {
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

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

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

.hero .btn-light:hover {
    background: transparent;
    color: white;
}

.hero .btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
}

.highlight-text {
    color: #fef08a;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: rgba(254, 240, 138, 0.4);
    z-index: -1;
    transform: translateY(4px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0 80px;
    }

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

    .hero .lead {
        font-size: 1.25rem;
    }

    .hero .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: var(--primary-color);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 1.5rem;
    height: 1.5rem;
}

/* Page Loader */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

#page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 60px;
    height: 60px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #002e70;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: relative;
}

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

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in, visibility 0.5s ease-in;
}

body.loaded {
    opacity: 1;
    visibility: visible;
}

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

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

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.btn {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

.btn-lg {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    background-color: #ffffff !important;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 35px;
    z-index: 1030;
}

.navbar.scrolled {
    top: 0;
    padding: 0.5rem 0;
    background-color: #ffffff !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
    margin-right: 3rem;
}

.navbar-brand img {
    height: 60px;
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
    height: 50px;
}

.navbar-toggler {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
    border-radius: 4px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav {
    align-items: center;
    gap: 0.5rem;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.6rem 1.2rem;
    margin: 0 0.3rem;
    color: #333333 !important;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 6px;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.navbar-nav .nav-link:hover {
    background-color: rgba(13, 110, 253, 0.05);
    color: #0a58ca !important;
}

.navbar-nav .nav-link.active {
    font-weight: 600;
    color: #0a58ca !important;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0a58ca;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 50%;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: rgba(13, 110, 253, 0.98);
        padding: 1rem;
        margin-top: 0.75rem;
        border-radius: 8px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        margin: 0.2rem 0;
        border-radius: 6px;
    }

    .navbar-nav .nav-link::before {
        display: none;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background-color: rgba(255, 255, 255, 0.1);
    }
}

/* Hero Banner */
.hero-banner {
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('banner.jpg') no-repeat center center/cover;
    background-attachment: fixed;
}

.banner-content {
    max-width: 800px;
    padding: 0 20px;
    animation: fadeIn 1.5s ease-out;
}

.banner-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.banner-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.banner-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.banner-buttons .btn {
    margin: 0.5rem;
    min-width: 180px;
    transition: all 0.3s ease;
}

.banner-buttons .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -50px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 50px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* About Section */
#about {
    padding: 6rem 0;
    background-color: #fff;
}

#about .section-title {
    margin-bottom: 1.5rem;
}

#about p {
    color: #555;
    margin-bottom: 1.5rem;
}

#about img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#about img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Services Section */
#services {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

#services .card {
    border: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    overflow: hidden;
}

#services .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#services .icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

#services .icon-box i {
    color: var(--primary-color);
    transition: all 0.3s ease !important;
    display: inline-block;
}

#services .card:hover .icon-box {
    background-color: var(--primary-color);
}

#services .card:hover .icon-box i {
    color: white !important;
    transform: scale(1.1);
}

#services .card h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

#services .card p {
    color: #6c757d;
    margin-bottom: 0;
}

/* Testimonials Section */
#testimonials {
    padding: 6rem 0;
    background-color: #fff;
}

.testimonial-item {
    padding: 2rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin: 0 15px;
    transition: all 0.3s ease;
}

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

.testimonial-img img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 5px solid rgba(13, 110, 253, 0.1);
    object-fit: cover;
}

.testimonial-rating {
    color: #ffc107;
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    color: #6c757d;
    margin: 1.5rem 0;
    position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 3rem;
    color: rgba(13, 110, 253, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
    position: absolute;
}

.testimonial-text::before {
    top: -20px;
    left: -10px;
}

.testimonial-text::after {
    bottom: -40px;
    right: -10px;
}

/* Contact Section */
#contact {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.contact-info h5 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-info p {
    color: #6c757d;
    margin-bottom: 0;
}

.contact-info .fa-2x {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    margin-right: 1rem;
    color: var(--primary-color);
}

.contact-form .form-control,
.contact-form .form-select {
    height: 55px;
    padding: 0.75rem 1.25rem;
    border: 1px solid #e1e5ee;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.contact-form textarea.form-control {
    height: auto;
    resize: none;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(13, 110, 253, 0.1);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

footer h5 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

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

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

footer a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

footer a:hover {
    color: #fff;
    padding-left: 5px;
}

footer .input-group .form-control {
    height: 45px;
    border-radius: 50px 0 0 50px;
    border: none;
    padding: 0 20px;
}

footer .input-group .btn {
    border-radius: 0 50px 50px 0;
    padding: 0 20px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    bottom: 30px;
}

.back-to-top:hover {
    background-color: #0b5ed7;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: rgba(13, 110, 253, 0.98);
        padding: 1rem;
        margin-top: 0.5rem;
        border-radius: 5px;
    }

    .navbar-nav .nav-link {
        padding: 0.5rem 0;
        margin: 0.3rem 0;
    }

    .hero-section,
    .carousel-item {
        height: auto;
        min-height: 100vh;
    }

    .carousel-caption h1 {
        font-size: 2.5rem;
    }

    .carousel-caption p {
        font-size: 1.2rem;
    }

    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    #about img {
        margin-top: 2rem;
    }

    .testimonial-item {
        margin: 0 5px;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .carousel-caption h1 {
        font-size: 2rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .btn-lg {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
    }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Serviceable Areas Section */
#serviceable-areas {
    background-color: #fff;
}

.city-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.city-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.city-img-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.city-card:hover .city-img {
    transform: scale(1.05);
}

.city-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 20px;
    text-align: left;
}

.city-overlay h3 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.city-content {
    padding: 25px;
}

.city-content p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.city-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.city-features li {
    margin-bottom: 10px;
    color: #666;
    display: flex;
    align-items: center;
}

.city-features i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .city-card {
        margin-bottom: 30px;
    }

    .city-img-container {
        height: 220px;
    }
}

@media (max-width: 767.98px) {
    .city-img-container {
        height: 200px;
    }
}

.modal-content {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
}

.modal-header {
    border-bottom: 1px solid #eee;
    padding: 1.5rem;
}

.modal-title {
    color: #0a3d7a;
    font-weight: 600;
}

.modal-body {
    padding: 1.5rem;
    line-height: 1.8;
}

.modal-body h4 {
    color: #0a3d7a;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.modal-body ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.modal-body ul li {
    margin-bottom: 0.5rem;
}

.modal-footer {
    border-top: 1px solid #eee;
    padding: 1rem 1.5rem;
}

/* Footer Bottom Styles */
.footer-bottom {
    background-color: #121212;
    padding: 1rem 0;
    border-top: 1px solid #2d2d2d;
}

.footer-bottom .text-muted {
    color: #8a8a8a !important;
    font-size: 0.85rem;
}

.footer-legal-links a {
    transition: color 0.3s ease;
    position: relative;
    padding: 0.25rem 0;
}

.footer-legal-links a:not(:last-child)::after {
    content: '|';
    margin: 0 0.75rem;
    color: #4a4a4a;
}

.footer-legal-links a:hover {
    color: var(--primary-color) !important;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .footer-bottom {
        text-align: center;
    }
    
    .footer-legal-links {
        margin-top: 0.5rem;
    }
    
    .footer-legal-links a:not(:last-child)::after {
        margin: 0 0.5rem;
    }
}