@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Reddit+Sans:ital,wght@0,200..900;1,200..900&display=swap');

.source-sans-3 {
    font-family: "Source Sans 3", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.onest {
    font-family: "Onest", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.reddit-sans { 
    font-family: "Reddit Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

/* Base Styles */
:root {
    --primary-color: #0072bc;
    --secondary-color: #3ab7f1;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

/* Form Control Styles */
.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    font-size: 16px;
    color: #333;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #0072bc;
}

/* Select wrapper styles */
.select-wrapper {
    position: relative;
    width: 100%;
    height: 48px;
}

.select-wrapper select {
    appearance: none;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 100%;
    font-size: 16px;
    color: #333;
    padding: 12px 40px 12px 15px;
    height: 100%;
    line-height: 1;
}

.select-wrapper i {
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0;
    margin: auto;
    pointer-events: none;
    color: #666;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 0 0 2px #fff; /* Prevents arrow from being cut off */
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    position: relative;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Header with White Background */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: transparent;
}

.header.white-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* reCAPTCHA Styles */
.captcha-container {
    margin: 0 0 20px 0;
    padding: 10px 0;
    min-height: 78px; /* Minimum height for reCAPTCHA */
    width: 100%;
    text-align: left;
    border-radius: 4px;
}

/* Ensure reCAPTCHA iframe is properly sized */
.grecaptcha-badge { 
    visibility: visible !important;
}

/* Style for reCAPTCHA container */
#recaptcha-container {
    display: block;
    margin: 0;
    transform: scale(0.9);
    transform-origin: 0 0;
}

/* Fix for reCAPTCHA in flex containers */
#recaptcha-container > div {
    margin: 0 !important;
    display: block !important;
}

/* Form actions styling */
.form-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 20px;
    width: 100%;
}

/* Submit button alignment */
.btn-submit {
    align-self: flex-start;
}

.captcha-box {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    width: fit-content;
}

.captcha-text {
    font-family: 'Courier New', monospace;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 3px;
    background: #f0f0f0;
    color: #333;
    padding: 8px 15px;
    margin-right: 15px;
    border-radius: 4px;
    border: 1px solid #ddd;
    user-select: none;
    min-width: 150px;
    text-align: center;
    display: inline-block;
}

.captcha-refresh {
    background: #f0f0f0;
    border: 1px solid #ddd;
    color: #666;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    padding: 5px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.captcha-refresh:hover {
    color: #1E91BC;
    transform: rotate(180deg);
    background-color: #f0f0f0;
}

.captcha-input-container {
    position: relative;
    max-width: 300px;
}

.captcha-input {
    padding-right: 45px;
    font-size: 16px;
    letter-spacing: 1px;
}

