/* fonts */

@import url("https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@300;400;500;600;700&family=Mulish:wght@300;400;500;600;700&display=swap");

/* start css */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            font-family: 'Mulish', 'Segoe UI', Roboto, system-ui, sans-serif;
            scroll-behavior: smooth;
        }
        body {
            background-color: #f4f7fc;
            color: #1e2a41;
            line-height: 1.6;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        h1, h2, h3, h4, h5, h6,
        .main-heading,
        .service-card h3,
        .footer-about h3,
        .footer-contact h3 {
            font-family: 'Kumbh Sans', 'Segoe UI', Roboto, system-ui, sans-serif;
            font-weight: 700;
        }
        .services-section h2 {
            font-weight: 700;
        }
        .service-card h3 {
            font-weight: 700;
        }
        .footer-about h3,
        .footer-contact h3 {
            font-weight: 600;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }
        
        header {
            position: relative;
            background-image: url('/demo/image/header_background.avif');
            background-size: cover;
            background-position: center 30%;
            background-repeat: no-repeat;
            padding: 2rem 0 4rem 0;
            min-height: 720px;
            display: flex;
            align-items: flex-start;
            color: white;
            isolation: isolate;
        }
        header::before {
            content: '';
            position: absolute;
            inset: 0;
            background-color: #09337f;
            opacity: 0.75;
            z-index: 1;
            pointer-events: none;
        }
        .header-content {
            position: relative;
            z-index: 3;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .logo-container {
            margin-bottom: 3rem;
            align-self: stretch;
        }
        .logo-image {
            max-width: 450px;
            width: 100%;
            height: auto;
            display: block;
            margin: 0 auto;
            margin-top: -55px;
            filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
            background-color: #ffffff;
            border-radius: 0px 0px 25px 25px;
            object-fit: contain;
            min-height: 80px;
        }
        .header-text {
            max-width: 900px;
            margin: 0 auto;
        }
        .main-heading {
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            font-weight: 700;
            
        }
        .header-description {
            font-size: 1.3rem;
            font-weight: 300;
            line-height: 1.6;
            opacity: 0.95;
            max-width: 800px;
            margin: 0 auto;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
        }
        .coming-soon {
            font-size: 1.3rem;
            font-weight: 300;
            line-height: 1.6;
            opacity: 0.95;
            max-width: 800px;
            margin: 1.5rem auto 0;
            padding-top: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        .coming-soon i {
            color: #dba82a;
            font-size: 1.5rem;
            animation: spin 2s linear infinite;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        @keyframes slideInFromLeft {
            0% {
                opacity: 0;
                transform: translateX(-50px);
            }
            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            animation: fadeInUp 1s ease-out;
        }

        .scroll-indicator:hover {
            transform: translateX(-50%) scale(1.1);
        }

        .mouse-shape {
            width: 30px;
            height: 50px;
            border: 2px solid white;
            border-radius: 20px;
            position: relative;
            box-shadow: 0 0 10px rgba(0,0,0,0.3);
        }

        .mouse-shape::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 8px;
            background: white;
            border-radius: 2px;
            animation: scrollWheel 2s infinite;
        }

        @keyframes scrollWheel {
            0% {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }
            100% {
                opacity: 0;
                transform: translateX(-50%) translateY(15px);
            }
        }

        .scroll-indicator i {
            color: #dba82a;
            font-size: 1.5rem;
            animation: bounce 2s infinite;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }

        .scroll-text {
            color: white;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 300;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            background: rgba(0,0,0,0.2);
            padding: 5px 15px;
            border-radius: 20px;
            backdrop-filter: blur(5px);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translate(-50%, 20px);
            }
            to {
                opacity: 1;
                transform: translate(-50%, 0);
            }
        }

        /* Services Section */
        .services-section {
            padding: 5rem 0;
            background-color: white;
        }
        .services-section h2 {
            text-align: center;
            font-size: 2.6rem;
            margin-bottom: 3.5rem;
            color: #09337f;
            position: relative;
        }
        .services-section h2::after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background-color: #dba82a;
            margin: 0.8rem auto 0;
            border-radius: 2px;
        }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .service-card {
            background: #ffffff;
            padding: 2.2rem 1.5rem;
            border-radius: 16px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(9, 51, 127, 0.08);
            border: 1px solid rgba(219, 168, 42, 0.1);
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 15px 30px rgba(9, 51, 127, 0.15);
            border-color: #dba82a;
        }
        .service-card i {
            font-size: 3.5rem;
            margin-bottom: 1.2rem;
            background: rgba(219, 168, 42, 0.1);
            width: 90px;
            height: 90px;
            line-height: 90px !important;
            border-radius: 50%;
            color: #09337f;
            display: inline-block;
            transition: all 0.3s ease;
        }
        .service-card:hover i {
            background: #dba82a;
            color: white;
            transform: scale(1.1);
        }
        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #09337f;
        }
        .service-card p {
            color: #2c3e50;
            font-size: 0.98rem;
            opacity: 0.9;
            max-width: 280px;
        }

        footer {
            background-color: #09337f;
            color: #e0e7f5;
            padding: 3.5rem 0 1.5rem;
            margin-top: auto;
            border-top: 5px solid #dba82a;
        }
        .footer-content {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 4rem;
            margin-bottom: 2.5rem;
        }
        .footer-about h3,
        .footer-contact h3 {
            color: white;
            font-size: 1.7rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.7rem;
        }
        .footer-about h3::after,
        .footer-contact h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 70px;
            height: 3px;
            background-color: #dba82a;
            border-radius: 2px;
        }
        .footer-about p {
            line-height: 1.8;
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
            opacity: 0.9;
        }
        .footer-contact p {
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.1rem;
        }
        .footer-contact i {
            font-size: 1.5rem;
            min-width: 30px;
            color: #dba82a;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.15);
            font-size: 1rem;
            color: #b0c4de;
        }
        .copyright a {
            color: #dba82a;
            text-decoration: none;
            font-weight: 500;
            margin: 0 5px;
        }
        .copyright a:hover {
            text-decoration: underline;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .main-heading {
                font-size: 2.2rem;
            }
            .header-description {
                font-size: 1.1rem;
            }
            .coming-soon {
                font-size: 1.1rem;
            }
            .coming-soon i {
                font-size: 1.3rem;
            }
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
            .services-section h2 {
                font-size: 2.2rem;
            }
            header {
                padding: 1.5rem 0 3rem 0;
                min-height: 700px;
                background-position: center 20%;
            }
            .logo-image {
                max-width: 300px;
                margin-top: -30px;
            }
            .service-card p {
                max-width: 100%;
            }
            .scroll-text {
                font-size: 0.8rem;
                padding: 4px 12px;
            }
        }

        @media (max-width: 480px) {
            .main-heading {
                font-size: 1.9rem;
            }
            .services-grid {
                grid-template-columns: 1fr;
            }
            .mouse-shape {
                width: 25px;
                height: 40px;
            }
            .scroll-indicator i {
                font-size: 1.2rem;
            }
        }