/* ===== GLOBAL STYLES ===== */
:root {
    --primary-color: #2e308c;
    --secondary-color: #69ed58;
    --accent-color: #66ba5b;
    --light-gray: #F2F2F2;
    --dark-gray: #333333;
    --white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, #0046a7 0%, #0046a7 100%);
    --gradient-secondary: linear-gradient(135deg, #0046a7 0%, #37a728 100%);
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 5px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 10px 30px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'RB-Regular', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'RB-Bold', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== NAVIGATION ===== */
.navbar {
    background: rgba(0, 51, 102, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    padding: 1rem 0;
}

.navbar.scrolled {
    background: var(--primary-color);
    box-shadow: var(--shadow-medium);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-family: 'Cairo', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white) !important;
    text-decoration: none;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.dropdown-menu {
    background: var(--white);
    border: none;
    box-shadow: var(--shadow-medium);
    border-radius: 8px;
}

.dropdown-item {
    color: var(--dark-gray);
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--light-gray);
    color: var(--primary-color);
}

/* ===== HERO SLIDER SECTION ===== */
.hero-slider-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
}



.hero-section {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.hero-stats .stat-item {
    text-align: center;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 120px;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-stats .stat-number {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.hero-stats .stat-plus {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
    margin-left: 2px;
}

.hero-stats .stat-label {
    display: block;
    font-size: 14px;
    margin-top: 5px;
    opacity: 0.9;
}

/* Hero Features */
.hero-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
}

.hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInLeft 0.8s ease-out 0.4s both;
}

.hero-features .feature-item i {
    font-size: 20px;
    color: var(--secondary-color);
    width: 25px;
    text-align: center;
}

.hero-features .feature-item span {
    font-weight: 500;
}

/* Hero Tech Stats */
.hero-tech-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.tech-stat {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 200px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.tech-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.tech-info {
    display: flex;
    flex-direction: column;
}

.tech-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
}

.tech-label {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 2px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title .text-primary {
    color: var(--secondary-color) !important;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
}

.hero-buttons {
    margin-top: 2rem;
}

.btn-primary {
    background: var(--gradient-secondary);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-outline-light {
    border: 2px solid var(--white);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-down {
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    text-decoration: none;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 4;
    pointer-events: none;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    font-size: 18px;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.slider-btn:active {
    transform: scale(0.95);
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 4;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: var(--secondary-color);
    border-color: white;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Smooth transitions for all interactive elements */
.hero-badge,
.stat-item,
.feature-item,
.tech-stat {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-badge:hover,
.stat-item:hover,
.feature-item:hover,
.tech-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: var(--light-gray);
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #fff;
    margin: 0;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 5rem 0;
    background: var(--white);
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    height: 100%;
    border-top: 4px solid var(--primary-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-top-color: var(--secondary-color);
}

.service-icon {
    position: relative;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: var(--transition);
    overflow: hidden;
    border-radius: 10px;
}

.service-icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    opacity: 0;
    transition: all 0.3s ease;
    color: white;
    font-size: 3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.service-icon i img {
    position: relative;
    z-index: 4;
    filter: none !important;
    opacity: 1 !important;
}

.service-icon img {
    transition: all 0.3s ease;
    border-radius: 10px;
}

.service-card:hover .service-icon i {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.service-card:hover .service-icon img {
    filter: brightness(0.4);
    transform: scale(1.05);
}

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

.service-card h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-card img {
    height: 250px;
    object-fit: cover;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: #666;
}

.service-features li i {
    color: var(--accent-color);
    margin-left: 0.5rem;
}

/* ===== BRANCHES SECTION ===== */
.branches-section {
    background: var(--light-gray);
    padding: 5rem 0;
}

.map-container {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.map-container .gm-style {
    border-radius: 15px;
}

.map-container .gm-style-iw {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    text-align: center;
    color: #999;
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.branches-list {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    height: 500px;
    overflow-y: auto;
}

.branches-list h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.branch-item {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 8px;
    margin: 0 -1rem;
    padding: 1rem;
}

.branch-item:last-child {
    border-bottom: none;
}

.branch-item:hover {
    background: var(--light-gray);
    transform: translateX(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.branch-item:active {
    transform: translateX(5px) scale(0.98);
    background: #e3f2fd;
}

.branch-item h5 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.branch-item h5 i {
    color: var(--accent-color);
    margin-left: 0.5rem;
}

.branch-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 5rem 0;
    background: var(--white);
}

.about-image img {
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

.about-content {
    padding-right: 2rem;
}

.about-content .section-title {
    text-align: right;
}

.about-content .section-title::after {
    left: 0;
    transform: none;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
    transition: var(--transition);
}

.feature-item:hover {
    background: var(--primary-color);
    box-shadow: var(--shadow-light);
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-left: 1rem;
    margin-top: 0.5rem;
}

.feature-item h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #666;
    margin: 0;
}

/* ===== NEWS SECTION ===== */
.news-section {
    background: var(--light-gray);
    padding: 5rem 0;
}

.news-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    height: 100%;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.news-image {
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 1.5rem;
}

.news-date {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.news-content h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.news-content p {
    color: #666;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--secondary-color);
}

.read-more i {
    margin-right: 0.5rem;
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(-3px);
}

/* ===== PARTNERS SECTION ===== */
/* Partners Section - Multi-item Carousel */
.partners-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    padding: 3rem 0;
}

.partners-section::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

/* Carousel Container */
.partners-carousel-container {
    position: relative;
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.partners-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 2rem;
}

.carousel-slide {
    flex: 0 0 calc(33.333% - 1.33rem);
    min-width: 0;
}

/* Partner Cards */
.partner-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

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

.partner-card:hover::before {
    left: 100%;
}

.partner-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 1);
}

.partner-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.partner-logo::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.partner-card:hover .partner-logo::after {
    animation: logoShine 0.8s ease-in-out;
}

.partner-logo i {
    font-size: 2.5rem;
    color: white;
    z-index: 1;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.partner-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-name {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.partner-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-description {
    color: #444;
}

/* Navigation Buttons */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.carousel-nav:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.carousel-nav i {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.carousel-nav:hover i {
    color: white;
}

.carousel-prev {
    right: -30px;
}

.carousel-next {
    left: -30px;
}

/* Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.indicator:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

/* Animation Keyframes */
@keyframes logoShine {
    0% {
        opacity: 0;
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Responsive Design for Partners Carousel */
@media (max-width: 992px) {
    .carousel-slide {
        flex: 0 0 calc(50% - 1rem);
    }

    .partners-carousel {
        padding: 1.5rem;
    }

    .partner-card {
        height: 260px;
        padding: 2rem 1.5rem;
    }

    .partner-logo {
        width: 70px;
        height: 70px;
    }

    .partner-logo i {
        font-size: 2.2rem;
    }

    .partner-name {
        font-size: 1.1rem;
    }

    .partner-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .carousel-slide {
        flex: 0 0 100%;
    }

    .partners-carousel-container {
        padding: 1.5rem 0;
    }

    .partners-carousel {
        padding: 1.5rem 1rem;
        border-radius: 15px;
    }

    .partner-card {
        height: 240px;
        padding: 1.5rem;
    }

    .partner-logo {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .partner-logo i {
        font-size: 2rem;
    }

    .partner-name {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .partner-description {
        font-size: 0.85rem;
    }

    .carousel-nav {
        width: 50px;
        height: 50px;
    }

    .carousel-nav i {
        font-size: 1rem;
    }

    .carousel-prev {
        right: -25px;
    }

    .carousel-next {
        left: -25px;
    }
}

@media (max-width: 480px) {
    .partners-carousel-container {
        padding: 1rem 0;
        margin: 0 1rem;
    }

    .partners-carousel {
        padding: 1rem;
        border-radius: 12px;
    }

    .partner-card {
        height: 220px;
        padding: 1.2rem;
    }

    .partner-logo {
        width: 50px;
        height: 50px;
        margin-bottom: 0.8rem;
    }

    .partner-logo i {
        font-size: 1.8rem;
    }

    .partner-name {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }

    .partner-description {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .carousel-nav {
        width: 45px;
        height: 45px;
        display: none;
        /* Hide navigation on very small screens */
    }

    .carousel-indicators {
        margin-top: 1.5rem;
        gap: 0.8rem;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* Legacy styles for backward compatibility */
.partner-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    transition: var(--transition);
    opacity: 0.7;
}

.partner-item:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.partner-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.partner-item span {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: var(--light-gray);
    padding: 5rem 0;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
}

.form-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.form-control {
    border: 2px solid #eee;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(102, 178, 255, 0.25);
}

.contact-info {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    height: fit-content;
}

.contact-info h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
    transition: var(--transition);
}

.contact-item:hover {
    background: var(--primary-color);
    color: var(--white);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-left: 1rem;
    margin-top: 0.2rem;
}

.contact-item:hover i {
    color: var(--secondary-color);
}

.contact-item h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-item:hover h5 {
    color: var(--white);
}

.contact-item p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.contact-item:hover p {
    color: var(--light-gray);
}

.social-links h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-left: 0.5rem;
    transition: var(--transition);
    text-decoration: none;

}

.social-link:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

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

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

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

.footer-brand h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-text {
    flex: 1;
}

.footer-logo {
    flex-shrink: 0;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
}

@media (max-width: 768px) {
    .footer-brand {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-text {
        order: 2;
    }

    .footer-logo {
        order: 1;
    }

    .footer-logo img {
        max-width: 120px;
    }
}

.footer h5 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), transparent);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

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

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--secondary-color);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-right: 10px;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    opacity: 1;
    left: -15px;
}

.footer-social {
    display: flex;
    gap: 0.5rem;
}

.footer-social .social-link {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 0.9rem;
    border: 1px solid #25D366;
}

.footer-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.5), transparent);
    margin: 3rem 0 2rem;
    position: relative;
}

.footer-divider::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    border-radius: 2px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 25px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-block;
    position: relative;
    overflow: hidden;
}

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

.footer-copyright:hover::before {
    left: 100%;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .about-content {
        padding-right: 0;
        margin-top: 2rem;
    }

    .about-content .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2rem;
    }

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

    .branches-list {
        margin-top: 2rem;
        height: auto;
    }

    .contact-info {
        margin-top: 2rem;
    }

    .whatsapp-btn {
        bottom: 80px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .whatsapp-dropdown {
        bottom: 145px;
        right: 20px;
        left: 20px;
        min-width: auto;
        max-width: calc(100vw - 40px);
    }

    /* Mobile Slider Adjustments */
    .hero-stats {
        gap: 15px;
        justify-content: center;
    }

    .stat-item {
        min-width: 100px;
        padding: 15px;
    }

    .hero-tech-stats {
        gap: 15px;
        justify-content: center;
    }

    .tech-stat {
        min-width: 180px;
        padding: 15px;
    }

    .tech-number {
        font-size: 1.5rem;
    }

    .slider-controls {
        padding: 0 15px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .slider-indicators {
        bottom: 60px;
        gap: 10px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }

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

    .hero-buttons .btn {
        display: block;
        margin: 0.5rem 0;
        width: 100%;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .partner-logos {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

/* ===== UTILITY CLASSES ===== */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background: var(--gradient-primary) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

/* ===== SMOOTH SCROLLING ===== */
html {
    scroll-behavior: smooth;
}

/* ===== LOADING ANIMATION ===== */
.loading {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.loading-delay-1 {
    animation-delay: 0.1s;
}

.loading-delay-2 {
    animation-delay: 0.2s;
}

.loading-delay-3 {
    animation-delay: 0.3s;
}


/* ===== PAGE HEADER STYLES ===== */
.page-header {
    background: var(--gradient-primary);
    padding: 120px 0 80px;
    color: var(--white);
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--secondary-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--white);
}

/* ===== SERVICES PAGE STYLES ===== */
.services-overview {
    background: var(--light-gray);
}

.feature-box {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-box h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-box p {
    color: #666;
    margin: 0;
}

.detailed-services {
    background: var(--white);
}

.service-detail {
    padding: 3rem 0;
    border-bottom: 1px solid #eee;
}

.service-detail:last-child {
    border-bottom: none;
}

.service-icon-large {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-content h3 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.service-content .lead {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.service-features-detailed {
    margin: 2rem 0;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    color: #666;
    font-size: 1rem;
}

.feature-list li i {
    color: var(--accent-color);
    margin-left: 0.5rem;
    font-size: 0.9rem;
}

.additional-services {
    background: var(--light-gray);
}

.additional-service-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    height: 100%;
    text-align: center;
}

.additional-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.additional-service-card .service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.additional-service-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.additional-service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-list {
    list-style: none;
    padding: 0;
    text-align: right;
}

.service-list li {
    padding: 0.3rem 0;
    color: #666;
    font-size: 0.9rem;
    position: relative;
    padding-right: 1rem;
}

.service-list li::before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    right: 0;
}

/* ===== PRICING STYLES ===== */
.pricing-section {
    background: var(--white);
}

.pricing-card {
    background: var(--white);
    border: 2px solid #eee;
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--secondary-color);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.pricing-header {
    text-align: center;
    padding: 2rem 1.5rem 1rem;
    background: var(--light-gray);
}

.pricing-card.featured .pricing-header {
    background: var(--primary-color);
    color: var(--white);
    padding-top: 3rem;
}

.pricing-header h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.pricing-card.featured .pricing-header h4 {
    color: var(--white);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.2rem;
    color: #666;
    margin-left: 0.2rem;
}

.pricing-card.featured .currency {
    color: var(--secondary-color);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-card.featured .amount {
    color: var(--white);
}

.period {
    font-size: 1rem;
    color: #666;
    margin-right: 0.2rem;
}

.pricing-card.featured .period {
    color: var(--secondary-color);
}

.pricing-features {
    padding: 1.5rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 0.7rem 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i.fa-check {
    color: var(--accent-color);
    margin-left: 0.5rem;
}

.pricing-features li i.fa-times {
    color: #ccc;
    margin-left: 0.5rem;
}

.pricing-footer {
    padding: 1.5rem;
    text-align: center;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--gradient-primary);
    color: var(--white);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    margin-top: 2rem;
}

/* ===== BRANCHES PAGE STYLES ===== */
.branches-grid {
    background: var(--white);
}

.branch-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    height: 100%;
}

.branch-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.branch-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.branch-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.branch-card:hover .branch-image img {
    transform: scale(1.05);
}

.branch-flag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--white);
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    font-size: 0.8rem;
    box-shadow: var(--shadow-light);
}

.branch-content {
    padding: 1.5rem;
}

.branch-title {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.branch-subtitle {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.branch-info {
    margin-bottom: 1rem;
}

.branch-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.branch-info-item i {
    color: var(--accent-color);
    margin-left: 0.5rem;
    width: 15px;
}

.branch-services {
    margin-top: 1rem;
}

.branch-services h6 {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.service-tag {
    background: var(--light-gray);
    color: var(--primary-color);
    padding: 0.2rem 0.6rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 500;
}

/* ===== ABOUT PAGE STYLES ===== */
.about-hero {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 5rem 0;
}

.about-stats {
    background: var(--light-gray);
}

.timeline-section {
    background: var(--white);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 3px;
    background: var(--primary-color);
    top: 0;
    bottom: 0;
    right: 50%;
    margin-right: -1.5px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--white);
    border: 3px solid var(--primary-color);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item.left {
    right: 50%;
}

.timeline-item.right {
    left: 50%;
}

.timeline-item.right::after {
    left: -10px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: var(--white);
    position: relative;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
}

.timeline-year {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.team-section {
    background: var(--light-gray);
}

.team-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.team-image {
    height: 250px;
    overflow: hidden;
}

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

.team-content {
    padding: 1.5rem;
}

.team-name {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.team-position {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.team-bio {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: var(--light-gray);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    text-decoration: none;
}

.team-social a:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* ===== RESPONSIVE DESIGN FOR NEW PAGES ===== */
@media (max-width: 992px) {
    .page-title {
        font-size: 2.5rem;
    }

    .service-content {
        margin-top: 2rem;
    }

    .timeline::after {
        right: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-right: 70px;
        padding-left: 25px;
    }

    .timeline-item.right {
        left: 0%;
    }

    .timeline-item::after {
        right: 21px;
    }

    .timeline-item.right::after {
        left: 21px;
    }
}

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

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

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 100px 0 60px;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .cta-buttons .btn {
        display: block;
        margin: 0.5rem 0;
        width: 100%;
    }

    .service-icon-large {
        font-size: 3rem;
    }

    .service-content h3 {
        font-size: 1.8rem;
    }
}


/* ===== INTERACTIVE MAP STYLES ===== */
.world-map-section {
    background: var(--light-gray);
}

.interactive-map {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

.map-container {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.world-map-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-align: center;
}

.world-map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.world-map-placeholder h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.world-map-placeholder p {
    color: #666;
    margin: 0;
}

.map-point {
    position: absolute;
    cursor: pointer;
    z-index: 10;
}

.point-marker {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
}

.point-marker:hover {
    transform: scale(1.2);
}

.point-marker i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 0.2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.point-label {
    background: var(--white);
    color: var(--primary-color);
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    box-shadow: var(--shadow-light);
    white-space: nowrap;
    opacity: 0;
    transition: var(--transition);
}

.point-marker:hover .point-label {
    opacity: 1;
}

.branch-stats {
    background: var(--white);
}

/* ===== RESPONSIVE MAP ===== */
@media (max-width: 768px) {
    .map-container {
        height: 350px;
    }

    .point-marker i {
        font-size: 1.2rem;
    }

    .point-label {
        font-size: 0.6rem;
        padding: 0.1rem 0.3rem;
    }

    .world-map-placeholder i {
        font-size: 3rem;
    }

    .world-map-placeholder h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .map-container {
        height: 300px;
    }

    .point-marker i {
        font-size: 1rem;
    }

    .world-map-placeholder i {
        font-size: 2.5rem;
    }

    .world-map-placeholder h4 {
        font-size: 1rem;
    }

    .world-map-placeholder p {
        font-size: 0.9rem;
    }
}


/* ===== ABOUT PAGE SPECIFIC STYLES ===== */
.vision-mission {
    background: var(--white);
}

.vision-card,
.mission-card {
    background: var(--light-gray);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    height: 100%;
}

.vision-card:hover,
.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.vision-icon,
.mission-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.vision-card h3,
.mission-card h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.vision-card p,
.mission-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.vision-points,
.mission-points {
    list-style: none;
    padding: 0;
}

.vision-points li,
.mission-points li {
    padding: 0.5rem 0;
    color: #666;
}

.vision-points li i,
.mission-points li i {
    color: var(--accent-color);
    margin-left: 0.5rem;
}

.values-section {
    background: var(--light-gray);
}

.value-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    text-align: center;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.value-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.value-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-card p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.certifications-section {
    background: var(--white);
}

.certification-card {
    background: var(--light-gray);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    text-align: center;
    height: 100%;
}

.certification-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    background: var(--white);
}

.cert-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.certification-card h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.certification-card p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

/* ===== RESPONSIVE DESIGN FOR ABOUT PAGE ===== */
@media (max-width: 768px) {

    .vision-card,
    .mission-card {
        margin-bottom: 2rem;
    }

    .vision-icon,
    .mission-icon {
        font-size: 3rem;
    }

    .vision-card h3,
    .mission-card h3 {
        font-size: 1.5rem;
    }

    .value-icon {
        font-size: 2.5rem;
    }

    .cert-icon {
        font-size: 2.5rem;
    }
}


/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-dropdown {
    position: fixed;
    bottom: 160px;
    right: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    min-width: 280px;
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #e0e0e0;
}

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

.whatsapp-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    color: var(--text-color);
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
}

.whatsapp-option:last-child {
    border-bottom: none;
}

.whatsapp-option .flag {
    font-size: 18px;
}

.whatsapp-option .office-name {
    font-weight: 600;
    flex: 1;
}

.whatsapp-option .office-number {
    color: #128C7E;
    direction: ltr;
}

.whatsapp-option:hover {
    background: #f9f9f9;
}

.whatsapp-dropdown::-webkit-scrollbar {
    width: 6px;
}

.whatsapp-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.whatsapp-dropdown::-webkit-scrollbar-thumb {
    background: #25D366;
    border-radius: 3px;
}

.whatsapp-dropdown::-webkit-scrollbar-thumb:hover {
    background: #128C7E;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    bottom: 160px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    overflow: hidden;
}

.back-to-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.back-to-top::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color), var(--primary-color), var(--accent-color));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    animation: rotate 3s linear infinite;
    transition: opacity 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    animation: scrollPulse 2s infinite, floatingButton 3s ease-in-out infinite;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(30, 64, 175, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
    animation: none;
}

.back-to-top:hover::before {
    opacity: 1;
}

.back-to-top:hover::after {
    opacity: 1;
}

.back-to-top:active {
    transform: translateY(-3px) scale(1.05);
    transition: all 0.1s ease;
}

.back-to-top i {
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.back-to-top:hover i {
    transform: translateY(-2px);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Animations for back-to-top button */
@keyframes scrollPulse {
    0% {
        box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3), 0 0 0 0 rgba(30, 64, 175, 0.7);
    }
    70% {
        box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3), 0 0 0 10px rgba(30, 64, 175, 0);
    }
    100% {
        box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3), 0 0 0 0 rgba(30, 64, 175, 0);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

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

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .back-to-top {
        width: 50px;
        height: 50px;
        bottom: 145px;
        left: 20px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 140px;
        left: 15px;
        font-size: 1rem;
    }
}

/* ===== NOTIFICATION STYLES ===== */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-medium);
    z-index: 9999;
    min-width: 300px;
    display: flex;
    align-items: center;
    animation: slideInRight 0.3s ease;
}

.notification.success {
    border-right: 4px solid var(--accent-color);
    color: var(--accent-color);
}

.notification.error {
    border-right: 4px solid #e74c3c;
    color: #e74c3c;
}

.notification-close {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    margin-right: auto;
    padding: 0.2rem;
    border-radius: 50%;
    transition: var(--transition);
}

.notification-close:hover {
    background: #f0f0f0;
    color: #333;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

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

/* ===== LOADING ANIMATIONS ===== */
.loading {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

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

/* ===== SKIP LINK ===== */
.skip-link {
    position: absolute;
    top: -40px;
    right: 6px;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    text-decoration: none;
    z-index: 10000;
    border-radius: 4px;
    transition: var(--transition);
}

.skip-link:focus {
    top: 6px;
    color: var(--white);
}

/* ===== KEYBOARD NAVIGATION ===== */
.keyboard-navigation *:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* ===== ENHANCED INTERACTIVE MAP ===== */
.world-map-placeholder {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 50%, #90caf9 100%);
    position: relative;
    overflow: hidden;
}

.world-map-placeholder::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="%23ffffff" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.map-point {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

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

.map-point:hover {
    animation: none;
    transform: scale(1.2) !important;
}

/* ===== ENHANCED FORM STYLES ===== */
.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

.form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

/* ===== ENHANCED BUTTON STYLES ===== */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* ===== ENHANCED CARD HOVER EFFECTS ===== */
.service-card:hover,
.branch-card:hover,
.team-card:hover,
.news-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* ===== ENHANCED STATS ANIMATION ===== */
.stat-item {
    position: relative;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 0;
    background: var(--accent-color);
    transform: translateX(-50%);
    transition: height 0.6s ease;
}

.stat-item:hover::before {
    height: 100%;
}

/* ===== ENHANCED TIMELINE ===== */
.timeline-item:hover .timeline-content {
    transform: translateX(10px);
    box-shadow: var(--shadow-heavy);
}

/* ===== RESPONSIVE ENHANCEMENTS ===== */
@media (max-width: 768px) {
    .notification {
        right: 10px;
        left: 10px;
        min-width: auto;
    }

    .back-to-top {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
    }

    .map-point {
        animation: none;
    }
}

@media (max-width: 576px) {
    .back-to-top {
        bottom: 15px;
        left: 15px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ===== PRINT STYLES ===== */
@media print {

    .navbar,
    .back-to-top,
    .notification,
    .footer-social {
        display: none !important;
    }

    .hero-section {
        background: none !important;
        color: #000 !important;
    }

    .page-header {
        background: none !important;
        color: #000 !important;
    }
}

/* ===== HIGH CONTRAST MODE ===== */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000;
        --secondary-color: #fff;
        --accent-color: #ff0000;
        --text-color: #000;
        --light-gray: #fff;
        --white: #fff;
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .map-point {
        animation: none;
    }
}

/* custom css */
.text_ltr {
    direction: ltr !important;
}

.gallery-image img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

/* خريطة الفروع العالمية */
.world-map-real {
    height: 500px;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.map-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-width: 300px;
}

.map-info h4 {
    color: #1e3a8a;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.map-info p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

/* تخصيص أيقونات الخريطة */
.custom-marker {
    background: #1e3a8a;
    border: 3px solid #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.leaflet-popup-content-wrapper {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.leaflet-popup-content {
    margin: 15px;
    line-height: 1.6;
}

.popup-title {
    color: #1e3a8a;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.popup-address {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.popup-services {
    color: #059669;
    font-size: 0.85rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .map-overlay {
        position: relative;
        top: 0;
        right: 0;
        margin-top: 15px;
        max-width: 100%;
    }

    .world-map-real {
        height: 400px;
    }
}

/* تحسين قسم الخدمات المتخصصة */
.specialized-services {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.specialized-services::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
    z-index: 1;
}

.specialized-services .container {
    position: relative;
    z-index: 2;
}

.specialized-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.specialized-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e3a8a, #3b82f6, #06b6d4);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.specialized-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 10px 25px rgba(0, 0, 0, 0.1);
}

.specialized-card:hover::before {
    transform: scaleX(1);
}

.specialized-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
    position: relative;
}

.specialized-header i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-left: 15px;
    padding: 15px;
    background-color: rgba(30, 58, 138, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.specialized-card:hover .specialized-header i {
    transform: scale(1.1) rotate(5deg);
    background-color: rgba(30, 58, 138, 0.2);
}

.specialized-header h4 {
    color: #1e3a8a;
    font-weight: 700;
    font-size: 1.4rem;
    margin: 0;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.specialized-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.specialized-content p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.specialized-locations {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.location-tag {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.location-tag::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.5s ease;
}

.location-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

.location-tag:hover::before {
    left: 100%;
}

/* تحسينات للجوال */
@media (max-width: 768px) {
    .specialized-card {
        padding: 20px;
        margin-bottom: 20px;
    }

    .specialized-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .specialized-header i {
        margin-left: 0;
        margin-bottom: 10px;
    }

    .specialized-header h4 {
        font-size: 1.2rem;
    }

    .specialized-content p {
        font-size: 0.9rem;
        text-align: center;
    }

    .specialized-locations {
        justify-content: center;
    }

    .location-tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

/* تأثيرات إضافية للتفاعل */
.specialized-card {
    cursor: pointer;
}

.specialized-card:active {
    transform: translateY(-5px) scale(0.98);
}

/* تحسين العناوين */
.specialized-services .section-title {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    position: relative;
}

.specialized-services .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1e3a8a, #3b82f6);
    border-radius: 2px;
}

.specialized-services .section-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    margin-top: 20px;
}

/* تحسين قسم معلومات الاتصال */
.contact-info {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.contact-info::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="contact-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-pattern)"/></svg>') repeat;
    z-index: 1;
}

.contact-info .container {
    position: relative;
    z-index: 2;
}

.contact-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.6s ease;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #06b6d4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6, #06b6d4, #10b981);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-card:hover .contact-icon::before {
    opacity: 1;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.contact-icon i {
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotateY(180deg);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
}

.contact-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.contact-card h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #1e3a8a, #3b82f6, #06b6d4);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.contact-card:hover h4::after {
    width: 60px;
}

.contact-card p {
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
    transition: all 0.3s ease;
}

.contact-card:hover p {
    color: #475569;
    transform: translateY(-2px);
}

.contact-card a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.contact-card a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #1e3a8a, #3b82f6);
    transition: width 0.3s ease;
}

.contact-card a:hover {
    color: #1e3a8a;
    transform: translateY(-1px);
}

.contact-card a:hover::before {
    width: 100%;
}

/* تأثيرات خاصة لكل بطاقة */
.contact-card:nth-child(1) .contact-icon {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f97316 100%);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.contact-card:nth-child(2) .contact-icon {
    background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.contact-card:nth-child(3) .contact-icon {
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 50%, #a78bfa 100%);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

/* تحسينات للجوال */
@media (max-width: 768px) {
    .contact-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .contact-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .contact-icon i {
        font-size: 1.8rem;
    }

    .contact-card h4 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .contact-card p {
        font-size: 0.95rem;
    }

    .contact-card:hover {
        transform: translateY(-5px) scale(1.01);
    }
}

/* تأثيرات الدخول */
.contact-card {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease forwards;
}

.contact-card:nth-child(1) {
    animation-delay: 0.1s;
}

.contact-card:nth-child(2) {
    animation-delay: 0.2s;
}

.contact-card:nth-child(3) {
    animation-delay: 0.3s;
}

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

/* تأثير النبض للأيقونات */
.contact-icon {
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
    }

    50% {
        box-shadow: 0 10px 25px rgba(59, 130, 246, 0.5), 0 0 0 10px rgba(59, 130, 246, 0.1);
    }
}

.contact-card:nth-child(1) .contact-icon {
    animation: pulseRed 3s ease-in-out infinite;
}

.contact-card:nth-child(2) .contact-icon {
    animation: pulseGreen 3s ease-in-out infinite;
}

.contact-card:nth-child(3) .contact-icon {
    animation: pulsePurple 3s ease-in-out infinite;
}

@keyframes pulseRed {

    0%,
    100% {
        box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
    }

    50% {
        box-shadow: 0 10px 25px rgba(220, 38, 38, 0.5), 0 0 0 10px rgba(220, 38, 38, 0.1);
    }
}

@keyframes pulseGreen {

    0%,
    100% {
        box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
    }

    50% {
        box-shadow: 0 10px 25px rgba(16, 185, 129, 0.5), 0 0 0 10px rgba(16, 185, 129, 0.1);
    }
}

@keyframes pulsePurple {

    0%,
    100% {
        box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
    }

    50% {
        box-shadow: 0 10px 25px rgba(139, 92, 246, 0.5), 0 0 0 10px rgba(139, 92, 246, 0.1);
    }
}

/* تحسين قسم ساعات العمل */
.working-hours {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #06b6d4 100%);
    position: relative;
    overflow: hidden;
}

.working-hours::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="hours-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23hours-pattern)"/></svg>') repeat;
    z-index: 1;
}

.working-hours .container {
    position: relative;
    z-index: 2;
}

.working-hours .section-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.working-hours .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ffffff, #f8fafc, #ffffff);
    border-radius: 2px;
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% {
        width: 80px;
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }

    100% {
        width: 120px;
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    }
}

.working-hours .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.working-hours-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.working-hours-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.8s ease;
}

.working-hours-card:hover::before {
    left: 100%;
}

.working-hours-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.25);
}

.hours-item {
    display: flex;
    align-items: center;
    padding: 30px 20px;
    border-radius: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.hours-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #1e3a8a, #3b82f6, #06b6d4);
    transition: width 0.4s ease;
}

.hours-item:hover::before {
    width: 100%;
    opacity: 0.1;
}

.hours-item:hover {
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.hours-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #06b6d4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 25px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.hours-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6, #06b6d4, #10b981);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hours-item:hover .hours-icon::before {
    opacity: 1;
    animation: rotateGlow 2s linear infinite;
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hours-icon i {
    font-size: 1.8rem;
    color: white;
    transition: all 0.4s ease;
}

.hours-item:hover .hours-icon {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
}

.hours-content {
    flex: 1;
}

.hours-content h5 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.hours-content h5::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #1e3a8a, #3b82f6, #06b6d4);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.hours-item:hover .hours-content h5::after {
    width: 50px;
}

.hours-content p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    transition: all 0.3s ease;
}

.hours-item:hover .hours-content p {
    color: #475569;
    transform: translateY(-2px);
}

/* تأثيرات خاصة لكل عنصر */
.hours-item:nth-child(1) .hours-icon {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f97316 100%);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.hours-item:nth-child(2) .hours-icon {
    background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

/* تحسينات للجوال */
@media (max-width: 768px) {
    .working-hours-card {
        padding: 30px 20px;
    }

    .hours-item {
        flex-direction: column;
        text-align: center;
        padding: 25px 15px;
    }

    .hours-icon {
        margin-left: 0;
        margin-bottom: 20px;
        width: 60px;
        height: 60px;
    }

    .hours-icon i {
        font-size: 1.5rem;
    }

    .hours-content h5 {
        font-size: 1.2rem;
        text-align: center;
    }

    .hours-content p {
        font-size: 0.95rem;
        text-align: center;
    }

    .hours-item:hover {
        transform: translateY(-5px) scale(1.01);
    }

    .working-hours .section-title {
        font-size: 2rem;
    }
}

/* تأثيرات الدخول */
.working-hours-card {
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUpCard 0.8s ease forwards;
    animation-delay: 0.3s;
}

.hours-item:nth-child(1) {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.6s ease forwards;
    animation-delay: 0.5s;
}

.hours-item:nth-child(2) {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.6s ease forwards;
    animation-delay: 0.7s;
}

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

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* تأثير النبض للأيقونات */
.hours-icon {
    animation: pulseHours 3s ease-in-out infinite;
}

@keyframes pulseHours {

    0%,
    100% {
        box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
    }

    50% {
        box-shadow: 0 10px 25px rgba(59, 130, 246, 0.5), 0 0 0 15px rgba(59, 130, 246, 0.1);
    }
}

.hours-item:nth-child(1) .hours-icon {
    animation: pulseRed2 3s ease-in-out infinite;
}

.hours-item:nth-child(2) .hours-icon {
    animation: pulseGreen2 3s ease-in-out infinite;
}

@keyframes pulseRed2 {

    0%,
    100% {
        box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
    }

    50% {
        box-shadow: 0 10px 25px rgba(220, 38, 38, 0.5), 0 0 0 15px rgba(220, 38, 38, 0.1);
    }
}

@keyframes pulseGreen2 {

    0%,
    100% {
        box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
    }

    50% {
        box-shadow: 0 10px 25px rgba(16, 185, 129, 0.5), 0 0 0 15px rgba(16, 185, 129, 0.1);
    }
}

/* Technology Section Styles */
.technology-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.technology-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.05) 0%, transparent 70%);
    animation: techFloat 20s ease-in-out infinite;
}

.tech-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 123, 255, 0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.tech-card:hover::before {
    left: 100%;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.15);
    border-color: var(--primary-color);
}

.tech-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.tech-icon i {
    font-size: 2.5rem;
    color: white;
    transition: all 0.3s ease;
}

.tech-card:hover .tech-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.3);
}

.tech-card h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
}

.tech-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.tech-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.tech-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tech-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* Partnerships Section Styles */
.partnerships-section {
    background: #f8f9fa;
    position: relative;
}

.partner-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.partner-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.partner-card:hover::after {
    transform: scaleX(1);
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.partner-logo {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.4s ease;
}

.partner-logo i {
    font-size: 2rem;
    color: white;
}

.partner-card:hover .partner-logo {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

.partner-card h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.partner-card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.partner-count {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Sustainability Section Styles */
.sustainability-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.sustainability-content {
    padding: 2rem 0;
}

.sustainability-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.sustain-stat {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.sustain-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.sustain-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}

.sustainability-initiatives {
    margin-top: 2rem;
}

.initiative-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.initiative-item:hover {
    background: rgba(40, 167, 69, 0.15);
    transform: translateX(10px);
}

.initiative-item i {
    font-size: 1.5rem;
    color: #28a745;
    min-width: 30px;
}

.initiative-item span {
    color: #333;
    font-weight: 500;
}

.sustainability-image {
    position: relative;
}

.green-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    animation: greenPulse 2s ease-in-out infinite;
}

.green-badge i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.green-badge span {
    font-size: 0.8rem;
    font-weight: 600;
}

/* Animation Keyframes */
@keyframes techFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes greenPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(40, 167, 69, 0.4);
    }
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .tech-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .tech-icon {
        width: 70px;
        height: 70px;
    }
    
    .tech-icon i {
        font-size: 2rem;
    }
    
    .sustainability-stats {
        gap: 1rem;
    }
    
    .sustain-number {
        font-size: 2.5rem;
    }
    
    .partner-card {
        margin-bottom: 2rem;
    }
    
    .green-badge {
         position: static;
         margin-top: 1rem;
         display: inline-block;
     }
 }

/* Advanced Certifications Section Styles */
.certifications-advanced {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.cert-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.5s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.cert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.cert-card:hover::before {
    transform: translateX(100%);
}

.premium-cert:hover {
    border-color: #ffd700;
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.3);
}

.eco-cert:hover {
    border-color: #28a745;
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(40, 167, 69, 0.3);
}

.logistics-cert:hover {
    border-color: #007bff;
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 123, 255, 0.3);
}

.excellence-cert:hover {
    border-color: #dc3545;
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(220, 53, 69, 0.3);
}

.cert-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.premium-cert .cert-icon {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
}

.eco-cert .cert-icon {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.logistics-cert .cert-icon {
    background: linear-gradient(135deg, #007bff, #0056b3);
}

.excellence-cert .cert-icon {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.cert-icon i {
    font-size: 2.5rem;
    color: white;
    transition: all 0.3s ease;
}

.cert-card:hover .cert-icon {
    transform: scale(1.2) rotate(15deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cert-content h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.cert-content p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.cert-year {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    font-size: 0.9rem;
}

.cert-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 3;
}

.premium-cert .cert-badge {
    background: #ffd700;
    color: white;
}

.eco-cert .cert-badge {
    background: #28a745;
    color: white;
}

.logistics-cert .cert-badge {
    background: #007bff;
    color: white;
}

.excellence-cert .cert-badge {
    background: #dc3545;
    color: white;
}

.cert-card:hover .cert-badge {
    transform: scale(1.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Achievement Timeline Styles */
.achievement-timeline {
    margin-top: 3rem;
}

.timeline-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0;
    padding: 2rem 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-item {
    position: relative;
    text-align: center;
    flex: 1;
    z-index: 2;
}

.timeline-item::before {
    content: attr(data-year);
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 20px rgba(0, 123, 255, 0.3);
    transition: all 0.4s ease;
}

.timeline-item:hover::before {
    transform: translateX(-50%) scale(1.2);
    box-shadow: 0 8px 30px rgba(0, 123, 255, 0.5);
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.2);
}

.timeline-content h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Interactive Statistics Dashboard Styles */
.stats-dashboard {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.5s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: var(--primary-color);
    box-shadow: 0 25px 60px rgba(0, 123, 255, 0.2);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
    position: relative;
}

.stat-icon i {
    font-size: 2.5rem;
    color: white;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.4);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    color: #666;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.stat-progress {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    width: 0;
    transition: width 2s ease-in-out;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShine 2s ease-in-out infinite;
}

/* Animation for progress bar shine effect */
@keyframes progressShine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Responsive Design for New Advanced Sections */
@media (max-width: 768px) {
    .cert-card {
        margin-bottom: 2rem;
        padding: 1.5rem;
    }
    
    .cert-icon {
        width: 70px;
        height: 70px;
    }
    
    .cert-icon i {
        font-size: 2rem;
    }
    
    .timeline-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .timeline-container::before {
        display: none;
    }
    
    .timeline-item::before {
        position: static;
        transform: none;
        margin: 0 auto 1rem;
    }
    
    .timeline-content {
        margin-top: 0;
    }
    
    .stat-card {
        margin-bottom: 2rem;
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-icon {
        width: 70px;
        height: 70px;
    }
    
    .stat-icon i {
        font-size: 2rem;
    }
}

/* Enhanced Company Culture Section Styles */
.culture-section-enhanced {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.culture-section-enhanced::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.culture-stats-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.culture-stats-bar .stat-item {
    text-align: center;
    position: relative;
}

.culture-stats-bar .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5aa0;
    display: block;
    margin-bottom: 5px;
    background: linear-gradient(45deg, #2c5aa0, #1e3a8a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.culture-stats-bar .stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.culture-card-enhanced {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    padding: 35px 25px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.culture-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(44, 90, 160, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.culture-card-enhanced:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.culture-card-enhanced:hover::before {
    opacity: 1;
}

.card-background-effect {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(44, 90, 160, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.culture-card-enhanced:hover .card-background-effect {
    opacity: 1;
}

.culture-icon-enhanced {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c5aa0, #1e3a8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    overflow: hidden;
}

.culture-icon-enhanced i {
    font-size: 2rem;
    color: white;
    z-index: 2;
    position: relative;
}

.icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: iconPulse 2s infinite;
}

@keyframes iconPulse {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.culture-card-enhanced h4 {
    color: #2c5aa0;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.culture-card-enhanced p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
}

.culture-features-enhanced {
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-item i {
    color: #2c5aa0;
    margin-left: 12px;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.feature-item span {
    color: #495057;
    font-weight: 500;
}

.progress-indicator {
    margin-top: 20px;
}

.progress-bar-culture {
    height: 6px;
    background: linear-gradient(90deg, #2c5aa0, #1e3a8a);
    border-radius: 3px;
    width: 0;
    transition: width 1.5s ease-in-out;
    position: relative;
    overflow: hidden;
}

.progress-bar-culture::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: progressShine 2s infinite;
}

.progress-text {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 8px;
    display: block;
    text-align: center;
}

/* Specific card themes */
.professional-dev {
    border-top: 4px solid #28a745;
}

.work-life {
    border-top: 4px solid #ffc107;
}

.innovation {
    border-top: 4px solid #dc3545;
}

/* Testimonials Carousel */
.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.testimonial-item {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-item.active {
    display: block;
    opacity: 1;
}

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

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #495057;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: #2c5aa0;
    position: absolute;
    top: -20px;
    right: -10px;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c5aa0, #1e3a8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    color: white;
    font-size: 1.5rem;
}

.author-info h5 {
    margin: 0;
    color: #2c5aa0;
    font-weight: 600;
}

.author-info span {
    color: #6c757d;
    font-size: 0.9rem;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    pointer-events: none;
}

.carousel-btn {
    width: 45px;
    height: 45px;
    background: rgba(44, 90, 160, 0.9);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: #2c5aa0;
    transform: scale(1.1);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dee2e6;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #2c5aa0;
    transform: scale(1.2);
}

/* Responsive Design for Enhanced Culture Section */
@media (max-width: 992px) {
    .culture-stats-bar {
        flex-direction: column;
        gap: 20px;
    }
    
    .culture-card-enhanced {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .culture-stats-bar {
        padding: 20px;
        gap: 15px;
    }
    
    .culture-stats-bar .stat-number {
        font-size: 2rem;
    }
    
    .culture-icon-enhanced {
        width: 60px;
        height: 60px;
    }
    
    .culture-icon-enhanced i {
        font-size: 1.5rem;
    }
    
    .testimonials-carousel {
        padding: 25px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .carousel-controls {
        padding: 0 10px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
    }
}