@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&family=Lexend:wght@100..900&family=Tektur:wght@400..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


*{
    padding: 0;
    margin: 0;
}

body{
    background-color: #ececec;
}

.box-1{
    height: 17.7rem;
    border-bottom-left-radius: 5%;
    border-bottom-right-radius: 5%;
    background-color: white;
    margin-bottom: 52vh;
}

.navbar {
    position: fixed;
    display: flex;
    width: 100%;
    align-items: center;
    padding: 15px 40px;
    background-color: white;
    border-bottom-left-radius: 5%;
    border-bottom-right-radius: 5%;
    z-index: 9999;
}

/* Logo */
.logo {
    color: rgba(0, 0, 0, 0.879);
    font-family: 'inter';
    font-size: 24px;
    font-weight: 900;
}

/* Navigation Links */
.nav-links {
    margin-left: 45px;
    list-style: none;
    display: flex;
    gap: 20px;
    background-color: #f3f3f3;
    padding: 15px;
    border-radius: 10px;
}

.nav-links li a {
    font-family: "lexend";
    text-decoration: none;
    color: black;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: gray;
}

/* Login & Get Started Buttons */
.nav-buttons {
    margin-left: 30%;
    display: flex;
    align-items: center;
    gap: 20px;
}

.login {
    text-decoration: none;
    font-family: 'lexend';
    color: black;
    font-weight: 500;
    transition: 0.3s;
}

.login:hover {
    color: gray;
}

.get-started {
    font-family: 'inter';
    text-decoration: none;
    background-color: #f3f3f3;
    padding: 15px;
    border-radius: 10px;
    color: black;
    font-weight: 600;
    transition: 0.3s;
}

.get-started:hover {
    background-color: #e0e0e0;
}


.logo-text{
    color: rgb(24, 24, 24);
    font-size: 13rem;
    font-family: "Inter";
    font-weight:900;
    text-align: center;
    padding-top: 50px;
}

.stat-badges {
    position: absolute;
    top: -140px;
    display: flex;
    gap: 10px;
    margin-top: 20px;
    align-items: center;
  }

  .user-avatars {
    display: flex;
  }

  .user-avatars img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -8px;
  }

  .user-stats {
    font-size: 18px;
    font-family: 'lexend';
    font-weight: 600;
  }

  .world-active {
    
    font-family: 'lexend';
    color: #666;
    font-size: 14px;
  }


.sphere{
    position: absolute;
    top: 30%;
    left: 28%;
}

.sphere img{
    height: 380px;
}

.content{
    position: absolute;
    bottom: 40px;
    padding-left: 7%;
}

.text{
    color: #151515;
    font-size: 15px;
    font-family: 'lexend';
    font-weight: 400;
}

.dots{
    font-family: "Inter";
    letter-spacing: 3px;
}

.circle {
    position: absolute;
    bottom: 40px;
    right: 50px;
    width: 110px;
    height: 110px;
    background-color: #d9ff65;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-family: 'lexend';
    font-size: 10px;
    color: black;
    transition: transform 0.2s ease-in-out;
}

.circle:hover {
    transform: scale(1.05);
}

.circle span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.circle span::before {
    content: "▶";
    font-size: 14px;
}

.container {
    background-color: #1e1e1e;
    color: #fff;
    padding-bottom: 70px;
}

.header {
   
    text-align: center;
    margin-bottom: 3rem;
    font-family: "lexend";
}
  
.header h1 {
    padding-top: 70px;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
}
  
.highlight {
    background-color: #c2ff00;
    color: #1e1e1e;
    padding: 0.2rem 0.8rem;
    border-radius: 1.5rem;
    display: inline-block;
}
  

.feature-box{
    padding: 0 50px;
    display: flex;
    height: 350px;
    gap: 1rem;
}

.feature-container{
    border-radius: 15px;
    width: 350px;
    background-color:#272928;
}

.icon-container {
    position: relative;
    width: 80px;
    height: 40px;
    margin-bottom: 20px;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background-color: #333333;
    border: 2px solid #15151598;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    position: absolute;
    top: 30px;
}

.icon-circle:first-child {
    left: 30px;
    z-index: 2;
}

.icon-circle:last-child {
    left: 80px;
    z-index: 1;
}

.icon-circle i{
    font-size: 20px;
}

.heading{
    margin-top: 45%;
    margin-left: 20px;
    font-family: "lexend";
    font-size: 25px;
}

.heading-dots{
    color: rgba(255, 255, 255, 0.377);
    font-family: "Inter";
    letter-spacing: 3px;
    margin-left: 20px;
}

.para{
    color: rgba(255, 255, 255, 0.797);
    font-family: "karla";
    margin-top: 20px;
    margin-left: 20px;
}


