* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #1a1a2e;
    color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Navigation */
.navbar {
    padding: 20px 0;
    background: rgba(26, 26, 46, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #8B3FA8 0%, #C850C0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #C850C0;
}

.btn-contact {
    background: linear-gradient(135deg, #8B3FA8 0%, #C850C0 100%);
    padding: 10px 25px;
    border-radius: 25px;
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    position: relative;
    background: linear-gradient(135deg, #2d1b3d 0%, #1a1a2e 100%);
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.hero-text {
    flex: 1;
}

.greeting {
    font-size: 18px;
    color: #C850C0;
    margin-bottom: 10px;
}

.hero h1 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, #8B3FA8 0%, #C850C0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.description {
    font-size: 16px;
    color: #b8b8b8;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.btn-primary {
    background: linear-gradient(135deg, #8B3FA8 0%, #C850C0 100%);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid #8B3FA8;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(139, 63, 168, 0.1);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(139, 63, 168, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C850C0;
    transition: all 0.3s;
    font-size: 18px;
}

.social-icon:hover {
    background: linear-gradient(135deg, #8B3FA8 0%, #C850C0 100%);
    color: white;
    transform: translateY(-3px);
}

.hero-image {
    flex: 1;
    position: relative;
}

.image-container {
    position: relative;
    width: 400px;
    height: 500px;
    background: linear-gradient(135deg, #8B3FA8 0%, #C850C0 100%);
    border-radius: 300px 300px 50px 50px;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
}

.element-1 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6B9D 0%, #C850C0 100%);
    top: 10%;
    right: -40px;
    animation-delay: 0s;
}

.element-2 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
    bottom: 20%;
    left: -30px;
    animation-delay: 1s;
}

.element-3 {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFD93D 0%, #FF6B9D 100%);
    top: 50%;
    right: -25px;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.decorative-circles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.circle-1 {
    width: 200px;
    height: 200px;
    background: #C850C0;
    top: 10%;
    left: 5%;
}

.circle-2 {
    width: 150px;
    height: 150px;
    background: #8B3FA8;
    bottom: 20%;
    right: 10%;
}

.circle-3 {
    width: 100px;
    height: 100px;
    background: #FF6B9D;
    top: 60%;
    left: 15%;
}

/* About Section */
.about {
    padding: 30px 0;
    background: #16162a;
}

.section-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 30px;
    background: linear-gradient(135deg, #8B3FA8 0%, #C850C0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #8B3FA8 0%, #C850C0 100%);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: #b8b8b8;
    margin-bottom: 60px;
    font-size: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-content {
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-image {
    flex: 0 0 350px;
}

.profile-circle {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B3FA8 0%, #C850C0 100%);
    padding: 20px;
    position: relative;
}

.profile-circle img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.floating-shape {
    position: absolute;
    animation: float 3s ease-in-out infinite;
}

.shape-1 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD93D 0%, #FF6B9D 100%);
    border-radius: 50%;
    top: -20px;
    right: 50px;
}

.shape-2 {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
    border-radius: 50%;
    bottom: 50px;
    left: -20px;
    animation-delay: 1s;
}

.shape-3 {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FF6B9D 0%, #C850C0 100%);
    border-radius: 50%;
    bottom: -10px;
    right: 80px;
    animation-delay: 2s;
}

.about-text {
    flex: 1;
}

.about-text p {
    color: #b8b8b8;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text ul {
    color: #b8b8b8;
    line-height: 1.8;
    margin-bottom: 20px;
    margin-left: 20px;
}

.skills {
    margin: 30px 0;
}

.skills h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.skills h4 {
    font-size: 18px;
    margin: 25px 0 15px 0;
    color: #ffffff;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-tag {
    background: rgba(139, 63, 168, 0.2);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    color: #C850C0;
    border: 1px solid rgba(200, 80, 192, 0.3);
    transition: all 0.3s;
}

.skill-tag:hover {
    background: linear-gradient(135deg, #8B3FA8 0%, #C850C0 100%);
    color: white;
    transform: translateY(-3px);
}

/* Services/Achievements Section */
.achievements {
    padding: 100px 0;
    background: linear-gradient(135deg, #2d1b3d 0%, #1a1a2e 100%);
    position: relative;
}

.services-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    margin: 0 auto;
    flex-wrap: nowrap;
}

.service-card {
    background: rgba(139, 63, 168, 0.1);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(200, 80, 192, 0.2);
    transition: all 0.3s;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(10px);
    flex: 1;
    min-width: 220px;
    max-width: 220px;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #C850C0;
    box-shadow: 0 10px 30px rgba(200, 80, 192, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #C850C0;
    overflow: hidden;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border: 2px solid rgba(200, 80, 192, 0.3);
    font-size: 40px;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: rgba(200, 80, 192, 0.2);
    border-color: #C850C0;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.service-card h3 {
    font-size: 16px;
    margin-bottom: 15px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

.service-card p {
    color: #b8b8b8;
    font-size: 13px;
    line-height: 1.6;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

/* Skills & Tools Section */
.skills-section {
    padding: 100px 0;
    background: #16162a;
}

.skills-section .section-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 30px;
    background: linear-gradient(135deg, #8B3FA8 0%, #C850C0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.skills-section .section-subtitle {
    text-align: center;
    color: #b8b8b8;
    margin-bottom: 60px;
    font-size: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.skills-visualization {
    margin: 40px 0;
    position: relative;
}

.skill-timeline {
    position: relative;
    padding: 30px 0;
}

.skill-path {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.skill-path::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    width: 4px;
    background: linear-gradient(to bottom, #8B3FA8, #C850C0, #8B3FA8);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(200, 80, 192, 0.5);
}

.skill-node {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    width: 100%;
    opacity: 0;
    animation: slideInNode 0.8s forwards;
}

.skill-node:nth-child(1) { animation-delay: 0.2s; }
.skill-node:nth-child(3) { animation-delay: 0.4s; }
.skill-node:nth-child(5) { animation-delay: 0.6s; }
.skill-node:nth-child(7) { animation-delay: 0.8s; }

.skill-node-wrapper {
    position: relative;
    width: 100%;
}

.skill-connector {
    width: 20px;
    height: 20px;
    background: #C850C0;
    border-radius: 50%;
    border: 4px solid #1a1a2e;
    position: absolute;
    left: 32px;
    z-index: 2;
    opacity: 0;
    animation: pulseConnector 2s infinite;
    top: 50%;
    transform: translateY(-50%);
}

.skill-node-wrapper:last-child .skill-connector {
    display: none;
}

.skill-node-icon {
    font-size: 42px;
    min-width: 90px;
    text-align: center;
    margin-right: 25px;
    z-index: 3;
    background: #1a1a2e;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #C850C0;
    box-shadow: 0 0 20px rgba(200, 80, 192, 0.6);
    transition: all 0.4s ease;
}

.skill-node-icon:hover {
    transform: scale(1.15);
    box-shadow: 0 0 30px rgba(200, 80, 192, 0.8);
}

.skill-node-content {
    flex: 1;
    background: rgba(26, 26, 46, 0.7);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(200, 80, 192, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.skill-node-content:hover {
    border-color: rgba(200, 80, 192, 0.6);
    box-shadow: 0 8px 25px rgba(139, 63, 168, 0.3);
    transform: translateY(-3px);
}

.skill-node-icon {
    font-size: 42px;
    min-width: 90px;
    text-align: center;
    margin-right: 25px;
    z-index: 3;
    background: #1a1a2e;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #C850C0;
    box-shadow: 0 0 20px rgba(200, 80, 192, 0.6);
    transition: all 0.4s ease;
}

.skill-node-icon:hover {
    transform: scale(1.15);
    box-shadow: 0 0 30px rgba(200, 80, 192, 0.8);
}

.skill-node-content h4 {
    margin: 0 0 15px 0;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
}

.skill-node-details {
    color: #b8b8b8;
    line-height: 1.6;
    font-size: 14px;
}

.skill-node-details span {
    color: #C850C0;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
}

.skill-node-details span:hover {
    color: #ffffff;
    text-shadow: 0 0 12px rgba(200, 80, 192, 0.9);
    transform: translateY(-4px);
}

.skill-node-details span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #C850C0;
    transition: width 0.3s;
}

.skill-node-details span:hover::after {
    width: 100%;
}

@keyframes slideInNode {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulseConnector {
    0% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.4);
    }
    100% {
        opacity: 0.4;
        transform: scale(1);
    }
}

/* Projects Section */
.projects {
    padding: 100px 0;
    background: #16162a;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* Carousel styles */
.projects-container {
    overflow: hidden;
}

.projects-slider {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.project-slide {
    min-width: 100%;
}

.project-card {
    background: rgba(139, 63, 168, 0.1);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(200, 80, 192, 0.2);
    transition: all 0.3s;
    min-height: 300px;
    height: auto;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: #C850C0;
}

.project-info {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.project-category {
    color: #C850C0;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-info h3 {
    font-size: 18px;
    margin: 5px 0 8px;
}

.project-info p {
    color: #b8b8b8;
    margin-bottom: 8px;
    font-size: 14px;
}

.project-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-bottom: 1px solid rgba(200, 80, 192, 0.2);
    flex-shrink: 0;
}

.btn-view {
    background: transparent;
    color: #C850C0;
    border: 2px solid #C850C0;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-view:hover {
    background: linear-gradient(135deg, #8B3FA8 0%, #C850C0 100%);
    color: white;
    border-color: transparent;
}

.btn-github {
    background: linear-gradient(135deg, #8B3FA8 0%, #C850C0 100%);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-github:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(200, 80, 192, 0.4);
}

.projects-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 30px 0;
    margin-top: 20px;
    border-top: 1px solid rgba(200, 80, 192, 0.2);
}

.nav-arrow {
    width: 40px;
    height: 40px;
    background: rgba(139, 63, 168, 0.2);
    border: 1px solid rgba(200, 80, 192, 0.3);
    border-radius: 50%;
    color: #C850C0;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

.nav-arrow:hover {
    background: linear-gradient(135deg, #8B3FA8 0%, #C850C0 100%);
    color: white;
}

.nav-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(139, 63, 168, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #C850C0;
    width: 30px;
    border-radius: 5px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #16162a;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-input {
    background: rgba(139, 63, 168, 0.1);
    border: 1px solid rgba(200, 80, 192, 0.2);
    padding: 15px 20px;
    border-radius: 10px;
    color: white;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: #C850C0;
}

.form-input::placeholder {
    color: #666;
}

.full-width {
    width: 100%;
    margin-bottom: 20px;
}

.form-textarea {
    width: 100%;
    background: rgba(139, 63, 168, 0.1);
    border: 1px solid rgba(200, 80, 192, 0.2);
    padding: 15px 20px;
    border-radius: 10px;
    color: white;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    resize: vertical;
    margin-bottom: 30px;
    transition: all 0.3s;
}

.form-textarea:focus {
    outline: none;
    border-color: #C850C0;
}

.form-textarea::placeholder {
    color: #666;
}

.btn-submit {
    background: linear-gradient(135deg, #8B3FA8 0%, #C850C0 100%);
    color: white;
    border: none;
    padding: 15px 50px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
    display: block;
    margin: 0 auto;
}

.btn-submit:hover {
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b3d 100%);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(200, 80, 192, 0.2);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #8B3FA8 0%, #C850C0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-about p {
    color: #b8b8b8;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-heading {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #8B3FA8 0%, #C850C0 100%);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #b8b8b8;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: #C850C0;
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(139, 63, 168, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C850C0;
    transition: all 0.3s;
    font-size: 18px;
}

.footer-social a:hover {
    background: linear-gradient(135deg, #8B3FA8 0%, #C850C0 100%);
    color: white;
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(200, 80, 192, 0.1);
    padding-top: 30px;
    text-align: center;
    color: #b8b8b8;
    font-size: 14px;
}

.footer-bottom a {
    color: #C850C0;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .image-container {
        margin: 0 auto;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .skill-tags {
        justify-content: center;
    }

    .services-grid {
        flex-wrap: wrap;
        gap: 15px;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero h1 {
        font-size: 28px;
    }

    .services-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-column {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .services-grid {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

/* ============================================ */
/* MDFDP WORKING-ON BANNER STYLES */
/* ============================================ */

/* Working On Banner Styles */
.working-on-banner {
    background: linear-gradient(135deg, rgba(139, 63, 168, 0.15) 0%, rgba(200, 80, 192, 0.1) 100%);
    border: 2px solid rgba(200, 80, 192, 0.3);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0 60px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.working-on-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(200, 80, 192, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.working-on-banner:hover {
    transform: translateY(-5px);
    border-color: #C850C0;
    box-shadow: 0 20px 60px rgba(200, 80, 192, 0.3);
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.banner-icon {
    font-size: 36px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.banner-title {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
    margin: 0;
}

.banner-title .highlight {
    background: linear-gradient(135deg, #8B3FA8 0%, #C850C0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.banner-description {
    color: #b8b8b8;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.banner-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #8B3FA8 0%, #C850C0 100%);
    color: white;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.banner-link:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(200, 80, 192, 0.4);
}

.banner-image {
    position: relative;
    z-index: 2;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    background: linear-gradient(135deg, #2d1b3d 0%, #1a1a2e 100%);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-image:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(200, 80, 192, 0.4);
}

.mdfdp-preview {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

.placeholder-text {
    color: #b8b8b8;
    text-align: center;
    padding: 40px;
    font-size: 14px;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.95) 0%, transparent 100%);
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.banner-image:hover .image-overlay {
    opacity: 1;
}

.overlay-tag {
    background: rgba(200, 80, 192, 0.2);
    border: 1px solid rgba(200, 80, 192, 0.4);
    color: #C850C0;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.info-box {
    background: rgba(139, 63, 168, 0.1);
    border: 1px solid rgba(200, 80, 192, 0.3);
    border-radius: 15px;
    padding: 20px;
    margin-top: 40px;
    text-align: center;
}

.info-box h3 {
    color: #C850C0;
    margin-bottom: 10px;
}

.info-box p {
    color: #b8b8b8;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .working-on-banner {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .banner-title {
        font-size: 20px;
    }

    .banner-description {
        font-size: 14px;
    }
}