/* ===== BASE STYLES & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #213c3e; /* Deep Green */
    --secondary-color: #256247; /* Lighter Green */
    --accent-color: #3c8a6d; /* Light Green */
    --dark-color: #022310; /* Dark Green */
    --light-color:#fbfbfb; /* Light Cream */
    --text-color: #3f4943;
    --white: #ffffff;
    --gray: #474e4a;
    --light-gray: #edeff0;
    --dark-gray: #495057;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.25);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: var(--white);
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

/* ===== HIDDEN SEO CONTENT ===== */
.seo-content {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== FIXED CONTAINER WIDTH ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    width: 100%;
}

/* ===== PAGE LOADER ===== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
    color: var(--white);
    padding: 40px;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.logo-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.clean-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    animation: sparkle 2s infinite;
}

@keyframes sparkle {
    0%, 100% { transform: rotate(0deg); opacity: 1; }
    50% { transform: rotate(15deg); opacity: 0.8; }
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    margin: 20px auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loader-content p {
    font-size: 1.1rem;
    margin-top: 20px;
    opacity: 0.9;
    font-weight: 300;
}

/* ===== FIXED NAVIGATION STYLES - COMPLETELY REBUILT ===== */
.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.98);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 65px;
    position: relative;  

}

.logo img {
    height: 85px;
    padding-top: 7px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo{
    max-width: 100%;
}

.logo img:hover {
    transform: scale(1.05);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 26px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10001;
    position: relative;
}

.hamburger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--dark-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-menu-container {
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 32px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.92rem;
    position: relative;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

#customer_support {
    color: var(--light-color);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

#customer_support:hover {
    color: var(--white);
}


/* Primary Button in Nav */
.btn-primary-nav-main {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    box-shadow: 0 4px 12px rgba(34, 139, 34, 0.25);
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
}

.btn-primary-nav-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(34, 139, 34, 0.35);
}

/* ===== WHATSAPP CHAT BUTTON ===== */
.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 35px;
    right: 35px;
    background-color: #25D366; /* WhatsApp green */
    color: white;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 3px solid white;
    animation: pulse-whatsapp 2s infinite;
    will-change: transform, opacity;
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(12deg);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    animation: none;
}

.whatsapp-icon {
    margin-top: 3px;
    font-size: 30px !important;
}

.whatsapp-tooltip {
    position: absolute;
    bottom: 80px;
    right: 0;
    background: var(--dark-color);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 15px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    font-weight: 500;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(0);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 28px;
    width: 20px;
    height: 20px;
    background: var(--dark-color);
    transform: rotate(45deg);
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===== FORM SUCCESS MODAL ===== */
.form-success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.form-success-modal.show {
    opacity: 1;
    visibility: visible;
}

.success-content {
    background: white;
    border-radius: 28px;
    padding: 45px;
    text-align: center;
    max-width: 550px;
    width: 90%;
    box-shadow: var(--shadow-lg);
    transform: translateY(30px);
    transition: transform 0.5s ease, opacity 0.5s ease;
    position: relative;
}

/*.form-success-modal.show .success-content {
    transform: translateY(0);
}*/

.success-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 35px;
    color: white;
    font-size: 4rem;
    animation: pop-in 0.5s ease-out;
}

@keyframes pop-in {
    0% { transform: scale(0); }
    70% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.success-title {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 25px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

.success-message {
    color: var(--gray);
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 35px;
}

.success-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 16px 55px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(34, 139, 34, 0.4);
    font-family: 'Poppins', sans-serif;
}

.success-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(34, 139, 34, 0.5);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--gray);
    cursor: pointer;
    transition: color 0.3s;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    color: var(--dark-color);
    background: var(--light-color);
}

/* ===== FORM ERROR MODAL ===== */
.form-error-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.form-error-modal.show {
    opacity: 1;
    visibility: visible;
}

.error-content {
    background: white;
    border-radius: 28px;
    padding: 45px;
    text-align: center;
    max-width: 550px;
    width: 90%;
    box-shadow: var(--shadow-lg);
    transform: translateY(30px);
    transition: transform 0.5s ease, opacity 0.5s ease;
    position: relative;
}

.error-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 35px;
    color: white;
    font-size: 4rem;
    box-shadow: 0 12px 40px rgba(255, 107, 107, 0.5);
    animation: pop-in 0.5s ease-out;
}

.error-title {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 25px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

.error-message {
    color: var(--gray);
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 35px;
}

.error-btn {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    border: none;
    padding: 16px 55px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
    font-family: 'Poppins', sans-serif;
}

.error-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.5);
}

/* ===== MODERN HERO SECTION ===== */
.hero-modern {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 45px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px) brightness(0.6);
    transition: transform 0.7s ease;
    will-change: transform;
}

.hero-bg:hover img {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.85) 0%, rgba(26, 102, 26, 0.92) 100%);
    z-index: -1;
}

.hero-blur {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 70%);
    z-index: -1;
    animation: pulse 15s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.5; }
    100% { transform: scale(0.8); opacity: 0.3; }
}

.hero-content-modern {
    text-align: center;
    max-width: 900px;
    position: relative;
    z-index: 10;
    animation: fadeInUp 1s ease-out;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 100px;
}

@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(50px);
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    margin-top: 15px;
    margin-bottom: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    font-size: 1.1rem;
}

