body {
    margin: 0;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
}

/* About Section */
.about-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, 
    #050505, 
    #0a0f1e, 
    #161a2b, 
    #110d25, 
    #130520, 
    #0d0720, 
    #15061b);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 40px 20px;
}

/* Background Animation */
.about-bg {
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(0, 230, 250, 0.15);
    border-radius: 50%;
    filter: blur(100px);
    animation: moveBackground 10s infinite alternate ease-in-out;
}

.about-bg-1 {
    top: 15%;
    left: 10%;
    animation-duration: 7s;
    background: rgba(85, 205, 252, 0.25);
}

.about-bg-2 {
    bottom: 20%;
    right: 10%;
    animation-duration: 10s;
    background: rgba(100, 5, 90, 0.25);
}

.about-bg-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 12s;
    background: rgba(0, 150, 255, 0.2);
}

/* Content Layout */
.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Left Section */
.about-left {
    flex: 1;
    padding: 20px;
}

/* Glowing Animated Title */
.glow-text {
    font-size: 3rem;
    text-transform: uppercase;
    font-weight: bold;
    color: rgb(202, 202, 202);
    text-shadow: 0 0 10px rgba(0, 230, 250, 0.8), 0 0 20px rgba(0, 230, 250, 0.6);
    animation: glowEffect 2s infinite alternate;
}

@keyframes glowEffect {
    0% {
        text-shadow: 0 0 10px rgba(0, 230, 250, 0.8), 0 0 20px rgba(0, 230, 250, 0.6);
    }
    100% {
        text-shadow: 0 0 15px rgba(0, 230, 250, 1), 0 0 30px rgba(0, 230, 250, 0.8);
    }
}

/* About Description */
.about-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 15px;
}

