/* Hero Section */
.about-hero {
    background: linear-gradient(rgba(15, 37, 64, 0.8), rgba(15, 37, 64, 0.4)), 
        url('../IMG/marvin-meyer-SYTO3xs06fU-unsplash.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    color: white;
    text-align: center;
    position: relative;
}

.hero-shapes .shape {
    background: rgba(42, 167, 223, 0.2);
}

.about-hero .container {
    position: relative;
    z-index: 10;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.breadcrumb {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background-color: transparent;
    justify-content: center;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--primary-color);
}

/* About Section Styles */
.about-section {
    position: relative;
    overflow: hidden;
    background-color: var(--sectoin-color);
}

.section-title {
    position: relative;
    color: var(--blue-color);
    font-weight: 700;
}

.section-title:after {
    content: '';
    display: none;
}


.feature-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(42, 167, 223, 0.1);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(42, 167, 223, 0.15);
    border-color: rgba(42, 167, 223, 0.2);
}

.feature-icon {
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: rgba(42, 167, 223, 0.1);
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
}

.icons{
    color: var(--sec-blue);
}

.animate-icon i {
    animation: pulseIcon 2s infinite ease-in-out;
}  

.animate-bounce {
    animation: bounceIcon 2s infinite ease-in-out;
}

.animate-bounce {
    animation: bounceIcon 2s infinite ease-in-out;
}

.animate-rotate {
    animation: rotateIcon 3s infinite ease-in-out;
}

.animate-fade {
    animation: fadeIcon 2.5s infinite ease-in-out;
}

.animate-shake {
    animation: shakeIcon 1.5s infinite;
}


.cta-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: linear-gradient(rgba(15, 37, 64, 0.8), rgba(15, 37, 64, 0.8)),
        url('../IMG/igor-miske-JVSgcV8_vb4-unsplash.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    
}

.cta-section .btn{
    padding: 0.55rem 2rem;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-section .d-flex {
        flex-direction: column;
        gap: 15px !important;
    }
    
    .cta-section .btn {
        width: 100%;
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1.25rem !important;
    }
    
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .feature-card {
        padding: 1.5rem !important;
    }
    
}


@keyframes pulseIcon {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* الابتكار - bounce */
@keyframes bounceIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  
  
  /* الجودة - rotate */
  @keyframes rotateIcon {
    0% { transform: rotate(0); }
    50% { transform: rotate(15deg); }
    100% { transform: rotate(0); }
  }
  
  
  /* الشفافية - fade in and out */
  @keyframes fadeIcon {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }

  
  /* التعاون - shake */
  @keyframes shakeIcon {
    0% { transform: translateX(0); }
    25% { transform: translateX(-3px); }
    50% { transform: translateX(3px); }
    75% { transform: translateX(-3px); }
    100% { transform: translateX(0); }
  }
  
  