:root {
    --primary-color: #e00000;
    --secondary-color: black;
    --tertiary-color: #ffffff;
}

/* ========================================== */
body {
    background-color: var(--tertiary-color);
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

/* ========================================== */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.carousel-item img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.hero h2 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
}

.hero-form {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px;
}

/* Responsive */
@media (max-width: 992px) {
  .hero h2 {
    text-align: center;
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 100vh;
  }

  .carousel-item img {
    height: 100vh;
    object-fit: cover;
  }

  .hero-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 0 20px;
  }

  .hero-form {
    margin-top: 20px;
  }

  .hero h2 {
    font-size: 1.4rem;
    line-height: 1.3;
  }
}


/* ============================================ */
.text-justify {
    text-align: justify;
}

/* =========================================== */
.head-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-family: "Oswald", sans-serif;
}

/* =========================================== */
.head-title span {
    font-family: "Oswald", sans-serif;
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
}

/* ============================================ */

.why-choose {
    background: var(--tertiary-color);
    padding: 80px 0;
}

.why-choose .head-title {
    text-align: center;
    margin-bottom: 50px;
}

.why-choose .head-title span {
    display: block;
    font-size: 1rem;
    color: #e30613;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.why-choose .head-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
}

.why-choose .underline {
    width: 80px;
    height: 3px;
    background: #e30613;
    margin: 15px auto 0;
    border-radius: 5px;
}

/* ==== WHY BOX ==== */
.why-box {
    background: #fff;
    border-radius: 12px;
    padding: 25px 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: left;
}

.why-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.why-box h3 {
    font-size: 3rem;
    font-weight: 800;
    color: #e30613;
    margin: 0;
    line-height: 1;
    text-align: center;
    min-width: 80px;
}

.why-box h3 span {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #e30613;
    margin-top: 5px;
}


.why-box .icon {
    font-size: 40px;
    color: #e30613;
    margin-bottom: 10px;
}

/* ==== Responsive ==== */

@media (max-width: 576px) {
    .why-choose .head-title h2 {
        font-size: 2rem;
    }

    .why-box {
        padding: 20px 15px;
    }

    .why-box h3 {
        font-size: 2.2rem;
    }

    .why-box .icon {
        font-size: 35px;
    }

}

/* ======================================= */
.pricing {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../images/banner/banner-2.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.pricing .card {
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--tertiary-color);
    border-radius: 0px;
}

/* ========================================= */
.pricing .card img {
    width: 100%;
    height: 250px;
    border: 10px solid var(--tertiary-color);
    border-radius: 0px;
}

/* ========================================= */
.package .card {
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--tertiary-color);
    border-radius: 0px;
    margin-bottom: 30px;
}

/* ========================================= */
.package .card img {
    width: 100%;
    height: 150px;
    border: 10px solid var(--tertiary-color);
    border-radius: 0px;
}

/* ========================================= */
.title {
    font-weight: 700;
    color: var(--primary-color);
    font-family: "Oswald", sans-serif;
}

/* ========================================= */
.about-us img {
    border-radius: 10% 10% 10% 0%/10% 20% 10% 10%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border: 5px solid var(--tertiary-color);
}

/* ========================================== */
.process {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../images/background/1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.process .card {
    background-color: rgba(255, 255, 255, 0.7);
    color: var(--tertiary-color);
    border-radius: 0px;
    height: 100%;
}

/* =========================================== */
.features {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../images/background/2.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed
}

.features .card {
    background: #fff;
    height: 100%;
    transition: all 0.3s ease;
}


.features .col-md-6 {
    margin-bottom: 0 !important;
}

@media (max-width: 767px) {
    .features .card .row {
        flex-direction: column !important;
    }

    .features .card img {
        height: 220px;
    }

    .features .card .col-6 {
        width: 100% !important;
    }
}

/* ====================================== */
.services {
    background: #eee;
}

.services .card {
    transition: all 0.3s ease;
    background-color: var(--tertiary-color);
    border: 0px;
}

.services .card img {
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

/* ============================================ */
.contact i {
    color: var(--secondary-color);
    font-size: 30px;
}

.contact .card h6 {
    color: var(--secondary-color);
}

.contact .card p {
    color: var(--primary-color);
}

/* =========================================== */
.hero .form-control,
.hero .form-select {
    padding: 10px 15px;
    border: 1px solid #fff;
    border-radius: 0px;
    box-shadow: none;
    background: transparent;
    color: #fff;
}

.hero .form-control::placeholder {
    color: #fff;
    opacity: 1;
}

.hero .form-select option {
    background: #000;
    color: #fff;
}

.contact {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../images/background/3.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed
}

.contact .card {
    background-color: rgba(255, 255, 255, 0.7);
    /* color: var(--tertiary-color); */
    border-radius: 0px;
    padding: 40px 30px;
}

.contact .form-control,
.contact .form-select {
    padding: 10px 15px;
    border: 1px solid var(--secondary-color);
    border-radius: 0px;
    box-shadow: none;
    background: transparent;
    color: var(--secondary-color);
}

.contact ::placeholder {
    color: var(--secondary-color);
    opacity: 1;
}

.contact .form-label {
    color: var(--secondary-color);
    font-weight: 500;
}

/* ============================================ */
.btn {
    background-color: var(--primary-color);
    color: var(--tertiary-color);
    border-radius: 0px;
    padding: 8px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--secondary-color);
    color: var(--tertiary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}