@import url("https://fonts.googleapis.com/css2?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");
html{
  scroll-behavior: smooth;
}
:root {
  --main-color: #ff0147;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
}
body {
  font-family: "Poppins", sans-serif;
}
::-webkit-scrollbar{
  width: 8px;
}
::-webkit-scrollbar-track{
  background-color: #d1d5db;
}
::-webkit-scrollbar-thumb{
  background-color: var(--main-color);
  border-radius: 10px;
  border: 2px solid var(--second-color);
}
.navbar {
  z-index: 1000;
}
@media (max-width: 767px) {
  .navbar {
    background-color: var(--main-color) !important;
  }
}
.navbar .navbar-brand img {
  width: 40px;
}
.navbar .navbar-toggler {
  color: #fff;
  border: none !important;
  outline: none;
}
.navbar-toggler:focus,
.navbar-toggler:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}
.custom-toggler span {
  display: block;
  width: 26px;
  height: 3px;
  background-color: #fff;
  margin: 5px 0;
  border-radius: 3px;
  transition: 1s !important;
}
.custom-toggler[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.custom-toggler[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.custom-toggler[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.navbar .navbar-nav .nav-item .nav-link {
  transition: 0.3s;
}
.navbar .navbar-nav .nav-item .nav-link:hover {
  color: var(--main-color) !important;
}
@media (max-width: 767px) {
  .navbar .navbar-nav .nav-item .nav-link:hover {
    color: #fff !important;
  }
}
.reveal{
  opacity: 0;
  transform: translateY(50px);
  transition: 1s ease;
}
.reveal.active{
  opacity: 1;
  transform: translateY(0);
}
.reveal-right{
  opacity: 0;
  transform: translateX(60px);
  transition: 1s ease;
}
.reveal-right.active{
  opacity: 1;
  transform: translateX(0);
}
.landing {
  width: 100%;
  min-height: 100vh;
  background-image: url(assets/bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 120px;
}
.landing .container {
  z-index: 3;
}
.landing .digital {
  width: 60%;
}
@media (max-width: 767px) {
  .landing .digital {
    order: 1;
    width: 100%;
    margin: auto;
  }
}
.landing .title {
  color: var(--main-color);
  width: 100%;
}
.landing .title::before {
  content: "";
  position: absolute;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 36%;
  height: 2px;
  background-color: #fff;
}
.landing .design {
  margin-left: 39%;
  white-space: nowrap;
  transition-delay: 0.3s;
}
@media (max-width: 767px) {
  .landing .title::before {
    display: none;
  }
  .landing .design {
    margin-left: 0;
  }
}
.landing .digital .header_content {
  font-size: 75px;
  white-space: normal;
  transition-delay: 0.4s;
}
.landing .digital .header_content .h1_span-1 {
  font-size: 60px;
  color: var(--main-color);
}
.landing .digital .header_content .h1_span-2 {
  font-size: 30px;
}
@media (max-width: 992px) {
  .landing .digital .header_content {
    font-size: 32px;
    white-space: wrap;
  }
  .landing .digital .header_content .h1_span-1 {
    font-size: 32px;
  }
  .landing .digital .header_content .h1_span-2 {
    white-space: nowrap;
    font-size: 32px;
  }
}
@media (max-width: 480px){
    .landing .digital .header_content .h1_span-2 {
        font-size: 25px;
    }
}
.landing .digital .content {
  width: 80%;
  transition-delay: 0.5s;
}
@media (max-width: 767px) {
  .landing .digital .content {
    width: 100%;
    margin: auto;
  }
}
.landing .digital .main-button {
  color: #fff;
  background-color: var(--main-color);
  border-radius: 20px;
  transition: 0.3s 0.6s;
  border: none;
  outline: none;
}
.landing .digital .main-button:hover {
  color: var(--main-color);
  background-color: #fff;
}
.landing .digital .icons > i {
  cursor: pointer;
  transition: 0.3s;
  color: #fcfcfc;
}
.landing .digital .icons > i:hover {
  color: var(--main-color);
}
.landing .image {
  width: 40%;
}
.landing .container .image img {
  width: 100%;
  max-width: 500px;
}
@media (max-width: 480px) {
  .landing .container .image img {
    width: 100%;
  }
}
.main-text {
    font-size: 45px;
    font-weight: 700;
}
.main-text::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--main-color);
}
.landing #services .box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    transition: 0.3s;
    cursor: pointer;
    flex: 1;
    min-width: calc(25% - 15px);
}
.landing #services .box:hover{
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 1, 71, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 1, 71, 0.3);
}
@media (max-width: 991px) {
    .landing #services .box {
        min-width: calc(50% - 15px);
    }
}
@media (max-width: 767px) {
    .landing #services .box {
        min-width: 100%;
    }
}
.landing #services img{
    width: 40px;
}
.landing #services .box h4{
    min-height: 60px;
}
@media (max-width: 767px) {
    .landing #services .box h4{
        min-height: 40px;
    }
}
#choose-us .box{
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    transition: 0.3s;
    cursor: pointer;
}
#choose-us .box:hover{
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 1, 71, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 1, 71, 0.3);
}
#choose-us .box p{
  height: 30px;
}
.checkbox {
  appearance: none;
  -webkit-appearance: none;
  display: none; 
}
.switch-checkbox {
  width: 30px;
  height: 30px;
  border: 2px solid var(--main-color);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 20px;
  border-radius: 6px;
  color: var(--main-color);
}
.checkbox:checked ~ .switch-checkbox::after {
  content: "\f00c"; 
  background: linear-gradient(135deg, rgba(255, 1, 71, 0.2), rgba(255, 1, 71, 0.1));
  border-color: var(--main-color);
  box-shadow: 0 0 15px rgba(255, 1, 71, 0.3);
}