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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', Arial, sans-serif;
    background-color: #1A4B6E;
    color: #FFFFFF;
    line-height: 1.6;
    direction: rtl;
}

/* Color Variables */
:root {
    --primary-bg: #1A4B6E;
    --accent-cyan: #00AEEF;
    --text-white: #FFFFFF;
    --text-light: #F5F5F5;
    --cta-red: #C00000;
    --hover-transition: all 0.3s ease;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
}

p {
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Header / Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-bg);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo */
.logo {
    flex-shrink: 0;
}

.logo-img {
    height: 40px;
    width: auto;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--hover-transition);
    padding: 0.5rem 0;
}

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

/* CTA Button in Navigation */
.nav-cta {
    flex-shrink: 0;
}

.cta-button {
    background-color: var(--cta-red);
    color: var(--text-white);
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--hover-transition);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #A00000;
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: var(--text-white);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hide mobile CTA by default */
.nav-cta-mobile {
    display: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-bg) 0%, #1a365d 50%, #2c5282 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px; /* Account for fixed header */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 174, 239, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(192, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    height: calc(100vh - 80px);
    position: relative;
    display: flex;
    align-items: center;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
}

/* Hero Logo */
.hero-logo {
    margin-bottom: 3rem;
    animation: logoFloat 3s ease-in-out infinite;
    position: relative;
}

.hero-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero-logo-img {
    height: 280px;
    width: auto;
    filter: 
        drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4))
        drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.hero-logo-img:hover {
    transform: scale(1.05);
    filter: 
        drop-shadow(0 15px 40px rgba(0, 0, 0, 0.5))
        drop-shadow(0 0 30px rgba(255, 255, 255, 0.2));
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.3;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 4px 8px rgba(0, 0, 0, 0.3),
        0 8px 16px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 600px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 400;
}



/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
}

.btn {
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    display: inline-block;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--cta-red) 0%, #A00000 100%);
    color: var(--text-white);
    border-color: var(--cta-red);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #A00000 0%, #800000 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(192, 0, 0, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, transparent 0%, rgba(0, 174, 239, 0.1) 100%);
    color: var(--text-white);
    border-color: var(--accent-cyan);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, #0088cc 100%);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 174, 239, 0.4);
}

/* Why Choose Us Section */
.why-us {
    background-color: #F8F9FA;
    padding: 80px 0;
}

.why-us .section-title {
    color: var(--primary-bg);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(26, 75, 110, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(26, 75, 110, 0.15);
    border-color: var(--accent-cyan);
}

.feature-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.feature-icon svg {
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon svg {
    transform: scale(1.1);
}

.feature-title {
    color: var(--primary-bg);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.feature-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Our Services Section */
.services {
    background-color: var(--primary-bg);
    padding: 80px 0;
}

.services .section-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--accent-cyan);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 174, 239, 0.2);
    border-color: #33c3f0;
}

