/* body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-image: 
        radial-gradient(circle 400px at 10% 15%, var(--tertiary-color), transparent),
        radial-gradient(circle 400px at 90% 25%, var(--secondary-color), transparent),
        radial-gradient(circle 400px at 20% 60%, var(--tertiary-color), transparent),
        radial-gradient(circle 400px at 80% 80%, var(--secondary-color), transparent),
        radial-gradient(circle 400px at 50% 50%, var(--tertiary-color), transparent),
        radial-gradient(circle 400px at 30% 90%, var(--secondary-color), transparent),
        radial-gradient(circle 400px at 70% 20%, var(--tertiary-color), transparent);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    color: var(--text-color);
} */

.contact-section {
    padding: 60px 0;
    background: var(--light-gray);
}

.left-content {
    padding-right: 30px;
}

.left-content .small-heading {
    font-size: 1.2rem;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 600;
}

.left-content .large-heading {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin: 20px 0;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-box {
    flex: 1;
    padding: 10px 20px;
    background: white;
    border: 1px solid var(--muted-color);
    border-radius: 5px;
    color: var(--primary-color);
    font-weight: bold;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.description-text {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

.divider {
    border: none;
    height: 2px;
    background: var(--primary-color);
    width: 60px;
    margin: 20px 0;
}

.trusted-heading {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.company-logos {
    display: flex;
    gap: 15px;
}

.company-logos img {
    height: 40px;
    object-fit: contain;
}

.right-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 20px;
}

.form-intro {
    font-size: 1rem;
    color: var(--primary-color);
}

.form-heading {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
}

form .form-group {
    margin-bottom: 15px;
}

form label {
    font-size: 0.9rem;
    color: var(--muted-color);
    margin-bottom: 5px;
    display: block;
}

form .form-control {
    border: 1px solid var(--muted-color);
    padding: 10px 15px;
    font-size: 1rem;
    border-radius: 5px;
    width: 100%;
}

form .btn-primary {
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 12px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    transition: background 0.3s;
}

form .btn-primary:hover {
    background: var(--secondary-color);
}




/* Responsive Design */
@media (max-width: 1024px) {
    .contact-section {
        flex-direction: column;
        padding: 2rem;
    }

    .left-content, .right-content {
        max-width: 100%;
    }

    .large-heading {
        font-size: 2.5rem;
    }

    .features {
        flex-direction: column;
        gap: 1rem;
    }

    .company-logos {
        flex-wrap: wrap;
        /* justify-content: center; */
    }
}

@media (max-width: 768px) {
    .large-heading {
        font-size: 2rem;
    }

    .form-intro, .form-heading {
        text-align: center;
    }

    .features {
        gap: 0.5rem;
    }

    form input, form textarea {
        padding: 0.8rem 0.5rem;
    }

    form button {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .small-heading {
        font-size: 1rem;
        text-align: center;
    }

    .large-heading {
        font-size: 1.8rem;
        text-align: center;
    }

    .features {
        gap: 0.5rem;
    }

    .feature-box {
        font-size: 0.9rem;
        padding: 0.8rem;
    }

    .company-logos img {
        width: 50px;
        height: 50px;
    }

    form button {
        font-size: 0.8rem;
        padding: 0.8rem;
    }
}


.map-section {
    background-color: white;
    padding: 2rem;
    text-align: center;
    margin: 2rem 0 0 0;
  }
  .map-container {
    width: 100%;
    height: 400px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
  }
  iframe {
    width: 100%;
    height: 100%;
    border: none;
  }