* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }
        a { text-decoration: none; color:white;}

        /* Header Menu */
        header {
            background: #ffffff;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            display: flex;
            align-items: center;
            font-size: 1.8rem;
            font-weight: 700;
            color: #1e3c72;
        }
        .logo i {
            font-size: 2.2rem;
            color: #ff6b35;
            margin-right: 12px;
        }
        .logo span {
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 30px;
        }
        nav ul li a {
            color: #1e3c72;
            font-weight: 600;
            font-size: 1.05rem;
            transition: 0.3s;
            position: relative;
        }
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: #ff6b35;
            transition: 0.3s;
        }
        nav ul li a:hover {
            color: #ff6b35;
        }
        nav ul li a:hover::after {
            width: 100%;
        }
        .menu-toggle {
            display: none;
            font-size: 1.8rem;
            color: #1e3c72;
            cursor: pointer;
        }

        /* Banner */
        .banner {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            padding: 100px 5% 80px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 50px;
        }
        .banner-text {
            flex: 1;
            min-width: 300px;
        }
        .banner-text h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .banner-text p {
            font-size: 1.2rem;
            margin-bottom: 25px;
            opacity: 0.9;
        }
        .banner-form {
            flex: 1;
            min-width: 350px;
            background: rgba(255,255,255,0.15);
            padding: 30px;
            border-radius: 12px;
            backdrop-filter: blur(10px);
        }
        .banner-form h2 {
            margin-bottom: 20px;
            font-size: 1.6rem;
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        input, select, button {
            width: 100%;
            padding: 12px 15px;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
        }
        input, select {
            background: white;
        }
        button {
            background: #ff6b35;
            color: white;
            font-weight: bold;
            cursor: pointer;
            transition: 0.3s;
        }
        button:hover {
            background: #e55a2b;
        }

        /* Rest of sections remain same */
        section {
            padding: 80px 5%;
        }
        .section-title {
            text-align: center;
            font-size: 2.4rem;
            margin-bottom: 50px;
            color: #1e3c72;
        }

        /* Brands */
        .brands {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .brand-card {
            background: white;
            padding: 30px;
            text-align: center;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: 0.3s;
        }
        .brand-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        .brand-card i {
            font-size: 3.5rem;
            color: #2a5298;
            margin-bottom: 15px;
        }

        /* Achievements */
        .achievements {
            background: #f1f5f9;
        }
        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }
        .stat-item h3 {
            font-size: 3rem;
            color: #ff6b35;
            margin-bottom: 10px;
        }

        /* Why Choose */
        .why-choose {
            background: white;
        }
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .feature {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 12px;
            border-left: 5px solid #2a5298;
        }
        .feature i {
            font-size: 2.5rem;
            color: #ff6b35;
            margin-bottom: 15px;
        }

        /* Testimonials */
        .testimonials {
            background: #f1f5f9;
        }
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .testimonial {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        .client img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 15px;
        }
        .stars {
            color: #ff6b35;
        }

        /* Footer */
        footer {
            background: #1e3c72;
            color: white;
            padding: 60px 5% 30px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto 40px;
        }
        .footer-col h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background: #ff6b35;
        }
        .social-links a {
            font-size: 1.5rem;
            color: #ddd;
            margin-right: 15px;
        }
        .social-links a:hover {
            color: #ff6b35;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #bbb;
        }

        /* Mobile Menu */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            nav ul {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: 100vh;
                background: #1e3c72;
                flex-direction: column;
                padding: 50px 0;
                transition: 0.4s;
            }
            nav ul.active {
                left: 0;
            }
            nav ul li {
                margin: 25px 0;
                text-align: center;
            }
            nav ul li a {
                color: white;
                font-size: 1.3rem;
            }
            nav ul li a::after {
                display: none;
            }
            .banner {
                padding: 80px 5% 60px;
            }
            .banner-text h1 {
                font-size: 2.2rem;
            }
        }
        
        /*blog*/
        
        
        
        