@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #F97316;
    --dark-color: #1F2937;
    --light-color-1: #F3F4F6;
    --light-color-2: #FFFFFF;
    --font-family: 'Cairo', sans-serif;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
     overflow-x: hidden;
    --whatsapp-color: #25D366;
    --phone-color: #007bff;
    --hover-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);


}

body {
    font-family: var(--font-family);
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
}

/*====================================== Header Styles ================================================= */
.navbar {
    background-color: var(--light-color-2);
    padding: 15px 0;
}

.navbar-brand img {
    height: 60px;
}

.navbar-toggler {
    border: none;
    color: var(--dark-color);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.nav-link {
    color: var(--dark-color);
    margin: 0 10px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-color);
}


.dropdown-item {
    color: var(--dark-color);
    padding: 10px 20px;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: transparent;
    color: var(--primary-color);
    padding-right: 25px;
}

.dropdown-item:hover::before {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.dropdown-item:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Removed .dropdown:hover .dropdown-toggle::after rule */

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #e86504;
    border-color: #e86504;
}

.btn-outline-light {
    background-color: var(--dark-color);
    color: var(--light-color-2);
    padding: 8px 20px;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-outline-light:hover {
    background-color: var(--dark-color);
    color: var(--light-color-1);
}

/*==================================== Offcanvas Styles ======================================== */
.offcanvas {
    background-color: var(--light-color-2);

}

.offcanvas-header .btn-close {
    color: var(--dark-color);
    opacity: 1;
}

.offcanvas-title {
    color: var(--dark-color);

}

/*===================================== Dark Mode Toggle ======================================== */
.dark-mode-toggle {
    background: none;
    border: none;
    color: var(--dark-color);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
}


/* ================================ Desktop Dropdown Styles ====================================== */
@media (min-width: 992px) {
    .dropdown-menu {
        background-color: var(--light-color-2);
        border: none;
        border-radius: 8px;
        text-align: right;
        box-shadow: var(--shadow);
        padding: 10px 0;
        margin-top: 10px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: var(--transition);
        border-top: 3px solid var(--primary-color);
    }

    .dropdown-menu.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-toggle[aria-expanded="true"]::after {
        transform: rotate(180deg);
    }

    .dropdown-toggle::after {
        content: '\f107' !important;
        font-family: 'Font Awesome 6 Free' !important;
        font-weight: 900;
        border: none !important;
        vertical-align: middle;
        margin-right: 5px;
        transition: transform 0.3s ease;
    }
}

/*======================================= Mobile Dropdown Styles ================================ */
@media (max-width: 991.98px) {
    .offcanvas .navbar-nav {
        padding: 10px 0;
    }

    .offcanvas .nav-item {
        margin: 5px 0;
    }

    .offcanvas .nav-link {
        padding: 10px 15px;
        margin: 0;
    }

    .offcanvas .dropdown-menu {
        background-color: transparent;
        border: none;
        box-shadow: none;
        padding-right: 20px;
        margin: 0;
        position: static !important;
        transform: none !important;
        transition: max-height 0.3s ease-out;
        max-height: 0;
        overflow: hidden;
    }

    .offcanvas .dropdown-menu.show {
        max-height: 500px;
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .offcanvas .dropdown-item {
        color: var(--dark-color);
        padding: 8px 15px;
        border: none !important;
        font-size: 0.95em;
    }

    .offcanvas .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 10px 15px;
    }

    .offcanvas .dropdown-toggle::after {
        content: '\f104' !important; 
        font-family: 'Font Awesome 6 Free' !important;
        font-weight: 900;
        border: none !important;
        transition: transform 0.3s ease;
        position: relative;
        top: 1px;
        line-height: 1;
        margin-top: -2px;
        font-size: 1.1em;
    }

    .offcanvas .dropdown-toggle[aria-expanded="true"]::after {
        transform: rotate(-90deg);
    }
}

/* ===================================== start profile dropdown =================================== */
#profileDropdown, #mobileProfileDropdown {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

#profileDropdown .fa-user, #mobileProfileDropdown .fa-user {
    font-size: 1.1em;
    color: var(--primary-color);
}

