* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.5;
    color: #333;
}

button {
    border-radius: 0;
}

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

/* Header */
header {
    background: #fff;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

@media (max-width: 768px) {
    .logo img {
        height: 100px;
        width: auto;
    }
}

/* Navigation */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a:focus {
    color: #F5A623;
    outline: none;
}

.burger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 20;
    margin-right: 15px;
}

.burger span {
    background: #333;
    height: 3px;
    width: 100%;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.burger span:nth-child(1) {
    top: 0;
}

.burger span:nth-child(2) {
    top: 8px;
}

.burger span:nth-child(3) {
    top: 16px;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 8px;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 80px;
        overflow-y: auto;
        z-index: 10;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 20px 0;
        width: 100%;
        padding-left: 20px;
    }

    .nav-menu a {
        font-size: 24px;
        display: block;
        padding-bottom: 5px;
        border-bottom: 1px solid #e0e0e0;
        text-align: center;
    }

    .burger {
        display: block;
    }

    .nav-menu .logo {
        display: block;
        position: absolute;
        top: 20px;
        left: 20px;
        margin: 0;
    }

    .nav-menu .logo img {
        height: 60px;
        width: auto;
    }
}

/* Language Toggle */
.language-toggle {
    position: absolute;
    top: calc(110px + 10px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    margin-top: 20px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    border-radius: 34px;
    transition: .4s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px;
}

.slider .lang-option {
    font-size: 12px;
    color: #fff;
    font-weight: bold;
}

.slider .lang-option.en {
    margin-left: 8px;
}

.slider .lang-option.af {
    margin-right: 8px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: #F5A623;
    border-radius: 50%;
    transition: .4s;
}

input:checked + .slider {
    background-color: #333;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

@media (max-width: 768px) {
    .language-toggle {
        top: calc(70px + 10px);
    }

    .switch {
        width: 50px;
        height: 28px;
    }

    .slider:before {
        height: 22px;
        width: 22px;
        left: 3px;
        bottom: 3px;
    }

    input:checked + .slider:before {
        transform: translateX(22px);
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('hero (1).webp') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: #fff;
    position: relative;
    margin-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    max-width: 1000px;
}

.hero-content h2 {
    font-size: 68px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: rise 2s ease-out;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero-content button {
    background: #F5A623;
    color: #fff;
    padding: 12px 24px;
    border: none;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.hero-content button:hover,
.hero-content button:focus {
    background: #e69500;
    outline: none;
}

@media (max-width: 768px) {
    .hero {
        background: url('hero-mobile.webp') no-repeat center center/cover;
        height: 100vh;
        align-items: center;
        justify-content: center;
        padding: 0 15px;
        text-align: center;
        margin-top: 70px;
    }

    .hero-content {
        max-width: 90%;
        padding: 15px;
    }

    .hero-content h2 {
        font-size: 48px;
        line-height: 1.3;
        margin-bottom: 15px;
        text-align: center;
    }

    .hero-content p {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .hero-content button {
        font-size: 16px;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 16px;
    }
}

/* Content Section */
.content {
    padding: 50px 0;
    background: #fff;
}

.content .row {
    display: flex;
    gap: 30px;
    align-items: center;
}

.content .col {
    flex: 1;
}

.content .col img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 5px;
    object-fit: cover;
}

.content .col h3 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

.content .col h3 span {
    color: #F5A623;
}

.content .col ul {
    list-style: none;
    padding: 0;
}

.content .col ul li {
    font-size: 16px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.content .col ul li:before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #F5A623;
    font-size: 18px;
}

@media (max-width: 768px) {
    .content .row {
        flex-direction: column;
        gap: 20px;
    }

    .content .col h3 {
        font-size: 24px;
        text-align: center;
    }

    .content .col ul li {
        font-size: 14px;
    }
}

/* Why Us Section */
.why-us {
    padding: 50px 0;
    background: #F5F5F5;
}

.why-us h2 {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.feature {
    background: #F5A623;
    padding: 30px 20px;
    border-radius: 5px;
    text-align: center;
    transition: box-shadow 0.3s;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.feature .icon {
    width: 60px;
    height: 60px;
    background: transparent;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature p {
    font-size: 16px;
    color: #fff;
    line-height: 1.5;
}

.feature.reliable {
    grid-column: 1 / -1;
    background: #e69500;
    text-align: center;
    padding: 40px 20px;
    min-height: auto;
}

.feature.reliable h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.feature.reliable p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feature.reliable button {
    background: #fff;
    color: #F5A623;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.feature.reliable button:hover,
.feature.reliable button:focus {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    outline: none;
}

@media (max-width: 768px) {
    .why-us h2 {
        font-size: 30px;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature {
        min-height: 180px;
        padding: 25px 15px;
    }

    .feature h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .feature p {
        font-size: 14px;
    }

    .feature.reliable {
        padding: 30px 15px;
    }

    .feature.reliable h3 {
        font-size: 22px;
    }

    .feature.reliable p {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .feature.reliable button {
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .feature {
        min-height: 160px;
        padding: 20px 10px;
    }

    .feature h3 {
        font-size: 18px;
    }

    .feature p {
        font-size: 13px;
    }

    .feature.reliable p {
        font-size: 14px;
    }
}

/* Services Section */
.services-section {
    padding: 50px 0;
    background: #fff;
}

.services-section h2 {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.service-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.service-card h3 {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin: 15px 0;
}

.service-card ul {
    list-style: none;
    padding: 0 20px;
    margin-bottom: 20px;
}

.service-card ul li {
    font-size: 16px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.service-card ul li:before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #F5A623;
    font-size: 18px;
}

.service-card button {
    display: block;
    margin: 0 auto 20px;
    background: #F5A623;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.service-card button:hover,
.service-card button:focus {
    background: #e69500;
    outline: none;
}

@media (max-width: 768px) {
    .services-section h2 {
        font-size: 30px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .service-card ul li {
        font-size: 14px;
    }
}

/* Clients Say Section */
.clients-say {
    padding: 50px 0;
    background: #F5F5F5;
}

.clients-say h2 {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.testimonial {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    transition: box-shadow 0.3s;
}

.testimonial:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.testimonial p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.testimonial .author {
    font-size: 14px;
    font-weight: bold;
    color: #F5A623;
}

.clients-say .view-more {
    display: block;
    text-align: center;
    margin-top: 30px;
    color: #F5A623;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.clients-say .view-more:hover,
.clients-say .view-more:focus {
    color: #e69500;
    outline: none;
}

@media (max-width: 768px) {
    .clients-say h2 {
        font-size: 30px;
    }

    .testimonial p {
        font-size: 14px;
    }

    .testimonial .author {
        font-size: 13px;
    }
}

/* Stats Section */
.stats-section {
    padding: 50px 0;
    background: #fff;
}

.stats-section .container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.stats-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    text-align: left;
}

.stats-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.stats-item div {
    flex: 1;
}

.stats-item span {
    font-size: 18px;
    font-weight: bold;
    color: #F5A623;
}

.stats-item p {
    font-size: 14px;
    color: #666;
}

@media (max-width: 768px) {
    .stats-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Projects Section */
.projects {
    padding: 50px 0;
    background: #F5F5F5;
}

.projects h2 {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.project-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.project-item:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.project-item img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    cursor: pointer;
}

.project-item p {
    padding: 10px;
    font-size: 16px;
    text-align: center;
    color: #333;
}

.projects .cta-button {
    display: block;
    margin: 0 auto;
    background: #F5A623;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.projects .cta-button:hover,
.projects .cta-button:focus {
    background: #e69500;
    outline: none;
}

@media (max-width: 768px) {
    .projects h2 {
        font-size: 30px;
    }

    .project-item p {
        font-size: 14px;
    }
}

/* Contact Section */
.contact {
    padding: 50px 0;
    background: url('contact-image.webp') no-repeat center center/cover;
    position: relative;
    color: #fff;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.map-container {
    width: 100%;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 5px;
}

.form-container {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 5px;
}

.form-container h3 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.form-container form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-container input,
.form-container textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

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

.form-container button {
    background: #F5A623;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.form-container button:hover,
.form-container button:focus {
    background: #e69500;
    outline: none;
}

.contact-details {
    text-align: center;
    margin-bottom: 30px;
}

.contact-details h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.contact-details p {
    font-size: 16px;
    margin-bottom: 15px;
}

.contact-details img {
    width: 40px;
    height: 40px;
    margin: 0 10px;
}

.social-buttons {
    text-align: center;
}

.social-buttons button {
    background: #F5A623;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    margin: 0 10px;
    transition: background 0.3s;
}

.social-buttons button:hover,
.social-buttons button:focus {
    background: #e69500;
    outline: none;
}

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

    .map-container iframe {
        height: 300px;
    }

    .contact-details h2 {
        font-size: 30px;
    }

    .contact-details p {
        font-size: 14px;
    }
}

/* WhatsApp Chat */
.whatsapp-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    z-index: 1001;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-toggle img {
    width: 40px;
    height: 40px;
}

.whatsapp-chat {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    padding: 15px;
    flex-direction: column;
    max-height: 400px;
    overflow-y: auto;
}

.whatsapp-chat.active {
    display: flex;
}

.whatsapp-chat .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.whatsapp-chat .header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.whatsapp-chat .header .close-btn {
    font-size: 20px;
    cursor: pointer;
    color: #333;
}

.whatsapp-chat .messages {
    padding: 10px;
    margin-bottom: 10px;
    background: #e9ecef;
    border-radius: 5px;
    font-size: 14px;
}

.whatsapp-chat .input-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-chat .input-area input {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.whatsapp-chat .input-area button {
    background: #25D366;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
}

.whatsapp-chat .input-area button:hover,
.whatsapp-chat .input-area button:focus {
    background: #1da851;
    outline: none;
}

@media (max-width: 768px) {
    .whatsapp-chat {
        width: 90%;
        right: 5%;
        bottom: 10px;
        max-height: 70vh;
    }

    .whatsapp-chat .messages {
        font-size: 12px;
    }

    .whatsapp-chat .input-area input {
        font-size: 12px;
        padding: 8px;
    }

    .whatsapp-chat .input-area button {
        font-size: 12px;
        padding: 8px 12px;
    }

    .whatsapp-toggle {
        bottom: 10px;
        right: 5%;
    }
}

@media (max-width: 480px) {
    .whatsapp-chat {
        width: 85%;
        right: 7.5%;
        bottom: 5px;
        padding: 10px;
    }

    .whatsapp-toggle {
        width: 50px;
        height: 50px;
    }

    .whatsapp-toggle img {
        width: 30px;
        height: 30px;
    }
}

/* Animation */
@keyframes rise {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}