/*
Theme Name: Southeastern Safety Pro
Theme URI: https://southeastern.com.sa
Author: Your Name
Author URI: https://yourwebsite.com
Description: A professional WordPress theme for fire safety and equipment companies, inspired by Southeastern
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: southeastern-safety
*/

/* ===================================
   CSS VARIABLES - THEME COLORS
   =================================== */
:root {
    /* Primary Brand Colors */
    --primary-red: #C8102E;
    --primary-dark: #1a1a1a;
    --primary-gold: #D4AF37;

    /* Header Heights */
    --header-height: 100px;
    --header-height-scrolled: 80px;
    --header-height-mobile: 70px;

    /* Accent Colors */
    --accent-orange: #FF6B35;
    --accent-blue: #003DA5;

    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --medium-gray: #666666;
    --dark-gray: #333333;
    --border-gray: #e0e0e0;

    /* Alert Colors */
    --emergency-red: #DC143C;
    --success-green: #28a745;
    --warning-yellow: #FFC107;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;

    /* Typography */
    --font-heading: 'Montserrat', 'Arial Black', sans-serif;
    --font-body: 'Open Sans', Arial, sans-serif;
    --font-arabic: 'Cairo', 'Tajawal', sans-serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--dark-gray);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
}

/* Arabic Language Support */
body.rtl,
body[dir="rtl"] {
    direction: rtl;
    font-family: var(--font-arabic);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

a:hover {
    color: var(--primary-red);
}

/* ===================================
   TYPOGRAPHY
   =================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-dark);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: var(--spacing-sm);
}

/* ===================================
   CONTAINER & LAYOUT
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-fluid {
    width: 100%;
    padding: 0 var(--spacing-md);
}

/* ===================================
   TOP BAR (Above Header)
   =================================== */
.top-bar {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2d2d2d 100%);
    color: var(--white);
    padding: 0.75rem 0;
    font-size: 0.9rem;
    border-bottom: 2px solid var(--primary-red);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar-left {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-contact i {
    color: var(--primary-red);
}

.top-bar-right {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.language-switcher {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.language-switcher i {
    color: var(--primary-red);
    font-size: 0.85rem;
}

.language-switcher a,
.language-switcher li a {
    padding: 0.25rem 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    font-size: 0.8rem;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-block;
}

.language-switcher a:hover,
.language-switcher a.active,
.language-switcher li.current-lang a {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--white);
}

.language-switcher ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 0.5rem;
}

.language-switcher li {
    display: inline-block;
}


.emergency-badge,
.working-hours-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.emergency-badge {
    background: var(--emergency-red);
    animation: pulse 2s infinite;
    border: none;
}

@keyframes pulse {

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

    50% {
        transform: scale(1.05);
    }
}

/* ===================================
   MAIN HEADER & NAVIGATION
   =================================== */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-normal);
}

/* Adjust sticky header when WordPress Admin Bar is showing */
.admin-bar .main-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .main-header {
        top: 46px;
    }
}

@media screen and (max-width: 600px) {
    .admin-bar .main-header {
        top: 0;
    }
}

.main-header.scrolled {
    box-shadow: var(--shadow-lg);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-logo a {
    display: inline-block;
    line-height: 0;
}

.site-logo .custom-logo-link {
    display: inline-block;
    line-height: 0;
}

.site-logo .custom-logo {
    height: 60px;
    width: auto;
    max-width: 250px;
    transition: var(--transition-normal);
    display: block;
}

.site-logo img {
    height: 60px;
    width: auto;
    max-width: 250px;
    transition: var(--transition-normal);
}

.main-header.scrolled .site-logo .custom-logo,
.main-header.scrolled .site-logo img {
    height: 50px;
}

.site-title {
    display: flex;
    flex-direction: column;
}

.site-title h1 {
    font-size: 1.5rem;
    margin: 0;
    line-height: 1.2;
}

.site-title h1 a {
    color: var(--primary-dark);
    text-decoration: none;
}

.site-title h1 a:hover {
    color: var(--primary-red);
}

.site-title span {
    font-size: 0.85rem;
    color: var(--primary-red);
    font-weight: 600;
    line-height: 1.3;
}

/* Navigation Menu */
.main-navigation {
    display: flex;
    align-items: center;
}

.mobile-nav-header {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.nav-menu>li {
    position: relative;
}

.nav-menu>li>a {
    display: block;
    padding: 1rem 1.25rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary-dark);
    position: relative;
    transition: var(--transition-fast);
}

.nav-menu>li>a::after {
    content: '';
    position: absolute;
    bottom: 0.75rem;
    left: 1.25rem;
    right: 1.25rem;
    height: 2px;
    background: var(--primary-red);
    transform: scaleX(0);
    transition: transform var(--transition-fast);
}

.nav-menu>li>a:hover::after,
.nav-menu>li.current-menu-item>a::after {
    transform: scaleX(1);
}

.nav-menu>li>a:hover {
    color: var(--primary-red);
}

/* Dropdown Menus */
.nav-menu li.menu-item-has-children>a::before {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 0.5rem;
    font-size: 0.8rem;
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 250px;
    box-shadow: var(--shadow-lg);
    border-top: 3px solid var(--primary-red);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-normal);
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
    z-index: 100;
}