.service-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.service-icon svg {
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon svg {
    transform: scale(1.1);
}

.service-title {
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
        justify-content: space-between;
    }
    
    .mobile-menu-toggle {
        display: flex;
        order: 3;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--primary-bg);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 80px;
        gap: 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-item {
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }
    
    .nav-cta {
        display: none;
    }
    
    .nav-cta-mobile {
        display: block;
        margin-top: 1rem;
    }
    
    .nav-cta-mobile .cta-button {
        width: 200px;
        text-align: center;
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .hero {
        min-height: 100vh;
        padding-top: 70px;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
        min-height: calc(100vh - 70px);
        justify-content: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin: 0;
        padding: 1rem;
    }
    
    .hero-logo {
        margin-bottom: 2rem;
    }
    
    .hero-logo-img {
        height: 80px;
        width: auto;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Responsive adjustments for new sections */
    .why-us, .services {
        padding: 3rem 1rem;
    }
    
    .why-us .section-title,
    .services .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        line-height: 1.3;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .feature-card,
    .service-card {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .feature-title,
    .service-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .feature-description,
    .service-description {
         font-size: 1rem;
         line-height: 1.6;
     }
     
     /* Responsive adjustments for Nationalities section */
     .nationalities {
         padding: 3rem 1rem;
     }
     
     .nationalities .section-title {
         font-size: 1.8rem;
         margin-bottom: 2rem;
         line-height: 1.3;
     }
     
     .nationalities-grid {
         grid-template-columns: repeat(3, 1fr);
         gap: 1.5rem;
         padding: 0 1rem;
     }
     
     .nationality-item {
         padding: 1.5rem 1rem;
     }
     
     .flag-container {
         width: 70px;
         height: 70px;
         margin-bottom: 1rem;
     }
     
     .nationality-name {
         font-size: 0.9rem;
         margin-top: 0.5rem;
         text-align: center;
     }
 }

 @media (min-width: 769px) and (max-width: 1024px) {
     .nationalities-grid {
         grid-template-columns: repeat(4, 1fr);
         gap: 25px;
     }
     
     .flag-container {
         width: 90px;
         height: 90px;
     }
 }

 /* Nationalities Section */
 .nationalities {
     background-color: #FFFFFF;
     padding: 80px 0;
 }

 .nationalities .section-title {
     color: var(--primary-bg);
     font-size: 2.5rem;
     font-weight: 700;
     text-align: center;
     margin-bottom: 60px;
     line-height: 1.2;
 }

 .nationalities-grid {
     display: grid;
     grid-template-columns: repeat(7, 1fr);
     gap: 30px;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 2rem;
 }

 .nationality-item {
     display: flex;
     flex-direction: column;
     align-items: center;
     padding: 25px 15px;
     border-radius: 15px;
     transition: all 0.3s ease;
     cursor: pointer;
 }

 .nationality-item:hover {
     transform: scale(1.05);
     background-color: rgba(26, 75, 110, 0.05);
 }

 .flag-container {
     width: 100px;
     height: 100px;
     position: relative;
     margin-bottom: 15px;
     border-radius: 50%;
     overflow: hidden;
     box-shadow: 
         0 8px 25px rgba(0, 0, 0, 0.15),
         inset 0 1px 0 rgba(255, 255, 255, 0.3),
         inset 0 -1px 0 rgba(0, 0, 0, 0.1);
     background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0.1) 100%);
     transition: all 0.3s ease;
 }

 .flag-container:hover {
     transform: translateY(-5px);
     box-shadow: 
         0 15px 35px rgba(0, 0, 0, 0.2),
         inset 0 1px 0 rgba(255, 255, 255, 0.4),
         inset 0 -1px 0 rgba(0, 0, 0, 0.15);
 }

 .flag-icon {
     width: 100%;
     height: 100%;
     border-radius: 50%;
     position: relative;
     z-index: 1;
 }

 .nationality-name {
     color: var(--primary-bg);
     font-size: 1.1rem;
     font-weight: 600;
     text-align: center;
     margin: 0;
     margin-top: 15px;
     line-height: 1.3;
     transition: color 0.3s ease;
 }

 .nationality-item:hover .nationality-name {
     color: var(--accent-cyan);
 }

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .nav-container {
        padding: 0.5rem;
    }
    
    .hero-content {
        padding: 0.5rem;
    }
    
    .why-us .section-title,
    .services .section-title,
    .nationalities .section-title {
        font-size: 1.5rem;
    }
    
    .nationalities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .flag-container {
        width: 60px;
        height: 60px;
    }
    
    .nationality-name {
        font-size: 0.8rem;
    }
    
    .feature-card,
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .btn {
        max-width: 250px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ====== REFINED CONTACT US SECTION STYLES ====== */

.contact {
    background-color: #1A4B6E; /* Kept the same */
    color: white;
    padding: 80px 0;
}

.contact-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 60px;
    color: white;
}

/* 1. Constrain and center the grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px; /* Reduced the gap slightly for a tighter look */
    align-items: stretch; /* This makes both columns the same height */
    max-width: 1200px; /* This is the key change to prevent over-stretching */
    margin: 0 auto; /* This centers the grid */
    padding: 0 2rem; /* Add some padding for smaller screens */
}

/* 2. Contact Info Card - Independent Design */
.contact-info {
    background: linear-gradient(135deg, rgba(26, 75, 110, 0.9), rgba(12, 41, 78, 0.8)) !important;
    padding: 45px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 
                0 5px 20px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #ffffff !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 600px;
    height: 100%;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1A4B6E, #0C294E, #1A4B6E);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 200% 0; }
    50% { background-position: -200% 0; }
}

