*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Barlow Condensed", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

body{
    background-color: var(--dark-color);
    color: var(--light-color);
    /* font-size: 1rem;
    line-height: 1.6; */
}

:root{
    --primary-color: #8F2F92;
    --light-color: #fff;
    --dark-color: #000;
}

.wrapper{
    overflow: hidden;
}

canvas {
  display: block;
}
  
#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #000;
  background-image: url("");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  z-index: -1;
}

#scrollTopBtn {
  position: fixed;
  bottom: 50px;
  right: 20px;
  transform: translateY(100px);
  background: var(--primary-color);
  color: var(--light-color);
  border: none;
  padding: 3px 9px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 999;
}

#scrollTopBtn i{
  color: var(--light-color);
  font-size: 1.4rem;
  transition: all 0.3s;
}

#scrollTopBtn:hover {
  background: var(--light-color);
}

#scrollTopBtn:hover i{
  color: var(--primary-color);
}


body.modal-open {
  overflow: hidden;
}

/* Modal base styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  /* background: rgba(0, 0, 0, 0.8); */
  background-color: var(--dark-color);
  color: var(--light-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-contents {
  max-width: 100vw;
  background: var(--dark-color);
  padding: 2rem;
  /* border-radius: 10px; */
  position: relative;
  width: 90%;
}

.modal-contents h1{
  color: var(--primary-color);
  font-size: 48px;
}

.modal-contents input:focus, .modal-contents textarea:focus{
  color: var(--light-color);
}

.modal-contents input, .modal-contents textarea{
  border-radius: 0;
  color: var(--light-color);
  background-color: transparent;
}

.modal-contents p, label{
  font-size: 20px;
}

.modal .form-control:focus{
  background-color: transparent;
  border-color: #8f2f923d;
  box-shadow: 0 0 0 .25rem #8f2f923d;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.modal-contents .btn{
background-color: var(--primary-color);
color: var(--light-color);
font-weight: 500;
font-size: 20px;
border-radius: 0;
transition: all 0.3s;
}

.modal-contents .btn:hover{
background-color: var(--light-color);
color: var(--primary-color);
}

.modal .box2 .logo{
width: 210px;
}

.modal .box2 i{
color: var(--primary-color);
}

.modal .box2 p{
color: var(--light-color);
margin-bottom: 4px;
}

.modal .box2 a{
text-decoration: none;
color: var(--light-color);
}

.modal .box2 img{
width: 18px;
}

.modal-close {
  position: absolute;
  top: 0.6rem;
  right: 1rem;
  font-size: 1.6rem;
  background: none;
  border: none;
  color: var(--light-color);
  cursor: pointer;
}

/* Trigger buttons */
/* .open-modal {
  margin: 1rem;
  padding: 0.75rem 1.5rem;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
} */


header{
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s;
}

header .git-btn{
    color: var(--light-color);
    text-decoration: none;
    padding: 6px 16px;
    font-weight: 500;
    font-size: 20px;
    /* background-color: var(--light-color); */
    /* border-radius: 0.375rem; */
    /* letter-spacing: 2px; */
    transition: all 0.3s;
}

header .git-btn:hover{
    color: var(--primary-color);
    /* background-color: var(--primary-color); */
}

.overlay {
    height: 100%;
    width: 25%;
    position: fixed;
    z-index: 2;
    top: 0;
    right: -25%;
    /* background-color: rgb(0,0,0);
    background-color: rgba(0,0,0, 0.9); */
    background-color: var(--light-color);
    overflow-x: hidden;
    transition: 0.5s;
  }
  
  .overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
  }
  
  .overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--primary-color);
    display: block;
    transition: 0.3s;
  }
  
  .overlay a:hover, .overlay a:focus {
    color: var(--dark-color);
  }
  
  .overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
  }

  .nav-toggle {
    right: -1%;
  }

  /* Overlay for background opacity when nav is open */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.6);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.overlay.nav-toggle ~ .nav-overlay {
  opacity: 1;
  pointer-events: auto;
}

