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

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

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

section {
    padding: 50px 0;
}

h1, h2, h3 {
    margin-bottom: 20px;
}

p {
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    background-color: #D4A14B;
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #B8860B;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #bbb;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a.active,
nav ul li a:hover {
    color: #000;
}

.language-selector {
    display: flex;
    align-items: center;
}

.language-selector a {
    margin-left: 10px;
    text-decoration: none;
    color: #333;
}

.language-selector a.active {
    font-weight: bold;
    color: #D4A14B;
}

/* Hero Section */
.hero {
    background-color: #f9f9f9;
    padding: 50px 0;
}

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

.hero-text {
    flex: 1;
    padding-right: 20px;
}

.hero-text h1 {
    color: #333;
    font-size: 36px;
    margin-bottom: 10px;
}

.hero-text .sub-heading {
    color: #D4A14B;
    font-size: 22px;
    margin-bottom: 20px;
}

.hero-form {
    flex: 1;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-title {
    margin-bottom: 20px;
    font-size: 18px;
    color: #333;
    text-align: center;
}



.feature-cards {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.feature-card {
    text-align: center;
    flex: 1;
    padding: 15px;
}

.feature-card i {
    font-size: 35px;
    color: #D4A14B;
    margin-bottom: 15px;
}

/* Who We Are Section */
.who-we-are {
    background-color: white;
}

.who-we-are-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.who-we-are-text {
    flex: 1;
}

.who-we-are-text h2 {
    color: #333;
    font-size: 28px;
}

.feature-list {
    list-style: none;
    margin: 20px 0;
}

.feature-list li {
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.feature-list li:before {
    content: "✓";
    color: #D4A14B;
    font-weight: bold;
    margin-right: 10px;
}

.experience-badge {
    display: inline-block;
    margin: 15px 0;
    font-size: 18px;
    font-weight: bold;
}

.who-we-are-image {
    flex: 1;
    text-align: right;
}

.who-we-are-image img {
    max-width: 100%;
    border-radius: 10px;
}

/* Services Section */
.services {
    background-color: #f9f9f9;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.service-card {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.service-card h3 {
    color: #D4A14B;
    margin-bottom: 15px;
}

.service-card.highlight {
    background-color: #333;
    color: white;
}

.service-card.highlight h3 {
    color: #D4A14B;
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: white;
}

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

.why-choose-image {
    flex: 1;
}

.why-choose-image img {
    max-width: 100%;
    border-radius: 10px;
}

.why-choose-points {
    flex: 1;
}

.point {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.point-icon {
    margin-right: 15px;
    background-color: #f9f9f9;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4A14B;
    font-size: 20px;
}

/* Stats Section */
.stats {
    background-color: #1c1c1c;
    color: white;
    padding: 40px 0;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item h3 {
    color: #D4A14B;
    font-size: 36px;
    margin-bottom: 5px;
}

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

/* Process Section */
.process {
    background-color: white;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    margin: 0 10px;
}

.process-step h3 {
    color: #D4A14B;
    margin-bottom: 10px;
}

/* Testimonials Section */
.testimonials {
    background-color: #f9f9f9;
}

.testimonial-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.testimonial-card {
    flex: 1;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    position: relative;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text:before {
    content: "";
    font-size: 50px;
    color: #f0f0f0;
    position: absolute;
    top: -20px;
    left: -15px;
    z-index: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

/* Footer */
footer {
    background-color: #1c1c1c;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-form {
    flex: 1;
    padding-right: 30px;
}

.footer-info {
    flex: 1;
    padding-left: 30px;
}

.office-hours {
    margin-bottom: 20px;
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact-info i {
    margin-right: 10px;
    color: #D4A14B;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

/* Floating Action Button */
.floating-action {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 100;
}

/* --- Mobile Navigation & Overlay Styles --- */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #333;
    margin-left: 20px;
    transition: color 0.3s;
}
.mobile-menu-btn.active {
    color: #D4A14B;
}
.nav-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.35);
    z-index: 999;
    transition: opacity 0.3s;
    opacity: 0;
}
.nav-overlay.show {
    display: block;
    opacity: 1;
}
@media (max-width: 992px) {
    nav ul {
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100vw;
        background: white;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        padding: 30px 0 20px 0;
        z-index: 1001;
        display: none;
        transform: translateY(-30px);
        opacity: 0;
        pointer-events: none;
    }
    nav ul.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .mobile-menu-btn {
        display: block;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    /* Header */
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    nav {
        width: 100%;
        margin-top: 15px;
    }

    .mobile-menu-btn {
        display: block;
        position: absolute;
        right: 20px;
        top: 20px;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        padding: 15px 0;
    }

    nav ul.active {
        display: block;
    }

    nav ul li {
        margin: 10px 0;
        text-align: center;
    }

    /* Hero Section */
    .hero-content {
        flex-direction: column;
        gap: 30px;
    }

    .hero-text {
        padding-right: 0;
        text-align: center;
    }

    .hero-form {
        width: 100%;
        padding: 20px;
    }

    .feature-cards {
        flex-direction: column;
        gap: 30px;
    }

    /* Who We Are */
    .who-we-are-content {
        flex-direction: column;
    }

    .who-we-are-text {
        order: 2;
        text-align: center;
    }

    .who-we-are-image {
        order: 1;
        text-align: center;
    }

    /* Services */
    .service-grid {
        grid-template-columns: 1fr;
    }

    /* Why Choose Us */
    .why-choose-content {
        flex-direction: column;
    }

    /* Process Steps */
    .process-steps {
        flex-direction: column;
        gap: 30px;
    }

    /* Testimonials */
    .testimonial-container {
        flex-direction: column;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-form {
        padding-right: 0;
    }

    .footer-info {
        padding-left: 0;
        text-align: center;
    }

    /* General Adjustments */
    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .input-group {
        width: 100%;
    }

    /* Form Adjustments */
    form {
        padding: 15px;
    }

    input, select {
        font-size: 16px !important;
    }

    /* Stats */
    .stats-container {
        flex-wrap: wrap;
        gap: 30px;
    }

    /* Floating WhatsApp */
    .floating-action {
        bottom: 70px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 22px;
    }

    .hero-text p {
        font-size: 14px;
    }

    .feature-card i {
        font-size: 28px;
    }

    .testimonial-author img {
        width: 40px;
        height: 40px;
    }

    .footer-bottom p {
        font-size: 14px;
    }
}


.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.contact-form::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--color-primary);
    opacity: 0.1;
    top: -40px;
    left: -40px;
    z-index: -1;
    transition: transform 0.5s ease;
}

.contact-form:hover::before {
    transform: scale(1.2);
}

.contact-form::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--color-secondary);
    opacity: 0.1;
    bottom: -50px;
    right: -50px;
    z-index: -1;
    transition: transform 0.5s ease;
}

.contact-form:hover::after {
    transform: scale(1.2);
}

/* .form-row {


} */
.input-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    padding: 5px;
    margin-bottom: 10px;

}


.input-group input, .input-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}



.input-group:hover .input-group-icon {
    color: var(--color-primary);
}


.required-field::after {
    content: '*';
    color: var(--color-error);
    margin-left: 0.25rem;
}


.submit-button {

    display: inline-block;
    background-color: #D4A14B;
    color: white;
    margin: 5px;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

