@import url('config.css');


/* Container */
    .contact_us_header_conteinar {
      position: relative;
      width: 100%;
      height: 150px;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #fff;
      text-align: center;
      background: url('../../image/bg-inner.jpg') no-repeat center/cover; 
      /* replace with your background image */
    }

    /* Overlay effect */
    .contact_us_header_conteinar::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.6);
    }

    /* Text container */
    .contact_us_header_content {
      position: relative;
      z-index: 2;
    }

    .contact_us_header_content h1 {
      font-size: 24px;
      margin: 0;
      font-weight: 600;
    }

    .contact_us_header_content p {
      margin-top: 8px;
      font-size: 14px;
      color: #ccc;
    }

    .contact_us_header_content p a {
      text-decoration: none;
      color: #ccc;
      transition: color 0.3s;
    }

    .contact_us_header_content p a:hover {
      color: #ff5722;
    }

    /* Optional: small map pin effect */
    .map_pin {
      position: absolute;
      right: 20%;
      top: 50%;
      transform: translateY(-50%);
      font-size: 20px;
      color: #ff5722;
      z-index: 2;
      animation: pulse 1.5s infinite;
    }

    @keyframes pulse {
      0% { transform: translateY(-50%) scale(1); opacity: 1; }
      50% { transform: translateY(-50%) scale(1.3); opacity: 0.6; }
      100% { transform: translateY(-50%) scale(1); opacity: 1; }
    }


    /*  */


    /* Section Wrapper */
    .contact_us_quick_enqurie {
      width: 95%;
      margin: 0px auto;
      padding: 0 15px;
      text-align: center;
    }

    .contact_us_quick_enqurie h2 {
      font-size: 30px;
      font-weight: bold;
      color: #7a1212;
      margin-bottom: 6px;
    }

    .contact_us_quick_enqurie p {
      font-size: 14px;
      color: #555;
      margin-bottom: 20px;
    }

    /* Form Box */
    .contact_us_quick_enqurie form {
      background: #fff;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
      border-radius: 8px;
      padding: 25px;
      text-align: left;
    }

    /* Form Layout */
    .contact_us_quick_enqurie .form-group {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 15px;
      margin-bottom: 15px;
    }

    /* Inputs & Selects */
    .contact_us_quick_enqurie input,
    .contact_us_quick_enqurie select,
    .contact_us_quick_enqurie textarea {
      /* width: 100%; */
      padding: 10px 12px;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-size: 12px;
      background: #fafafa;
      transition: 0.3s;
    }

    .contact_us_quick_enqurie input:focus,
    .contact_us_quick_enqurie select:focus,
    .contact_us_quick_enqurie textarea:focus {
      border-color: #b32020;
      outline: none;
      background: #fff;
      box-shadow: 0 0 3px rgba(179,32,32,0.3);
    }

    .contact_us_quick_enqurie textarea {
      resize: none;
      min-height: 90px;
    }

    /* Submit Button */
    .contact_us_quick_enqurie button {
      background: #b32020;
      color: #fff;
      border: none;
      padding: 12px 28px;
      font-size: 15px;
      border-radius: 5px;
      cursor: pointer;
      transition: 0.3s;
      display: block;
      margin-left: auto;
    }

    .contact_us_quick_enqurie button:hover {
      background: #8d1818;
      transform: translateY(-2px);
      box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    }
