* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
  text-decoration: none;
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

:root {
  --primary-color: #ec2028;
}

body {
  width: 100vw;
  overflow-x: hidden;
  font-family: "Outfit", sans-serif;
  padding-right: 8px;
}
@media (max-width: 768px) {
  body {
    padding-right: 0px;
  }
}

a,
a:active,
a:focus {
  color: #333;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.2s ease-in-out;
}

a:hover {
  color: inherit;
}

img {
  width: 100%;
  max-width: 100%;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 17px;
  font-weight: 400;
}

p {
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  color: #111;
}

h1 {
  font-size: 42px;
}

h2 {
  font-size: 40px;
  letter-spacing: 0.5px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 19px;
}

.form-control,
.form-control:focus,
.form-control:active {
  border: none;
  outline: none;
  box-shadow: none;
}

.form-control::placeholder {
  color: black;
  opacity: 1;
}

.bg-black {
  background-color: black;
}

.m-15 {
  margin: 15px 0;
}

.m-60 {
  margin: 60px 0;
}

.mt {
  margin-top: 30px;
}

.mb-3 {
  margin-bottom: 30px;
}

.margin-main {
  margin: 80px 0;
}

.padding-main {
  padding: 60px 0;
}

.d-flex {
  display: flex;
  align-items: center;
  gap: 10px;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.space-between {
  justify-content: space-between;
}

.text-right {
  text-align: right;
}

.row {
  display: flex;
  flex-flow: row wrap;
}

.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12 {
  width: 100%;
  min-height: 1px;
  padding: 0 8px;
}

@media (min-width: 768px) {
  .col-md-2 {
    flex: 0 0 16.666%;
    max-width: 16.666%;
  }

  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }

  .col-md-5 {
    flex: 0 0 41.666%;
    max-width: 41.666%;
  }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    flex: 0 0 58.333%;
    max-width: 58.333%;
  }

  .col-md-8 {
    flex: 0 0 66.666%;
    max-width: 66.666%;
  }

  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    width: 83.333%;
    max-width: 83.333%;
  }

  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 992px) and (max-width: 1250px) {
  .col-xl-3 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }

  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .col-lg-2 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
  .flex-reverse {
    flex-direction: column-reverse !important;
  }

  .col-2 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .padding-main {
    padding: 20px 0;
  }

  .p--0 {
    padding: 0 !important;
  }
}

.container {
  max-width: 1500px;
  margin: auto;
}

@media (min-width: 1700px) {
  .container {
    max-width: 1600px !important;
  }
}

@media (min-width: 1251px) and (max-width: 1500px) {
  .container {
    max-width: 1200px !important;
  }
}

@media (min-width: 1001px) and (max-width: 1250px) {
  .container {
    max-width: 980px !important;
  }
}

@media (min-width: 769px) and (max-width: 1000px) {
  .container {
    margin: 0px 20px;
  }
}

@media (max-width: 768px) {
  .container {
    margin: 12px;
  }
}

header {
  color: var(--primary-color);
  padding: 15px 0px;
}

header .header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .header-main .email a {
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: var(--primary-color);
  padding: 10px 20px;
  border-radius: 20px;
}

header .header-main .email a svg {
  width: 20px;
  stroke: white;
}

header .header-main .email a span {
  font-size: 15px;
  color: white;
}

@media (max-width: 768px) {
  header .header-main {
    flex-direction: column;
    gap: 8px;
  }
  header {
    padding:  0px;
  }
  header .header-main .logo img {
    width: 120px;
  }
  .banner-main .container {
    padding: 15px !important;
  }
  .banner-main .left h1 {
    font-size: 30px !important;
  }
  .banner-main .right {
    display: none !important;
  }
}

/* BANNER */

.banner-main .container {
  background-color: var(--primary-color);
  border-radius: 20px;
  padding: 50px;
}

.banner-main .right img {
  max-width: 250px;
}

.banner-main .right {
  display: flex;
  justify-content: center;
}

.banner-main .left h1 {
  font-size: 50px;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
}

.banner-main .left p {
  color: white;
}

/* FORM */

.form-sec {
  padding: 40px 0px;
}

.form-sec .container {
  max-width: 800px !important;
  background: linear-gradient(red, black);
  border-radius: 20px;
  padding: 30px;
}

