        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            line-height: 1.6;
            color: #333;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 10px 20px;
            border-radius: 4px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background-color: #2563eb;
            color: white;
            border: none;
        }

        .btn-primary:hover {
            background-color: #1d4ed8;
        }

        .btn-outline {
            background-color: transparent;
            color: white;
            border: 1px solid white;
        }

        .btn-outline:hover {
            background-color: white;
            color: #1e3a8a;
        }

        /* Top Bar */
        .top-bar {
            background-color: #1e3a8a;
            color: white;
            padding: 8px 0;
        }

        .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .contact-info, .social-info {
            display: flex;
            align-items: center;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-right: 20px;
            font-size: 14px;
        }

        .contact-item i {
            margin-right: 8px;
        }

        .social-icons {
            display: flex;
            gap: 10px;
        }

        

        /* Hero Section */
        .hero-section {
            background-color: #1e3a8a;
            /* background-color: #fff; */
            color: white;
            padding: 80px 0;
        }

        .hero-content {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .hero-text {
            flex: 1;
        }

        .hero-title {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 18px;
            margin-bottom: 30px;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
        }

        .hero-image {
            flex: 1;
            display: flex;
            justify-content: center;
        }

        .hero-card {
            /* background-color: white; */
            border-radius: 8px;
            padding-top: 50px;
            /* padding: 20px; */
            /* box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2); */
            /* max-width: 300px; */
            width: 100%;
        }

        .hero-card img {
            background-color: white;
            width: 100%;
            border-radius: 4px;
            /* margin-bottom: 15px; */
            object-fit: cover;
            padding: 10px;
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
        }

        /* Services Section */
        .services-section {
            background-color: #f9fafb;
            padding: 80px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title {
            font-size: 32px;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 15px;
        }

        .section-subtitle {
            color: #4b5563;
            max-width: 600px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .service-card {
            background-color: white;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .service-card:hover {
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }

        .service-icon {
            width: 50px;
            height: 50px;
            background-color: #dbeafe;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: a5px;
            color: #2563eb;
            font-weight: 700;
            font-size: 20px;
        }

        .service-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #1f2937;
        }

        .service-description {
            color: #4b5563;
            margin-bottom: 20px;
        }

        .read-more {
            color: #2563eb;
            font-weight: 500;
            display: flex;
            align-items: center;
            font-size: 14px;
        }

        .read-more i {
            margin-left: 5px;
        }

        .view-all {
            text-align: center;
        }

        /* About Section */
        .about-section {
            padding: 40px 0;
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-image {
            flex: 1;
        }

        .about-image img {
            width: 70%;
            border-radius: 8px;
            /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
        }

        .about-text {
            flex: 1;
        }

        .about-title {
            font-size: 32px;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 20px;
        }

        .about-description {
            color: #4b5563;
            margin-bottom: 30px;
        }

        .about-features {
            margin-bottom: 30px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .feature-icon {
            width: 25px;
            height: 25px;
            background-color: #dbeafe;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: #2563eb;
        }

        /* CTA Section */
        .cta-section {
            background-color: #1e3a8a;
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .cta-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .cta-description {
            max-width: 600px;
            margin: 0 auto 30px;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        /* Footer */
        /* .footer {
            background-color: #1f2937;
            color: #d1d5db;
            padding: 60px 0 0;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-column h3 {
            color: white;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .footer-column p {
            margin-bottom: 20px;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-contact-item {
            display: flex;
            margin-bottom: 15px;
        }

        .footer-contact-item i {
            margin-right: 10px;
            margin-top: 3px;
        }

        .footer-bottom {
            text-align: center;
            padding: 20px 0;
            border-top: 1px solid #374151;
        } */

        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .menu {
                display: none;
            }

            .mobile-menu-toggle {
                display: block;
            }

            /*.menu.active {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: white;
                padding: 20px;
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
                z-index: 100;
            }*/

            .contact-info {
                display: none;
            }

            .hero-content, .about-content {
                flex-direction: column;
            }

            .hero-image, .about-image {
                margin-top: 40px;
            }

            .top-bar-content {
                justify-content: center;
            }
            .hero-card {
                padding-top: 0px;
            }
        }

        @media (max-width: 768px) {
            .services-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .hero-buttons, .cta-buttons {
                flex-direction: column;
                gap: 10px;
            }

            .btn {
                width: 100%;
                text-align: center;
            }

            .action-buttons {
                display: none;
            }
            .hero-card {
                padding-top: 0px;
            }
        }