    @font-face {
        font-family: 'iBrand';
        src: url('image/ibrand.otf') format('opentype');
        font-weight: normal;
        font-style: normal;
    }

    body {
        font-family: 'iBrand', sans-serif;
    }

    /* body {
        font-family: 'Poppins', sans-serif;
    } */

    /* Navbar */
    .navbar {
        padding: 1rem 2rem;
    }

    .navbar-brand img {
        height: 40px;
    }

    /* Hero */
    .hero {
        padding: 200px 20px;
        text-align: center;
        background: linear-gradient(to top, #c1f5ff5d, #F5FDFF);
    }

    .hero h1 {
        font-size: 4rem;
        font-weight: 200;
    }

    .hero span {
        color: #007BCA;
    }

    .hero p {
        color: #555;
        font-size: 1.1rem;
        margin: 15px 0;
    }

    .empowering-section {
        position: relative;
        background: #0077B6;
        /* Blue background */
        width: 100%;
        padding: 100px 20px;
        /* spacing above/below */
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .empowering-section .content {
        background: #fff;
        padding: 80px 40px;
        max-width: 900px;
        text-align: center;
        border-radius: 30px;

        /* Clip-path to create top & bottom curve */
        -webkit-clip-path: path("M30 0 Q50 50 100 0 L100 100 Q50 50 0 100 Z");
        clip-path: path("M30 0 Q50 50 100 0 L100 100 Q50 50 0 100 Z");
    }

    .empowering-section h2 {
        color: #007BCA;
        font-weight: 700;
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .empowering-section p {
        color: #222;
        font-size: 1.2rem;
    }

    /* Services */
    .services .card {
        border: none;
        background: #f4faff;
        border-radius: 15px;
        padding: 10px 0px;
        transition: transform 0.3s;
    }

    .services .card:hover {
        transform: translateY(-10px);
    }

    /* Portfolio */
    .portfolio {
        padding: 20px;
        text-align: center;
    }

    .portfolio-slider {
        position: relative;
        width: 100%;
        max-width: 800px;
        margin: 0 auto;
        overflow: hidden;
        border-radius: 10px;
        height: 500px;
        /* fixed height for the carousel */
    }

    .portfolio-slider .slide {
        position: absolute;
        top: 0;
        left: 100%;
        /* start off-screen right */
        width: 100%;
        /* height: 100%; */
        transition: left 1s ease-in-out;
    }

    .portfolio-slider .slide.active {
        left: 0;
        /* move into view */
    }

    .portfolio-slider img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }

    /* Clients */
    .clients {
        padding: 20px 0;
        background: #fff;
        overflow: hidden;
    }

    .clients-slider {
        display: flex;
        width: 100%;
    }

    .clients-track {
        display: flex;
        width: calc(200%);
        /* because images are duplicated */
        animation: scroll 25s linear infinite;
    }

    .clients-track img {
        height: 80px;
        margin: 0 20px;
        flex-shrink: 0;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
            /* move by half width (one set of images) */
        }
    }

    /* Stats */
    .stats {
        background: linear-gradient(to bottom, #007BCA, #004E8A);
        color: #fff;
        padding: 80px 20px;
        text-align: center;
    }

    .stats h2 {
        font-size: 3rem;
        font-weight: 700;
    }

    /* Contact */
    .contact {
        background: linear-gradient(135deg, #f8f9fa, #eef2f7);
    }

    .contact h2 {
        font-size: 2rem;
        color: #000;
    }

    .contact .card {
        background: #fff;
        border-radius: 15px;
    }

    .contact .input-group-text {
        background: #0077B6;
        color: #fff;
        border: none;
        border-radius: 10px 0 0 10px;
        font-size: 1.2rem;
    }

    .contact .form-control {
        border: 1px solid #ced4da;
        border-radius: 0 10px 10px 0;
        padding: 12px 15px;
        font-size: 1rem;
        transition: all 0.3s ease-in-out;
    }

    .contact .form-control:focus {
        border-color: #0d6efd;
        box-shadow: 0 0 10px rgba(13, 110, 253, 0.25);
    }

    .custom-btn {
        border: 2px solid #0077B6;
        /* outline border */
        background: transparent;
        /* no fill */
        color: #0077B6;
        /* text color */
        padding: 10px 20px;
        font-size: 1rem;
        border-radius: 8px;
        transition: all 0.3s ease-in-out;
    }

    /* Hover effect: fill with color */
    .custom-btn:hover {
        background: #00B6DB;
        color: #fff;
        transform: translateY(-2px);
        /* small lift */
    }

    .footer {
        background-color: #000;
        color: #fff;
        font-family: Arial, sans-serif;
    }

    .footer-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto;
        padding: 60px 20px;
    }

    .footer-col {
        flex: 1 1 200px;
        margin: 20px;
    }

    .footer-logo {
        width: 150px;
        margin-bottom: 10px;
    }

    .footer-col h4 {
        margin-bottom: 15px;
        font-size: 18px;
        text-transform: uppercase;
    }

    .footer-col p {
        margin: 5px 0;
        font-size: 13px !important;
    }

    .social-icons a {
        display: inline-block;
        margin-right: 10px;
    }

    .social-icons img {
        width: 20px;
        transition: transform 0.3s;
    }

    .social-icons img:hover {
        transform: scale(1.2);
    }

    /* Footer Bottom */
    .footer-bottom {
        text-align: center;
        padding: 20px;
        border-top: 1px solid #444;
        /* subtle line */
    }

    .footer-bottom p {
        margin: 10px 0 0 0;
        font-size: 14px;
        color: #aaa;
    }