/* Scrolled header state */
.header.scrolled {
    background-color: #0072bc !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Ensure text remains visible on scrolled header */
.header.scrolled .main-nav ul li a,
.header.scrolled .logo a {
    color: white !important;
}

/* Dropdown menu styling for scrolled header */
.header.scrolled .dropdown-menu {
    background-color: #0072bc;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled .dropdown-menu a {
    color: white !important;
}

.header.scrolled .dropdown-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

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

.logo a {
    display: block;
    position: relative;
    height: 40px;
}

.logo img {
    height: 30px;
    width: auto;
    margin-left: -17px;
    margin-top: 8px;
    transition: opacity 0.3s ease;
}

.logo .logo-default {
    opacity: 1;
    position: relative;
    z-index: 1;
}

.logo .logo-scrolled {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 2;
}

.header.scrolled .logo .logo-default {
    opacity: 0;
}

.header.scrolled .logo .logo-scrolled {
    opacity: 1;
}

/* Search icon color on scroll */
.header.scrolled .search-btn i {
    color: white;
}

/* Navigation */
.main-nav ul {
    display: flex;
    gap: 0px;
}

.main-nav a {
    color: var(--text-color);
    font-weight: 600;
    padding: 8px 0;
    position: relative;
}

.main-nav a.active,
.main-nav a:hover {
    color: #000;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: fixed;
    top: 70px; /* Height of header */
    left: 0;
    border-radius: 0 0 20px 20px;
    width: 100%;
    height: 286px;
    background-color: #0072bc;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 999;
    padding: 0;
    margin: 0;
    border: none !important;
    outline: none !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
    pointer-events: none;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Allow scrolling when dropdown is open */
body.dropdown-open {
    overflow: auto;
    height: 100%;
}

.dropdown-menu .container {
    max-width: 1440px;
    width: 100%;
    margin: -7px auto;
    padding: 80px 90px 0px;
    height: 100%;
    box-sizing: border-box;
    background-color: #0072bc;
    border-radius: 0 0 8px 8px;
}

.dropdown-grid {
    display: flex;
    gap: 40px;
    height: 100%;
}

.dropdown-column {
    flex: 1;
    padding-right: 20px;
}

.dropdown-column:last-child {
    border-right: none;
}

.dropdown-column h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Source Sans 3', sans-serif;
}

.dropdown-column ul li {
    margin-bottom: 10px;
}

.dropdown-column a {
    color: #fff;
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.9;
    transition: none;
    display: block;
    padding: 8px 0;
    background-color: transparent !important;
}

.dropdown-column a:hover {
    opacity: 1;
    text-decoration: none;
    background-color: transparent !important;
    box-shadow: none !important;
}

/* Remove any white background on hover */
.dropdown-menu a:hover {
    background-color: transparent !important;
}

/* Reset any potential pseudo-elements */
.dropdown-column a:before,
.dropdown-column a:after {
    display: none !important;
    content: none !important;
}

/* Ensure list items have no extra spacing */
.dropdown-column ul li {
    margin: 0;
    padding: 0;
    background: transparent !important;
}

/* Make sure the link takes full width */
.dropdown-column ul li a {
    display: block;
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 4px;
} 

.search-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
}
 
