@import url('https://fonts.googleapis.com/css2?family=El+Messiri:wght@400..700&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 {
  --primary-color: #008080;
  --text-dark: #000000;
  --text-light: #252422;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 400;
  font-style: normal;
}
.iti{
    display:block !important;
}

/* Navbar */
.navbar-custom {
  background-color: var(--primary-color);
  height: 100px;
}
.bi-search {
  color: white;
  font-size: 18px;
}
.navbar-custom .nav-link,
.navbar-custom .navbar-brand {
  color: #fff;
  font-weight: 600;
  font-size: 17px;
}
.nav-contact {
  display: flex;
  align-items: center;
  gap: 20px;
}
.navbar-custom .nav-link:hover {
  text-decoration: none;
  color: white;
}
@media (max-width: 768px) {
  .navbar-custom {
    background-color: var(--primary-color);
    height: auto !important;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg .navbar-collapse {
    display: flex !important
;
    flex-basis: auto;
    justify-content: end;
  }
}

section {
  margin: 70px 0px;
}

/* Header */

.header-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.header-head {
  text-align: center;
}
.header-head h1 {
  font-size: 40px;
  font-weight: bold;
  color: var(--text-light);
}
.header-head p {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 0;
  color: var(--text-light);
}
.header-checklist {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-checklist {
  text-align: left;
}
.header-checklist ul {
  margin: 0;
  padding: 0;
}
.header-checklist li {
  list-style: none;
  position: relative;
  margin: 6px 0px;
  font-weight: 500;
  font-size: 17px;
  margin-left:20px;
}
.header-checklist ul li::before {
  content: '';
  position: absolute;
  top: 4px;
  left: -25px;
  width: 22px;
  height: 22px;
  background-image: url('./assets-new-cp/img/checkmark 1.png');
  background-size: contain;
  background-repeat: no-repeat;
}
.header-stats {
  display: flex;
  align-items: center;
  justify-content: center;
}
.stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.stats h4 {
  margin-top: 15px;
  font-size: 22px;
}
.header-stats {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.form-box {
  background-color: #fff;
  color: #000;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.form-box h5 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 24px;
}

.form-box input,
.form-box select,
.form-box textarea {
  border: 1px solid var(--primary-color);
}

.form-box button {
  background-color: var(--primary-color);
  border: none;
  font-weight: 600;
  height: 50px;
}
.form-box button:hover {
  background-color: var(--primary-color);
  color: white;
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
}

/* Features */

.features-section {
  position: relative;
}
.features-section::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 300px;
  background-color: var(--primary-color);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -2;
}

.features-heading {
  text-align: center;
  padding-top: 50px;
}
.features-heading h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 60px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  margin: 30px 0px;
  display: inline-block;
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.feature-desc {
  font-size: 1rem;
  color: var(--text-light);
  margin: 0px;
}
.feature-card {
  background-color: #fff;
  color: #000;
  border-radius: 16px;
  padding: 30px 35px;
  position: relative;
  z-index: 2;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  height: 100%;
  text-align: center;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 8px;
  border-radius: 0 0 16px 16px;
  background-color: #008080; /* same as section bg */
  z-index: -1;
}

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

/* Features */

/* steps */

.steps-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align:center;
  margin-bottom: 40px;
}
.steps-head h2 {
  color: var(--text-light);
  font-size: 34px;
  font-weight: bold;
}

.steps-head span {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}
.steps-head p {
  font-size: 17px;
  font-weight: 500;
}

.steps-heading .sub-heading {
  color: var(--text-light);
  font-weight: 600;
}

.step-card {
  border: 1px solid #ccc;
  border-radius: 10px;
  height: 100%;
  padding: 25px 20px;
  background-color: #fff;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
}

.card-top-bar {
  height: 6px;
  width: 100%;
  background-color: var(--primary-color); /* teal line */
  border-radius: 8px 8px 0 0;
  position: absolute;
  top: 0;
  left: 0;
}

.step-label {
  font-size: 1rem;
  color: var(--text-dark);
  margin: 24px 0px;
  font-weight: 400;
}

.step-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.step-desc {
  font-size: 0.95rem;
  color: var(--text-dark);
}
/* steps */

/* Types */
.types-head {
  width: 100%;
  text-align: center;
  margin-bottom: 50px;
}
.types-head h2 {
  font-size: 34px;
  font-weight: bold;
  color: var(--text-light);
  text-transform: capitalize;
}
.scam-card {
  width: auto;
  height: auto;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.scam-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.scam-hover-content {
  position: absolute;
  top: 0;
  left: 0;
  height: calc(100% - 50px); /* leave space for label */
  width: 100%;
  background-color: #008080;
  color: white;
  padding: 15px;
  font-size: 0.85rem;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.scam-hover-content p {
  font-size: 16px;
}

.scam-label {
  background-color: white;
  color: var(--text-light);
  text-align: center;
  padding: 12px 10px;
  font-size: 1.2rem;
  font-weight: 400;
  position: absolute;
  bottom: 0;
  width: 100%;
  border-top: 1px solid #ddd;
  border-bottom: 6px solid var(--primary-color);
}

/* Smooth hover animation */
.scam-card:hover .scam-hover-content {
  opacity: 1;
  transform: translateY(0);
}

/*.scam-card:hover .scam-image {*/
/*  opacity: 0;*/
/*  transform: scale(1.03);*/
/*}*/
/* Types */

/* About us */
.about-head {
  margin-bottom: 25px;
}
.about-head h2 {
  color: var(--text-light);
  font-size: 34px;
  font-weight: bold;
  position: relative;
}
.about-head h2::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 10%;
  width: 50px;
  height: 50px;
  background-image: url(./assets-new-cp/img/about-icon.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.about-head p {
  color: black;
  font-weight: 500;
  line-height: 26px;
}
.about-sub {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.about-list {
  display: flex;
  align-items: self-start;
  gap: 30px;
}
.list-content h4 {
  color: var(--text-light);
  font-weight: 600;
}
.list-content p {
  color: black;
  font-weight: 400;
}
/* About us */

/* <!-- review --> */
.review-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}
.review-head {
  width: 45%;
}
.review-head h2 {
  color: var(--text-light);
  font-size: 34px;
  font-weight: bold;
}
.review-counter {
  display: flex;
  align-items: start;
  gap: 25px;
}
.review-content .customer {
  text-align: center;
}
.review-content .rating {
  text-align: center;
}
.review-content .customer h4 {
  color: var(--text-light);
  font-weight: 700;
  font-size: 34px;
}
.review-content .customer p {
  margin: 0px;
  font-weight: 500;
  font-size: 18px;
}
.review-content .rating h4 {
  color: var(--text-light);
  font-weight: 700;
  font-size: 34px;
}
.review-content .rating p {
  margin: 0px;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 10px;
}
.testimonial-slider {
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
  cursor: grab;
  gap: 5px;
}

.testimonial-card {
  width: 96%;
  padding: 20px;
  text-align: center;
  border-radius: 12px;
  margin: 0px;
  height: 100%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  padding: 15px 25px;
}
.test-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.testi-content {
  text-align: left;
}
.testi-content h5 {
  color: var(--text-light);
  margin-bottom: 4px;
}
.testi-content small {
  color: var(--primary-color);
}
.testimonial-card .test-star {
  font-size: 24px;
  color: #fcbf49;
  display:none;
}
.testimonial-card p {
  margin: 0px;
  font-weight: 400;
  font-size: 16px;
  text-align: justify;
}
.testimonial-dots {
  text-align: center;
  margin-top: 20px;
}
.testimonial-card img {
  object-fit: cover;
  max-width: 60px;
  height: 60px;
}

.testimonial-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #777;
  border-radius: 50%;
  margin: 5px;
  cursor: pointer;
}

.testimonial-dots .dot.active {
  background: #00ffff;
}

/* <!-- review --> */

/* faq */
.faq-section {
}

.custom-accordion .accordion-item {
  border: none;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 15px;
  background-color: transparent;
}

.custom-accordion .accordion-button {
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  box-shadow: none;
  padding: 1rem 1.25rem;
  transition: background-color 0.3s ease;
}

.custom-accordion .accordion-button::after {
  background-color: white;
  border-radius: 50%;
  color: #008080;
  font-weight: bold;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background-color: var(--primary-color);
  color: white;
}

.custom-accordion .accordion-body {
  background-color: white;
  color: var(--text-dark);
  border-left: 2px solid #008080;
  border-right: 2px solid #008080;
  border-bottom: 2px solid #008080;

  padding: 1rem 1.25rem;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

/* faq */

/* Footer */
.site-footer {
  background-color: #008080;
  color: #ffffff;
  font-size: 1rem;
  padding-top: 40px;
  padding-bottom: 20px;
}

.footer-heading {
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-description {
  color: #f0f0f0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-bottom {
  font-size: 0.9rem;
  color: #eaeaea;
}

/* Footer */

@media (max-width: 768px) {
  section {
    margin: 50px 0px;
  }
  .form-box {
    margin-top: 15px;
  }
  .scam-card {
    margin-bottom: 20px;
  }
  .review-content {
    margin-bottom: 20px;
  }
  .review-head {
    width: 40%;
  }
  .review-counter {
    gap: 15px;
  }
  .navbar-toggler-icon {
    filter: invert(1);
  }
  .navbar-toggler {
    border: 1px solid white !important;
  }
  .navbar-toggler:focus {
    box-shadow: none !important;
  }
  .feature-card {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }
}

@media (max-width: 480px) {
  section {
    margin: 25px 0px;
  }
  .header-stats {
    flex-direction: column;
    gap: 10px;
  }
  .review-content {
    flex-direction: column;
    gap: 15px;
  }
  .review-head {
    width: 100%;
  }
  .review-counter {
    display: flex;
    align-items: start;

    width: 100%;
    justify-content: space-between;
  }
}


.thankhead{
    text-align: center;
    padding: 50px;
    font-size: 64px;
    font-weight: 700;
}


.para {
    height: 250px;
    padding: 50px;
    text-align: center;
}
    
@media screen and (min-width: 320px) and (max-width: 480px) {
  .thankhead{
      padding:65px !important;
  }
  }
  
 @media screen and (min-width: 320px) and (max-width: 480px) {
  .para{
          height: 304px !important;
          padding: 65px !important;
  }
  }
  
  .modal-header .close {
 padding: 1rem;
margin: -1rem -1rem -1rem auto;
color: #fff;
opacity: 1;
 border: none;
background-color: transparent;
color:black;
}


.mainform {
    padding: 20px;
    background: #fff;
}
.form-group {
    color: #000;
    margin-bottom: 1rem !important;
}
.thankyou{
   
    height:300px;
    background-color:#008080;
}

.thankhead{
    text-align: center;
    padding: 130px;
    color: #fff;
    font-size: 64px;
    font-weight: 700;
}


.para {
    background: #008080;
    color: #fff;
    height: 250px;
    padding: 73px;
    text-align: center;
}
    
@media screen and (min-width: 320px) and (max-width: 480px) {
  .thankhead{
      padding:65px !important;
  }
  }
  
 @media screen and (min-width: 320px) and (max-width: 480px) {
  .para{
          height: 304px !important;
          padding: 65px !important;
  }
  }