/* CSS Variables */
:root {
    --primary-color: #1560bd;
    --secondary-color: #f8f9fa;
    --text-dark: #333;
    --text-light: #666;
    --white: #fff;
    --black: #000;
    --container-width: 1200px;
    --header-height: 80px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Styles */

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
    opacity: 1;
    z-index: 2000;
}

.modal-content {
    background: var(--white);
    position: relative;
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--secondary-color);
}

.modal-header h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-body {
    padding: 20px;
}

/* Contact Info Styles */
.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--secondary-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-details h4 {
    margin: 0 0 5px;
    font-size: 1rem;
    color: var(--text-dark);
}

.contact-details a,
.contact-details p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
    text-decoration: none;
    line-height: 1.4;
}

.contact-details a:hover {
    color: var(--primary-color);
}

.contact-divider {
    position: relative;
    text-align: center;
    margin: 30px 0;
}

.contact-divider::before,
.contact-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: calc(50% - 30px);
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.contact-divider::before {
    left: 0;
}

.contact-divider::after {
    right: 0;
}

.contact-divider span {
    background: var(--white);
    padding: 0 15px;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Contact Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    margin: 0;
}

.form-group label {
    font-size: 0.9rem;
    margin-bottom: 4px;
    display: block;
}

.form-group input,
.form-group textarea {
    padding: 10px 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    font-size: 0.95rem;
    width: 100%;
}

.form-group textarea {
    min-height: 80px;
    resize: vertical;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1250a0 100%);
    transform: translateY(-2px);
}

.btn-primary i {
    font-size: 1.1rem;
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    margin-left: auto;
    margin-right: 30px;
}

.nav-menu ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu .nav-link {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu .nav-link:hover {
    color: var(--primary-color);
}

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

.nav-mobile {
    display: none;
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 960px) {
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: var(--white);
        padding: 20px;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 20px;
    }

    .nav-mobile {
        display: block;
    }

    .btn-24-7 {
        display: none;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        font-size: 1.6rem;
        padding: 6px;
        margin-right: 5px;
    }

    .nav-menu {
        width: 100%;
        padding: 80px 20px;
    }

    .btn-24-7 {
        display: none;
    }
}

/* Hero Section */
/*.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: calc(var(--header-height) + 80px);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    opacity: 0.85;
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text {
    color: var(--white);
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height:auto;
        min-height: auto;
        padding: 120px 0 60px;
    }
    
    .hero {
        padding-top: calc(var(--header-height) + 40px);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text h2 {
        font-size: 1.2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-image img {
        max-width: 80%;
    }
}*/

.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 800px;
}

.swiper {
    width: 100%;
    height: 100%;
}

.slide-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.slide-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
    color: white;
}

.slide-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.slide-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 10px 24px;
    border-radius: 5px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    width: auto;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-outline {
    border: 2px solid white;
    color: white;
}

.btn-primary:hover {
    background: #1a4a8f;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

.swiper-button-prev,
.swiper-button-next {
    color: white;
}

.swiper-pagination-bullet {
    background: white;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
}

@media (max-width: 768px) {
    .slide-content h2 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .slide-buttons {
        flex-direction: column;
        gap: 10px;
    }
}

/* CTA Button Styles */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-button i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .cta-button {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--gray-light);
    overflow: hidden;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text {
    flex: 0 0 50%;
}

.section-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.section-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
}

.feature i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.feature span {
    font-weight: 500;
    font-size: 0.9rem;
}

.about-image {
    flex: 0 0 50%;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.5s ease;
}

.image-wrapper:hover {
    transform: translateY(-10px);
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(21, 96, 189, 0.2), transparent);
    z-index: 1;
    transition: all 0.5s ease;
}

.image-wrapper:hover::before {
    background: linear-gradient(45deg, rgba(21, 96, 189, 0.3), transparent);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

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

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    display: block;
    margin-bottom: 0.5rem;
}

.experience-badge .text {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.2;
}

.about-cta {
    margin-top: 1rem;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.services-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    width: 100%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0 auto 50px;
    width: 100%;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(21, 96, 189, 0.85) 0%, rgba(41, 128, 255, 0.85) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 0;
}

/* Background images for each card */
.service-card:nth-child(1)::after {
    background-image: url('imagescss/COMP1.jpg');
}

.service-card:nth-child(2)::after {
    background-image: url('imagescss/Installations.jpg');
}

.service-card:nth-child(3)::after {
    background-image: url('imagescss/COMP2.jpg');
}

.service-card:nth-child(4)::after {
    background-image: url('imagescss/COMP3.jpg');
}

.service-card:nth-child(5)::after {
    background-image: url('imagescss/Air-compressor-spare-parts.jpg');
}

