:root {
    --color-primary: #6A5AE0;
    --color-primary-dark: #5a4ac0;
    --color-secondary: #EDE9FF;
    --color-bg: #FFFFFF;
    --color-text: #1E1E2E;
    --color-text-light: #64748b;
    --color-accent-gradient: linear-gradient(135deg, #6A5AE0 0%, #FF61D2 50%, #6A5AE0 100%);

    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;

    --radius-lg: 18px;
    --radius-md: 14px;

    --shadow-soft: 0 10px 30px -10px rgba(106, 90, 224, 0.15);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: 1px solid rgba(255, 255, 255, 0.5);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

button {
    cursor: pointer;
    border: none;
    font-family: var(--font-primary);
}

a {
    text-decoration: none;
    color: inherit;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 5px;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

/* Animations Utilities */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--color-accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.desktop-menu {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .desktop-menu {
        display: flex;
    }
}

.nav-link {
    font-weight: 500;
    color: var(--color-text);
    transition: color 0.3s;
    font-size: 0.95rem;
    position: relative;
}

.nav-link:hover {
    color: var(--color-primary);
}

.btn-primary {
    background: var(--color-accent-gradient);
    color: white;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(106, 90, 224, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 25px rgba(106, 90, 224, 0.5);
}

.btn-primary.small {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.btn-secondary {
    background: white;
    color: var(--color-primary);
    border: 2px solid var(--color-secondary);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: var(--color-primary);
    box-shadow: 0 0 15px rgba(106, 90, 224, 0.2);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: block;
    background: none;
    color: var(--color-text);
    padding: 8px;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-link {
    font-weight: 500;
    font-size: 1.1rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg-blobs {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
}

.headline {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .headline {
        font-size: 4rem;
    }
}

.gradient-text {
    background: var(--color-accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subheadline {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.blob {
    position: absolute;
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.6;
    z-index: -1;
    animation: float 20s infinite ease-in-out;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: rgba(106, 90, 224, 0.25);
}

.blob-2 {
    bottom: 0%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: rgba(255, 97, 210, 0.2);
    animation-delay: -5s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, 50px) rotate(10deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }

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


/* Floating Services in Hero */
.hero-floating-services {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    /* Content is 10, blobs are 1. */
    pointer-events: none;
    /* Allow clicking through to text */
    overflow: hidden;
}

.floating-service-item {
    position: absolute;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-primary);
    box-shadow: 0 8px 32px rgba(106, 90, 224, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.8);
    animation: float-badge 6s ease-in-out infinite;
    opacity: 0;
    /* Start hidden */
    animation-fill-mode: forwards;
    animation-name: float-badge, fade-in-badge;
    animation-duration: 6s, 1s;
    animation-iteration-count: infinite, 1;
}

@keyframes fade-in-badge {
    to {
        opacity: 1;
    }
}

.floating-service-item i {
    width: 18px;
    height: 18px;
}

/* Positioning around center */
.item-1 {
    /* App Dev - Top Left */
    top: 20%;
    left: 15%;
    animation-delay: 0s, 0.2s;
}

.item-2 {
    /* Web Dev - Top Right */
    top: 25%;
    right: 18%;
    animation-delay: 1.5s, 0.4s;
}

.item-3 {
    /* UI/UX - Bottom Left */
    bottom: 25%;
    left: 18%;
    animation-delay: 1s, 0.6s;
}

.item-4 {
    /* Marketing - Bottom Right */
    bottom: 30%;
    right: 12%;
    animation-delay: 2.5s, 0.8s;
}

.item-5 {
    /* Consulting - Top Centerish/Floating */
    top: 15%;
    left: 55%;
    transform: translateX(-50%);
    animation-delay: 0.5s, 1s;
}

@keyframes float-badge {

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

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

/* Hide on mobile to avoid clutter */
@media (max-width: 768px) {
    .floating-service-item {
        display: none;
    }
}

/* About */
.about-section {
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media(min-width: 968px) {
    .about-grid {
        grid-template-columns: 1.2fr 1fr;
    }
}

.section-tag {
    color: var(--color-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.section-desc {
    color: var(--color-text-light);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.highlight-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border-color: rgba(106, 90, 224, 0.2);
}

.icon-box {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--color-secondary);
    color: var(--color-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.highlight-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.highlight-card p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

.about-visual {
    position: relative;
    height: 100%;
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-abstract {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        /* radial-gradient(circle at 20% 30%, rgba(106, 90, 224, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 97, 210, 0.1) 0%, transparent 50%); */
}

.about-img {
    width: 100%;
    border-radius: 24px;
    opacity: 0.9;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    animation: float-card 6s infinite ease-in-out;
    z-index: 2;
}

.card-1 {
    top: 20%;
    right: 5%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

@keyframes float-card {

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

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

/* Services */
.services-section {
    background: #FAFAFF;
    position: relative;
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.service-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card:hover {
    transform: translateY(-10px);
    background: white;
    box-shadow: 0 20px 40px rgba(106, 90, 224, 0.15);
    border-color: rgba(106, 90, 224, 0.2);
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover .service-icon-wrapper {
    background: var(--color-accent-gradient);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.service-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-link {
    font-weight: 600;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.service-card:hover .service-link {
    opacity: 1;
    transform: translateX(0);
}

.cta-container {
    text-align: center;
    margin-top: 4rem;
}

/* Portfolio */
.portfolio-section {
    background: #ffffff;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.portfolio-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: white;
    aspect-ratio: 16/10;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(106, 90, 224, 0.9), rgba(106, 90, 224, 0.4));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.portfolio-overlay h3 {
    color: white;
    font-size: 1.5rem;
    transform: translateY(20px);
    transition: transform 0.3s ease 0.1s;
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.5rem;
    transform: translateY(20px);
    transition: transform 0.3s ease 0.2s;
}

.portfolio-card:hover .portfolio-overlay h3,
.portfolio-card:hover .portfolio-overlay p {
    transform: translateY(0);
}

.badges {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    transform: translateY(20px);
    transition: transform 0.3s ease 0.3s;
}

.portfolio-card:hover .badges {
    transform: translateY(0);
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: white;
    backdrop-filter: blur(4px);
}

/* Value Prop */
.value-prop-section {
    background: #F4F6FB;
    position: relative;
    overflow: hidden;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    text-align: left;
    position: relative;
    transition: transform 0.3s ease;
    border-top: 4px solid transparent;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(106, 90, 224, 0.1);
    border-top-color: var(--color-primary);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: var(--color-secondary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.value-card p {
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Testimonials Carousel 3D */
.testimonials-section {
    background: #ffffff;
    overflow: hidden;
    padding-bottom: 6rem;
}

.testimonial-carousel-container {
    width: 100%;
    height: 500px;
    position: relative;
    perspective: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.testimonial-carousel {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
}

.testi-card {
    position: absolute;
    width: 380px;
    height: 480px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(145deg, #ffffff, #f9f8ff);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    /* Smoother Ease Out */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    pointer-events: none;
    border: 1px solid rgba(106, 90, 224, 0.1);
}

.testi-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testi-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-text);
    margin: 1.5rem 0;
    flex-grow: 1;
    font-style: italic;
}

/* 3D States */
.testi-card.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.0);
    /* Base scale 1 since we increased base size */
    z-index: 5;
    pointer-events: auto;
    box-shadow: 0 20px 60px rgba(106, 90, 224, 0.25);
    border: 2px solid var(--color-primary);
}

.testi-card.next {
    opacity: 0.6;
    transform: translate(15%, -50%) scale(0.85);
    /* Right Side */
    z-index: 4;
    filter: blur(2px);
}

.testi-card.prev {
    opacity: 0.6;
    transform: translate(-115%, -50%) scale(0.85);
    /* Left Side */
    z-index: 4;
    filter: blur(2px);
}

.testi-card.next-2 {
    opacity: 0;
    transform: translate(30%, -50%) scale(0.8);
    z-index: 3;
}

.testi-card.prev-2 {
    opacity: 0;
    transform: translate(-130%, -50%) scale(0.8);
    z-index: 3;
}

@media (max-width: 768px) {
    .testimonial-carousel-container {
        height: 450px;
    }

    .testi-card {
        width: 300px;
        height: 420px;
    }

    .testi-card.next {
        transform: translate(10%, -50%) scale(0.85);
        opacity: 0.5;
    }

    .testi-card.prev {
        transform: translate(-110%, -50%) scale(0.85);
        opacity: 0.5;
    }
}


/* Contact */
.contact-section {
    background: linear-gradient(135deg, #ffffff 0%, #FAFAFF 100%);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media(min-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr 1.5fr;
    }
}

.contact-info {
    padding-right: 2rem;
}

.contact-form-box {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(106, 90, 224, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-text);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fcfcfc;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(106, 90, 224, 0.1);
    background: white;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--color-text);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.social-icon:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: #f4f2ff;
    padding: 4rem 0 2rem;
    color: var(--color-text);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--color-text-light);
    margin-top: 1rem;
    font-size: 0.95rem;
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--color-text-light);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(106, 90, 224, 0.1);
    text-align: center;
    color: var(--color-text-light);
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Modal Simple Implementation */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s;
}

.modal.show {
    opacity: 1;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 0;
    border: 1px solid #888;
    width: 80%;
    max-width: 800px;
    border-radius: 18px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s;
}

.modal.show .modal-content {
    transform: translateY(0);
}

#modalImg
{
    border-radius: 18px 18px 0 0 ;
}
.close {
    color: #333;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 10px;
    z-index: 10;
    cursor: pointer;
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}