*{
  margin: 0;
  padding: 0;
  font-family: Rockwell, 'Rockwell Nova', 'Roboto Slab', 'DejaVu Serif', 'Sitka Small', serif;
  font-weight: normal;;
  box-sizing: border-box;
}

html, body{
  width: 100%;
  height: 100%;
  overflow: auto;
  -ms-overflow-style: none;  /* Hide scrollbar in IE and Edge */
  scrollbar-width: none;  
  scroll-behavior: smooth;
}


::-webkit-scrollbar {
  display: none;
}




.navbar {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(12px);
  box-shadow: 0px 4px 10px rgba(32, 46, 77, 0.15);
  border:  1px solid rgba(15, 23, 42, 0.15);
  z-index: 9999;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #a855f7;
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

/* Navbar Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color:  #e2e8f0;
  font-size: 1rem;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: #6d98d3;
}









.hero{
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: radial-gradient(
    farthest-corner at 40px 40px,
    #040c27 0%,
    #021229 25%,
    rgb(10, 0, 46) 50%,
    #00142b 75%,
    #0c0936 100%
  );
  overflow: hidden;
}


.hero::after {
  content: "";
  position: absolute;
  bottom: -100px; /* Start hidden */
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 200px; /* Half-circle height */
  background-color: #fff; /* Change color as needed */
  border-radius: 50%;
  opacity: 0;
  transition: all 1s ease-in-out;
}

 .hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
  max-width: 1200px;
  color: #e2e8f0;
}

.left h1 {
  font-size: 3rem;
  font-weight: bold;
}span{
  color: #a855f7;
}



.left h2{
  font-size: 2rem;
  color: #e2e8f0;
}

.left h2 span{
  color: #5f93db;
}

.cursor {
  display: inline-block;
  width: 2px;
  height: .9em;
  background: #5f93db;
  animation: blink 0.6s infinite;
}

@keyframes blink {
  50% { background-color: transparent; }
}

.left-last button {
  padding: 10px 20px;
  margin-right: 15px;
  margin-top: 15px;
  border: none;
  border-radius: 28px;
  cursor: pointer;
  background: #a855f7;
  color: white;
  font-size: 1rem;
  transition: 0.3s;
}

.left-last button:hover {
  background: #9333ea;
}