.contact-info:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 
                0 10px 30px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

/* 3. Contact Form Card - Independent Design */
.contact-form-container {
    background: linear-gradient(135deg, rgba(26, 75, 110, 0.9), rgba(12, 41, 78, 0.8)) !important;
    padding: 45px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 
                0 5px 20px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    color: #ffffff !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 600px;
    height: 100%;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1A4B6E, #0C294E, #1A4B6E);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite reverse;
}

.contact-form-container:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 
                0 10px 30px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Contact Info Card Title */
.contact-info h3 {
    font-size: 1.9rem;
    margin-bottom: 35px;
    color: #FFFFFF;
    font-weight: bold;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    padding-bottom: 15px;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #FFFFFF, rgba(255, 255, 255, 0.5));
    border-radius: 2px;
}

/* Contact Form Card Title */
.contact-form-container h3 {
    font-size: 1.9rem;
    margin-bottom: 35px;
    color: #FFFFFF;
    font-weight: bold;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    padding-bottom: 15px;
}

.contact-form-container h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #FFFFFF, rgba(255, 255, 255, 0.5));
    border-radius: 2px;
}

/* Contact Information Column - Enhanced Design */
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border-left: 4px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.contact-item:hover::before {
    transform: translateX(100%);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
    border-left-color: #FFFFFF;
}

.contact-icon {
    width: 28px;
    height: 28px;
    color: #FFFFFF;
    flex-shrink: 0;
    margin-top: 2px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
    transform: scale(1.1);
}

.contact-text {
    flex: 1;
    line-height: 1.7;
    color: #FFFFFF !important;
}

.contact-text strong {
    color: #FFFFFF !important;
    font-weight: bold;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.phone-list {
    list-style: none;
    padding: 0;
    margin: 5px 0 0 0;
}

.phone-list li {
    margin-bottom: 5px;
}

.phone-list a,
.contact-text a {
    color: #FFFFFF !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-list a:hover,
.contact-text a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Ensure all text within contact-info is white */
.contact-info,
.contact-info p,
.contact-info span,
.contact-info div,
.contact-info strong,
.contact-item,
.contact-item *,
.contact-text,
.contact-text * {
    color: #FFFFFF !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Contact Form - Enhanced Independent Design */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    height: 100%;
    position: relative;
}

.contact-form-container {
    justify-content: space-between;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-label {
    margin-bottom: 10px;
    font-weight: bold;
    color: #FFFFFF;
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-left: 10px;
}

.form-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #FFFFFF, rgba(255, 255, 255, 0.5));
    border-radius: 2px;
}

.form-input,
.form-select,
.form-textarea {
    padding: 18px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
}
    font-family: inherit;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1),
                0 8px 25px rgba(0, 0, 0, 0.2);
    color: white;
    transform: translateY(-2px);
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3e%3cpath d='m7.247 4.86-4.796 5.481c-.566.647-.106 1.659.753 1.659h9.592a1 1 0 0 0 .753-1.659l-4.796-5.48a1 1 0 0 0-1.506 0z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

.form-select option {
    background-color: #1A4B6E;
    color: white;
    padding: 10px;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    min-height: 100px;
}

.form-submit {
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 100%);
    color: #1A4B6E;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 20px 35px;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2),
                0 4px 12px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.form-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.form-submit:hover::before {
    left: 100%;
}

.form-submit:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, #FFFFFF 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3),
                0 6px 18px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
}

.form-submit:active {
    transform: translateY(-1px) scale(1.01);
}

/* ====== MODERN PROFESSIONAL FOOTER DESIGN ====== */