.menu-item-has-children:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--dark-gray);
    font-size: 0.9rem;
    border-left: 3px solid transparent;
    transition: var(--transition-fast);
}

.sub-menu li a:hover {
    background: var(--light-gray);
    border-left-color: var(--primary-red);
    color: var(--primary-red);
    padding-left: 2rem;
}

/* Header CTA Button */
.header-cta {
    display: flex;
    gap: 1rem;
}

.btn-emergency {
    background: linear-gradient(135deg, var(--emergency-red) 0%, #B8001D 100%);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: none;
    cursor: pointer;
}

.btn-emergency:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #FF0000 0%, var(--emergency-red) 100%);
}

.btn-quote {
    background: transparent;
    color: var(--primary-dark);
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-dark);
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition-normal);
}

.btn-quote:hover {
    background: var(--primary-dark);
    color: var(--white);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-dark);
    border-radius: 2px;
    transition: var(--transition-normal);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===================================
   RESPONSIVE STYLES
   =================================== */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 0.25rem;
    }

    .nav-menu>li>a {
        padding: 1rem 0.75rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .top-bar-left {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .top-bar-right {
        justify-content: center;
        width: 100%;
    }

    .top-bar-contact:last-child {
        display: none;
        /* Hide map marker on mobile to save space */
    }

    .header-container {
        padding: 0.75rem 0;
    }

    .site-logo .custom-logo,
    .site-logo img {
        height: 50px;
        /* Smaller logo on mobile */
    }

    .main-header.scrolled .site-logo .custom-logo,
    .main-header.scrolled .site-logo img {
        height: 40px;
    }

    .mobile-menu-toggle {
        display: flex;
        order: 3;
    }

    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 4rem 1.5rem 2rem;
        /* Adjusted padding for new header */
        box-shadow: var(--shadow-xl);
        transition: right var(--transition-normal);
        overflow-y: auto;
        z-index: 999;
    }

    .mobile-nav-header {
        width: 100%;
        display: flex;
        justify-content: flex-end;
        margin-bottom: 2rem;
    }

    .menu-close {
        background: transparent;
        border: none;
        font-size: 1.5rem;
        color: var(--primary-dark);
        cursor: pointer;
        padding: 0.5rem;
    }

    .menu-close:hover {
        color: var(--primary-red);
    }

    .main-navigation.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-menu>li {
        width: 100%;
        border-bottom: 1px solid var(--border-gray);
    }

    .nav-menu>li>a {
        padding: 1rem 0.5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-menu>li>a::after {
        display: none;
    }

    .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--light-gray);
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition-normal);
        width: 100% !important;
        min-width: 0 !important;
    }

    .sub-menu li a {
        padding: 0.75rem 1.5rem;
    }

    .menu-item-has-children.active>.sub-menu {
        max-height: 800px;
        padding: 0.5rem 0;
    }

    .nav-menu li.menu-item-has-children>a::before {
        order: 2;
        transition: transform var(--transition-normal);
        margin: 0;
    }

    .menu-item-has-children.active>a::before {
        transform: rotate(180deg);
    }

    .header-cta {
        flex-direction: column;
        width: 100%;
        margin-top: 2rem;
        gap: 1rem;
    }

    .btn-emergency,
    .btn-quote {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1rem;
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-1 {
    margin-top: var(--spacing-xs);
}

.mt-2 {
    margin-top: var(--spacing-sm);
}

.mt-3 {
    margin-top: var(--spacing-md);
}

.mt-4 {
    margin-top: var(--spacing-lg);
}

.mb-1 {
    margin-bottom: var(--spacing-xs);
}

.mb-2 {
    margin-bottom: var(--spacing-sm);
}

.mb-3 {
    margin-bottom: var(--spacing-md);
}

.mb-4 {
    margin-bottom: var(--spacing-lg);
}

.section-padding {
    padding: var(--spacing-xl) 0;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* ===================================
   FOOTER STYLES
   =================================== */
.site-footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #000000 100%);
    color: var(--white);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-gold), var(--primary-red));
}

