/* Preset */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --theme-color: #c22b38;
  --light: #fff;
  --dark: #000;
  --shadow: 0px 0px 20px 1px #999;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
}

.btn {
  background-color: var(--theme-color);
  padding: 10px;
  border: 1px solid var(--dark);
  color: var(--light);
  text-decoration: none;
}

.spacer {
  height: 80px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0px !important;
  padding: 50px 50px !important;
  font-size: 20px;
  color: #666;
}

.breadcrumb a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #007bff;
  text-decoration: underline;
}

.breadcrumb span {
  color: #999;
  user-select: none;
}

/* Current page */
.breadcrumb a:last-child {
  color: #222;
  font-weight: 500;
}

/* Mobile */
@media (max-width: 576px) {
  .breadcrumb {
    gap: 7px;
    padding: 10px 0;
    font-size: 20px;
  }
}

/* Navbar CSS */
.desktop-header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  background-color: var(--light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 100px;
  border-bottom: 1px solid var(--theme-color);
  box-shadow: var(--shadow);
  z-index: 1000;
}

.desktop-header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  position: relative;
}

.desktop-header nav a {
  font-size: 17px;
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
}

.desktop-header nav a:hover {
  color: var(--theme-color);
  border-bottom: 2px solid var(--theme-color);
}

.desktop-header nav .dropdown {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 30px;
  left: 210px;
  background-color: var(--light);
  box-shadow: var(--shadow);
  border-top: 2px solid var(--theme-color);
  padding: 10px;
  display: none;
}

.mobile-header {
  display: none;
}

/* banner */
.home-banners {
  width: 100%;
  overflow: hidden;
}

.home-banners .carousel,
.home-banners .carousel-inner,
.home-banners .carousel-item {
  width: 100%;
}

.home-banners .carousel-item {
  transition: transform .8s ease-in-out;
}

.home-banners .hero-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
  display: block;
  margin-top: 6px;
}


.home-banners .carousel-control-prev,
.home-banners .carousel-control-next,
.home-banners .carousel-indicators {
  display: none !important;
}


@media (min-width:1400px) {
  .home-banners .hero-img {
    height: 550px;
  }
}


@media (max-width:1199px) {
  .home-banners .hero-img {
    height: 500px;
  }
}

@media (max-width:991px) {
  .home-banners .hero-img {
    margin-top: 14px;
    height: 400px;
  }
}


