/* ==========================================================================
   Elite Nettoyage 67 - Style CSS Principal (Premium Yellow & Blue 2026)
   ========================================================================== */

/* Reset de base & Optimisation */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #212529;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   Premium Header & Top Bar Navigation
   ========================================================================== */

.header-wrapper {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* Top Bar (மஞ்சள் நிறப் பகுதி) */
.top-bar {
    background-color: #002b66; 
    color: #f5f6f7;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 600;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left span {
    margin-right: 25px;
}

.top-right .social-icon {
    color: #002b66;
    text-decoration: none;
    margin-left: 15px;
    font-size: 14px;
}

/* Main Navigation Header (வெள்ளை நிறப் பகுதி) */
header {
    background-color: #ffffff;
    padding: 15px 0;
    border-bottom: 1px solid #eaeaea;
}

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

/* லோகோ வடிவமைப்பு */
.logo-area {
    display: flex;
    align-items: center;
    font-family: 'Arial Black', Gadget, sans-serif;
}

.logo-elite {
    font-size: 32px;
    font-weight: 900;
    color: #4e91de; 
    letter-spacing: -1px;
    margin-right: 8px;
    border-bottom: 3px solid #f1c40f;
}

.logo-sub {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-nettoyage {
    font-size: 14px;
    font-weight: bold;
    color: #4e91de; 
    letter-spacing: 1px;
}

.logo-france {
    font-size: 16px;
    font-weight: 900;
    color: #002b66;
    letter-spacing: 2px;
}

/* மெனு லிங்க்ஸ் */
nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 5px;
}

nav ul li a {
    text-decoration: none;
    color: #002b66;
    font-weight: 700;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

/* ஆக்டிவ் / ஹோவர் பக்கத்திற்கான ஸ்டைல் */
nav ul li a.active, nav ul li a:hover {
    background-color: #4e91de;
    color: #002b66;
}

/* வலது பக்க ஃபோன் மற்றும் Devis பட்டன் */
.header-right {
    display: flex;
    align-items: center;
}

.phone-link {
    text-decoration: none;
    color: #002b66;
    font-weight: 700;
    font-size: 16px;
    margin-right: 20px;
}

.btn-devis {
    text-decoration: none;
    background-color: #4e91de; 
    color: #ffffff;
    padding: 12px 24px;
    font-weight: bold;
    font-size: 16px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.btn-devis:hover {
    background-color: #001f4d;
}

/* ==========================================================================
   Hero & Content Sections
   ========================================================================== */

.hero {
    background: linear-gradient(rgba(0, 43, 102, 0.85), rgba(33, 37, 41, 0.8)), 
                url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?q=80&w=1200') no-repeat center center/cover;
    padding: 120px 0;
    text-align: center;
    color: #ffffff;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero p {
    font-size: 19px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.btn-main {
    display: inline-block;
    text-decoration: none;
    background-color: #4e91de;
    color: #f7f9fa;
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-main:hover {
    background-color: #001f4d;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

.services h2 {
    font-size: 32px;
    font-weight: 700;
    color: #002b66;
    margin-bottom: 40px;
}

.services-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service-card {
    background: #ffffff;
    padding: 40px 25px;
    border-radius: 8px;
    text-align: left;
    width: 30%;
    min-width: 280px;
    border: 1px solid #dee2e6;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #f1c40f;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #002b66;
}

.service-card p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.5;
}

/* ==========================================================================
   Contact Section Premium Styling
   ========================================================================== */
.contact {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.contact h2 {
    text-align: center;
    color: #002b66;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 15px;
}

.contact-subtitle {
    text-align: center;
    color: #6c757d;
    margin-bottom: 50px;
    font-size: 16px;
}

.contact-wrapper {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.04);
    border-left: 5px solid #4e91de; /* உங்களது பிரகாசமான நீல நிற பார்டர் */
}

.contact-info h3 {
    color: #002b66;
    font-size: 24px;
    margin-bottom: 25px;
    font-weight: 700;
}

.contact-info p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #333333;
    display: flex;
    align-items: center;
}

.contact-info a {
    text-decoration: none;
    color: #002b66;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #4e91de;
}

.info-icon {
    color: #4e91de; /* ஐகான்கள் நீல நிறத்தில் மின்னும் */
    margin-right: 15px;
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.contact-form {
    flex: 1.2;
    min-width: 320px;
    display: flex;
    flex-direction: column;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 15px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: #4e91de;
    box-shadow: 0 0 0 3px rgba(78, 145, 222, 0.1);
}

.contact-form .btn-main {
    border: none;
    cursor: pointer;
    width: 100%;
    padding: 15px;
    font-size: 16px;
}


/* ==========================================================================
   Contact Section Premium Styling For Mobile
   ========================================================================== */
@media (max-width: 768px) {
    /* 1. காண்டாக்ட் ரேப்பர் மற்றும் பொதுவான பிக்ஸ் */
    .contact-wrapper {
        flex-direction: column !important;
        gap: 30px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 10px !important;
    }

    /* 2. முகவரிப் பெட்டி (Contact Info Box) வடிவமைப்பு */
    .contact-info {
        width: 100% !important;
        max-width: 100% !important;
        padding: 25px 20px !important;
        box-sizing: border-box !important;
        background-color: #f8fafc; /* லேசான பிரீமியம் பின்னணி */
        border-radius: 12px;
        border-left: 5px solid #4e91de !important;
    }

    /* 3. ஸ்கிரீன்ஷாட்டில் உடைந்த வரிகளை கச்சிதமாகச் சரிசெய்யும் பகுதி */
    .contact-info p {
        display: flex !important;
        flex-direction: column !important; /* லேபிளையும் தகவலையும் ஒன்றன் கீழ் ஒன்றாக மாற்றும் */
        align-items: flex-start !important;
        gap: 4px !important;
        font-size: 15px !important;
        margin-bottom: 20px !important;
        line-height: 1.5 !important;
        position: relative;
        padding-left: 35px !important; /* ஐகானுக்காக இடதுபுறம் இடம் விடுதல் */
    }

    /* ஐகான்களை மட்டும் இடது ஓரத்தில் கச்சிதமாக நிலைநிறுத்த */
    .contact-info p .info-icon {
        position: absolute;
        left: 0;
        top: 4px;
        font-size: 18px !important;
        color: #4e91de !important;
    }

    /* 'Email:', 'Téléphone:' போன்ற தடித்த எழுத்துக்கள் */
    .contact-info p strong {
        color: #002b66;
        font-weight: 700;
    }

    /* லிங்க்குகள் மற்றும் தகவல்கள் உடைந்து சிதறாமல் தடுக்க */
    .contact-info p a, 
    .contact-info p span {
        display: inline-block;
        word-break: break-word !important; /* நீளமான மின்னஞ்சல் முகவரி திரையை விட்டு வெளியே போகாமல் தடுக்கும் */
        color: #4a5568;
        text-decoration: none;
    }

    /* 4. காண்டாக்ட் ஃபார்ம் மற்றும் இன்புட் பெட்டிகள் அலைன்மென்ட் */
    .contact-form {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .contact-form input, 
    .contact-form textarea {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important; /* இன்புட் பெட்டிகள் வெளியே போவதை இது முற்றிலும் தடுக்கும் */
        padding: 14px 16px !important;
        margin-bottom: 15px !important;
        border: 1px solid #cbd5e1 !important;
        border-radius: 8px !important;
        font-size: 15px !important;
        background-color: #ffffff !important;
    }

    /* சப்மிட் பட்டன் பிக்ஸ் */
    .contact-form .btn-main {
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 15px !important;
        font-size: 16px !important;
        font-weight: bold;
        border-radius: 8px !important;
        text-align: center;
    }

}

/* ==========================================================================
   Footer Section Premium Styling 
   ========================================================================== */

/* Footer */
footer {
    background-color: #002b66;
    color: #ffffff;
    padding: 40px 0;
    text-align: center;
    border-top: 4px solid #f1c40f;
}

/* Responsive (மொபைல் வடிவமைப்பு) */
@media (max-width: 992px) {
    .header-container, .top-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    nav ul {
        margin-top: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .header-right {
        margin-top: 15px;
        flex-direction: column;
        gap: 10px;
    }
    .phone-link {
        margin-right: 0;
    }
    .hero h1 {
        font-size: 32px;
    }
    .service-card {
        width: 100%;
    }
    
}
/* Top bar icons spacing */
/* ==========================================================================
   Fixes for Top Bar Icons & Menu Hover
   ========================================================================== */

/* டாப் பார் சமூக ஊடக லிங்க் நிறம் (வெள்ளை/சாம்பல்) */
.top-right .social-icon {
    color: #f5f6f7;
    text-decoration: none;
    margin-left: 15px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.top-right .social-icon:hover {
    color: #f1c40f; /* ஹோவர் செய்யும்போது மஞ்சள் நிறமாக மாறும் */
}

/* மெனு ஹோவர் செய்யும்போது எழுத்து வெள்ளை நிறமாக மாற */
nav ul li a.active, nav ul li a:hover {
    background-color: #4e91de;
    color: #ffffff; /* உங்களது #002b66-க்கு பதிலாக #ffffff */
}

/* டாப் பார் ஐகான்கள் வெள்ளை நிறத்தில் பளிச்சென்று தெரிய */
.top-left i {
    margin-right: 6px;
    color: #ffffff; /* நீலப் பின்னணியில் தெளிவாகத் தெரிய வெள்ளை */
    font-size: 14px;
}

.top-right .social-icon i {
    margin-right: 4px;
    color: #ffffff; /* இங்கும் வெள்ளை நிற ஐகான் */
}
/* ==========================================================================
   À Propos (About Us) Section Styling
   ========================================================================== */
.propos {
    padding: 100px 0;
    background-color: #ffffff;
}

.propos-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.propos-content {
    flex: 1;
    min-width: 320px;
}

.propos-content .subtitle {
    color: #4e91de;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 10px;
}

.propos-content h2 {
    color: #002b66;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.propos-content .highlight {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 20px;
    line-height: 1.5;
}

.propos-content p {
    color: #6c757d;
    font-size: 16px;
    margin-bottom: 30px;
}

/* Features List */
.propos-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.feature-item i {
    color: #4e91de; /* பிரகாசமான நீல நிற டிக் மார்க் */
    font-size: 20px;
    background: rgba(78, 145, 222, 0.1);
    padding: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item span {
    font-size: 16px;
    color: #212529;
}

/* Right Side Image & Badge */
.propos-image {
    flex: 1;
    min-width: 320px;
    position: relative;
}

.propos-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: #002b66;
    color: #ffffff;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    border-bottom: 4px solid #f1c40f; /* கீழ் பகுதி மஞ்சள் பார்டர் */
    text-align: center;
}

.badge-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #f1c40f;
    line-height: 1;
    margin-bottom: 5px;
}

.badge-text {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive adjustment */
@media (max-width: 992px) {
    .propos {
        padding: 60px 0;
    }
    .propos-wrapper {
        flex-direction: column-reverse; /* மொபைலில் படம் கீழே வரும் */
        gap: 40px;
    }
    .experience-badge {
        bottom: 20px;
        left: 20px;
    }
}

/* ==========================================================================
   Popup Modal Premium Styling
   ========================================================================== */
.modal {
    display: none; /* ஆரம்பத்தில் மறைந்திருக்கும் */
    position: fixed;
    z-index: 2000; /* ஹெடரையும் தாண்டி மேலே தெரிய */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 43, 102, 0.6); /* அடர் நீல மங்கல் பின்னணி */
    backdrop-filter: blur(5px); /* லேசான பிளர் எஃபெக்ட் */
}

.modal-content {
    background-color: #ffffff;
    margin: 5% auto;
    padding: 35px;
    border-radius: 16px;
    width: 90%;
    max-width: 650px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    position: relative;
    animation: fadeInModal 0.4s ease;
}

@keyframes fadeInModal {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-btn {
    position: absolute;
    right: 25px;
    top: 20px;
    color: #aaa;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}

.close-btn:hover {
    color: #002b66;
}

.modal-content h2 {
    color: #002b66;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 5px;
}

.modal-subtitle {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 25px;
}

/* Form Styles inside Popup */
.form-section-title {
    color: #4e91de;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 15px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.popup-form input, .popup-form select, .popup-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
}

.popup-form input:focus, .popup-form select:focus, .popup-form textarea:focus {
    outline: none;
    border-color: #4e91de;
    box-shadow: 0 0 0 3px rgba(78, 145, 222, 0.1);
}

.form-row {
    display: flex;
    gap: 15px;
}

.btn-popup-submit {
    background-color: #002b66;
    color: #ffffff;
    border: none;
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.btn-popup-submit:hover {
    background-color: #4e91de;
}
/* ==========================================================================
   Popup Modal Premium Styling For Mobile
   ========================================================================== */

@media (max-width: 768px) {
    /* 1. பாப்-அப் பெட்டி மொபைல் திரையின் நடுவில் கச்சிதமாக அமர */
    .modal-content {
        margin: 8% auto !important; /* மேல், கீழ் 8% இடைவெளி, இடது-வலது சமமாக அமர auto */
        padding: 20px !important; /* உள் இடைவெளி குறைக்கப்பட்டுள்ளது */
        width: 90% !important; /* திரையின் அகலத்தில் 90% மட்டுமே எடுக்கும் */
        max-width: 90% !important; /* வலதுபுறம் தப்பித்து போகாமல் தடுக்க */
        box-shadow: 0 10px 30px rgba(0,0,0,0.2) !important;
        box-sizing: border-box !important; /* மிக முக்கியம்: பேடிங்கையும் பெட்டிக்குள்ளேயே வைக்கும் */
        max-height: 80vh !important; /* கீபோர்டு வந்தால் உள்ளேயே ஸ்க்ரோல் செய்ய */
        overflow-y: auto !important;
        border-radius: 12px !important;
    }

    /* 2. ஃபார்ம் மற்றும் அதன் உள்ளே இருக்கும் பெட்டிகள் வெளியே போவதைத் தடுக்கும் மேஜிக் */
    .popup-form {
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* அனைத்து உள்ளீட்டுப் பெட்டிகளையும் பெட்டியின் அளவுக்குள் சுருக்குதல் */
    .popup-form input, 
    .popup-form select, 
    .popup-form textarea {
        width: 100% !important; /* 100% கொடுத்தாலும் box-sizing இருப்பதால் வெளியே போகாது */
        max-width: 100% !important;
        box-sizing: border-box !important; /* பார்டர் மற்றும் பேடிங் பெட்டியின் அகலத்திற்குள் அடங்கும் */
        margin-bottom: 12px !important;
        padding: 10px 12px !important; /* மொபைலுக்கு உகந்த பேடிங் */
    }

    /* 3. இரு பத்திகள் (Form Row) மொபைலில் 100% ஒரே வரியாக மாற */
    .form-row {
        flex-direction: column !important;
        gap: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .form-row input {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* 4. சமர்ப்பிக்கும் பட்டன் (Submit Button) பிக்ஸ் */
    .btn-popup-submit {
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px !important;
        margin-top: 5px !important;
    }

    /* 5. மூடும் (X) பட்டன் அலைன்மென்ட் */
    .close-btn {
        right: 15px !important;
        top: 10px !important;
        font-size: 28px !important;
    }
}
/* ==========================================================================
   Responsive Mobile Support (768px & 下)
   ========================================================================== */

@media (max-width: 768px) {
    /* 1. ஹெடர் கண்டெய்னரை ஒரே வரியில் இரு ஓரங்களுக்கும் பிரித்தல் */
    .header-container {
        display: flex !important;
        flex-direction: row !important; /* மேலிருந்து கீழாக வராமல், இடமிருந்து வலமாக இருக்க */
        justify-content: space-between !important; /* லோகோ இடதுபுறமும், பட்டன் வலதுபுறமும் பிரியும் */
        align-items: center !important; /* இரண்டும் ஒரே நேர்கோட்டில் அமர */
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 10px 20px !important;
    }

    /* 2. லோகோ பகுதி மொபைலில் 100% இடத்தை எடுப்பதைத் தடுத்தல் */
    .logo-area {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        max-width: 70%;
        text-align: left;
    }

    /* டெஸ்க்டாப் போன் மற்றும் தேவிஸ் பட்டன்களை மொபைலில் மறைத்தல் */
    .header-right {
        display: none !important;
    }

    /* 3. மொபைல் மெனு பட்டனை வலது ஓரத்தில் கச்சிதமாகக் காட்டுதல் */
    .menu-toggle {
        display: block !important;
        font-size: 26px;
        color: #002b66;
        cursor: pointer;
        padding: 5px;
        z-index: 1001;
    }

    /* 4. மெனுவை மொபைல் வியூவிற்கு மாற்றுதல் (Dropdown Menu) */
    nav {
        display: none; /* தொடக்கத்தில் மறைந்திருக்கும் */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        z-index: 999;
    }

    nav.active {
        display: block !important; /* பட்டனை அழுத்தும்போது காட்டும் */
    }

    nav ul {
        flex-direction: column !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    nav ul li {
        width: 100% !important;
        margin: 0 !important;
        text-align: center;
        border-bottom: 1px solid #eaeaea;
    }

    nav ul li a {
        display: block !important;
        padding: 15px !important;
        width: 100%;
        box-sizing: border-box;
        border-radius: 0 !important;
    }

    /* 5. மொபைல் சிறப்பு பட்டன்கள் */
    .mobile-only {
        display: block !important;
    }
    
    .btn-devis-mob {
    background-color: #002b66 !important;
    color: white !important;
    font-weight: bold;
    margin: 10px auto !important; /* இடது, வலது பக்கங்களை 'auto' ஆக்கினால் வெளியே போகாது */
    padding: 12px !important;
    border-radius: 6px;
    display: block !important;
    text-decoration: none;
    width: 90% !important; /* பெட்டிக்குள்ளேயே 90% அகலத்தில் கச்சிதமாக அமர */
    text-align: center !important; /* எழுத்துக்கள் நடுவில் வர */
    box-sizing: border-box !important; /* பேடிங் மற்றும் மார்ஜின் எல்லையைத் தாண்டாமல் தடுக்க */
}

    /* டாப் பார் மற்றும் இதர பகுதிகள் மொபைலில் சீரமைப்பு */
    .top-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    .top-left span {
        margin-right: 0;
        display: block;
        margin-bottom: 3px;
    }
    .hero h1 {
        font-size: 28px;
    }
    .hero p {
        font-size: 16px;
    }
    .service-card {
        width: 100%;
    }
    .contact-wrapper, .propos-wrapper {
        flex-direction: column-reverse;
        gap: 30px;
    }
    .experience-badge {
        bottom: 10px;
        left: 10px;
    }
}
/* மொபைல் மெனு பட்டனை டெஸ்க்டாப்பில் மறைத்தல் */
.menu-toggle, .mobile-only {
    display: none;
}