.search-btn:hover {
    color: var(--primary-color);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn i {
    margin-left: 8px;
}

.btn-contact {
    background: linear-gradient(90deg, #00BA71, #38D58C);
    color: #fff;
    font-size: 11px;
    width: 134px;
    margin-top: -5px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: var(--primary-color);
}

/* Box Styles */
.box-60x65 {
    position: relative;
    width: 1180px;
    max-width: calc(100% - 40px);
    height: 65px;
    margin: 100px auto 40px;
    border-radius: 18px;
    background: linear-gradient(135deg, #0072bc 0%, #0087e6 90%) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 114, 188, 0.3);
}

.box-60x65 p {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    justify-content: center;
    align-items: center;
    text-align: left;
    margin: 14px auto;
    padding: 0 20px;
}


/* Footer Styles */
.footer {
    background-color: #EEEEEE;
    padding: 40px 0;
    color: #333;
    width: 100%;
    margin-top: auto;
}

/* Contact Form Section */
.contact-section {
    padding: 0;
    background-color: #fff;
    position: relative;
    z-index: 1;
    flex: 1 0 auto;
    width: 100%;
    margin-bottom: 40px;
}

.section-title {
    font-size: 39px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    text-align: left;
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.6;
}

.form-container {
    max-width: 800px;
    margin: 0;
    padding: 0;
}

.form-row {
    display: block;
    margin-bottom: 20px;
    width: 100%;
}

.form-group {
    width: 100%;
    margin-bottom: 25px;
    max-width: 594px;
    position: relative;
}

.form-control {
    width: 100%;
    height: 48px;
    box-sizing: border-box;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 14px;
    color: #333;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #0072bc;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
    padding: 15px;
    line-height: 1.5;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* Required field indicators */
.form-group:not(.checkbox-group) > label::after {
    content: " *";
    color: #ff0000;
    font-weight: bold;
}

/* Hide asterisk in privacy policy */
.checkbox-group label::after {
    content: none !important;
}

/* Hide any existing black asterisks */
.form-group label span.required,
.form-group label:contains('*') {
    display: none;
}

/* Custom Select Styling */
.select-wrapper {
    position: relative;
}

/* Remove default arrow */
.select-wrapper select {
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: 10px;
    font-family: 'Source Sans 3';
    font-size: 14px;
    appearance: none;
    padding-right: 35px; /* Make room for custom arrow */
}

/* Remove default arrow in IE */
.select-wrapper select::-ms-expand {
    display: none;
}

.select-wrapper i {
    position: absolute;
    top: 30%; 
    right: 15px;
    transform: translateY(-50%);
    color: #666;
    pointer-events: none;
}

/* Checkbox Styling */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin: 30px 0;
}

.checkbox-group input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    min-width: 18px;
    border-radius: 3px;
    margin-right: 10px;
    margin-top: 4px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.checkbox-group input[type="checkbox"]:checked {
    background-color: #1E91BC;
    border-color: #1E91BC;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
}

.checkbox-group label {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    font-weight: 400;
}

.privacy-link {
    color: #0072bc;
    text-decoration: none;
    font-weight: 600;
}

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

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.btn-submit {
    background: #1E91BC;
    color: #fff;
    border: none;
    width: 140px;
    height: 48px;
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
}

.btn-submit i {
    margin-left: 10px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 114, 188, 0.2);
}

.btn-submit:hover i {
    transform: translateX(3px);
}

.required-fields {
    font-size: 12px;
    color: #999;
}

/* Responsive Styles */
@media (max-width: 650px) {
    .form-control {
        width: 100%;
        max-width: 100%;
    }
    
    .form-group {
        max-width: 100%;
    }
    .form-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .btn-submit {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 24px;
    }
    
    .btn-submit {
        width: 100%;
        justify-content: center;
    }
}

.footer .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #222;
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3ab7f1;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #fff;
    border-radius: 50%;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-decoration: none;
    position: relative;
}

.social-links a img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.social-links a:hover {
    background-color: #3ab7f1;
    color: #fff;
}

.social-links a:hover img {
    filter: brightness(0) invert(1);
}

.social-links a i {
    font-size: 20px;
    line-height: 1;
}

.footer-bottom {
    border-top: 1px solid #e1e1e1;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #666;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3ab7f1;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .dropdown-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header .container {
        padding: 0 15px;
    }
    
    .main-nav {
        display: none;
    }
    
    .dropdown-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Contact Page Specific Styles */
.contact-hero {
    padding: 100px 0 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 40px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-info-box {
    background: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #fff;
    font-size: 24px;
}

.contact-info-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.contact-info-box p, 
.contact-info-box a {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
    display: block;
}

.contact-info-box a:hover {
    color: var(--primary-color);
}

.contact-form-container {
    background: #fff;
    border-radius: 10px;
    padding: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 60px;
}

.contact-form h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.contact-form p {
    color: #666;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    background: #1E91BC;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-submit i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-submit:hover i {
    transform: translateX(5px);
}

/* Responsive Styles for Contact Page */
@media (max-width: 992px) {
    .contact-hero {
        padding: 80px 0 40px;
    }
    
    .contact-hero h1 {
        font-size: 36px;
    }
    
    .contact-hero p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .contact-form-container {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 32px;
    }
    
    .contact-form h2 {
        font-size: 28px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-info-box {
        padding: 30px 20px;
    }
    
    .contact-form-container {
        padding: 25px 20px;
    }
    
    .btn-submit {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 28px;
    }
    
    .contact-form h2 {
        font-size: 24px;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .footer-bottom {
        text-align: center;
    }
}

@media (min-width: 2000px) {
    .main-nav a {
        color: var(--text-color);
        font-weight: 600;
        padding: 8px 0;
        font-size: 25px;
        position: relative;
        }
    
    .logo img {
        height: 40px;
        width: auto;
        transition: opacity 0.3s ease;
        margin-left: -250px
    }
    
    .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 122px;
        padding: 0 20px;
    }

    .header-actions {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-right: -159px;
        }
    
    .dropdown-grid {
        display: flex;
        gap: 40px;
        height: 100%;
        }
    
    .dropdown-menu .container {
        max-width: 1440px;
        width: 100%;
        margin: -7px auto;
        padding: 40px 90px 0px;
        height: 100%;
        box-sizing: border-box;
        background-color: #0072bc;
        border-radius: 0 0 8px 8px;
        }
    
    .dropdown-menu {
        position: fixed;
        top: 69px; /* Height of header */
        left: 0;
        border-radius: 0 0 20px 20px;
        width: 100%;
        height: 286px;
        background-color: #0072bc;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
        z-index: 999;
        padding: 0;
        margin: 0;
        border: none !important;
        outline: none !important;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
        pointer-events: none;
        will-change: transform;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        }
    
    .btn-contact {
        background: linear-gradient(90deg, #00BA71, #38D58C);
        color: #fff;
        font-size: 13px;
        width: 154px;
        margin-top: -5px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .box-60x65 {
        position: absolute;
        left: 49%;
        transform: translateX(-50%);
        width: 1800px;
        height: 80px;
        border-radius: 28px;
        background-color: rgba(255, 255, 255, 0.8);
        /*background: linear-gradient(135deg, #0072bc 0%, #0087e6 90%) !important;*/
        display: block;
        z-index: 2;
        box-shadow: 0 4px 12px rgba(0, 114, 188, 0.3);
    }
    
    .box-60x65 p {
        color: #fff;
        font-size: 35px;
        font-weight: 600;
        justify-content: center;
        align-items: center;
        text-align: left;
        margin: 12px;
        padding: 0 23px;
    }

    .section-title {
        font-size: 58px;
        font-weight: 700;
        color: #333;
        margin-top: 200px;
        margin-bottom: 10px;
        text-align: left;
    }

    .form-group {
        width: 100%;
        margin-bottom: 25px;
        max-width: 1100px;
        position: relative;
    }

    .form-container {
        max-width: 1100px;
        margin: 0;
        padding: 0;
    }

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-size: 28px;
        font-weight: 600;
        color: #333;
    }

    .select-wrapper select {
        -webkit-appearance: none;
        -moz-appearance: none;
        font-family: 'Source Sans 3';
        font-size: 16px;
        appearance: none;
        padding-right: 35px; /* Make room for custom arrow */
    }
    
    .btn-submit {
    background: #1E91BC;
    color: #fff;
    border: none;
    width: 190px;
    height: 60px;
    padding: 12px 30px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 35px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    }

    .checkbox-group input[type="checkbox"] {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        width: 34px;
        height: 40px;
        min-width: 40px;
        border-radius: 12px;
        margin-right: 10px;
        margin-top: 4px;
        cursor: pointer;
        position: relative;
        transition: all 0.2s ease;
    }

     /* Footer Styles */
     .footer {
        background-color: #EEEEEE;
        padding: 80px 0;
        color: #333;
    }
            
    .footer .container {
        max-width: 1800px;
        margin: 0 auto;
        padding: 0 80px;
    }
            
    .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 40px;
        margin-bottom: 50px;
    }
            
    .footer-section h3 {
        font-size: 26px;
        margin-bottom: 25px;
        color: #222;
        font-weight: 700;
        }
            
    .footer-section ul li {
        margin-bottom: 16px;
        }
            
    .footer-section a {
        color: #000;
        font-size: 20px;
        transition: color 0.3s ease;
    }

    .social-links {
        display: flex;
        gap: 25px;
        margin-top: 30px;
    }

    .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        height: 60px;
        background-color: #fff;
        border-radius: 50%;
        color: #333;
        transition: all 0.3s ease;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        font-size: 28px;
        }
            
    .social-links a:hover {
        background-color: #3ab7f1;
        color: #fff;
        transform: translateY(-5px);
        }
            
    .footer-bottom {
        border-top: 2px solid #e1e1e1;
        padding-top: 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 30px;
        font-size: 20px;
        }
            
    .footer-links {
        display: flex;
        gap: 40px;
        }
            
    .footer-links a {
        color: #666;
        font-size: 20px;
        transition: color 0.3s ease;
        }
            
    .footer-links a:hover {
        color: #3ab7f1;
        }
}

@media (max-width: 425px) {
    .btn-submit {
        width: 30%;
        justify-content: center;
    }

    .btn-contact {
        background: linear-gradient(90deg, #00BA71, #38D58C);
        color: #fff;
        font-size: 9px;
        width: 96px;
        padding: 0px;
        margin-top: -1px;
        height: 33px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .box-60x65 {
        position: relative;
        width: 1180px;
        max-width: calc(100% - 40px);
        height: 48px;
        margin: 100px auto 40px;
        border-radius: 18px;
        background: linear-gradient(135deg, #0072bc 0%, #0087e6 90%) !important;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        box-shadow: 0 4px 12px rgba(0, 114, 188, 0.3);
    }
    /* Footer Styles */
    .footer {
        background-color: #EEEEEE;
        padding: 40px 0;
        color: #333;
    }
    
    .footer .container {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 40px;
    }
    
    .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 0px;
        margin-bottom: 30px;
    }
    
    .footer-section h3 {
        font-size: 16px;
        margin-bottom: 15px;
        color: #222;
        font-weight: 700;
    }
    
    .footer-section ul li {
        margin-bottom: 8px;
    }
    
    .footer-section a {
        color: #000;
        transition: color 0.3s ease;
    }
    
    .footer-section a:hover {
        color: #3ab7f1;
    }
    
    .social-links {
        display: flex;
        gap: 15px;
        margin-top: 20px;
    }
    
    .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 26px;
        height: 26px;
        background-color: #fff;
        border-radius: 50%;
        color: #333;
        transition: all 0.3s ease;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        position: relative;
        text-decoration: none;
    }
    
    .social-links a img {
        width: 14px;
        height: 14px;
        object-fit: contain;
        margin: 0;
        padding: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .social-links a:hover {
        background-color: #3ab7f1;
        color: #fff;
    }
    
    .social-links a:hover img {
        filter: brightness(0) invert(1);
    }
    
    .social-links a i {
        font-size: 15px;
        line-height: 1;
    }
    
    .footer-bottom {
        border-top: 1px solid #e1e1e1;
        padding-top: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .footer-links {
        display: flex;
        gap: 20px;
    }
    
    .footer-links a {
        color: #666;
        font-size: 14px;
        transition: color 0.3s ease;
    }
    
    .footer-links a:hover {
        color: #3ab7f1;
    }
 
}

@media (max-width: 375px) {
    .header-actions
 {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 79px;
}

.logo img {
    height: 30px;
    width: auto;
    margin-left: 0px;
    margin-top: 8px;
    transition: opacity 0.3s ease;
}

.btn-contact {
    background: linear-gradient(90deg, #00BA71, #38D58C);
    color: #fff;
    font-size: 11px;
    width: 110px;
    padding: 0px;
    margin-top: -5px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-submit {
    width: 40%;
    justify-content: center;
}

}

@media (max-width: 320px) {
    .logo img {
        height: 22px;
        width: auto;
        margin-left: 0px;
        margin-top: 8px;
        transition: opacity 0.3s ease;
    }

    .header-actions {
        display: flex;
        align-items: center;
        gap: 4px;
        margin-left: 59px;
    }

    .search-btn {
        background: none;
        border: none;
        font-size: 14px;
        color: var(--text-color);
        cursor: pointer;
        transition: var(--transition);
    }

    .btn-contact {
        background: linear-gradient(90deg, #00BA71, #38D58C);
        color: #fff;
        font-size: 10px;
        width: 100px;
        padding: 0px;
        margin-top: -5px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .box-60x65 {
        position: relative;
        width: 100%;
        max-width: calc(100% - 40px);
        height: 45px;
    }
}