.hero-content-modern h1 {
    font-size: 4.8rem;
    text-transform: uppercase;
    margin-bottom: 30px;
    line-height: 1.1;
    background: linear-gradient(to right, #ffffff, #e0f0e0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-weight: 800;
}

.hero-content-modern h1 span {
    background: linear-gradient(to right, #a8e6a3, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: capitalize;
    position: relative;
    display: block;
    margin-top: 12px;
    font-size: 50px;
}

.hero-content-modern h1 span::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 14px;
    background: rgba(168, 230, 163, 0.3);
    z-index: -1;
    border-radius: 8px;
}

.hero-subtitle {
    font-size: 1.45rem;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 45px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 300;
}

.hero-buttons-modern {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 55px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.btn-lg {
    padding: 18px 50px;
    font-size: 1.25rem;
    border: solid 2px grey;
    color: whitesmoke;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-lg:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 18px 50px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 45px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.6rem;
    font-weight: 800;
    color: white;
    display: block;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    font-weight: 300;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 10;
    animation: bounce 2s infinite;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    height: 5%;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-20px); }
    60% { transform: translateX(-50%) translateY(-10px); }
}

.scroll-down {
    width: 32px;
    height: 52px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 25px;
    position: relative;
    margin: 0 auto 15px;
}

.scroll-down::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { top: 10px; opacity: 1; }
    100% { top: 32px; opacity: 0; }
}

/* ===== MODERN SERVICES SECTION - WITH SLIDE-DOWN HOVER EFFECT ===== */
.services-modern {
    padding: 58px 0 15px;
    background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.service-detail-grid 
.service-detail{
    padding-top: 50%;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    border: #000000 solid 3px;
    max-width: 980px;
    width: 80%;
    height: 40%;
    width: 50%;
}

.Solution_text {
    margin: 15px 10px;
}

.service-detail {
    display: flex;
}

.service-detail-image{
    width: 100%;
    border-radius: 30px;
}

.service-detail-image > img {
    width: 40%;
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
    margin-bottom: 65px;
}

.service-card-modern {
    background: white;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
    height: 430px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    cursor: pointer;
    will-change: transform;
}

.service-card-modern:hover {
    transform: translateY(-18px) scale(1.04);
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    will-change: transform;
}

.service-card-modern:hover .card-bg img {
    transform: scale(1.15) translateY(-15px);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.3) 70%, transparent 100%);
    z-index: 2;
    transition: opacity 0.5s ease;
}

.service-card-modern:hover .card-overlay {
    opacity: 0.4;
}

.card-icon-modern {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10.5rem;
    color: rgba(255, 255, 255, 0.15);
    z-index: 3;
    width: 100%;
    text-align: center;
    line-height: 1;
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.3));
    font-weight: 900;
    pointer-events: none;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.service-card-modern:hover .card-icon-modern {
    transform: translate(-50%, -50%) scale(0.95) translateY(-10px);
    opacity: 0.8;
}

.card-content-modern {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top-left-radius: var(--border-radius-lg);
    border-top-right-radius: var(--border-radius-lg);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                background 0.4s ease, 
                box-shadow 0.4s ease;
    z-index: 4;
    transform: translateY(0);
}

/* CRITICAL: Service card slide-down hover effect */
.service-card-modern:hover .card-content-modern {
    transform: translateY(35px);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.15);
}

.card-content-modern h3 {
    font-size: 1.85rem;
    margin-bottom: 18px;
    color: var(--dark-color);
    transition: color 0.3s, transform 0.3s;
    font-weight: 700;
}

.service-card-modern:hover .card-content-modern h3 {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.card-content-modern p {
    color: var(--gray);
    margin-bottom: 28px;
    line-height: 1.7;
    font-size: 1.05rem;
    transition: color 0.3s, transform 0.3s;
}

.service-card-modern:hover .card-content-modern p {
    color: var(--dark-gray);
    transform: translateY(-3px);
}

.read-more-modern {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
    padding: 10px 0;
}

.read-more-modern span {
    margin-right: 8px;
    position: relative;
    padding-bottom: 3px;
}

.read-more-modern span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.read-more-modern:hover span::after {
    width: 100%;
}

.read-more-modern i {
    transition: transform 0.3s;
    margin-left: 5px;
    font-size: 0.9em;
}

.read-more-modern:hover i {
    transform: translateX(5px);
}

.services-button-modern {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: 25px;
}

#services-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}


#span_link{
    font-size: 0.9rem;
    margin-bottom: 18px;
    color: var(--dark-color);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
}

.btn-xl {
    padding: 15px 10px;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(34, 139, 34, 0.35);
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    font-weight: 600;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.btn-xl i {
  padding-right: 10px;
  padding-bottom: 2px;
}

.btn-xl:hover {
    box-shadow: 0 10px 35px rgba(34, 139, 34, 0.45);
    transform: translateY(-5px);
}

/* ===== JOBS SECTION ===== */
.jobs-section {
    margin-top: 5px;
    padding: 15px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.jobs-scroller-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    padding: 25px 0;
    z-index: 2;
}

.jobs-scroller-track {
    display: flex;
    gap: 35px;
    animation: scroll 45s linear infinite;
    width: calc(298px * 9 + 35px * 8);
    padding: 25px 0;
}

#jobs-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 15px;
    margin-top: 70px;
    color: var(--dark-color);
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

.jobs-scroller-track.paused {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-298px * 3 - 35px * 3)); }
}