@media (max-width:767px) {
  .home-banners .hero-img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

/* Form Message */
.message-box {
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 4px;
}

.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Homepage */
.hero-section {
  padding: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.half {
  width: 50%;
}

.half img {
  width: 100%;
}

.hero-section .text {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 20px;
  padding: 20px;
}

.hero-section .text h1 {
  color: var(--theme-color);
  font-weight: 600;
  font-size: 37px;
}

/* ================================
   About / Second Section
================================ */

.second-section {
  padding: 80px 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

/* Keep content above background decorations */
.second-section .container {
  position: relative;
  z-index: 2;
}

/* ================================
   Text Content
================================ */

.about-content {
  padding-right: 10px;
}

.section-subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--theme-color, #0d6efd);
  margin-bottom: 8px;
}

.section-title {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.section-title span {
  color: var(--theme-color, #0d6efd);
}

.title-line {
  width: 65px;
  height: 4px;
  border-radius: 10px;
  background: var(--theme-color, #0d6efd);
  margin-bottom: 25px;
}

.about-content p {
  color: #667085;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: justify;
}

.about-content strong {
  color: #344054;
}

.about-image {
  position: relative;
  padding: 15px;
}

.about-image::before {
  content: "";
  position: absolute;
  width: 90%;
  height: 90%;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  background: var(--theme-color, #0d6efd);
  opacity: 0.12;
  z-index: -1;
}

.about-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  transition: all 0.4s ease;
}

.about-image:hover img {
  transform: translateY(-5px);
}

/* ================================
   Tablet
================================ */

@media (max-width: 991px) {

  .second-section {
    padding: 60px 0;
  }

  .about-content {
    padding-right: 0;
  }

  .section-title {
    font-size: 36px;
  }

  .about-image {
    margin-top: 10px;
  }

  .about-image img {
    height: 400px;
  }
}

/* ================================
   Mobile
================================ */

@media (max-width: 575px) {

  .second-section {
    padding: 45px 0;
  }

  .section-title {
    font-size: 30px;
  }

  .section-subtitle {
    font-size: 12px;
  }

  .about-content p {
    font-size: 15px;
    line-height: 1.7;
    text-align: left;
  }

  .about-image {
    padding: 8px;
  }

  .about-image img {
    height: 300px;
    border-radius: 15px;
  }

}

/* facility */
/* =========================================
   FACILITY SECTION
========================================= */

.facility-section {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}

.facility-heading {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 55px;
}

.facility-subtitle {
  display: inline-block;
  color: #22983a;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.facility-heading h2 {
  margin: 0;
  color: #000000;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
}

.facility-heading h2 span {
  color: #c22b38;
}

.heading-line {
  width: 65px;
  height: 4px;
  background: #22983a;
  border-radius: 10px;
  margin: 15px auto;
  position: relative;
}

.heading-line::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: #fff;
  border: 3px solid #22983a;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.facility-heading p {
  margin: 0;
  color: #6c7285;
  font-size: 16px;
  line-height: 1.7;
}

.facility-card {
  position: relative;
  min-height: 300px;
  background: #ffffff;
  border-radius: 18px;
  padding: 40px 25px 35px;
  text-align: center;
  overflow: hidden;

  border: 1px solid rgba(32, 38, 77, 0.06);

  box-shadow:
    0 10px 35px rgba(32, 38, 77, 0.07);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease,
    border-color 0.45s ease;

  animation: facilityFadeUp 0.8s ease both;
}

.col-xl-4:nth-child(1) .facility-card {
  animation-delay: 0.1s;
  margin-bottom: 20px;
}

.col-xl-4:nth-child(2) .facility-card {
  animation-delay: 0.2s;
  margin-bottom: 20px;
}

.col-xl-4:nth-child(3) .facility-card {
  animation-delay: 0.3s;
  margin-bottom: 20px;
}

.col-xl-4:nth-child(4) .facility-card {
  animation-delay: 0.4s;
  margin-bottom: 20px;
}

.col-xl-4:nth-child(5) .facility-card {
  animation-delay: 0.5s;
  margin-bottom: 20px;
}

.col-xl-4:nth-child(6) .facility-card {
  animation-delay: 0.6s;
  margin-bottom: 20px;
}

.facility-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 5px;
  background: linear-gradient(135deg, #72010b, #e00015, #9e1520);

  transition: width 0.5s ease;
}

.facility-card:hover {
  transform: translateY(-12px);
  border-color: rgba(34, 152, 58, 0.2);

  box-shadow:
    0 20px 45px rgba(32, 38, 77, 0.12);
}

.facility-card:hover::after {
  width: 100%;
}

.facility-card:hover::before {
  width: 240px;
  height: 240px;
  background: rgba(34, 152, 58, 0.09);
}

.facility-icon {
  position: relative;
  z-index: 2;

  width: 85px;
  height: 85px;

  border-radius: 50%;

  background: linear-gradient(135deg, #72010b, #e00015, #9e1520);

  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 42px;

  margin-bottom: 22px;
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease;
}

.facility-content {
  position: relative;
  z-index: 2;
}

.facility-title,
.facility-content h3 {
  color: #20264d;
  font-size: 25px;
  font-weight: 750;
  line-height: 1.3;
  margin: 0 0 10px;
  transition: color 0.3s ease;
}

.facility-card:hover .facility-content h3 {
  color: #be3844;
}

@keyframes facilityFadeUp {

  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}

@keyframes facilityFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }

}

.facility-icon {
  animation: facilityFloat 4s ease-in-out infinite;
}

.facility-card:hover .facility-icon {
  animation: none;
}

@media (max-width: 1199px) {

  .facility-section {
    padding: 70px 0;
  }

  .facility-heading h2 {
    font-size: 38px;
  }

  .facility-card {
    min-height: 285px;
  }

}

@media (max-width: 991px) {

  .facility-section {
    padding: 60px 0;
  }

  .facility-heading {
    margin-bottom: 40px;
  }

  .facility-heading h2 {
    font-size: 35px;
  }

  .facility-card {
    min-height: 280px;
  }

  .facility-content p {
    opacity: 1;
    transform: none;
  }

}

@media (max-width: 767px) {

  .facility-section {
    padding: 50px 0;
  }

  .facility-heading {
    margin-bottom: 35px;
    padding: 0 10px;
  }

  .facility-heading h2 {
    font-size: 30px;
  }

  .facility-heading p {
    font-size: 14px;
  }

  .facility-subtitle {
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .facility-card {
    min-height: 250px;
    padding: 35px 20px 30px;
    border-radius: 15px;
  }

  .facility-icon {
    width: 85px;
    height: 85px;
    font-size: 34px;
    margin-bottom: 18px;
  }

  .facility-content h3 {
    font-size: 21px;
  }

  .facility-content p {
    font-size: 13px;
    max-width: 300px;
  }

}

@media (max-width: 575px) {

  .facility-section {
    padding: 45px 10px;
  }

  .facility-heading h2 {
    font-size: 28px;
  }

  .facility-card {
    min-height: 240px;
  }

}

/* =========================
   Jobs Section
========================= */

.jobs-section {
  background: #f7f9fc;
  position: relative;
}

.section-title {
  font-size: 38px;
  font-weight: 700;
  color: #1d2939;
  margin-bottom: 15px;
}

.job-card {
  display: flex;
  flex-direction: row;

  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;

  border: 1px solid #eaecf0;
  box-shadow: 0 8px 30px rgba(16, 24, 40, 0.07);

  transition: all 0.35s ease;
}

.job-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(16, 24, 40, 0.13);
}

.job-image {
  width: 45%;
  min-height: 100%;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.job-image img {
  width: 100%;
  height: 100%;
  min-height: 390px;

  object-fit: cover;
  display: block;

  transition: transform 0.5s ease;
}

.job-card:hover .job-image img {
  transform: scale(1.06);
}

.job-badge {
  position: absolute;
  top: 18px;
  left: 18px;

  background: var(--theme-color);
  color: #fff;

  padding: 8px 14px;
  border-radius: 50px;

  font-size: 12px;
  font-weight: 600;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.job-badge i {
  margin-right: 4px;
}

.job-content {
  width: 100%;
  padding: 35px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.job-content h3 {
  color: #1d2939;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
}

.job-location {
  display: flex;
  align-items: flex-start;

  gap: 9px;

  color: #667085;
  font-size: 14px;
  line-height: 1.6;

  margin-bottom: 22px;
}

.job-location i {
  color: var(--theme-color);
  font-size: 17px;
  margin-top: 2px;
}

.job-description {
  border-top: 1px solid #eaecf0;
  padding-top: 20px;
}

.job-description h6 {
  color: #344054;
  font-size: 15px;
  font-weight: 700;

  margin-bottom: 10px;
}

.job-description h6 i {
  color: var(--theme-color);
  margin-right: 5px;
}

.job-description p {
  color: #667085;
  font-size: 15px;
  line-height: 1.8;

  margin-bottom: 0;
}

.job-footer {
  margin-top: 25px;
  padding-top: 20px;

  border-top: 1px solid #eaecf0;
}

.job-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 9px;

  padding: 11px 20px;

  background: var(--theme-color);
  color: #fff;

  text-decoration: none;
  border-radius: 7px;

  font-size: 14px;
  font-weight: 600;

  transition: all 0.3s ease;
}

.job-btn i {
  transition: transform 0.3s ease;
}

.job-btn:hover {
  color: #fff;
  opacity: 0.9;
}

.job-btn:hover i {
  transform: translateX(4px);
}

@media (max-width: 991px) {

  .job-card {
    flex-direction: row;
  }

  .job-image {
    width: 42%;
  }

  .job-content {
    width: 58%;
    padding: 28px;
  }

  .job-content h3 {
    font-size: 23px;
  }

  .job-description p {
    font-size: 14px;
  }
}

@media (max-width: 767px) {

  .jobs-section {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }

  .section-title {
    font-size: 30px;
  }

  .job-card {
    flex-direction: column;
  }

  .job-image {
    width: 100%;
    height: 230px;
    min-height: 230px;
  }

  .job-image img {
    width: 100%;
    height: 230px;
    min-height: 230px;
  }

  .job-content {
    width: 100%;
    padding: 22px;
  }

  .job-content h3 {
    font-size: 21px;
  }

  .job-description p {
    font-size: 14px;
  }

  .job-footer {
    margin-top: 20px;
  }
}

/* =========================
   REVIEWS SECTION
========================= */

.reviews-section {
  width: 100%;
  padding: 70px 20px;
  background: #f5f5f5;
  overflow: hidden;
}

.reviews-container {
  width: 100%;
  max-width: 1750px;
  margin: 0 auto;
}

/* Heading */

.reviews-heading {
  text-align: center;
  margin-bottom: 40px;
}

.reviews-heading h2 {
  margin: 0 0 10px;
  font-size: 36px;
  font-weight: 700;
  color: #c22b38;
}

.reviews-heading p {
  margin: 0;
  color: #666;
  font-size: 16px;
}

.reviews-slider {
  width: 100%;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 26px;
  transition: transform 0.7s ease-in-out;
}

.review-card {
  flex: 0 0 calc((100% - 52px) / 3);

  min-height: 350px;
  padding: 24px 20px 22px;

  background: #ffffff;

  border-radius: 20px;

  border-bottom: 5px solid #c22b38;

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);

  display: flex;
  flex-direction: column;

  transition: 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.stars {
  display: flex;
  gap: 7px;
  margin-bottom: 25px;
}

.stars i {
  color: #ffa800;
  font-size: 23px;
}

.review-text {
  margin: 0;

  color: #4d4d4d;

  font-size: 18px;
  line-height: 1.8;

  text-align: left;

  flex: 1;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 20px;
}

.user-line {
  width: 5px;
  height: 35px;

  background: #c22b38;

  border-radius: 2px;
  flex-shrink: 0;
}

.review-user h4 {
  margin: 0 0 5px;

  color: #25292e;

  font-size: 20px;
  font-weight: 700;
}

.review-user span {
  color: #333;

  font-size: 17px;
}

.review-dots {
  display: flex;
  justify-content: center;
  align-items: center;

  gap: 8px;

  margin-top: 30px;
}

.review-dot {
  width: 9px;
  height: 9px;

  background: #ccc;

  border-radius: 50%;

  cursor: pointer;

  transition: 0.3s;
}

.review-dot.active {
  width: 25px;
  border-radius: 10px;
  background: #c22b38;
}

@media (max-width: 1000px) {

  .review-card {
    flex: 0 0 calc((100% - 26px) / 2);
  }

  .reviews-heading h2 {
    font-size: 32px;
  }

}

@media (max-width: 650px) {

  .reviews-section {
    padding: 50px 15px;
  }

  .reviews-heading {
    margin-bottom: 30px;
  }

  .reviews-heading h2 {
    font-size: 28px;
  }

  .reviews-heading p {
    font-size: 14px;
  }

  .review-card {
    flex: 0 0 100%;

    min-height: 370px;

    padding: 22px 18px 20px;

    border-radius: 20px;
  }

  .stars {
    margin-bottom: 20px;
  }

  .stars i {
    font-size: 20px;
  }

  .review-text {
    font-size: 16px;
    line-height: 1.7;
  }

  .review-user h4 {
    font-size: 21px;
  }

  .review-user span {
    font-size: 15px;
  }

}

/* mission */
.mission-vision {
  width: 100%;
  padding: 60px 20px;

  font-family: Arial, sans-serif;
}

.mv-container {
  max-width: 1200px;
  margin: auto;
}

.mv-heading {
  max-width: 700px;
  margin-bottom: 55px;
}


.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.mv-card {
  position: relative;
  display: flex;
  gap: 25px;
  padding: 45px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.mv-card::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  top: -45px;
  right: -45px;
  border-radius: 50%;
  background: #f1f1f1;
  transition: transform 0.4s ease;
}

.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.mv-card:hover::before {
  transform: scale(2.5);
}

.mv-icon {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #c22b38;
  color: #fff;
  font-size: 25px;
}

.mv-content {
  position: relative;
  z-index: 1;
}

.mv-card h3 {
  margin: 0 0 15px;
  font-size: 30px;
  color: #111;
}

.mv-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #666;
}

@media (max-width: 900px) {
  .mission-vision {
    padding: 75px 20px;
  }

  .mv-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .mission-vision {
    padding: 60px 16px;
  }

  .mv-card {
    flex-direction: column;
    padding: 30px 25px;
    gap: 20px;
  }

  .mv-card h3 {
    font-size: 26px;
  }

  .mv-card p {
    font-size: 15px;
  }
}

/* =========================
   CONTACT FORM
========================= */

.form-section {
  padding: 70px 20px;
}

.form-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* =========================
   LEFT IMAGE
========================= */

.form-image {
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 40px; */
  background: var(--theme-color, #6c4cff);
}

.form-image img {
  display: block;
  width: 100%;
  /* max-width: 500px; */
  height: auto;
}

/* =========================
   FORM CONTENT
========================= */

.form-content {
  padding: 20px 50px;
  min-width: 0;
}

.form-heading span {
  display: inline-block;
  color: var(--theme-color, #6c4cff);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
}

.form-heading h2 {
  margin: 8px 0;
  font-size: 32px;
  line-height: 1.2;
  color: #222;
}

.form-heading p {
  margin: 0 0 25px;
  color: #777;
  line-height: 1.6;
}

/* =========================
   FORM ROW
========================= */

#contactForm {
  width: 100%;
}

.form-row {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  width: 100%;
  margin: 0;
}

/* =========================
   FORM GROUP
========================= */

.form-group {
  width: 100%;
  min-width: 0;
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
}

/* =========================
   INPUT BOX
========================= */

.input-box {
  display: flex;
  align-items: center;
  width: 100%;
  height: 50px;
  box-sizing: border-box;

  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fafafa;

  overflow: hidden;
  transition: 0.2s ease;
}

.input-box:focus-within {
  border-color: var(--theme-color, #6c4cff);
  box-shadow: 0 0 0 3px rgba(108, 76, 255, 0.08);
}

/* =========================
   ICON
========================= */

.input-icon {
  flex: 0 0 40px;
  width: 40px;
  text-align: center;
  font-size: 16px;
  color: #999;
}

/* =========================
   INPUT
========================= */

#contactForm input {
  display: block;
  flex: 1;
  min-width: 0;
  width: 100%;
  height: 100%;

  padding: 0 12px 0 12px;
  margin: 0;

  border: 0;
  outline: 0;
  background: transparent;

  font-family: inherit;
  font-size: 14px;
  color: #222;

  box-sizing: border-box;
}

#contactForm input::placeholder {
  color: #aaa;
  opacity: 1;
}

/* =========================
   TEXTAREA
========================= */

.textarea-box {
  height: 120px;
  align-items: flex-start;
}

#contactForm textarea {
  display: block;
  flex: 1;
  min-width: 0;
  width: 100%;
  height: 100%;

  padding: 15px 12px 15px 12px;
  margin: 0;

  border: 0;
  outline: 0;
  resize: vertical;

  background: transparent;

  font-family: inherit;
  font-size: 14px;
  line-height: 1.5;
  color: #222;

  box-sizing: border-box;
}

#contactForm textarea::placeholder {
  color: #aaa;
  opacity: 1;
}

/* =========================
   BUTTON
========================= */

#contactForm .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  width: 100%;
  min-height: 52px;

  padding: 15px;
  margin-top: 5px;

  border: 0;
  border-radius: 8px;

  background: var(--theme-color, #6c4cff);
  color: #fff;

  font-family: inherit;
  font-size: 15px;
  font-weight: 600;

  cursor: pointer;
  transition: 0.3s ease;
}

#contactForm .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(108, 76, 255, 0.25);
}

.btn-arrow {
  font-size: 18px;
}

/* =========================
   SUCCESS / ERROR MESSAGE
========================= */

.message-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;

  padding: 12px 15px;
  margin-bottom: 20px;

  border-radius: 8px;
  font-size: 14px;
}

