:root {
  --color-1: #010204;
  --color-2: #28a745;
}

/* Global usage */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--color-1);
  color: #333;
}

.logo {
  border-radius: 50px;
}

a.nav-link {
  padding: 20px !important;
}

/* Example usage of color variables */
.btn-custom-1 {
  background-color: var(--color-1);
  color: #fff;
}

.btn-custom-1:hover {
  background-color: darken(var(--color-1), 10%);
}

.btn-custom-2 {
  background-color: var(--color-2);
  color: #fff;
}

.btn-custom-2:hover {
  background-color: darken(var(--color-2), 10%);
}

/* Link colors */
a {
  color: var(--color-1);
}

a:hover {
  color: var(--color-2);
}

h1 {
  font-size: calc(1.375rem + 1.5vw);
  color: #fff !important;
}


h2 {
  font-size: calc(1.325rem + 0.9vw);
  color: #fff !important;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #fff !important;
}

.mb-4 {
  color: #ffc107 !important;
}

div:where(.swal2-icon).swal2-success [class^=swal2-success-line] {
  display: block;
  position: absolute;
  z-index: 2;
  height: .3125em;
  border-radius: .125em;
  background-color: #15d943 !important;
}

div:where(.swal2-icon).swal2-success .swal2-success-ring {
  position: absolute;
  z-index: 2;
  top: 0.75em;
  left: -0.25em;
  box-sizing: content-box;
  width: 115%;
  height: 115%;
  border: .25em solid rgb(0 214 18 / 76%);
  border-radius: 50%;
}

.swal2-success {
  border-color: #a5dc86;
}

.swal2-success-line-tip {
  top: 1.1875em;
  left: 0.3125em;
  width: 0.75em;
  height: 0.125em;
  background-color: #15d943;
  transform: rotate(45deg);
  position: absolute;
  z-index: 2;
  animation: swal2-animate-success-line-tip 0.75s;
}

.swal2-success-line-long {
  top: 1.125em;
  right: 0.1875em;
  width: 1.375em;
  height: 0.125em;
  background-color: #15d943;
  transform: rotate(-45deg);
  position: absolute;
  z-index: 2;
  animation: swal2-animate-success-line-long 0.75s;
}

@keyframes swal2-animate-success-line-tip {
  0% {
    width: 0;
    left: 0.1875em;
    top: 1.625em;
  }

  54% {
    width: 0.75em;
    left: 0.1875em;
    top: 1.625em;
  }

  70% {
    width: 0.75em;
    left: 0.1875em;
    top: 1.625em;
  }

  100% {
    width: 0.75em;
    left: 0.3125em;
    top: 1.1875em;
  }
}

@keyframes swal2-animate-success-line-long {
  0% {
    width: 0;
    right: 0.9375em;
    top: 1.625em;
  }

  65% {
    width: 0;
    right: 0.9375em;
    top: 1.625em;
  }

  84% {
    width: 1.375em;
    right: 0.1875em;
    top: 1.125em;
  }

  100% {
    width: 1.375em;
    right: 0.1875em;
    top: 1.125em;
  }
}

/* why choose us */
.why-choose-us {
  background-color: #0d0d0d;
}

.card-custom {
  background-color: #1a1a1a;
  border: none;
  border-radius: 0.75rem;
  color: #ccc;
  transition: transform 0.3s;
}

.card-custom:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

.icon i {
  font-size: 2.5rem;
}

/* How it works */
.how-it-works {
  background-color: #0d0d0d;
}

.card-step {
  background-color: #1a1a1a;
  border: none;
  border-radius: 0.75rem;
  color: #ccc;
  transition: transform 0.3s;
}

.card-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

.step-number {
  font-size: 2.75rem;
  font-weight: 700;
}

/* Testimonials */
.testimonials {
  background-color: #0d0d0d;
}

.testimonial-card {
  background-color: #1a1a1a;
  border-radius: 0.75rem;
  color: #ccc;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.03);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}

/* Contact Us page */
.contact-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
  gap: 40px;
}

.contact-form-container,
.contact-image-container {
  flex: 1 1 500px;
  max-width: 565px;
  height: 713px;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  background-color: #181616;
}

.contact-form-container h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
  color: #1c1c1c;
}

input.form-control:focus,
textarea.form-control:focus {
  border-color: #0056b3;
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
}

.btn-warning {
  border-radius: 14px;
  font-weight: bold;
  width: 40%;
  padding: 10px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.alert-success {
  font-weight: 600;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 12px;
  text-align: center;
  font-size: 1.1rem;
}

.contact-image-container img {
  width: 100%;
  height: 106%;
  object-fit: cover;
  border-radius: 20px;
}

input::placeholder,
textarea::placeholder {
  color: #6f6c6c !important;
  opacity: 1;
}

.contact-privacy {
  color: #1ee21e !important;
}

@media screen and (max-width: 768px) {
  .contact-section {
    flex-direction: column;
  }

  .contact-form-container {
    max-width: 100%;
    height: 100px !important;
    flex: 1 1 754px;
    padding: 17px;
  }

  .contact-image-container {
    max-width: 100%;
    height: 100px !important;
    flex: 1 1 360px;
    padding: 17px;
  }

  .contactButton {
    width: 100% !important;
  }

  .contact-submit {
    width: 100% !important;
  }

  .contact-image-container img {
    height: 300px;
  }
}

/* Privacy Policy */
.privacy-policy-section {
  background-color: #0d0d0d;
  border-radius: 20px;
  text-align: center;
}

/* Terms & Conditions */
.terms-section {
  background-color: #0d0d0d;
  border-radius: 20px;
  text-align: center;
}

.nav-link:hover {
  color: #ffc107 !important
}

/* About Page */
.aboutContact {
  margin-top: 50px;
  background: rgba(0, 0, 0, 0.7);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1.2s ease-out;
}

.aboutContact2 {
  list-style: none;
  padding-left: 78px;
  color: #e0e0e0;
  font-size: 1rem;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .aboutContact2 {
    padding-left: 0px !important;
  }
}

.product-card img {
  height: 412px;
  width: 360px;
  object-fit: cover;
}

.detailImg {
  height: 600px !important;
}

.detailAlign {
  padding-left: 10%;
}

.product-card a {
  text-decoration: none;
}

.hero-section {
  /* background: linear-gradient(135deg, #0f0f0f 0%, #1f1f1f 100%); */
  padding: 100px 0;
  position: relative;
}

.hero-section h1 {
  font-size: 2.75rem;
  letter-spacing: 0.5px;
}

.hero-section .btn {
  transition: all 0.3s ease-in-out;
}

.hero-section .btn:hover {
  background-color: #e0a800;
  color: #000;
}

.text-right {
  text-align: right !important;
}

#form-loader .loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1100;
}

.iti {
  width: 100%;
}

.iti input.form-control {
  padding-left: 50px;
}

.iti__flag-container {
  z-index: 5;
}

/* Apply Poppins font inside modal */
#consultationModal .modal-title,
#consultationModal h6,
#consultationModal p {
  font-family: 'Poppins', sans-serif !important;
}

.hover-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hover-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

.card-body {
  flex: 1 1 auto;
  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
  color: var(--bs-card-color);
  background: linear-gradient(263deg, rgb(179 56 0 / 55%), rgb(172 95 0 / 25%));
  border-radius: 12px;
}