:root {
    --primary-blue: #0d4f8c;
    --secondary-blue: #1e6ba8;
    --light-blue: #e3f2fd;
    --accent-cyan: #00bcd4;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8fafb;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #0d4f8c 0%, #1e6ba8 100%);
    --shadow: 0 4px 20px rgba(13, 79, 140, 0.1);
    --shadow-lg: 0 10px 40px rgba(13, 79, 140, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Tahoma', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    direction: rtl;
    background-color: var(--white);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: all 0.6s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--primary-blue);
    text-decoration: none;
}

.navbar-brand img {
    height: 60px;
    width: auto;
    transition: height 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
    height: 50px;
}

.navbar-nav {
    align-items: center;
    gap: 1.5rem;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 600;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1.1rem;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-cyan);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-blue) !important;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    color: var(--text-dark) !important;
    font-weight: 600;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.dropdown-toggle::after {
    border: none;
    vertical-align: middle;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: 10px;
    padding: 0.5rem 0;
    background: var(--white);
    min-width: 200px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.navbar-collapse.show .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
    position: static;
    width: 100%;
    box-shadow: none;
    background: rgba(0, 188, 212, 0.05);
    margin: 0.5rem 0;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        transform: translateY(0);
        position: absolute;
        top: 100%;
        right: 0;
    }
    .dropdown-menu {
        display: none;
        opacity: 0;
        transform: translateY(10px);
    }
    .dropdown.show .dropdown-menu {
        position: absolute;
        top: 100%;
        right: 0;
    }
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-item:hover {
    background: var(--light-blue);
    color: var(--primary-blue);
    transform: translateX(5px);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
}

.hero .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(13, 79, 140, 0.6), rgba(0, 188, 212, 0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 2rem;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero p {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    background: var(--white);
    border: none;
    padding: 15px 35px;
    font-size: 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.4s ease;
    color: var(--primary-blue);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-hero:hover {
    background: var(--accent-cyan);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.4);
}

.btn-hero.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-hero.btn-outline:hover {
    background: var(--white);
    color: var(--primary-blue);
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-section {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.4s ease;
}

.about-image:hover img {
    transform: scale(1.02) rotate(1deg);
}

.numbers-section {
    background: var(--white);
    position: relative;
}

.numbers-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 188, 212, 0.1), transparent);
    transition: left 0.5s;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    display: block;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.counter {
    display: inline-block;
}

.services-section {
    background: var(--white);
    position: relative;
}

.service-card {
    background: var(--white);
    border: none;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    height: 100%;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.service-card:hover .service-icon::before {
    width: 100px;
    height: 100px;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--primary-blue);
}

.service-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-service {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-blue);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-service:hover::before {
    left: 0;
}

.btn-service:hover {
    color: var(--white);
    transform: translateY(-2px);
    border-color: var(--primary-blue);
}

.partners-section {
    background: var(--white);
    padding: 120px 0;
}

.partners-slider {
    overflow: hidden;
    margin-top: 4rem;
}

.swiper-slide {
    display: flex;
    justify-content: center;
}

.partner-card {
    background: var(--white);
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    width: 200px;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 188, 212, 0.1), transparent);
    transition: left 0.5s;
}

.partner-card:hover::before {
    left: 100%;
}

.partner-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

.partner-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 1rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.partner-card:hover .partner-logo {
    transform: scale(1.1) rotate(5deg);
}

.partner-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.news-section {
    background: var(--bg-light);
    padding: 120px 0;
}

.news-slider {
    margin-top: 4rem;
}

.news-card {
    background: var(--white);
    border: none;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 188, 212, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.news-card:hover::before {
    opacity: 1;
}

.news-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.news-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-cyan);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 2;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.news-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.news-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.news-card:hover .news-title {
    color: var(--primary-blue);
}

.news-excerpt {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-read-more {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.btn-read-more:hover {
    color: var(--accent-cyan);
    gap: 0.8rem;
    transform: translateX(-5px);
}

.contact-section {
    background: var(--white);
}

.contact-card {
    background: var(--white);
    border: none;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    height: 100%;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(0, 188, 212, 0.1), transparent);
    animation: rotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(360deg);
}

.contact-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.contact-info {
    color: var(--text-light);
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

.contact-info a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: var(--accent-cyan);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
}

.modal-content {
    background: var(--white);
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}


.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1000;
    cursor: pointer;
    font-size: 1.2rem;
}

.scroll-top.visible {
    opacity: 1;
    transform: scale(1);
}

.scroll-top:hover {
    background: var(--secondary-blue);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(13, 79, 140, 0.4);
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--gradient-primary);
    z-index: 1001;
    transition: width 0.1s ease;
}