.dropdown-menu[aria-labelledby="profileDropdown"],
.dropdown-menu[aria-labelledby="mobileProfileDropdown"] {
    border-top: 3px solid var(--primary-color);
    box-shadow: var(--shadow);
    border-radius: 8px;
    padding: 5px 0;
}

.dropdown-menu[aria-labelledby="profileDropdown"] .dropdown-item,
.dropdown-menu[aria-labelledby="mobileProfileDropdown"] .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 0.95em;
}

.dropdown-menu[aria-labelledby="profileDropdown"] .dropdown-item:hover,
.dropdown-menu[aria-labelledby="mobileProfileDropdown"] .dropdown-item:hover {
    background-color: var(--light-color-1);
    color: var(--primary-color);
    padding-right: 25px;
}

.dropdown-menu[aria-labelledby="profileDropdown"] .dropdown-divider,
.dropdown-menu[aria-labelledby="mobileProfileDropdown"] .dropdown-divider {
    border-top: 1px solid var(--light-color-1);
}
/* ===================================== end profile dropdown ===================================== */

/*====================================== End Header Styles ========================================= */


/* ===================================== start hero =============================================== */
.hero-section {
    padding: 80px 0;
    background-color: var(--light-color-2);
}

.hero-content .subtitle {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.hero-content .subtitle .icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--light-color-2);
    border-radius: 50%;
    margin-left: 15px;
}

