@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
    --primaryColor: #110614;
    --secondaryColor: #2cee91;
     /*--secondaryColor:#0c3a35;*/
    --white: #ffffff;
    /*--darkBlueColor: #343651;*/
        --darkBlueColor:#0c3a35;
    --doplyColor: #85f5bf;
}

@media (prefers-color-scheme: dark) {
    :root {
        --secondaryColor: #66e691;
        --primaryColor: #110614;
    }
}

body {
    color: var(--white);
    background: var(--primaryColor);
    font-family: "Sora", sans-serif;
}

@layer utilities {
    .text-balance {
        text-wrap: balance;
    }
}

.container {
    padding-left: 2rem;
    padding-right: 2rem;
    margin-left: auto;
    margin-right: auto;
}
.openMenu {
    right: -100%;
    transition: all 0.5s;
}
.openMenu.active {
    position: fixed;
    left: 0;
top:0;
    display: block;
    width: 100%;
    height: 100%;
    background: var(--darkBlueColor);
    z-index: 9;
    padding: 50px;
     transition: transform 0.3s ease-in-out;
    transition: all 0.5s;
}
.openMenu.active nav {
    margin-bottom: 20px;
}

.swiper-pagination-bullet {
    height: 10px !important;
    width: 10px !important;
    background: #fff !important;
    opacity: 0.5 !important;
}
.swiper-pagination-bullet-active {
    background: var(--secondaryColor) !important;
    opacity: 1 !important;
}
.swiper-scrollbar-drag {
    background: transparent !important;
}
.swiper-pagination {
    bottom: -1% !important;
}
.swiper {
    padding-bottom: 36px !important;
}
footer .container {
    position: relative;
}
footer::after {
    position: absolute;
    content: "";
    background: url("/assets/images/logo-line.svg") no-repeat;
    width: 150px;
    height: 100%;
    top: -177px;
    right: -17px;
    
}
main {
    width: 100%;
}

.is_active {
    color: var(--secondaryColor);
}

/* Blog Content  */
.blogContent-wrapper {
    padding: 20px 0;
}

.blogContent-wrapper h2 {
    font-size: 30px;
    font-weight: bold;
    padding-top: 20px;
    padding-bottom: 15px;
    color: var(--secondaryColor);
}
.blogContent-wrapper p {
    font-size: 18px;

    margin-bottom: 15px;
}

/* callToAction   */

.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 20px;
}
.owl-carousel button.owl-dot span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fff;
    display: inline-block;
    margin-right: 10px;
    opacity: 0.5;
}
.owl-carousel button.owl-dot.active span {
    background: var(--secondaryColor);
    opacity: 1;
}
.legal_content-wrapper h2,
.legal_content-wrapper h3,
.legal_content-wrapper h4 {
    margin-bottom: 1rem;
    font-size: 25px;
    color: var(--secondaryColor);
}

.legal_content-wrapper ul {
    margin-bottom: 1rem;
}
.legal_content-wrapper ul li {
    margin-bottom: 10px;
}
.legal_content-wrapper ul li strong {
    color: var(--secondaryColor);
}
.legal_content-wrapper p {
    margin-bottom: 1rem;
}
/* Slide-in menu for mobile */


/* When active */
.openMenu.active {
  transform: translateX(0);
}

/* Dropdown animation */

.dropdown.open {
  height: auto;
}
.dropdown.static:not(hidden){
    height: 100%;
}
button#close_btn {
    position: absolute;
    right: 15px;
    top: 15px;
}
button#close_btn svg{
    width:20px;
    height:20px;
}
@media (max-width: 767px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    footer::after {
        width: 90px;
        top: 0;
    }
    .openMenu.active {
        padding: 40px 30px;
    }
    .hero-section .container div > .p-6 {
        padding: 0;
        padding-top: 2.6rem;
    }
 .client_wrapper .item p.client_word{
     padding-right: 0px;
 }
}

code {
    background: #8600ab;
}

pre {
    background: #0a0d2d;
    padding: 20px;
    border-radius: 10px;
}

.client_wrapper .item p.client_word {
  
    font-size: 16px;
    min-height: 120px;
    font-weight: 200;
    color: #6fa498;
    padding-left: 0px;
}

.hero-section {
    background: url(/assets/images/landing-bg-2.webp);
    margin-top: -109px;
    padding-top: 100px;
}



/*Blog content */

.blog_content p{
    margin-bottom: 16px;
}
.blog_content h2{
    font-size:26px;
    color:var(--secondaryColor);
    margin-bottom: 20px;
}
.blog_content h3{
    font-size:22px;
    color:var(--secondaryColor);
    margin-bottom: 20px;
}

/*---------------------------about us page style--------------------------------*/

.callToAction img[alt="Example Image"] {
    display: none !important;
}
/*---------------------service page style-----------------*/


  /* Testimonial Section */
  .client_wrapper {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  }

  .client_Slider .item {
    padding: 10px;
    height: 100%;
  }

  .client_Slider .item > div {
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease-in-out;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  /* Hover effect */
  .client_Slider .item > div:hover {
    background: #334155;
    transform: translateY(-6px);
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.3);
  }

  /* Logo area */
  .client_Slider img {
 
    height: auto;
  }

  /* Heading */
  .client_Slider h2 {
    font-size: 20px;
    margin-top: 18px;
    margin-bottom: 8px;
  }

  /* Review text */
  .client_word {
    color: #e2e8f0;
    font-size: 15px;
    line-height: 1.6;
  }

  /* Client details */
  .client_Slider .flex p:first-child {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
  }
  .client_Slider .flex p:last-child {
    font-size: 14px;
    color: #cbd5e1;
  }

  /* Avatar */
  .client_Slider .w-14 {
    border: 2px solid #cce561;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .client_Slider .item > div {
      padding: 20px;
      min-height: auto;
    }
    .client_Slider h2 {
      font-size: 18px;
    }
    .client_word {
      font-size: 14px;
    }
  }


