* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    font-family: "Roboto", sans-serif;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    background: #0f172a;
}

html {
    scroll-behavior: smooth;
}


/* ----------------------------- */
/* ------Header Css -------*/
/* ------------------------------ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 20px 0;
}

.header.scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(168, 85, 247, 0.3);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(90deg, #a855f7, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #a855f7, #06b6d4);
    transition: width 0.3s ease;
}

.logo:hover::after {
    width: 100%;
}


/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 45px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #a855f7, #06b6d4);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #fff;
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link.active {
    color: #a855f7;
}

.nav-link.active::before {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(168, 85, 247, 0.2);
    border-color: rgba(168, 85, 247, 0.5);
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, #a855f7, #06b6d4);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
}


/* Mobile Responsive header */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 40px 0;
        border-left: 1px solid rgba(168, 85, 247, 0.3);
        box-shadow: -4px 0 30px rgba(0, 0, 0, 0.5);
        transition: right 0.4s ease;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-item {
        width: 100%;
        padding: 0 30px;
    }

    .nav-link {
        display: block;
        padding: 18px 20px;
        font-size: 1.1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-link::before {
        display: none;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(168, 85, 247, 0.2);
        color: #fff;
        transform: translateX(10px);
    }

    .logo {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.3rem;
    }

    .nav-menu {
        width: 100%;
        top: 65px;
        height: calc(100vh - 65px);
    }
}

/* Scroll Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #a855f7, #06b6d4);
    z-index: 1001;
    transition: width 0.1s ease;
}

/* ------------------------------- */
/* ---- End Header Css ---- */
/* ------------------------------- */



/* ------------------------------- */
/* ----- Hero Section Css ------ */
/* ------------------------------- */

.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #581c87 50%, #0f172a 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 60px;
}

/* Animated Background Blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 8s ease-in-out infinite;
}

.blob1 {
    width: 400px;
    height: 400px;
    background: #a855f7;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.blob2 {
    width: 450px;
    height: 450px;
    background: #06b6d4;
    top: 15%;
    right: 5%;
    animation-delay: 2s;
}

.blob3 {
    width: 350px;
    height: 350px;
    background: #ec4899;
    bottom: 10%;
    left: 25%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Grid Pattern Overlay */
