
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            color: #333;
            line-height: 1.6;
            background-color: #f8f9fa;
            max-width: 100%;
            overflow-x: hidden;
        }
        
        /* Header & Navigation */
        header {
            background: linear-gradient(135deg, #1a75bc 0%, #0a4299 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--primary);
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            display: flex;
            align-items: center;
        }
        
        .logo i {
            margin-right: 10px;
            color: #4cdb5d;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 1.5rem;
        }
        
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: #4cdb5d;
        }
        
        /* Hero Carousel */
        .carousel {
            height: 100vh;
            position: relative;
            overflow: hidden;

        }
        
        .carousel-inner {
            width: 100%;
            height: 100%;
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .carousel-item {
            min-width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .carousel-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
        }
        
        .carousel-content {
            text-align: center;
            color: white;
            z-index: 2;
            padding: 0 20px;
            max-width: 800px;
        }
        
        .carousel-content h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        .carousel-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }
        
        .btn {
            display: inline-block;
            background: #4cdb5d;
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn:hover {
            background: #3bb54a;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .carousel-controls {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            z-index: 5;
        }
        
        .carousel-control {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            margin: 0 5px;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .carousel-control.active {
            background: white;
        }
        
        /* Sections */
        section {
            padding: 5rem 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: #1a75bc;
            margin-bottom: 1rem;
        }
        
        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* About Section */
        .about-content {
            display: flex;
            align-items: center;
            gap: 40px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h3 {
            color: #1a75bc;
            margin-bottom: 1rem;
            font-size: 1.8rem;
        }
        
        .about-text p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        
        .mission-vision {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 2rem 0;
        }
        
        .mission, .vision {
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .mission h4, .vision h4 {
            color: #1a75bc;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        
        .values {
            margin-top: 3rem;
        }
        
        .values h3 {
            color: #1a75bc;
            margin-bottom: 2rem;
            text-align: center;
            font-size: 1.8rem;
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
        }
        
        .value-card {
            background: white;
            padding: 25px 20px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }
        
        .value-card:hover {
            transform: translateY(-5px);
        }
        
        .value-card i {
            font-size: 2.5rem;
            color: #1a75bc;
            margin-bottom: 15px;
        }
        
        .value-card h4 {
            margin-bottom: 10px;
            color: #333;
        }
        
        .about-image {
            flex: 1;
            background-color: #e0e0e0;
            height: 350px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #888;
            border-radius: 10px;
            overflow: hidden;
        }
        
        /* Products Section */
        .products {
            background-color: #f1f8ff;
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
        }
        
        .product-image {
            height: 200px;
            background-color: #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #888;
        }
        
        .product-info {
            padding: 20px;
        }
        
        .product-info h3 {
            margin-bottom: 10px;
            color: #1a75bc;
        }
        
        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .service-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: transform 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
        }
        
        .service-icon {
            font-size: 3rem;
            color: #1a75bc;
            margin-bottom: 20px;
        }
        
        .service-card h3 {
            margin-bottom: 15px;
            color: #1a75bc;
        }
        
        .product-categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        
        .product-category {
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .product-category h4 {
            color: #1a75bc;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #4cdb5d;
        }
        
        .product-category ul {
            list-style: none;
        }
        
        .product-category ul li {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
        }
        
        .product-category ul li:last-child {
            border-bottom: none;
        }
        
        .product-category ul li:before {
            content: "•";
            color: #4cdb5d;
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
        }
        
        /* Contact Section */
        .contact {
            background: #f9f9f9;
            color: white;
			
        }
        
        .contact .section-title h2 {
            color: #1a75bc;
        }
        
        .contact-content {
            display: flex;
            gap: 40px;
        }
        
        .contact-info {
            flex: 1;
			color: black;
        }
        
        .contact-form {
            flex: 1;
			color: black;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
        }
        
        .form-group textarea {
            height: 120px;
            resize: vertical;
        }
        
        /* Footer */
        footer {
            background: #0a2a5e;
            color: white;
            padding: 40px 0 20px;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 30px;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-section h3 {
            color: var(--secondary);
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        
        .footer-section p {
            margin-bottom: 15px;
        }
        
        .social-links a {
            display: inline-block;
            margin-right: 15px;
            color: white;
            font-size: 1.5rem;
            transition: color 0.3s ease;
        }
        
        .social-links a:hover {
            color: var(--secondary);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Responsive Design */
        @media (max-width: 900px) {
            .about-content,
            .contact-content {
                flex-direction: column;
        }
		
            
            .mission-vision {
                grid-template-columns: 1fr;
            }
            
            .carousel-content h1 {
                font-size: 2.2rem;
            }
            
            .carousel-content p {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                right: -100%;
                width: 250px;
                height: calc(100vh - 80px);
                background: white;
                flex-direction: column;
                padding: 40px 20px;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
                transition: right 0.3s ease;
            }
            .hamburger {
                display: block;
            }
            .nav-links.active {
                right: 0;
				background: linear-gradient(135deg, #1a75bc 0%, #0a4299 100%);
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            .carousel {
                height: 400px;
            }
            
            .values-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .values-grid {
                grid-template-columns: 1fr;
            }
            
            .product-categories {
                grid-template-columns: 1fr;
            }
        }
		/* Testimonials Section */
    .testimonials {
        background-color: #f9f9f9;
        padding: 5rem 0;
    }
    
    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .testimonial-card {
        background: white;
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s;
    }
    
    .testimonial-card:hover {
        transform: translateY(-5px);
    }
    
    .quote-icon {
        color: #4cdb5d;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .testimonial-text {
        font-style: italic;
        color: #555;
        margin-bottom: 20px;
        line-height: 1.6;
    }
    
    .testimonial-author {
        display: flex;
        align-items: center;
    }
    
    .author-image {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        overflow: hidden;
        margin-right: 15px;
        background-color: #e0e0e0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #888;
        flex-shrink: 0;
    }
    
    .author-details h4 {
        color: #1a75bc;
        margin-bottom: 5px;
    }
    
    .author-details p {
        color: #666;
        font-size: 0.9rem;
    }
    
    .testimonials-cta {
        text-align: center;
        padding: 30px;
        background: white;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .testimonials-cta p {
        margin-bottom: 20px;
        color: #555;
    }
    
    /* Responsive Design for Testimonials */
    @media (max-width: 768px) {
        html, body {
        max-width: 100%;
        overflow-x: hidden;
        }
        }
    @media (max-width: 768px) {
        .testimonial-author {
            flex-direction: column;
            text-align: center;
        }
        
        .author-image {
            margin-right: 0;
            margin-bottom: 15px;
        }
        
        .testimonials-grid {
            grid-template-columns: 1fr;
        }
    }
 /* Call to Action Section */
    .cta {
        background: linear-gradient(135deg, #0a4299 0%, #1a75bc 100%);
        color: white;
        padding: 5rem 0;
        position: relative;
        overflow: hidden;
    }
    
    .cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
        opacity: 0.5;
    }
    
    .cta-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        z-index: 2;
    }
    
    .cta-text {
        flex: 1;
        padding-right: 40px;
    }
    
    .cta-text h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        color: white;
    }
    
    .cta-text p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        opacity: 0.9;
        line-height: 1.6;
    }
    
    .cta-features {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .cta-feature {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .cta-feature i {
        color: #4cdb5d;
        font-size: 1.2rem;
    }
    
    .cta-actions {
        flex: 0 0 300px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .btn-primary {
        background: #4cdb5d;
        color: white;
        padding: 15px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s;
        text-align: center;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    
    .btn-primary:hover {
        background: #3bb54a;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    
    .btn-secondary {
        background: transparent;
        color: white;
        padding: 15px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s;
        text-align: center;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        border: 2px solid white;
    }
    
    .btn-secondary:hover {
        background: white;
        color: #1a75bc;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    
    .cta-note {
        text-align: center;
        font-size: 0.9rem;
        opacity: 0.8;
        margin-top: 10px;
    }
    
    /* Responsive Design for CTA */
    @media (max-width: 900px) {
        .cta-content {
            flex-direction: column;
            text-align: center;
            gap: 40px;
        }
        
        .cta-text {
            padding-right: 0;
        }
        
        .cta-features {
            align-items: center;
        }
        
        .cta-actions {
            flex: 0 0 auto;
            width: 100%;
            max-width: 300px;
        }
        
        .cta-text h2 {
            font-size: 2rem;
        }
    }
	.mapouter{position:relative;text-align:right;} .gmap_canvas{overflow:hidden;background:none!important;} .gmap_canvas iframe{width:100%;height:100%;} .mapouter a{display:block;font-size:0.85em;text-align:center;padding:5px 0;color:#6c757d;text-decoration:none;} .gme-generated-link{display:none!important;}