/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --text-color: #333333;
    --light-text: #6c757d;
    --background: #ffffff;
    --section-bg: #f8f9fa;
    --card-bg: #ffffff;
    --nav-bg: rgba(255, 255, 255, 0.95);
}

body {
    padding-top: 70px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--background);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    z-index: 9999;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 2px;
    background: var(--text-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: -70px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Modern geometric shapes background */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    opacity: 0.03;
    border-radius: 50%;
    transform: scale(2);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -30%;
    width: 80%;
    height: 80%;
    background: var(--primary-color);
    opacity: 0.03;
    border-radius: 50%;
    transform: scale(1.5);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 3;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.hero-content h2 {
    font-size: 2.2rem;
    margin: 2rem 0;
    color: var(--text-color);
    position: relative;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.highlight {
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
}

.highlight::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: var(--primary-color);
    opacity: 0.1;
    z-index: -1;
    transform: skewX(-15deg);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.cta-buttons .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

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

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

/* Buttons */
.btn {
    padding: 0.8rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-color);
}

.btn.primary {
    background: var(--primary-color);
    color: white;
}

.btn.secondary {
    background: transparent;
    color: var(--primary-color);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Sections */
section {
    padding: 6rem 0;
    background: var(--background);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

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

.about-image {
    width: 80%;
    max-width: 400px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Projects Section */
.projects {
    background: var(--section-bg);
    padding: 6rem 0;
}

.projects-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 3rem;
}

.project-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 255, 132, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
    border: 1px solid rgba(0, 255, 132, 0.1);
}

.project-card.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 255, 132, 0.2);
    border-color: var(--primary-color);
}

.project-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.project-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    aspect-ratio: 1/1;
    width: 100%;
    padding: 1rem;
    background: var(--card-bg);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
}

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

.project-info {
    padding: 2rem;
}

.project-category {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: var(--background);
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
    box-shadow: var(--primary-glow);
}

.project-card.aos-animate .project-category {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.2s;
}

.project-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.project-card.aos-animate .project-info h3 {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.3s;
}

.project-info p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.project-card.aos-animate .project-info p {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.4s;
}

.project-tech {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.project-card.aos-animate .project-tech {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.5s;
}

.project-tech span {
    padding: 0.4rem 1rem;
    background: var(--section-bg);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--primary-color);
    border: 1px solid rgba(0, 255, 132, 0.2);
}

.project-links {
    display: flex;
    gap: 1rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.project-card.aos-animate .project-links {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.6s;
}

.project-links .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
}

/* Featured Project */
.project-card.featured .project-content {
    grid-template-columns: 1.5fr 1fr;
}

.project-card.featured .project-image {
    aspect-ratio: 1/1;
    padding: 1.5rem;
}

/* Skills Section */
.skills {
    background: var(--section-bg);
    padding: 6rem 0;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(140px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.skill-item {
    padding: 1.5rem 1rem;
    background: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    min-height: 120px;
    border: 1px solid rgba(0, 255, 132, 0.1);
}

.skill-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 255, 132, 0.2);
    border-color: var(--primary-color);
}

.skill-item i {
    font-size: 2rem;
    color: var(--primary-color);
    text-shadow: var(--primary-glow);
    margin-bottom: 0.2rem;
}

.skill-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
    text-align: center;
}

/* Contact Section */
.contact {
    background: var(--section-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid rgba(0, 255, 132, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    background: var(--card-bg);
    color: var(--text-color);
}

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

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 255, 132, 0.2);
}

/* Footer */
.footer {
    background: var(--section-bg);
    color: var(--text-color);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

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

.footer-section h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    width: 100%;
}

.footer-section ul li {
    margin-bottom: 1rem;
    text-align: left;
}

.footer-section ul li a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    justify-content: flex-start;
    width: 100%;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 132, 0.1);
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--background);
    box-shadow: var(--primary-glow);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-info i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-bottom p {
    margin: 0.5rem 0;
    color: var(--text-color);
}