.hero-content .subtitle span {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.hero-content .title {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.hero-content .title .highlight {
    color: var(--primary-color);
}

.hero-content .description {
    font-size: 18px;
    color: #6B7280;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-content .features {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-content .feature-item {
    display: flex;
    align-items: center;
    background-color: #F9FAFB;
    padding: 15px;
    border-radius: 10px;
    flex: 1;
}

.hero-content .feature-icon {
    font-size: 24px;
    color: var(--primary-color);
    margin-left: 15px;
}

.hero-content .feature-text h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.hero-content .feature-text p {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 0;
}

.hero-content .actions {
    display: flex;
    gap: 15px;
}

.hero-content .actions .btn {
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

.hero-content .actions .btn-outline {
    background-color: transparent;
    color: var(--dark-color);
    border: 2px solid #E5E7EB;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}


@media (max-width: 991.98px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-content .title {
        font-size: 36px;
    }

    .hero-content .features {
        flex-direction: column;
    }

    .hero-image {
        margin-top: 40px;
    }
}

@media (max-width: 767.98px) {
    .hero-content .actions {
        flex-direction: column;
        align-items: stretch;
    }
}
/* ===================================== end hero ================================================ */


/* ===================================== start moving-service ====================================== */
.moving-service-section .feature-box {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.moving-service-section .feature-box .icon {
    background-color: rgba(249, 115, 22, 0.1);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin-left: 1rem;
    flex-shrink: 0;
}

.moving-service-section .service-card {
    background-color: var(--light-color-2);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #E5E7EB;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.moving-service-section .service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.moving-service-section .service-card .icon {
    background-color: rgba(249, 115, 22, 0.1);
    color: var(--primary-color);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.moving-service-section .service-card:hover .icon {
    background-color: var(--primary-color);
    color: var(--light-color-2);
}

.moving-service-section .service-card h5 {
    margin-bottom: 1.5rem;
}

.moving-service-section .service-card ul {
    list-style: none;
    padding: 0;
    text-align: right;
}

.moving-service-section .service-card ul li {
    margin-bottom: 1rem;
    position: relative;
    padding-right: 30px;
    font-size: 16px;
}

.moving-service-section .service-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
}

.moving-service-section .how-it-works-step {
    text-align: center;
    position: relative;
    padding: 0 15px;
}

.moving-service-section .how-it-works-step .step-number {
    background-color: var(--primary-color);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    border: 4px solid var(--light-color-2);
}

.moving-service-section .how-it-works-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 25px;
    right: 50%;
    width: 100%;
    height: 2px;
    background-image: linear-gradient(to left, #E5E7EB 50%, transparent 50%);
    background-size: 10px 2px;
    background-repeat: repeat-x;
    z-index: 1;
}

.moving-service-section .feature-item-alt {
    display: flex;
    align-items: flex-start;
    background-color: #F9FAFB;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #E5E7EB;
}

.moving-service-section .feature-item-alt .icon {
    background-color: rgba(249, 115, 22, 0.1);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin-left: 1rem;
    flex-shrink: 0;
}

.moving-service-section .feature-item-alt .content h5 {
    font-size: 18px;
}

.moving-service-section .feature-item-alt .content p {
    font-size: 16px;
    line-height: 1.7;
}

.moving-service-section .coverage-section .icon-box {
    background-color: var(--primary-color);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    margin: 0 auto;
}

.moving-service-section .cta-section {
    background-color: #A98F78;
}

.moving-service-section .cta-section h3,
.moving-service-section .cta-section p {
    color: #fff;
}

.moving-service-section .cta-section .btn-success {
    background-color: #25D366;
    border-color: #25D366;
}

.moving-service-section .cta-section .btn-light {
    background-color: #fff;
    color: #333;
}

.moving-service-section .coverage-section .location-pin {
    background-color: var(--primary-color);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.moving-service-section .cta-section {
    background-color: #F0EBE3; /* A color similar to the image */
    padding: 60px 0;
    border-radius: 15px;
}
/* ===================================== end moving-service ======================================== */


/* ====================================== start Floating style =================================== */
/* Floating Contact Container */
.floating-contact-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    font-family: var(--font-family);
}

/* Main Floating Button */
.floating-main-btn {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, var(--primary-color), #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.floating-main-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

.floating-main-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--hover-shadow);
}

.floating-main-btn:hover::before {
    opacity: 1;
}

.floating-main-btn.active {
    transform: rotate(45deg);
    background: linear-gradient(135deg, #ff6b35, var(--primary-color));
}

.floating-main-btn i {
    color: white;
    font-size: 30px;
    transition: var(--transition);
    z-index: 1;
    position: relative;
}

/* Custom Floating Main Button Tooltip */
.floating-main-tooltip {
    position: absolute;
    top: 50%;
    right: auto; 
    left: 85px; 
    transform: translateY(-50%) translateX(-10px); 
    background-color: var(--dark-color);
    color: var(--light-color-2);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-out;
    box-shadow: var(--shadow);
    pointer-events: none; 
    z-index: 999;
}

.floating-main-tooltip.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0); 
    animation: pulsating-tooltip 2s infinite;
}

@keyframes pulsating-tooltip {
    0% { opacity: 1; transform: translateY(-50%) translateX(0) scale(1); }
    50% { opacity: 0.7; transform: translateY(-50%) translateX(0) scale(1.02); }
    100% { opacity: 1; transform: translateY(-50%) translateX(0) scale(1); }
}

.floating-main-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -5px; 
    right: auto;
    transform: translateY(-50%) rotate(45deg); 
    width: 10px;
    height: 10px;
    background-color: var(--dark-color);
    clip-path: polygon(0% 0%, 100% 0%, 0% 100%); 
}

/* Floating Options Container */
.floating-options {
    position: absolute;
    bottom: 85px;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.floating-options.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Individual Floating Options */
.floating-option {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.floating-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

.floating-option:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--hover-shadow);
}

.floating-option:hover::before {
    opacity: 1;
}

.floating-option a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    z-index: 1;
    position: relative;
}

.floating-option i {
    font-size: 26px;
    transition: var(--transition);
}

/* WhatsApp Option */
.whatsapp-option {
    background: linear-gradient(135deg, var(--whatsapp-color), #128C7E);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-option:hover {
    background: linear-gradient(135deg, #128C7E, var(--whatsapp-color));
}

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

/* Phone Option */
.phone-option {
    background: linear-gradient(135deg, var(--phone-color), #0056b3);
}

.phone-option:hover {
    background: linear-gradient(135deg, #0056b3, var(--phone-color));
}

/* Responsive Design */
@media (max-width: 768px) {
    .floating-contact-container {
        bottom: 30px;
        left: 30px;
    }
    
    .floating-main-btn {
        width: 70px;
        height: 70px;
    }
    
    .floating-main-btn i {
        font-size: 28px;
    }
    
    .floating-option {
        width: 60px;
        height: 60px;
    }
    
    .floating-option i {
        font-size: 24px;
    }
    
    .floating-options {
        bottom: 80px;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .floating-contact-container {
        bottom: 25px;
        left: 25px;
    }
    
    .floating-main-btn {
        width: 65px;
        height: 65px;
    }
    
    .floating-main-btn i {
        font-size: 26px;
    }
    
    .floating-option {
        width: 55px;
        height: 55px;
    }
    
    .floating-option i {
        font-size: 22px;
    }
    
    .floating-options {
        bottom: 75px;
        gap: 12px;
    }
}

/* RTL Support */
[dir="rtl"] .floating-contact-container {
    left: auto;
    right: 30px;
}

[dir="rtl"] .floating-main-tooltip {
    right: 85px;
    left: auto;
    transform: translateY(-50%) translateX(10px); 
}

[dir="rtl"] .floating-main-tooltip.show {
    transform: translateY(-50%) translateX(0); 
}

[dir="rtl"] .floating-main-tooltip::after {
    left: auto;
    right: -5px;
    transform: translateY(-50%) rotate(-45deg); 
    clip-path: polygon(0% 0%, 100% 100%, 100% 0%); 
}

[dir="rtl"] .floating-options {
    left: auto;
    right: 0;
}

@media (max-width: 768px) {
    [dir="rtl"] .floating-contact-container {
        right: 30px;
    }
}

@media (max-width: 480px) {
    [dir="rtl"] .floating-contact-container {
        right: 25px;
    }
}

/* Accessibility */
.floating-main-btn:focus,
.floating-option:focus {
    outline: 3px solid rgba(249, 115, 22, 0.5);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .floating-main-btn,
    .floating-option {
        border: 2px solid white;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .floating-main-btn,
    .floating-option,
    .floating-options {
        transition: none;
    }
    
    .whatsapp-option {
        animation: none;
    }
}

/* ====================================== end Floating style =================================== */


/* ======================================= start Footer ========================================== */
.footer {
    background-color: var(--light-color-2);
    color: var(--dark-color);
    padding: 80px 0 0;
    direction: rtl;
}

.footer-col {
    margin-bottom: 30px;
}

.logo-img {
    width: 150px;
    margin-bottom: 20px;
}

.p-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark-color);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--light-color-1);
    color: var(--dark-color);
    margin-left: 10px;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--light-color-2);
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links, .contact-info, .footer-bottom ul {
    list-style: none;
    padding: 0;
}

.footer-bottom li:not(:first-child)::before {
    content: '•';
    color: var(--dark-color);
    margin: 0 10px;
}

.footer-bottom li {
    margin-bottom: 12px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    text-decoration: none;
    color: var(--dark-color);
    transition: var(--transition);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.8;
}

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

.footer-links a::before {
    content: '>';
    color: var(--primary-color);
    font-weight: bold;
    flex-shrink: 0;
    padding-top: 2px;
}

.footer-bottom a {
    text-decoration: none;
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-info i {
    background-color: #F9731626;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 10px;
    font-size: 16px;
    margin-left: 15px;
}

.contact-info p {
    font-size: 16px;
    color: var(--dark-color);
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid #E5E7EB;
    padding: 20px 0;
    align-items: center;
    margin-top: 50px;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: var(--dark-color);

}

.footer-bottom ul {
    display: flex;
    margin: 0;
}

.footer-bottom li {
    margin-right: 20px;
}

.footer-bottom a {
    color: var(--dark-color);
    transition: var(--transition);
    font-size: 14px;
}

.footer-bottom a:hover {
    color: var(--primary-color);
}
@media (max-width: 991px) {
    .footer-col {
        text-align: center;
    }
    .footer-title::before {
        right: 50%;
        transform: translateX(50%);
    }
    .contact-info li {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .footer-bottom {
        flex-direction: column;
    }
    .footer-bottom p {
        margin-bottom: 15px;
    }
    .footer-bottom ul {
        padding: 0;
    }
    .contact-info li {
        flex-direction: column;
        text-align: center;
    }
    .contact-info i {
        margin-left: 0;
        margin-bottom: 10px;
    }
    .contact-info p {
        word-break: break-word;
    }
}

/* ======================================= end Footer ============================================ */
