.industries-section {
    background: #f8f9fa;
}

.industry-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e5e7eb; /* ADD BORDER */
    padding: 25px 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.10);
    border-color: var(--brand-primary); /* HIGHLIGHT BORDER ON HOVER */
}

.industry-icon {
    font-size: 40px;
    color: var(--brand-primary);
    margin-bottom: 10px;
}

.industry-card h5 {
    font-weight: 600;
    font-size: 2rem; 
    margin-bottom: 8px;
}

.industry-card p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
}
.benefits-section-g01 {
    background: #f8fafc;
    padding-top: 70px;
    padding-bottom: 70px;
}

.benefits-header-g01 {
    max-width: 760px;
    margin: 0 auto 50px;
}

.benefit-badge-g01 {
    display: inline-block;
    background: #fff4db;
    color: #d97706;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 14px;
}

.section-title-g01 {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.section-subtitle-g01 {
    font-size: 15px;
    color: #64748b;
    line-height: 1.8;
    margin: 0;
}

.benefit-card-g01 {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px 24px;
    border: 1px solid #e9eef5;
    border-left: 4px solid #f59e0b;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.benefit-card-g01:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.10);
    border-left-color: black;
}

.benefit-icon-g01 {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #fff7e6;
    color: #f59e0b;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 24px;
    transition: all 0.3s ease;
}

.benefit-card-g01:hover .benefit-icon-g01 {
    background: #eaf2ff;
    color: black;
}

.benefit-card-g01 h4 {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
    line-height: 1.5;
}

.benefit-card-g01 p {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .section-title-g01 {
        font-size: 1.9rem;
    }
}

@media (max-width: 576px) {
    .benefits-section-g01 {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .section-title-g01 {
        font-size: 1.6rem;
    }

    .benefit-card-g01 {
        padding: 22px 18px;
    }

    .benefit-icon-g01 {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}
.section-title-line::after {
    content: "";
    display: block;
    width: 60px;   /* line width */
    height: 4px;   /* thickness */
    background-color: #fbbf24; /* yellow color */
    margin: 10px auto 0; /* center it */
    border-radius: 2px;
}

/* Title */
.why_partner_area .section_title {
    margin-bottom: 50px;
    text-align: center;
}

.why_partner_area .section_title h2 {
    margin-top: 10px;
    font-weight: 700;
}

.why_partner_area .section_title p {
    max-width: 750px;
    margin: 15px auto 0;
    color: #666;
}

/* Box Styling */
.partner_box {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #000; /* black border added */
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    text-align: center;
    transition: 0.3s ease;
}

.partner_box:hover {
    transform: translateY(-8px);
    border-color: yellow; /* optional: blue border on hover */
}

/* Icon */
.partner_icon {
    font-size: 40px;
    color: #ffc727db;
    margin-bottom: 15px;
}

/* Text */
.partner_box h4 {
    margin-top: 10px;
    margin-bottom: 15px;
    font-weight: 600;
}

.partner_box p {
    color: #666;
    margin-bottom: 0;
}
.partner_heading {
    text-align: center;
    margin-bottom: 40px;
}

.partner_heading h2 {
    font-weight: 700;
    color: #111;
    position: relative;
    display: inline-block;
}

.partner_heading h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #f4b400;
    margin: 10px auto 0;
}
.partnership_area {
    padding: 80px 0;
    margin-top: -12rem;
}

.partnership_heading {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
}

.partnership_heading h2 {
    color: #222;
    margin-bottom: 15px;
    font-weight: 700;
}

.partnership_heading p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.partnership_process {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process_line {
    position: absolute;
    top: 30px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: #f4b400;
    z-index: 0;
}

.process_item {
    position: relative;
    background: #fff;
    padding: 60px 20px 25px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
    z-index: 1;
    transition: 0.3s ease;
}

.process_item:hover {
    transform: translateY(-6px);
}

.process_circle {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background: #f4b400;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 20px;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 12px rgba(244, 180, 0, 0.3);
}

.process_item h4 {
    font-size: 18px;
    color: #222;
    margin-bottom: 12px;
    font-weight: 600;
}

.process_item p {
    font-size: 14px;
    color: #777;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .partnership_process {
        grid-template-columns: repeat(2, 1fr);
    }

    .process_line {
        display: none;
    }
}

@media (max-width: 575px) {
    .partnership_process {
        grid-template-columns: 1fr;
    }

    .partnership_heading h2 {
        font-size: 28px;
    }
}

/* ===== COMMON HEADER ===== */
.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 60px;
  padding: 56px 0;
}

.section-header h2 {
  line-height: 1.2;
  margin-bottom: 18px;
  color: #111;
  font-weight:700;
}

.section-text {
  max-width: 700px;
  margin: 0 auto 12px;
  color: #555;
}

.main-btn {
  display: inline-block;
  margin-top: 22px;
  padding: 14px 30px;
  text-decoration: none;
  background: #ffc727db;
  color: #111;
  border-radius: 40px;
  font-weight: 600;
  transition: 0.3s ease;
}

.main-btn:hover {
  background: #111;
  color: #fff;
  transform: translateY(-3px);
}

/* ===== VALUE SECTION ===== */

.value-cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: -6rem;
}

