	@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

    .contact-main-container{
        background-color: #f5f5f5;
        /* margin-top: 1rem; */
    }
    /* Main container */
    .contact-container   {
            max-width: 1280px;
            margin: 0 auto;
            padding:90px 20px;
            display: flex;
            background-color: #f5f5f5;
        }
.contact-container hr{
    margin: 1rem 0;
    color: #000000;
    background-color: rgb(155 155 155);
    border: 0;
    height: 1px;
    width: 80%;
    opacity: .25;
}
        /* Contact information section */
        .contact-info {
            flex: 0.47;
            padding: 15px;
            padding-left: 0px;
            padding-right: 0px;
    
        }

        .section-heading {
            font-size: 16px;
            font-weight: 700;
            color: #000;
            margin-bottom: 10px;
            font-family: Poppins;
        }

        /* Contact blocks */
        .contact-block {
            display: flex;
            align-items: flex-start;
            /* margin-bottom: 30px; */

        }

        .contact-icon {
            width: 48px;
            margin-right: 20px;
        }
        .contact-icon svg{
            width: 38px;
            height: 38px;
        }
        .contact-details {
            flex: 1;
        }

        .contact-label {
            font-size: 16px;
            font-weight: 700;
            color: #000;
            margin-bottom: 5px;
            font-family: Poppins;
        }

        .contact-text {
            font-size: 10px;
            font-weight: 500;
            color: #000;
            /* margin-bottom: 30px; */
            font-family: Poppins;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .contact-link {
            text-decoration: none;
            color: #333;
        }

        .contact-link:hover {
            text-decoration: underline;
        }

        /* Map section */
        .map-section {
            flex: .5;
            min-height: 300px;
            max-height: 400px;
        }

        .map-iframe {
            width: 100%;
            height: 100%;
            min-height: 300px;
            border: none;
        }

        /* Responsive styles */
        @media (max-width: 600px) {
            .contact-container {
                flex-direction: column;
                padding: 40px 20px;
            }
            .contact-main-container{
                margin-top: 0rem;
            }
            .contact-info, .map-section {
                width: 100%;
            }

            .map-section {
                margin-top: 20px;
                min-height: 250px;
            }
            
            .map-iframe {
                min-height: 250px;
            }
            
            .section-heading {
                font-size: 20px;
            }
            
            .contact-label {
                font-size: 16px;
            }


            .contact-container hr{
                margin: 1rem 0;
                color: #000000;
                background-color: rgb(155 155 155);
                border: 0;
                height: 1px;
                width: 100%;
                opacity: .25;
            }

        }



/*    */


.contact-form-main-container{
    background-color: #f5f5f5;
    margin-top: 0rem;
    flex: .6;
}

        /* Main container */
        .contact-form-container {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            background-color: #f5f5f5;
        }

        /* Image section */
        .office-image-section {
            flex: 1;
            padding: 0;
        }

        .office-image {
            width: 100%;
            /* height: 100%; */
            object-fit: cover;
            display: block;
            
            padding: 30px;
            padding-top: 40px;
        }

        /* Form section */
        .form-section {
            flex: 1.3;
            padding: 20px;
            display: flex
        ;
            flex-direction: column;
            justify-content: center;
        }

        .form-title {
            font-size: 16px;
            font-weight: 700;
            color: #000;
            margin-bottom: 10px;
            font-family: Poppins;
        }

        .form-subtitle {
            font-size: 11px;
            font-weight: 400;
            color: #333;
            margin-bottom: 16px;
            font-family: Roboto, sans-serif;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        /* Form elements */
        .contact-form {
            width: 100%;
        }

        .form-row {
            margin-bottom: 15px;        }

        .form-input {
            width: 90%;
            padding: 8px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
        }

        .form-textarea {
            width: 90%;
            height: 110px;
            padding: 5px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
            resize: vertical;
            font-family: inherit;
        
        }

        .submit-button {
            background: #30373e;
            color: #fff !important;
            display: inline-block;
            transition: 0.3s;
            padding: 10px 18px 10px 18px;
            font-weight: bold;
            border-radius: 50px;
            font-size: 11px;
            cursor: pointer;
        }

        .submit-button:hover {
            background-color: #444;
            cursor: pointer;

        }

        /* Responsive styles */
        @media (max-width: 600px) {
            .contact-form-container {
                flex-direction: column;
            }

            .office-image-section {
                height: 250px;
            }

            .form-section {
                padding: 30px 0px;
            }

            .form-title {
                font-size: 24px;
            }

            .submit-button {
                width: 100%;
            }

            .form-input {
                width: 100%;
                padding: 5px;
                border: 1px solid #ddd;
                border-radius: 4px;
                font-size: 13px;
            }
            .form-textarea {
                width: 100%;
                height: 70px;
                padding: 5px;
                border: 1px solid #ddd;
                border-radius: 4px;
                font-size: 13px;
                resize: vertical;
                font-family: inherit;
            }

        }
