* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: 'Poppins', sans-serif;
    background: radial-gradient(circle at 10% 20%, #0f172a, #020617);
    color: #fff;
    line-height: 1.5;
}

.container {
    width: 88%;
    max-width: 1280px;
    margin: 0 auto;
}

/* ========== HEADER ========== */
header {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 20px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 28px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.logo {
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #ff9a2a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

nav {
    display: flex;
    gap: 28px;
}

nav a {
    text-decoration: none;
    color: #cbd5f5;
    font-weight: 500;
    font-size: 15px;
    transition: 0.2s;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #ff7a00;
    transition: 0.3s;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

nav a:hover,
nav a.active {
    color: #fff;
}

.talk-btn {
    background: linear-gradient(135deg, #ff7a00, #ff9a2a);
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(255, 122, 0, 0.3);
    transition: 0.3s;
}

.talk-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 122, 0, 0.5);
}

/* ========== HERO ========== */
.hero {
    padding: 130px 0 50px;
    position: relative;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.left {
    flex: 1;
    min-width: 280px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 122, 0, 0.12);
    border: 1px solid rgba(255, 122, 0, 0.3);
    padding: 6px 16px;
    border-radius: 40px;
    color: #ff7a00;
    font-size: 14px;
    margin-bottom: 24px;
}

.dott {
    width: 8px;
    height: 8px;
    background: #ff7a00;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

h1 {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.2;
}

h1 span {
    color: #ff7a00;
}

.typing-glow {
    font-size: 28px;
    margin: 18px 0;
    color: #cbd5e6;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.cursor {
    color: #ff7a00;
    animation: blink 1s infinite;
    font-weight: 600;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.hero p {
    color: #94a3b8;
    margin: 20px 0 30px;
    max-width: 550px;
}

.buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

button {
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: inherit;
}

.primary {
    background: linear-gradient(135deg, #ff7a00, #ff9a2a);
    color: #fff;
    box-shadow: 0 5px 20px rgba(255, 122, 0, 0.4);
}

.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 122, 0, 0.6);
}

.secondary {
    background: transparent;
    border: 1px solid #334155;
    color: #fff;
}

.secondary:hover {
    border-color: #ff7a00;
    color: #ff7a00;
    transform: translateY(-3px);
}

.stats {
    display: flex;
    gap: 45px;
    margin-top: 50px;
}

.stats h3 {
    color: #ff7a00;
    font-size: 32px;
}

.stats p {
    font-size: 13px;
    color: #aaa;
    margin: 0;
}

/* right image */
.right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ring {
    position: absolute;
    border-radius: 50%;
    animation: ringPulse 3s ease-in-out infinite;
}

@keyframes ringPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.4;
    }
}

.ring1 {
    width: 360px;
    height: 360px;
    border: 2px solid rgba(255, 122, 0, 0.8);
    box-shadow: 0 0 30px rgba(255, 122, 0, 0.4);
    animation-delay: 0s;
}

.ring2 {
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255, 122, 0, 0.25);
    animation-delay: 0.5s;
}

.circle {
    width: 330px;
    height: 330px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ff7a00;
    z-index: 2;
}

.circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blur-dot {
    position: absolute;
    border-radius: 50%;
    filter: blur(18px);
    opacity: 0.5;
    animation: floatDot 5s infinite;
}

.dot1 {
    width: 80px;
    height: 80px;
    background: #ff7a00;
    top: -20px;
    left: -30px;
}

.dot2 {
    width: 30px;
    height: 30px;
    background: #ffb347;
    bottom: 20%;
    right: -15px;
}

.dot3 {
    width: 55px;
    height: 55px;
    background: #ff9f4a;
    bottom: -15px;
    left: 20px;
}

@keyframes floatDot {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Mobile Menu Toggle Button */
.menu-toggle {
    display: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    background: rgba(255, 122, 0, 0.15);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    border: 1px solid rgba(255, 122, 0, 0.3);
}

.menu-toggle i {
    font-size: 20px;
    color: #ff7a00;
}

.menu-toggle:hover {
    background: rgba(255, 122, 0, 0.3);
    transform: scale(1.05);
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 20px;
        border-radius: 0 0 20px 20px;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
        border-bottom: 1px solid rgba(255, 122, 0, 0.3);
    }
    
    nav.show {
        transform: translateY(0);
    }
    
    nav a {
        font-size: 16px;
        padding: 8px 0;
    }
    
    .talk-btn {
        order: 2;
        margin-left: auto;
        margin-right: 10px;
    }
    
    .logo {
        order: 1;
    }
    
    .menu-toggle {
        order: 3;
    }
}

