      * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #ff8c00, #ff4500, #ff6347);
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }


        /* Header & Logo */
        .header {
            text-align: center;
            padding: 100px 0 30px; /* Adjusted for fixed nav */
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .logo-circle {
            width: 200px;
            height: 200px;
            background: linear-gradient(45deg, #ff8c00, #ff4500);
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            box-shadow: 0 15px 40px rgba(255, 140, 0, 0.5);
        }

        .header h1 {
            color: #ff4500;
            font-size: 2.5em;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        /* Info Cards */
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 25px;
            margin-bottom: 30px;
        }

        .info-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 25px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
            transition: transform 0.3s, box-shadow 0.3s;
            border-left: 6px solid #ff8c00;
        }

        .info-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(255, 140, 0, 0.4);
        }

        .card-image {
            width: 100%;
            height: 320px;
            background-size: cover;
            background-position: center;
            border-radius: 15px;
            margin-bottom: 20px;
            position: relative;
            overflow: hidden;
        }
 
        .card-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 140, 0, 0.3);
        }

        .card-title {
            color: #ff4500;
            font-size: 1.5em;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .service-list {
            list-style: none;
            padding-left: 0;
        }

        .service-list li {
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
            background: linear-gradient(90deg, #ff8c00, #ff4500);
            margin: 5px 0;
            color: white;
            border-radius: 25px;
            font-weight: 500;
        }

        .service-list li::before {
            content: '✓';
            position: absolute;
            left: 5px;
            font-weight: bold;
        }

        /* Contact Section */
        .contact-section {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
            margin-top: 30px;
        }

        .contact-info {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 20px;
        }

        .contact-item {
            background: linear-gradient(45deg, #ff8c00, #ff4500);
            color: white;
            padding: 15px 25px;
            border-radius: 50px;
            font-weight: bold;
            box-shadow: 0 8px 20px rgba(255, 140, 0, 0.4);
        }

        /* Footer */
        footer {
            text-align: center;
            padding: 20px;
            background: rgba(255, 255, 255, 0.95);
            margin-top: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        /* Responsive */
        @media (max-width: 768px) {
            nav .container {
                flex-direction: column;
                gap: 10px;
                align-items: center;
            }
            nav ul {
                flex-direction: column;
                align-items: center;
                width: 100%;
            }
            nav ul li {
                margin: 10px 0;
            }
            .header {
                padding: 120px 20px 30px;
            }
            .header h1 {
                font-size: 2.2em;
            }
            .header p {
                font-size: 1em;
            }
            .logo-circle {
                width: 150px;
                height: 150px;
                font-size: 20px;
            }
            .info-grid {
                grid-template-columns: 1fr;
            }
            .card-image {
                height: 260px;
            }
            .service-list li {
                font-size: 0.95em;
                padding: 10px 0 10px 20px;
            }
            .contact-info {
                flex-direction: column;
                align-items: stretch;
            }
            .contact-item {
                width: 100%;
                padding: 15px 20px;
            }
            footer {
                padding: 25px 15px;
            }
            footer img {
                width: 120px;
                height: 120px;
            }
        }

        @media (max-width: 480px) {
            nav {
                padding: 12px 0;
            }
            .container {
                padding: 15px;
            }
            .header {
                border-radius: 15px;
            }
            .header h1 {
                font-size: 1.8em;
            }
            .logo-circle {
                width: 120px;
                height: 120px;
            }
            .card-image {
                height: 220px;
            }
            .service-list li {
                font-size: 0.9em;
                margin: 4px 0;
            }
            .contact-item {
                border-radius: 15px;
                padding: 14px 16px;
            }
            footer h1,
            footer h4,
            footer p {
                margin: 8px 0;
            }
        }

        /* Scrollbar */
        ::-webkit-scrollbar {
            width: 12px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(#ff8c00, #ff4500);
            border-radius: 10px;
        }