.footer {
    background: linear-gradient(135deg, #1A4B6E 0%, #0F3A5A 100%);
    color: white;
    border-top: 4px solid #00AEEF;
    position: relative;
    overflow: hidden;
}

/* Add subtle pattern overlay */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Main Footer Content */
.footer-main {
    padding: 70px 0 50px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

/* Column Styling with Visual Separation */
.footer-column {
    text-align: right;
    position: relative;
    padding: 0 20px;
}

/* Add subtle dividers between columns */
.footer-column:not(:last-child)::after {
    content: '';
    position: absolute;
    left: -30px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(0, 174, 239, 0.3), transparent);
}

/* Strong Visual Hierarchy for Titles */
.footer-column h4 {
    color: #00AEEF;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

/* Add underline accent to titles */
.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #00AEEF, #0088CC);
    border-radius: 2px;
}

/* Logo Section Enhancement */
.footer-logo {
    margin-bottom: 25px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.footer-logo .logo {
    height: 65px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 174, 239, 0.3));
    transition: transform 0.3s ease;
}

.footer-logo .logo:hover {
    transform: scale(1.05);
}

.footer-about {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* ====== Footer Social Icons ====== */
.footer-social-icons {
    display: flex;
    justify-content: flex-start; /* Aligns to the right in RTL */
    gap: 15px;
    margin-top: 25px; /* Space above the icons */
}

.footer-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 174, 239, 0.3);
    border-radius: 50%;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    background-color: #00AEEF;
    border-color: #00AEEF;
    transform: translateY(-3px);
}

/* Enhanced Links Styling */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 16px;
    position: relative;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding: 5px 0;
}

.footer-links a::before {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: #00AEEF;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #FFFFFF;
    transform: translateX(-5px);
}

.footer-links a:hover::before {
    width: 10px;
}

/* Contact Information Styling */
.footer-contact {
    space-y: 20px;
}

.footer-contact p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-contact a:hover {
    color: #00AEEF;
    text-shadow: 0 0 8px rgba(0, 174, 239, 0.4);
}