/* Small devices (phones, 576px and down) */
@media only screen and (max-width: 576px) {
    .navbar {
        padding: 10px 20px;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .nav-links {
        display: none; /* Hide the navigation links on small screens */
    }
    
    .nav-buttons {
        margin-left: 0;
        width: 100%;
        justify-content: space-between;
        margin-top: 10px;
    }
    
    .logo-text {
        font-size: 4rem;
        padding-top: 100px;
    }
    
    .box-1 {
        height: 12rem;
        margin-bottom: 30vh;
    }
    
    .sphere {
        top: 20%;
        left: 10%;
    }
    
    .sphere img {
        height: 200px;
    }
    
    .content {
        bottom: 20px;
        padding-left: 5%;
    }
    
    .circle {
        bottom: 20px;
        right: 20px;
        width: 80px;
        height: 80px;
    }
    
    .feature-box {
        flex-direction: column;
        height: auto;
        padding: 0 20px;
        gap: 2rem;
    }
    
    .feature-container {
        width: 100%;
        margin-bottom: 20px;
    }

    .header h1 {
        font-size: 1.8rem;
    }

    .stat-badges {
        top: -80px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media only screen and (min-width: 577px) and (max-width: 768px) {
    .navbar {
        padding: 15px 25px;
    }
    
    .nav-links {
        margin-left: 20px;
        padding: 10px;
        gap: 10px;
    }
    
    .nav-buttons {
        margin-left: 10%;
    }
    
    .logo-text {
        font-size: 7rem;
        padding-top: 80px;
    }
    
    .box-1 {
        height: 14rem;
        margin-bottom: 45vh;
    }
    
    .sphere {
        top: 25%;
        left: 20%;
    }
    
    .sphere img {
        height: 300px;
    }
    
    .feature-box {
        flex-wrap: wrap;
        justify-content: center;
        height: auto;
        padding: 0 30px;
    }
    
    .feature-container {
        width: 45%;
        margin-bottom: 20px;
    }

    .stat-badges {
        top: -100px;
    }
}

/* Large devices (desktops, 992px and up) */
@media only screen and (min-width: 769px) and (max-width: 992px) {
    .nav-buttons {
        margin-left: 15%;
    }
    
    .logo-text {
        font-size: 10rem;
    }
    
    .sphere {
        left: 25%;
    }
    
    .feature-box {
        flex-wrap: wrap;
        justify-content: space-between;
        height: auto;
    }
    
    .feature-container {
        width: 48%;
        margin-bottom: 20px;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media only screen and (min-width: 993px) and (max-width: 1200px) {
    .nav-buttons {
        margin-left: 20%;
    }
}

/* Mobile menu toggle (add this to your HTML) */
/* Add a hamburger menu icon for mobile */
@media only screen and (max-width: 768px) {
    /* Add CSS for a mobile menu button */
    .mobile-menu-toggle {
        display: block;
        cursor: pointer;
        font-size: 24px;
    }
    
    /* When active, show the nav links as a dropdown */
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        z-index: 999;
    }
}

/* Fix container overflow issues */
.container {
    overflow: hidden;
    width: 100%;
}

/* Fix image responsiveness */
img {
    max-width: 100%;
    height: auto;
}

/* Ensure text remains readable on small screens */
.text {
    font-size: clamp(12px, 2vw, 15px);
}

.heading {
    font-size: clamp(18px, 3vw, 25px);
}

/* Fix absolute positioned elements */
@media only screen and (max-width: 992px) {
    .stat-badges {
        position: relative;
        top: 0;
        margin-bottom: 20px;
    }
    
    .container {
        padding-top: 40px;
    }
}

/* Add spacing for better mobile experience */
@media only screen and (max-width: 576px) {
    .container {
        padding-top: 60px;
    }
    
    .header {
        margin-bottom: 1.5rem;
    }
}


/* Footer Styles */
.footer {
    position: relative;
    background-color: #1e1e1e;
    color: #fff;
    padding: 80px 50px 40px;
    overflow: hidden;
    z-index: 1;
  }
  
  /* Animated Background */
  .footer-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  
  .circle-anim {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    background: linear-gradient(45deg, #d9ff65, #82c91e);
    animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
    animation-iteration-count: infinite;
    animation-direction: alternate;
  }
  
  .circle-1 {
    width: 300px;
    height: 300px;
    left: 5%;
    top: 20%;
    animation-name: float-1;
    animation-duration: 8s;
  }
  
  .circle-2 {
    width: 450px;
    height: 450px;
    right: -100px;
    top: -150px;
    animation-name: float-2;
    animation-duration: 12s;
  }
  
  .circle-3 {
    width: 200px;
    height: 200px;
    right: 25%;
    bottom: -50px;
    animation-name: float-3;
    animation-duration: 10s;
  }
  
  @keyframes float-1 {
    0% {
      transform: translateY(0) rotate(0deg);
    }
    100% {
      transform: translateY(-30px) rotate(10deg);
    }
  }
  
  @keyframes float-2 {
    0% {
      transform: translateY(0) rotate(0deg);
    }
    100% {
      transform: translateY(50px) rotate(-15deg);
    }
  }
  
  @keyframes float-3 {
    0% {
      transform: translateX(0) rotate(0deg);
    }
    100% {
      transform: translateX(-30px) rotate(10deg);
    }
  }


  .testimonials-container {
    background-color: #e0e0e0;
    padding: 60px 50px 100px;
    color: #272928;
  }
  
  .testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
    font-family: "lexend";
  }
  
  .testimonials-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
  }
  
  .testimonials-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }
  
  .testimonial-controls {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1.5rem;
  }
  
  .control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #272928;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
  }
  
  .control-btn:hover {
    background-color: #d4ff70;
    color: #1e1e1e;
  }
  
  .control-btn i {
    font-size: 18px;
  }
  
  .pagination {
    font-family: "lexend";
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .current {
    font-weight: 600;
  }
  
  .divider, .total {
    color: rgba(55, 51, 51, 0.422);
  }
  
  .testimonials-slider {
    position: relative;
    height: 280px;
    overflow: hidden;
  }
  
  .testimonial {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    justify-content: center;
  }
  
  .testimonial.active {
    opacity: 1;
    z-index: 1;
  }
  
  .testimonial-content {
    background-color: #272928;
    border-radius: 15px;
    padding: 2.5rem;
    max-width: 800px;
    width: 100%;
    position: relative;
  }
  
  .quote-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .quote-text {
    font-family: "lexend";
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .client-details {
    display: flex;
    flex-direction: column;
  }
  
  .client-name {
    font-family: "lexend";
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
  }
  
  .client-position {
    font-family: "karla";
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
  }
  
  @media screen and (max-width: 768px) {
    .testimonials-container {
      padding: 0 20px 80px;
    }
    
    .testimonial-content {
      padding: 1.5rem;
    }
    
    .quote-text {
      font-size: 1rem;
    }
  }


  
  /* Footer Content */
  .footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
  }
  
  .footer-col {
    flex: 1;
    min-width: 180px;
  }
  
  .footer-logo {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 28px;
    margin-bottom: 12px;
  }
  
  .footer-tagline {
    font-family: 'Lexend', sans-serif;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
  }
  
  .social-icons {
    display: flex;
    gap: 12px;
  }
  
  .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #272928;
    border-radius: 50%;
    transition: transform 0.3s ease, background-color 0.3s ease;
  }
  
  .social-icons a:hover {
    background-color: #d9ff65;
    transform: translateY(-3px);
  }
  
  .social-icons a i {
    color: #fff;
    font-size: 18px;
    transition: color 0.3s ease;
  }
  
  .social-icons a:hover i {
    color: #1e1e1e;
  }
  
  .footer-col h3 {
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
  }
  
  .footer-links {
    list-style: none;
  }
  
  .footer-links li {
    margin-bottom: 12px;
  }
  
  .footer-links a {
    font-family: 'Karla', sans-serif;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
  }
  
  .footer-links a:hover {
    color: #d9ff65;
    transform: translateX(3px);
  }
  
  /* Newsletter Form */
  .newsletter {
    max-width: 320px;
  }
  
  .newsletter p {
    font-family: 'Karla', sans-serif;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
  }
  
  .newsletter-form {
    display: flex;
    overflow: hidden;
    border-radius: 10px;
    background-color: #272928;
  }
  
  .newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    background-color: transparent;
    color: #fff;
    font-family: 'Lexend', sans-serif;
  }
  
  .newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
  }
  
  .newsletter-form input:focus {
    outline: none;
  }
  
  .submit-btn {
    width: 50px;
    border: none;
    background-color: #d9ff65;
    color: #1e1e1e;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .submit-btn:hover {
    background-color: #c2ff00;
  }
  
  /* Footer Bottom */
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .copyright {
    font-family: 'Karla', sans-serif;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
  }
  
  .terms {
    display: flex;
    gap: 20px;
  }
  
  .terms a {
    font-family: 'Karla', sans-serif;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
  }
  
  .terms a:hover {
    color: #d9ff65;
  }
  
  /* Responsive Design */
  @media screen and (max-width: 768px) {
    .footer {
      padding: 60px 30px 30px;
    }
    
    .footer-content {
      flex-direction: column;
      gap: 40px;
    }
    
    .footer-col {
      min-width: 100%;
    }
    
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 15px;
    }
  }
  