.menu-btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    padding: 0;
    outline: none;
    z-index: 3;
    /* border-radius: 0.375rem; */
  }
  .menu-btn svg{
    width: 40px;
    height: 40px;
  }
  .line {
    fill: none;
    stroke: var(--light-color);
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
      stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  .line1 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
  }
  .line2 {
    stroke-dasharray: 60 60;
    stroke-width: 6;
  }
  .line3 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
  }
  .opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
    stroke: var(--primary-color);
  }
  .opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6;
    stroke: var(--primary-color);
  }
  .opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
    stroke: var(--primary-color);
  }
  
.hero{
  width: 100%;
  height: 100vh !important; 
  overflow: hidden;
  cursor: pointer;
}

.hero video{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit:fill;
}

#banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.hero .owl-carousel{
  z-index: 1;
}

.hero .owl-carousel .item{
    width: 100%;
    height: 100vh;
}

.hero .content{
    width: 900px;
    padding: 1rem;
    text-align: center;
    height: max-content;
    position: absolute;
    overflow: hidden;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero .content h1{
   color: var(--light-color);
   font-size: 3rem;
   margin-bottom: 1rem;
   font-weight: 500;
}

.hero .content p{
    color: var(--light-color);
    font-weight: 400;
    font-size: 1.5rem;
    margin-bottom: 2rem;
 }

 .hero .content .btn-box a{
    color: var(--white-color);
    background-color: var(--primary-color);
    padding: 8px 16px;
    text-decoration: none;
    transition: all 0.3s;
 }

 .hero .content .btn-box a:hover{
    color: var(--primary-color);
    background-color: var(--light-color);
 }

 .hero .owl-item.active .content{
    animation: fadeIn 1s both 0.6s;
 }

.hero .owl-item.active .content h1{
    animation: fadeInDown 1s both 0.6s;
}

.hero .owl-item.active .content p{
    animation: fadeInUp 1s both 1.5s;
}

.hero .owl-item.active .content .btn-box{
    animation: fadeInDown 1s both 2s;
}

.section-1{
  padding: 5rem 0;
}

.section-1 h1{
  margin-bottom: 4.5rem;
  font-weight: 400;
  font-size: 3rem;
}

.section-1 img{
  width: 18%;
}

.section-1 h2{
  color: var(--primary-color);
  font-weight: 400;
  margin: 1rem 0;
}

.section-1 p{
  font-size: 20px;
}

.section-1 .box2{
  border-right: solid 1px var(--light-color);
  border-left: solid 1px var(--light-color);
}

.section-2{
  padding: 5rem 0;
}

.section-2 .box1 h1{
  font-size: 3rem;
}

.section-2 .box1 h1, .section-2 .box1 h4{
  font-weight: 400;
  margin-bottom: 1rem;
}

.section-2 .box1 p{
  font-size: 20px;
  margin: 0;
}

.section-2 .box2{
  text-align: center;
}

.section-2 .box2 img{
  width: 22%;
}

.section-2 h6{
  font-weight: 400;
  margin: 1rem 0 0 0;
  font-size: 20px;
}

.section-3{
  padding: 5rem 0;
  background-color: var(--dark-color);
}

.section-3 p{
  font-size: 20px;
  margin: 1rem;
}

.section-4{
  padding: 5rem 0;
}

.section-4 h1{
  font-weight: 400;
  font-size: 3rem;
}

.section-4 p{
  margin-bottom: 2rem;
  font-size: 20px;
}

.grid-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      /* max-width: 1200px; */
      margin: 0 auto;
    }

    .flip-card {
      background-color: transparent;
      perspective: 1000px;
    }

    .flip-card-inner {
      position: relative;
      width: 100%;
      height: 350px;
      transition: transform 0.6s;
      transform-style: preserve-3d;
    }

    .flip-card:hover .flip-card-inner {
      transform: rotateY(180deg);
    }

    .flip-card-front,
    .flip-card-back {
      position: absolute;
      width: 100%;
      height: 100%;
      backface-visibility: hidden;
      /* border-radius: 10px; */
      border: solid 1px var(--primary-color);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 10px;
    }

    .flip-card-front {
      /* background-color: #ffffff; */
      color: #333;
    }

    .flip-card-front img{
      width: 35%;
    }

    .flip-card-front h5{
      margin: 1rem 0 0 0;
      font-weight: 400;
      color: var(--light-color);
    }

    .flip-card-front p{
      color: var(--light-color);
      font-size: 1.1rem;
      font-weight: 300;
      margin: 0;
      margin-top: 8px;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 5;
      -webkit-box-orient: vertical;
    }

    .flip-card-front a{
      color: var(--primary-color);
      text-decoration: none;
      cursor: default;
    }

    .flip-card-back {
      background-color: var(--primary-color);
      color: white;
      transform: rotateY(180deg);
    }

    .flip-card-back p{
      font-size: 1.1rem;
      margin: 0;
    }

