/*
	Theme Name: Hello Elementor
	Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
	Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
	Author: Elementor Team
	Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
	Version: 3.4.6
	Stable tag: 3.4.6
	Requires at least: 6.0
	Tested up to: 6.8
	Requires PHP: 7.4
	License: GNU General Public License v3 or later.
	License URI: https://www.gnu.org/licenses/gpl-3.0.html
	Text Domain: hello-elementor
	Tags: accessibility-ready, flexible-header, custom-colors, custom-menu, custom-logo, featured-images, rtl-language-support, threaded-comments, translation-ready,
*/

/*addition css*/
/* --- Hero Banner Section --- */
.g-recaptcha {
    margin: 10px 0 20px;
}


        .hero-banner {
            position: relative;
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                        url('https://www.bdjokhakar.com/wp-content/uploads/2026/04/Contact-Us-scaled.webp') no-repeat center center/cover;
            height: 250px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: #fff;
            text-align: center;
        }

        .hero-banner h1 {
            font-size: 36px;
            font-weight: 400;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }

        .breadcrumbs {
            font-size: 13px;
            color: #ccc;
        }

        .breadcrumbs a {
            color: #fff;
            text-decoration: none;
        }

        /* --- Main Content Section --- */
        .main-container {
            max-width: 1600px;
            margin: 60px auto;
            padding: 0 20px;
                width: 70%;
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 50px;
        }

        /* Left Side Card (Contact Info) */
        .info-card {
            background-color: #0c2b5c;
            color: #fff;
            padding: 45px 35px;
            border-radius: 4px;
        }

        .info-card h2 {
             font-family: "Source Sans Pro", Sans-serif;
            font-size: 35px;
            font-weight: 400;
            line-height: 45px;
            color: #FFFFFF;
        }

        .info-card .subtitle {
            font-size: 18px;
            font-weight: 300;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
            line-height: 1.5;
                font-family: "Source Sans Pro", Sans-serif;
    font-size: 20px;
    font-weight: 500;
        }

        .info-item i {
            margin-top: 4px;
            margin-right: 15px;
            font-size: 16px;
            width: 20px;
            text-align: center;
        }

        .info-item a {
            color: #fff;
            text-decoration: none;
        }

        /* Right Side Card (Form) */
        .form-container h2 {
            font-size: 28px;
            color: #333;
            font-weight: 400;
            margin-bottom: 35px;
        }

        .contact-form .form-row {
            display: flex;
            gap: 20px;
            margin-bottom: 25px;
        }

        .contact-form .form-group {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .contact-form input, 
        .contact-form textarea {
            width: 100%;
            padding: 12px 5px;
            border: none;
            border-bottom: 1px solid #ccc;
            font-size: 14px;
            outline: none;
            transition: border-color 0.3s;
            background: transparent;
        }

        .contact-form input:focus, 
        .contact-form textarea:focus {
            border-bottom: 1px solid #0c2b5c;
        }

        .contact-form textarea {
            height: 100px;
            resize: none;
            margin-top: 15px;
        }

        .form-footer {
            margin-top: 30px;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }

        .submit-btn {
            background-color: #0c2b5c;
            color: #fff;
            border: none;
            padding: 12px 35px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border-radius: 4px;
            transition: background-color 0.3s;
        }

        .submit-btn:hover {
            background-color: #001f44;
        }

        .form-decorator-line {
            width: 100%;
            height: 4px;
            margin-top: 20px;
            background: linear-gradient(to right, #002e5b 75%, #0088cc 75%, #0088cc 90%, #aae2f7 90%);
        }

        /* --- Maps Section --- */
        .maps-container {
            max-width: 1200px;
            margin: 0 auto 60px auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .map-box iframe {
            width: 100%;
            height: 300px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }

@media (max-width: 768px) {
    .g-recaptcha {
        transform: scale(0.90);
        transform-origin: left top;
    }
}
        /* -- Responsive Design -- */
        @media (max-width: 992px) {
         
            .main-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .maps-container {
                grid-template-columns: 1fr;
            }
        }
    