.info-box {
  background: #ffffff;
  border: 1px solid #ffe08a;
  border-radius: 28px;
  padding: 34px 28px;
  position: relative;
  transition: 0.35s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.info-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.info-box::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 0;
  width: 6px;
  height: 60px;
  border-radius: 0 10px 10px 0;
  background: linear-gradient(180deg, #ffc727db, #111);
}

.box-number {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 42px;
  font-weight: 700;
  color: #ffe9a6;
  line-height: 1;
}

.info-box h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #111;
}

.info-box p {
  color: #555;
  font-size: 15px;
}

/* ===== JOURNEY SECTION ===== */
.journey-section {
  padding: 30px 0;
  background: #fff;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 40px;
  position: relative;
  margin-top: -8rem;
}

.journey-card {
  background: #fffdf5;
  border: 1px solid #ffe08a;
  border-radius: 30px;
  padding: 30px 28px;
  position: relative;
  transition: 0.35s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.journey-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.1);
}

.journey-card:nth-child(2),
.journey-card:nth-child(4) {
  margin-top: 40px;
}

.journey-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.journey-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ffc727db, #111);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(255, 199, 39, 0.3);
}

.step-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #c89b00;
  font-weight: 600;
}

.journey-card h3 {
  font-size: 21px;
  margin-bottom: 10px;
  color: #111;
}

.journey-card p {
  font-size: 15px;
  color: #555;
}

/* connector line */
.journey-grid::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 50%;
  width: 2px;
  height: calc(100% - 100px);
  background: linear-gradient(180deg, #ffe08a, #ffc727db, #111);
  transform: translateX(-50%);
  z-index: 0;
}

.journey-card {
  z-index: 2;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .value-cards {
    grid-template-columns: 1fr;
  }

  .journey-grid {
    grid-template-columns: 1fr;
  }

  .journey-grid::before {
    display: none;
  }

  .journey-card:nth-child(2),
  .journey-card:nth-child(4) {
    margin-top: 0;
  }
}

@media (max-width: 576px) {
  /* .value-section,
  .journey-section {
    padding: 80px 0;
  } */

  .info-box,
  .journey-card {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .section-text {
    font-size: 15px;
  }

  .section-header {
    margin-bottom: 40px;
  }
}
/* SECTION */
.about-us1 {
  padding: 80px 0;
}

.about-us1 .auto-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ROW - REVERSE ORDER */
.about-us1 .row {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
}

/* COLUMNS */
.left-column,
.right-column {
  width: 50%;
  padding: 15px;
}

/* IMAGE (RIGHT SIDE) */
.about-us-left figure {
  margin: 0;
  text-align: center;
}

.about-us-left img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
}

.about-us-left img:hover {
  transform: scale(1.05);
}

/* CONTENT (LEFT SIDE) */
.about-us-right {
  padding: 20px 30px;
}

.about-us-form-wrapper {
  background: #ffffff;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #f4b400;
}