.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.greeting {
    font-size: 1.3rem;
    color: #a855f7;
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wave {
    display: inline-block;
    animation: wave 2s ease-in-out infinite;
}

@keyframes wave {

    0%,
    100% {
        transform: rotate(0deg);
    }

    10%,
    30% {
        transform: rotate(14deg);
    }

    20% {
        transform: rotate(-8deg);
    }

    40%,
    60% {
        transform: rotate(14deg);
    }

    50% {
        transform: rotate(-4deg);
    }

    70%,
    90% {
        transform: rotate(14deg);
    }

    80% {
        transform: rotate(-4deg);
    }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, #a855f7, #06b6d4, #ec4899);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.role-container {
    height: 60px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.role-prefix {
    font-size: 2rem;
    color: #cbd5e1;
    font-weight: 600;
    margin-right: 10px;
}

.role-text {
    font-size: 2rem;
    color: #06b6d4;
    font-weight: 700;
    min-width: 300px;
}

.typing-cursor {
    display: inline-block;
    width: 3px;
    height: 35px;
    background: #06b6d4;
    margin-left: 5px;
    animation: blink 0.7s infinite;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

.hero-description {
    font-size: 1.15rem;
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 550px;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 36px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #a855f7, #06b6d4);
    color: #fff;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(168, 85, 247, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 2px solid rgba(168, 85, 247, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(168, 85, 247, 0.2);
    border-color: #a855f7;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(168, 85, 247, 0.4);
}

/* Hero Image */
.hero-image {
    animation: fadeInRight 1s ease-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.image-wrapper {
    position: relative;
    width: 450px;
    height: 450px;
}

.image-wrapper::before {
    content: '';
    position: absolute;
    inset: -15px;
    background: linear-gradient(135deg, #a855f7, #06b6d4, #ec4899);
    border-radius: 50%;
    animation: rotate 4s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.image-wrapper::after {
    content: '';
    position: absolute;
    inset: -25px;
    background: rgba(168, 85, 247, 0.2);
    border-radius: 50%;
    filter: blur(20px);
    z-index: -2;
}

.profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #0f172a;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-direction: column;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: linear-gradient(135deg, #a855f7, #06b6d4);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.5);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(15px);
    }
}

.scroll-indicator svg {
    width: 32px;
    height: 32px;
    color: #a855f7;
    filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.5));
}

/* Responsive Design hero section */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .role-container {
        justify-content: center;
    }

    .hero-description {
        margin: 0 auto 35px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .image-wrapper {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 640px) {
    .hero-section {
        padding: 80px 20px 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .role-prefix,
    .role-text {
        font-size: 1.5rem;
    }

    .role-text {
        min-width: 200px;
    }

    .typing-cursor {
        height: 28px;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .image-wrapper {
        width: 280px;
        height: 280px;
    }

    .greeting {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .role-container {
        height: 50px;
    }

    .role-prefix,
    .role-text {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ------------------------------------ */
/* ------- End Hero Section ------- */
/* ------------------------------------ */




/* ------------------------------------ */
/*---------- About Section Css -------*/
/* ------------------------------------ */

.about-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #0f172a 0%, #1e1b4b 100%);
    position: relative;
    overflow: hidden;
}

/* Background Decoration */
.about-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    border-radius: 50%;
}

.about-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    border-radius: 50%;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 10;
}

.section-subtitle {
    color: #a855f7;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 3.5rem;
    color: #fff;
    font-weight: 900;
    margin-bottom: 20px;
}

.section-title span {
    background: linear-gradient(135deg, #a855f7, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    color: #94a3b8;
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

/* About Content */
.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
    position: relative;
    z-index: 10;
}

/* Personal Info Cards */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(6, 182, 212, 0.15));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    border-color: rgba(168, 85, 247, 0.6);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.4);
}

.info-card:hover::before {
    opacity: 1;
}

.info-label {
    color: #a855f7;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.info-value {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.info-value a {
    color: #06b6d4;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.info-value a:hover {
    color: #a855f7;
    transform: translateX(5px);
}

/* Download Button */
.download-btn {
    margin-top: 35px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #a855f7, #06b6d4);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(168, 85, 247, 0.5);
    position: relative;
    overflow: hidden;
}

.download-btn::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.5s, height 0.5s;
}

.download-btn:hover::before {
    width: 300px;
    height: 300px;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(168, 85, 247, 0.7);
}

.download-icon {
    width: 22px;
    height: 22px;
    position: relative;
    z-index: 1;
}

/* Experience Stats */
.experience-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(6, 182, 212, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover {
    transform: scale(1.08);
    border-color: #a855f7;
    box-shadow: 0 10px 35px rgba(168, 85, 247, 0.4);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #a855f7, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.stat-label {
    color: #94a3b8;
    font-size: 0.95rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

/* Skills Section */
.skills-section {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 45px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.skills-header {
    margin-bottom: 35px;
}

.skills-title {
    font-size: 2rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: 12px;
}

.skills-subtitle {
    color: #94a3b8;
    font-size: 1.05rem;
}

/* Skill Bars */
.skill-item {
    margin-bottom: 30px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.skill-name {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
}

.skill-percentage {
    color: #a855f7;
    font-size: 0.95rem;
    font-weight: 800;
}

.skill-bar {
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #a855f7, #06b6d4);
    border-radius: 12px;
    position: relative;
    width: 0;
    transition: width 1.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
}

.skill-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2.5s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Tech Stack */
.tech-stack {
    margin-top: 45px;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-title {
    font-size: 1.4rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: 25px;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.tech-badge {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    color: #06b6d4;
    font-size: 0.95rem;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: default;
}

.tech-badge:hover {
    transform: translateY(-5px);
    border-color: #a855f7;
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.4);
    color: #a855f7;
    background: rgba(168, 85, 247, 0.1);
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .section-title {
        font-size: 2.8rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .about-section {
        padding: 70px 20px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .skills-section {
        padding: 30px 25px;
    }

    .experience-stats {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.8rem;
    }

    .download-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .section-header {
        margin-bottom: 50px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .skills-title {
        font-size: 1.6rem;
    }

    .tech-badge {
        font-size: 0.85rem;
        padding: 10px 18px;
    }
}

/* ------------------------------- */
/* ----- End About Section Css */
/* ------------------------------- */


/* ------------------------------- */
/* ----- Education Section Css -----*/
/* -------------------------------- */

.education-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #1e1b4b 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

/* Background Decoration */
.education-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    top: 50%;
    left: -100px;
    transform: translateY(-50%);
    border-radius: 50%;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 10;
}

.section-subtitle {
    color: #06b6d4;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 3.5rem;
    color: #fff;
    font-weight: 900;
    margin-bottom: 20px;
}

.section-title span {
    background: linear-gradient(135deg, #06b6d4, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    color: #94a3b8;
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Timeline Container */
.timeline-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Timeline Line */
.timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #a855f7, #06b6d4);
    border-radius: 4px;
}

/* Timeline Items */
.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

/* Timeline Content */
.timeline-content {
    width: calc(50% - 40px);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px;
    position: relative;
    transition: all 0.4s ease;
}

.timeline-content:hover {
    transform: scale(1.03);
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow: 0 15px 40px rgba(6, 182, 212, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

/* Timeline Arrow */
.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border-style: solid;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -15px;
    transform: translateY(-50%);
    border-width: 15px 0 15px 15px;
    border-color: transparent transparent transparent rgba(255, 255, 255, 0.1);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -15px;
    transform: translateY(-50%);
    border-width: 15px 15px 15px 0;
    border-color: transparent rgba(255, 255, 255, 0.1) transparent transparent;
}

/* Timeline Dot */
.timeline-dot {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #a855f7, #06b6d4);
    border: 4px solid #0f172a;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.6);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(168, 85, 247, 0.6);
    }

    50% {
        box-shadow: 0 0 30px rgba(168, 85, 247, 0.9);
    }
}

/* Year Badge */
.year-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #a855f7, #06b6d4);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 800;
    border-radius: 20px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
}

/* Education Title */
.education-title {
    font-size: 1.6rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.3;
}

/* Education Description */
.education-description {
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.7;
}

/* Education Icon */
.education-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #a855f7, #06b6d4);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.4);
}

.education-icon svg {
    width: 32px;
    height: 32px;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }

    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 80px;
    }

    .timeline-content {
        width: 100%;
    }

    .timeline-content::before {
        display: none;
    }

    .timeline-dot {
        left: 30px;
        transform: translateX(-50%);
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 640px) {
    .education-section {
        padding: 70px 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .timeline-content {
        padding: 25px;
    }

    .education-title {
        font-size: 1.3rem;
    }

    .timeline-item {
        padding-left: 60px;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .section-header {
        margin-bottom: 50px;
    }

    .education-icon {
        width: 50px;
        height: 50px;
    }

    .education-icon svg {
        width: 26px;
        height: 26px;
    }
}

/* --------------------------------- */
/* ---- End Education Section---- */
/* --------------------------------- */

/* --------------------------------- */
/* ----- Service Section Css ---- */
/* --------------------------------- */

.services-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #0f172a 0%, #1e1b4b 100%);
    position: relative;
    overflow: hidden;
}

/* Background Decoration */
.services-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    top: 50%;
    right: -200px;
    transform: translateY(-50%);
    border-radius: 50%;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 10;
}

.section-subtitle {
    color: #a855f7;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 3.5rem;
    color: #fff;
    font-weight: 900;
    margin-bottom: 20px;
}

.section-title span {
    background: linear-gradient(135deg, #a855f7, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    color: #94a3b8;
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Services Grid */
.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 10;
}

/* Service Card */
.service-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(6, 182, 212, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 20px 50px rgba(168, 85, 247, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

/* Service Icon */
.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #a855f7, #06b6d4);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
    box-shadow: 0 12px 35px rgba(168, 85, 247, 0.6);
}

.service-icon svg {
    width: 40px;
    height: 40px;
    color: #fff;
}

/* Service Title */
.service-title {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

/* Service Description */
.service-description {
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Service Features */
.service-features {
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.service-features ul {
    list-style: none;
}

.service-features li {
    color: #cbd5e1;
    font-size: 0.95rem;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li::before {
    content: '✓';
    color: #06b6d4;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .section-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 640px) {
    .services-section {
        padding: 70px 20px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 30px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
    }

    .service-icon svg {
        width: 35px;
        height: 35px;
    }

    .service-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .section-header {
        margin-bottom: 50px;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* ------------------------------------- */
/* ----- End Service Section Css -------- */
/* -------------------------------------- */


/* ------------------------------------ */
/* ---------- Project section ------------ */
/* ------------------------------------ */

/* Hide filtered slides */
.project-card.hidden-slide {
    display: none !important;
}

.projects-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #1e1b4b 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

/* Background Decoration */
.projects-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
    border-radius: 50%;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 10;
}

.section-subtitle {
    color: #06b6d4;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 3.5rem;
    color: #fff;
    font-weight: 900;
    margin-bottom: 20px;
}

.section-title span {
    background: linear-gradient(135deg, #06b6d4, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    color: #94a3b8;
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: #cbd5e1;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: rgba(168, 85, 247, 0.5);
    color: #fff;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #a855f7, #06b6d4);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.5);
}

/* Projects Container */
.projects-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

/* Swiper Styles */
.projectsSwiper {
    width: 100%;
    padding: 20px 0 60px;
}

.swiper-wrapper {
    display: flex;
    align-items: stretch;
}

/* Project Card */
.project-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: auto;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow: 0 20px 50px rgba(6, 182, 212, 0.3);
}

/* Project Image */
.project-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-links {
    display: flex;
    gap: 15px;
}

.project-link {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #a855f7, #06b6d4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
}

.project-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(168, 85, 247, 0.6);
}

.project-link svg {
    width: 20px;
    height: 20px;
}

/* Project Info */
.project-info {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-category {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(168, 85, 247, 0.2);
    color: #a855f7;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 15px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
}

.project-title {
    font-size: 1.4rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.3;
}

.project-description {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag {
    padding: 5px 12px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: #06b6d4;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 12px;
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #a855f7, #06b6d4);
    border-radius: 50%;
    color: #fff;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.4);
    transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    font-weight: 900;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(168, 85, 247, 0.6);
}

.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Swiper Pagination */
.swiper-pagination {
    bottom: 10px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: linear-gradient(135deg, #a855f7, #06b6d4);
    width: 30px;
    border-radius: 6px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .section-title {
        font-size: 2.8rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .projects-section {
        padding: 70px 20px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .filter-buttons {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .project-image {
        height: 200px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 35px;
        height: 35px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 14px;
    }

    .projectsSwiper {
        padding: 20px 0 50px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }

    .project-info {
        padding: 20px;
    }

    .project-title {
        font-size: 1.2rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

/* --------------------------------------- */
/* ------- End Project Section ------------ */
/* ---------------------------------------- */


/* -------------------------------------- */
/*------- Contact Section ----------------*/
/* -------------------------------------- */

.contact-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #0f172a 0%, #1e1b4b 100%);
    position: relative;
    overflow: hidden;
}

/* Background Decoration */
.contact-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 10;
}

.section-subtitle {
    color: #a855f7;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 3.5rem;
    color: #fff;
    font-weight: 900;
    margin-bottom: 20px;
}

.section-title span {
    background: linear-gradient(135deg, #a855f7, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    color: #94a3b8;
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Contact Content */
.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 10;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.contact-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, #a855f7, #06b6d4);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.4);
}

.contact-icon svg {
    width: 28px;
    height: 28px;
    color: #fff;
}

.contact-details h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-details p {
    color: #94a3b8;
    font-size: 1rem;
}

.contact-details a {
    color: #06b6d4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #a855f7;
}

/* Social Links */
.contact-social {
    margin-top: 20px;
}

.contact-social h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.social-links-contact-section {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #a855f7, #06b6d4);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.5);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 45px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #a855f7;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #64748b;
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.form-button {
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(135deg, #a855f7, #06b6d4);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(168, 85, 247, 0.5);
    position: relative;
    overflow: hidden;
}

.form-button::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;
}

.form-button:hover::before {
    width: 400px;
    height: 400px;
}

.form-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(168, 85, 247, 0.7);
}

.form-button span {
    position: relative;
    z-index: 1;
}

/* -------------------------------------- */
/* ------ End Contact Sectiion --------- */
/* ------------------------------------- */

/* ============================================
           FOOTER
   ============================================ */
.footer {
    background: #0a0f1f;
    padding: 40px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #a855f7, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
    color: #94a3b8;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #a855f7;
    transform: translateX(5px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #64748b;
    font-size: 0.95rem;
}

.footer-bottom a {
    color: #a855f7;
    text-decoration: none;
    font-weight: 600;
}

/* --- WhatsApp Button --- */

.wa-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: Arial, sans-serif;
}


/* WhatsApp Button */
.wa-button {
  width: 55px;
  height: 55px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  animation: pulse 2s infinite;
}

.wa-button img {
  width: 30px;
}

/* Popup */
.wa-popup {
  width: 250px;
  background: white;
  border-radius: 12px;
  margin-bottom: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  overflow: hidden;

  opacity: 0;
  transform: translateY(20px);
}

/* Header */
.wa-header {
  background: #25D366;
  color: white;
  padding: 8px 12px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
}

.wa-header button {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
}

/* Body */
.wa-body {
  padding: 12px;
  font-size: 14px;
  color: #333;
}

/* Show animation */
.wa-show {
  animation: slideIn 0.4s forwards;
}

/* Hide animation */
.wa-hide {
  animation: slideOut 0.4s forwards;
}

/* Keyframes */
@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideOut {
  to {
    opacity: 0;
    transform: translateY(20px);
  }
}

/* Pulse animation */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Responsive Design */
@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .section-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 640px) {
    .contact-section {
        padding: 70px 20px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .contact-form {
        padding: 30px 25px;
    }

    .contact-info-card {
        padding: 20px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }

    .form-button {
        padding: 16px 30px;
        font-size: 1rem;
    }
}