@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500&display=swap');

a{
  text-decoration: none !important;
}
*{
    padding: 0;
    margin: 0;
}
body{
    background-color: rgb(0, 0, 0) !important;
}
.section1 {
    background-color: black !important;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid white  !important ;
}
.hero-section{
  padding: 20px 0px;
}

.text-container {
    color: #00f361 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
}
.dropping-texts {
    z-index: 999 !important;
    color: white !important;
    display: inline-block;
    width: 180px;
    text-align: right;
    position: relative;
    height: 36px;
    top: -6px;
    vertical-align: -4px;
    padding-top: -9px;
    padding-left: 9px;
}
.dropping-texts > div {
  font-size:0px;
  opacity:0;
  margin-left:-30px;
  position:absolute;
  font-weight:300;   
  box-shadow: 0px 60px 25px -20px rgba(255, 255, 255, 0.5);
}

.dropping-texts > div:nth-child(1) {
  animation: roll 5s linear infinite 0s;
}
.dropping-texts > div:nth-child(2) {
  animation: roll 5s linear infinite 1s;
}
.dropping-texts > div:nth-child(3) {
  animation: roll 5s linear infinite 2s;
}
.dropping-texts > div:nth-child(4) {
  animation: roll2 5s linear infinite 3s;
}

@keyframes roll {
  0% {
    font-size:0px;
    opacity:0;
    margin-left:-30px;
    margin-top:0px;
    transform: rotate(-25deg);
  }
  3% {
    opacity:1;
    transform: rotate(0deg);
  }
  5% {
    font-size:inherit;
    opacity:1;
    margin-left:0px;
    margin-top:0px;
  }
  20% {
    font-size:inherit;
    opacity:1;
    margin-left:0px;
    margin-top:0px;
    transform: rotate(0deg);
  }
  27% {
    font-size:0px;
    opacity:0.5;
    margin-left:20px;
    margin-top:100px;
  }
  100% {
    font-size:0px;
    opacity:0;
    margin-left:-30px;
    margin-top:0px;
    transform: rotate(15deg);
  }
}

@keyframes roll2 {
  0% {
    font-size:0px;
    opacity:0;
    margin-left:-30px;
    margin-top:0px;
    transform: rotate(-25deg);
  }
  3% {
    opacity:1;
    transform: rotate(0deg);
  }
  5% {
    font-size:inherit;
    opacity:1;
    margin-left:0px;
    margin-top:0px;
  }
  30% {
    font-size:inherit;
    opacity:1;
    margin-left:0px;
    margin-top:0px;
    transform: rotate(0deg);
  }
  37% {
    font-size:1500px;
    opacity:0;
    margin-left:-1000px;
    margin-top:-800px;
  }
  100% {
    font-size:0px;
    opacity:0;
    margin-left:-30px;
    margin-top:0px;
    transform: rotate(15deg);
  }
}

/* @keyframes bg {
  0% {background: #ff0075;}
  3% {background: #0094ff;}
  20% {background: #0094ff;}
  23% {background: #b200ff;}
  40% {background: #b200ff;}
  43% {background: #8BC34A;}
  60% {background: #8BC34A;}
  63% {background: #F44336;}
  80% {background: #F44336;}
  83% {background: #F44336;}
  100% {background: #F44336;}
} */

.image img{
  border-radius: 100%;
  height: 170px !important;
  width: 170px !important;
}


