* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* NAVBAR */
.navbar {
  width: 100%;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  z-index: 100;
  background-color: #0e0e0e;
}

.logo {
  font-weight: 600;
  font-size: 22px;
}

.nav-links {
  display: flex;
  gap: 40px;
  background-color: transparent !important;
  justify-content: end;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  position: relative;
  transition: 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #111;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: #111;
}

@media (max-width: 768px) {
  .navbar {
    padding: 20px;
  }

  .logo img{
    width: 110px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 82px;
    right: 2px;
    background: white;
    color: #111;
    width: 40%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    /* border-radius: 10px; */
    text-align: left;
    padding: 20px;
    height: 100vh;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    margin: 10px 0;
    font-size: 16px;
    color: #152439;
  }

  .hero{
    padding-top:8rem !important;
    padding: 10px;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .btn {
    font-size: 14px;
  }
}



        /* Numbers */
        .number {
            display: flex;
            justify-content: space-evenly;
            align-items: center;
            background: #3a59ff;
            color: white;
            padding: 2rem 0;
            flex-wrap: wrap;
            margin-top: -9rem;
        }

        .number section {
            text-align: center;
            padding: 10px;
            padding-right: 10px;
        }

        .first-p {
            font-size: 40px;
            font-weight: 800;
        }

        .second-p {
            font-size: 20px;
        }

        .other a{
            text-decoration: none;
            color: #fff;
            background-color: #3a59ff;
            padding: 4px 10px;
            border-radius: 5px;
            width: 100%;
            font-weight: 700;
            display: block;
        }

        .chart-container{
            width: 70% !important;
             padding: 9px;
                border: 1px solid gray;
                border-radius: 9px;
        }


        @media (max-width: 600px) {
            .first-p {
                font-size: 22px;
            }
            .second-p {
                font-size: 14px;
                font-weight: 500;
            }
            h2.cpl{
                text-align: center;
                font-size: 20px !important;
                padding-left: 0 !important;
                margin-top: 1rem !important;
                font-weight: 600;
            }
            .chart-container{
                padding: 9px;
                border: 1px solid gray;
                border-radius: 9px;
                
                width: 300px !important;
               
           
            }

            .sum{
                padding-left: 10px !important;
            }

            .sum{
                text-align: center;
                padding: 10px;
            }
.hole{
      display: flex;
      flex-direction: column;
      width: 100%;
      justify-content: center;
      align-items: start;
    }

            .sum p{
                /* width: 100% !important; */
            }

            .number section{
            /* border-right: 1px solid white; */
            }

            .nav-links{
                background-color: #fff !important;
            }
        }

        /* Graph */
        .graph {
            /* padding: 30px 20px; 
            */
            flex-basis: 50%;
        }

        .chart-container {
            width: 90%;
            margin: auto;
        }

        /* Summary */
        .sum {
            /* padding-left: 9rem; */
            text-align: left;
            flex-basis: 50%;
        }

        .recom{
          text-align: center;
        }

        .sum p {
            font-size: 14px;
            line-height: 1.6;
            width: 85%;
        }

        .sum h2{
            font-size: 26px;
            font-weight: 500;
        }

        .recom h2{
          padding-left: 0px !important;
          font-weight: 500;
        }

        .sum h4{
            font-size: 18px;
            font-weight: 700;
            color: rgba(0, 0, 0, 0.501);
        }

        /* Other Clients Section */
        .other-main {
            display: flex;
            justify-content: space-evenly;
            gap: 20px;
            flex-wrap: wrap;
        }

        .other {
            background: #fff;
            border: 1px solid #ccc;
            border-radius: 10px;
            padding: 10px;
            width: 300px;
            text-align: center;
            margin-bottom: 3rem;
        }

        .number > section{
        }

        .other img {
            width: 100%;
            border-radius: 10px;
        }

        h2.cpl {
            padding-left: 140px;
            font-size: 26px;
            font-weight: 500;
        }


            /* footer */


     footer {
      background-color: #0d1720;
      padding: 80px 10%;
    }

    .footer-top {
      display: flex;
      justify-content: start;
      align-items: center;
      gap: 80px;
      flex-wrap: wrap;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      padding-bottom: 50px;
      margin-bottom: 40px;
    }

    .footer-top iframe{
      width: 800px;
      height: 220px;
      border-radius: 10px;
    }

    .footer-left h2 {
      font-size: 64px;
      font-weight: 600;
      color: #f6e6e7;
      line-height: 1.1;
    }

    .footer-right {
      max-width: 400px;
    }

    .footer-right p {
      color: #b0b0b0;
      font-size: 15px;
      margin-bottom: 25px;
    }

    .footer-right button {
      background-color: #c9e0ce;
      border: none;
      padding: 14px 30px;
      font-weight: 600;
      border-radius: 5px;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: #0d1720;
      transition: background 0.3s;
    }

    .footer-right button:hover {
      background-color: #a8cbb0;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 30px;
    }

    .footer-col {
      /* flex: 1 1 200px; */
    }

    .footer-col h4 {
      font-size: 16px;
      margin-bottom: 10px;
      color: #ffffff;
      letter-spacing: 0.5px;
    }

    .footer-col p,
    .footer-col a {
      color: #b0b0b0;
      font-size: 14px;
      line-height: 1.8;
      text-decoration: none;
    }

    .footer-col a:hover {
      color: #ffffff;
    }

    .social-icons {
      display: flex;
      gap: 12px;
      margin-top: 25px;
    }

    .social-icons a {
      width: 38px;
      height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background-color: #1e2a34;
      color: #fff;
      text-decoration: none;
      transition: background 0.3s;
    }

    .social-icons a:hover {
      background-color: #c9e0ce;
      color: #0d1720;
    }

    .copyright {
      text-align: center;
      margin-top: 40px;
      font-size: 13px;
      color: #7d8a94;
    }

    .hole{
      display: flex;
      width: 100%;
      justify-content: center;
      align-items: start;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
      }

      .footer-top iframe{
        width: 90vw;
      }

      .footer-left h2 {
        font-size: 48px;
      }

      .footer-right {
        max-width: 100%;
      }
    }

    @media (max-width: 600px) {
      footer {
        padding: 50px 5%;
      }

      .footer-left h2 {
        font-size: 36px;
      }

      .footer-bottom {
        flex-direction: column;
      }

      .footer-right button {
        width: 100%;
        justify-content: center;
      }
    }

    @media screen and (min-width:320px) and (max-width:768px){
        .graph{
            flex-basis: 100%;
            width: 100%;
        }
        .sum{
            flex-basis: 100%;
            width: 100%;
        }
        .chart-container{
            margin: none !important;
            width:90% !important;
        }
        .chart-container canvas{
            width: 100% !important;
        }
        .hole{
            margin-top: 2rem;
        }
        .sum h2{
            text-align: center;
        }
        .sum h4{
            text-align: center;
        }
        .sum p{
            width: 100%;
            padding: 8px 20px;
            text-align: justify;
        }
        .nav-links{
            justify-content: unset !important;
        }

        nav{
            line-height: 10px !important;
        }
    }


    /* carousel */

/* Slide wrapper */
.number{
  margin-top: 5rem;
}

.splide__slide {
  position: relative;
  display: flex;
  justify-content: center;
}

/* Video wrapper */
.video-wrapper {
  position: relative;
  width: 80%;
}

.video-wrapper video {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid dodgerblue;
  cursor: pointer;
}

/* Hide video controls */
video::-webkit-media-controls {
  display: none !important;
}
video::-moz-media-controls {
  display: none !important;
}

/* Custom Play Button */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 70px;
  color: #fff;
  background:#3a59ff;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: 0.3s;
}

/* Hide play icon when playing */
.video-playing + .play-btn {
  opacity: 0;
}