.job-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-width: 298px;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.job-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

.job-image {
    position: relative;
    height: 190px;
    overflow: hidden;
}

.job-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    will-change: transform;
}

.job-card:hover .job-image img {
    transform: scale(1.1);
}

.job-badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    background: var(--primary-color);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
}

.job-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.job-content h3 {
    font-size: 1.55rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.job-location {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.job-stats {
    display: flex;
    gap: 22px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--light-gray);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    color: var(--dark-gray);
}

.stat-item i {
    color: var(--primary-color);
    font-size: 1rem;
}

.job-testimonial {
    font-style: italic;
    color: var(--gray);
    margin-bottom: 18px;
    line-height: 1.6;
    font-size: 1.05rem;
    flex-grow: 1;
}

.client-name {
    font-weight: 600;
    color: var(--dark-color);
    display: block;
    text-align: right;
    font-size: 1rem;
}

.scroller-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 35px;
    position: relative;
    z-index: 3;
}

.scroller-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.scroller-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.view_all i{
    padding-right: 20px;
    padding-bottom: 2px;
    padding-top: 3px;

}

.view-all-jobs {
    text-align: center;
    margin-top: 45px;
    margin-bottom: 65px;
}

.view-all-jobs .btn {
    padding: 16px 45px;
    font-size: 1.15rem;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.view-all-jobs .btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* ===== ABOUT PAGE STYLES ===== */
.about-page {
    padding: 130px 0 55px;
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

#about-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

.about-header {
    text-align: center;
    margin-bottom: 75px;
    animation: fadeInUp 1s ease-out;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
    margin-top: 55px;
    animation: fadeInUp 1s ease-out;
}

.about-text h2 {
    font-size: 2.1rem;
    margin-bottom: 22px;
    margin-top: 20px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 12px;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

.about-text p {
    color: var(--gray);
    margin-bottom: 28px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.why-choose-list {
    list-style: none;
    margin-top: 25px;
}

.why-choose-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--dark-color);
    font-size: 1.05rem;
}

.why-choose-list i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
    will-change: transform;
}

.about-image:hover img {
    transform: scale(1.05);
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    margin-top: 15px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

.stat-item {
    text-align: center;
    padding: 18px;
    gap: 15px;
}

.stat-number {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--accent-color);
    display: block;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

#stats_about_section {
    color: var(--dark-color);
}

.stat-label {
    font-size: 1.3rem;
    color: var(--light-color);
    padding: 5px;
    display: block;
    font-weight: 500;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 30px 0;
    background: linear-gradient(to bottom, var(--light-color) 0%, white 100%);
    position: relative;
    overflow: hidden;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

#faq-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 22px 25px;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--light-color);
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: var(--light-color);
}

.faq-answer[hidden] {
    display: block;
}

.faq-answer[hidden] ~ .faq-answer {
    max-height: 0;
    padding: 0 25px;
}

.faq-answer:not([hidden]) {
    max-height: 500px;
    padding: 25px;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 15px;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 45px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

#testimonials-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 55px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: white;
    padding: 45px 35px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.testimonial-rating {
    margin-bottom: 25px;
}

.testimonial-rating i {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin: 0 2px;
}

.testimonial-text {
    font-style: italic;
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 1.05rem;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: -10px;
    font-size: 3rem;
    color: var(--light-gray);
    opacity: 0.5;
}

.testimonial-text::after {
    content: '"';
    position: absolute;
    bottom: -25px;
    right: -10px;
    font-size: 3rem;
    color: var(--light-gray);
    opacity: 0.5;
}

.testimonial-author h4 {
    color: var(--dark-color);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.testimonial-author p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ===== AREAS SECTION ===== */
.areas {
    padding: 75px 0;
    background-color: var(--white);
}

#areas-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    margin-top: 55px;
}

.area-card {
    background-color: var(--light-color);
    padding: 45px 35px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

.area-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.area-card i {
    font-size: 3.8rem;
    color: var(--primary-color);
    margin-bottom: 28px;
    display: block;
}

.area-card h3 {
    font-size: 1.85rem;
    margin-bottom: 22px;
    color: var(--dark-color);
}

.area-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-page {
    padding: 100px 0 110px;
    background: linear-gradient(to bottom, var(--light-color) 0%, white 100%);
    position: relative;
    overflow: hidden;
}

.btn-block i {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

#contact-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

#contact_get_in{
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray);
    animation: fadeInUp 1s ease-out;
}

.contact_sect_des{
    text-align: center;
    font-size: 1.2rem;
}

.contact-header {
    text-align: center;
    margin-bottom: 75px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    margin-top: 55px;
    animation: fadeInUp 1s ease-out;
}


.contact-grid-wrapper {
    display: grid;
    justify-items: center;
    grid-template-columns: 1fr;
    gap: 70px;
    margin-top: 55px;
    animation: fadeInUp 1s ease-out;
}


.contact-grid-wrapper h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    text-align: center;
    color: var(--dark-color);
}


.contact-intro {
    color: var(--gray);
    margin-bottom: 40px;
    font-size: 1.05rem;
}

#contact_faq {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray);
    margin-top: 25px;
}

#contact-faq-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