.footer-bottom i {
    color: #ff4d4d;
    margin: 0 0.3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        padding: 1rem;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
        z-index: 1000;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        width: 100%;
        max-width: 300px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        padding: 0 2rem;
    }

    .cta-buttons .btn {
        width: 100%;
        padding: 0.8rem 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .footer-section {
        align-items: flex-start;
    }

    .footer-section h3::after {
        left: 0;
        transform: none;
    }

    .social-links {
        justify-content: flex-start;
    }

    .contact-info li {
        justify-content: flex-start;
    }

    .skills-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        padding: 0 1rem;
        max-width: 500px;
    }

    .skill-item {
        padding: 1.2rem 1rem;
        min-height: 110px;
    }

    .skill-item i {
        font-size: 1.8rem;
    }

    .skill-item span {
        font-size: 0.85rem;
    }

    .project-image {
        aspect-ratio: 1/1;
        height: auto;
        padding: 0.8rem;
    }
}

@media (max-width: 1024px) {
    .skills-grid {
        grid-template-columns: repeat(4, minmax(130px, 1fr));
        max-width: 600px;
    }

    .project-image {
        aspect-ratio: 1/1;
        height: auto;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 300px;
        gap: 0.8rem;
    }

    .skill-item {
        min-height: 100px;
        padding: 1rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.about-content,
.projects-grid,
.skills-grid,
.contact-content {
    animation: fadeIn 1s ease-out;
}

/* Graphics Design Section */
.graphics {
    background: var(--background);
    padding: 6rem 0;
}

.graphics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.design-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: var(--card-bg);
    border: 1px solid rgba(0, 255, 132, 0.1);
}

.design-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 255, 132, 0.2);
    border-color: var(--primary-color);
}

.design-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

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

.design-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95), transparent);
    padding: 2rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.design-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.design-overlay p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.design-overlay .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    background: var(--primary-color);
    color: white;
    border: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease 0.1s;
}