.message-box strong {
  display: block;
  margin-bottom: 3px;
}

.message-box p {
  margin: 0;
}

.message-box.success {
  background: #effaf2;
  color: #16803c;
}

.message-box.error {
  background: #fff1f1;
  color: #c62828;
}

/* =========================
   TABLET
========================= */

@media (max-width: 800px) {

  .form-wrapper {
    grid-template-columns: 1fr;
  }

  .form-image {
    padding: 30px;
  }

  .form-image img {
    max-width: 400px;
  }

  .form-content {
    padding: 30px 25px;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 550px) {

  .form-section {
    padding: 30px 12px;
  }

  .form-wrapper {
    border-radius: 14px;
  }

  .form-content {
    padding: 25px 18px;
  }

  .form-row {
    grid-template-columns: 1fr !important;
    gap: 0;
  }

  .form-heading h2 {
    font-size: 26px;
  }

  .form-heading p {
    font-size: 14px;
  }

  .form-image {
    padding: 20px;
  }

  .input-box {
    height: 48px;
  }
}

.contact-section {
  padding: 30px 25px;
}

.contact-card {
  background: #f6f3f2;
  border: none;
  border-radius: 20px;
  min-height: 260px;
  padding: 20px 20px 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.icon-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  border-radius: 50%;
  background: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle i {
  font-size: 28px;
  color: #c22b38;
}

/* Phone icon */
.phone-card .icon-circle {
  background: white;
}

.phone-card .icon-circle i {
  color: #c22b38;
}

.contact-card h4 {
  color: #111111;
  font-size: 27px;
  font-weight: 700;
}

.contact-card p {
  margin: 0;
  color: #3f4c5c;
  font-size: 19px;
  line-height: 1.5;
  font-weight: 400;
}


/* Responsive */
@media (max-width: 991px) {
  .contact-card {
    min-height: 280px;
    padding: 35px 25px;
  }

  .contact-card h4 {
    font-size: 24px;
  }

  .contact-card p {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .contact-section {
    padding: 20px 15px;
  }

  .contact-card {
    min-height: auto;
    padding: 35px 25px;
  }

  .icon-circle {
    width: 95px;
    height: 95px;
    margin-bottom: 25px;
  }

  .icon-circle i {
    font-size: 34px;
  }

  .contact-card h4 {
    font-size: 23px;
    margin-bottom: 18px;
  }

  .contact-card p {
    font-size: 18px;
  }

  .address-card p {
    text-align: center;
  }
}

footer {
  background-color: #b90012;
  padding: 20px;
  color: var(--light);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-content img {
  width: 150px;
}

.footer-content div {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 10px;
  max-width: 300px;
}

.footer-content>div:first-child {
  max-width: 400px;
  text-align: justify;
}

.footer-content div a {
  color: var(--light);
  text-decoration: none;
}

.footer-content div a:hover {
  text-decoration: underline;
}

.copyright {
  margin: 20px;
  border: 2px solid var(--light);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.copyright a {
  color: var(--light);
  font-size: 18px;
  transition: all 0.5s ease;
  text-decoration: none;
}

.copyright a:hover {
  color: var(--theme-color);
}