@charset "utf-8";
/* CSS Document */


        :root {
            --primary: #36198e;
            --secondary: #2ecc71;
            --accent: #507ac9;
            --text-dark: #1e293b;
            --text-light: #64748b;
            --white: #ffffff;
            --light-bg: #f8fafc;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--white);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* --- NAVIGATION --- */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.5rem 8%;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
            height: 110px;
        }

        .logo-box img {
            height: 100px;
            object-fit: contain;
            cursor: pointer;
            transition: var(--transition);
        }

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

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

        nav a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 0.95rem;
            transition: var(--transition);
            position: relative;
            cursor: pointer;
        }

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

        nav a.active:after {
            width: 100%;
        }

        nav a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: var(--primary);
            transition: var(--transition);
        }

        nav a:hover:after {
            width: 100%;
        }

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

        .header-actions {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .btn-inquiry {
            background: var(--primary);
            color: white !important;
            padding: 0.7rem 1.5rem;
            border-radius: 6px;
            font-weight: 700;
            transition: var(--transition);
            text-decoration: none;
            cursor: pointer;
            text-align: center;
            font-size: 0.9rem;
        }

        .btn-inquiry:hover {
            background: var(--accent);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(11, 61, 145, 0.3);
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            z-index: 1100;
        }

        .menu-toggle span {
            width: 30px;
            height: 3px;
            background: var(--primary);
            border-radius: 10px;
            transition: var(--transition);
        }

        /* --- PAGE CONTENT HANDLING --- */
        .page {
            display: none;
            animation: fadeIn 0.5s ease-in-out;
            padding-top: 80px; 
        }

        .page.active {
            display: block;
        }

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

        /* --- HERO SECTION (HOME) --- */
        .hero {
            padding: 80px 8% 100px;
            background: radial-gradient(circle at 75% 30%, #e0f2fe 0%, #ffffff 60%);
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: calc(100vh - 80px);
            position: relative;
        }

        .hero-content {
            flex: 1;
            max-width: 650px;
            z-index: 2;
        }

        .hero h1 {
            font-size: clamp(2.2rem, 5vw, 4.2rem);
            line-height: 1.1;
            color: var(--primary);
            font-weight: 800;
            margin-bottom: 1.5rem;
        }

        .hero h1 span {
            color: var(--secondary);
            display: block;
        }

        .hero p {
            font-size: 1.1rem;
            color: var(--text-light);
            margin-bottom: 2.5rem;
            max-width: 550px;
            border-left: 3px solid var(--secondary);
            padding-left: 20px;
        }

        .hero-btns {
            display: flex;
            gap: 1.2rem;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            transition: var(--transition);
            display: inline-block;
            cursor: pointer;
            border: none;
        }

        .btn-blue { background: var(--primary); color: white; }
        .btn-white { background: white; color: var(--primary); border: 1px solid #e2e8f0; }

        .btn-blue:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(11, 61, 145, 0.3);
        }

        .hero-visual .main-logo {
            width: 100%;
            max-width: 500px;
            filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.1));
            animation: float 6s ease-in-out infinite;
        }

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

        /* --- SUBPAGE STYLES --- */
        .subpage-hero {
            background: linear-gradient(135deg, #0b3d91 0%, #1e5bb8 100%);
            color: white;
            padding: 80px 8%;
            text-align: center;
        }

        .subpage-hero h1 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .content-section { padding: 60px 8%; max-width: 1200px; margin: 0 auto; }
        .content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
		.section-header {
            text-align: center;
            padding: 60px 8% 40px;
        }

        .section-header span {
            text-transform: uppercase;
            letter-spacing: 4px;
            color: var(--text-light);
            font-weight: 700;
            font-size: 0.9rem;
            display: block;
            margin-bottom: 10px;
        }

        .section-header h2 {
            font-size: 2.8rem;
            color: var(--primary);
            font-weight: 800;
        }
        .services-container {
            padding: 40px 8% 80px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: white;
            padding: 2.5rem 1.5rem;
            border-radius: 16px;
            text-align: center;
            box-shadow: var(--shadow);
            border: 1px solid #f1f5f9;
            transition: var(--transition);
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: var(--secondary);
        }

        .stats-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            padding: 50px 8%;
            display: flex;
            justify-content: space-around;
            color: white;
            flex-wrap: wrap;
            gap: 30px;
        }

        .stat-item h2 {
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 800;
        }

        /* --- FOOTER --- */
        footer {
            background: #150c2e;
            color: white;
            padding: 60px 8% 30px;
        }

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

        .footer-logo { height: 200px; margin-bottom: 1.5rem; }
        
        .footer-links h4 { color: var(--secondary); margin-bottom: 1.5rem; }
        .footer-links ul { list-style: none; }
        .footer-links li { margin-bottom: 0.8rem; }
        .footer-links a { color: white; text-decoration: none; opacity: 0.7; transition: 0.3s; cursor: pointer; }
        .footer-links a:hover { opacity: 1; color: var(--secondary); }

        /* --- RESPONSIVE BREAKPOINT --- */
        @media (max-width: 1024px) {
            header { padding: 0.5rem 5%; }
            nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: white;
                box-shadow: -10px 0 30px rgba(0,0,0,0.1);
                transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
                z-index: 1050;
                padding: 100px 2rem;
            }

            nav.open { right: 0; }

            nav ul {
                flex-direction: column;
                gap: 2rem;
            }

            nav a { font-size: 1.2rem; }

            .menu-toggle { display: flex; }

            /* Hamburger to X Animation */
            .menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(7px, 6px); }
            .menu-toggle.open span:nth-child(2) { opacity: 0; }
            .menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

            .hero { flex-direction: column; text-align: center; padding-top: 120px; }
            .hero-content { margin-bottom: 3rem; }
            .content-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
            
            .btn-inquiry { font-size: 0.8rem; padding: 0.6rem 1rem; }
        }

        @media (max-width: 480px) {
            .hero h1 { font-size: 2.2rem; }
            .btn { width: 100%; text-align: center; }
        }

