:root {
            --primary: #FFFFFF;
            --secondary: #F8FAFC;
            --accent: #EC4899;
            --accent-secondary: #3B82F6;
            --accent-tertiary: #8B5CF6;
            --text: #0F172A;
            --text-dim: #444;
            --surface: #F8F9FE;
            --border: #E0E7FF;
            --gradient-start: #F9A8D4;
            --gradient-mid: #A78BFA;
            --gradient-end: #60A5FA;
        }

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

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #FDF2F8 0%, #EFF6FF 100%);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 70%, rgba(167, 139, 250, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(96, 165, 250, 0.1) 0%, transparent 50%);
            z-index: 0;
            animation: gradientShift 15s ease infinite;
        }

        @keyframes gradientShift {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(30px, -30px) scale(1.05); }
            66% { transform: translate(-30px, 30px) scale(0.95); }
        }

        body::after {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(90deg, rgba(236, 72, 153, 0.02) 1px, transparent 1px),
                linear-gradient(rgba(59, 130, 246, 0.02) 1px, transparent 1px);
            background-size: 60px 60px;
            z-index: 0;
            opacity: 0.5;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 1;
        }

        header {
            padding: 1rem 0;
            position: sticky;
            top: 0;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px) saturate(180%);
            z-index: 100;
            border-bottom: 1px solid rgba(224, 231, 255, 0.8);
            box-shadow: 0 4px 24px rgba(167, 139, 250, 0.08);
        }

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

        .logo {
            font-family: 'Poppins', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #EC4899 0%, #A78BFA 50%, #60A5FA 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.02em;
            position: relative;
            display: flex;
            align-items: center;
            gap: 0.7rem;
        }

        .logo img {
            width: 400px;
            object-fit: contain;
            animation: logoFloat 3s ease-in-out infinite;
        }

        @keyframes logoFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-5px); }
        }

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

        .nav-links a {
            color: var(--text);
            text-decoration: none;
            font-size: 17px;
            font-weight: 500;
            transition: all 0.3s;
            font-family: 'Poppins', sans-serif;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #EC4899, #60A5FA);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            background: linear-gradient(135deg, #EC4899, #60A5FA);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .cta-button {
            background: linear-gradient(135deg, #EC4899 0%, #A78BFA 50%, #60A5FA 100%);
            color: white;
            padding: 0.7rem 1.5rem;
            border: none;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 0.9rem;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(167, 139, 250, 0.4);
            position: relative;
            overflow: hidden;
            text-decoration: none;
            display: inline-block;
        }

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

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

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(167, 139, 250, 0.5);
        }

        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 101;
        }

        .mobile-menu-btn span {
            display: block;
            width: 25px;
            height: 3px;
            background: var(--text);
            margin: 4px 0;
            transition: all 0.3s;
            border-radius: 3px;
        }

        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(7px, 7px);
        }

        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 75px;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            padding: 2rem;
            box-shadow: 0 10px 40px rgba(167, 139, 250, 0.15);
            z-index: 99;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .mobile-menu.active {
            display: block;
            max-height: 500px;
        }

        .mobile-menu ul {
            list-style: none;
            padding: 0;
        }

        .mobile-menu ul li {
            margin: 1.5rem 0;
        }

        .mobile-menu ul li a {
            color: var(--text);
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 600;
            display: block;
            padding: 0.5rem 0;
            transition: all 0.3s;
        }

        .mobile-menu .cta-button {
            display: block;
            text-align: center;
            margin-top: 2rem;
        }

         .hero {
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    background-image: url("hero_banner.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(253, 242, 248, 0.85) 0%, rgba(239, 246, 255, 0.85) 100%);
            z-index: 1;
        }



        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-label {
            display: inline-block;
            background: linear-gradient(135deg, #EC4899 0%, #60A5FA 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            padding: 0.6rem 1.8rem;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 2rem;
            border: 2px solid;
            border-image: linear-gradient(135deg, #EC4899, #60A5FA) 1;
            background-color: rgba(255, 255, 255, 0.9);
        }

        .hero h1 {
            font-family: 'Poppins', sans-serif;
            font-size: 4.8rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #EC4899 0%, #A78BFA 70%, #60A5FA 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.02em;
        }

        .hero .subtitle {
            font-size: 1.3rem;
            color: var(--text-dim);
            max-width: 800px;
            margin: 0 auto 3rem;
            line-height: 1.7;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 4rem auto 0;
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 16px;
            border: 1px solid rgba(224, 231, 255, 0.5);
            box-shadow: 0 8px 32px rgba(167, 139, 250, 0.15);
            transition: all 0.3s;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 48px rgba(167, 139, 250, 0.25);
            background: rgba(255, 255, 255, 0.95);
        }

        .stat-number {
            font-family: 'Poppins', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #EC4899 0%, #A78BFA 50%, #60A5FA 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: var(--text-dim);
            font-size: 0.95rem;
            font-weight: 500;
        }

        section {
            padding: 4rem 0;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-label {
            display: inline-block;
            background: linear-gradient(135deg, #EC4899 0%, #60A5FA 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 1rem;
            border: 2px solid;
            border-image: linear-gradient(135deg, #EC4899, #60A5FA) 1;
        }

        .section-title {
            font-family: 'Poppins', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--text);
            letter-spacing: -0.02em;
        }

        .section-description {
            font-size: 1.2rem;
            color: var(--text-dim);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .about-content {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            padding: 4rem;
            border-radius: 24px;
            border: 1px solid rgba(224, 231, 255, 0.5);
            box-shadow: 0 8px 32px rgba(167, 139, 250, 0.1);
            max-width: 1100px;
            margin: 0 auto;
        }

        .about-content p {
            font-size: 1.1rem;
            color: var(--text-dim);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .highlight-text {
            background: linear-gradient(135deg, #EC4899 0%, #60A5FA 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 600;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            padding: 2.5rem;
            border-radius: 20px;
            border: 1px solid rgba(224, 231, 255, 0.5);
            box-shadow: 0 8px 32px rgba(167, 139, 250, 0.1);
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #EC4899 0%, #A78BFA 50%, #60A5FA 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s;
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 48px rgba(167, 139, 250, 0.2);
        }

        .feature-icon {
            font-size: 4rem;
        }

        .feature-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text);
        }

        .feature-description {
            color: var(--text-dim);
            line-height: 1.7;
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin-top: 1rem;
        }

        .feature-list li {
            padding: 0.6rem 0;
            color: var(--text-dim);
            position: relative;
            padding-left: 1.8rem;
        }

        .feature-list li::before {
            content: '→';
            position: absolute;
            left: 0;
            background: linear-gradient(135deg, #EC4899, #60A5FA);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: bold;
        }

        .training-categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .category-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(224, 231, 255, 0.5);
            box-shadow: 0 8px 32px rgba(167, 139, 250, 0.1);
            transition: all 0.3s;
        }

        .category-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 16px 48px rgba(167, 139, 250, 0.2);
        }

        .category-header {
            background: linear-gradient(135deg, #EC4899 0%, #A78BFA 50%, #60A5FA 100%);
            color: white;
            padding: 1.8rem;
            font-family: 'Poppins', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
        }

        .category-content {
            padding: 2rem;
        }

        .category-content ul {
            list-style: none;
            padding: 0;
        }

        .category-content li {
            padding: 0.7rem 0;
            color: var(--text-dim);
            border-bottom: 1px solid rgba(224, 231, 255, 0.5);
            transition: all 0.2s;
            cursor: pointer;
        }

        .category-content li:hover {
            background: linear-gradient(135deg, #EC4899, #60A5FA);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            padding-left: 0.5rem;
        }

        .category-content li:last-child {
            border-bottom: none;
        }

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

        .gallery-item {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(167, 139, 250, 0.1);
            transition: all 0.3s;
            cursor: pointer;
            position: relative;
            height: 300px;
        }

        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 16px 48px rgba(167, 139, 250, 0.2);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            padding: 2.5rem;
            border-radius: 20px;
            border: 1px solid rgba(224, 231, 255, 0.5);
            box-shadow: 0 8px 32px rgba(167, 139, 250, 0.1);
            text-align: center;
            transition: all 0.3s;
        }

        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 48px rgba(167, 139, 250, 0.2);
        }

        .contact-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .contact-card h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text);
        }

        .contact-card p {
            color: var(--text-dim);
            line-height: 1.4;
            margin: 0.5rem 0;
            font-size: 17px;
        }

        .cta-section {
            background: linear-gradient(135deg, #EC4899 0%, #A78BFA 50%, #60A5FA 100%);
            padding: 6rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 5px;
        }

        .cta-content p {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 2.5rem;
        }

        .cta-content .cta-button {
            background: white;
            color: #EC4899;
            font-size: 1.1rem;
            padding: 1.2rem 3rem;
        }

        footer {
            background: var(--text);
            color: white;
            padding: 4rem 0 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        .footer-logo img{margin-bottom: 20px;}

        .footer-brand {
            font-family: 'Poppins', sans-serif;
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #EC4899 0%, #A78BFA 50%, #60A5FA 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-description {
            color: #fff;
            line-height: 1.7;
        }

        .footer-section h4 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

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

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

        .footer-links a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s;
            font-size: 16px;
        }

        .footer-links a:hover {
            background: linear-gradient(135deg, #EC4899, #60A5FA);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-bottom {
            border-top: 1px solid rgba(226, 232, 240, 0.1);
            padding-top: 2rem;
            text-align: center;
            color: #fff;
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

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

        .skill-area{width: 100%; float: left; margin-bottom: 3rem;}

        .skill-block {
            width: 100%;
            float: left;
            display: flex;
            justify-content: center;
        }
        
        .skill-block img {
            width: 40%;
            height: auto;
            box-shadow: rgb(0 0 0 / 10%) 0px 5px 15px;
            border-radius: 20px;
            margin: 0 20px;
        }

#about{padding-bottom: 0;}


/* Popup */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-box {
    background: #fff;
    padding: 30px;
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    position: relative;
    animation: popupFade 0.4s ease;
}

.popup-box h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.7rem;
    color: #008DD2;
    font-weight: bold;
}

.popup-box input{
    width: 100%;
    padding: 17px 15px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}

.popup-box select{
    width: 100%;
    padding: 17px 15px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}

.popup-box textarea {
    width: 100%;
    height: 100px;
    padding: 17px 15px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}

.popup-box button {
    width: 100%;
    padding: 20px;
    background: #004372;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 19px;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

@keyframes popupFade {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
/* End popup */


        @media (max-width: 1024px) {
            .hero h1 { font-size: 3.5rem; }
            .section-title { font-size: 2.5rem; }
            .footer-content { grid-template-columns: 1fr 1fr; }
        }

        @media (min-width: 1200px) {
            .skill-container{max-width: 1200px;}
        }

        @media (max-width: 768px) {
            .popup-overlay{padding: 0 15px;}
            .skill-block{flex-direction: column;}
            .skill-block img{width: 100%; margin: 10px 0;}
            .popup-box h3{font-size: 1.3rem;}
            .container { padding: 0 1.5rem; }
            .nav-links, .nav-cta-desktop { display: none; }
            .mobile-menu-btn { display: flex; }
            .logo { font-size: 1.3rem; }
            .logo img{width: 240px; height: auto;}
            .hero {padding: 2rem 0 4rem; min-height: 500px; }
            .hero h1 { font-size: 2rem; }
            .hero .subtitle { font-size: 1.1rem; }
            .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
            section { padding: 4rem 0; }
            .section-title { font-size: 2rem; line-height: 37px;}
            .about-content { padding: 2rem; }
            .features-grid, .training-categories, .contact-grid { grid-template-columns: 1fr; }
            .gallery-grid { grid-template-columns: repeat(2, 1fr); }
            .gallery-item { height: 200px; }
            .cta-content h2 { font-size: 1.5rem; }
            .footer-content { grid-template-columns: 1fr; }
        }

        @media (max-width: 480px) {
            .gallery-grid { grid-template-columns: 1fr; }
            .gallery-item { height: 250px; }
        }