#Contact-us {
    background: url("./images/blurbg.jpg") no-repeat center center;
    background-size: cover;
    padding-top: 30px;
}

.overlay-text {
    text-align: center;
    color: white;
    font-size: 20px;
    padding-bottom: 20px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    align-items: center;
    gap: 30px;
}

.contact-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 8px 8px 20px 1px rgba(255, 255, 255, 1);
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.blinking {
    color: coral;
    font-size: 1.2em;
    animation: blink 1s infinite;
    display: block;
    margin-bottom: 20px;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}

.form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.input-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 768px) {
    .input-row {
        flex-direction: row;
        gap: 20px;
    }
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-weight: 600;
    margin-bottom: 6px;
}

.form-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.form-icon i {
    position: absolute;
    left: 12px;
    color: #6b7280;
}

.form-icon input,
.form-icon select {
    width: 100%;
    padding: 8px 8px 8px 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 14px;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.submit-btn {
    width: 200px;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #4F46E5;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background-color: #4338CA;
}

/*  */
.mumbai-bg {
    background-image: url(../assets/m1.jpg);
    background-position: -70px 300px;
    background-repeat: no-repeat;
    background-color: #f3f4f6;
    background-size: auto;
    /* default for desktop */
}

.sizing-bg {
    padding-bottom: 250px;
}

/* Tablet view */
@media (max-width: 1024px) {
    .mumbai-bg {
        background-position: center 200px;
        background-size: contain;
    }

    .sizing-bg {
        padding-bottom: 200px;
    }
}

/* Mobile view */
@media (max-width: 768px) {
    .mumbai-bg {
        background-position: center 150px;
        background-size: 100% auto;
        /* scale width to fit container */
    }

    .sizing-bg {
        padding-bottom: 150px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .mumbai-bg {
        background-position: center 450px;
        background-size: 100% auto;
        /* full width */
    }

    .sizing-bg {
        padding-bottom: 120px;
    }
}


.custom-padding {
    height: 120px;
    padding-right: 15%;
    /* default for desktop */
}

/* Mobile styles */
@media screen and (max-width: 768px) {
    .custom-padding {
        padding-right: 0;
        padding-left: 15%;
    }
}


.company-logo {
    height: 80px;
    display: flex;
    margin: 0 auto;
    padding-top: 10px;
}

.hide {
  display: none;
}

@media (min-width: 768px) {
  .md-show {
    display: block;
    float: left;
  }
}

/* Hide on screens >= 768px */
@media (min-width: 768px) {
    .company-logo {
        display: none;
    }
}




/* =====================================
   BASE SETTINGS
===================================== */

/* hide checkbox */
#top #menuToggle {
    display: none;
}

/* hide mobile elements on desktop */
#top .mobile-ham,
#top .mobile-nav {
    display: none;
}

/* =====================================
   FONT STYLING
===================================== */

/* Desktop main nav font */
#top .o_primary_nav1 a {
    font-family: "Caveat", cursive;
    font-weight: 700;
}

/* Mobile dropdown nav font */
#top .mobile-nav a {
    font-family: "Caveat", cursive;
    font-weight: 700;
}

/* Connect button font */
#top .trial_link {
    font-family: "Caveat", cursive;
    font-weight: 700;
}

/* Bigger font for desktop nav */
#top .o_primary_nav a {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Connect button size */
#top .o_no_autohide_item a {
    font-size: 18px !important;
    font-weight: 500 !important;
}

/* =====================================
   MOBILE HEADER LAYOUT
===================================== */
@media (max-width: 768px) {

    /* Header container */
    #top #top_menu {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 40px;
    }

    /* Hamburger LEFT */
    #top .mobile-ham {
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        gap: 5px;
        width: 28px;
        height: 28px;
        cursor: pointer;
        z-index: 1001;
    }

    /* Centered logo */
    #top .company-logo {
        height: 75px;
        margin: 0 auto;
    }

    /* Connect button RIGHT */
    #top .o_header_buttons {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
    }

    /* Dropdown menu */
    #top .mobile-nav {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        padding: 10px 20px;
        max-height: 0;
        overflow: hidden;
        transition: 0.35s ease;
        z-index: 998;
    }

    /* Open state */
    #top #menuToggle:checked ~ .mobile-nav {
        max-height: 400px;
    }

    /* Menu list */
    #top .mobile-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: left;
    }

    #top .mobile-nav li {
        padding: 10px 0;
        border-bottom: 1px solid #e5e5e5;
    }

    #top .mobile-nav a {
        text-decoration: none;
        color: #222;
        font-size: 15px;
        font-weight: 500;
        display: block;
    }
}

/* =====================================
   HAMBURGER ICON
===================================== */

/* Container */
#top .mobile-ham {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    z-index: 1001;
}

/* Bars */
#top .mobile-ham span {
    display: block;
    height: 2px;
    width: 22px;
    background: #333;
    transition: 0.3s ease;
}

/* Animate to X */
#top #menuToggle:checked + .mobile-ham span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

#top #menuToggle:checked + .mobile-ham span:nth-child(2) {
    opacity: 0;
}

#top #menuToggle:checked + .mobile-ham span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =====================================
   VISIBILITY CONTROL
===================================== */

/* Hide hamburger on tablet/laptop/desktop */
@media (min-width: 769px) {
    #top .mobile-ham {
        display: none !important;
    }
}

/* Show hamburger only on mobile */
@media (max-width: 768px) {
    #top .mobile-ham {
        display: flex;
    }
}