/* ========== ANIMATED SCROLL INDICATOR ========== */
.scroll-down {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.scroll-down span {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    color: #ff7a00;
    margin-bottom: 8px;
    font-weight: 500;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid #ff7a00;
    border-radius: 20px;
    margin: 0 auto;
    position: relative;
    background: rgba(255, 122, 0, 0.1);
}

.wheel {
    width: 4px;
    height: 10px;
    background: #ff7a00;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scrollWheel 1.8s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    80% {
        opacity: 0.5;
        transform: translateX(-50%) translateY(18px);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(22px);
    }
}

/* Hide scroll indicator on mobile screens */
@media (max-width: 768px) {
    .scroll-down {
        display: none;
    }
}


/* ========== ABOUT - PERFECT DOTS POSITION ========== */
.about-section {
    padding: 40px 0 50px;
}

.about-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-header h1 {
    font-size: 48px;
}

.about-header p {
    color: #94a3b8;
    margin-top: 10px;
}

.about-header span {
    color: #ff7a00;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-left {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.about-img {
    position: relative;
    width: 360px;
    height: 360px;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #ff7a00;
    position: relative;
    z-index: 2;
}

.about-img::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(255, 122, 0, 0.4);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ringPulse 3s ease-in-out;
    z-index: 1;
}

/* Perfectly positioned dots around about image */

.about-dot {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff7a00, #ff9a2a);
    animation: floatAround 4s ease-in-out infinite;
    z-index: 3;
}

.about-dot-1 {
    width: 55px;
    height: 55px;
    top: -25px;
    left: -25px;
    filter: blur(10px);
    opacity: 0.6;
    animation-delay: 0s;
}

.about-dot-2 {
    width: 20px;
    height: 20px;
    top: 15%;
    right: -30px;
    filter: blur(3px);
    opacity: 0.8;
    animation-delay: 0.5s;
}

.about-dot-3 {
    width: 40px;
    height: 40px;
    bottom: -20px;
    left: -20px;
    filter: blur(8px);
    opacity: 0.6;
    animation-delay: 1s;
}

@keyframes floatAround {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(5px, -8px) scale(1.05);
    }

    50% {
        transform: translate(-3px, 5px) scale(0.98);
    }

    75% {
        transform: translate(4px, 3px) scale(1.02);
    }
}

.about-right {
    flex: 1.5;
}

.about-right .badge {
    margin-bottom: 15px;
}

.about-right h2 {
    font-size: 40px;
    line-height: 1.3;
    margin: 15px 0;
}

.about-right h2 span {
    color: #ff7a00;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 24px;
    margin: 25px 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info i {
    color: #ff7a00;
    font-size: 20px;
}

.info small {
    color: #ff7a00;
    font-weight: 600;
    font-size: 11px;
}

.info h4 {
    font-size: 14px;
    font-weight: 500;
    color: #e2e8f0;
}

/* ========== SKILLS ========== */
.skills {
    padding: 40px 0 50px;
}

.skills-header {
    text-align: center;
    margin-bottom: 40px;
}

.skills-header h2 {
    font-size: 42px;
}

.skills-header span {
    color: #ff7a00;
}

.skills-header p {
    max-width: 650px;
    margin: 15px auto 0;
    color: #94a3b8;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.skill-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 22px;
    border-radius: 24px;
    transition: 0.3s;
}

.skill-card:hover {
    border-color: #ff7a00;
    transform: translateY(-5px);
}

.icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}

.figma {
    background: rgba(162, 89, 255, 0.15);
    color: #a259ff;
}

.design {
    background: rgba(0, 200, 150, 0.15);
    color: #00c896;
}

.mobile {
    background: rgba(255, 122, 0, 0.15);
    color: #ff7a00;
}

.progress-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}

.progress {
    flex: 1;
    height: 6px;
    background: #1e293b;
    border-radius: 10px;
    overflow: hidden;
}

.progress div {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #ff7a00, #ff9a2a);
    border-radius: 10px;
    transition: width 1.2s ease;
}

