*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
        :root {
            --primary: #6c63ff;
            --primary-dark: #4d44db;
            --primary-light: #a29bfe;
            --accent: #ff6584;
            --dark: #2d3748;
            --light: #f7fafc;
            --gray: #a0aec0;
            --text-muted: #718096;
            --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
            --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
            --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            --radius: 12px;
            --radius-lg: 16px;
            --radius-xl: 24px;
        }

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

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: var(--light);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            line-height: 1.2;
        }

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

        section {
            padding: 100px 0;
        }

        .section-pad {
            padding: 80px 0;
        }

        .section-tag {
            display: inline-block;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--primary);
            margin-bottom: 15px;
            background: rgba(108, 99, 255, 0.1);
            padding: 6px 12px;
            border-radius: 50px;
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--dark);
        }

        .section-text {
            font-size: 1.1rem;
            color: var(--text-muted);
            max-width: 700px;
            margin-bottom: 40px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            font-size: 1rem;
            gap: 8px;
        }

        .btn-primary {
            background: var(--gradient);
            color: white;
            box-shadow: var(--shadow-md);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(108, 99, 255, 0.3);
        }

        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

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

        .btn-large {
            padding: 16px 32px;
            font-size: 1.1rem;
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: white;
            box-shadow: var(--shadow-sm);
            z-index: 1000;
            transition: var(--transition);
        }

        header.scrolled {
            box-shadow: var(--shadow-lg);
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--dark);
        }

        .logo span {
            color: var(--primary);
        }

        #nav-toggle {
            display: none;
        }

        .nav-toggle-label {
            display: none;
            cursor: pointer;
            padding: 10px;
        }

        .nav-toggle-label span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: var(--dark);
            margin: 5px 0;
            transition: var(--transition);
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        nav a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }

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

        nav a.active {
            color: var(--primary);
        }

        nav a.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--gradient);
            border-radius: 2px;
        }

        .nav-cta {
            background: var(--gradient);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 600;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
            color: white;
        }

        /* Hero Section */
        .hero {
            margin-top: 80px;
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -200px;
            right: -200px;
            width: 600px;
            height: 600px;
            background: var(--gradient);
            border-radius: 50%;
            opacity: 0.1;
            z-index: -1;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -300px;
            left: -300px;
            width: 800px;
            height: 800px;
            background: var(--gradient);
            border-radius: 50%;
            opacity: 0.05;
            z-index: -1;
        }

        .hero-content {
            max-width: 600px;
        }

        .hero-title {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-title span {
            color: var(--primary-dark);
        }

        .lead {
            font-size: 1.2rem;
            color: var(--text-muted);
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .cta-group {
            display: flex;
            gap: 20px;
            margin-bottom: 40px;
        }

        .hero-scroll {
            text-align: center;
        }

        .hero-scroll a {
            display: inline-flex;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: white;
            color: var(--primary);
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            animation: bounce 2s infinite;
        }

        .hero-scroll a:hover {
            transform: translateY(5px);
            animation: none;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
            40% {transform: translateY(-10px);}
            60% {transform: translateY(-5px);}
        }

        /* Stats Section */
        .stats-section {
            background: var(--gradient);
            color: white;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
        }

        .stats-section::after {
            content: '';
            position: absolute;
            bottom: -150px;
            left: -150px;
            width: 400px;
            height: 400px;
            background: rgba(255,255,255,0.03);
            border-radius: 50%;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .stat-card {
            padding: 40px 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: var(--radius);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: var(--transition);
        }

        .stat-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            background: linear-gradient(to right, white, #f0f0f0);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1;
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
            font-weight: 500;
        }

        /* About Section */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-img {
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .about-img img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .about-img:hover img {
            transform: scale(1.05);
        }

        .learning-path {
            margin-top: 40px;
            position: relative;
        }

        .learning-path::before {
            content: '';
            position: absolute;
            left: 20px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, var(--primary), rgba(108, 99, 255, 0.2));
        }

        .path-step {
            display: flex;
            gap: 20px;
            margin-bottom: 25px;
            align-items: flex-start;
            position: relative;
        }

        .step-number {
            width: 42px;
            height: 42px;
            background: var(--gradient);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            flex-shrink: 0;
            position: relative;
            z-index: 1;
            box-shadow: 0 4px 10px rgba(108, 99, 255, 0.3);
        }

        .step-content {
            padding-top: 5px;
        }

        .step-content h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: var(--dark);
        }

        .step-content p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.5;
        }

        /* Domains Section */
        .cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .card {
            background: white;
            border-radius: var(--radius);
            padding: 40px 30px;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            border: 1px solid rgba(0,0,0,0.05);
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .card-icon {
            width: 60px;
            height: 60px;
            background: rgba(108, 99, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            color: var(--primary);
            font-size: 1.5rem;
        }

        .card-title {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .card-text {
            color: var(--text-muted);
            margin-bottom: 25px;
            line-height: 1.6;
        }

        .card-link {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: var(--transition);
        }

        .card-link:hover {
            gap: 10px;
        }

        /* Project Showcase */
        .project-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }

        .project-card {
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            height: 300px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .project-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-5px);
        }

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

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

        .project-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
            color: white;
            padding: 25px;
            transform: translateY(100%);
            transition: transform 0.4s ease-out;
        }

        .project-card:hover .project-overlay {
            transform: translateY(0);
        }

        .project-overlay h3 {
            margin-bottom: 8px;
            font-size: 1.3rem;
        }

        .project-overlay p {
            font-size: 0.95rem;
            opacity: 0.9;
            margin-bottom: 15px;
        }

        .project-link {
            color: white;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 0.95rem;
            transition: opacity 0.3s ease;
        }

        .project-link:hover {
            opacity: 0.9;
        }

        .project-link::after {
            content: '→';
            transition: transform 0.3s ease;
        }

        .project-link:hover::after {
            transform: translateX(3px);
        }

        /* Mentors Section */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .team-card {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .team-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
        }

        .mentor-info {
            padding: 25px;
        }

        .mentor-info h4 {
            font-size: 1.3rem;
            margin-bottom: 5px;
        }

        .mentor-info p {
            color: var(--text-muted);
            margin-bottom: 15px;
        }

        .mentor-specialty {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .mentor-specialty span {
            background: rgba(108, 99, 255, 0.1);
            color: var(--primary);
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        /* Pricing Section */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .pricing-card {
            background: white;
            border-radius: var(--radius-lg);
            padding: 40px 30px;
            box-shadow: var(--shadow-md);
            position: relative;
            transition: var(--transition);
            border: 1px solid rgba(0,0,0,0.05);
        }

        .pricing-card:hover {
            box-shadow: var(--shadow-lg);
        }

        .pricing-card.featured {
            border: 2px solid var(--primary);
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(108, 99, 255, 0.15);
        }

        .pricing-badge {
            position: absolute;
            top: -12px;
            right: 30px;
            background: var(--primary-dark);
            color: white;
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .pricing-header {
            margin-bottom: 25px;
            text-align: center;
            padding-bottom: 25px;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .pricing-header h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .price {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
        }

        .price span {
            font-size: 1rem;
            font-weight: 400;
            color: var(--text-muted);
        }

        .pricing-features {
            list-style: none;
            margin: 30px 0;
        }

        .pricing-features li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .pricing-features i {
            margin-top: 3px;
            flex-shrink: 0;
        }

        .pricing-features i.fa-check {
            color: var(--primary);
        }

        .pricing-features i.fa-times {
            color: var(--text-muted);
            opacity: 0.6;
        }

        /* Testimonials Section */
        .testi-wrap {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .testi-card {
            background: white;
            border-radius: var(--radius);
            padding: 30px;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
        }

        .testi-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .testi-rating {
            color: #ffc107;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        .testi-rating i {
            margin-right: 3px;
        }

        .testi-text {
            font-size: 1rem;
            color: var(--dark);
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.6;
            position: relative;
        }

        .testi-text::before {
            content: '"';
            position: absolute;
            top: -15px;
            left: -10px;
            font-size: 4rem;
            color: rgba(108, 99, 255, 0.1);
            z-index: 0;
        }

        .testi-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .testi-author img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid white;
            box-shadow: var(--shadow-sm);
        }

        .testi-name {
            font-weight: 600;
            color: var(--dark);
        }

        .testi-role {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        /* FAQ Section */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 15px;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .faq-item:hover {
            box-shadow: var(--shadow-md);
        }

        .faq-question {
            width: 100%;
            padding: 20px 25px;
            text-align: left;
            background: white;
            border: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .faq-question:hover {
            background: #f9f9f9;
        }

        .faq-question i {
            transition: var(--transition);
            color: var(--primary);
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            background: white;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .faq-answer p {
            padding: 0 25px 25px;
            margin: 0;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* CTA Section */
        .cta-band {
            background: var(--gradient);
            color: white;
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-band::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
        }

        .cta-band h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: white;
        }

        .cta-band p {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-flex {
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .cta-band .btn-outline {
            color: white;
            border-color: white;
        }

        .cta-band .btn-outline:hover {
            background: white;
            color: var(--primary);
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding-top: 80px;
        }

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

        .footer-col h5 {
            font-size: 1.1rem;
            margin-bottom: 20px;
            color: white;
        }

        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .footer-logo span {
            color: var(--primary);
        }

        .footer-col p {
            color: rgba(255,255,255,0.7);
            margin-bottom: 25px;
            line-height: 1.6;
        }

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

        .footer-col li {
            margin-bottom: 12px;
        }

        .footer-col a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .footer-col a:hover {
            color: white;
            transform: translateX(5px);
        }

        .newsletter {
            margin-top: 30px;
        }

        .newsletter h5 {
            margin-bottom: 15px;
        }

        .newsletter form {
            display: flex;
            gap: 10px;
        }

        .newsletter input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 50px;
            font-family: inherit;
            font-size: 0.95rem;
            background: rgba(255,255,255,0.15);
            color: white;
            transition: var(--transition);
        }

        .newsletter input::placeholder {
            color: rgba(255,255,255,0.7);
        }

        .newsletter input:focus {
            outline: none;
            background: rgba(255,255,255,0.25);
        }

        .newsletter button {
            background: white;
            color: var(--primary);
            border: none;
            padding: 0 25px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }

        .newsletter button:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
        }

        .footer-bottom {
            background: rgba(0,0,0,0.2);
            padding: 20px 0;
        }

        .footer-bottom-flex {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: rgba(255,255,255,0.5);
            font-size: 0.9rem;
        }

        .footer-links {
            display: flex;
            gap: 20px;
        }

        .footer-links a {
            color: rgba(255,255,255,0.5);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: white;
        }

        /* Scroll To Top */
        .to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--gradient);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-lg);
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
        }

        .to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .to-top:hover {
            transform: translateY(-5px);
        }

        /* Responsive Styles */
        @media (max-width: 1024px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .about-grid {
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            section {
                padding: 80px 0;
            }
            
            .section-pad {
                padding: 60px 0;
            }
            
            .hero {
                padding: 100px 0;
                text-align: center;
            }
            
            .hero-content {
                max-width: 100%;
            }
            
            .cta-group {
                justify-content: center;
            }
            
            .about-grid {
                grid-template-columns: 1fr;
            }
            
            .about-img {
                order: -1;
                max-width: 600px;
                margin: 0 auto;
            }
            
            .nav-toggle-label {
                display: block;
            }
            
            nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: white;
                box-shadow: var(--shadow-lg);
                padding: 20px;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.4s ease;
            }
            
            #nav-toggle:checked ~ nav {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            
            nav ul {
                flex-direction: column;
                gap: 15px;
            }
            
            nav a {
                display: block;
                padding: 10px 0;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .cta-flex {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-flex .btn {
                width: 100%;
                max-width: 300px;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .card {
                padding: 30px 20px;
            }
            
            .pricing-grid {
                grid-template-columns: 1fr;
            }
            
            .pricing-card.featured {
                transform: none;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-bottom-flex {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 10px;
            }
        }

        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

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

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

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

        .delay-3 {
            transition-delay: 0.6s;
        }
