* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    background: #0a0a0a;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
}

/* 3D Particle Background */
#particle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Header */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 100px;
    position: fixed;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 100%;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

header img {
    height: 55px;
    cursor: pointer;
    transition: transform 0.3s;
}

header img:hover {
    transform: scale(1.05);
}

.nav-link {
    list-style: none;
    display: flex;
    gap: 10px;
}

.nav-link li {
    display: inline-block;
}

.nav-link li a {
    color: #ccc;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #536956;
    transition: width 0.3s ease;
}

.nav-link li a:hover {
    color: #fff;
}

.nav-link li a:hover::after {
    width: 60%;
}

/* Hero Section */
.hero-section {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    position: relative;
    overflow: hidden;
}

/* ===== Floating Geometric Shapes ===== */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    opacity: 0.15;
}

/* Hexagons */
.hexagon {
    width: 60px;
    height: 60px;
    background: #536956;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: floatHex 12s ease-in-out infinite;
}

.hex-1 {
    top: 15%;
    left: 8%;
    width: 50px;
    height: 50px;
    animation-delay: 0s;
}

.hex-2 {
    bottom: 20%;
    right: 12%;
    width: 70px;
    height: 70px;
    animation-delay: -4s;
    opacity: 0.1;
}

@keyframes floatHex {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    33% { transform: translateY(-30px) rotate(120deg) scale(1.1); }
    66% { transform: translateY(15px) rotate(240deg) scale(0.9); }
}

/* Glowing Orbs */
.orb {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(83, 105, 86, 0.3), transparent 70%);
    box-shadow: 0 0 60px rgba(83, 105, 86, 0.2);
    animation: floatOrb 15s ease-in-out infinite;
}

.orb-1 {
    top: 20%;
    right: 15%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
}

.orb-2 {
    bottom: 25%;
    left: 10%;
    width: 100px;
    height: 100px;
    animation-delay: -5s;
    background: radial-gradient(circle at 30% 30%, rgba(122, 176, 126, 0.25), transparent 70%);
}

.orb-3 {
    top: 60%;
    right: 30%;
    width: 80px;
    height: 80px;
    animation-delay: -10s;
    background: radial-gradient(circle at 30% 30%, rgba(83, 105, 86, 0.2), transparent 70%);
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.9); }
    75% { transform: translate(15px, 25px) scale(1.05); }
}

/* Diamond */
.diamond {
    width: 40px;
    height: 40px;
    background: #7ab07e;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation: floatDia 8s ease-in-out infinite;
}

.dia-1 {
    top: 45%;
    left: 5%;
    width: 35px;
    height: 35px;
    animation-delay: -2s;
    opacity: 0.12;
}

@keyframes floatDia {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(180deg); }
}

/* ===== Scanline Overlay ===== */
.scanline-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(83, 105, 86, 0.015) 2px,
        rgba(83, 105, 86, 0.015) 4px
    );
    animation: scanlineMove 8s linear infinite;
}

@keyframes scanlineMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(4px); }
}

.hero-content {
    text-align: center;
    transform-style: preserve-3d;
    perspective: 1000px;
    z-index: 2;
    position: relative;
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(83, 105, 86, 0.15);
    border: 1px solid rgba(83, 105, 86, 0.3);
    border-radius: 50px;
    font-size: 13px;
    color: #7ab07e;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 10px rgba(83, 105, 86, 0.2); }
    50% { box-shadow: 0 0 25px rgba(83, 105, 86, 0.4); }
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 700;
    color: #fff;
    text-transform: capitalize;
    text-shadow: 0 0 30px rgba(83, 105, 86, 0.3);
    animation: heroTextGlow 4s ease-in-out infinite alternate;
}

@keyframes heroTextGlow {
    0% { filter: drop-shadow(0 0 15px rgba(83, 105, 86, 0.2)); }
    100% { filter: drop-shadow(0 0 40px rgba(83, 105, 86, 0.5)); }
}