/* Responsive */
@media (max-width: 992px) {
    .navbar {
        padding: 1rem;
    }

    .navbar-nav {
        gap: 0.5rem;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.95);
        text-align: right;
    }

    .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
        box-shadow: var(--shadow-lg);
        border-radius: 10px;
        max-height: 80vh;
        overflow-y: auto;
        transition: all 0.3s ease;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        background: rgba(0, 188, 212, 0.05);
        margin: 0.5rem 1rem;
        padding: 0.5rem 1rem;
        border-radius: 5px;
        display: none;
        opacity: 1;
        transform: none;
    }

    .dropdown.show .dropdown-menu {
        display: block;
    }

    .dropdown-item {
        padding: 0.5rem 2rem;
        font-size: 0.95rem;
    }

    .hero {
        min-height: 80vh;
        padding: 2rem 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .service-card, .partner-card {
        margin-bottom: 1rem;
    }

    .numbers-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .btn-hero {
        padding: 10px 20px;
        font-size: 1rem;
    }

    .navbar-brand img {
        height: 50px;
    }

    .navbar.scrolled .navbar-brand img {
        height: 45px;
    }

    .about-content {
        flex-direction: column;
        gap: 2rem;
    }

    .about-image img {
        height: auto;
        max-height: 300px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }
}
/* Footer Styles */
.main-footer {
background-color: blue ;
color: var(--white);
padding: 60px 0 20px;
}

.widgets-section {
margin-bottom: 30px;
}

.auto-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 15px;
}

.footer-row {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: space-between;
}

.footer-column {
flex: 1;
min-width: 200px;
margin-bottom: 30px;
}

.footer-widget {
padding: 20px;
}

.footer-logo {
display: flex;
align-items: center;
margin-bottom: 20px;
}

.footer-logo-icon img {
width: 50px;
height: 50px;
object-fit: contain;
}

.footer-logo-text h3 {
font-size: 1.5rem;
font-weight: 700;
margin: 0;
color: var(--white);
}

.footer-logo-text p {
font-size: 1rem;
margin: 0;
color: var(--light-blue);
}

.footer-widget p {
font-size: 0.95rem;
line-height: 1.6;
color: var(--light-blue);
}

.widget-title {
font-size: 1.2rem;
font-weight: 600;
color: var(--white);
margin-bottom: 20px;
position: relative;
}

.widget-title::after {
content: '';
position: absolute;
bottom: -5px;
right: 0;
width: 50px;
height: 2px;
background: var(--accent-cyan);
}

.user-links {
list-style: none;
padding: 0;
margin: 0;
}

.user-links li {
margin-bottom: 10px;
}

.user-links li a {
color: var(--light-blue);
text-decoration: none;
font-size: 0.95rem;
transition: color 0.3s ease;
}

.user-links li a:hover {
color: var(--accent-cyan);
}

.list-style-two {
list-style: none;
padding: 0;
margin: 0;
}

.list-style-two li {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 15px;
font-size: 0.95rem;
}

.list-style-two li i {
color: var(--accent-cyan);
font-size: 1.1rem;
}

.list-style-two li a {
color: var(--light-blue);
text-decoration: none;
transition: color 0.3s ease;
}

.list-style-two li a:hover {
color: var(--accent-cyan);
}

.social-icon-two {
list-style: none;
padding: 0;
margin-top: 20px;
}

.social-icon-two li {
display: inline-block;
margin-right: 10px;
}

.social-icon-two li a {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background: var(--white);
color: var(--primary-blue);
border-radius: 50%;
font-size: 1.2rem;
transition: all 0.3s ease;
}

.social-icon-two li a:hover {
background: var(--accent-cyan);
color: var(--white);
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(0, 188, 212, 0.4);
}

.footer-bottom {
border-top: 1px solid rgba(255, 255, 255, 0.1);
padding: 20px 0;
text-align: center;
}

.copyright-text {
font-size: 0.9rem;
color: var(--light-blue);
}

.copyright-text a {
color: var(--white);
text-decoration: none;
transition: color 0.3s ease;
}

.copyright-text a:hover {
color: var(--accent-cyan);
}

@media (max-width: 992px) {
.footer-row {
flex-direction: column;
align-items: center;
text-align: center;
}

.footer-column {
flex: 1 1 100%;
max-width: 100%;
}

.footer-logo {
justify-content: center;
}

.social-icon-two {
justify-content: center;
}
}

@media (max-width: 576px) {
.footer-column {
padding: 15px;
}

.widget-title {
font-size: 1.1rem;
}

.social-icon-two li a {
width: 35px;
height: 35px;
font-size: 1rem;
}
}