:root {
    --primary-color: #17a2b8;
    --secondary-color: #065ba7;
    --bg-light: #f8f9fa;
    --border-radius-custom: 20px;
    --border-radius-sm: 10px;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: #ffffff;
    color: #333333;
    overflow-x: hidden;
}

.logo-en-font{
     font-family: 'Pristina', cursive, sans-serif;
}

/* Custom Utilities & Roundings */
.rounded-custom {
    border-radius: var(--border-radius-custom) !important;
}

.rounded-custom-sm {
    border-radius: var(--border-radius-sm) !important;
}

.text-primary-color {
    color: var(--primary-color) !important;
}

.text-secondary-color {
    color: var(--secondary-color) !important;
}

/* Navigation */
.nav-logo {
    max-height: 40px;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.08) rotate(-3deg);
}

/* Buttons */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(23, 162, 184, 0.3);
}

/* Hero Section */
.hero-section {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: 90vh;
    background: url('../images/header.jpg'), linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
    background-size: cover;
    background-blend-mode: screen;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.floating-logo {
    max-width: 300px;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Features Section */
.feature-card {
    border-radius: var(--border-radius-custom);
    border: 1px solid #eef2f5;
    background: #ffffff;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(6, 91, 167, 0.1);
    border-color: var(--primary-color);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(23, 162, 184, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

/* Client Swiper */
.client-swiper .swiper-slide {
    background: #ffffff;
    transition: transform 0.3s ease;
}

/* Footer */
.footer-section {
     background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    /* background-color: var(--primary-color); */
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
}

#contact .contact-bg {
    background: url('../images/footer-bg.jpg'), linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));;
    background-size: cover;
    background-blend-mode: screen;
}