.hero-content h1 span {
    color: #536956;
    font-size: 72px;
    background: linear-gradient(135deg, #7ab07e, #536956, #a8d5ab);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: #ccc;
    margin-top: 10px;
    letter-spacing: 2px;
    min-height: 30px;
}

/* Typewriter Cursor */
.typewriter-cursor {
    display: inline-block;
    color: #536956;
    font-weight: 100;
    font-size: 24px;
    animation: blink 0.8s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Hero Tagline */
.hero-tagline {
    font-size: 15px;
    color: #999;
    margin-top: 15px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-tagline strong {
    color: #7ab07e;
}

/* CTA Group */
.hero-cta-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
    flex-wrap: wrap;
}

.btn {
    color: #fff;
    font-size: 16px;
    padding: 14px 30px;
    background: #536956;
    border: none;
    border-radius: 30px;
    font-weight: 500;
    text-transform: capitalize;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    box-shadow: 0 0 25px rgba(83, 105, 86, 0.6);
    transform: translateY(-3px);
}

/* Neon Button */
.neon-btn {
    background: linear-gradient(135deg, #536956, #3a4d3d);
    border: 1px solid rgba(83, 105, 86, 0.5);
    position: relative;
    overflow: hidden;
}

.neon-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #536956, #7ab07e, #536956, #7ab07e);
    background-size: 400% 400%;
    border-radius: 32px;
    z-index: -1;
    animation: neonBorder 3s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.neon-btn:hover::before {
    opacity: 1;
}

@keyframes neonBorder {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.neon-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 30px rgba(83, 105, 86, 0.5);
}

/* Outline Button */
.hero-outline-btn {
    background: transparent;
    border: 1px solid rgba(83, 105, 86, 0.4);
    color: #ccc;
}

.hero-outline-btn:hover {
    background: rgba(83, 105, 86, 0.15);
    border-color: #536956;
    color: #fff;
}

/* About Section */
.section1 {
    width: 100%;
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

/* Floating decorative element */
.about-float-element {
    position: absolute;
    right: 8%;
    top: 15%;
    width: 80px;
    height: 80px;
    background: rgba(83, 105, 86, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #536956;
    animation: aboutFloat 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
    border: 1px solid rgba(83, 105, 86, 0.15);
}

@keyframes aboutFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.main {
    width: 1130px;
    max-width: 95%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.about-img-wrapper {
    perspective: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Glowing Image Frame */
.glowing-image-frame {
    position: relative;
    display: inline-block;
    border-radius: 20px;
    padding: 4px;
    background: linear-gradient(135deg, #536956, #7ab07e, #536956);
    background-size: 300% 300%;
    animation: frameGlow 4s ease-in-out infinite;
}

@keyframes frameGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.section1 img {
    height: auto;
    width: 400px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    display: block;
}

/* About Stats Rings */
.about-stats-rings {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 10px;
}

.ring-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    position: relative;
}

.progress-ring {
    transform: rotate(-90deg);
}

.ring-bg {
    stroke: rgba(255, 255, 255, 0.08);
}

.ring-fill {
    stroke: #536956;
    stroke-linecap: round;
    transition: stroke-dashoffset 1.5s ease;
    filter: drop-shadow(0 0 5px rgba(83, 105, 86, 0.4));
}

.ring-stat-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -10px;
}

.ring-stat-num {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #7ab07e, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ring-stat-label {
    font-size: 10px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text {
    width: 550px;
}

/* About Badge */
.about-section-badge {
    display: inline-block;
    padding: 5px 16px;
    background: rgba(83, 105, 86, 0.12);
    border: 1px solid rgba(83, 105, 86, 0.25);
    border-radius: 50px;
    font-size: 12px;
    color: #7ab07e;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.about-text h1 {
    color: #fff;
    font-size: 36px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about-text h1 span {
    color: #536956;
    font-size: 36px;
    background: linear-gradient(135deg, #7ab07e, #536956);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    font-size: 15px;
    letter-spacing: 1px;
    line-height: 1.8;
    color: #bbb;
}

.about-text p strong {
    color: #7ab07e;
}

/* Skill Tags */
.about-skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.skill-tag {
    padding: 6px 16px;
    background: rgba(83, 105, 86, 0.1);
    border: 1px solid rgba(83, 105, 86, 0.2);
    border-radius: 50px;
    font-size: 12px;
    color: #aaa;
    transition: all 0.3s ease;
    cursor: default;
}

.skill-tag:hover {
    background: rgba(83, 105, 86, 0.25);
    border-color: #536956;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(83, 105, 86, 0.2);
}

/* Services Section */
.Services-section {
    padding: 100px 80px;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
}

.Services-section h2 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 20px;
}

.Services-section h2 span {
    color: #536956;
    font-size: 42px;
}

.section-para {
    font-size: 16px;
    line-height: 1.8;
    color: #999;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.Services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.card-3d {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.Services-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    max-width: 320px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: default;
}

.Services-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(83, 105, 86, 0.2);
    border-color: #536956;
}

.card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: #536956;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    transition: all 0.3s;
}

.Services-card:hover .card-icon {
    transform: rotateY(180deg);
    background: #fff;
    color: #536956;
}

.Services-card h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 15px;
}

.Services-card p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.6;
}

/* ===== FUTURISTIC 3D SKILLS SECTION ===== */
.section2 {
    width: 100%;
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
}

/* Holographic Shimmer Sweep */
.holographic-sweep {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(83, 105, 86, 0.03) 50%,
        transparent 70%
    );
    animation: holographicSweep 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes holographicSweep {
    0% { transform: translateX(-30%) rotate(0deg); }
    50% { transform: translateX(30%) rotate(5deg); }
    100% { transform: translateX(-30%) rotate(0deg); }
}

.main2 {
    width: 1130px;
    max-width: 95%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.my-style {
    width: 50%;
    position: relative;
}

/* Orbital Ring */
.orbital-ring {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(83, 105, 86, 0.15);
    border-radius: 50%;
    top: -60px;
    left: -80px;
    pointer-events: none;
}

.left-ring {
    animation: spinRing 20s linear infinite;
}

@keyframes spinRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.orbital-ring::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: #536956;
    border-radius: 50%;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(83, 105, 86, 0.6);
}

/* Futuristic Heading */
.futuristic-heading {
    color: #fff;
    font-size: 34px;
    margin-bottom: 30px;
    line-height: 1.4;
    background: linear-gradient(135deg, #fff 0%, #536956 50%, #7ab07e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    position: relative;
    animation: headingGlow 3s ease-in-out infinite alternate;
}

@keyframes headingGlow {
    0% { filter: drop-shadow(0 0 10px rgba(83, 105, 86, 0.3)); }
    100% { filter: drop-shadow(0 0 25px rgba(83, 105, 86, 0.6)); }
}

.futuristic-heading span {
    background: linear-gradient(135deg, #7ab07e, #536956);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Futuristic Paragraph */
.futuristic-para {
    color: #bbb;
    line-height: 1.9;
    font-size: 15px;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid #536956;
}

.futuristic-para strong {
    color: #7ab07e;
    -webkit-text-fill-color: #7ab07e;
}

/* Stats Counters */
.stats-container {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(83, 105, 86, 0.2);
    border-radius: 16px;
    padding: 20px 25px;
    min-width: 120px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(83, 105, 86, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: #536956;
    box-shadow: 0 10px 30px rgba(83, 105, 86, 0.2);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    display: inline-block;
    background: linear-gradient(135deg, #7ab07e, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-plus {
    font-size: 28px;
    color: #536956;
    -webkit-text-fill-color: #536956;
    margin-left: 2px;
}

.stat-label {
    display: block;
    font-size: 13px;
    color: #999;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== 3D SKILL CUBE ===== */
.skills-cube-wrapper {
    width: 320px;
    height: 320px;
    perspective: 1200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skill-cube {
    width: 200px;
    height: 200px;
    position: relative;
    transform-style: preserve-3d;
    animation: cubeRotate 16s ease-in-out infinite;
    cursor: pointer;
}

.skill-cube.paused {
    animation-play-state: paused;
}

@keyframes cubeRotate {
    0% { transform: rotateX(-10deg) rotateY(0deg); }
    16% { transform: rotateX(-10deg) rotateY(-60deg); }
    33% { transform: rotateX(-10deg) rotateY(-120deg); }
    50% { transform: rotateX(-10deg) rotateY(-180deg); }
    66% { transform: rotateX(-10deg) rotateY(-240deg); }
    83% { transform: rotateX(-10deg) rotateY(-300deg); }
    100% { transform: rotateX(-10deg) rotateY(-360deg); }
}

.cube-face {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(20, 25, 20, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(83, 105, 86, 0.3);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    backface-visibility: hidden;
    box-shadow: 
        0 0 30px rgba(83, 105, 86, 0.1),
        inset 0 0 30px rgba(83, 105, 86, 0.05);
    transition: border-color 0.3s ease;
}

.cube-face:hover {
    border-color: #536956;
    box-shadow: 
        0 0 40px rgba(83, 105, 86, 0.2),
        inset 0 0 40px rgba(83, 105, 86, 0.1);
}

.face-front  { transform: rotateY(0deg) translateZ(100px); }
.face-back   { transform: rotateY(180deg) translateZ(100px); }
.face-right  { transform: rotateY(90deg) translateZ(100px); }
.face-left   { transform: rotateY(-90deg) translateZ(100px); }
.face-top    { transform: rotateX(90deg) translateZ(100px); }
.face-bottom { transform: rotateX(-90deg) translateZ(100px); }

.cube-face-icon {
    font-size: 32px;
    color: #536956;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.cube-face:hover .cube-face-icon {
    transform: scale(1.2);
    color: #7ab07e;
    text-shadow: 0 0 20px rgba(83, 105, 86, 0.5);
}

.cube-face h3 {
    font-size: 14px;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.cube-skill-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}

.cube-skill-fill {
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(90deg, #536956, #7ab07e, #a8d5ab);
    background-size: 200% 100%;
    animation: shimmerBar 2s ease-in-out infinite;
    transition: width 1s ease;
}

@keyframes shimmerBar {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.cube-percent {
    font-size: 13px;
    font-weight: 700;
    color: #7ab07e;
    text-shadow: 0 0 10px rgba(83, 105, 86, 0.4);
}

/* Orbital Particles around cube */
.orbit-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #536956;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(83, 105, 86, 0.6);
    pointer-events: none;
}

.orbit-particle.p1 {
    width: 10px;
    height: 10px;
    animation: orbitP1 8s linear infinite;
    opacity: 0.8;
}

.orbit-particle.p2 {
    width: 6px;
    height: 6px;
    animation: orbitP2 12s linear infinite reverse;
    opacity: 0.6;
    background: #7ab07e;
}

.orbit-particle.p3 {
    width: 5px;
    height: 5px;
    animation: orbitP1 15s linear infinite;
    opacity: 0.5;
    background: #a8d5ab;
}

@keyframes orbitP1 {
    0% { transform: rotate(0deg) translateX(140px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(140px) rotate(-360deg); }
}

@keyframes orbitP2 {
    0% { transform: rotate(0deg) translateX(160px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(160px) rotate(-360deg); }
}

/* Testimonials - Slider */
.testimonials-section {
    padding: 100px 80px;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
}

.testimonials-section h2 {
    font-size: 36px;
    margin-bottom: 60px;
    color: #fff;
}

.testimonials-section h2 span {
    color: #536956;
    font-size: 36px;
}

/* Slider Wrapper */
.testimonial-slider-wrapper {
    position: relative;
    max-width: 550px;
    margin: 0 auto;
    padding: 0 50px;
}

/* Slider Track */
.testimonial-slider {
    position: relative;
    overflow: hidden;
    min-height: 320px;
}

/* Individual Slide */
.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(60px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    visibility: hidden;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: all;
    visibility: visible;
}

/* Slide exit to left */
.testimonial-slide.exit-left {
    opacity: 0;
    transform: translateX(-60px) scale(0.95);
}

/* Slide enter from right */
.testimonial-slide.enter-right {
    opacity: 0;
    transform: translateX(60px) scale(0.95);
}

/* Testimonial Card */
.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    max-width: 100%;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: #536956;
    box-shadow: 0 15px 40px rgba(83, 105, 86, 0.15);
}

.quote-icon {
    font-size: 32px;
    color: #536956;
    margin-bottom: 20px;
    opacity: 0.6;
}

.testimonial-card p {
    font-style: italic;
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 15px;
}

.testimonial-card h4 {
    font-weight: bold;
    color: #fff;
    margin-bottom: 12px;
    font-size: 16px;
}

.stars {
    color: #ffc107;
    font-size: 15px;
    letter-spacing: 3px;
}

/* Navigation Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 35px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: #536956;
    border-color: #536956;
    box-shadow: 0 0 12px rgba(83, 105, 86, 0.4);
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(83, 105, 86, 0.6);
    transform: scale(1.1);
}

/* Arrow Navigation */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(83, 105, 86, 0.8);
    border: 2px solid rgba(83, 105, 86, 0.3);
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.slider-arrow:hover {
    background: #536956;
    box-shadow: 0 0 20px rgba(83, 105, 86, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.prev-arrow {
    left: 0;
}

.next-arrow {
    right: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-slider-wrapper {
        padding: 0 35px;
    }
    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    .testimonial-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .testimonial-slider-wrapper {
        padding: 0 25px;
    }
    .slider-arrow {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}

/* Contact */
.Contact {
    padding: 80px;
    background: rgba(255, 255, 255, 0.03);
}

.container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(34, 34, 34, 0.6);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.container h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #fff;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    color: #fff;
}

.contact-form {
    text-align: left;
}

.contact-form h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #fff;
}

.form-group {
    margin-bottom: 20px;
}

input, textarea {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 14px;
    transition: all 0.3s;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #536956;
    box-shadow: 0 0 15px rgba(83, 105, 86, 0.3);
}

input::placeholder, textarea::placeholder {
    color: #888;
}

textarea {
    height: 120px;
    resize: vertical;
}

.contact-form button[type="submit"] {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    padding: 14px 30px;
    background: #536956;
    border: none;
    border-radius: 30px;
    font-weight: 500;
    text-transform: capitalize;
    transition: all 0.3s;
    cursor: pointer;
}

.contact-form button[type="submit"]:hover {
    box-shadow: 0 0 25px rgba(83, 105, 86, 0.6);
    transform: translateY(-3px);
}

.form-success {
    margin-top: 20px;
    padding: 15px;
    background: rgba(83, 105, 86, 0.2);
    border: 1px solid #536956;
    border-radius: 10px;
    color: #7ab07e;
    text-align: center;
}

.contact-info {
    text-align: left;
    padding-left: 40px;
}

.contact-info h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.contact-tagline {
    background: rgba(83, 105, 86, 0.15);
    padding: 15px;
    border-radius: 12px;
    border-left: 3px solid #536956;
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.7;
    color: #ddd;
}

.contact-tagline strong {
    color: #7ab07e;
}

.contact-info p {
    margin-bottom: 15px;
    color: #ccc;
}

.contact-info i {
    color: #536956;
    margin-right: 10px;
    width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: #536956;
    color: #fff;
    transform: translateY(-3px);
}

/* Footer */
.site-footer {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 60px 20px 30px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 30px;
}

.footer-about, .footer-links, .footer-social {
    flex: 1 1 250px;
}

.footer-about h2 {
    font-size: 24px;
    color: #fff;
}

.footer-about p {
    color: #aaa;
    margin-top: 10px;
    font-size: 14px;
}

.footer-links h3, .footer-social h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #536956;
}

.social-icons a {
    color: #aaa;
    font-size: 20px;
    margin-right: 15px;
    transition: all 0.3s;
}

.social-icons a:hover {
    color: #536956;
    transform: translateY(-3px);
    display: inline-block;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: #666;
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #536956;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(83, 105, 86, 0.3);
}

.scroll-top-btn.show {
    display: flex;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(83, 105, 86, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 10px 20px;
    }
    
    .nav-link {
        gap: 5px;
    }
    
    .nav-link li a {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .hero-content h1,
    .hero-content h1 span {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .main, .main2 {
        flex-direction: column;
        text-align: center;
    }
    
    .about-text, .my-style {
        width: 100%;
    }

    /* Futuristic Skills Responsive */
    .futuristic-heading {
        font-size: 26px;
    }
    
    .futuristic-para {
        padding-left: 15px;
        text-align: left;
    }

    .stats-container {
        justify-content: center;
    }

    .stat-item {
        min-width: 100px;
        padding: 15px 18px;
    }
    
    .stat-number {
        font-size: 28px;
    }

    .skills-cube-wrapper {
        width: 260px;
        height: 260px;
        margin-top: 20px;
    }
    
    .skill-cube {
        width: 150px;
        height: 150px;
    }
    
    .cube-face {
        width: 150px;
        height: 150px;
        padding: 12px;
    }
    
    .face-front  { transform: rotateY(0deg) translateZ(75px); }
    .face-back   { transform: rotateY(180deg) translateZ(75px); }
    .face-right  { transform: rotateY(90deg) translateZ(75px); }
    .face-left   { transform: rotateY(-90deg) translateZ(75px); }
    .face-top    { transform: rotateX(90deg) translateZ(75px); }
    .face-bottom { transform: rotateX(-90deg) translateZ(75px); }
    
    .cube-face-icon { font-size: 24px; }
    .cube-face h3 { font-size: 11px; }
    .cube-skill-bar { height: 6px; }
    .cube-percent { font-size: 11px; }
    
    .orbital-ring { display: none; }
    .orbit-particle { display: none; }

    .section1 img {
        width: 300px;
    }

    .glowing-image-frame {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .about-float-element {
        display: none;
    }
    
    .about-stats-rings {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .about-skill-tags {
        justify-content: center;
    }
    
    .about-section-badge {
        text-align: center;
        display: block;
        width: fit-content;
        margin: 0 auto 15px;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 6px 14px;
    }

    .hero-tagline {
        font-size: 13px;
        padding: 0 15px;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    .floating-shapes {
        opacity: 0.4;
    }
    
    .Services-section {
        padding: 60px 20px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        padding-left: 0;
    }
    
    .testimonials-section {
        padding: 60px 20px;
    }
    
    .Contact {
        padding: 40px 20px;
    }
}
