 
 
html,body {
  background: #18181B;
  color: #fff;
  font-family: Arial, sans-serif;
   min-height: 100%;
  overflow-x: hidden; /* prevent sideways scroll */
  overflow-y: auto;   /* allow vertical scroll */
}

 /* hero section start from here */
 .glow-circle{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    height: 100vh;
    width: 50%;
    margin: auto;

    z-index: 1;
 }
 @media (max-width: 768px) {
  .glow-circle {
    width: 100% ;
     
  }
  .content {
    width: 300px !important;
    height: 150px !important;
    
  }
  .content h1{
    font-size: 55px !important;
    text-align: center;
    opacity: 1 !important;
  }
  .profile{
    width: 60px !important;
    height: 60px !important;
    right: 120px !important;
    top: -40px !important;
    margin: auto !important;
    opacity: 1 !important;
  }
}
 
 .circle-1{
    display: none;
      width: 100%;
    object-fit: cover;
  margin: auto;
   scale: 2.0;
   transform: scale(2.0);
  animation: spin 10s linear infinite;
   
 }
.circle {
  width: 100%;
    object-fit: cover;
  margin: auto;
    scale: 2.0;
   transform: scale(2.0);
  animation: spin 5s linear infinite;
   
  
}

@keyframes spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
} 
 