.service-card:nth-child(6)::after {
    background-image: url('imagescss/COMP4.jpg');
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: transparent;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card:hover::before {
    opacity: 0.75;
}

.service-card:hover::after {
    opacity: 1;
    transform: scale(1.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(21, 96, 189, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--white);
    transform: rotateY(180deg);
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: rotateY(-180deg);
    color: var(--primary-color);
}

.service-card h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.service-card:hover h3,
.service-card:hover p {
    color: var(--white);
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .service-card {
        padding: 30px 20px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

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

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }
}

.services-cta {
    text-align: center;
    margin-top: 60px;
    width: 100%;
}

.services-section .cta-button {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.services-section .cta-button:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.services-section .cta-button i {
    transition: all 0.3s ease;
}

.services-section .cta-button:hover i {
    transform: translateX(5px);
    color: var(--primary-color);
}

/* CTA Band Section */
.cta-band {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2980ff 100%);
    padding: 60px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
}

.cta-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://i.imgur.com/JWB4nXJ.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.cta-band .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

.band-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 1000px;
}

.band-text {
    margin: 0 auto 30px;
}

.band-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.band-text p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.4;
}

.band-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    margin: 0 auto;
    width: 100%;
    max-width: 800px;
}

.stat-item {
    text-align: center;
    flex: 1;
    max-width: 180px;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .cta-band {
        padding: 40px 0;
        min-height: 300px;
    }

    .band-text h2 {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }

    .band-text p {
        font-size: 1rem;
        padding: 0;
    }

    .band-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-item {
        max-width: 100%;
    }

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

    .stat-label {
        font-size: 0.9rem;
    }
}

/* Products Section */
.products-section {
    padding: 100px 0;
    background-color: var(--white);
}

.products-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    width: 100%;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0 auto 60px;
    max-width: 1200px;
    padding: 0 20px;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(21, 96, 189, 0.85) 0%, rgba(41, 128, 255, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-overlay i {
    color: var(--white);
    font-size: 2.5rem;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-card:hover .product-overlay i {
    transform: translateY(0);
}

.product-content {
    padding: 25px;
}

.product-content h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .product-image {
        height: 200px;
    }

    .product-content {
        padding: 20px;
    }

    .product-content h3 {
        font-size: 1.2rem;
    }

    .product-content p {
        font-size: 0.9rem;
    }
}

.products-cta {
    text-align: center;
    padding-top: 20px;
    width: 100%;
}

.products-cta .cta-button {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    display: inline-block;
    padding: 15px 40px;
}

.products-cta .cta-button:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.products-cta .cta-button i {
    transition: all 0.3s ease;
}

.products-cta .cta-button:hover i {
    transform: translateX(5px);
    color: var(--primary-color);
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .products-section {
        padding: 70px 0;
    }

    .products-section .section-header {
        margin-bottom: 40px;
    }

    .products-section .section-header h2 {
        font-size: 2rem;
    }

    .products-section .section-header p {
        font-size: 1rem;
        margin-top: 15px;
    }

    .products-grid {
        margin-bottom: 40px;
    }

    .product-image {
        height: 200px;
    }

    .product-content {
        padding: 20px;
    }

    .product-content h3 {
        font-size: 1.2rem;
    }

    .products-cta {
        margin-top: 40px;
    }

    .products-cta .cta-button {
        padding: 12px 30px;
    }
}

/* Quote Section */
.quote-section {
    padding: 100px 0;
    background-color: #f8f9fa;
    overflow: hidden;
}

.quote-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.quote-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 600px;
}

.quote-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.quote-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

