@import url('https://fonts.googleapis.com/css2?family=Asimovian&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Epunda+Slab:ital,wght@0,300..900;1,300..900&display=swap');
:root{
   --bg-color:#09090a;
  --text-color:#fff;
  --navbar: rgb(12, 12, 14);
  --primary-color: rgb(255, 0, 255);
}

[data-theme="light"] {
 --bg-color:whitesmoke;
  --text-color:#0e0e12;
  --navbar:#eee9e9;
}
#theme-toggle {
  transition: filter 0.3s;
  margin-left: auto;
}

/* Optional: add hover effect */
#theme-toggle:hover {
  filter: brightness(1.2);
}








* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg-color);
  color: var(--text-color);
  font-family: 'Segoe UI', sans-serif;
  overflow-x: hidden;
}

#loader-wrapper {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: var(--bg-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

#loader {
  width: 60px;
  height: 60px;
  border: 6px solid var(--primary-color);
  border-top: 6px solid transparent;
  border-radius: 50%;
  animation: spin 5s linear infinite;
}


.navbar{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 100%;
  position: sticky;
  top: 0;
  background: var(--navbar);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.navbar-container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 2rem;
  max-width: 1600px;
  border-bottom: 2px solid var(--primary-color);
}
.navbar-menu li a{
 font-family: "Epunda Slab", serif;
 font-weight: 400;
 font-size: 1.2rem;
 color: var(--text-color);
}

.navbar-logo{
   font-family: "Asimovian", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--text-color);
  text-decoration: none;
  cursor: pointer;
}
.logo-dot{
  color: var(--primary-color);
  font-size: 2.5rem;
  border-radius: 50%;
}
.navbar-container .navbar-menu{
  display: flex;
  text-align: center;
  gap: 1.5rem;
  list-style: none;
}

.navbar-container .navbar-menu li a{
  text-decoration: none;
  color: var(--text-color);
  font-size: 1.3rem;
  font-weight: 500;
  padding: 3px 20px;
  border-radius:  20px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.navbar-container .navbar-menu li a:hover,
.navbar-container .navbar-menu li a.active
{
     border-bottom: 4px solid var(--primary-color);
     border-top: 4px solid var(--primary-color);
}
.navbar-container .navbar-menu li:nth-child(5){
  /* padding: 3px 20px; */
  border-radius:  20px;
  /* border: 2px solid transparent; */
   border-bottom: 4px solid var(--primary-color);
     border-top: 4px solid var(--primary-color);
}

.navbar-toggle{
  display: none;
  background: transparent;
  padding: 10px;
  border: none;
  cursor: pointer;
  color: var(--text-color);
}

.bar{
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
   /* background: transparent; */
   color: transparent;
  background: 8px var(--text-color);
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}
@media (max-width:977px){
  .navbar{
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.navbar-container .navbar-menu {
  display: none;
  flex-direction: column;
  gap: 1.7rem !important;
  align-items: center;
  position: absolute;
  height: 100vh;
  width: 250px;
   background-color: var(--navbar);
  top: 5.5rem;
  right: 0;
  padding: 5rem 1.5rem;
  /* box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px); */
}
.navbar-container .navbar-menu.active{
  display: flex;
}
.navbar-toggle{
  display: block;
  z-index: 999;
}
.navbar-toggle.active .bar:nth-child(2){
  opacity: 0;
}
.navbar-toggle.active .bar:nth-child(1){
transform: translateY(8px) rotate(45deg);
}
.navbar-toggle.active .bar:nth-child(3){
  transform: translateY(-8px) rotate(-45deg);
}

}


@media (max-width:480px){
  .navbar-container{
    padding: 0 1rem;
  }
  .navbar-logo{
    font-size: 1.5rem;
  }
    .navbar-container .navbar-menu{
      font-size: 1.2rem;
      padding: 3px 15px;
    }
  }

/* .bar{
  display: block;
  width: 30px;
  height: 3px;
  background: var(--text-color);
  margin: 5px auto;
  transition: all 0.3s ease;
} */

/* Hero */

.hero {
  display: flex;
  flex-direction: column-reverse;
  text-align: center;
  align-items: center;
  padding: 60px 20px;
  /* margin: auto; */
  min-height: 100vh;
  justify-content: center;
  margin-top: -5rem;
}
.hero-text {
  max-width: 600px;
  margin-top: 3rem;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin: 10px 0;
}

.hero-text span {
  color: var(--primary-color);
}

.hero-text .description {
  max-width: 500px;
  margin: auto;
  padding: 10px 0 20px;
  color: var(--text-color);
}


.container-follow{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  /* margin-left: -15rem; */
  /* margin-top: -2rem; */
}
 .social-icons {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 20px;
            /* margin-left: -15rem; */
            margin-top: -1rem;
        }
        
        .icon {
            position: relative;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            text-decoration: none;
            padding: 10px;
            font-size: 20px;
            transition: all 0.3s ease;
            margin-top:3rem;
            cursor: pointer;
            font-size: 1rem;
            
        }
        
        /* Facebook */
        .facebook {
            background: #3b5998;
        }
        
        .facebook:hover {
            background: #2d4373;
            transform: translateY(-5px);
        }
        
        /* Instagram */
        .instagram {
            background: #e1306c;
        }
        
        .instagram:hover {
            background: #c13584;
            transform: translateY(-5px);
        }
        
        /* WhatsApp */
        .whatsapp {
            background: #25d366;
        }
        
        .whatsapp:hover {
            background: #128c7e;
            transform: translateY(-5px);
        }
        
        /* GitHub */
        .github {
            background: #333;
        }
        
        .github:hover {
            background: #24292e;
            transform: translateY(-5px);
        }
        
        /* Tooltip */
        .icon::before {
            content: attr(data-tooltip);
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 5px 12px;
            border-radius: 5px;
            font-size: 14px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            white-space: nowrap;
            z-index: 1;
        }
        
        .icon::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-width: 5px;
            border-style: solid;
            border-color: transparent transparent rgba(0, 0, 0, 0.8) transparent;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .icon:hover::before,
        .icon:hover::after {
            opacity: 1;
            visibility: visible;
        }
        
        /* Responsive design */
        @media (max-width: 600px) {
            .icon {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }
            
            .social-icons {
                gap: 15px;
            }
        }
        
        @media (max-width: 400px) {
            .icon {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
            
            .social-icons {
                gap: 10px;
            }
            
            .container-fluid {
                padding: 20px;
            }
            
            .follow {
                font-size: 24px;
            }
        }
.follow{
  font-size: .2rem;
  font-weight: 400;
  color: var(--text-color);
  margin-bottom: 1rem;
  font-family: "Epunda Slab", serif;
}

   

.ddd {
  display: inline-block;
  border: 2px  solid var(--primary-color);
  color: var(--text-color);
  font-size: medium;
 font-style: bold;
  padding: 10px 20px;
  border-radius: 25px;
 margin-top: 2rem;
  font-family: "Epunda Slab", serif;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
 /* top: 5rem; */
  margin-left: 20px;
  text-decoration: none;
}



/* Hero Image + orbit effect */
.hero-image {
  position: relative;
  /* margin: 40px; */
}

.hero-image img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  z-index: 1;
  position: relative;
}

.orbit-ring {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 240px;
  height: 240px;
  border: 3px dashed var(--primary-color);
  border-radius: 50%;
  animation: rotate 8s linear infinite;
}

/* Stats */
.stats {
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  /* max-width: 800px;
  padding: 40px 20px; */
  flex-wrap: wrap;
  margin-top: -6rem; 
}

.stats div {
  text-align: center;
  margin: 15px;
}

.counter {
  font-size: 2rem;
  font-weight: bold;
  color: var(--text-color);
}

/* footer */

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--navbar);
  color: var(--text-color);
  padding: 20px 0;
  text-align: center;
  font-size: larger;
 font-family: "Epunda Slab", serif;
  margin-top: 3rem;
  border-top: 2px solid var(--primary-color);
}