.about-us-form-wrapper .form-header h6 {
  color: #f4b400;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  font-weight: 700;
}

.about-us-form-wrapper .form-header h3 {
  margin-bottom: 15px;
  color: #111;
  line-height: 1.2;
}

.about-us-form-wrapper .form-header p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}

.about-us-form .form-row {
  margin-bottom: 18px;
}

.about-us-form .new-form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #d9e2ef;
  border-radius: 8px;
  color: #333;
  background: #f8fbfd;
  transition: all 0.3s ease;
}

.about-us-form .new-form-control:focus {
  outline: none;
  border-color: #007bff;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.12);
}

.about-us-form textarea.new-form-control {
  min-height: 120px;
  resize: vertical;
}

.about-us-btn {
  width: 100%;
  padding: 14px 18px;
  border: none;
  border-radius: 8px;
  background: #f4b400;
  color: #111;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.about-us-btn:hover {
  background: #ffc107;
  transform: translateY(-2px);
}

/* TITLE */
.section-title h6 {
  color: rgba(255, 199, 39, 0.86);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-weight: 600;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #222;
  line-height: 1.3;
  margin-bottom: 20px;
}

.section-title h2 span {
  color: rgba(255, 199, 39, 0.86);
}

/* TEXT */
.about-us-right p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: justify;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .about-us1 .row {
    flex-direction: column; /* stack for mobile */
  }

  .left-column,
  .right-column {
    width: 100%;
  }

  .about-us-right {
    padding: 20px 10px;
  }

  .section-title h2 {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .section-title h2 {
    font-size: 24px;
  }

  .about-us-right p {
    font-size: 14px;
  }
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.section-header p {
    color: #6b7280;
    margin: 0 auto;
    line-height: 1.8;
}

.service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 28px;
    border: 1.5px solid #e5e7eb;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
        margin-bottom: 24px;

}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffc727db, #f59e0b);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border-color: #ffc727db;
}

.service-badge {
    display: inline-block;
    background: #fff7e6;
    color: #f59e0b;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    width: fit-content;
}

.service-card:hover .service-badge {
    background: #ffc727db;
    color: #ffffff;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
    line-height: 1.4;
}

.card-title a {
    color: #111827;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-card:hover .card-title a {
    color: #ffc727db;
}

.card-tag {
    font-size: 14px;
    color: #f59e0b;
    font-weight: 600;
    margin-bottom: 12px;
}

.card-desc {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 16px;
    flex-grow: 1;
}

.card-locations {
    font-size: 13px;
    color: #9ca3af;
    margin: 0;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
}

@media (max-width: 768px) {
    .services-section {
        padding: 50px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .service-card {
        padding: 28px 22px;
    }

    .card-title {
        font-size: 1.15rem;
    }
}
.tc-partner-section {
    background: linear-gradient(135deg, #f9fbfd 0%, #f0f4fa 100%);
    padding: 60px 0;
}

.tc-partner-content {
    padding: 20px 0;
}

/* Partnership Box - Left Column */
.tc-partner-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    border-left: 5px solid #f4b400;
}

.tc-partner-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.section-badge {
    display: inline-block;
    background: #f4b400;
    color: #333;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.tc-partner-text h3 {
    font-size: 2rem;
    color: #ffc727db;
    margin-bottom: 25px;
    font-weight: 700;
}

.tc-partner-text p {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 18px;
    text-align: justify;
}

.tc-partner-text b {
    color: #ffc727db;
    font-weight: 700;
}

/* Right Section Container */
.partner-right-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Benefits Wrapper */
.partner-benefits-wrapper {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-top: 5px solid black;
}

.benefits-title {
    color: #333;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.benefits-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #f4b400;
    border-radius: 2px;
}

.partner-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    background: #f9fbfd;
    padding: 18px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    border-left: 4px solid #f4b400;
}

.benefit-item:hover {
    background: #ffffff;
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(244, 180, 0, 0.15);
    border-left: 4px solid black;
}

