/*
Theme Name: Techwix
Theme URI: http://thepixelcurve.com/wp/techwix
Author: Devthrow
Author URI: https://themeforest.net/user/devthrow
Description: IT Solutions & Technology WordPress Theme
Version: 1.1.7
License: Split License
License URI: https://help.market.envato.com/hc/en-us/articles/202501064-What-is-Split-Licensing-and-the-GPL-
Text Domain: techwix
Requires PHP: 7.4
Tested up to: 6.3
Tags: two-columns, three-columns, left-sidebar, right-sidebar, custom-background, custom-header, custom-menu, editor-style, post-formats, rtl-language-support, sticky-post, theme-options, translation-ready, accessibility-ready

This theme, Techwix, is licensed under the GNU General Public License.

Techwix - IT Solutions & Technology WordPress Theme
Copyright (C) 2024 Devthrow
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/

/* Note: The CSS files are loaded from assets/css/ folder. */


/* ===== Contact Form Box ===== */
.contact {
  max-width: 850px;
  margin: 50px auto;
  background: #fff;
  padding: 50px 50px 20px 50px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  font-family: 'Poppins', sans-serif;
}

/* ===== Headings ===== */
.contact-subtitle {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #0066ff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.contact-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin-bottom: 35px;
}

/* ===== Name + Email Row ===== */
.contact-row {
  display: flex;
  gap: 20px;
 
}

.contact-row input[type="text"],
.contact-row input[type="email"] {
  flex: 1;
  width:100%;
  padding: 14px 18px;
  font-size: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  color: #333;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-row input:focus {
  border-color: #0066ff;
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
  outline: none;
}

/* ===== Subject Field ===== */
.contact-subject input[type="text"] {
  width: 100%;
  margin-top: 20px;
  padding: 14px 18px;
  font-size: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  color: #333;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-subject input:focus {
  border-color: #0066ff;
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
  outline: none;
}

/* ===== Message Box ===== */
.contact-text-area textarea {
  width: 100%;
  margin-top: 20px;
  padding: 14px 18px;
  font-size: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  resize: none;
  height: 160px;
  background: #fff;
  color: #333;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-text-area textarea:focus {
  border-color: #0066ff;
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
  outline: none;
}

/* ===== Submit Button ===== */
.contact-submit {
  margin-top: 25px;
}

.contact-submit input[type="submit"] {
  width: 100%;
  padding: 15px 0;
  border: none;
  border-radius: 6px;
  background: #0066ff;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.contact-submit input[type="submit"]:hover {
  background: #0052cc;
  transform: translateY(-1px);
}

/* ===== Placeholder Styling ===== */
.contact input::placeholder,
.contact textarea::placeholder {
  color: #aaa;
  font-weight: 400;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .contact {
    padding: 30px;
  }
  .contact-row {
    flex-direction: column;
  }
  .contact-title {
    font-size: 24px;
  }
}