.footer-address {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Footer Bottom Bar */
/* Distinct Bottom Bar Design */
.footer-bottom {
    background: linear-gradient(135deg, #0F3A5A 0%, #0A2A42 100%);
    border-top: 2px solid rgba(0, 174, 239, 0.3);
    padding: 25px 0;
    position: relative;
}

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

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.copyright {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.privacy-link {
    color: #00AEEF;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 10px;
    border-radius: 4px;
}

.privacy-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;   
    bottom: 0;
    background: rgba(0, 174, 239, 0.1);
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.privacy-link:hover {
    color: #FFFFFF;
    text-shadow: 0 0 8px rgba(0, 174, 239, 0.6);
}

.privacy-link:hover::before {
    opacity: 1;
}

/* Responsive Design for Contact and Footer */
@media (max-width: 1024px) {
    .contact-grid {
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1.8fr 1fr 1fr 1.1fr;
        gap: 50px;
    }
    
    .footer-column {
        padding: 0 15px;
    }
    
    .footer-column:not(:last-child)::after {
        left: -25px;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 3rem 1rem;
    }
    
    .contact-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        line-height: 1.3;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 2rem;
    }
    
    .contact-info,
    .contact-form-container {
        padding: 2rem 1.5rem;
        min-height: auto;
    }
    
    .contact-info h3,
    .contact-form-container h3 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        padding: 1rem;
        font-size: 1rem;
        border-radius: 8px;
    }
    
    .form-textarea {
        min-height: 120px;
    }
    
    .form-submit {
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
        margin-top: 1rem;
    }
    
    .footer-main {
        padding: 50px 0 40px 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-column {
        text-align: center;
        padding: 0 10px;
    }
    
    /* Remove column dividers on tablet */
    .footer-column:not(:last-child)::after {
        display: none;
    }
    
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }
    
    .footer-logo {
        justify-content: center; /* Center the logo on mobile */
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 2rem 0.5rem;
    }
    
    .contact-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-info,
    .contact-form-container {
        padding: 1.5rem 1rem;
    }
    
    .contact-info h3,
    .contact-form-container h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .form-textarea {
        min-height: 100px;
    }
    
    .form-submit {
        padding: 0.8rem;
        font-size: 1rem;
    }
    
    .footer .container {
        padding: 0 1rem;
    }
    
    .footer-main {
        padding: 40px 0 30px 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-column h4 {
        font-size: 1.2rem;
        margin-bottom: 25px;
    }
    
    .footer-logo .logo {
        height: 55px;
    }
    
    .footer-about {
        font-size: 0.95rem;
    }
    
    .footer-links a,
    .footer-contact p {
        font-size: 0.95rem;
    }
    
    .footer-bottom {
        padding: 20px 0;
    }
    
    .footer-bottom p {
        font-size: 0.9rem;
    }
}

/* Smooth animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-title {
    animation-delay: 0.2s;
}

.hero-subtitle {
    animation-delay: 0.4s;
}

.hero-buttons {
    animation-delay: 0.6s;
}

/* Privacy and Terms Pages Styles */
.privacy-page,
.terms-page {
    padding-top: 120px;
    min-height: 100vh;
    background-color: #f8f9fa;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-bg) 0%, #2c5f7e 100%);
    color: white;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    pointer-events: none;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.privacy-content,
.terms-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

.privacy-section,
.terms-section {
    background: white;
    margin-bottom: 30px;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--accent-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.privacy-section:hover,
.terms-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.privacy-section h2,
.terms-section h2 {
    color: var(--primary-bg);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
    position: relative;
}

.privacy-section h2::after,
.terms-section h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.privacy-section p,
.terms-section p {
    line-height: 1.8;
    margin-bottom: 16px;
    color: #495057;
    font-size: 1.1rem;
}

.privacy-section ul,
.terms-section ul {
    margin: 20px 0;
    padding-right: 20px;
}

.privacy-section li,
.terms-section li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #495057;
    font-size: 1.05rem;
    position: relative;
}

.privacy-section li::before,
.terms-section li::before {
    content: '•';
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    right: -15px;
}

.contact-info {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-top: 20px;
    border: 1px solid #e9ecef;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.contact-info strong {
    color: var(--primary-bg);
    font-weight: 600;
}

.last-updated {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.last-updated p {
    color: #6c757d;
    font-style: italic;
    font-size: 0.95rem;
}

/* Footer Legal Links Styling */
.footer-legal {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-legal a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
}

.footer-legal a:hover {
    color: #00AEEF;
}

.footer-legal a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #00AEEF;
    transition: width 0.3s ease;
}

.footer-legal a:hover::after {
    width: 100%;
}

/* Responsive Design for Privacy and Terms Pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .privacy-section,
    .terms-section {
        padding: 25px;
        margin-bottom: 20px;
    }
    
    .privacy-section h2,
    .terms-section h2 {
        font-size: 1.5rem;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .privacy-page,
    .terms-page {
        padding-top: 100px;
    }
    
    .page-header {
        padding: 40px 0;
        margin-bottom: 40px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .privacy-content,
    .terms-content {
        padding: 0 15px 60px;
    }
    
    .privacy-section,
    .terms-section {
        padding: 20px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .feature-card,
    .service-card {
        padding: 25px 15px;
    }
}

/* ====== Floating WhatsApp Button ====== */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px; /* Will be on the right side */
    width: 60px;
    height: 60px;
    background-color: #25D366; /* Official WhatsApp Green */
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Footer Phone Numbers Styling */
.footer-phone {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.footer-phone a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.6;
}

.footer-phone a:hover {
    color: #00AEEF;
    text-shadow: 0 0 8px rgba(0, 174, 239, 0.4);
    transform: translateX(5px);
}

/* ====== Micro-CTA Buttons ====== */
.micro-cta-container {
    text-align: center;
    margin-top: 50px;
    padding: 0 2rem;
}

.micro-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #00AEEF 0%, #1A4B6E 100%);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 174, 239, 0.3);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.micro-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.micro-cta-button:hover::before {
    left: 100%;
}

.micro-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 174, 239, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.micro-cta-button svg {
    transition: transform 0.3s ease;
}

.micro-cta-button:hover svg {
    transform: translateX(5px);
}

/* Services section micro-CTA styling */
.services .micro-cta-button {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: var(--primary-bg);
    border: 2px solid rgba(26, 75, 110, 0.2);
}

.services .micro-cta-button:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-color: var(--accent-cyan);
    color: var(--primary-bg);
    box-shadow: 0 12px 35px rgba(26, 75, 110, 0.2);
}

/* Responsive design for micro-CTAs */
@media (max-width: 768px) {
    .micro-cta-button {
        font-size: 1rem;
        padding: 15px 25px;
        gap: 8px;
    }
    
    .micro-cta-container {
        margin-top: 30px;
        padding: 0 1rem;
    }
}