#emergency-title{
    text-align: center;
    font-size: 2rem;
    margin-bottom: 15px;
}

#support-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-description {
    text-align: center;
    margin-bottom: 35px;
    font-size: 1.35rem;
    line-height: 1.7;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--light-gray);
}

.info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-item i {
    font-size: 1.6rem;
    color: var(--primary-color);
    min-width: 60px;
    padding-top: 8px;
}

.info-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.info-item p {
    color: var(--gray);
    line-height: 1.7;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    font-weight: 400;
}

.info-subtext {
    color: var(--gray);
    font-size: 0.95rem;
    margin-top: 5px;
}

.info-item a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-form h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.contact-form p {
    color: var(--gray);
    margin-bottom: 35px;
    font-size: 1.15rem;
    line-height: 1.7;
}

.contact-form .form-group {
    margin-bottom: 28px;
}

.contact-form label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1.05rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius-sm);
    font-size: 1.05rem;
    transition: border-color 0.3s;
    font-family: 'Poppins', sans-serif;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(34, 139, 34, 0.15);
}

.contact-faq {
    padding: 65px 0;
    background-color: var(--white);
}

#contact_support {
    font-size: 1.9rem;
    margin-top: 25px;
}

.error-message {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 8px;
    display: block;
    font-weight: 500;
    min-height: 1.5em;
    padding-left: 5px;
}

input.error,
select.error,
textarea.error {
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15) !important;
}

.btn-block {
    width: 100%;
    padding: 20px;
    font-size: 1.25rem;
    margin-top: 10px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(34, 139, 34, 0.3);
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(34, 139, 34, 0.4);
}

#btn-block {
    margin-bottom: 8px;
}

/* ===== SUPPORT PAGE STYLES ===== */
.support-page {
    padding: 130px 0 110px;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.support-features {
    padding: 50px 0;
    background: linear-gradient(to bottom, var(--light-color) 0%, white 100%);
    position: relative;
    overflow: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 55px;
    position: relative;
    z-index: 2;
}

.feature-card {
    text-align: center;
    padding: 45px 35px;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.feature-card i {
    font-size: 3.8rem;
    color: var(--primary-color);
    margin-bottom: 28px;
    display: block;
}

.feature-card h3 {
    font-size: 1.85rem;
    margin-bottom: 22px;
    color: var(--dark-color);
}

.feature-card p {
    color: var(--gray);
    line-height: 1.7;
}

#features-title{
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-family: 'Montserrat', sans-serif;
}

.emergency-contact {
    padding: 65px 0;
    background: linear-gradient(to bottom, var(--light-color) 0%, white 100%);
}

.emergency-header {
    text-align: center;
    margin-bottom: 75px;
}

.emergency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 55px;
}

.emergency-card {
    background: white;
    padding: 50px 40px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

.emergency-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.emergency-icon {
    font-size: 4.8rem;
    color: var(--primary-color);
    margin-bottom: 28px;
    display: block;
}

.emergency-card h3 {
    font-size: 1.85rem;
    margin-bottom: 22px;
    color: var(--dark-color);
}

.emergency-phone {
    font-size: 1.85rem;
    color: var(--primary-color);
    margin-bottom: 18px;
    font-weight: 600;
}

.emergency-phone a {
    color: inherit;
    text-decoration: none;
}

.emergency-text {
    color: var(--gray);
    line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, #0d4d0d 100%);
    color: var(--white);
    padding: 55px 0 50px;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 45px;
    position: relative;
    z-index: 2;
    margin-bottom: 65px;
}

.footer-section h3 {
    font-size: 1.85rem;
    margin-bottom: 28px;
    color: var(--accent-color);
    position: relative;
    padding-bottom: 14px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 28px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 18px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1.05rem;
    display: block;
    padding: 5px 0;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 18px;
    margin-top: 25px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.3rem;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

#newsletterForm {
    display: flex;
    margin-top: 25px;
}

#newsletterForm input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

#newsletterForm button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0 28px;
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

#newsletterForm button:hover {
    background-color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    position: relative;
    z-index: 2;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 110px;
    right: 43px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    will-change: transform, opacity;
}

.back-to-top:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.back-to-top:active {
    transform: translateY(-2px);
}

/* ===== FORM VALIDATION STYLES ===== */
.form-group {
    position: relative;
    margin-bottom: 28px;
}

.form-group.shake {
    animation: shake 0.5s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-6px); }
    20%, 40%, 60%, 80% { transform: translateX(6px); }
}

/* Form button loading state */
button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

/* Notification styles for form feedback */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    animation: slideIn 0.3s ease-out;
    opacity: 1;
    transition: opacity 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.notification.success {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
}

.notification.error {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
}

