:root {
  --primaryColor: #0790ec;
  --primaryColorHover: #0584da;
  --primaryColorLightBG: #dcfaff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "poppins";
}

.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

a {
  text-decoration: none;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: var(--primaryColor) !important;
}

.navbar {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
}

.navbar-toggler:focus {
  box-shadow: unset !important;
}

.nav-link {
  font-weight: 600;
  color: #0584da;
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.navbar-brand {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar-brand img {
  height: 30px;
}
.navbar-brand img:nth-child(2) {
  border-radius: 5px;
  height: 80px;
  width: 200px;
}

.btn-signin {
  background-color: var(--primaryColor);
  color: white;
  border-radius: 20px;
  padding: 5px 15px;
}
.btn-signin:hover {
  background-color: var(--primaryColorHover);
  color: white;
}
@media (max-width: 992px) {
  /* Adjust alignment for smaller screens */
  .btn-signin {
    margin-left: auto;
  }
}

/* hero section of home page  */

.search-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
  color: #333;
  background-image: url("../images/heroBanner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
}

.search-content {
  text-align: left;
}

.search-overlay {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 40px;
  border-radius: 10px;
  width: 100%;
  max-width: 600px;
}

.search-section h1 {
  font-size: 2.5rem;
  color: #333;
  font-weight: 500;
  margin-bottom: 20px;
}

.search-bar {
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid #ccc;
}

.search-bar input[type="text"] {
  flex: 1;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  outline: none;
}

.search-bar button {
  background-color: var(--primaryColor);
  border: none;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-bar button:hover {
  background-color: var(--primaryColorHover);
}

.search-bar button i {
  color: white;
  font-size: 1.2rem;
}

/* hero section of home page  */

/* welcome section  */

.welcome-section {
  padding: 20px;
}
.welcome-section h2 {
  font-size: 2.1rem;
  color: #333;
  font-weight: 500;
  margin-bottom: 20px;
}
.welcome-section p {
  font-size: 1.2rem;
}

.sign-in-box {
  background-color: var(--primaryColorLightBG);
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sign-in-box p {
  margin: 0;
  color: #555;
  font-size: 1.4rem;
}

.btn-sign-in {
  background-color: var(--primaryColor);
  color: #fff;
  border-radius: 50px;
  padding: 12px 30px;
  font-size: 1.2rem;
}
.btn-sign-in:hover {
  background-color: var(--primaryColorHover);
  color: #fff;
}

/* welcome section  */

/* cardbox  */

.cardBox {
  border: 1px solid #ddd;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  gap: 20px;
  padding: 20px 0px;
  border-radius: 10px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.cardBox img {
  width: 30%;
}

.cardBox p {
  font-weight: 600;
}

/* cardbox  */

/* alert section  */

.alert-section {
  background-color: #f8f8ff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.alert-image {
  border-radius: 10px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.alert-content h4 {
  font-weight: 600;
}

.alert-content p {
  color: #555;
}

.btn-report-scam {
  background-color: var(--primaryColor);
  color: #fff;
  border-radius: 50px;
  padding: 10px 20px;
  border: 2px solid var(--primaryColor);
}
.btn-report-scam:hover {
  /* background-color: var(--primaryColor); */
  color: var(--primaryColor);
  border: 2px solid var(--primaryColor);
}

.btn-victim-scam {
  color: var(--primaryColor);
  border: 2px solid var(--primaryColor);
  background-color: transparent;
  border-radius: 50px;
  padding: 10px 20px;
}
.btn-victim-scam:hover {
  color: #fff;
  background-color: var(--primaryColor);
  border: 2px solid var(--primaryColor);
}

.alert-footer {
  font-size: 0.9em;
  color: #777;
}

.alert-footer a {
  color: #555;
  text-decoration: underline;
}

/* alert section  */

/* support section  */

.supportBox {
  background-color: var(--primaryColorLightBG);
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 15px;
}

.supportBox h2 {
  font-size: 1.6rem;
  margin-bottom: 0;
}

.supportBox p {
  margin: 0;
  color: #555;
  font-size: 1.2rem;
}

/* support section  */

/* footer design  */

.footer {
  background-color: #f8f8f8;
  padding: 40px 0;
  font-size: 0.9rem;
}

.footer .footer-top a,
.footer .footer-bottom a {
  color: #333;
  text-decoration: none;
  margin-right: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.footer .footer-bottom {
  border-top: 1px solid #ddd;
  padding-top: 10px;
}

.footer-logo {
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 20px;
}

.footer-country-flag {
  width: 24px;
  height: auto;
}

/* footer design  */

.cyberScamHeading {
  font-size: clamp(
    2.027rem,
    -0.016428571428571015rem + 3.1928571428571426vw,
    3.815rem
  );
  /* font-weight: 500; */
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;

  text-align: center;
  width: 66%;
  color: #002984;
}
.cyberScamSmallHeading h3 {
  font-size: clamp(
    1.027rem,
    -0.016428571428571015rem + 2.1928571428571426vw,
    2.815rem
  );
  /* font-weight: 500; */
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;

  text-align: left;
  /* width: 40%; */
  margin-top: 50px;
  color: #333;
}

.reportIdeThiSec h1 {
  font-weight: 300 !important;
  color: #444;
  text-align: center;
  /* margin-top: 30px; */
}

.reportIdeThiSec p {
  margin-top: 12px;
  font-size: 18px;
  text-align: center;
  letter-spacing: 1.2px;
  line-height: 30px;
}

@media (max-width: 768px) {
  .search-section {
    background-image: none;
    background-color: #f8f9fa;
  }
  .search-section h1 {
    font-size: 2rem;
  }
  .search-overlay {
    width: 100%;
  }

  .welcome-section {
    flex-direction: column;
  }

  .sign-in-box {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .sign-in-box p {
    margin: 0;
    color: #555;
    font-size: 1.2rem;
  }

  .btn-sign-in {
    background-color: var(--primaryColor);
    color: #fff;
    border-radius: 50px;
    padding: 12px 30px;
    font-size: 1rem;
  }

  .search-content {
    text-align: center;
  }

  .supportBox {
    text-align: center;
  }

  .btn-report-scam {
    border-radius: 10px;
  }

  .btn-victim-scam {
    border-radius: 10px;
  }

  .cenn {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .cyberScamHeading {
    width: 100%;
  }

  .cyberScamSmallHeading h3 {
    text-align: center;
  }
}
