/* 
  Kids Phonics Pondicherry - Styles 
  Theme: Vibrant, Professional, Glassmorphism, Animated
*/

:root {
    /* Color Palette */
    --primary: #8a2be2;
    /* Vibrant Indigo/Purple */
    --primary-light: #b08ee6;
    --primary-dark: #6a1b9a;
    --secondary: #ff7043;
    /* Warm playful orange */
    --accent: #00bcd4;
    /* Cyan */

    --text-dark: #2d3748;
    --text-light: #718096;
    --white: #ffffff;
    --bg-light: #f7fafc;
    --bg-body: #f3f4fa;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #8a2be2 0%, #00bcd4 100%);
    --gradient-glass: rgba(255, 255, 255, 0.7);

    /* Shadows & Effects */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 35px rgba(138, 43, 226, 0.15);
    --glass-border: rgba(255, 255, 255, 0.8);
    --glass-blur: blur(10px);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Quicksand', sans-serif;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-body);
    overflow-x: hidden;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--white);
}

.bg-primary {
    background-color: var(--primary);
    color: white;
}

.bg-secondary {
    background-color: var(--secondary);
    color: white;
}

.bg-accent {
    background-color: var(--accent);
    color: white;
}

.bg-light {
    background-color: var(--bg-light);
}

.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Glassmorphism Class */
.glass {
    background: var(--gradient-glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
}

/* Background Abstract Shapes */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    filter: blur(80px);
    opacity: 0.5;
}

.shape-1 {
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: var(--primary-light);
}

.shape-2 {
    top: 20%;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--accent);
}

.shape-3 {
    bottom: 10%;
    left: 20%;
    width: 500px;
    height: 500px;
    background: var(--secondary);
    opacity: 0.2;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
    font-family: var(--font-heading);
    gap: 0.5rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.4);
    color: white;
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 112, 67, 0.3);
}

.btn-secondary:hover {
    background: #f4511e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 112, 67, 0.4);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    transition: var(--transition-fast);
}

header.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.95);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 10px rgba(138, 43, 226, 0.3);
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    line-height: 1.1;
    color: var(--primary);
}

.logo-text small {
    font-size: 0.85rem;
    color: var(--secondary);
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-fast);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* Sections Base */
section {
    padding: 6rem 0;
}