/* ========== PROJECTS ========== */
.projects {
    padding: 50px 0 60px;
}

.services-header {
    text-align: center;
    margin-bottom: 30px;
}

.services-header h2 {
    font-size: 42px;
}

.services-header span {
    color: #ff7a00;
}

.project-categories {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.project-categories span {
    padding: 8px 24px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s;
}

.project-categories span:hover {
    border-color: #ff7a00;
    color: #ff7a00;
    transform: translateY(-2px);
}

.project-categories .active {
    background: linear-gradient(135deg, #ff7a00, #ff9a2a);
    border-color: transparent;
    color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: 0.3s;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: #ff7a00;
    box-shadow: 0 20px 40px rgba(255, 122, 0, 0.2);
}

.card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.service-card:hover img {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

/* PERFECT CIRCLE ARROW BUTTON */
.arrow {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff7a00, #ff9a2a);
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.4);
    z-index: 10;
}

.service-card:hover .arrow {
    transform: translateY(-5px) rotate(45deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 122, 0, 0.7);
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.card-content p {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 12px;
}

.tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tags span {
    font-size: 10px;
    background: rgba(255, 122, 0, 0.12);
    padding: 4px 12px;
    border-radius: 20px;
    color: #ff9f4a;
}

.project-btn {
    text-align: center;
    margin-top: 45px;
}

.see-all {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 122, 0, 0.4);
    padding: 12px 32px;
    border-radius: 40px;
    color: #fff;
    transition: 0.3s;
}

.see-all:hover {
    background: linear-gradient(135deg, #ff7a00, #ff9a2a);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 122, 0, 0.4);
}

/* ========== MODAL ========== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: #0f172a;
    border-radius: 28px;
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 30px;
    position: relative;
    border: 1px solid rgba(255, 122, 0, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.modal-content img {
    width: 100%;
    border-radius: 18px;
    margin-bottom: 20px;
}

#closeModal {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 32px;
    cursor: pointer;
    color: #94a3b8;
    transition: 0.2s;
}

#closeModal:hover {
    color: #ff7a00;
    transform: rotate(90deg);
}

#modalTitle {
    font-size: 26px;
    font-weight: 700;
    background: linear-gradient(135deg, #ff7a00, #ff9a2a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 12px;
}

.modal-info {
    background: rgba(255, 122, 0, 0.08);
    border-radius: 20px;
    padding: 18px;
    margin: 15px 0;
    border: 1px solid rgba(255, 122, 0, 0.2);
}

.modal-info p {
    margin: 10px 0;
    font-size: 14px;
}

.modal-info strong {
    color: #ff7a00;
    font-weight: 600;
    display: inline-block;
    min-width: 100px;
}

.modal-info span {
    color: #e2e8f0;
    font-weight: 500;
}

.modal-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 25px;
    flex-wrap: wrap;
}

.modal-buttons a {
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

/* ========== CONTACT ========== */
.contact {
    padding: 50px 0 60px;
}

.contact-header {
    text-align: center;
    margin-bottom: 45px;
}

.contact-header h2 {
    font-size: 42px;
}

.contact-container {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-left {
    flex: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 25px 0;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
    transition: 0.3s;
}

.info-box:hover {
    border-color: #ff7a00;
    transform: translateX(8px);
    background: rgba(255, 122, 0, 0.05);
}

.info-box i {
    width: 45px;
    height: 45px;
    background: rgba(255, 122, 0, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff7a00;
    font-size: 20px;
}

.info-box div small {
    color: #ff7a00;
    font-size: 11px;
    font-weight: 600;
}

.info-box div p {
    margin: 4px 0 0;
    font-size: 14px;
    color: #e2e8f0;
}

.arrow-icon {
    margin-left: auto;
    color: #ff7a00;
    font-size: 20px;
}

.socials {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.socials span {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    font-size: 20px;
}

.socials span:hover {
    background: #ff7a00;
    transform: translateY(-3px);
}

.contact-right {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    padding: 35px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 24px;
}

input,
textarea {
    width: 100%;
    padding: 14px 18px;
    background: #020617;
    border: 1px solid #1e293b;
    border-radius: 14px;
    color: white;
    outline: none;
    font-family: inherit;
    font-size: 14px;
    transition: 0.2s;
}

input:focus,
textarea:focus {
    border-color: #ff7a00;
    box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.15);
}

textarea {
    height: 120px;
    resize: none;
}

label {
    font-size: 11px;
    letter-spacing: 1px;
    color: #ff7a00;
    margin-bottom: 10px;
    display: block;
    font-weight: 600;
}

.contact-right .primary {
    width: 100%;
    margin-top: 8px;
    padding: 14px;
    font-weight: 600;
}

/* ========== FOOTER ========== */
.footer {
    background: #020617;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 60px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #ff9a2a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-col p,
.footer-contact p {
    color: #94a3b8;
    font-size: 14px;
    margin: 12px 0;
}

.footer-col h4 {
    font-size: 15px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #ff7a00;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #94a3b8;
    transition: 0.2s;
}

.footer-col ul li a:hover {
    color: #ff7a00;
    padding-left: 5px;
}

.subscribe {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 4px;
    border: 1px solid rgba(255, 122, 0, 0.3);
    margin-top: 15px;
}

.subscribe input {
    background: transparent;
    border: none;
    flex: 1;
    padding: 12px 16px;
}

.subscribe button {
    background: linear-gradient(135deg, #ff7a00, #ff9a2a);
    width: 46px;
    height: 46px;
    border-radius: 50%;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: #94a3b8;
    width: 88%;
    margin: 0 auto;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.footer-socials span {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.footer-socials span:hover {
    background: #ff7a00;
    transform: translateY(-3px);
}

@media (max-width: 900px) {
    .nav-container {
        padding: 10px 20px;
    }

    nav {
        gap: 14px;
    }

    h1 {
        font-size: 44px;
    }

    .about-container {
        flex-direction: column;
    }

    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .left {
        text-align: center;
    }

    .stats {
        justify-content: center;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .input-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-container {
        flex-direction: column;
    }

    .circle {
        width: 280px;
        height: 280px;
    }

    .ring1 {
        width: 310px;
        height: 310px;
    }

    .ring2 {
        width: 360px;
        height: 360px;
    }

    .about-img {
        width: 280px;
        height: 280px;
    }

    .about-img::before {
        width: 320px;
        height: 320px;
    }

    .about-dot-1 {
        width: 45px;
        height: 45px;
        top: -20px;
        left: -20px;
    }

    .about-dot-2 {
        right: -25px;
    }

    .about-dot-3 {
        left: -15px;
        bottom: -15px;
    }

    .about-dot-4 {
        right: -15px;
    }

    .about-dot-5 {
        left: -25px;
    }
}

@media (max-width: 550px) {
    .nav-container {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
    }

    nav {
        order: 3;
        width: 100%;
        justify-content: center;
    }

    .talk-btn {
        order: 2;
    }

    .logo {
        order: 1;
    }

    .buttons {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}


/* ========== SCROLL REVEAL ANIMATIONS ========== */

/* Base reveal styles */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Different animation directions */
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Stagger children animations */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-children.active > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.active > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.active > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.active > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.active > *:nth-child(5) { transition-delay: 0.5s; }

.stagger-children.active > * {
    opacity: 1;
    transform: translateY(0);
}

/* Skill cards animation */
.skill-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.skill-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Project cards animation */
.service-card {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Contact form animation */
.contact-left, .contact-right {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-left.revealed, .contact-right.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Footer animation */
.footer-col {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-col.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Hero section initial animation */
.hero .left, .hero .right {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.hero .left {
    animation-delay: 0.2s;
}

.hero .right {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About section image animation */
.about-img {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-img.revealed {
    opacity: 1;
    transform: scale(1);
}

.about-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Header animation on load */
header {
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInDown 0.8s ease forwards;
    animation-delay: 0.1s;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section headers animation */
.skills-header, .services-header, .contact-header, .about-header {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.skills-header.revealed, .services-header.revealed, 
.contact-header.revealed, .about-header.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stats animation */
.stats {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.5s;
}

.stats.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons hover animation enhancement */
button, .talk-btn, .see-all {
    position: relative;
    overflow: hidden;
}

button::before, .talk-btn::before, .see-all::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

button:active::before, .talk-btn:active::before, .see-all:active::before {
    width: 300px;
    height: 300px;
}

/* Smooth scroll behavior enhancement */
html {
    scroll-behavior: smooth;
}

/* Loading animation for page */
body {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
