/* Contact Us Page Custom Styles */

/* Products Page Custom Styles */

/**
* Template Name: Arsha
* Template URL: https://bootstrapmade.com/arsha-free-bootstrap-html-template-corporate/
* Updated: Feb 22 2025 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
    --default-font: "Helvetica", sans-serif;
    --heading-font: "Roboto", sans-serif;
    --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #F8FAFC;
    /* Background color for the entire website, including individual sections */
    --default-color: #444444;
    /* Default color used for the majority of the text content across the entire website */
    --heading-color: #37517e;
    /* Color for headings, subheadings and title throughout the website */
    --accent-color: #47b2e4;
    /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff;
    /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff;
    /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #ffffff;
    /* The default color of the main navmenu links */
    --nav-hover-color: #47b2e4;
    /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff;
    /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff;
    /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #444444;
    /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #47b2e4;
    /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #f5f6f8;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #37517e;
    --default-color: #ffffff;
    --heading-color: black;
    --surface-color: #4668a2;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}



/* Contact Form Section - Improved Styles */
.contact-form-section .form-control {
    border: 1.5px solid #bfc9d1;
    border-radius: 8px;
    background: #fff;
    color: #2c3e50;
    font-family: 'Poppins', 'Open Sans', Arial, sans-serif;
    font-size: 1.05rem;
    padding: 0.85rem 1.1rem;
    box-shadow: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form-section .form-control:focus {
    border-color: #1976d2;
    box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.08);
    background: #f8fafc;
    outline: none;
}

.contact-form-section .form-control::placeholder {
    color: #888;
    font-size: 1rem;
    opacity: 1;
    font-family: 'Poppins', 'Open Sans', Arial, sans-serif;
}

.contact-form-section label {
    font-family: 'Poppins', 'Open Sans', Arial, sans-serif;
    font-weight: 500;
    color: #37517e;
    margin-bottom: 0.4rem;
    font-size: 1rem;
    display: block;
}

.contact-form-section .card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

.contact-form-section .card-body {
    padding: 2.5rem 2rem;
}

.contact-form-section h2 {
    color: var(--heading-color);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.php-email-form .form-control {
    border-radius: 8px;
    border: 1px solid var(--contact-border);
    font-size: 1rem;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    background: #f9f9f9;
    box-shadow: none;
    transition: border-color 0.2s;
}

.php-email-form .form-control:focus {
    border-color: var(--contact-accent);
    background: #fff;
    outline: none;
}

.php-email-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Fix form submit button visibility and style */
.php-email-form button[type="submit"] {
    display: inline-block;
    background: #1976d2;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 0.85rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 0.5rem;
    margin-bottom: 0;
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.08);
    transition: background 0.2s, box-shadow 0.2s;
}

.php-email-form button[type="submit"]:hover {
    background: #1251a3;
    color: #fff;
    box-shadow: 0 4px 16px rgba(25, 118, 210, 0.15);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
    font-family: var(--heading-font);
}

.section-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    font-family: var(--default-font);
}

/* Who We Are Section */
.who-we-are {
    background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
    padding: 80px 0;
}

.who-we-are .btn {
    color: var(--contrast-color);
    background: #519aff;
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px 12px 28px;
    border-radius: 10px;
    transition: 0.5s;
}

.who-we-are .btn-primary {
    background-color: #1976d2;
    border-color: #1976d2;
}

.who-we-are .btn-warning {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #333;
}

.who-we-are .btn:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

/* Offices Section Styles */
.offices-section {
    background: #f8fafc;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.offices-section h2 {
    font-family: 'Poppins', 'Open Sans', Arial, sans-serif;
    font-weight: 800;
    color: #0056d6;
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.map-responsive {
    position: relative;
    width: 100%;
    padding-bottom: 0;
    height: 350px;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
    background: #fff;
}

.map-responsive iframe {
    border: 0;
    width: 100%;
    height: 100%;
    min-height: 350px;
    border-radius: 1.5rem;
}

.office-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    padding: 1.5rem 1rem;
    margin-bottom: 1rem;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.office-card h5 {
    font-family: 'Poppins', 'Open Sans', Arial, sans-serif;
    font-weight: 700;
    color: #0056d6;
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

.office-card div {
    color: #222;
    font-size: 1rem;
    font-family: 'Open Sans', Arial, sans-serif;
}

@media (max-width: 767px) {
    .hero .section-title {
        font-size: 2rem;
    }

    .contact-form-section .card-body {
        padding: 1.5rem 0.5rem;
    }

    .hero.section.dark-background.who-we-are,
    .who-we-are {
        padding: 40px 0 30px 0;
        min-height: 30vh;
    }

    .offices-section h2 {
        font-size: 1.5rem;
    }

    .map-responsive {
        height: 220px;
    }

    .map-responsive iframe {
        min-height: 220px;
    }

    .office-card {
        padding: 1rem 0.5rem;
        min-height: 90px;
    }
}

.btn-get-started {
    color: var(--contrast-color);
    background: #519aff;
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px 12px 28px;
    border-radius: 10px;
    transition: 0.5s;
}

.btn-get-started:hover {
    color: var(--contrast-color);
    background: #FFBF00;
}

.btn-learn-more {
    color: var(--contrast-color);
    background: #FFBF00;
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px 12px 28px;
    border-radius: 10px;
    transition: 0.5s;
}

.btn-learn-more:hover {
    color: var(--contrast-color);
    background: #519aff;
}