.section-5{
  padding: 5rem 0;
}

.section-5 h1{
  font-weight: 400;
  margin-bottom: 2rem;
  font-size: 3rem;
}

.section-5 h6{
  margin: 1rem 0 0 0;
  font-size: 1.1rem;
}

  .slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  /* padding: 20px 0; */
}

.slide-track {
  display: flex;
  width: calc(250px * 12); /* 6 logos * 2 duplicates */
  animation: scroll 30s linear infinite;
}

.slide {
  height: 150px;
  width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.slide img {
  width: 40%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.slide img:hover {
  transform: scale(1.1);
}

/* Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


.section-6{
  background-color: var(--primary-color);
  padding: 5rem 0;
}

.section-6 h1{
  font-weight: 400;
  text-align: center;
  font-size: 3rem;
}

.section-6 p{
  text-align: center;
  margin-bottom: 2rem;
  font-size: 20px;
}

.section-6 label{
  font-size: 20px;
}

    .section-6 input, .section-6 textarea{
      border-radius: 0;
    }

  .section-6  .form-control:focus{
      border-color: #8f2f923d;
      box-shadow: 0 0 0 .25rem #8f2f9280;
      background-color: var(--light-color);
    }

   .section-6 .btn{
    background-color: var(--light-color);
    color: var(--dark-color);
    font-weight: 500;
    border-radius: 0;
    font-size: 20px;
    transition: all 0.3s;
   }

   .section-6 .btn:hover{
    background-color: var(--primary-color);
    color: var(--light-color);
   }


   footer{
  padding: 6rem 0;
}

footer .box1 img{
  width: 100%;
}

footer  h5{
  font-weight: 400;
}

footer p a{
  color: var(--light-color);
  text-decoration: none;
}

footer input{
  color: var(--light-color) !important;
  border-radius: 0 !important;
  background-color: transparent !important;
}

footer .btn{
  background-color: var(--primary-color);
  color: var(--light-color);
  border-radius: 0;
  transition: all 0.3s;
}

footer .btn:hover{
  background-color: var(--light-color);
  color: var(--primary-color);
}

#footer-bar{
    background-color: var(--primary-color);
    padding: 5px 0;
    position: fixed;
  bottom: -50px;
  width: 100%;
  transition: bottom 0.3s;
}

#footer-bar a{
   font-size: 1.1rem;
   color: var(--light-color);
   text-decoration: none;
}

#footer-bar p{
    font-size: 1.1rem;
    color: var(--light-color);
    margin: 0;
 } 

 /* ------Jequry alerts css -----*/
#popup_title{font-size:14px;font-weight:700;text-align:center;line-height:1.75em;color:#FFF;background:#8F2F92;border:solid 1px #8F2F92;border-bottom:solid 1px #8F2F92;cursor:default;padding:0em;margin:0em}#popup_container{font-family:AntipastoRegular,sans-serif;font-size:14px;min-width:300px;max-width:600px;background:#FFF;border:solid 5px #8F2F92;color:#000;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}#popup_content{padding:1em 1.75em;margin:0em}#popup_message{margin:0 auto}#popup_panel{text-align:center;margin:1em 0em 0em 1em}#popup_prompt{margin:.5em 0em}#popup_container INPUT[type='button']{width:100px;height:30px;border:outset 2px #8F2F92;color:#FFF;background:#8F2F92}

