        :root {
            --primary: #e91e63;
            --secondary: #ff5c93;
            --dark: #222;
            --light: #fff8fb;
            --border: #f4d6e2;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
            background: #fff;
            color: #333;
        }

        a {
            text-decoration: none;
        }

        /* ======================
            NAVBAR
        ====================== */

        .navbar-custom {
            background: #fff;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
        }

        .brand-logo {
            width: 180px;
        }

        .brand-text {
            color: var(--primary);
            font-size: 32px;
            font-weight: 700;
            line-height: 1;
        }

        .brand-sub {
            font-size: 12px;
            letter-spacing: 3px;
            color: #b88a3b;
        }

        .nav-link {
            color: #333 !important;
            font-weight: 500;
            margin: 0 10px;
            position: relative;
        }

        .nav-link:hover {
            color: var(--primary) !important;
        }

        .nav-link.active {
            color: var(--primary) !important;
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--primary);
            border-radius: 10px;
        }

        .btn-whatsapp {
            background: #25d366;
            color: #fff;
            border: none;
            border-radius: 50px;
            padding: 12px 22px;
            font-weight: 600;
        }

        .btn-whatsapp:hover {
            background: #1fb85a;
            color: white;
        }

        /* ======================
            HERO
        ====================== */

        .hero-section {
            background:
                linear-gradient(90deg,
                    rgba(255, 255, 255, 1) 0%,
                    rgba(255, 248, 251, 1) 55%,
                    rgba(255, 233, 242, 1) 100%);
            min-height: 90vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-content h1 {
            font-size: 58px;
            font-weight: 800;
            color: #111;
            line-height: 1.15;
            margin-bottom: 20px;
        }

        .hero-content h1 span {
            color: var(--primary);
        }

        .hero-content p {
            font-size: 18px;
            color: #666;
            line-height: 1.9;
            margin-bottom: 35px;
        }

        .btn-call {
            background: var(--primary);
            color: #fff;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 600;
            border: none;
        }

        .btn-call:hover {
            background: #d81558;
            color: #fff;
        }

        .btn-outline-custom {
            border: 2px solid #25d366;
            color: #25d366;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 600;
        }

        .btn-outline-custom:hover {
            background: #25d366;
            color: white;
        }

        .hero-image {
            position: relative;
            text-align: center;
        }

        .machine-wrapper {
            position: relative;
        }

        .machine-wrapper img {
            max-width: 100%;
            animation: float 4s ease-in-out infinite;
        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-10px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        .hero-bg-circle {
            position: absolute;
            width: 600px;
            height: 700px;
            background: rgba(233, 30, 99, .08);
            border-radius: 50%;
            right: -180px;
            top: -100px;
            z-index: 0;
        }

        .hero-bg-circle2 {
            position: absolute;
            width: 250px;
            height: 250px;
            background: rgba(233, 30, 99, .08);
            border-radius: 50%;
            left: -100px;
            bottom: -80px;
        }

        .curve-bottom {
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;

        }

        .curve-bottom svg {
            display: block;
        }


        /* ======================
            SECTION TITLE
        ====================== */

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            color: var(--primary);
            font-weight: 700;
        }

        /* ======================
            MOBILE
        ====================== */

        @media(max-width:991px) {

            .hero-section {
                padding-top: 60px;
                text-align: center;
            }

            .hero-content {
                margin-bottom: 50px;
            }

            .hero-content h1 {
                font-size: 42px;
            }

            .brand-text {
                font-size: 24px;
            }
        }

        @media(max-width:768px) {

            .hero-content h1 {
                font-size: 34px;
            }

            .hero-content p {
                font-size: 15px;
            }

            .btn-call,
            .btn-outline-custom {
                width: 100%;
                margin-bottom: 12px;
            }

            .hero-bg-circle {
                display: none;
            }
        }

        /* ======================
    SERVICES
====================== */
/* ==========================
   SERVICES SECTION
========================== */

.services-section {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.services-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.services-section .section-title h2 {
    font-size: 38px;
    font-weight: 700;
    color: #e91e63;
    margin-bottom: 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 25px;
    align-items: start;
}

.service-item {
    text-align: center;
    transition: .3s ease;
}

.service-circle {
    width: 95px;
    height: 95px;
    margin: 0 auto 15px;
    border: 2px solid #f4c7da;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease;
    background: #fff;
}

.service-circle i {
    font-size: 38px;
    color: #e91e63;
    transition: .3s ease;
}

.service-item h6 {
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
    color: #333;
    margin: 0;
}

/* Hover */

.service-item:hover .service-circle {
    background: #e91e63;
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(233, 30, 99, .25);
}

.service-item:hover .service-circle i {
    color: #fff;
}

.service-item:hover h6 {
    color: #e91e63;
}

/* ==========================
   LARGE TABLET
========================== */

@media (max-width: 1199px) {

    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

}

/* ==========================
   TABLET
========================== */

@media (max-width: 991px) {

    .services-section {
        padding: 70px 0;
    }

    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }

    .service-circle {
        width: 85px;
        height: 85px;
    }

    .service-circle i {
        font-size: 32px;
    }

}

/* ==========================
   MOBILE
========================== */

@media (max-width: 767px) {

    .services-section {
        padding: 60px 0;
    }

    .services-section .section-title {
        margin-bottom: 35px;
    }

    .services-section .section-title h2 {
        font-size: 30px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 15px;
        padding: 0 10px;
    }

    .service-circle {
        width: 75px;
        height: 75px;
        margin-bottom: 12px;
    }

    .service-circle i {
        font-size: 28px;
    }

    .service-item h6 {
        font-size: 13px;
        line-height: 1.5;
    }

}

/* ==========================
   SMALL MOBILE
========================== */

@media (max-width: 480px) {

    .services-grid {
        gap: 20px 10px;
    }

    .service-circle {
        width: 68px;
        height: 68px;
    }

    .service-circle i {
        font-size: 24px;
    }

    .service-item h6 {
        font-size: 12px;
        line-height: 1.4;
    }

}

        /* ======================
    ABOUT
====================== */

        .about-section {
            padding: 100px 0;
            background: #fff8fb;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            width: 100%;
        }

        .about-tag {
            background: #ffe0eb;
            color: #e91e63;
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 20px;
        }

        .about-content h2 {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 25px;
        }

        .about-content p {
            color: #666;
            line-height: 2;
            margin-bottom: 15px;
        }

        .counter-box {
            background: white;
            border-radius: 20px;
            text-align: center;
            padding: 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
        }

        .counter-box h3 {
            color: #e91e63;
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .counter-box span {
            color: #666;
            font-size: 14px;
        }

        /* MOBILE */

        @media(max-width:991px) {

            .about-content {
                margin-top: 40px;
            }

            .about-content h2 {
                font-size: 32px;
            }
        }

        /* ==========================
    TRAINING
========================== */

        .training-section {
            background: #fff;
            padding: 100px 0;
        }

        .training-card {
            background: #fff;
            border-radius: 20px;
            padding: 35px;
            text-align: center;
            border: 1px solid #eee;
            transition: .4s;
            height: 100%;
        }

        .training-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
        }

        .training-card i {
            font-size: 50px;
            color: #e91e63;
            margin-bottom: 20px;
        }

        .training-card h5 {
            font-weight: 700;
        }

        /* ==========================
    VIDEOS
========================== */

        .video-section {
            background: #fff8fb;
            padding: 100px 0;
        }

        .video-feature {
            display: block;
            position: relative;
            overflow: hidden;
            border-radius: 25px;
        }

        .video-feature img {
            width: 100%;
            height: 520px;
            object-fit: cover;
            transition: .5s;
        }

        .video-feature:hover img {
            transform: scale(1.08);
        }

        .video-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(transparent,
                    rgba(0, 0, 0, .85));
        }

        .play-btn {
            width: 90px;
            height: 90px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #e91e63;
            font-size: 45px;
        }

        .video-content {
            position: absolute;
            bottom: 30px;
            left: 30px;
            color: white;
        }

        .video-content h3 {
            font-weight: 700;
        }

        .small-video-card {
            display: block;
            position: relative;
            overflow: hidden;
            border-radius: 20px;
        }

        .small-video-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: .5s;
        }

        .small-video-card:hover img {
            transform: scale(1.08);
        }

        .small-play {
            position: absolute;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: white;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #e91e63;
            font-size: 28px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .video-stats {
            margin-top: 70px;
            background: white;
            padding: 40px;
            border-radius: 25px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
        }

        .video-stats h2 {
            color: #e91e63;
            font-weight: 700;
        }

        .video-stats p {
            margin: 0;
            color: #666;
        }

        /* ==========================
    GALLERY
========================== */

        .gallery-section {
            padding: 50px 0;
            background: #fff;
        }

        /* ✅ Clean responsive grid */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            grid-auto-flow: dense;
            gap: 20px;
        }

        /* base item */
        .gallery-item {
            border-radius: 18px;
            overflow: hidden;
            position: relative;
        }

        /* image */
        .gallery-item img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            transition: 0.4s ease;
        }

        /* hover */
        .gallery-item:hover img {
            transform: scale(1.06);
        }

        /* 🔥 variations */
        .gallery-item.tall {
            grid-row: span 2;
        }

        .gallery-item.wide {
            grid-column: span 2;
        }

        /* responsive fix */
        @media (max-width: 768px) {
            .gallery-item.wide {
                grid-column: span 1;
            }
        }

        /* ==========================
    STUDENT SHOWCASE
========================== */

        .student-showcase {
            padding: 100px 0;
            background: #fff8fb;
        }

        .showcase-badge {
            background: #ffe4ee;
            color: #e91e63;
            padding: 8px 18px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 20px;
        }

        .showcase-content h2 {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .showcase-content p {
            color: #666;
            line-height: 2;
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin-top: 25px;
        }

        .feature-list li {
            margin-bottom: 15px;
            font-size: 17px;
        }

        .feature-list i {
            color: #e91e63;
            margin-right: 10px;
        }

        /* ==========================
    ACHIEVEMENT
========================== */

        .achievement-section {
            padding: 80px 0;
        }

        .achievement-box {
            background: linear-gradient(135deg,
                    #e91e63,
                    #ff5c93);
            padding: 60px;
            border-radius: 30px;
            color: white;
        }

        .achievement-box h2 {
            font-weight: 700;
            margin-bottom: 15px;
        }

        /* ==========================
    CTA
========================== */

        .contact-strip {
            padding: 80px 0;
            background: white;
        }

        .contact-strip h3 {
            font-weight: 700;
            margin-bottom: 10px;
        }

        .contact-strip p {
            color: #666;
        }

        /* ==========================
    MOBILE
========================== */

        @media(max-width:991px) {

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .gallery-item.large {
                grid-row: auto;
            }

            .showcase-content {
                margin-top: 40px;
            }

            .showcase-content h2 {
                font-size: 32px;
            }

            .achievement-box {
                padding: 35px;
                text-align: center;
            }

            .contact-strip {
                text-align: center;
            }
        }


        /* ==========================
    REVIEWS
========================== */

        .review-section {
            padding: 100px 0;
            background: #fff8fb;
        }

        .review-card {
            background: #fff;
            border-radius: 20px;
            padding: 30px;
            height: 100%;
            box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
        }

        .stars {
            color: #ffc107;
            font-size: 22px;
            margin-bottom: 15px;
        }

        .review-card p {
            color: #666;
            line-height: 1.9;
        }

        .review-user {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 20px;
        }

        .review-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #e91e63;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
        }


        /* ==========================
    CONTACT SECTION
========================== */

.contact-section {
    padding: 100px 0;
    background: #ffffff;
}

.contact-logo {
    width: 180px;
    margin-bottom: 20px;
}

.contact-info h2 {
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-desc {
    color: #666;
    line-height: 1.9;
    margin-bottom: 35px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(233, 30, 99, .10);
    color: #e91e63;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-item h6 {
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-item span {
    color: #666;
}

.social-icons {
    margin-top: 35px;
}

.social-icons a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #e91e63;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: .3s;
    font-size: 18px;
}

.social-icons a:hover {
    transform: translateY(-4px);
    background: #c2185b;
}

/* ==========================
    FORM
========================== */

.contact-form-wrapper {
    background: #fff;
    padding: 45px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0,0,0,.08);
}

.form-badge {
    display: inline-block;
    background: #ffe4ef;
    color: #e91e63;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-form-wrapper h3 {
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-form-wrapper p {
    color: #666;
    margin-bottom: 25px;
}

.contact-form-wrapper .form-control,
.contact-form-wrapper .form-select {
    border-radius: 12px;
    height: 55px;
    border: 1px solid #ececec;
}

.contact-form-wrapper textarea.form-control {
    height: auto;
}

.contact-form-wrapper .form-control:focus,
.contact-form-wrapper .form-select:focus {
    border-color: #e91e63;
    box-shadow: none;
}

.contact-form-wrapper button {
    height: 55px;
    font-weight: 600;
}

/* ==========================
    COPYRIGHT
========================== */

.copyright-section {
    background: #f8f8f8;
    padding: 20px 0;
    text-align: center;
}

.copyright-section p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

/* ==========================
    SCROLL TOP
========================== */

#scrollTopBtn {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: #e91e63;
    color: #fff;
    display: none;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(233,30,99,.35);
    transition: .3s;
}

#scrollTopBtn:hover {
    transform: translateY(-5px);
}

/* ==========================
    MOBILE
========================== */

@media(max-width:991px){

    .contact-section {
        padding: 70px 0;
    }

    .contact-info {
        text-align: center;
    }

    .contact-item {
        justify-content: center;
    }

    .contact-form-wrapper {
        padding: 30px;
    }
}