.quote-badge span {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.quote-badge i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.quote-content {
    padding-right: 50px;
}

.quote-content .section-subtitle {
    margin-bottom: 15px;
}

.quote-content .section-title {
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.quote-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.quote-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}

.quote-features .feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quote-features .feature i {
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.quote-features .feature span {
    color: var(--text-dark);
    font-size: 1.05rem;
    font-weight: 500;
}

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

@media (max-width: 992px) {
    .quote-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .quote-content {
        padding-right: 0;
    }

    .quote-image img {
        height: 400px;
    }

    .quote-content .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .quote-section {
        padding: 80px 0;
    }

    .quote-image {
        min-height: 400px;
    }

    .quote-badge {
        bottom: 20px;
        left: 20px;
        padding: 10px 20px;
    }

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

    .quote-content p {
        font-size: 1rem;
    }

    .quote-features .feature span {
        font-size: 1rem;
    }
}

/* Why Section */
.why-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.why-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-section .section-header {
    text-align: center;
    max-width: 700px;
    margin-bottom: 60px;
}

.why-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    margin-bottom: 50px;
}

.why-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: rgba(21, 96, 189, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.card-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.why-card:hover .card-icon {
    background: var(--primary-color);
}

.why-card:hover .card-icon i {
    color: var(--white);
}

.why-card h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.why-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.why-cta {
    text-align: center;
    width: 100%;
    margin-top: 20px;
}

.why-cta .cta-button {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
}

.why-cta .cta-button:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.why-cta .cta-button i {
    transition: all 0.3s ease;
}

.why-cta .cta-button:hover i {
    transform: translateX(5px);
    color: var(--primary-color);
}

@media (max-width: 1024px) {
    .why-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .why-section {
        padding: 60px 0;
    }

    .why-cards {
        grid-template-columns: 1fr;
        margin: 40px auto;
    }

    .why-card {
        padding: 30px 20px;
    }

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

    .card-icon i {
        font-size: 2rem;
    }

    .why-card h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .why-cta .cta-button {
        padding: 12px 30px;
    }
}

/* Highlight Band */
.highlight-band {
    position: relative;
    color: var(--white);
    padding: 60px 0;
    background-image: url('imagescss/Salle-compresseur.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.highlight-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    opacity: 0.5;
}

.band-content {
    position: relative;
    z-index: 1;
}

.highlight-band h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.stats {
    display: flex;
    justify-content: space-around;
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .highlight-band {
        padding: 40px 0;
        background-attachment: scroll;
    }
    
    .highlight-band h2 {
        font-size: 1.8rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
}

.footer-info {
    max-width: 400px;
}

.footer-logo {
    margin-bottom: 20px;
}

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

.footer-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link i {
    color: var(--white);
    font-size: 1.2rem;
}

.social-link:hover {
    background: var(--white);
}

.social-link:hover i {
    color: var(--primary-color);
}

.footer h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--white);
    opacity: 0.5;
}

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

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: var(--white);
    opacity: 0.8;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer ul li a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
}

.footer-contact ul li i {
    font-size: 1.1rem;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    width: 100%;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-info {
        grid-column: 1 / -1;
        max-width: 100%;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer ul li a {
        display: block;
        text-align: center;
    }

    .footer-contact ul li {
        justify-content: center;
    }

    .footer-bottom {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links,
    .footer-services,
    .footer-contact {
        text-align: center;
    }

    .footer ul li a:hover {
        padding-left: 0;
    }

    .footer-bottom {
        margin-top: 30px;
    }
}

/* Quote Form Styles */
.quote-form {
    padding: 40px;
}

.quote-form .section-subtitle {
    margin-bottom: 15px;
}

.quote-form .section-title {
    margin-bottom: 30px;
    font-size: 2.2rem;
    line-height: 1.3;
}

#quoteForm {
    display: grid;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group label {
    font-size: 0.9rem;
    margin-bottom: 4px;
    display: block;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(21, 96, 189, 0.1);
    outline: none;
    background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    cursor: pointer;
}

.form-group select:invalid {
    color: #999;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 12px;
    padding: 18px 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 12px rgba(21, 96, 189, 0.15);
}

.submit-button i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.submit-button:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1250a0 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(21, 96, 189, 0.2);
}

.submit-button:hover i {
    transform: translateX(5px);
}

.submit-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(21, 96, 189, 0.15);
}

@media (max-width: 768px) {
    .quote-form {
        padding: 30px 20px;
    }

    .quote-form .section-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 18px;
        font-size: 0.95rem;
    }

    .submit-button {
        padding: 16px 28px;
    }
}

/* Form Styles */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(21, 96, 189, 0.1);
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Notifications */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    animation: slideIn 0.3s ease;
}

.notification.success {
    border-left: 4px solid #4CAF50;
}

.notification.error {
    border-left: 4px solid #f44336;
}

.notification i {
    font-size: 1.5rem;
}

.notification.success i {
    color: #4CAF50;
}

.notification.error i {
    color: #f44336;
}

.notification p {
    margin: 0;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.notification.fade-out {
    animation: slideOut 0.3s ease forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .notification {
        bottom: 10px;
        right: 10px;
        left: 10px;
        padding: 12px 20px;
    }
}

/* Update button styles */
.btn-24-7 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-24-7:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1250a0 100%);
    transform: translateY(-2px);
}

.btn-24-7 i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .btn-24-7 {
        display: none;
    }
}

.lx-floating-whatsapp{
	position:fixed;
	z-index:6;
	bottom:80px;
	right:20px;
}
.lx-floating-whatsapp a{
	font-size:30px;
	color:#242424;
}

.top-bar {
    background: var(--primary-color);
    padding: 8px 0;
    color: white;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    height: auto ;
}

.top-bar a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.top-bar i {
    margin-right: 5px;
}

/* Newsletter Section */
.newsletter-section {
    background-color: var(--gray-light);
    padding: 80px 0;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.newsletter-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.newsletter-form .form-group {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.newsletter-form input[type="email"]:focus {
    border-color: var(--primary-color);
    outline: none;
}

.newsletter-form button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #1a4a8f;
}

.newsletter-form button i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }

    .newsletter-content h2 {
        font-size: 1.8rem;
    }

    .newsletter-form .form-group {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }

    .newsletter-form button {
        width: 100%;
        justify-content: center;
    }
}