@keyframes slideIn {
    from { transform: translateX(150px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */
/* Focus states already handled with modern styling */

/* Skip to content link (hidden until focused) */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
}

.skip-link:focus {
    top: 0;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ===== RESPONSIVE DESIGN - COMPLETELY FIXED ===== */
@media (max-width: 1200px) {
    .container,
    .nav-container {
        padding: 0 40px;
    }
    
    .hero-content-modern h1 {
        font-size: 4.3rem;
    }
    
    .section-title {
        font-size: 2.9rem;
    }
    
    .services-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    }
    
    .service-card-modern {
        height: 450px;
    }
    
    .card-icon-modern {
        font-size: 9.5rem;
    }
    
    .jobs-scroller-track {
        width: calc(278px * 9 + 30px * 8);
        gap: 30px;
        animation-duration: 55s;
    }
    
    .job-card {
        min-width: 278px;
    }
    
    .job-image {
        height: 170px;
    }
    
    .job-content {
        padding: 25px;
    }
    
    .job-content h3 {
        font-size: 1.45rem;
    }
    
    .scroller-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .view-all-jobs .btn {
        padding: 14px 40px;
        font-size: 1.05rem;
    }
    
    .about-grid,
    .contact-grid,
    .support-grid {
        display: flex;
        flex-direction: column;
    }
    
    .footer-grid {
        gap: 35px;
    }
    
    .footer-section h3 {
        font-size: 1.7rem;
    }
    
    .footer-section ul li a {
        font-size: 1rem;
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    #newsletterForm input {
        padding: 13px 15px;
        font-size: 0.95rem;
    }
    
    #newsletterForm button {
        padding: 0 22px;
        font-size: 0.95rem;
    }
    
    .footer-bottom {
        font-size: 1rem;
        padding-top: 30px;
    }
    
    .back-to-top {
        bottom: 100px;
        right: 30px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 25px;
        right: 25px;
    }
    
    .whatsapp-icon {
        font-size: 26px !important;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
    
    .success-content {
        padding: 50px 30px;
    }
    
    .success-title {
        font-size: 2.1rem;
    }
    
    .success-message {
        font-size: 1.1rem;
    }
    
    .success-btn {
        padding: 14px 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .container,
    .nav-container {
        padding: 0 35px;
    }
    
    .nav-menu {
        gap: 28px;
    }

    .hamburger {
        display: flex;
    }

.hamburger-line {
    display: block;
    height: 4px;
    width: 100%;
    background-color: var(--dark-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-menu-container {
    display: block;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 30px;
    gap: 32px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.92rem;
    position: relative;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}



.nav-menu-container.active {
    max-height: 900px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}



/* Hide desktop menu */
.nav-menu-container {
    position: fixed;
    top: 55px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, box-shadow 0.3s ease;
    z-index: 9998;
}

.btn-primary-nav-main {
    padding: 9px 22px;
    font-size: 1rem;
    height: 40px;
}

.hero-modern {
    min-height: 650px;
    padding-top: 45px;
}

.hero-content-modern h1 {
    font-size: 3.2rem;
}

.hero-subtitle {
    font-size: 1.35rem;
    padding: 0 15px;
}

.hero-buttons-modern {
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.btn-lg {
    width: 100%;
    max-width: 400px;
    justify-content: center;
}

.hero-stats {
    gap: 30px;
    flex-wrap: wrap;
}

.stat-number {
    font-size: 2.2rem;
}

.stat-label {
    font-size: 1.05rem;
}

.section-title {
    font-size: 2.5rem;
}

.section-description {
    font-size: 1.2rem;
}

.services-grid-modern {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.service-card-modern {
    height: 470px;
}

.card-icon-modern {
    font-size: 9rem;
}

.card-content-modern {
    padding: 35px 25px 25px;
}

.card-content-modern h3 {
    font-size: 1.75rem;
}

.jobs-scroller-track {
    width: calc(268px * 9 + 25px * 8);
    gap: 25px;
    animation-duration: 50s;
}

.job-card {
    min-width: 268px;
}

.job-image {
    height: 160px;
}

.job-content {
    padding: 25px;
}

.job-content h3 {
    font-size: 1.4rem;
}

.scroller-btn {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
}

.view-all-jobs .btn {
    padding: 14px 35px;
    font-size: 1.05rem;
}

.contact-grid,
.support-grid {
    grid-template-columns: 1fr;
    gap: 60px;
}

.info-item {
    gap: 20px;
}

.info-item i {
    font-size: 2rem;
    min-width: 50px;
}

.info-item h4 {
    font-size: 1.4rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.support-form input,
.support-form select,
.support-form textarea {
    padding: 14px;
    font-size: 1rem;
}

.btn-block {
    padding: 18px;
    font-size: 1.15rem;
}

.footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.footer-section h3 {
    font-size: 1.7rem;
}

.footer-section ul li a {
    font-size: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
}

#newsletterForm input {
    padding: 13px 15px;
    font-size: 0.95rem;
}

#newsletterForm button {
    padding: 0 22px;
    font-size: 0.95rem;
}

.footer-bottom {
    font-size: 1rem;
    padding-top: 30px;
}

.back-to-top {
    bottom: 100px;
    right: 25px;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
}

.whatsapp-icon {
    font-size: 26px !important;
}

.whatsapp-tooltip {
    display: none;
}

.success-content {
    padding: 45px 25px;
}

.success-title {
    font-size: 1.9rem;
}

.success-message {
    font-size: 1.05rem;
}

.success-btn {
    padding: 12px 40px;
    font-size: 1.05rem;
}
}

@media (max-width: 768px) {
    /* CRITICAL: FIXED NAVBAR CONTAINER WIDTH */
    .nav-container {
        padding: 0 25px;
        height: 70px;
    }
    
    .logo img {
        height: 75px;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Hide desktop menu */
    .nav-menu-container {
        position: fixed;
        top: 55px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: var(--shadow-md);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, box-shadow 0.3s ease;
        z-index: 9998;
    }
    
    .nav-menu-container.active {
        max-height: 900px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }
    
    /* Mobile menu styling */
    .nav-menu {
        flex-direction: column;
        padding: 25px 0;
        gap: 15px;
        align-items: center;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
        padding: 12px 0;
        display: block;
        width: 100%;
    }
    
    /* Mobile button styling */
    .btn-primary-nav-main {
        display: block;
        width: calc(100% - 40px);
        margin: 15px auto 0;
        padding: 14px 20px;
        font-size: 1.15rem;
        height: auto;
    }
    
    /* Hamburger animation when active */
    .hamburger.active .hamburger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .hamburger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .container {
        padding: 0 25px;
    }
    
    .hero-modern {
        min-height: 600px;
        padding-top: 70px;
    }
    
    .hero-content-modern h1 {
        font-size: 3.4rem;
    }

    .hero-content-modern {
    text-align: center;
    max-width: 900px;
    position: relative;
    z-index: 10;
    animation: fadeInUp 1s ease-out;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 100px;
}
    
    .hero-content-modern h1 span {
        font-size: 2.8rem;
    }
    
    .hero-badge {
        padding: 12px 25px;
        font-size: 1rem;
        margin-top: 5px;
        margin-bottom: 25px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 35px;
    }
    
    .hero-buttons-modern {
        gap: 15px;
    }
    
    .btn-lg {
        padding: 16px 40px;
        font-size: 1.15rem;
    }
    
    .hero-stats {
        gap: 25px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
    
    .section-description {
        font-size: 1.1rem;
    }
    
    .services-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .service-card-modern {
        height: 490px;
    }
    
    .card-icon-modern {
        font-size: 8.5rem;
    }
    
    .card-content-modern {
        padding: 35px 20px 20px;
    }
    
    .card-content-modern h3 {
        font-size: 1.7rem;
    }
    
    .jobs-scroller-track {
        width: calc(290px * 9 + 22px * 8);
        gap: 22px;
        animation-duration: 55s;
    }
    
    .job-card {
        min-width: 290px;
    }
    
    .job-image {
        height: 170px;
    }
    
    .job-content {
        padding: 25px;
    }
    
    .job-content h3 {
        font-size: 1.45rem;
    }
    
    .scroller-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .view-all-jobs .btn {
        padding: 14px 35px;
        font-size: 1.05rem;
    }
    
    .about-grid {
        gap: 20px;
        display: flex;
        flex-direction: column;
    }
    
    .stats {
        display: none;
        padding: 25px;
    }
    
    .stat-number {
        font-size: 1.9rem;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .area-card {
        padding: 40px 30px;
    }
    
    .area-card i {
        font-size: 3.3rem;
    }
    
    .contact-grid {
        gap: 50px;
    }
    
    .info-item {
        gap: 18px;
    }
    
    .info-item i {
        font-size: 1.8rem;
        min-width: 45px;
    }
    
    .info-item h4 {
        font-size: 1.35rem;
    }
    
    .contact-form input,
    .contact-form select,
    .contact-form textarea,
    .support-form input,
    .support-form select,
    .support-form textarea {
        padding: 13px;
        font-size: 0.95rem;
    }
    
    .btn-block {
        padding: 16px;
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 40px 30px;
    }
    
    .feature-card i {
        font-size: 3.3rem;
    }
    
    .feature-card h3 {
        font-size: 1.65rem;
    }
    
    .faq-question {
        padding: 20px 22px;
        font-size: 1.1rem;
    }
    
    .faq-answer {
        padding: 22px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 40px 30px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .footer-grid {
        gap: 30px;
    }
    
    .footer-section h3 {
        font-size: 1.65rem;
    }
    
    .footer-section ul li a {
        font-size: 0.95rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    #newsletterForm input {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    #newsletterForm button {
        padding: 0 20px;
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        font-size: 0.95rem;
        padding-top: 25px;
    }
    
    .back-to-top {
        bottom: 90px;
        right: 25px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-icon {
        font-size: 24px !important;
    }
    
    .success-content {
        padding: 40px 20px;
    }
    
    .success-title {
        font-size: 1.7rem;
    }
    
    .success-message {
        font-size: 0.95rem;
    }
    
    .success-btn {
        padding: 12px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 20px;
        height: 55px;
    }
    
    .logo img {
        height: 65px;

    }
    
    .hamburger {
        width: 28px;
        height: 22px;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
        padding: 10px 0;
    }
    
    .btn-primary-nav-main {
        padding: 12px;
        font-size: 1.1rem;
        width: calc(100% - 30px);
    }
    
    .container {
        margin-top: 5px;
        padding: 0 20px;
    }

#emergency-title{
    text-align: center;
    font-size: 1.45rem;
    margin-bottom: 15px;
}


.service-card-modern:hover .card-content-modern {
    transform: translateY(25px);
    }
    
    .hero-modern {
        min-height: 580px;
        padding-top: 2px;
    }
    
    .hero-content-modern h1 {
        font-size: 3.2rem;
        text-transform: uppercase;
    }
    
    .hero-content-modern h1 span {
        font-size: 1.4rem;
        text-transform: capitalize;
    }
    
    .hero-badge {
        padding: 8px 20px;
        font-size: 0.56rem;
        margin-top: 52px;
        margin-bottom: 20px;
    }

    .client-name {
    font-weight: 600;
    color: var(--dark-color);
    display: block;
    text-align: right;
    font-size: 0.85rem;
}

    
.hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

.about-text p {
    color: var(--gray);
    margin-bottom: 28px;
    line-height: 1.8;
    font-size: 0.8rem;
    }

.about-text h3 {
    font-size: 1rem;
    margin-bottom: 14px;
    }

.feature-card p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 0.8rem;
}


.job-location {
    color: var(--gray);
    font-size: 0.75rem;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-content-modern h1 span::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgba(168, 230, 163, 0.3);
    z-index: -1;
    border-radius: 8px;
}

#contact-faq-title {
    text-align: center;
    font-size: 1.7rem;
    margin-bottom: 15px;
}

.services-modern {
    padding: 25px 0 15px;
    }
    
.hero-buttons-modern {
        gap: 12px;
    }
    
.btn-lg {
        padding: 14px 35px;
        font-size: 0.85rem;
    }


.contact-page {
    padding: 30px 0 5px;
    background: linear-gradient(to bottom, var(--light-color) 0%, white 100%);
    position: relative;
    overflow: hidden;
}

.btn-xl {
    padding: 15px 25px;
    font-size: 0.75rem;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(34, 139, 34, 0.35);
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    font-weight: 600;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}


.info-item p {
    color: var(--gray);
    line-height: 1.7;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.75rem;
    font-weight: 600;
}


.about-header {
    text-align: center;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease-out;
}


.testimonial-rating i {
    color: var(--secondary-color);
    font-size: 1rem;
    margin: 0 2px;
}

.testimonial-text {
        font-size: 0.85rem;
    }


.why-choose-list i {
    color: var(--primary-color);
    font-size: 0.9rem;
}
.job-testimonial {
    font-style: italic;
    color: var(--gray);
    margin-bottom: 18px;
    line-height: 1.6;
    font-size: 0.8rem;
    flex-grow: 1;
}

.emergency-contact {
    padding: 15px 0;
    background: linear-gradient(to bottom, var(--light-color) 0%, white 100%);
}

.job-badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    background: var(--primary-color);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}


#features-title{
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-family: 'Montserrat', sans-serif;
}


.contact-form p {
    color: var(--gray);
    margin-bottom: 35px;
    font-size: 0.8rem;
    line-height: 1.7;
}

.scroll-down {
    width: 22px;
    height: 32px;
    border: 3px solid var(--secondary-color);
    border-radius: 25px;
    position: relative;
    margin: 0 auto 15px;
}

.contact-faq {
    padding: 35px 0;
    background-color: var(--white);
}


.faq-item {
    margin-bottom: 20px;
    font-size: 0.85rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    transition: var(--transition);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    margin-top: 5px;
    animation: fadeInUp 1s ease-out;
}


.testimonial-author h4 {
    color: var(--dark-color);
    margin-bottom: 5px;
    font-size: 1rem;
}


#support-title {
    text-align: center;
    font-size: 1.45rem;
    margin-bottom: 15px;
}


.support-page {
    padding: 65px 0 20px;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

#contact_support {
    font-size: 1.45rem;
    margin-top: 5px;
    text-align: center;
}

.contact-intro {
    color: var(--gray);
    margin-bottom: 40px;
    font-size: 0.8rem;
    text-align: center;
}


.emergency-text {
    color: var(--gray);
    line-height: 1.7;
    font-size: 0.8rem;
}


.hero-scroll-indicator {
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--light-color);
    z-index: 10;
    animation: bounce 2s infinite;
    cursor: pointer;
    font-size: 0.65rem;
    font-weight: 500;
    height: 5%;
}


.hero-stats {
    gap: 20px;
}
    
.contact-form h2 {
    text-align: center;
    font-size: 1.50rem;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.stat-number {
    font-size: 1.75rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--light-gray);
}

.section-title {
    font-size: 2.1rem;
}

#areas-title {
    font-size: 1.65rem;
}

.read-more-modern {
    padding: 25px 0px;
    font-size: 0.85rem;

    }

#about-title {
    font-size: 1.65rem;
    text-align: center;
    margin-top: 30px;
}

#services-title {
    font-size: 1.65rem;
}

#contact-title {
    margin-top: 45px;
    font-size: 1.7rem;
}


.section-description {
    font-size: 0.8rem;
    text-align: center;
    margin: 10px 0px 28px;
}

    #jobs-title {
    text-align: center;
    font-size: 1.65rem;
    margin-bottom: 15px;
    margin-top: 50px;
    color: var(--dark-color);
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}