.form-sec .title {
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 600;
  color: white;
}

.form-sec .form-group {
  margin-bottom: 20px;
}

.form-sec .form-group .form-control {
  width: 100%;
  border: solid 1px #d9d9d9;
  border-radius: 5px !important;
  background-color: transparent;
  color: #e2dfdf;
  padding: 12px;
  margin-top: 3px;

  -webkit-appearance: none; /* Removes iOS native styling */
  -moz-appearance: none;
  appearance: none;
}

.form-sec .form-group .form-control option {
  color: black;
}

.form-sec .form-group .form-control::placeholder {
  color: #e2dfdf;
}

.form-sec .form-group label {
  color: white;
  margin-bottom: 4px;
  font-size: 14px;
}

.form-sec .form-group button {
  border: none;
  background-color: white;
  color: black;
  width: 100%;
  padding: 12px;
  text-align: center;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
}

@media (max-width: 768px) {
  .form-sec .container {
    padding: 15px;
  }
  .form-sec{
    padding:  1px;
  }
  .form-sec .title {
    font-size: 25px;
    text-align: center;
  }
  .form-sec .form-group .form-control {
    padding: 10px;
    height: 38px;
  }
  .form-sec .form-group {
    margin-bottom: 15px;
  }
}

/* CTA */

.cta-sesction {
  padding: 30px 0px;
}

.cta-sesction .container {
  padding: 30px 20px;
  background-color: var(--primary-color);
  border-radius: 15px;
}

.cta-sesction .container .left h2 {
  font-size: 30px;
  margin-bottom: 15px;
  color: white;
  font-weight: 600;
}

.cta-sesction .container .left p {
  color: #f8f5f5;
  margin-bottom: 20px;
}

.cta-sesction .container .left h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
  color: white;
}

.cta-sesction .container .left a {
  background-color: white;
  color: var(--primary-color);
  padding: 10px;
  border-radius: 6px;
  font-weight: 500;
}

.cta-sesction .right a {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border-radius: 4px;
  background-color: white;
  width: max-content;
  float: right;
}

.cta-sesction .right a:hover {
  background-color: black;
  transition: 0.3s ease-in-out;
}

.cta-sesction .right a:hover span {
  color: white;
}

.cta-sesction .right a:hover svg {
  stroke: white;
}

.cta-sesction .right a span {
  font-size: 14px;
  color: var(--primary-color);
}

.cta-sesction .right a svg {
  width: 18px;
  stroke: var(--primary-color);
}

@media (max-width: 768px) {
  .cta-sesction .right img {
    display: none;
  }
  .cta-sesction .container {
    padding: 30px 10px;
  }
  .cta-sesction {
    padding: 0px;
  }
  .why-review .card {
    padding: 10px !important;
  }
  .why-review .title {
    text-align: center;
  }
  .why-review{
    padding: 2px 0px !important;
  }
  
}

/* WHY */

.why-review {
  padding: 30px 0px;
}

.why-review .title {
  font-size: 25px;
  margin-bottom: 20px;
  font-weight: 500;
}

.why-review .card {
  padding: 20px;
  border: solid 1px var(--primary-color);
  border-radius: 6px;
  margin-bottom: 20px;
}

.why-review .card svg {
  width: 30px;
}

.why-review .card h3 {
  font-size: 16px;
  color: var(--primary-color);
  margin: 12px 0px;
  font-weight: 600;
}

.why-review .card p {
  color: black;
}

/* FAQ */

.faq-page {
  padding: 40px 0px;
}

.faq-page .title {
  text-align: center;
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 30px;
}

.faq-page .faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.faq-page .faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}

.faq-page .faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 15px;
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: black;
}

.faq-page .faq-question svg {
  width: 20px;
  fill: black;
}

.faq-page .faq-answer {
  display: none;
  padding: 0 15px 15px;
  color: #555;
}

.faq-page .faq-item.active .faq-answer {
  display: block;
}

.faq-icon .icon-minus {
  display: none;
}

.faq-item.active .faq-icon .icon-plus {
  display: none;
}

.faq-item.active .faq-icon .icon-minus {
  display: inline;
}

footer {
  background-color: black;
  padding-top: 50px;
  text-align: center;
}