.benefit-icon-wrapper {
    font-size: 2.2rem;
    color: #f4b400;
    min-width: 50px;
    text-align: center;
    flex-shrink: 0;
    line-height: 1;
}

.benefit-content {
    flex: 1;
}

.benefit-item h5 {
    color: #333;
    margin: 0 0 5px 0;
    font-weight: 700;
}

.benefit-item p {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Form Wrapper */
.partner-form-wrapper {
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.2);
    background: rgba(255, 199, 39, 0.86);
}

.form-title {
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.partner-form-wrapper .form-group {
    margin-bottom: 16px;
}

.partner-form-wrapper .new-form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    transition: all 0.3s ease;
}

.partner-form-wrapper .new-form-control:focus {
    outline: none;
    border-color: #f4b400;
    background: #ffffff;
    box-shadow: 0 0 8px rgba(244, 180, 0, 0.3);
}

.partner-form-wrapper .new-form-control::placeholder {
    color: #999;
}

.partner-form-wrapper textarea.new-form-control {
    min-height: 100px;
    resize: none;
    font-family: inherit;
}

.submit-btn {
    width: 100%;
    padding: 14px 20px;
    background: #f4b400;
    color: #333;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #ffc107;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(244, 180, 0, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .tc-partner-box {
        padding: 35px;
        margin-bottom: 30px;
    }

    .tc-partner-text h3 {
        font-size: 1.8rem;
    }

    .benefits-title {
        font-size: 1.2rem;
    }

    .partner-benefits-wrapper {
        padding: 30px;
    }

    .partner-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .tc-partner-section {
        padding: 40px 0;
    }

    .tc-partner-box {
        padding: 25px;
        border-left-width: 4px;
        margin-bottom: 30px;
    }

    .tc-partner-text h3 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .tc-partner-text p {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 15px;
    }

    .partner-right-section {
        gap: 20px;
    }

    .partner-benefits-wrapper {
        padding: 20px;
    }

    .benefit-item {
        padding: 15px;
        gap: 12px;
    }

    .benefit-item h5 {
        font-size: 0.95rem;
    }

    .benefit-item p {
        font-size: 0.85rem;
    }

    .benefit-icon-wrapper {
        font-size: 1.8rem;
        min-width: 45px;
    }

    .partner-form-wrapper {
        padding: 20px;
    }

    .form-title {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }

    .partner-form-wrapper .new-form-control {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
}
/* =========================
   ESTIMATE FORM DESIGN
========================= */

.estimate-section {
    padding: 90px 20px;
    margin-top: 17rem;
}

.estimate-container {
    max-width: 760px;
    margin: auto;
    background: #ffffff;
    padding: 55px;
    border-radius: 14px;
    border: 1px solid #e3e8ef;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

/* HEADER */

.estimate-header {
    text-align: center;
    margin-bottom: 40px;
}

.estimate-header h2 {
    color: #ffc727db;
    margin-bottom: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.estimate-header p {
    font-size: 16px;
    line-height: 1.7;
    color: #667085;
    max-width: 620px;
    margin: auto;
}

/* FORM */

.estimate-form {
    width: 100%;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    color: #1e293b;
    font-weight: 600;

    
}

.new-form-control {
    width: 100%;
    height: 58px;
    border: 1px solid #cfd8e3;
    border-radius: 10px;
    background: #fff;
    padding: 0 18px;
    font-size: 15px;
    color: #1e293b;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

textarea.new-form-control {
    min-height: 130px;
    padding-top: 16px;
    resize: none;
}

.new-form-control::placeholder {
    color: #98a2b3;
}

.new-form-control:focus {
    border-color: black;
    box-shadow: 0 0 0 4px rgba(11,94,215,0.08);
}

/* BUTTON */

.estimate-btn {
    width: 100%;
    height: 56px;
    border: none;
    border-radius: 10px;
    background: #ffc727db;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    margin-top: 10px;
}

/* RESPONSIVE */

@media (max-width: 768px) {

    .estimate-container {
        padding: 35px 22px;
    }

    .estimate-header h2 {
        font-size: 30px;
    }

    .estimate-header p {
        font-size: 15px;
    }
}