.left-last button:first-child {
  background: linear-gradient(45deg, #a855f7, #9333ea);
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
  transform: scale(1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.left-last button:first-child:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(147, 51, 234, 0.6);
}

.left-last button:last-child {
  background: #0ea5e9;
  color: white;
  position: relative;
  overflow: hidden;
}

.left-last button:last-child::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: rgba(255, 255, 255, 0.2);
  transition: width 0.5s, height 0.5s, top 0.5s, left 0.5s;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.left-last button:last-child:hover::before {
  width: 0;
  height: 0;
}

.left-last button:last-child:hover {
  background: #0284c7;
}



.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
  max-width: 1200px;
  color: #e2e8f0;
}

.left {
  flex: 1;
  text-align: left;
}



.right {
  position: relative;
  display: flex;
  justify-content: right;
  align-items: center;
}

.right img {
  width: 350px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(168, 85, 247, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  z-index: 1;
  border: 3px solid linear-gradient(45deg, #9333ea, #0ea5e9, )
}
/* Animated Border */
.right::after {
  content: "";
  position: absolute;
  width: 355px;
  height: 365px;
  border-radius: 50%;
  border: 4px solid transparent;
  background: conic-gradient(from 0deg, #a855f7, #9333ea, #0ea5e9, #a855f7);
  animation: rotateBorder 4s linear infinite;
  z-index: 0;
}
@media screen and (max-width: 300px) {

  .right::after {
      width: 155px;
      height: 165px;
  }
}
@keyframes rotateBorder {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Hover Effect */
.right img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(168, 85, 247, 0.6);
}



@media (max-width: 767px) {
  .navbar {
    /* flex-direction: column; */
    display: flex;
    height: auto;
    padding: 15px;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
    align-items: center;
    width: 100%;
    padding-top: 10px;
  }

  .nav-links{
    display: none;
  }
  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links li a {
    display: block;
    padding: 10px;
    width: 100%;
  }
  .navbar .logo span{
    align-items: right;
  }
  .hero{
    width: 100%;
    height: 115vh;
  }
  .hero-content {
    flex-direction: column-reverse; /* Moves image above content */
    text-align: center;
  }

  .left, .right {
    flex: none;
    width: 100%;
  }

  .right img {
    width: 250px;
  }

  .right{
    justify-content: center;
  }
  .right::after{
    width: 255px;
    height: 260px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    box-shadow: 0px 4px 10px rgba(32, 46, 77, 0.15);
    border:  1px solid rgba(15, 23, 42, 0.15);
    display: none;
    flex-direction: column;
    padding: 10px 0;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }
  .skills-container h3{
    
  }
}



.big-name-wrapper {
  position: absolute;
  bottom: 2.5%;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.big-name {
  display: inline-block;
  font-size: 8vw; /* Responsive font size */
  font-weight: bold;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.068); /* Faded effect */
  pointer-events: none;
  min-width: 100%;
}





/* GSAP Loading Animation */
.gsap-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader-logo {
  font-size: 4rem;
  font-weight: bold;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
}

.loader-progress {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.loader-progress::after {
  content: '';
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
  border-radius: 2px;
}







/* Initial hidden state for nav and hero */
.futuristic-btn {
  transform: translateY(30px) scale(0.8);
  opacity: 0;
  will-change: transform, opacity;
}







/* Initial states */
.skills-container {
  opacity: 0;
  transform: translateY(40px);
  will-change: transform, opacity;
}

.skill-icon {
  opacity: 0;
  transform: translateY(30px) scale(0.8);
  will-change: transform, opacity;
}

.vertical-line-primary,
.vertical-line-secondary {
  transform: scaleY(0);
  transform-origin: top center;
  will-change: transform;
}









/* Initial states */
.why-choose-me .grid>div {
  will-change: transform, opacity, box-shadow;
  transform-style: preserve-3d;
}

.why-choose-me .grid>div:nth-child(1) {
  transform: translateX(-100px);
  opacity: 0;
}

.why-choose-me .grid>div:nth-child(2) {
  transform: translateY(80px);
  opacity: 0;
}

.why-choose-me .grid>div:nth-child(3) {
  transform: translateX(100px);
  opacity: 0;
}

.why-choose-me .grid>div svg {
  transform: scale(0);
  opacity: 0;
}

.why-choose-me .grid>div h3,
.why-choose-me .grid>div p {
  transform: translateY(20px);
  opacity: 0;
}

/* Disable CSS transitions */
.why-choose-me .grid>div,
.why-choose-me .grid>div * {
  transition: none !important;
}







/* Initial states for project cards */
.project-section .group {
  opacity: 0;
  will-change: transform, opacity, box-shadow;
  transform-style: preserve-3d;
  transition: none !important;
}








/* Service section initial states */
.service-section h2 {
  opacity: 0;
  transform: translateY(50px);
  will-change: transform, opacity;
}

.service-card {
  opacity: 0;
  transform: translateY(60px) scale(0.95);
  will-change: transform, opacity, box-shadow;
  transition: none !important;
}

.service-card.recommended {
  transform: translateY(80px) rotate(2deg);
}

/* Disable CSS transitions to avoid conflicts */
.service-card * {
  transition: none !important;
}












/* Pricing section initial states */
.pricing-section .group {
  will-change: transform, opacity, box-shadow;
  transform-style: preserve-3d;
}

.pricing-section .group:nth-child(1) {
  transform: translateX(-100px) rotateY(15deg);
  opacity: 0;
}

.pricing-section .group:nth-child(2) {
  transform: translateY(80px);
  opacity: 0;
}

.pricing-section .group:nth-child(3) {
  transform: translateX(100px) rotateY(-15deg);
  opacity: 0;
}

/* Inner elements */
.pricing-section h3,
.pricing-section ul li {
  opacity: 0;
  transform: translateY(10px);
}

.pricing-section .price-tag {
  opacity: 0;
  transform: scale(0.9);
}

/* Disable CSS transitions */
.pricing-section .group,
.pricing-section .group * {
  transition: none !important;
}
























/* Footer initial states */
.footer {
  opacity: 0;
  transform: translateY(50px);
  will-change: transform, opacity;
}

.footer .grid>div {
  opacity: 0;
  transform: translateY(30px);
  will-change: transform, opacity;
}

.footer .border-t {
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.footer .social-icon {
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  will-change: transform, opacity, color;
}

.footer .copyright {
  opacity: 0;
  transform: translateY(20px);
  will-change: transform, opacity;
}

/* Disable CSS transitions */
.footer * {
  transition: none !important;
}