        /* --- Global Styles & Theming --- */
        :root {
            --primary-color: #0056b3; /* A modern, trustworthy blue */
            --secondary-color: #00c9a7; /* A vibrant teal for accents */
            --dark-color: #343a40;
            --light-color: #f8f9fa;
            --font-heading: 'Poppins', sans-serif;
            --font-body: 'Lato', sans-serif;
            --accent: #3b82f6;
            --light: #f8fafc;
        }

        .bc2 {
            background-color: #ED5D00;
        }

        .fc2 {
            color: #ED5D00;
        }

        body {
            font-family: var(--font-body);
            color: #555;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: 700;
            color: var(--dark-color);
        }

        /* --- Navigation --- */
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .navbar-brand {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
        }

        .navbar-nav .nav-link {
            font-weight: 600;
            margin: 0 10px;
            color: var(--dark-color) !important;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }

        .navbar .btn {
            font-weight: 600;
        }

        /* --- Hero Section --- */
        .hero-section {
            background: linear-gradient(135deg, rgba(0, 86, 179, 0.9), rgba(0, 201, 167, 0.8)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726a?q=80&w=2070&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 150px 0;
            text-align: center;
        }

        .hero-section h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .hero-section .lead {
            font-size: 1.4rem;
            font-weight: 400;
            margin-bottom: 40px;
        }

        .btn-hero {
            padding: 12px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-primary-custom {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            color: white;
        }

        .btn-primary-custom:hover {
            background-color: #00b395;
            border-color: #00b395;
            color: white;
        }

        .btn-outline-light-custom {
            border-color: white;
            color: white;
        }
        
        .btn-outline-light-custom:hover {
            background-color: white;
            color: var(--primary-color);
        }

        /* --- Section Styles --- */
        .section {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--secondary-color);
            border-radius: 2px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #777;
            max-width: 700px;
            margin: 0 auto 60px auto;
            text-align: center;
        }

        /* --- Services Section --- */
        .service-card {
            border: none;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            padding: 30px;
            text-align: center;
            height: 100%;
        }

        .service-card:hover {
            border: 1px solid var(--primary-color);
            transform: translateY(-10px);
            /* box-shadow: 0 10px 30px rgba(0,0,0,0.12); */
            box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
        }

        .service-icon {
            font-size: 3.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }


        /* Products Section */
        .products {
            padding: 6rem 0;
            background-color: var(--light-color);
        }

        .product-card {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            border-radius: 20px;
            padding: 3rem 2rem;
            text-align: center;
            transition: all 0.4s ease;
            border: 2px solid transparent;
            height: 100%;
        }

        .product-card:hover {
            border-color: var(--primary-color);
            transform: scale(1.05);
            box-shadow: 0 20px 50px rgba(37, 99, 235, 0.2);
        }

        .product-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--primary-color), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .product-card h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark-color);
        }

        .product-features {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0;
            text-align: left;
        }

        .product-features li {
            padding: 0.5rem 0;
            color: #64748b;
            position: relative;
            padding-left: 1.5rem;
        }

        .product-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-weight: bold;
        }

        /* --- Why Choose Us Section --- */
        .why-choose-us {
            background-color: white;
        }
        
        .feature-item {
            text-align: center;
            margin-bottom: 40px;
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px auto;
            font-size: 2rem;
        }

        /* --- Testimonials Section --- */
        .testimonials {
            padding: 6rem 0;
            background-color: var(--light-color);
        }
        .testimonial-card {
            border: none;
            background-color: #fff;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.07);
            margin-bottom: 30px;
        }
        
        .testimonial-text {
            font-style: italic;
            font-size: 1.1rem;
            margin-bottom: 20px;
        }

        .testimonial-author {
            font-weight: 700;
            color: var(--dark-color);
        }

        .testimonial-author .text-muted {
            font-size: 0.9rem;
            font-weight: 400;
        }

        /* --- CTA Section --- */
        .cta-section {
            background-color: var(--primary-color);
            color: white;
            text-align: center;
            padding: 80px 0;
        }
        
        .cta-section h2 {
            color: white;
        }

        /* --- Footer --- */
        footer {
            background-color: var(--dark-color);
            color: #ccc;
            padding: 60px 0 30px 0;
        }

        footer h5 {
            color: white;
            margin-bottom: 25px;
        }

        footer ul {
            list-style: none;
            padding: 0;
        }

        footer ul li {
            margin-bottom: 10px;
        }

        footer ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        footer ul li a:hover {
            color: var(--secondary-color);
        }
        
        .social-icons a {
            color: white;
            font-size: 1.5rem;
            margin-right: 15px;
            transition: color 0.3s ease;
        }

        .social-icons a:hover {
            color: var(--secondary-color);
        }

        .footer-bottom {
            border-top: 1px solid #444;
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
            font-size: 0.9rem;
        }
