 /* Home Hero Section */
        .home-hero {
            background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url('../img/home-hero.jpg') no-repeat center/cover;
            color: white;
            padding: 120px 0 80px;
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .home-hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .home-hero-subtitle {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .home-hero-description {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            max-width: 800px;
            margin-top: 20px;
            margin-left: auto;
            margin-right: auto;
        }

        .home-hero-button {
            display: inline-block;
            background: var(--primary); 
            color: #fff; 
            padding: 14px 32px; 
            border-radius: 30px;
            margin-top: 40px;
            font-weight: 600; 
            transition: var(--transition);
            box-shadow: var(--shadow-md);
            text-decoration: none;
        }

        .home-hero-button:hover {
            background: #ebebeffe; 
    		transform: translateY(-2px);
    		box-shadow: var(--shadow-lg);
    		text-decoration: none;
            color: rgb(45, 43, 43);
            transform: translateY(-2px);
        }

        .home-cta-button {
            display: block;
            background: var(--primary); 
            color: #fff; 
            padding: 14px 32px; 
            border-radius: 30px;
            font-weight: 600; 
            transition: var(--transition);
            box-shadow: var(--shadow-md);
            text-decoration: none;
            width: fit-content; /* Only as wide as the content */
            margin-left: 0; /* Ensure no left margin */
        }

        .home-cta-button:hover {
            background: #ebebeffe; 
    		transform: translateY(-2px);
    		box-shadow: var(--shadow-lg);
    		text-decoration: none;
            color: rgb(45, 43, 43);
            transform: translateY(-2px);
        }

        .home-scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 1.5rem;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0) translateX(-50%);
            }
            40% {
                transform: translateY(-10px) translateX(-50%);
            }
            60% {
                transform: translateY(-5px) translateX(-50%);
            }
        }

        /* Home Sections */
        .home-section {
            padding: 80px 0;
        }

        .home-section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .home-section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #000000ff;
            margin-bottom: 1rem;
        }

        .home-section-title p {
            font-size: 1.1rem;
            color: #1f1e1eff;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Home Products */
        .home-product-row {
            margin-bottom: 80px;
        }

        .home-product-row:last-child {
            margin-bottom: 0;
        }

        .home-product-img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .home-product-info {
            padding: 20px;
        }

        .home-product-info h3 {
            font-size: 2rem;
            font-weight: 700;
            color: #000000ff;
            margin-bottom: 1rem;
        }

        .home-product-info p {
            font-size: 1.1rem;
            color: #363636ff;
            margin-bottom: 2rem;
            line-height: 1.6;
            text-align: justify;
        }

        .home-view-btn {
            display: inline-block;
            color: #123c78;
            padding: 10px 25px;
            border: 2px solid #123c78;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .home-view-btn:hover {
            background: #123c78;
            color: white;
            transform: translateY(-2px);
        }

        /* Home Services */
        .home-services {
            background: #f8f9fa;
        }

        .home-service-item {
            text-align: center;
            padding: 30px 20px;
            background: #dfdfdab3;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
            height: 100%;
        }

        .home-service-item:hover {
            transform: translateY(-5px);
        }

        .home-service-icon {
            margin-bottom: 20px;
            color: #123c78;
        }

        .home-service-item h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #123c78;
            margin-bottom: 1rem;
        }

        .home-service-item p {
            color: #666;
            line-height: 1.6;
        }

        .home-services-cta {
            margin-top: 30px;
        }

        /* Home Leadership */
        .home-leader-item {
            background: #d7d8daff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
            height: 100%;
        }

        .home-leader-item:hover {
            transform: translateY(-5px);
        }

        .home-leader-image {
            height: 350px;
            overflow: hidden;
        }

        .home-leader-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .home-leader-content {
            padding: 25px;
        }

        .home-leader-content h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #010101ff;
            margin-bottom: 0.5rem;
        }

        .home-leader-role {
            color: #060505ff;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .home-leader-content p {
            color: #666;
            line-height: 1.6;
            text-align: justify;
        }

        /* Home Why Choose Us */
        .home-why-us {
            padding: 80px 0;
            background: #dfdfdab3;
        }

        .home-feature {
            text-align: center;
            padding: 30px 20px;
        }

        .home-feature i {
            font-size: 3rem;
            color: #123c78;
            margin-bottom: 20px;
        }

        .home-feature h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #123c78;
            margin-bottom: 1rem;
        }

        .home-feature p {
            color: #666;
            line-height: 1.6;
        }

        /* Home CTA Section */
        .home-cta-section {
            background: linear-gradient(135deg, #123c78 0%, #6a96cc 100%);
            color: white;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .home-cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
            text-align: left;
        }

        .home-animated-glow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at left,135deg, #0f172a 10%, #1e293b 70%);
            animation: pulse 4s infinite;
            z-index: 0;
        }

        @keyframes pulse {
            0% {
                opacity: 0.5;
                transform: scale(1);
            }
            50% {
                opacity: 0.8;
                transform: scale(1.1);
            }
            100% {
                opacity: 0.5;
                transform: scale(1);
            }
        }

        .home-cta-section .container {
            position: relative;
            z-index: 1;
        }

        /* Mobile Responsive Design */
        @media (max-width: 768px) {
            .home-hero-title {
                font-size: 2.5rem;
            }
            
            .home-hero-subtitle {
                font-size: 1.2rem;
            }
            
            .home-section-title h2 {
                font-size: 2rem;
            }
            
            .home-product-info h3 {
                font-size: 1.8rem;
            }
            
            .home-cta-title {
                font-size: 2rem;
            }
            
            .home-product-row {
                margin-bottom: 20px;
            }
            
            .home-product-info {
                padding: 20px 0;
                text-align: center;
            }

            /* PRODUCT SECTION MOBILE ORDER FIX */
            /* Ensure text content comes first on mobile */
            .home-products .order-2 {
                order: 1 !important;
            }
            
            .home-products .order-1 {
                order: 2 !important;
            }

            .home-product-image {
                margin-bottom: 30px;
            }
        }

        @media (max-width: 576px) {
            .home-hero-title {
                font-size: 2rem;
            }
            
            .home-hero {
                padding: 100px 0 60px;
            }
            
            .home-section-title h2 {
                font-size: 1.8rem;
            }
            
            .home-product-info h3 {
                font-size: 1.6rem;
            }
            
            .home-cta-title {
                font-size: 1.8rem;
            }

            .container {
                padding-left: 15px;
                padding-right: 15px;
            }
        }

        /* Desktop full width (12 columns) */
        @media (min-width: 1200px) {
            .container {
                max-width: 1140px;
            }
        }