#faq-title {
    text-align: center;
    font-size: 1.45rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

#testimonials-title {
    text-align: center;
    font-size: 1.45rem;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}


.info-item a {
    color: var(--primary-color);
    font-size: 0.75rem;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s;
}

.area-card h3 {
    font-size: 1.2rem;
    margin-bottom: 22px;
    color: var(--dark-color);
}


.contact-form label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.75rem;
}
.services-grid-modern {
    grid-template-columns: 1fr;
    margin-bottom: 20px;
}

.service-card-modern {
    height: 510px;
}

.card-icon-modern {
    font-size: 8rem;
}

.card-content-modern {
    padding: 30px 15px 5px;
}

.card-content-modern h3 {
    font-size: 1.15rem;
}
    
    .jobs-scroller-track {
        width: calc(280px * 9 + 20px * 8);
        gap: 20px;
        animation-duration: 50s;
    }
    
    .job-card {
        min-width: 280px;
    }

    .card-content-modern p {
    color: var(--gray);
    margin-bottom: 28px;
    line-height: 1.7;
    font-size: 0.85rem;
    transition: color 0.3s, transform 0.3s;
}

.job-image {
    height: 160px;
}

.job-content {
    padding: 20px;
}

.job-content h3 {
    font-size: 0.95rem;
}