/* Footer Widgets */
.footer-widgets {
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-widget {
    margin-bottom: var(--spacing-md);
}

.footer-widget .widget-title {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-red);
    position: relative;
}

.footer-widget .widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--primary-gold);
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
}

.footer-logo {
    margin-top: var(--spacing-sm);
}

.footer-logo img {
    max-width: 180px;
    opacity: 0.9;
}

/* Footer Menu */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu li a {
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition-fast);
    padding: 0.25rem 0;
}

.footer-menu li a:hover {
    color: var(--primary-red);
    padding-left: 0.5rem;
}

.footer-menu li a i {
    color: var(--primary-red);
    font-size: 0.7rem;
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact li i {
    color: var(--primary-red);
    font-size: 1.1rem;
    width: 20px;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.footer-contact li a:hover {
    color: var(--primary-red);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: var(--spacing-md);
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition-normal);
}

.social-links a:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.footer-bottom-menu {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-bottom-menu a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-bottom-menu a:hover {
    color: var(--primary-red);
}

.footer-bottom-menu span {
    color: rgba(255, 255, 255, 0.3);
}

.footer-certifications {
    display: flex;
    gap: 1rem;
}

.footer-certifications img {
    height: 40px;
    width: auto;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.footer-certifications img:hover {
    opacity: 1;
}

/* ===================================
   FLOATING BUTTONS
   =================================== */

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition-normal);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

@keyframes pulse-whatsapp {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

/* Emergency Call Float */
.emergency-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--emergency-red) 0%, #B8001D 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition-normal);
    animation: pulse-emergency 1.5s infinite;
}

.emergency-float:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

@keyframes pulse-emergency {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(220, 20, 60, 0.7);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(220, 20, 60, 0);
    }
}

/* Back to Top Button */
#back-to-top {
    position: fixed;
    bottom: 170px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-dark);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

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

#back-to-top:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
}

/* ===================================
   RESPONSIVE - FOOTER
   =================================== */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .whatsapp-float,
    .emergency-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        right: 20px;
    }

    .whatsapp-float {
        bottom: 80px;
    }

    .emergency-float {
        bottom: 20px;
    }

    #back-to-top {
        bottom: 140px;
        right: 20px;
    }
}

/* ===================================
   HERO CAROUSEL STYLES
   =================================== */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 85vh;
    /* Decreased from 100vh */
    min-height: 550px;
    background: var(--primary-dark);
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 10s ease;
    z-index: 1;
}

.swiper-slide-active .slide-bg {
    transform: scale(1.1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(26, 26, 26, 0.2) 100%);
    z-index: 2;
}

.slide-content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    /* Vertical alignment */
}

.slide-content {
    max-width: 800px;
}

.slide-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.1;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.slide-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 650px;
}

.animate-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.swiper-slide-active .animate-up {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

/* Buttons */
.hero-carousel .btn {
    padding: 1rem 2.5rem;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all var(--transition-normal);
}

.hero-carousel .btn-primary {
    background: var(--primary-red);
    color: var(--white);
    border: none;
}

.hero-carousel .btn-primary:hover {
    background: #E01234;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(200, 16, 46, 0.3);
}

/* Swiper Controls */
.hero-carousel .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--white);
    opacity: 0.5;
}