footer .connect {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 30px 0px;
}

footer img {
  width: 200px;
}

footer .connect a {
  display: flex;
  gap: 10px;
  align-items: center;
}

footer .connect a svg {
  width: 16px;
  fill: white;
}

footer .connect a span {
  color: white;
  font-size: 15px;
}

footer .copyright {
  padding: 20px 0px;
  background-color: var(--primary-color);
}

footer .copyright p {
  color: rgb(199, 199, 199);
  font-size: 15px;
}

footer .copyright a {
  font-size: 15px;
  color: white;
}

@media (max-width: 768px) {
  footer .connect {
    flex-direction: column;
  }
  .faq-page{
    padding: 20px 0px;
  }
}

/* SCROLLAR */

/* For Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 10px;
  /* width of the scrollbar */
}

::-webkit-scrollbar-track {
  background: #1e1e1e;
  /* track color (background of scrollbar) */
}

::-webkit-scrollbar-thumb {
  background: #808080;
  /* scrollbar handle color */
  border-radius: 6px;
  /* rounded corners */
  border: 2px solid #1e1e1e;
  /* adds spacing effect */
}

::-webkit-scrollbar-thumb:hover {
  background: #808080;
  /* hover effect */
}

/* For Firefox */
* {
  scrollbar-width: thin;
  /* "auto" | "thin" */
  scrollbar-color: #808080 #1e1e1e;
  /* thumb | track */
}

 .whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
  }

  .whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: #25d366;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    transition: transform 0.2s ease-in-out;
  }

  .whatsapp-float a:hover {
    transform: scale(1.1);
  }

  .whatsapp-float svg {
    width: 40px;
    height: 40px;
    fill: white;
  }



  /* POPUP */
/* Card container */
.swal-card {
  text-align: center;
  border-radius: 12px;
  padding: 20px;
  max-width: 400px;   /* prevents huge cards */
  margin: 0 auto;
}

/* Icon */
.swal-icon {
  margin-bottom: 10px;
}

.swal-icon svg {
  width: 60px;
  height: 60px;
}

/* Title */
.swal-title {
  margin: 0;
  font-size: 22px;
  font-weight: bold;
  color: #2c3e50;
}

/* Text */
.swal-text {
  font-size: 16px;
  color: #34495e;
  margin-top: 10px;
  line-height: 1.4;
}

.swal-error {
  font-size: 14px;
  color: #e74c3c;
  margin-top: 8px;
  line-height: 1.3;
}

/* Button */
.swal-btn {
  background-color: #000000 !important;
  color: #fff !important;
  font-size: 15px !important;
  padding: 8px 18px !important;
  border-radius:0px;
  text-transform: uppercase;
  margin-top: 12px;
}

/* Messages below form */
.form-success {
  color: green;
  font-size: 14px;
}

.form-error {
  color: red;
  font-size: 14px;
}

.swal-card .swal-head {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
div:where(.swal2-container) button:where(.swal2-close){
  width: 40px;
  height: 40px;
}
@media (max-width: 480px) {
  .swal-card {
    padding: 0px;
    max-width: 100%;
    text-align: left;
  }
div:where(.swal2-container) div:where(.swal2-actions){
  margin-top: 0px !important;
        width: 100% !important;
        justify-content: start !important;
}
  .swal-card .swal-head {
    flex-direction: row;
    justify-content: start;
    gap: 10px;
  }
 .swal-icon {
  margin-bottom: 0px;
 }
  .swal-icon svg {
    width: 25px;
    height: 25px;
  }

  .swal-title {
    font-size: 18px;
  }

  div:where(.swal2-container) div:where(.swal2-html-container) {
    padding: 0px !important;
  }

  div:where(.swal2-container).swal2-center>.swal2-popup {
    max-width: 90% !important;
    padding: 15px;
  }

  .swal-text {
    font-size: 14px;
  }

  .swal-error {
    font-size: 13px;
  }
div:where(.swal2-container) button:where(.swal2-close){
  width: 20px !important;
  height: 20px !important;
  font-size: 30px !important;
}
  .swal-btn {
    font-size: 14px !important;
    padding: 10px 25px !important;
    margin: 0px;
    margin-top: 10px;
  }
}