/* Hero Section */
.hero {
    padding-top: 180px;
    padding-bottom: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content .badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 112, 67, 0.1);
    color: var(--secondary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.hero-image {
    position: relative;
}

.hero-image .image-wrapper {
    border-radius: 30px;
    padding: 1rem;
    position: relative;
    z-index: 1;
}

.hero-image img {
    border-radius: 20px;
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Floating Elements */
.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.el-1 {
    top: -20px;
    left: -20px;
    animation-delay: 0s;
    color: var(--secondary);
}

.el-2 {
    bottom: 40px;
    right: -20px;
    animation-delay: 2s;
    color: var(--accent);
}

.el-3 {
    top: 50%;
    left: -30px;
    animation-delay: 4s;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* Stages Section */
.stages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-content: center;
}

.stage-card {
    padding: 2.5rem;
    border-radius: 20px;
    transition: var(--transition-medium);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stage-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.stage-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.stage-card p {
    color: var(--text-light);
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image .image-wrapper {
    border-radius: 30px;
    padding: 1rem;
    transform: rotate(-3deg);
    transition: var(--transition-medium);
}

.about-image:hover .image-wrapper {
    transform: rotate(0deg);
}

.about-image img {
    border-radius: 20px;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.about-content .subtitle {
    color: var(--secondary);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.mission-box {
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 5px solid var(--accent);
    margin-top: 2rem;
}

.mission-box h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.mission-box p {
    margin-bottom: 0;
    font-size: 1rem;
    font-style: italic;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.review-card {
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    color: #ffc107;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.review-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
    font-family: var(--font-heading);
}

.reviewer h4 {
    margin: 0;
    font-size: 1.1rem;
}

.reviewer span {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* CTA Section */
.cta-container {
    padding: 5rem 3rem;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1) 0%, rgba(0, 188, 212, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Footer */
footer {
    background: white;
    padding-top: 5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    margin: 1.5rem 0;
    color: var(--text-light);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-body);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-links h4,
.footer-newsletter h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-light);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-newsletter p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition-fast);
}

.newsletter-form input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.1);
}

.newsletter-form button {
    width: 45px;
    padding: 0;
    border-radius: 50%;
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

/* Responsive Design */
@media (max-width: 992px) {

    .hero-container,
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .about-image {
        grid-row: 1;
        max-width: 600px;
        margin: 0 auto;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* simple mobile menu hidden state */
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .header-actions .btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

/* Interactive 3D CSS Illustration */
.tilt-container {
    transform-style: preserve-3d;
    cursor: grab;
    will-change: transform;
}

.tilt-container:active {
    cursor: grabbing;
}

.css-illustration {
    width: 100%;
    height: 380px;
    background: radial-gradient(circle at center, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transform: translateZ(30px);
    overflow: hidden;
}

/* Background Doodles */
.doodles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.doodle {
    position: absolute;
    opacity: 0.6;
}

.doodle-1 {
    top: 20px;
    left: 20px;
    animation: drift 10s ease-in-out infinite;
}

.doodle-2 {
    bottom: -10px;
    right: 20px;
    animation: drift 8s ease-in-out infinite reverse;
}

.doodle-text {
    position: absolute;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: rgba(255, 112, 67, 0.4);
    /* Secondary color faint */
    transform-style: preserve-3d;
}

.text-1 {
    top: 15%;
    left: 10%;
    transform: rotateZ(-15deg);
}

.text-2 {
    bottom: 20%;
    left: 20%;
    color: rgba(138, 43, 226, 0.3);
    /* Primary color faint */
    transform: rotateZ(10deg);
}

.text-3 {
    top: 30%;
    right: 15%;
    color: rgba(0, 188, 212, 0.4);
    /* Accent color faint */
    transform: rotateZ(25deg);
}

@keyframes drift {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

.book {
    position: relative;
    width: 200px;
    height: 140px;
    transform: rotateX(20deg) rotateZ(-10deg);
    transform-style: preserve-3d;
    animation: float-book 5s ease-in-out infinite;
}

@keyframes float-book {

    0%,
    100% {
        transform: translateY(0) rotateX(20deg) rotateZ(-10deg);
    }

    50% {
        transform: translateY(-15px) rotateX(25deg) rotateZ(-5deg);
    }
}

.page-left,
.page-right {
    position: absolute;
    bottom: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.05), 0 10px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    opacity: 0.8;
}

.page-left .page-content {
    color: var(--secondary);
    transform: rotateY(10deg);
}

.page-right .page-content {
    color: var(--accent);
    transform: rotateY(-10deg);
}

/* Blob Cards for Stages */
.blob-card {
    padding: 3rem 2rem;
    position: relative;
    z-index: 1;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    overflow: visible !important;
}

/* Morphing Blob Body */
.blob-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    transition: border-radius 0.6s ease, transform 0.4s ease, box-shadow 0.4s ease;
    animation: morphing-blob 8s ease-in-out infinite both alternate;
}

/* Playful Bubble Tail */
.blob-card::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 40px;
    height: 40px;
    z-index: -2;
    border-radius: 0 0 20px 0;
    transition: var(--transition-medium);
}

/* Colors matching the reference closely */
.blob-card:nth-child(1)::before {
    background: linear-gradient(135deg, #ffe4e8 0%, #ffb3c1 100%);
    animation-delay: 0s;
}

.blob-card:nth-child(1)::after {
    background: #ffb3c1;
    transform: translateX(-50%) rotate(45deg);
}

.blob-card:nth-child(2)::before {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    animation-delay: -2s;
    animation-direction: alternate-reverse;
}

.blob-card:nth-child(2)::after {
    background: #bae6fd;
    transform: translateX(-50%) rotate(45deg);
}

.blob-card:nth-child(3)::before {
    background: linear-gradient(135deg, #ffedd5 0%, #fed7aa 100%);
    animation-delay: -4s;
}

.blob-card:nth-child(3)::after {
    background: #fed7aa;
    transform: translateX(-50%) rotate(45deg);
}

.blob-card:nth-child(4)::before {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    animation-delay: -6s;
    animation-direction: alternate-reverse;
}

.blob-card:nth-child(4)::after {
    background: #bbf7d0;
    transform: translateX(-50%) rotate(45deg);
}

.blob-card:nth-child(5)::before {
    background: linear-gradient(135deg, #fef9c3 0%, #fde047 100%);
    animation-delay: -8s;
}

.blob-card:nth-child(5)::after {
    background: #fde047;
    transform: translateX(-50%) rotate(45deg);
}

.blob-card:nth-child(6)::before {
    background: linear-gradient(135deg, #f3e8ff 0%, #d8b4fe 100%);
    animation-delay: -10s;
    animation-direction: alternate-reverse;
}

.blob-card:nth-child(6)::after {
    background: #d8b4fe;
    transform: translateX(-50%) rotate(45deg);
}

@keyframes morphing-blob {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    33% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }

    66% {
        border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
    }

    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

html .stage-card.blob-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: none;
}

.blob-card:hover::before {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation-play-state: paused;
}

.blob-card:hover::after {
    opacity: 0;
    transform: translateX(-50%) rotate(45deg) translateY(20px);
}

.page-left {
    left: 0;
    transform-origin: right center;
    transform: rotateY(15deg);
    border-radius: 15px 5px 5px 15px;
}

.page-right {
    right: 0;
    transform-origin: left center;
    transform: rotateY(-15deg);
    border-radius: 5px 15px 15px 5px;
}

.bookmark {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 80px;
    background: var(--secondary);
    border-radius: 0 0 5px 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.magic-dust {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--accent), 0 0 30px var(--accent);
    animation: sparkle 2s infinite alternate;
}

.dust-1 {
    top: 20%;
    left: 30%;
}

.dust-2 {
    top: 60%;
    right: 20%;
    background: var(--secondary);
    box-shadow: 0 0 15px var(--secondary);
    animation-delay: 0.5s;
}

.dust-3 {
    top: 30%;
    right: 40%;
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary);
    animation-delay: 1s;
}

@keyframes sparkle {
    0% {
        transform: scale(0.5) translateY(0);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.5) translateY(-20px);
        opacity: 1;
    }
}