.hero-carousel .swiper-pagination-bullet-active {
    background: var(--primary-red);
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

.hero-carousel .swiper-button-next,
.hero-carousel .swiper-button-prev {
    color: var(--white);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    transition: all var(--transition-normal);
}

.hero-carousel .swiper-button-next:after,
.hero-carousel .swiper-button-prev:after {
    font-size: 1.2rem;
}

.hero-carousel .swiper-button-next:hover,
.hero-carousel .swiper-button-prev:hover {
    background: var(--primary-red);
}

/* Responsiveness */
@media (max-width: 1024px) {
    .slide-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .hero-carousel {
        height: 75vh;
        min-height: 450px;
    }

    .slide-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .slide-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

/* ===================================
   404 PAGE STYLES
   =================================== */
.error-404 {
    padding: 100px 0;
    background-color: var(--light-bg);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.error-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.error-header {
    margin-bottom: 2rem;
    position: relative;
}

.error-header h1 {
    font-size: 10rem;
    font-weight: 900;
    color: rgba(200, 16, 46, 0.1);
    line-height: 1;
    margin: 0;
}

.error-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: var(--primary-red);
}

.error-404 h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.error-404 p {
    font-size: 1.25rem;
    color: var(--dark-gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.error-actions {
    display: flex;
    justify-content: center;
}

.btn-back-home {
    background: linear-gradient(135deg, var(--primary-red) 0%, #B8001D 100%);
    color: var(--white);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 25px rgba(200, 16, 46, 0.3);
    transition: all var(--transition-normal);
}

.btn-back-home:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(200, 16, 46, 0.4);
    color: var(--white);
}

.btn-back-home i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .error-header h1 {
        font-size: 6rem;
    }

    .error-icon {
        font-size: 3rem;
    }

    .error-404 h2 {
        font-size: 2rem;
    }
}

/* ===================================
   PAGE HEADER
   =================================== */
.page-header {
    background: var(--primary-dark);
    color: var(--white);
    padding: 100px 0;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
    z-index: 1;
}

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

.page-header .page-title {
    color: var(--white) !important;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.page-header .post-meta {
    color: var(--white);
    justify-content: center;
    margin-bottom: 1rem;
}

/* ===================================
   SINGLE POST & BLOG
   =================================== */
.post-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    margin-bottom: 80px;
}

.post-thumbnail {
    margin-bottom: 2.5rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.post-meta {
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1.5rem;
    font-size: 0.95rem;
    opacity: 0.8;
}

.post-meta i {
    color: var(--primary-red);
    margin-right: 0.5rem;
}

.entry-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.post-sidebar .widget {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform var(--transition-normal);
}

.post-sidebar .widget:hover {
    transform: translateY(-5px);
}

.widget-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    position: relative;
    border-bottom: 1px solid var(--border-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.widget-title::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-red);
}

/* Recent Posts Widget */
.recent-posts ul {
    list-style: none;
    padding: 0;
}

.recent-posts li {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed var(--border-color);
}

.recent-posts li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-posts li a {
    display: flex;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

.recent-post-thumb {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
}

.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-info .post-title {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.35rem;
}

.recent-post-info .post-date {
    display: block;
    font-size: 0.8rem;
    opacity: 0.6;
}

.recent-posts li a:hover .post-title {
    color: var(--primary-red);
}

/* Categories, Archives & Custom Nav */
.widget_categories ul,
.widget_archive ul,
.categories ul,
.sidebar-nav-widget ul {
    list-style: none;
    padding: 0;
}

.widget_categories li,
.widget_archive li,
.categories li,
.sidebar-nav-widget li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.widget_categories li a,
.widget_archive li a,
.categories li a,
.sidebar-nav-widget li a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.widget_categories li a::before,
.categories li a::before,
.sidebar-nav-widget li a::before {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 0.7rem;
    color: var(--primary-red);
}

.widget_categories li a:hover,
.categories li a:hover,
.sidebar-nav-widget li a:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

.widget_categories li span.count,
.categories li .count {
    background: var(--light-bg);
    color: var(--primary-dark);
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Search Widget */
.widget_search .search-form {
    position: relative;
}

.widget_search .search-field {
    width: 100%;
    padding: 1rem 3.5rem 1rem 1.5rem;
    background: var(--light-bg);
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
}

.widget_search .search-submit {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    text-indent: -9999px;
    transition: all 0.3s;
}

.widget_search .search-form::after {
    content: "\f002";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 17px;
    top: 15px;
    color: var(--white);
    pointer-events: none;
}

.widget_search .search-submit:hover {
    background: var(--primary-dark);
}

/* Tag Cloud */
.tagcloud a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--light-bg);
    color: var(--primary-dark);
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.85rem !important;
    margin: 0 5px 10px 0;
    transition: all 0.3s;
    font-weight: 600;
}

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

/* RTL Sidebar Adjustments */
body.rtl .widget-title::after {
    left: auto;
    right: 0;
}

body.rtl .widget_categories li a::before,
body.rtl .categories li a::before {
    content: "\f053";
    /* Left chevron for RTL */
}

body.rtl .widget_categories li a:hover,
body.rtl .categories li a:hover {
    padding-left: 0;
    padding-right: 5px;
}

body.rtl .widget_search .search-field {
    padding: 1rem 1.5rem 1rem 3.5rem;
}

body.rtl .widget_search .search-submit {
    right: auto;
    left: 5px;
}

body.rtl .widget_search .search-form::after {
    right: auto;
    left: 17px;
}

/* ===================================
   WOOCOMMERCE STYLES
   =================================== */
.woocommerce-container {
    padding: 60px 0;
}

.woocommerce ul.products li.product {
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
    border-radius: 8px;
    transition: var(--transition-normal);
}

.woocommerce ul.products li.product:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.woocommerce ul.products li.product .button {
    background: var(--primary-dark) !important;
    color: var(--white) !important;
    border-radius: 4px !important;
    padding: 0.8rem 1.2rem !important;
}

.woocommerce ul.products li.product .button:hover {
    background: var(--primary-red) !important;
}

/* ===================================
   CONTACT PAGE
   =================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 4rem;
    margin-bottom: 60px;
}

.info-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-red);
}

.info-box i {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.info-box h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.form-wrapper {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 10px;
}

.theme-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.theme-form input,
.theme-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    margin-bottom: 1rem;
}

@media (max-width: 1024px) {

    .post-layout,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   HOMEPAGE SECTIONS
   =================================== */
.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--light-bg);
}

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

.section-subtitle {
    color: var(--primary-red);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 2rem;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-features {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-item i {
    color: var(--primary-red);
}

.about-image .image-wrapper {
    position: relative;
    padding-right: 30px;
    padding-bottom: 30px;
}

.about-image .main-img {
    border-radius: 10px;
    box-shadow: var(--shadow-xl);
    width: 100%;
}

.experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--primary-red);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

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

.service-card {
    background: var(--white);
    padding: 0;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border-bottom: 3px solid transparent;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-red);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 0;
    height: 240px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    overflow: hidden;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 2rem;
}

/* Stats Section */
.stats-section {
    position: relative;
    color: var(--white);
    text-align: center;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.9);
}