.container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            text-align: center;
            z-index: 2;
        }
        
        .profile-image-container {
            width: 300px;
            height: 300px;
            margin: 0 auto 60px;
            position: relative;
            opacity: 0;
            /* transform: scale(0.8) translateY(100px); */
            animation: profileReveal 1.5s cubic-bezier(0.23, 1, 0.32, 1) 0.5s forwards;
        }
        
        .profile-image {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            /* filter: grayscale(100%) contrast(1.3) brightness(1.1); */
            /* transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1); */
            transition: .7s !important;
            border: 3px solid rgba(255, 255, 255, 0.1);
            position: relative;
            z-index: 2;
        }
        
        .profile-image:hover {
            /* filter: grayscale(0%) contrast(1) brightness(1); */
            /* transform: scale(1.05); */
            border-color: rgba(255, 255, 255, 0.3);
        }
        
        .profile-glow {
            position: absolute;
            top: -20px;
            left: -20px;
            right: -20px;
            bottom: -20px;
            transition: .7s !important;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            opacity: 0;
            animation: glowPulse 3s ease-in-out infinite;
        }
        
        .hero-title {
            color: white !important;
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 300;
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInUp 1s ease-out 1s forwards;
            position: relative;
        }
        
        .hero-subtitle {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            font-weight: 300;
            color:#00f361;
            margin-bottom: 40px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease-out 1.3s forwards;
        }
        
        .hero-description {
            max-width: 600px;
            margin: 0 auto;
            font-size: 1rem;
            font-weight: 300;
            line-height: 1.8;
            color: #aaaaaa;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease-out 1.6s forwards;
        }
        
        /* Text Content Section */
        .content-section {
            padding: 120px 0;
            position: relative;
        }
        
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 80px;
            align-items: start;
        }
        
        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 400;
            margin-bottom: 30px;
            position: sticky;
            top: 100px;
            color: #00f361;
        }
        .textblue{
          color: #4f41aa;
        }
        
        .content-text {
            font-size: 1.1rem;
            font-weight: 300;
            line-height: 1.9;
            color: #cccccc;
        }
        
        .content-text p {
            margin-bottom: 30px;
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
        }
        
        .content-text p.visible {
            opacity: 1;
            transform: translateX(0);
        }
        
        /* Company Section */
        .company-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #111111 0%, #0a0a0a 100%);
            border-top: 1px solid #222;
            border-bottom: 1px solid #222;
            position: relative;
            overflow: hidden;
        }
        
        .company-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
            animation: shimmerSlow 4s linear infinite;
        }
        
        .company-content {
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
.company-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: scale(0.8) rotateY(180deg);
    animation: logoReveal 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    position: relative;
    cursor: pointer;
    box-shadow: 0px 0px 9px 4px  #4f41aa;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
        
        .company-logo:hover {
            transform: scale(1.8);
            /* border-color: rgba(255, 255, 255, 0.3); */
            box-shadow: 0px 0px 9px 4px #4f41aa;
        }
        
        .company-name {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            font-weight: 500;
            margin-bottom: 20px;
            
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease-out 0.3s forwards;
            letter-spacing: 0.02em;
        }
        
        .company-tagline {
            font-size: 1.2rem;
            font-weight: 300;
            color: #aaaaaa;
            margin-bottom: 50px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 1s ease-out 0.6s forwards;
        }
        
        /* Social Links */
        .social-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
        }
        
        .social-link {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: #ffffff;
            font-size: 1.5rem;
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            opacity: 0;
            transform: translateY(40px) scale(0.8);
            position: relative;
            overflow: hidden;
        }
        
        .social-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, #00f361, transparent);
            transition: left 0.6s ease;
        }

        .company-section .social-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, #4f41aa, transparent);
            transition: left 0.6s ease;
        }
        
        .social-link:hover::before {
            left: 100%;
        }
        
         .social-link:hover {
            transform: translateY(-10px) scale(1.1);
            background: rgba(255, 255, 255, 0.1);
            border-color: #00f361;
            box-shadow: 0 15px 30px #00f361;
        }

       .company-section .social-link:hover {
            transform: translateY(-10px) scale(1.1);
            background: rgba(255, 255, 255, 0.1);
            border-color: #4f41aa;
            box-shadow: 0 15px 30px #4f41aa;
        }
        
        .social-link:nth-child(1) { animation: socialReveal 0.8s ease-out 1s forwards; }
        .social-link:nth-child(2) { animation: socialReveal 0.8s ease-out 1.2s forwards; }
        .social-link:nth-child(3) { animation: socialReveal 0.8s ease-out 1.4s forwards; }
        .social-link:nth-child(4) { animation: socialReveal 0.8s ease-out 1.6s forwards; }
        .social-link:nth-child(5) { animation: socialReveal 0.8s ease-out 1.8s forwards; }
        
        /* Background Elements */
        .bg-decoration {
            position: absolute;
            width: 2px;
            height: 100px;
            background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent);
            top: 50%;
            left: 10%;
            transform: translateY(-50%);
            animation: decorationFloat 4s ease-in-out infinite;
        }
        
        .bg-decoration:nth-child(2) {
            right: 10%;
            left: auto;
            animation-delay: -2s;
        }
        
        /* Scroll Indicators */
        .scroll-indicator {
            position: fixed;
            top: 50%;
            right: 30px;
            transform: translateY(-50%);
            z-index: 1000;
        }
        
        .scroll-dot {
            width: 8px;
            height: 8px;
            border: 1px solid #00f361;
            color: #00f361;
            border-radius: 50%;
            margin: 15px 0;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .scroll-dot.active {
            background: #ffffff;
            transform: scale(1.3);
        }
        
        /* Animations */
        @keyframes profileReveal {
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes glowPulse {
            0%, 100% { opacity: 0; }
            50% { opacity: 1; }
        }
        
        @keyframes logoReveal {
            to {
                opacity: 1;
                transform: scale(1) rotateY(0deg);
            }
        }
        
        @keyframes socialReveal {
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        @keyframes shimmerSlow {
            0% { left: -100%; }
            100% { left: 100%; }
        }
        
        @keyframes decorationFloat {
            0%, 100% { transform: translateY(-50%) translateX(0); }
            50% { transform: translateY(-50%) translateX(20px); }
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .content-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .section-title {
                position: static;
                text-align: center;
                margin-bottom: 40px;
            }
            
            .social-links {
                gap: 20px;
            }
            
            .social-link {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
            
            .profile-image-container {
                width: 250px;
                height: 250px;
            }
            
            .company-logo {
                width: 100px;
                height: 100px;
                font-size: 2.5rem;
            }
            
            .scroll-indicator {
                display: none;
            }
        }
        
        /* Scroll-triggered visibility */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
        }
        
        .scroll-reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .textgreen{
          color: #00f361 !important;
        }

        .technologies-section {
            min-height: 100vh;
            padding: 100px 0;
            position: relative;
            background: radial-gradient(ellipse at center, rgba(79, 172, 254, 0.1) 0%, transparent 70%);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .section-header.animate {
            opacity: 1;
            transform: translateY(0);
        }
        .section-subtitle {
            font-size: 1.2rem;
            color: #a0a0a0;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .tech-category {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.491);
            border-radius: 20px;
            padding: 40px 30px;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(50px) scale(0.95);
            transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .tech-category.animate {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .tech-category::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            /* background: linear-gradient(90deg, var(--category-color), transparent); */
            transform: scaleX(0);
            transition: transform 0.6s ease;
            transform-origin: left;
        }

        .tech-category:hover::before {
            transform: scaleX(1);
        }

        .tech-category:hover {
            transition: .7s;
            transform: translateY(-10px) scale(1.02);
            border-color: #00f361;
            box-shadow: 0 20px 40px #00f361;
        }

        .frontend {
            --category-color: #61dafb;
        }

        .backend {
            --category-color: #68a063;
        }

        .database {
            --category-color: #f29111;
        }

        .tools {
            --category-color: #ff6b6b;
        }

        .category-icon {
            width: 60px;
            height: 60px;
            border-radius: 15px;
            background: linear-gradient(135deg, var(--category-color), rgba(255, 255, 255, 0.1));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 20px;
            position: relative;
            overflow: hidden;
        }

        .category-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--category-color);
            margin-bottom: 15px;
        }

        .tech-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .tech-item {
            background: rgba(0, 0, 0, 0.591);
            color: white;
            padding: 8px 16px;
            border-radius: 25px;
            font-size: 0.9rem;
            border: 1px solid rgba(255, 255, 255, 0.445);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .tech-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, #00f361 , transparent);
            transition: left 0.6s ease;
        }

        .tech-item:hover {
            /* background: var(--category-color); */
            color: #00f361;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px #00f361;
        }

        .tech-item:hover::before {
            left: 100%;
        }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
            color: #00f361;
        }

        .floating-element {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(79, 172, 254, 0.6);
            border-radius: 50%;
            animation: float 20s infinite linear;
        }

        @keyframes float {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-10vh) rotate(360deg);
                opacity: 0;
            }
        }

        .floating-element:nth-child(1) { left: 10%; animation-delay: 0s; }
        .floating-element:nth-child(2) { left: 20%; animation-delay: 2s; }
        .floating-element:nth-child(3) { left: 30%; animation-delay: 4s; }
        .floating-element:nth-child(4) { left: 40%; animation-delay: 6s; }
        .floating-element:nth-child(5) { left: 50%; animation-delay: 8s; }
        .floating-element:nth-child(6) { left: 60%; animation-delay: 10s; }
        .floating-element:nth-child(7) { left: 70%; animation-delay: 12s; }
        .floating-element:nth-child(8) { left: 80%; animation-delay: 14s; }
        .floating-element:nth-child(9) { left: 90%; animation-delay: 16s; }

        .progress-indicator {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            background: linear-gradient(90deg, #00f361, #00f2fe);
            z-index: 1000;
            transform-origin: left;
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        @media (max-width: 768px) {
            .tech-grid {
                grid-template-columns: 1fr;
            }
            
            .tech-category {
                padding: 30px 20px;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
        }

        /* .typewriter {
            overflow: hidden;
            border-right: 2px solid #00f361;
            white-space: nowrap;
            animation: typewriter 3s steps(40, end), blink 0.75s step-end infinite;
        } */

        @keyframes typewriter {
            from { width: 0; }
            to { width: 100%; }
        }

        @keyframes blink {
            from, to { border-color: transparent; }
            50% { border-color: #00f361; }
        }
        .typewriter{
          color: #00f361 !important;
        }


         .footer-zone {
            position: relative;
            background: linear-gradient(135deg, #0d1117 0%, #161b22 50%, #21262d 100%);
            overflow: hidden;
            min-height: 80vh;
        }

        .geometric-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .shape-element {
            position: absolute;
            opacity: 0.1;
            animation: shape-drift 15s ease-in-out infinite;
        }

        .shape-element:nth-child(1) {
            width: 100px;
            height: 100px;
            background: linear-gradient(45deg, #00d4aa, #00a8ff);
            border-radius: 20px;
            top: 20%;
            left: 15%;
            animation-delay: 0s;
            transform: rotate(45deg);
        }

        .shape-element:nth-child(2) {
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, #ff6b9d, #c44569);
            border-radius: 50%;
            top: 60%;
            right: 20%;
            animation-delay: 5s;
        }

        .shape-element:nth-child(3) {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #ffa726, #ff7043);
            top: 30%;
            right: 35%;
            animation-delay: 10s;
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
        }

        .shape-element:nth-child(4) {
            width: 120px;
            height: 120px;
            background: linear-gradient(45deg, #667eea, #764ba2);
            border-radius: 30px;
            top: 70%;
            left: 25%;
            animation-delay: 7s;
            transform: rotate(-30deg);
        }

        @keyframes shape-drift {
            0%, 100% { 
                transform: translateY(0px) rotate(0deg);
                opacity: 0.1;
            }
            50% { 
                transform: translateY(-40px) rotate(180deg);
                opacity: 0.2;
            }
        }

        .main-footer {
            position: relative;
            padding: 100px 0 50px;
            z-index: 2;
        }

        .footer-content-wrapper {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 30px;
            text-align: center;
        }

        .hero-message-area {
            margin-bottom: 80px;
            opacity: 0;
            transform: translateY(60px);
            transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .hero-message-area.reveal-content {
            opacity: 1;
            transform: translateY(0);
        }

        .primary-title {
            font-size: clamp(2.8rem, 6vw, 5rem);
            font-weight: 800;
            margin-bottom: 25px;
            position: relative;
            overflow: hidden;
        }

        .title-text {
            background: linear-gradient(135deg, #00d4aa 0%, #00a8ff 25%, #ff6b9d 50%, #ffa726 75%, #667eea 100%);
            background-size: 400% 100%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: rainbow-flow 8s ease-in-out infinite;
            display: inline-block;
        }

        @keyframes rainbow-flow {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .subtitle-message {
            font-size: 1.4rem;
            color: #a8b2d1;
            line-height: 1.7;
            max-width: 700px;
            margin: 0 auto 40px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
            transition-delay: 0.3s;
        }

        .subtitle-message.fade-up {
            opacity: 1;
            transform: translateY(0);
        }

        .contact-button-area {
            margin-bottom: 60px;
            opacity: 0;
            transform: scale(0.9);
            transition: all 0.6s ease;
            transition-delay: 0.6s;
        }

        .contact-button-area.scale-in {
            opacity: 1;
            transform: scale(1);
        }

        .primary-cta-button {
            display: inline-block;
            padding: 18px 40px;
            background: linear-gradient(135deg, #00d4aa, #00a8ff);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 8px 32px rgba(0, 212, 170, 0.3);
        }

        .primary-cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.6s ease;
        }

        .primary-cta-button:hover::before {
            left: 100%;
        }

        .primary-cta-button:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 40px rgba(0, 212, 170, 0.5);
        }

        .social-media-hub {
            margin-bottom: 60px;
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease;
            transition-delay: 0.9s;
        }

        .social-media-hub.slide-up-reveal {
            opacity: 1;
            transform: translateY(0);
        }

        .social-heading {
            font-size: 1.6rem;
            font-weight: 600;
            color: #f0f6fc;
            margin-bottom: 35px;
            position: relative;
            display: inline-block;
        }

        .social-heading::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #00d4aa, #00a8ff);
            border-radius: 2px;
            transition: width 0.8s ease;
        }

        .social-media-hub.slide-up-reveal .social-heading::after {
            width: 100%;
        }

        .social-platforms-grid {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }

        .platform-link {
            width: 70px;
            height: 70px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #a8b2d1;
            text-decoration: none;
            font-size: 1.8rem;
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px) scale(0.8);
        }

        .platform-link.animate-in {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .platform-link::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            transition: all 0.6s ease;
            transform: translate(-50%, -50%);
        }

        .platform-link:hover::before {
            width: 90px;
            height: 90px;
        }

        .platform-link:nth-child(1)::before { background: linear-gradient(135deg, #0077b5, #00a0dc); }
        .platform-link:nth-child(2)::before { background: linear-gradient(135deg, #333, #24292e); }
        .platform-link:nth-child(4)::before { background: linear-gradient(135deg, #080b63, #0d5fd9); }
        .platform-link:nth-child(3)::before { background: linear-gradient(135deg, #4e40e4, #d62976); }
        .platform-link:nth-child(5)::before { background: linear-gradient(135deg, #ae4803, #41a905); }
        .platform-link:nth-child(6)::before { background: linear-gradient(135deg, #03791a, #1bcc00); }

        .platform-link:hover {
            transform: translateY(-8px) scale(1.1);
            border-color: rgba(255, 255, 255, 0.3);
            color: #ffffff;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
        }

        .platform-link span {
            position: relative;
            z-index: 2;
            transition: transform 0.3s ease;
        }

        .platform-link:hover span {
            transform: scale(1.1);
        }

        .footer-credits {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 40px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
            transition-delay: 1.2s;
        }

        .footer-credits.final-fade-in {
            opacity: 1;
            transform: translateY(0);
        }

        .credits-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .copyright-notice {
            color: #6e7681;
            font-size: 0.95rem;
        }

        .scroll-top-link {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 30px;
            padding: 12px 25px;
            color: #a8b2d1;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .scroll-top-link:hover {
            background: rgba(255, 255, 255, 0.15);
            color: #ffffff;
            transform: translateY(-2px);
        }

        .pulse-animation {
            animation: gentle-pulse 3s ease-in-out infinite;
        }

        @keyframes gentle-pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.02); }
        }

        @media (max-width: 768px) {
            .main-footer {
                padding: 80px 0 40px;
            }

            .footer-content-wrapper {
                padding: 0 20px;
            }

            .primary-title {
                font-size: 2.5rem;
            }

            .subtitle-message {
                font-size: 1.2rem;
            }

            .social-platforms-grid {
                gap: 20px;
            }

            .platform-link {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            .credits-content {
                flex-direction: column;
                text-align: center;
            }
        }

@media (max-width: 480px) {
            .social-platforms-grid {
                grid-template-columns: repeat(4, 1fr);
                display: grid;
                max-width: 300px;
                margin: 0 auto;
            }
        }

@media (max-width: 1024px) {
    .section1 {
        display: none !important;
    }

    /* Adjust container padding */
    .container {
        padding: 0 15px;
    }

    /* Adjust hero section */
    .hero-section {
        padding: 15px 0;
    }

    /* Adjust hero title and subtitle */
    .hero-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .hero-subtitle {
        font-size: clamp(1rem, 3vw, 1.2rem);
    }

    /* Adjust content grid to single column */
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Adjust company logo size */
    .company-logo {
        width: 80px;
        height: 80px;
    }

    /* Adjust company name font size */
    .company-name {
        font-size: 2rem;
    }

    /* Adjust social links size */
    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    /* Further reduce hero title and subtitle */
    .hero-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 4vw, 1rem);
    }

    /* Adjust profile image container */
    .profile-image-container {
        width: 200px;
        height: 200px;
        margin-bottom: 40px;
    }

    /* Adjust tech grid to single column */
    .tech-grid {
        grid-template-columns: 1fr;
    }

    /* Adjust tech category padding */
    .tech-category {
        padding: 25px 15px;
    }

    /* Adjust footer padding */
    .main-footer {
        padding: 60px 0 30px;
    }
}

@media (max-width: 480px) {
    /* Adjust hero title and subtitle for small screens */
    .hero-title {
        font-size: clamp(1.2rem, 7vw, 2rem);
    }

    .hero-subtitle {
        font-size: clamp(0.8rem, 5vw, 0.9rem);
    }

    /* Adjust profile image container */
    .profile-image-container {
        width: 150px;
        height: 150px;
        margin-bottom: 30px;
    }

    /* Adjust social platforms grid */
    .social-platforms-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 250px;
        margin: 0 auto;
    }

    /* Adjust footer credits text size */
    .copyright-notice {
        font-size: 0.8rem;
    }

    /* Adjust contact button padding */
    .primary-cta-button {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 1024px) {
    footer {
        padding: 12px !important;
    }
}

        .wave-animation {
            animation: wave-motion 2s ease-in-out infinite;
        }

        @keyframes wave-motion {
            0%, 100% { transform: rotate(0deg); }
            25% { transform: rotate(20deg); }
            75% { transform: rotate(-10deg); }
        }