.areas {
padding: 15px 0;
background-color: var(--white);

}

.emergency-phone a {
    color: inherit;
    text-decoration: none;
    font-size: 1.3rem;
}

.about-text h2 {
    font-size: 1rem;
    margin-bottom: 22px;
    margin-top: 20px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 12px;
}

.testimonial-author p {
    color: var(--gray);
    font-size: 0.75rem;
}


.why-choose-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--dark-color);
    font-size: 0.75rem;
}


    
    .scroller-btn {
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }
    
    .view-all-jobs .btn {
        padding: 12px 30px;
        font-size: 0.85rem;
    }

    .view-all-jobs {
    text-align: center;
    margin-top: 15px;
    margin-bottom: 5px;
}
    .about-grid {
        gap: 10px;
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: center;

    }

    .about-page {
    padding: 40px 0 15px;
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}


    
    .stats {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .stat-number {
        font-size: 1.2rem;
        color: var(--accent-color);
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .area-card {
        padding: 35px 25px;
    }
    
    .area-card i {
        font-size: 2rem;
    }
    
    .contact-grid {
        gap: 45px;
    }
    
    .info-item {
        gap: 3px;
    }
    
    .info-item i {
        font-size: 0.95rem;
        min-width: 25px;
    }
    
    .info-item h4 {
        font-size: 0.8rem;
        padding-top: 7px;
    }
    
    .contact-form input,
    .contact-form select,
    .contact-form textarea,
    .support-form input,
    .support-form select,
    .support-form textarea {
        padding: 12px;
        font-size: 0.75rem;
    }
    
    .btn-block {
        padding: 14px;
        font-size: 0.85rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 35px 25px;
    }
    
    .feature-card i {
        font-size: 2.2rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
    
    .faq-question {
        padding: 18px 20px;
        font-size: 0.9rem;
    }
    
    .faq-answer {
        padding: 20px;
    }
    
    .emergency-grid {
        grid-template-columns: 1fr;
    }
    
    .emergency-card {
        padding: 45px 30px;
    }
    
    .emergency-icon {
        font-size: 1.9rem;
    }
    
    .emergency-card h3 {
        font-size: 1.2rem;
    }
    
    .emergency-phone {
        font-size: 1.6rem;
    }
    
    .footer-grid {
        gap: 20px;
    }
    
    .footer-section h3 {
        font-size: 1.25rem;
    }
    
    .footer-section ul li a {
        font-size: 0.75rem;
    }

    .footer-section p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 28px;
    line-height: 1.7;
    font-size: 0.75rem;
}
    

.footer-grid {
    display: grid;
    grid-template-columns: repeat(1, 2fr);
    gap: 25px;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}


.footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, #0d4d0d 100%);
    color: var(--white);
    padding: 0px 0px;
    position: relative;
    overflow: hidden;
}


    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    #newsletterForm input {
        padding: 11px 12px;
        font-size: 0.65rem;
    }
    
    #newsletterForm button {
        padding: 0 18px;
        font-size: 0.65rem;
        padding-right: 20px;
    }

    .area-card p {
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.7;
}

    
    .footer-bottom {
        font-size: 0.65rem;
        padding-top: 20px;
    }
    
    .back-to-top {
        bottom: 85px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-icon {
        font-size: 22px !important;
    }
    
    .success-content {
        padding: 35px 15px;
    }
    
    .success-title {
        font-size: 1.5rem;
    }
    
    .success-message {
        font-size: 0.9rem;
    }
    
    .success-btn {
        padding: 10px 30px;
        font-size: 0.95rem;
    }
}

/* ===== CRITICAL OVERFLOW PREVENTION ===== */
body {
    overflow-x: hidden;
    width: 100%;
}

.container,
.nav-container {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}


/* Fix for iOS Safari */
@supports (-webkit-touch-callout: none) {
    body {
        width: 100%;
        overflow-x: hidden;
    }
}

/* Prevent navbar items from wrapping on desktop */
@media (min-width: 769px) {
    .nav-menu {
        white-space: nowrap;
    }
}

/* ===== FORM VALIDATION STYLES ===== */
.form-group {
    position: relative;
    margin-bottom: 28px;
}

.form-group.shake {
    animation: shake 0.5s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-6px); }
    20%, 40%, 60%, 80% { transform: translateX(6px); }
}

.error-message {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 8px;
    display: block;
    font-weight: 500;
    min-height: 1.5em;
    padding-left: 5px;
}

input.error,
select.error,
textarea.error {
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15) !important;
}

/* Form button loading state */
button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */
/* Focus states already handled with modern styling */

/* Skip to content link (hidden until focused) */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
}

.skip-link:focus {
    top: 0;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}