/* testimonial */
      .testimonial-container {
            max-width: 900px;
            width: 100%;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .dot h1 {
            text-align: center;
            margin-bottom: 30px;
            color: white;
            font-size: 2.5rem;
            position: relative;
        }
        
        .dot h1:after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, #6a11cb, #2575fc);
            margin: 10px auto;
            border-radius: 2px;
        }
        
        .testimonial-wrapper {
            position: relative;
            overflow: hidden;
            height: 350px;
          
        }
        
        .testimonial-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease, transform 0.8s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
            text-align: center;
            transform: translateX(100%);
            background: var(--navbar);
              /* background:#0e0e10; */

        }
        
        .testimonial-slide.active {
            opacity: 1;
            transform: translateX(0);
        }
        
        .testimonial-slide.next {
            transform: translateX(100%);
        }
        
        .testimonial-slide.prev {
            transform: translateX(-100%);
        }
        
        .testimonial-image {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid #6a11cb;
            margin-bottom: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 15px;
            color:var(--text-color);
            max-width: 80%;
            font-style: italic;
        }
        
        .testimonial-name {
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--text-color);
            margin-bottom: 5px;
        }
        
        .testimonial-role {
            font-size: 0.9rem;
            color: #3c4344;
            margin-bottom: 10px;
        }
        
        .stars {
            color: #f39c12;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }
        #had{
          margin-top: 4rem;
          margin-bottom: 2rem;
          color: var(--primary-color);
          font-size: 2.5rem;
          text-align: center;
          font-weight: 600;
        }
        .navigation {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .nav-btn {
            background: var(--primary-color);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            margin: 0 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: -1.2rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .nav-btn:hover {
            transform: scale(1.1);
            box-shadow:var(--primary-color);
        }
        
        .dots {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            background: #bdc3c7;
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.3s ease;
        }
        
        .dot.active {
            background: var(--primary-color);
            transform: scale(1.3);
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .testimonial-container {
                padding: 20px;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            .testimonial-wrapper {
                height: 400px;
            }
            
            .testimonial-text {
                max-width: 95%;
                font-size: 1rem;
            }
        }
        
        @media (max-width: 576px) {
            h1 {
                font-size: 1.8rem;
            }
            
            .testimonial-wrapper {
                height: 450px;
            }
            
            .testimonial-image {
                width: 80px;
                height: 80px;
            }
            
            .testimonial-text {
                max-width: 100%;
            }
            
            .nav-btn {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
        }



/* Animations */
@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}
     /* Animation */
        /* @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        } */

/* Responsive */
@media (min-width: 768px) {
  
  .hero {
    flex-direction: row;
    text-align: left;
    justify-content: space-around;
    align-items: center;
    /* margin-top: -6rem; */
  }

  .social-icon {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }

  .hero-text {
    max-width: 500px;
  }
 
}

        @media (max-width: 480px) {
            .social-container {
                gap: 15px;
            }
            .social-icon {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
             .hero-image img{
    width: 150px;
    height: 150px;
  }
  .orbit-ring{
    width: 180px;
    height: 180px;
    top: -15px;
    left: -15px;
    /* top: -5px;
    left: -8px; */
  }
  .hero{
    margin-top: 4rem;
  }
  .stats{
    margin-top: -2rem;
  }
        }


    /* Services Section */
    #services {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
      padding: 20px;
      margin-top: -4rem;
    }
.services-service h2{
  margin-top: 10rem;
  display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      margin-bottom: 2rem;
      color: var(--primary-color);
      font-size: 2.5rem;
    }
    .services-container {
      display: grid;
      margin-top: 2rem;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      max-width: 1200px;
      width: 100%;
      padding: 20px;
      height: 100%;
      gap: 2rem;
    }

    .services-card {
      position: relative;
      background: rgb(12, 12, 14);
      border-radius: 8px;
      overflow: hidden;
      color: var(--text-color);
      cursor: pointer;
      width: 100%;
      height: 360px;

      display: flex;
      flex-direction: column;
      align-items: center;
      /* justify-content: flex-start; */
      gap: 10px;
      transition: transform 0.3s ease;
      box-shadow: 0 4px 8px rgba(59, 59, 59, 0.1);
      border: 3px solid var(--primary-color);
      padding: 10px;
    }

    .services-card:hover {
      transform: translateY(-15px);
    }

    .services-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-radius: 5px;
      transition: transform 0.4s ease;
      display: block;
    }
      .services-card:hover img {
        transform: scale(1.05);
        transition: transform 0.4s ease;
        
      }

    .services-card-content {
      position: absolute;
      bottom: 0;
      width: 100%;
      background: var(--navbar);
      padding: 20px;
      transition: height 0.4s ease;
      height: 4.3rem;
      overflow: hidden;
      border-radius: 5px;
    }

    .services-card:hover .services-card-content {
      height: 240px; /* Expands to show paragraph */
    }

    .services-card-content h3 {
      font-size: 1.5rem;
      margin-bottom: 10px;
      font-weight: bold;
      color: var(--text-color);
    }

    .services-card-content p {
      font-size: 1.2rem;
      line-height: 1.4;
      color: var(--text-color);
    }

    /* Responsive for tablets and mobile */
    @media (max-width: 992px) {
      .services-container {
        grid-template-columns: repeat(2, 1fr);
      }
      /* .card-content{
        height: 4rem;
      } */
    }

    @media (max-width: 600px) {
      .services-container {
        grid-template-columns: 1fr;
      }
      .services-card-content h3 {
        font-size: 1.1rem;
      }
      .services-card-content p {
        font-size: 0.85rem;
      }
      .services-card-content{
        height: 3.1rem;
      }
    }



  .text-container h1 {
      color: var(--text-color);
    }
    .dynamic-text {
      display: inline-block;
      position: relative;
      height: 1.4em;
      overflow: hidden;
      vertical-align: bottom;
      margin-left: 10px;

    }
    .dynamic-text span {
       /* margin-top: 2rem; */
      display: block;
      animation: slide 6s infinite;
    }
    @keyframes slide {
      0% { transform: translateY(0); }
      30% { transform: translateY(0); }
      33% { transform: translateY(-100%); }
      63% { transform: translateY(-100%); }
      66% { transform: translateY(-200%); }
      96% { transform: translateY(-200%); }
      100% { transform: translateY(0); }
    }
     .dynamic-text span { 
      color: var(--primary-color);
     }

     .testimonial-title{
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      margin-bottom: 2rem;
      color: var(--primary-color);
      font-size: 2.5rem;
     }


     .navbar-logo:hover{
      transform: rotate(-8deg);
      transition: transform 0.5s ease;
     }


     #seo,
      #fullstack{
 
        height: 320px;
      }

      /* @media (max-width: 800px) {
        .hero{
          margin-top: 6rem;
        }
        
      } */