/*
Theme Name: My Awesome Theme
Theme URI: https://example.com/my-awesome-theme
Author: Your Name
Author URI: https://example.com/your-website
Description: A custom theme for my website.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-awesome-theme
*/

/* General Body Styles */
        /* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            color: #555555;
            line-height: 1.6;
        }
        
        a {
            text-decoration: none;
            color: #0066cc;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .btn {
            display: inline-block;
            padding: 10px 20px;
            background-color: #0066cc;
            color: white;
            border-radius: 8px;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        
        .btnkun {
            display: inline-block;
            padding: 10px 20px;
            background: linear-gradient(179.65deg, #fbe700 -27.92%, #ffcd00 102.49%);
            color: #004890;
            border-radius: 6px;
            font-weight: bold;
            transition: all 0.3s;
        }

        .btnkun:hover {
            background: orange;
            color: #fff;
            text-shadow: 1px 2px rgba(0, 0, 0, 0.3);
        }

        .btn:hover {
            background-color: #0055aa;
        }
        
        .btn-secondary {
            background-color: #666;
        }
        
        .btn-secondary:hover {
            background-color: #555;
        }
        
        .btngold {
            padding: 15px 50px;
            color: #FFFFFF !important;
            border: 2px solid #bc9e27;
            border-radius: 6px;
            letter-spacing: 1px;
            font-size: 16px;
            font-family: 'Montserrat', Helvetica, Arial, Lucida, sans-serif !important;
            font-weight: 600 !important;
            text-transform: uppercase !important;
            background-image: linear-gradient(120deg, #ba9c3b 0%, #776203 47%, #f9d966 100%);
        }

        .gold-button {
            color: #004890;
            background-image: linear-gradient(180deg, #f6e27a 20%, #cb9b51 80%);
            font-weight: bold;
            padding: 15px 50px;
            border-radius: 30px;
            margin: 5px;
            border-width: 0;
            display: inline-flex;
            align-items: center;  
            box-shadow: 0 4px 12px 0 rgba(0, 72, 144, 0.4);
            transition: all 0.5s ease;
            justify-content: center;
            text-align: center;
            text-decoration: none;  
            position: relative;
            overflow: hidden; 
        }
		.gold-button:hover{
			color: #004890;
			text-shadow: 1px 2px #eee;
            background-image: linear-gradient(180deg, #f6e27a 20%, #cb9b51 90%);
		}
        /* Shine Effect */
        .shine-button {
            position: relative;
            overflow: hidden;
        }

        .shine-button:after {
            content: '';
            top: 0;
            transform: translateX(100%);
            width: 100%;
            height: 220px;
            position: absolute;
            z-index: 1;
            animation: slide 3s infinite;
            background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(128,186,232,0) 99%, rgba(125,185,232,0) 100%);
        }

        /* shine animation */
        @keyframes slide {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        /* Header Styles */
        .marquee {
            margin: 0 auto;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            position: relative;
        }

        .marquee span {
            display: inline-block;
            padding-left: 100%;
            animation: marquee 30s linear infinite;
        }

        @keyframes marquee {
            0% { transform: translate(0, 0); }
            100% { transform: translate(-100%, 0); }
        }

        header {
            background-color: #004890;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            width: 100%;
            z-index: 100;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
        }
        
        .logo {
            height: 50px;
        }
        
        /* ===== Navbar Base ===== */
        .navbar {
            background: #004890;
            color: #fff;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

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

        /* ===== Nav Links ===== */
        .nav-links {
            display: flex;
            gap: 15px;
            list-style: none;
        }

        .nav-links a {
            color: #fff;
            font-weight: 500;
            position: relative;
            transition: color 0.3s ease;
            padding: 8px 15px;
            border-radius: 5px;
        }

        .nav-links a:hover {
            color: #ffb703;
            background: rgba(255, 255, 255, 0.1);
        }

        /* ===== Toggle Button ===== */
        .menu-toggle {
            display: none;
            font-size: 26px;
            cursor: pointer;
            color: white;
            background: none;
            border: none;
        }

        /* ===== Responsive ===== */
        @media (max-width: 768px) {
            .nav-links {
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background: #004890;
                flex-direction: column;
                gap: 0;
                padding: 15px;
                border-radius: 0 0 10px 10px;
                display: none;
                box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            }

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

            .menu-toggle {
                display: block;
            }
            
            .header-container {
                flex-wrap: wrap;
            }
        }

        /* Hero Section */
        .hero {
            background-color: #f5f9ff;
            padding: 100px 0 50px;
            text-align: center;
        }
        
        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #0066cc;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        
        .hero-buttons {
            margin-top: 30px;
        }
        
        .hero-buttons .btn {
            margin: 0 10px;
        }
        
        /* Features Section */
        .features {
            padding: 60px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2rem;
            color: #0066cc;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .feature-card {
            text-align: center;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        
        .feature-cardputih {
            border: 3px solid #0066cc;
            background-color: #ffffff;
            text-align: center;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        
        .feature-card:hover, .feature-cardputih:hover {
            transform: translateY(-10px);
        }
        
        .feature-icon {
            font-size: 3rem;
            color: #0066cc;
            margin-bottom: 20px;
        }
        
        .feature-card h3, .feature-cardputih h3 {
            margin-bottom: 15px;
            color: #0066cc;
        }
        
        
        /* Programs Section */
        .programs {
            padding: 60px 0;
            background-image: linear-gradient(to bottom right, #DEF9FC, #fff);
        }
        
        .programs-tabs {
            margin-top: 30px;
        }
        
        .tab-buttons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 30px;
            gap: 10px;
        }
        
        .tab-btn {
            padding: 12px 25px;
            background: none;
            border: none;
            border-bottom: 3px solid transparent;
            font-weight: bold;
            color: #666;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .tab-btn:hover {
            color: #0066cc;
        }
        
        .tab-btn.active {
            color: #0066cc;
            border-bottom: 3px solid #0066cc;
        }
        
        .tab-content {
            display: none;
            animation: fadeIn 0.5s;
        }
        
        .tab-content.active {
            display: block;
        }
        
        .program-details {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        
        .program-image img, .program-imageA img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
        }
        
        .program-description h3 {
            color: #0066cc;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        
        .program-description ul {
            margin: 20px 0;
            padding-left: 20px;
        }
        
        .program-description ul li {
            margin-bottom: 10px;
        }
        
        .special-programs-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin: 20px 0;
        }
        
        .special-program {
            background: white;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        
        .special-program h4 {
            color: #0066cc;
            margin-bottom: 10px;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        /* Testimonials */
        .testimonials {
            background-color: #DEF9FC;
            border-top: 1px solid #fff;
            padding: 60px 0;
        }
        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        
        .testimonial-card {
            color: #666666;
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
        }
        
        .testimonial-author {
            font-weight: bold;
            color: #0066cc;
        }
        
        /* Pricing */
        .pricing {
            padding: 60px 0;
            text-align: center;
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }
        
        .pricing-card {
            padding: 40px 30px;
            border-radius: 10px;
            border: 1px solid #ddd;
            transition: transform 0.3s;
        }
        
        .pricing-card:hover {
            transform: translateY(-5px);
        }
        
        .pricing-card.featured {
            border: 2px solid #0066cc;
            position: relative;
        }
        
        .featured-label {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #0066cc;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
        }
        
        .price {
            font-size: 2.5rem;
            font-weight: bold;
            color: #0066cc;
            margin: 20px 0;
        }
        
        .price span {
            font-size: 1rem;
            color: #666;
        }
        
        /* CTA Section */
        .cta {
            background-color: #0066cc;
            color: white;
            padding: 60px 0;
            text-align: center;
        }
        
        .cta h2 {
            font-size: 2rem;
            margin-bottom: 20px;
        }
        
        .cta p {
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
        }
        
        .cta .btn {
            background-color: white;
            color: #0066cc;
            font-size: 1.1rem;
            padding: 15px 30px;
        }
        
        /* Footer */
        footer {
            background: linear-gradient(179.65deg, #fbe700 -27.92%, #ffcd00 102.49%);
            color: #004890;
            padding: 50px 0 20px;
            font-size: 14px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #004890;
        }
        
        .footer-column ul li a:hover {
            color: white;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #fff;
            color: #004890;
            font-size: 0.9rem;
        }

        /* Floating WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 22px;
            right: 22px;
            background-color: #25d366;
            color: #fff;
            border-radius: 50%;
            text-align: center;
            font-size: 32px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.25);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }
        
        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 18px rgba(0,0,0,0.35);
            background-color: #20bd5a;
        }

        /* Bubble Text */
        .whatsapp-text {
            position: fixed;
            bottom: 30px;
            right: 92px;
            background: #fff;
            color: #666;
            font-size: 14px;
            font-weight: 300;
            padding: 10px 14px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            z-index: 9999;
            white-space: nowrap;
            transition: opacity 0.4s ease;
        }
        
        .whatsapp-text::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -6px;
            transform: translateY(-50%);
            border-left: 8px solid #fff;
            border-top: 6px solid transparent;
            border-bottom: 6px solid transparent;
        }
        
        /* Featured Features Section */
        .featured-features {
            padding: 60px 0;
            background-color: #f9f9f9;
        }
        
        .features-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }
        
        .features-header h2 {
            font-size: 2rem;
            color: #0066cc;
        }
        
        .features-nav {
            display: flex;
            gap: 10px;
        }
        
        .features-nav button {
            background: #0066cc;
            color: white;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .features-nav button:hover {
            background: #0055aa;
        }
        
        .features-nav button:disabled {
            background: #cccccc;
            cursor: not-allowed;
        }
        
        .features-carousel {
            position: relative;
            overflow: hidden;
        }
        
        .features-track {
            display: flex;
            transition: transform 0.5s ease;
            gap: 20px;
            padding: 6px 0px;
        }
        
        .feature-slide {
            flex: 0 0 calc(25% - 15px);
            min-width: 260px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        
        .feature-slide:hover {
            transform: translateY(-5px);
        }
        
        .feature-link {
            display: block;
            height: 100%;
            color: inherit;
            text-decoration: none;
        }
        
        .feature-image {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        
        .feature-content {
            padding: 15px;
            background: white;
        }
        
        .feature-content h3 {
            margin-bottom: 10px;
            color: #0066cc;
        }
        
        .feature-content p {
            font-size: 0.9rem;
            color: #666;
        }
        
        /* Responsive adjustments */
        @media (max-width: 1200px) {
            .feature-slide {
                flex: 0 0 calc(33.333% - 15px);
            }
            
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 992px) {
            .feature-slide {
                flex: 0 0 calc(50% - 15px);
            }
            
            .features-grid, .testimonial-grid, .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .features-header {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }
            
            .feature-slide {
                flex: 0 0 calc(100% - 15px);
            }
            
            .features-grid, .testimonial-grid, .pricing-grid, .footer-grid {
                grid-template-columns: 1fr;
            }
            
            .program-details {
                grid-template-columns: 1fr;
            }
            
            .tab-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .tab-btn {
                text-align: center;
                border-bottom: none;
                border-left: 3px solid transparent;
                width: 100%;
                max-width: 250px;
            }
            
            .tab-btn.active {
                border-bottom: none;
                border-left: 3px solid #0066cc;
            }
            
            .special-programs-grid {
                grid-template-columns: 1fr;
            }
            
            .hero {
                padding: 120px 0 60px;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
        }
        
            /* Other Products Section */
    .other-products {
        padding: 60px 0;
        background-color: #fff;
    }
    
    .products-carousel {
        position: relative;
        margin-top: 40px;
  		overflow: hidden;
  		max-width: 1200px;
  		margin: auto;
    }
    
    .carousel-nav {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .carousel-prev, .carousel-next {
        background: #0066cc;
        border: none;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background-color 0.3s;
    }
    
    .carousel-prev:hover, .carousel-next:hover {
        background: #0055aa;
    }
    
    .carousel-prev img, .carousel-next img {
        width: 20px;
        height: 20px;
    }
    
    .products-track {
        display: flex;
        overflow-x: hidden;
        gap: 20px;
        scroll-behavior: smooth;
        padding: 10px 0;
  		width: 100%; /* tapi kalau translateX tidak diatur dengan benar, item ke-5-8 tidak terlihat */
    }
    
    .product-item {
        flex: 0 0 calc(25% - 15px);
        /*background: linear-gradient(-225deg, #FFFEFF 0%, #D7FFFE 100%);*/
        /*background-image: linear-gradient(120deg, #d4fc79 0%, #96e6a1 100%);*/
        border-radius: 12px;
        padding: 25px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        text-align: center;
        transition: transform 0.3s, box-shadow 0.3s;
    }
    
    .product-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }
    
    .product-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
        object-fit: contain;
    }
    
    .product-title {
        font-weight: bold;
        font-size: 18px;
        color: #0066cc;
        margin-bottom: 10px;
    }
    
    .product-desc {
        color: #666;
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    
    .product-cta {
        display: inline-block;
        color: white;
        padding: 16px 20px;
        font-weight: 600;
        font-size: 14px;
        transition: background-color 0.3s;
        background-image: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
        box-shadow:0 2px 8px 0 #cccccc;
        border-radius: 0px 0px 16px 16px;
        text-decoration: none;
        transition: all 0.3s ease;
        /*border: 2px solid transparent;*/
    }
    
    .product-cta:hover {
        background-image: linear-gradient(-225deg, #9EFBD3 0%, #57E9F2 48%, #45D4FB 100%);
        color: #0066cc;
        border-color: #0066cc;
        transform: translateY(-2px);
    }
    
    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 25px;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #ccc;
        border: none;
        cursor: pointer;
        transition: background-color 0.3s;
    }
    
    .carousel-dot.active {
        background: #0066cc;
    }
    
    /* Responsive Design */
    @media (max-width: 1200px) {
        .product-item {
            flex: 0 0 calc(33.333% - 15px);
        }
    }
    
    @media (max-width: 992px) {
        .product-item {
            flex: 0 0 calc(50% - 15px);
        }
    }
    
    @media (max-width: 768px) {
        .product-item {
            flex: 0 0 calc(100% - 15px);
        }
        
        .carousel-nav {
            display: none;
        }
    }
    
    /* Other Products Section - 5 Columns */
    .other-products {
        padding: 60px 0;
        background: #fff;
    }
    
    .products-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
        margin-top: 50px;
    }
    
    .product-item {
        background: linear-gradient(-225deg, #FFFEFF 0%, #D7FFFE 100%);
        border-radius: 16px;
        padding: 30px 0px 0px 0px;
        text-align: center;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        border: 1px solid #e9ecef;
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    
    .product-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        border-color: #0066cc;
    }
    
    .product-icon-container {
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
        background: linear-gradient(135deg, #0066cc 0%, #004990 100%);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 15px;
    }
    
    .product-icon {
        width: 50px;
        height: 50px;
        object-fit: contain;
        filter: brightness(0) invert(1);
    }
    
    .product-text {
        flex: 1;
        margin-bottom: 25px;
    }
    
    .product-title {
        font-weight: 700;
        font-size: 18px;
        color: #0066cc;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .product-desc {
        color: #666;
        font-size: 14px;
        line-height: 1.5;
        margin: 0;
        padding: 0 10px;
    }
    
    .products-cta {
        text-align: center;
        margin-top: 50px;
    }
    
    .view-all-btn {
        display: inline-block;
        background: transparent;
        color: #0066cc;
        padding: 15px 40px;
        border: 2px solid #0066cc;
        border-radius: 30px;
        font-weight: 700;
        font-size: 16px;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .view-all-btn:hover {
        background: #0066cc;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
    }
    
    /* Responsive Design */
    @media (max-width: 1200px) {
        .products-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }
        
        .product-item {
            padding: 25px 20px;
        }
        
        .product-icon-container {
            width: 70px;
            height: 70px;
        }
        
        .product-icon {
            width: 45px;
            height: 45px;
        }
    }
    
    @media (max-width: 992px) {
        .products-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        
        .other-products {
            padding: 60px 0;
        }
    }
    
    @media (max-width: 768px) {
        .products-grid {
            grid-template-columns: 1fr;
            max-width: 400px;
            margin: 40px auto;
        }
        
        .product-item {
            padding: 30px 25px;
        }
        
        .product-icon-container {
            width: 80px;
            height: 80px;
        }
        
        .product-icon {
            width: 50px;
            height: 50px;
        }
        
        .view-all-btn {
            padding: 12px 30px;
            font-size: 15px;
        }
    }
    
    @media (max-width: 480px) {
        .other-products {
            padding: 50px 0;
        }
        
        .section-title h2 {
            font-size: 24px;
        }
        
        .product-item {
            padding: 25px 20px;
        }
        
        .product-title {
            font-size: 16px;
        }
        
        .product-desc {
            font-size: 13px;
        }
        
        .product-cta {
            padding: 10px 20px;
            font-size: 13px;
        }
    }
    
    /* Education Consultant Section */
    .education-consultant {
        padding: 60px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }
    
    .consultant-card {
        background-image: linear-gradient(-225deg, #FFFEFF 0%, #D7FFFE 100%);
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        max-width: 1000px;
        margin: 0 auto;
    }
    
    .consultant-content {
        display: flex;
        align-items: center;
        min-height: 200px;
    }
    
    .consultant-image {
        flex: 0 0 25%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        background: linear-gradient(135deg, #0066cc 0%, #004990 100%);
    }
    
    .consultant-img {
        width: 100%;
        max-width: 180px;
        height: auto;
        border-radius: 10px;
        object-fit: cover;
    }
    
    .consultant-info {
        flex: 0 0 75%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 30px;
        gap: 20px;
    }
    
    .consultant-text {
        flex: 1;
    }
    
    .consultant-title {
        font-size: 24px;
        font-weight: 700;
        color: #0066cc;
        margin-bottom: 8px;
    }
    
    .consultant-subtitle {
        font-size: 16px;
        color: #666;
        margin: 0;
        line-height: 1.5;
    }
    
    .consultant-button {
        flex-shrink: 0;
    }
    
    .whatsapp-chat-btn {
        display: inline-flex;
        align-items: center;
        background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
        color: white;
        padding: 15px 25px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    }
    
    .whatsapp-chat-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
        background: linear-gradient(135deg, #20bd5a 0%, #0e7669 100%);
    }
    
    .whatsapp-icon {
        margin-right: 10px;
        filter: brightness(0) invert(1);
    }
    
    /* Responsive Design */
    @media (max-width: 992px) {
        .consultant-content {
            flex-direction: column;
            text-align: center;
        }
        
        .consultant-image {
            flex: 0 0 auto;
            width: 100%;
            padding: 30px 20px;
        }
        
        .consultant-img {
            max-width: 150px;
        }
        
        .consultant-info {
            flex-direction: column;
            gap: 25px;
            padding: 30px 20px;
            text-align: center;
        }
        
        .consultant-title {
            font-size: 22px;
        }
    }
    
    @media (max-width: 768px) {
        .education-consultant {
            padding: 40px 0;
        }
        
        .consultant-card {
            border-radius: 15px;
        }
        
        .consultant-title {
            font-size: 20px;
        }
        
        .consultant-subtitle {
            font-size: 14px;
        }
        
        .whatsapp-chat-btn {
            padding: 12px 20px;
            font-size: 14px;
        }
        
        .consultant-img {
            max-width: 120px;
        }
    }
    
    @media (max-width: 480px) {
        .consultant-info {
            padding: 20px 15px;
        }
        
        .consultant-title {
            font-size: 18px;
        }
        
        .whatsapp-chat-btn {
            padding: 10px 18px;
            font-size: 13px;
        }
        
        .whatsapp-icon {
            width: 20px;
            height: 20px;
            margin-right: 8px;
        }
    }
    
    /* Testimonial Video Carousel Section */
    .testimonial-videos {
        padding: 60px 0;
        background: linear-gradient(-225deg, #FFFEFF 0%, #D7FFFE 100%);
    }
    
    .video-carousel {
        position: relative;
        margin-top: 50px;
    }
    
    .carousel-nav {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .carousel-prev, .carousel-next {
        background: #0066cc;
        border: none;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        color: white;
    }
    
    .carousel-prev:hover, .carousel-next:hover {
        background: #0055aa;
        transform: scale(1.1);
    }
    
    .video-track {
        overflow: hidden;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        background: white;
    }
    
    .video-slide {
        display: none;
        padding: 40px;
        /*background-image: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);*/
        /*background-image: linear-gradient(120deg, #89f7fe 0%, #66a6ff 100%);*/
        background-image: linear-gradient(-225deg, #9EFBD3 0%, #57E9F2 48%, #45D4FB 100%);

    }
    
    .video-slide.active {
        display: block;
    }
    
    .video-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
    }
    
    .video-text {
        padding: 20px;
    }
    
    .video-logo {
        max-width: 200px;
        margin-bottom: 20px;
    }
    
    .video-text p {
        font-size: 18px;
        line-height: 1.6;
        color: #333;
        margin-bottom: 25px;
    }
    
    .video-text strong {
        color: #0066cc;
        font-weight: 600;
    }
    
    .button-see-more {
        display: inline-block;
        color: #0066cc;
        font-weight: 600;
        text-decoration: none;
        font-size: 16px;
        transition: all 0.3s ease;
    }
    
    .button-see-more:hover {
        color: #0055aa;
        transform: translateX(5px);
    }
    
    .video-frame {
        position: relative;
    }
    
    .video-wrapper {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
        height: 0;
        overflow: hidden;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }
    
    .video-description {
        text-align: center;
        margin-top: 20px;
    }
    
    .video-desc-title {
        font-size: 18px;
        font-weight: 600;
        color: #0066cc;
        margin-bottom: 5px;
    }
    
    .video-desc-subtitle {
        font-size: 14px;
        color: #666;
        margin: 0;
    }
    
    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 30px;
    }
    
    .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        border: none;
        background: #ccc;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .dot.active, .dot:hover {
        background: #0066cc;
        transform: scale(1.2);
    }
    
    .hidden {
      position: absolute;
      left: -9999px;
      width: 1px;
      height: 1px;
      overflow: hidden;
    }
    
    /* target your text by its Bubble ID */
  	#textgradasitop {
    /* 1) solid fallback color */
    color: #fff;
    /* 2) the gradient you want */
	linear-gradient(      
	90deg,        
	#004890,  /* cyan/blue */      
	#7d2eff,  /* purple */      
	#ff4081,  /* pink */      
	#ffb241   /* orange */    )
    );
    /* 3) clip that gradient to the text shape */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* unprefixed for Firefox (if you care) */
    background-clip: text;
    color: transparent;
  	}
  	
  	#textgradasi {
    /* 1) solid fallback color */
    color: #fff;
    /* 2) the gradient you want */
    background-image: linear-gradient(
      90deg,
      #80e27e,  /* green */
      #00c8ff,  /* cyan/blue */
      #7d2eff,  /* purple */
      #ff4081,  /* pink */
      #ffb241   /* orange */
    );
    /* 3) clip that gradient to the text shape */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* unprefixed for Firefox (if you care) */
    background-clip: text;
    color: transparent;
  	}
  	
  	.bluebox {
  		background-image: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
    }
    
    /* Responsive Design */
    @media (max-width: 992px) {
        .video-content {
            grid-template-columns: 1fr;
            gap: 30px;
            text-align: center;
        }
        
        .video-text {
            padding: 15px;
        }
        
        .video-text p {
            font-size: 16px;
        }
        
        .video-slide {
            padding: 30px;
        }
    }
    
    @media (max-width: 768px) {
        .testimonial-videos {
            padding: 60px 0;
        }
        
        .video-slide {
            padding: 20px;
        }
        
        .video-text p {
            font-size: 15px;
        }
        
        .button-see-more {
            font-size: 14px;
        }
        
        .carousel-prev, .carousel-next {
            width: 40px;
            height: 40px;
        }
        
        .video-desc-title {
            font-size: 16px;
        }
    }
    
    @media (max-width: 480px) {
        .section-title h2 {
            font-size: 24px;
        }
        
        .video-slide {
            padding: 15px;
        }
        
        .video-text {
            padding: 10px;
        }
        
        .video-logo {
            max-width: 150px;
        }
        
        .carousel-nav {
            margin-bottom: 20px;
        }
    }