/**
Theme Name: Astra Child
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child
Template: astra
*/

h1, h2, h3, h4, h5, h6, a, span, p{
	margin:0px !important;
}

.company_margin{
	margin-top:5px !important;
}

.aboutus_carasoul img{
	height: 400px;
    object-fit: cover;
}





/* request quote css code start  */


/* Core Variables using your Brand Colors */
:root {
  --af-red: #CE0001;
  --af-green: #019900;
  --af-bg: #ffffff;
  --af-border: #e2e8f0;
  --af-input-bg: #f8fafc;
  --af-text: #334155;
  --af-label: #0f172a;
}

/* Main Wrapper */
.af-form-wrapper {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  color: var(--af-text);
  background: var(--af-bg);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  max-width: 900px;
  margin: 0 auto;
  border-top: 5px solid var(--af-red);
}

/* Typography & Headings */
.af-form-wrapper h2 {
  color: var(--af-red);
  margin-top: 0;
  margin-bottom: 25px;
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.af-form-wrapper h3 {
  color: var(--af-label);
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

.af-divider {
  border: 0;
  height: 1px;
  background: var(--af-border);
  margin: 30px 0;
}

/* Layout System */
.af-form-section {
  margin-bottom: 25px;
}

.af-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.af-col {
  flex: 1;
  min-width: 240px;
}

/* Labels & Inputs */
.af-form-wrapper label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--af-label);
  font-size: 14px;
}

.af-form-wrapper input[type="text"],
.af-form-wrapper input[type="email"],
.af-form-wrapper input[type="tel"],
.af-form-wrapper input[type="date"],
.af-form-wrapper select,
.af-form-wrapper textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--af-border);
  border-radius: 8px;
  background-color: var(--af-input-bg);
  color: var(--af-text);
  font-size: 15px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.af-form-wrapper textarea {
  resize: vertical;
}

/* Input Focus States (Green Brand Color) */
.af-form-wrapper input:focus,
.af-form-wrapper select:focus,
.af-form-wrapper textarea:focus {
  border-color: var(--af-green);
  outline: none;
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(1, 153, 0, 0.1);
}

/* Goods Grid System */
.af-goods-grid {
  display: grid;
  grid-template-columns: 50px 1fr 1fr 1fr;
  gap: 15px;
  align-items: center;
  margin-bottom: 12px;
}

.af-desktop-header {
  font-weight: 700;
  color: var(--af-label);
  font-size: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--af-border);
  margin-bottom: 20px;
}

.af-text-center {
  text-align: center;
}

.af-goods-grid .item-num {
  text-align: center;
  font-weight: 700;
  color: var(--af-red);
  background: #fff0f0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto;
}

/* Radio Buttons Styling */
.wpcf7-list-item {
  margin-left: 0;
  margin-right: 25px;
}
.wpcf7-list-item-label {
  font-weight: 500;
}

/* Action Buttons */
.af-submit-section {
  display: flex;
  gap: 15px;
  margin-top: 40px;
}

.af-submit-btn,
.af-reset-btn {
  padding: 16px 30px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.af-submit-btn {
  background-color: var(--af-green) !important;
  color: #ffffff;
  flex: 3;
}

.af-submit-btn:hover {
  background-color: #017a00 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(1, 153, 0, 0.25);
}

.af-reset-btn {
  background-color: transparent !important;
  color: var(--af-text) !important;
  flex: 1;
  border: 1.5px solid var(--af-border) !important;
}

.af-reset-btn:hover {
  background-color: #fff0f0 !important;
  color: var(--af-red) !important;
  border-color: var(--af-red) !important;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .af-form-wrapper {
    padding: 25px 20px;
  }
  
  .af-goods-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    background: var(--af-input-bg);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--af-border);
    margin-bottom: 20px;
    position: relative;
  }
  
  .af-desktop-header {
    display: none;
  }
  
  .af-goods-grid .item-num {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--af-red);
    color: white;
  }
  
  .af-submit-section {
    flex-direction: column;
  }
}

/* request code css end  */