.stats-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.stat-item .counter {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: 600;
}

/* Partners Section */
.partners-slider {
    padding: 1rem 0;
}

.partners-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    max-width: 140px;
    height: auto;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.6;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.partner-placeholder {
    background: #f0f0f0;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    color: var(--dark-gray);
    width: 100%;
}

.partner-placeholder i {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
    display: inline-block;
}

.partner-placeholder span {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.project-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--white);
}

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

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

.project-card:hover .project-img img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(200, 16, 46, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay .view-btn {
    color: var(--white);
    font-size: 2rem;
}

.project-info {
    padding: 1.5rem;
}

/* CTA Section */
.alternate-bg {
    background-color: var(--primary-dark);
    color: var(--white);
}

.cta-title {
    color: var(--white);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }
}

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    text-align: center;
}

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

.product-img {
    height: 250px;
    background: #f8f8f8;
    position: relative;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-red);
    opacity: 0.2;
}

.product-info {
    padding: 2rem;
}

.product-info h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.btn-link {
    color: var(--primary-red);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-link:hover {
    gap: 0.8rem;
}

/* ===================================
   ANIMATIONS
   =================================== */
.animate-up,
.animate-left,
.animate-right {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.animate-up {
    transform: translateY(30px);
}

.animate-left {
    transform: translateX(-30px);
}

.animate-right {
    transform: translateX(30px);
}

.animate-up.visible,
.animate-left.visible,
.animate-right.visible {
    opacity: 1;
    transform: translate(0, 0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

.partners-section {
    overflow: hidden;
}

/* Side Floating Social Icons */
.social-side-float {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 0 5px 0 5px;
    overflow: hidden;
    align-items: flex-end;
}

.social-float-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition-fast);
    position: relative;
    left: 0;
    text-decoration: none;
}

.social-float-item:hover {
    width: 55px;
    color: var(--white);
}

.social-x {
    background-color: #000000;
}

.social-linkedin {
    background-color: #0077b5;
}

.social-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.map-container iframe {
    width: 100%;
    height: 450px;
}

/* Contact Form Enhancements */
.contact-form-ajax .form-group {
    margin-bottom: 20px;
}

.contact-form-ajax input,
.contact-form-ajax textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form-ajax input:focus,
.contact-form-ajax textarea:focus {
    border-color: #dc2626;
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.1);
    outline: none;
}

.btn-submit {
    position: relative;
    padding: 12px 30px;
    overflow: hidden;
    min-width: 180px;
    transition: all 0.3s ease;
}

.btn-submit .btn-loader {
    display: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.btn-submit.loading .btn-text {
    opacity: 0;
}

.btn-submit.loading .btn-loader {
    display: block;
}

.form-response {
    margin-bottom: 25px;
    padding: 15px;
    border-radius: 8px;
    display: none;
    font-weight: 600;
    text-align: center;
    animation: fadeInDown 0.5s ease forwards;
}

.form-response.success {
    display: block !important;
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.form-response.error {
    display: block !important;
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

.contact-phone {
    direction: ltr !important;
    unicode-bidi: embed;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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