@import url("https://cdn.jsdelivr.net/npm/@fancyapps/ui@5.0/dist/fancybox/fancybox.css");

/* =============================================
   ABOUT PAGE STYLES
   ============================================= */
.about-banner {
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    position: relative;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    z-index: 3;
}
.about-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), var(--banner-url, url('../a propos/a-propos.jpg'));
    background-size: cover;
    background-position: center;
}
.about-banner .container { position: relative; z-index: 2; }
.about-banner h1 { font-size: 56px; font-weight: 800; text-transform: uppercase; margin-bottom: 10px; font-family: 'Outfit', sans-serif; }

.about-intro-section { padding: 100px 0; background: #fff; }
.about-grid { display: flex; gap: 60px; align-items: center; }
.about-images { flex: 1; position: relative; }
.about-img-1 { width: 85%; border-radius: 20px; box-shadow: 0 10px 25px rgba(0,0,0,0.05); }
.about-img-2 { width: 65%; position: absolute; bottom: -50px; right: 0; border: 10px solid #fff; border-radius: 20px; box-shadow: 0 10px 25px rgba(0,0,0,0.05); }
.about-experience-box { 
    position: absolute !important;
    top: 30px !important;
    left: -30px !important;
    background: #ffffff !important;
    padding: 25px !important;
    border-radius: 15px !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.06) !important;
    text-align: center !important;
    z-index: 10 !important;
    height: auto !important;
    min-height: 0 !important;
    width: 140px !important;
    display: block !important;
}
.about-experience-box h2 { font-size: 36px; font-weight: 800; color: var(--primary-red); margin: 0; line-height: 1; }
.about-experience-box p { font-size: 13px; font-weight: 700; text-transform: uppercase; color: #111; margin: 5px 0 0; line-height: 1.2; }

.about-content { flex: 1; }
.about-content .tagline { color: var(--primary-red); font-weight: 700; text-transform: uppercase; display: block; margin-bottom: 15px; letter-spacing: 1px; }
.about-content h2 { font-size: 42px; font-weight: 800; color: #111; line-height: 1.2; margin-bottom: 25px; }
.about-content p { color: #666; line-height: 1.8; margin-bottom: 30px; font-size: 16px; }

.about-features { list-style: none; padding: 0; margin-bottom: 40px; }
.about-features li { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; font-weight: 600; color: #111; }
.about-features li i { color: var(--primary-red); font-size: 18px; }

.contact-info-box { display: flex; align-items: center; gap: 20px; }
.contact-info-box .icon { width: 60px; height: 60px; background: #f9f9f9; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary-red); font-size: 24px; border: 1px solid #eee; }
.contact-info-box .text span { display: block; font-size: 14px; color: #666; }
.contact-info-box .text strong { font-size: 18px; color: #111; }

.marquee-section { padding: 60px 0; background: #fff; overflow: hidden; white-space: nowrap; border-top: 1px solid #eee; border-bottom: 1px solid #eee; position: relative; }
.marquee-content { display: inline-block; animation: marquee 40s linear infinite; }
.marquee-text { font-size: 80px; font-weight: 800; color: #f5f5f5; text-transform: uppercase; margin-right: 80px; display: inline-block; font-family: 'Outfit', sans-serif; }
.marquee-text span { color: transparent; -webkit-text-stroke: 1px #ddd; }

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.key-figures-section { padding: 120px 0; background: #fff; }
.figures-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.figure-item { text-align: center; }
.figure-icon { width: 110px; height: 110px; border: 1px solid #eee; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 25px; transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.figure-item:hover .figure-icon { border-color: var(--primary-red); box-shadow: 0 15px 35px rgba(227,30,36,0.15); transform: translateY(-10px); }
.figure-item h3 { font-size: 52px; font-weight: 800; color: #111; margin-bottom: 10px; font-family: 'Outfit', sans-serif; }
.figure-item p { font-size: 15px; color: #666; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

.faq-section { padding: 120px 0; background: #fcfcfc; }
.faq-grid { display: grid; grid-template-columns: 1.5fr 1fr 0.5fr; gap: 40px; align-items: center; }
.faq-accordions { flex: 1; }
.faq-item { background: #fff; margin-bottom: 15px; border-radius: 12px; box-shadow: 0 8px 25px rgba(0,0,0,0.03); overflow: hidden; border: 1px solid #f0f0f0; }
.faq-header { padding: 22px 30px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; transition: 0.3s; }
.faq-header h4 { font-size: 17px; font-weight: 700; color: #111; margin: 0; transition: 0.3s; }
.faq-header i { font-size: 14px; transition: 0.3s; }
.faq-content { padding: 0 30px; max-height: 0; overflow: hidden; transition: all 0.5s cubic-bezier(0, 1, 0, 1); }
.faq-content p { padding-bottom: 25px; color: #666; line-height: 1.8; font-size: 15px; margin: 0; }
.faq-item.active { border-color: var(--primary-red); }
.faq-item.active .faq-header { background: var(--primary-red); color: #fff; }
.faq-item.active .faq-header h4 { color: #fff; }
.faq-item.active .faq-header i { transform: rotate(180deg); color: #fff; }
.faq-item.active .faq-content { max-height: 500px; }

.faq-img { border-radius: 25px; overflow: hidden; box-shadow: 0 25px 50px rgba(0,0,0,0.1); height: 500px; }
.faq-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.faq-progress { display: flex; flex-direction: column; gap: 50px; align-items: center; }
.progress-item { text-align: center; }
.progress-circle { position: relative; width: 130px; height: 130px; margin: 0 auto; }
.progress-circle svg { width: 130px; height: 130px; transform: rotate(-90deg); }
.progress-circle circle { fill: none; stroke-width: 3; stroke-linecap: round; }
.progress-circle .bg { stroke: #eeeeee; }
.progress-circle .bar { stroke: #e31e24 !important; transition: 2.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.progress-circle .text { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 24px; font-weight: 500; color: #888; font-family: 'Outfit', sans-serif; }
.progress-label { margin-top: 20px; font-weight: 800; color: #111; font-size: 16px; line-height: 1.3; text-transform: uppercase; }

.team-section { padding: 120px 0; background: #fff; }
.team-section .container { max-width: 1600px; padding: 0 40px; }
.team-header { text-align: center; margin-bottom: 70px; }
.team-header .tagline { color: var(--primary-red); font-weight: 700; text-transform: uppercase; display: block; margin-bottom: 15px; letter-spacing: 1.5px; }
.team-header h2 { font-size: 48px; font-weight: 800; color: #111; font-family: 'Outfit', sans-serif; }

.team-swiper { padding: 20px 20px 60px; }
.team-card { background: #fff; border-radius: 25px; overflow: hidden; box-shadow: 0 15px 40px rgba(0,0,0,0.06); transition: all 0.4s ease; position: relative; height: 100%; border: 1px solid #f5f5f5; }
.team-card:hover { transform: translateY(-10px); box-shadow: 0 25px 60px rgba(0,0,0,0.1); }
.team-img { height: 380px; overflow: hidden; position: relative; }
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.team-card:hover .team-img img { transform: scale(1.1) rotate(2deg); }
.team-info { padding: 30px 25px; text-align: center; position: relative; z-index: 2; background: #fff; }
.team-info h4 { font-size: 22px; font-weight: 800; color: #111; margin-bottom: 8px; font-family: 'Outfit', sans-serif; }
.team-info p { font-size: 14px; font-weight: 600; color: #999; text-transform: uppercase; letter-spacing: 1px; margin: 0; text-align: center; display: block; }
.team-plus { 
    position: absolute; right: 25px; top: -28px; width: 56px; height: 56px; background: var(--primary-red);
    border-radius: 15px; display: flex; align-items: center; justify-content: center; color: #fff;
    font-size: 22px; box-shadow: 0 8px 20px rgba(227,30,36,0.3); transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}
.team-card:hover .team-plus { transform: rotate(90deg) scale(1.1); background: #111; }

/* =============================================
   PROJECT DETAIL STYLES
   ============================================= */
.project-detail-section { padding: 100px 0; background: #fff; }
.project-grid { display: flex; gap: 50px; align-items: stretch; }
.project-main-content { flex: 2; min-width: 0; }
.project-sidebar { flex: 1; }
.project-main-content h1 { font-size: 36px; font-weight: 800; color: #111; margin-bottom: 25px; font-family: 'Outfit', sans-serif; }
.project-main-content p { font-size: 16px; color: #666; line-height: 1.8; margin-bottom: 30px; text-align: justify; }
.project-meta-box {
    background: #f4f6fa;
    padding: 40px 35px 35px 35px;
    border-radius: 12px;
    position: sticky;
    top: 120px;
}
.project-meta-box h3 {
    font-size: 26px;
    font-weight: 800;
    color: #111;
    margin-bottom: 30px;
    font-family: 'Outfit', sans-serif;
    display: block;
}
.meta-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.meta-item label {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: #111;
    margin-bottom: 6px;
    font-family: 'Outfit', sans-serif;
}
.meta-item span {
    font-size: 15px;
    color: #7b8397;
    font-weight: 500;
}
.project-gallery-carousel { position: relative; margin-top: 50px; background: #f5f5f5; border-radius: 15px; margin-bottom: 40px; }
.gallery-swiper { border-radius: 15px; overflow: hidden; height: 500px; }
.swiper-slide .gallery-img-wrap { width: 100%; height: 100%; border-radius: 15px; overflow: hidden; cursor: zoom-in; display: block; }
.swiper-slide .gallery-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.swiper-slide .gallery-img-wrap:hover img { transform: scale(1.02); }
.project-banner { 
    height: 450px; 
    background-image: var(--banner-url);
    background-size: cover; 
    background-position: center; 
    position: relative; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    color: #fff;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    z-index: 3;
}
.project-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.20), rgba(0, 0, 0, 0.35));
}
.banner-content { position: relative; z-index: 2; text-align: center; }
.banner-content h2 { font-size: 48px; font-weight: 800; text-transform: uppercase; text-shadow: 0 4px 15px rgba(0,0,0,0.5); font-family: 'Outfit', sans-serif; }
.share-icons {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}
.share-btn { 
    width: 42px;
    height: 42px;
    border-radius: 50%; 
    display: flex;
    align-items: center;
    justify-content: center; 
    color: #fff;
    background: #111;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-size: 16px;
}
.share-btn:hover {
    background: var(--primary-red);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(227, 30, 36, 0.25);
}
.recent-projects { padding: 100px 0; background: #fcfcfc; border-top: 1px solid #eee; }
.recent-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }

.project-main-img { margin-bottom: 30px; border-radius: 15px; overflow: hidden; }
.project-main-img img { width: 100%; height: auto; display: block; }
.short-description { font-size: 16px; color: #666; font-weight: 400; line-height: 1.8; margin-bottom: 30px; text-align: justify; }
.description-body { font-size: 16px; color: #666; font-weight: 400; line-height: 1.8; margin-bottom: 30px; text-align: justify; }
.project_info_holder h3 { font-size: 18px; }

/* Shared Components */
.section-header-left { text-align: left; margin-bottom: 60px; }
.section-header-center { text-align: center; margin-bottom: 70px; }
.section-title { font-size: 42px; font-weight: 600; margin-top: 10px; font-family: 'Outfit', sans-serif; color: #111; }

.about-btn-more { 
    margin-left: 30px; text-decoration: none; padding: 18px 35px; border-radius: 8px; 
    background: var(--primary-red); color: #fff; font-weight: 700; 
    box-shadow: 0 10px 20px rgba(227,30,36,0.2); 
    display: inline-block;
}

.figure-icon i { font-size: 45px; color: var(--primary-red); }

@media (max-width: 1200px) {
    .faq-grid { grid-template-columns: 1fr 1fr; }
    .faq-progress { flex-direction: row; grid-column: span 2; width: 100%; justify-content: space-around; margin-top: 40px; }
}
@media (max-width: 992px) {
    .about-grid { flex-direction: column; text-align: center; }
    .about-images { margin-bottom: 80px; width: 100%; }
    .about-features li { justify-content: center; }
    .contact-info-box { justify-content: center; flex-wrap: wrap; }
    .faq-grid { grid-template-columns: 1fr; }
    .faq-progress { grid-column: span 1; }
    .figures-grid { grid-template-columns: repeat(2, 1fr); }
    .project-grid { flex-direction: column; }
    .project-meta-box { position: static; margin-top: 40px; }
    .recent-grid { grid-template-columns: 1fr 1fr; }
    .about-btn-more { margin-left: 0; margin-top: 20px; }
    
    /* Contact Page */
    .contact-grid { grid-template-columns: 1fr; gap: 50px; margin-bottom: 60px; }
    .contact-desc { max-width: 100%; text-align: center; }
    .contact-form-wrap { text-align: center; }
    .news-grid, .projects-grid-wrap { grid-template-columns: repeat(2, 1fr); gap: 25px; }
    .communication-section { flex-direction: column; gap: 40px; text-align: center; }
    .comm-text h3 { max-width: 100%; font-size: 32px; }
}

@media (max-width: 768px) {
    .section-header-left { text-align: center !important; }
    .figures-grid { grid-template-columns: 1fr !important; }
    .figure-item { text-align: center !important; display: flex; flex-direction: column; align-items: center; }
    .figure-item h3, .figure-item p { text-align: center !important; margin-left: auto !important; margin-right: auto !important; }
    .about-banner h1 { font-size: 32px; }
    .marquee-text { font-size: 40px; }
    .recent-grid { grid-template-columns: 1fr; }
    .news-grid, .projects-grid-wrap { grid-template-columns: 1fr !important; }
    .contact-grid { grid-template-columns: 1fr !important; gap: 40px !important; margin-bottom: 60px !important; }
    .contact-form .form-row { grid-template-columns: 1fr !important; gap: 15px !important; margin-bottom: 15px !important; }
    .contact-form input { margin-bottom: 0 !important; }
    .contact-form textarea { margin-top: 0 !important; }
    .contact-page-section { padding: 60px 0 0 0 !important; }
    .contact-info-wrap { gap: 40px !important; text-align: left !important; width: 100% !important; }
    .info-item { gap: 20px !important; flex-direction: row !important; align-items: flex-start !important; }
    .info-icon { width: 60px !important; height: 60px !important; font-size: 24px !important; flex-shrink: 0 !important; }
    .info-text { text-align: left !important; }
    .tech-table { display: block; overflow-x: auto; }
    .downloads-wrap { flex-direction: column; }
}

.tagline { color: #888 !important; font-weight: 700; text-transform: uppercase; display: block; margin-bottom: 15px; letter-spacing: 1px; }
.tagline .red-slashes { color: var(--primary-red) !important; margin-right: 5px; }

/* =============================================
   PROJECTS LIST STYLES
   ============================================= */
.projects-page-section { padding: 120px 0; background: #fff; }
.projects-grid-wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }

.project-item-card { position: relative; }
.project-card-inner { 
    display: block; border-radius: 25px; overflow: hidden; position: relative; 
    aspect-ratio: 1 / 1.2; box-shadow: 0 15px 40px rgba(0,0,0,0.06); transition: 0.4s; 
}
.project-img-wrap { width: 100%; height: 100%; overflow: hidden; }
.project-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: 0.8s; }

.project-card-content { 
    position: absolute; bottom: 15px; left: 0; width: 100%; 
    padding: 0; display: flex; align-items: flex-end; 
}
.project-info-white { 
    background: #fff; padding: 20px 30px; border-radius: 0 20px 20px 0; 
    box-shadow: 10px 10px 30px rgba(0,0,0,0.1); width: 70%; 
    transform: translateY(15px); opacity: 0; transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.project-info-white h3 { color: #111 !important; font-size: 19px; font-weight: 800; margin: 0; font-family: 'Outfit', sans-serif; }

.project-action-btn { 
    width: 50px; height: 50px; background: var(--primary-red); color: #fff; 
    border-radius: 50%; display: flex; align-items: center; justify-content: center; 
    font-size: 18px; position: absolute; left: 70%; bottom: 15px; margin-left: -25px;
    box-shadow: 0 8px 20px rgba(227,30,36,0.25); border: 4px solid #fff;
    transform: scale(0); transition: 0.4s 0.1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.project-card-inner:hover { box-shadow: 0 30px 60px rgba(0,0,0,0.12); }
.project-card-inner:hover img { transform: scale(1.1); filter: brightness(0.8); }
.project-card-inner:hover .project-info-white { transform: translateY(0); opacity: 1; }
.project-card-inner:hover .project-action-btn { transform: scale(1); }

.breadcrumb {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.45);
    padding: 8px 22px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    margin-top: 20px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 700;
}
.breadcrumb a:hover {
    color: var(--primary-red);
}
.breadcrumb span {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
}
.breadcrumb i {
    font-size: 10px;
    margin: 0 12px;
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.6);
}

/* =============================================
   NEWS PAGE STYLES
   ============================================= */
.news-page-section { padding: 120px 0; background: #fff; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }

.news-card { background: #fff; border-radius: 20px; overflow: hidden; transition: 0.4s; height: 100%; border: 1px solid #f5f5f5; }
.news-card:hover { transform: translateY(-10px); box-shadow: 0 10px 25px rgba(0,0,0,0.05); }

.news-img { position: relative; height: 260px; overflow: hidden; }
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s; }
.news-card:hover .news-img img { transform: scale(1.1); }

.news-date { 
    position: absolute; bottom: 15px; left: 15px; background: var(--primary-red); 
    color: #fff; padding: 8px 20px; border-radius: 8px; font-size: 13px; font-weight: 700;
    text-transform: uppercase; z-index: 2; box-shadow: 0 3px 10px rgba(227,30,36,0.1);
}

.news-body { padding: 30px; }
.news-body h3 { font-size: 20px; font-weight: 700; color: #111; margin-bottom: 20px; line-height: 1.4; }
.news-body h3 a { color: inherit; text-decoration: none; transition: 0.3s; }
.news-body h3 a:hover { color: var(--primary-red); }

.read-more { color: #888; font-weight: 700; text-transform: uppercase; font-size: 13px; text-decoration: none; display: flex; align-items: center; gap: 8px; transition: 0.3s; }
.read-more i { font-size: 12px; color: var(--primary-red); transition: 0.3s; }
.read-more:hover { color: var(--primary-red); }
.read-more:hover i { transform: translateX(8px); }

.pagination-wrap { margin-top: 60px; display: flex; justify-content: center; }
.pagination-wrap .pagination { gap: 10px; }
.pagination-wrap .page-link { border-radius: 8px; color: #111; border: 1px solid #eee; padding: 10px 18px; }
.pagination-wrap .page-item.active .page-link { background: var(--primary-red); border-color: var(--primary-red); color: #fff; }

/* =============================================
   CONTACT PAGE STYLES
   ============================================= */
.contact-page-section { padding: 120px 0 0 0; background: #fff; }
.contact-grid { 
    display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 80px; 
    margin-bottom: 100px;
}

.contact-desc { color: #888; line-height: 1.6; margin: 20px 0 40px 0; font-size: 15px; max-width: 500px; }

.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.contact-form input, .contact-form textarea { 
    width: 100%; padding: 18px 25px; background: #f8f8f8; border: none; 
    border-radius: 12px; font-family: inherit; font-size: 15px; color: #111;
    transition: 0.3s;
}
.contact-form input:focus, .contact-form textarea:focus { background: #fff; box-shadow: 0 5px 15px rgba(0,0,0,0.03); outline: none; }
.contact-form textarea { margin-bottom: 30px; resize: none; }

.btn-submit { 
    background: var(--primary-red); color: #fff; border: none; 
    padding: 20px 45px; border-radius: 10px; font-weight: 700; 
    text-transform: uppercase; cursor: pointer; transition: 0.3s;
    box-shadow: 0 5px 15px rgba(227,30,36,0.1);
}
.btn-submit:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(227,30,36,0.15); }

.contact-info-wrap { display: flex; flex-direction: column; gap: 50px; }
.info-item { display: flex; gap: 25px; align-items: flex-start; }
.info-icon { 
    width: 60px; height: 60px; background: #fff; border: 1px dashed #ddd; 
    border-radius: 50%; display: flex; align-items: center; justify-content: center; 
    color: var(--primary-red); font-size: 24px; flex-shrink: 0;
}
.info-text h3 { font-size: 20px; font-weight: 700; color: #111; margin-bottom: 12px; }
.info-text p { color: #888; font-size: 15px; line-height: 1.6; margin-bottom: 5px; }

.contact-map { width: 100%; height: 500px; margin-top: 50px; line-height: 0; }
.contact-map iframe { width: 100%; height: 100%; border: none; }

/* =============================================
   ENERCO PAGE STYLES
   ============================================= */
.enerco-content-section { padding: 120px 0; background: #fff; }

.main-prod-title { font-size: 36px; font-weight: 800; color: #111; margin-bottom: 30px; line-height: 1.2; }
.prod-description { font-size: 16px; color: #666; line-height: 1.8; margin-bottom: 60px; }
.prod-description p { margin-bottom: 20px; text-align: justify; }

.enerco-features-slider { padding-bottom: 60px !important; margin-bottom: 60px; text-align: center; }
.e-feat-icon { 
    width: 80px; height: 80px; background: #f8f8f8; border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; 
    color: var(--primary-red); font-size: 30px; margin: 0 auto 25px;
    transition: 0.3s;
}
.e-feat-item:hover .e-feat-icon { background: var(--primary-red); color: #fff; transform: translateY(-10px); }
.e-feat-item h4 { font-size: 18px; font-weight: 700; color: #111; line-height: 1.4; padding: 0 20px; }

.swiper-pagination-bullet-active { background: var(--primary-red) !important; }

.communication-section { display: flex; align-items: center; gap: 80px; margin-bottom: 100px; }
.comm-text h3 { font-size: 42px; font-weight: 800; color: #111; line-height: 1.1; max-width: 400px; }
.comm-img { flex: 1; text-align: center; }
.comm-img img { max-width: 100%; height: auto; }

.tech-table-wrap { margin-bottom: 80px; }
.tech-title { font-size: 28px; font-weight: 800; color: #111; margin-bottom: 30px; }
.tech-table { width: 100%; border-collapse: collapse; border-radius: 15px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.tech-table th { background: #f8f8f8; color: #111; font-weight: 700; text-align: left; padding: 20px 30px; border-bottom: 1px solid #eee; }
.tech-table td { padding: 18px 30px; border-bottom: 1px solid #f5f5f5; color: #666; font-size: 15px; }
.tech-table tr:last-child td { border-bottom: none; }
.tech-table tr:hover td { background: #fafafa; }

.downloads-wrap { display: flex; gap: 20px; }
.btn-download { 
    background: #111; color: #fff; text-decoration: none; padding: 15px 30px; 
    border-radius: 12px; display: flex; align-items: center; gap: 20px; 
    transition: 0.3s;
}
.btn-download i { font-size: 24px; color: var(--primary-red); }
.btn-download small { display: block; font-size: 11px; opacity: 0.7; }
.btn-download span { font-size: 15px; font-weight: 700; }
.btn-download:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }

/* Project Detail Gallery - Full Width Slider */
.project-gallery-section {
    padding: 80px 0;
    background: #fbfbfb;
    border-top: 1px solid #eee;
}

.project-gallery-swiper {
    position: relative;
    padding: 20px 10px 60px;
}

.project-gallery-swiper .swiper-slide {
    height: 500px;
}

.project-gallery-swiper .gallery-img-wrap {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    cursor: zoom-in;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.project-gallery-swiper .gallery-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-gallery-swiper .gallery-img-wrap:hover img {
    transform: scale(1.05);
}

/* Custom Swiper Controls for Gallery */
.project-gallery-swiper .swiper-button-next,
.project-gallery-swiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    color: #111;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.project-gallery-swiper .swiper-button-next::after,
.project-gallery-swiper .swiper-button-prev::after {
    font-size: 18px;
    font-weight: 800;
}

.project-gallery-swiper .swiper-button-next:hover,
.project-gallery-swiper .swiper-button-prev:hover {
    background: var(--primary-red) !important;
    color: #ffffff !important;
}

.project-gallery-swiper .swiper-button-prev {
    left: 15px;
}

.project-gallery-swiper .swiper-button-next {
    right: 15px;
}

.project-gallery-swiper .swiper-pagination-bullet {
    background: #ccc;
    opacity: 0.6;
    width: 10px;
    height: 10px;
    margin: 0 6px !important;
    transition: all 0.3s ease;
}

.project-gallery-swiper .swiper-pagination-bullet-active {
    background: var(--primary-red) !important;
    width: 25px;
    border-radius: 5px;
    opacity: 1;
}

/* Ensure Fancybox lightbox displays on top of floating social bar and chatbot */
.fancybox__container {
    z-index: 100000 !important;
}
