    body {
            font-family: 'Inter', sans-serif;
            background: #020617; /*Dark background*/
            color: #fff;
        }

        .navbar {
            background: #000000;
        }

        .hero {
            min-height: 60vh;
            display: flex;
            background: url("../images/bg.webp") center/cover;
            justify-content: center; /* Center content horizontally */
            align-items: center;  /* Center content vertically */
        }

        .hero h1 {
            font-weight: 700;
            font-family: "Noto Sans Carian", sans-serif;
            color: #fff;
            border-radius: 1rem;
            width: auto;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 1); /* Add a text shadow */
        }

        #landingText {
            font-size: 1.2rem;
            color: #eee; /* Lighter text color for better readability */
            font-weight: bolder;
            text-shadow: 2px 2px black;
        }

        .hero p {
            font-size: 1.2rem;
            color: #fff;
            font-weight: 600;
        }

        .section {
            padding: 20px 0;
        }

        .card {
            background: #1e293b;
            border: none;
            color: white;
            border-radius: 10px; /*Add rounded corners*/
            transition: transform 0.2s ease-in-out; /* Smooth transition */
        }

        .card:hover {
            transform: translateY(-5px);
            transition: .3s;
        }

        .icon {
            font-size: 40px;
            margin-bottom: 15px;
        }

        .gallery img {
            border-radius: 10px;
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

        .cta {
            background: linear-gradient(135deg, #2563eb, #000000);
            border-radius: 12px;
            padding: 60px;
            text-align: center;
        }

        footer {
            background: #020617;
            padding: 30px;
            text-align: center;
            color: #94a3b8;
        }

        .btn-primary {
            background: #2563eb;
            border: none;
        }

        .btn-primary:hover {
            background: #1d4ed8;
        }

        .navbar-brand {
            font-family: "Audiowide", sans-serif;
        }

        #examplesContainer {
            margin-top: 50px;
            margin-bottom: 100px;
        }

        #landingShadow {
            background: rgba(0, 0, 0, 0.20);
            border-radius: 1rem;
            padding: 50px;
            max-width: 800px;
            margin: 1rem auto;
        }

        #logoCumbria {
            font-family: "Noto Sans Carian", sans-serif;
        }

        /* Smartphones */
        @media (max-width: 767px) {
           .cta {padding:10px;}
           #firstRowImages {display: none;}
           .gallery img {border-radius: 5px;}
        }