body {
            font-family: 'Inter', sans-serif;
            line-height: 1.7;
            color: #555;
            background-color: #fdfdff;
        }

        /* --- Custom Colors & Variables --- */
        :root {
            --primary-color: #47108f; /* Dark blue from logo */
            --secondary-color: #f88d16; /* Teal from logo */
            --accent-color: #7670a9; /* A light blue accent */
            --text-dark: #212529;
            --text-light: #6c757d;
            --section-bg: #ffffff;
            --section-bg-alt: #f8f9fa;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 600;
            color: var(--text-dark);
        }

        .section-padding {
            padding: 80px 0;
        }

        .section-bg {
            background-color: var(--section-bg);
        }

        .section-bg-alt {
            background-color: var(--section-bg-alt);
        }

        .section-title {
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            position: relative;
            padding-bottom: 15px;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            display: block;
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .section-title p {
            font-size: 1.1rem;
            color: var(--text-light);
        }

        /* --- Navbar --- */
        .navbar {
            background-color: #ffffff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            
        }
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231A4A8F' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); /* Primary color */
        }
        .navbar-brand {
            font-weight: 700;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
        }

        .navbar .nav-link {
            font-weight: 500;
            color: var(--text-dark) !important;
            margin: 0 10px;
            transition: color 0.3s ease;
        }

        .navbar .nav-link:hover,
        .navbar .nav-link.active {
            color: var(--primary-color) !important;
        }

        .navbar-toggler {
            border: none;
            
        }
        .navbar-toggler:focus {
            box-shadow: none;
        }

        /* --- Hero Section (#home) --- */
        #home {
            height: 100vh;
            min-height: 600px;
            /* background: linear-gradient(to bottom, rgb(27, 34, 90), rgb(20, 171, 182)); */
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #ffffff;
        }

        #home .hero-content {
            max-width: 800px;
        }

        #home h2 {
           font-size: 2.5rem;
            font-weight: 700;
            color: #ffffff;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
            margin-bottom: 20px;
        }

        #home p {
            font-size: 1.25rem;
            font-weight: 300;
            margin-bottom: 30px;
        }

        .btn-primary {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background-color: var(--accent-color);
            border-color: var(--accent-color);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        /* --- About Us Section --- */
        .about-content p {
            text-align: justify;
        }
        .about-content ul.checklist {
            list-style: none;
            padding-left: 0;
        }
        .about-content ul.checklist li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 10px;
        }
        .about-content ul.checklist li::before {
            content: '\f00c'; /* Font Awesome check */
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 5px;
            color: var(--secondary-color);
        }
        
        .about-content .emoji-list {
            list-style: none;
            padding-left: 0;
        }
        .about-content .emoji-list li {
            font-size: 1.05rem;
            margin-bottom: 8px;
        }

        .division-card {
            background: var(--section-bg);
            border: 1px solid #eee;
            border-radius: 10px;
            padding: 30px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
            height: 100%;
        }
        .division-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
        }
        .division-card h3 {
            color: var(--primary-color);
            font-size: 1.8rem;
            margin-bottom: 15px;
        }
        .division-card h5 {
            font-style: italic;
            color: var(--text-light);
            font-weight: 400;
            font-size: 1.1rem;
        }

        /* Custom spacing for division cards */
        .row.gx-4 .division-card:first-child {
            margin-right: 1.5rem; /* Equivalent to gx-3 or gx-4 spacing */
        }

        @media (max-width: 991.98px) {
            .row.gx-4 .division-card:first-child {
                margin-right: 0;
                margin-bottom: 1.5rem; /* Add bottom margin on smaller screens */
            }
        }
        
        .value-card {
            background: var(--section-bg-alt);
            border: 1px solid #eee;
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
        }
        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
        }
        .value-card .icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        .value-card h6 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-dark);
        }

        /* --- Corporate Services Section --- */
        .service-item {
            padding: 30px;
            background: var(--section-bg);
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
        }
        .service-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        .service-item .icon {
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }
        .service-item h4 {
            color: var(--primary-color);
            font-weight: 700;
        }
        .service-item ul {
            list-style: none;
            padding-left: 0;
            margin-top: 15px;
        }
        .service-item ul li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 10px;
        }
        .service-item ul li::before {
            content: '\f058'; /* Font Awesome check-circle */
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 2px;
            color: var(--secondary-color);
        }

        /* --- Footer (New Contact Section) --- */
        .footer {
            
            background-color: var(--primary-color); /* Primary color from logo */
            color: white;
            padding-top: 80px;
        }
        .footer-main {
            padding-bottom: 60px;
        }
        .footer h5 {
            color: #ffffff;
            font-weight: 600;
            margin-bottom: 20px;
        }
        .footer p, .footer li {
            font-size: 0.95rem;
        }

        .footer-contact-info .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
            color: white;
        }
        .footer-contact-info .info-item i {
            font-size: 1.1rem;
            color: var(--secondary-color); /* Changed to secondary color for consistency */
            margin-right: 15px;
            width: 20px;
            margin-top: 5px;
        }
        .footer-contact-info .info-item p {
            margin: 0;
            line-height: 1.6;
        }
        .footer-contact-info .info-item a {
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .footer-contact-info .info-item a:hover {
            color: #ffffff;
        }

        /* .footer-social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            font-size: 1.1rem;
            margin-right: 10px;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .footer-social-links a:hover {
            background-color: var(--primary-color);
            color: #ffffff;
        } */
        
        .footer .form-control {
            background-color: #2c3034;
            border-color: #444;
            color: #fff;
        }
        .footer .form-control::placeholder {
            color: #999;
        }
        .footer .form-control:focus {
            background-color: #2c3034;
            color: #fff;
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 0.25rem rgba(25, 118, 210, 0.25);
        }
        .footer .form-label {
            color: #ccc;
        }
        
        .footer-map iframe {
            border-radius: 10px;
            border: 0;
            width: 100%;
            height: 300px;
        }
        
        .footer-bottom {
            background-color: #230945; /* Darker shade of primary color for footer bottom */
            padding: 20px 0;
            text-align: center;
            font-size: 0.9rem;
        }
        .footer-bottom p {
            margin: 0;
        }

        /* --- Scroll to Top Button --- */
        .scroll-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            display: none;
            width: 40px;
            height: 40px;
            background: var(--secondary-color);
            color: #fff;
            border-radius: 5px;
            text-align: center;
            line-height: 40px;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            z-index: 1000;
            display: none; /* Hidden by default */
            transition: background-color 0.3s ease, opacity 0.5s ease;
        }
        .scroll-to-top:hover {
            background: var(--primary-color);
            color: #fff;
        }

        /* --- Responsive Design --- */
        @media (max-width: 991.98px) {
            #home h1 {
                font-size: 2.8rem;
            }
            #home p {
                font-size: 1.1rem;
            }
            .navbar .nav-link {
                margin: 5px 0;
                padding: 10px;
                background: #f8f9fa;
                border-radius: 5px;
            }
        }
        /* --- Hero Section Carousel --- */
        #heroCarousel .carousel-inner .carousel-item {
            transition: transform 0.6s ease-in-out; /* Smooth transition for slides */
        }

        #heroCarousel .carousel-item img {
            width: 100%;
            height: 450px; /* Adjust as needed */
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        #heroCarousel .carousel-control-prev,
        #heroCarousel .carousel-control-next {
            display: none; /* Hide navigation buttons */
        }

        @media (max-width: 767.98px) {
            #home {
                height: auto;
                padding: 150px 0;
            }
            #home h1 {
                font-size: 2.2rem;
            }
            #heroCarousel .carousel-item img {
                height: 300px;
            }
        }