/* About Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../IMG/pexels-michelangelo-buonarroti-4176036.jpg') center/cover no-repeat;
    padding: 120px 0 80px;
    color: white;
    text-align: center;
}

.hero .hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'El Messiri', sans-serif;
}

.hero .breadcrumb {
    background: transparent;
    justify-content: center;
    padding: 0;
}

.hero .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
    content: "\f104";
    font-family: "Font Awesome 5 pro";
    font-weight: 900;
}

.hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
}

.hero .breadcrumb-item a:hover {
    color: var(--primary-color);
}

.hero .breadcrumb-item.active {
    color: white;
}

/* Main About Section */
.about-section {
    padding: 80px 0;
    background-color: white;
}

.about-section .about-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-section .about-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: #ffffff1a;
    border: 1px solid #fff3;
    backdrop-filter: blur(5px);
    color: var(--primary-dark);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.experience-badge span {
    font-size: 2rem;
    line-height: 1;
}

.experience-badge small {
    font-size: 0.8rem;
    margin-top: 5px;
}

.about-section .about-content {
    padding-right: 30px;
}

.about-section .about-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.stats-row {
    margin: 30px 0;
}

.stat-item {
    text-align: center;
    margin-bottom: 20px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.stats-row {
    margin: 40px 0;
}

.stat-number .suffix {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}



.call-to-action {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    color: var(--gray-600);
    font-size: 0.9rem;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.call-to-action:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: var(--primary-light);
}

.highlight-phone {
    color: var(--primary-dark);
    font-weight: 700;
    text-decoration: none;
    margin-right: 3px;
    direction: ltr;
    display: inline-block;
    transition: all 0.3s;
}

.highlight-phone:hover {
    color: var(--primary-darker);
    text-decoration: underline;
}

.call-to-action i {
    color: var(--primary-color);
    font-size: 0.8em;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: var(--gray-100);
}

.feature-item {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    border-bottom: 3px solid transparent;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--primary-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-lightest);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.feature-item h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-item p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Sectors Section */
.sectors-section {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7),rgba(0, 0, 0, 0.7)),
        url('../IMG/899.jpg') center/cover fixed no-repeat;
    position: relative;
    width: 95%;
    margin: 0 auto 80px;
    border-radius: 20px;
}

.sectors-section .section-title {
    background-color: rgba(255, 255, 255, 0.788);
}

.sectors-section .main-title {
    color: white;
}

.sector-card {
    background-color: #ffffff21;
    border: 1px solid #fff3;
    backdrop-filter: blur(5px);
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.sector-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.sector-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 25%;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.sector-card h4 {
    color: white;
    margin-bottom: 15px;
    font-weight: 600;
}

.sector-card ul {
    list-style: none;
    padding: 0;
    text-align: right;
}

.sector-card ul li {
    margin-bottom: 10px;
    color: white;
    font-size: 0.95rem;
}

.sector-card ul li i {
    margin-left: 8px;
}



/* CTA Section */
.cta-card{
    padding: 60px 0;
    background: var(--secondary-lightest);
    color: white;
    border-radius: 0;
}

.cta-card h3 {
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-card p {
    opacity: 0.9;
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .about-section .about-content {
        padding-right: 0;
        margin-top: 30px;
    }

    .about-hero {
        padding: 100px 0 60px;
    }

    .about-hero .hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .about-hero {
        padding: 80px 0 40px;
    }

    .experience-badge {
        width: 80px;
        height: 80px;
    }

    .experience-badge span {
        font-size: 1.5rem;
    }

    .testimonial-content {
        padding: 20px;
    }
}

@media (max-width: 575.98px) {
    .stat-number {
        font-size: 1.5rem;
    }

    .feature-item,
    .sector-card {
        padding: 20px 15px;
    }
}