.main{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
/* Main content */
.content {
  position: absolute;
    width: 400px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  height: 220px;
  text-align: start;
  z-index: 2;
}
 .glow-circle:hover .circle {
    display: none;
    cursor: pointer;
 }
 .glow-circle:hover .circle-1 {
    display: block;
    width: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: ease-in-out 2s;
     
 }
.content h1 {
  font-family: sans-serif;
   
  font-size: 90px;
  font-weight: 900;
  line-height: 1.1;
  opacity: 0;
      transform: translateY(50px);
      transition: opacity 1.5s ease, transform 1.5s ease;
}
.content h1.show {
      opacity: 1;
      transform: translateY(0);
    }
.left-animation {
  opacity: 0;
      transform: translateX(-150px);
      transition: opacity 1.5s ease, transform 1.5s ease;
}
.right-animation {
  opacity: 0;
      transform: translateX(150px);
      transition: opacity 1.5s ease, transform 1.5s ease;
}
.bottom-animation {
  opacity: 0;
      transform: translateY(50px);
      transition: opacity 1.2s ease, transform 1.5s ease;
}
.left-animation.show, .right-animation.show, .bottom-animation.show {
      opacity: 1;
      transform: translateY(0);
    }
.profile {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  
 
  margin: 20px auto 0;
  position: absolute;
  top: 0px;
  right: -50px;
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1.5s ease, transform 1.5s ease;

}
.profile.show {
  opacity: 1;
  transform: translateY(0);
}

.profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Side Navigation */
.side-nav {
  position: fixed;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
   justify-content: center;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}
@media (max-width: 768px) {
  .side-nav {
    display:none !important;
  }
}
/* new css start from here */
 html {
      scroll-behavior: smooth; /* Smooth scrolling */
    }
   /* Active state for icons */
  .nav-link.active {
    background: rgba(128, 128, 128, 0.371); /* Tailwind pink-500 */
  }
  .hover-text.text-show {
    display: block;
  }
.side-bar button {
   text-decoration: none;
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 10px;
  background: #222;
  color: #f2f2f2;
  font-size: 20px;
  cursor: pointer;
 
   opacity: 0;
      transform: translateY(-20px);
       transition: background 0.3s;
      animation: fadeDown 0.8s ease forwards;
}
.side-bar div a:hover{
  background: #222;
}
.side-nav a {
  text-decoration: none;
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 10px;
  background: #222;
  color: #f2f2f2;
  font-size: 20px;
  cursor: pointer;
 
   opacity: 0;
      transform: translateY(-20px);
       transition: background 0.3s;
      animation: fadeDown 0.8s ease forwards;
}
 
 @keyframes fadeDown {
      from {
        opacity: 0;
        transform: translateY(-20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
.side-nav a:nth-child(1) {
      animation-delay: 0.2s;
    }
.side-nav a:nth-child(2) {
      animation-delay: 0.4s;
    }
.side-nav a:nth-child(3) {
      animation-delay: 0.6s;
    }
.side-nav a:nth-child(4) {
      animation-delay: 0.8s;
    }
.side-nav a:nth-child(5) {
      animation-delay: 1s;
    }
.side-nav a:hover {
  background: #444;
}
/* Side Navigation */
.side-bar button:nth-child(1) {
  animation-delay: 0.2s;
    }
.side-bar button:nth-child(2) {
  animation-delay: 0.4s;
    }
.side-bar button:nth-child(3) {
  animation-delay: 0.6s;
    }
.side-bar button:nth-child(4) {
  animation-delay: 0.8s;
    }
.side-bar button:nth-child(5) {
  animation-delay: 1s;
    }
.side-bar button:hover {
  background: #444;
}
.side
/* Tagline */
.tagline {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: rotate(-90deg) translateY(-50%);
  transform-origin: right center;
  font-size: 14px;
  color: #ccc;
  z-index: 2;
}
.text-section{
  display: flex;
   gap: 40px;
   margin: 50px 200px;
   padding-bottom: 50px;
  border-bottom: #2f2e2ebf solid 1px;
   
}
@media(max-width: 768px){
 .text-section{
  margin: 20px !important;
  flex-wrap: wrap !important;
 }
 .box-1{
  width: 100% !important;
 }
 .box-2{
  width: 100% !important;
 }
}
.box-1{
  width: 42%;
  font-size: 35px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 80px;

}
.box-2{
  width: 60%;
  font-size: 22px;
  font-weight: 400;
  text-transform: none;
  margin-top: 0px;
}
.text-visions{
background: #2354e658;
border-left: #4141f4  solid 5px;
padding: 7px 20px;
}
.text-color{
  color: #4141f4;
  font-weight: 600;
}
/* what i do section start from here */
.text-1 {
  color: gray;
  font-weight: 550;
  text-align: center;
}
.text-2{
  width: 50%;
  text-align: center;
  line-height: 1.6;
  margin: auto;
  font-size: 18px;
  color: #edebeb;
  margin-top: 15px;
}
    @media(max-width: 768px){
      .container{
        margin: 30px auto !important;
        width: 90% !important;
      }
      .text-2{
        width: 80% !important;
      }
      .img-10{
        margin-left: 0px !important;
      }
    }
.container {
 width:80%;
  margin: 50px auto;

    
}
.container .div-1{
  padding: 80px 40px;
  width: 100%;
}
@media(max-width: 768px){
  .container .div-1{
    padding: 40px 20px !important;
  }
  .inner-container{
  
  margin-top: 30px !important;
}
}
.box-3  button{
  padding: 10px  ;
  width: 50%;
  
}
.inner-container{
  
  margin-top: 50px;
}
.box-3{
  padding: 0px !important;
  margin: 50px 0px 0px 0px !important;
}
 

 .img-10{
  margin-left: -50px;
 }

 

 
  
      
    /* Hide default dots */
    .swiper-pagination-bullet {
      display: block;
    }

 .custom-pagination button {
 height:fit-content; 
 width: 100%;
  padding: 6px 10px;
  border-radius: 0.5rem;       
  background-color: transparent;   /* 👈 Add this */
  color: white;              /* Black text so it’s visible on white */
  font-weight: 500;
  transition: all 0.3s ease; 
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
}

    /* Hover effect */
    .custom-pagination button:hover {
      background-color: rgba(128, 128, 128, 0.545);  
      color: #fff;
    }

    /* Active state */
    .custom-pagination .swiper-pagination-bullet-active {
      background-color: rgba(128, 128, 128, 0.326);  
      color: #fff;
    }
 
   /* Hide default dots */
  .swiper-pagination-bullet {
    display: block !important;
  }
 .custom-pagination-3 button {
 height: 70px; 
 width: 70px;
 
   
  border-radius: 50%;       
  background-color: transparent;   /* 👈 Add this */
  color: white;              /* Black text so it’s visible on white */
  font-weight: 500;
  transition: all 0.3s ease; 
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
}

  /* Active thumbnail */
  .custom-pagination-3 .swiper-pagination-bullet-active {
    border-color: #db2777 !important; /* Tailwind pink-600 */
  }
  /* Skill Animation */
   .progress-bar {
      transition: width 1s ease-out;
    }