*{
            font-family: Poppins;
        }
        /* Navbar Styling */
        .navbar {
            background: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            padding: 12px 0;
        }

        /* Brand Text */
        .navbar-brand {
            font-size: 1.4rem;
            font-weight: 700;
            color: #333 !important;
            letter-spacing: 0.3px;
        }

        /* Navbar Links */
        .navbar-nav .nav-link {
            color: #444 !important;
            font-weight: 500;
            padding: 8px 14px;
            transition: 0.3s ease;
        }

        /* Hover Effect */
        .navbar-nav .nav-link:hover {
            color: #007bff !important;
            transform: translateY(-1px);
        }

        /* Active Link */
        .navbar-nav .nav-link.active {
            color: #007bff !important;
            font-weight: 600;
        }

        /* Mobile Toggle Icon */
        .navbar-toggler {
            border: none;
        }
        .navbar-toggler:focus {
            box-shadow: none;
        }
        /* Banner Image */
        .header-image {
            width: 100%;
            height: 520px;    
            object-fit: cover;
            border-radius: 0; 
        }
        .app-tile {
            background: #fff;
            border-radius: 16px;
            padding: 18px;
            transition: 0.3s ease;
        }

        .app-tile:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }

        .tile-banner {
            width: 100%;
            height: 170px;
            border-radius: 14px;
            object-fit: cover;
        }

        .tile-info {
            align-items: center;
        }

        .tile-icon {
            width: 55px;
            height: 55px;
            border-radius: 12px;
            object-fit: cover;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        }
        .section-title {
                font-size: 28px;
                font-weight: bold;
                margin-bottom: 25px;
                text-align: left;
        }
        /* Footer */
        .footer {
            background: linear-gradient(145deg, #1a1c23, #242730);
            color: #ffffff;
        }
        
        .footer-title {
            font-size: 20px;
            color: #fff;
            font-weight: 600;
            margin-bottom: 1.5rem;
            position: relative;
        }
        .footer-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 30px;
            height: 2px;
            background: #6c5ce7;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 1rem;
        }
        
        .footer-links a {
            color: #b4b6bb;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #ffffff;
            padding-left: 5px;
        }        
        .footer-bottom {
            background: rgba(0,0,0,0.2);
        }
        
        .footer-bottom a {
            
            color: #6c5ce7;
            text-decoration: none;
        }
        
        .footer-bottom a:hover {
            color: #ffffff;
        }