.design-card:hover .design-overlay .btn {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design for Graphics Section */
@media (max-width: 1024px) {
    .graphics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .graphics-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 2rem auto 0;
    }

    .design-image {
        height: 250px;
    }

    .design-overlay {
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
    }

    .design-overlay .btn {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design for Projects */
@media (max-width: 1024px) {
    .project-content {
        grid-template-columns: 1fr;
    }

    .project-card.featured .project-content {
        grid-template-columns: 1fr;
    }

    .project-image {
        aspect-ratio: 1/1;
    }

    .project-info {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .projects-grid {
        gap: 3rem;
    }

    .project-info h3 {
        font-size: 1.5rem;
    }

    .project-image {
        aspect-ratio: 1/1;
    }
}

/* Remove neon animations */
@keyframes neonPulse {
    0%, 50%, 100% {
        text-shadow: none;
    }
}

.highlight, .logo a {
    animation: none;
}

/* Certificates Section */
.certificates {
    padding: 6rem 0;
    background: var(--section-bg);
}

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

.certificate-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.certificate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.certificate-image {
    position: relative;
    aspect-ratio: 1/1.4142; /* A4 aspect ratio */
    width: 100%;
    padding: 1rem;
    background: var(--card-bg);
}

.certificate-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.certificate-card:hover .certificate-image img {
    transform: scale(1.02);
}

.certificate-info {
    padding: 1.5rem;
}

.certificate-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.certificate-info p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.certificate-actions {
    display: flex;
    gap: 1rem;
}

.certificate-actions .btn {
    flex: 1;
    text-align: center;
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
}

/* Responsive Design for Certificates */
@media (max-width: 1024px) {
    .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .certificates-grid {
        grid-template-columns: 1fr;
    }

    .certificate-image {
        aspect-ratio: 1/1.4142;
    }
}

/* Course Section */
.course {
    padding: 4rem 0;
    background: var(--section-bg);
}

.course-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.course-image {
    position: relative;
    aspect-ratio: 16/9;
    width: 100%;
    padding: 0.8rem;
    background: var(--card-bg);
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.course-info {
    padding: 1.2rem;
}

.course-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.course-description {
    color: var(--light-text);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.course-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.feature i {
    color: var(--primary-color);
    font-size: 1rem;
}

.course-cta {
    display: flex;
    gap: 1rem;
}

.course-cta .btn {
    flex: 1;
    text-align: center;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

/* Responsive Design for Course */
@media (max-width: 768px) {
    .course {
        padding: 3rem 0;
    }

    .course-features {
        grid-template-columns: 1fr;
    }

    .course-cta {
        flex-direction: column;
    }
}

/* Enrollment Popup */
.enrollment-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.close-popup {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.close-popup:hover {
    color: var(--primary-color);
}

.popup-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--section-bg);
    border-radius: 8px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-color);
    padding: 0.8rem;
    background: var(--card-bg);
    border-radius: 8px;
    margin-bottom: 0.8rem;
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    min-width: 20px;
}

.info-item span {
    flex: 1;
}

.call-btn, .email-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.call-btn {
    background: var(--primary-color);
    color: white;
}

.email-btn {
    background: var(--section-bg);
    color: var(--text-color);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.call-btn:hover, .email-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.call-btn i, .email-btn i {
    font-size: 1rem;
}

.enrollment-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.enrollment-form input,
.enrollment-form textarea {
    padding: 0.8rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    background: var(--section-bg);
    color: var(--text-color);
}

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

.enrollment-form button {
    margin-top: 1rem;
}

/* Animation for popup */
@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.popup-content {
    animation: popupFadeIn 0.3s ease-out;
}

/* Hero Section Animations */
.animated-text {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.typing-text {
    position: relative;
    display: inline-block;
}

.typing-text::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    height: 80%;
    width: 2px;
    background: var(--primary-color);
    animation: blink 0.7s infinite;
}

.profession {
    position: relative;
    overflow: hidden;
}

.profession .text-wrapper {
    position: relative;
    display: inline-block;
    padding-bottom: 0.1em;
}

.profession .line {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform-origin: 100% 100%;
    animation: underline 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.profession .letters {
    display: inline-block;
    opacity: 0;
    animation: slideIn 1s ease forwards 0.5s;
}

.highlight-fade {
    display: inline-block;
    animation: colorPulse 2s infinite;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 1s;
}

/* Keyframe Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

@keyframes underline {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes colorPulse {
    0%, 100% {
        color: var(--primary-color);
    }
    50% {
        color: var(--text-color);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.visitor-stats {
    padding: 40px 0;
    background: #f8f9fa;
}

.stats-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 400px;
    margin: 0 auto;
}

.stats-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.stats-header i {
    font-size: 24px;
    color: #007bff;
}

.stats-header h2 {
    margin: 0;
    color: #333;
    font-size: 24px;
}

.total-visitors {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.visitor-icon {
    background: #007bff;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visitor-icon i {
    font-size: 24px;
}

.visitor-info h3 {
    margin: 0;
    color: #666;
    font-size: 16px;
}

.count {
    font-size: 36px;
    font-weight: bold;
    color: #333;
}

@media (max-width: 768px) {
    .stats-card {
        padding: 20px;
    }
    
    .total-visitors {
        flex-direction: column;
        text-align: center;
    }
}

.floating-counter {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    animation: slideIn 0.5s ease-out;
}

.counter-icon {
    background: #007bff;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-icon i {
    font-size: 14px;
}

.counter-number {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Add hover effect */
.floating-counter:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

/* Add pulse animation to the counter */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.counter-number span {
    display: inline-block;
    animation: pulse 2s infinite;
}

.fiverr-btn {
    background: #1dbf73;
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 600;
    margin-left: 15px;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(30,191,115,0.08);
    border: none;
    text-decoration: none;
    display: inline-block;
}

.fiverr-btn:hover {
    background: #17a864;
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(30,191,115,0.15);
}