/* Neon Effect for Highlighted Words */
.highlight {
    background: linear-gradient(90deg, #c70164, #ff77a9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    animation: flicker 1.5s infinite alternate;
}

@keyframes flicker {
    0% { opacity: 1; }
    100% { opacity: 0.7; }
}

/* Info Styling */
.about-info p {
    font-size: 1.1rem;
    color: rgba(219, 216, 216, 0.85);
    margin: 8px 0;
}

/* Animated Info Text */
.info-text {
    background: linear-gradient(90deg, #00bbcf, #0577ac);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    transition: transform 0.3s ease-in-out;
}

.info-text:hover {
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(1, 146, 212, 0.733);
}

/* Right Section (Profile Image) */
.about-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

.about-right img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 30px rgba(0, 230, 250, 0.4);
    transition: transform 0.3s ease-in-out;
}

.about-right img:hover {
    transform: scale(1.05);
}

/* Animation for Background Movement */
@keyframes moveBackground {
    0% {
        transform: translateY(0) scale(1);
    }
    100% {
        transform: translateY(-40px) scale(1.2);
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-left {
        margin-bottom: 20px;
    }

    .about-right img {
        width: 200px;
        height: 200px;
    }
}









/* Profile Image Container */
.profile-container {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Rotating Border with More Gap */
.rotating-border {
    position: absolute;
    width: 350px; /* Large for more spacing */
    height: 350px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: rotateBorder 20s linear infinite;
    transition: animation 0.3s ease-in-out;
}



/* SVG Circle (Connecting Icons) */
.svg-connection {
    position: absolute;
    width: 155%;
    height: 155%;
}

.svg-connection circle {
    stroke: rgba(0, 230, 250, 0.8);
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 8;
    animation: dashAnimation 2s linear infinite alternate;
}

/* Dashed Line Animation */
@keyframes dashAnimation {
    0% { stroke-dashoffset: 20; }
    100% { stroke-dashoffset: 0; }
}

/* Social Media Icons (Circular & Positioned on SVG Circle) */
.social-icon {
    position: absolute;
    font-size: 22px;
    color: white;
    background: rgba(0, 230, 250, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
}

/* Hover Effect for Icons */
.social-icon:hover {
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(0, 230, 250, 0.8);
}

/* Icon Positions (Placed Around Circular SVG) */
.social-icon:nth-child(1) { top: 5%; left: 50%; transform: translate(-50%, -50%); }
.social-icon:nth-child(2) { bottom: 5%; left: 50%; transform: translate(-50%, 50%); }
.social-icon:nth-child(3) { left: 5%; top: 50%; transform: translate(-50%, -50%); }
.social-icon:nth-child(4) { right: 5%; top: 50%; transform: translate(50%, -50%); }


/* Rotating Animation */
@keyframes rotateBorder {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Profile Image */
.profile-container img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 30px rgba(0, 230, 250, 0.4);
    transition: transform 0.3s ease-in-out;
}

/* Hover Effect for Profile Image */
.profile-container img:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .profile-container {
        width: 200px;
        height: 200px;
    }

    .rotating-border {
        width: 280px; /* Adjusted for small screens */
        height: 280px;
    }

    .about-right img {
        width: 200px;
        height: 200px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    .about-section{
        height: 120%;
    }
}



@media screen and (max-width: 400px){
    .about-section{
        height: 150vh;
    }
}
@media screen and (max-width: 300px) {

    .about-section {
        height: 190vh;
    }
    .hero{
        height: 150vh;
    }
}
/* Wave Styling */
.wave-container {
    position: absolute;
    bottom: 0;
    left: -10%;
    width: 150vw;
    height: 500px; /* Ensures waves are tall enough */
    z-index: -1;
    overflow: hidden;
}

.wave-svg {
    width: 300%;
    height: 100%;
    display: block;
    position: absolute;
    left: 0;
    animation: waveMove 10s infinite linear; /* Removes default inline SVG spacing */
}


/* Optional Glow Effect */
.wave-svg path {
    filter: drop-shadow(0px 0px 10px rgba(0, 180, 255, 0.6));
    animation: jellyWave 6s infinite ease-in-out alternate;
    transform-origin: center
}



/* Different speeds for natural effect */
.wave-svg path:nth-child(1) {
    animation-duration: 7s;
}
.wave-svg path:nth-child(2) {
    animation-duration: 8s;
}
.wave-svg path:nth-child(3) {
    animation-duration: 9s;
}
.wave-svg path:nth-child(4) {
    animation-duration: 10s;
}
.wave-svg path:nth-child(5){
    animation-duration: 11s;
}





/* Rolling Sea Wave Animation */
@keyframes waveMove {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-75%);
    }
    100%{
        transform: translateX(0);
    }
}

/* Floating Effect */
@keyframes jellyWave { 
    0% {
        transform: translateY(0) scaleX(1);
    }
    50% {
        transform: translateY(-15px) scaleX(1.02);
    }
    100% {
        transform: translateY(0) scaleX(1);
    }
}









.futuristic-background {
    width: 100%;
    height: 25%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  
    /* Modern Gradient */
    background: radial-gradient(
        circle at top left,
        rgb(1, 17, 39) 10%,
        rgb(17, 1, 34) 25%,
        #020e27 50%,
        rgb(2, 16, 37) 75%,
        rgba(3, 24, 26, 0.884) 90%,
        rgba(14, 0, 9, 0.884) 100%
      ),
      linear-gradient(135deg, #010318, #160644cb, rgba(1, 25, 70, 0.849), #06153bcb, #021f2b, #050011);
    
    background-size: 100% 100%;
    animation: gradientShift 8s infinite alternate ease-in-out;
  }
  
  /* Background Animation */
  @keyframes gradientShift {
    0% {
      background-position: 0% 50%;
    }
    100% {
      background-position: 100% 50%;
    }
  }
  
  /* SVG Overlay */
  .futuristic-background::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    opacity: 0.5;
    z-index: 1;
  }
  
  /* Subtle Glow Effect */
  .futuristic-background::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(5, 18, 48, 0.3) 15%, transparent 75%);
    filter: blur(80px);
    z-index: -1;
  }



  #particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.futuristic-background button{
    z-index: 1;
}

.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Futuristic Button */
.futuristic-btn {
    position: relative;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: bold;
    color: #00f7ff;
    background: transparent;
    border: 2px solid #00f7ff;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 247, 255, 0.6);
}

/* Hover Effects */
.futuristic-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(0, 247, 255, 0.4), transparent);
    transition: all 0.6s ease-out;
    transform: translate(-50%, -50%) scale(0);
    z-index: -1;
}

.futuristic-btn:hover::before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
}

.futuristic-btn:hover {
    color: #fff;
    background: #00f7ff;
    box-shadow: 0 0 15px #00f7ff, 0 0 30px #00f7ff;
}

/* Click Effect */
.futuristic-btn:active {
    transform: scale(0.95);
}