.contact_now_main_container {
            display: flex;
            justify-content: space-between;
            gap: 40px;
            padding: 40px;
            max-width: 95%;
            margin: 0 auto;
        }

        .contact_now_left_side_container {
            flex: 0;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact_now_right_side_container {
            flex: 1;
            background: #fff;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }


        .contact_now_box_data_container {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 20px;
        }

        .contact_now_box_data {
            background: #fff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            text-align: center;
        }
        .contact_now_box_data.horizontal {
            display: flex;
            align-items: center;
            text-align: left;
            padding: 15px 20px;
            flex-grow: 1;
            min-height: 100px;
        }
        .contact_now_box_data.horizontal .contact_now_icon_container {
            margin: 0 15px 0 0;
        }

        .contact_now_icon_container {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 50px;
            height: 50px;
            background: #f0f4f8;
            border-radius: 50%;
            margin: 0 auto 15px;
        }

        .contact_now_icon_container i {
            font-size: 24px;
            color: #121035;
            padding: 15px;
        }

        .contact_now_box_data h3 {
            font-size: 1.2rem;
            color: #333;
            margin-bottom: 10px;
        }

        .contact_now_box_data p {
            font-size: 0.9rem;
            color: #666;
            margin: 5px 0;
            line-height: 25px;
        }
        .contact_now_box_data.horizontal p {
            margin: 0;
        }

        .contact_now_right_side_container h2 {
            text-align: left;
            margin-top: 0;
            color: #121035;
            padding: 10px;
            text-align: center;
        }

        .contact_now_right_side_container p {
            margin-bottom: 20px;
            color: #666;
            text-align: center;
        }
        .contact_now_right_side_container hr{
          margin-bottom: 10px;
          color: #121035;
        }

        .contact_now_form_group {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 15px;
            margin-bottom: 20px;
            align-items: flex-end;
        }

        .contact_now_input_group {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .contact_now_label {
            font-size: 0.9rem;
            font-weight: bold;
            color: #555;
        }

        .contact_now_right_side_container input,
        .contact_now_right_side_container select,
        .contact_now_right_side_container textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 14px;
            box-sizing: border-box;
            /* margin-top: 5px; */
            background-color: #fff;
        }

        .contact_now_right_side_container textarea {
            height: 100px;
            resize: vertical;
        }

        .contact_now_submit_btn {
            padding: 10px 20px;
            border: none;
            background-color: #A6801D;
            color: #fff;
            font-size: 15px;
            font-weight: bold;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .contact_now_submit_btn:hover {
            background-color: #121035;
        }

        /* Modal Styles */
        .contact_now_modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            justify-content: center;
            align-items: center;
        }

        .submit_btn{
          text-align: center;
        }
        .contact_now_modal_content {
            background: #fff;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            max-width: 400px;
            position: relative;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .contact_now_modal_close {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 24px;
            cursor: pointer;
            color: #888;
        }

        .contact_now_modal_close:hover {
            color: #333;
        }

        .contact_now_modal_content p {
            margin-top: 0;
        }

        /* Image at top of form */
        .contact_now_form_top_image {
            width: 100%;
            height: auto;
            border-radius: 10px;
            margin-bottom: 20px;
        }

        /* Mobile responsive styles */
        @media (max-width: 768px) {
            .contact_now_main_container {
                flex-direction: column;
                gap: 20px;
                padding: 10px;
            }
            .contact_now_left_side_container,
            .contact_now_right_side_container {
                width: 100%;
            }
            .contact_now_box_data_container {
                grid-template-columns: 1fr;
            }
            .contact_now_form_group {
                grid-template-columns: 1fr;
            }
        }
.mandetory{
  color: red;
  font-size: 20px;
}
.contact_now_box_data.horizontal {
      max-width: 400px;
      background: #f8fafc;
      border: 1px solid #dbeafe;
      border-radius: 12px;
      padding: 16px;
      display: flex;
      gap: 14px;
      font-family: sans-serif;
    }
    .contact_now_icon_container {
      width: 50px; height: 50px;
      display: flex; align-items: center; justify-content: center;
      background: #e0f2fe;
      border-radius: 10px;
      font-size: 20px;
      color: #0284c7;
    }
    .contact_now_content {
      flex: 1;
    }
    .contact_now_content h3 {
      margin: 0;
      font-size: 1.2rem;
      color: #0f172a;
    }
    .contact_now_content p {
      margin: 2px 0 10px;
      font-weight: 600;
      color: #334155;
    }
    .time_list {
      border-top: 1px solid #cbd5e1;
      margin-top: 8px;
      padding-top: 8px;
      font-size: 0.9rem;
      color: #475569;
    }
    .time_list ul {
      list-style: none;
      margin: 0; padding: 0;
    }
    .time_list li {
      display: flex;
      justify-content: space-between;
      padding: 4px 0;
      border-radius: 6px;
    }
    .time_list li.today {
      background: #e0f2fe;
      font-weight: 600;
      color: #0c4a6e;
    }
    .time_list li.closed span:last-child {
      color: #ef4444;
      font-weight: 600;
    }