        body {
            font-family: 'Poppins', sans-serif;
        }

        /* Navbar Styling */
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        /* Logo */
        .navbar-logo {
            height: 45px;
            /* controls logo size */
            width: auto;
        }

        /* Brand Text */
        .brand-text {
            font-size: 1.1rem;
            /* smaller font */
            font-weight: 500;
            color: #0d6efd;
        }

        .navbar-brand {
            font-weight: 600;
            font-size: 1.5rem;
            color: #0d6efd !important;
        }

        /* Nav Links */
        .navbar-nav .nav-link {
            position: relative;
            color: #333;
            font-weight: 500;
            margin: 0 8px;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -6px;
            width: 0;
            height: 3px;
            background: #0d6efd;
            transition: width 0.3s ease;
            border-radius: 10px;
        }

        .navbar-nav .nav-link:hover {
            color: #0d6efd;
        }

        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }

        /* Active Link */
        .navbar-nav .nav-link.active {
            color: #0d6efd;
        }

        .navbar-nav .nav-link.active::after {
            width: 100%;
        }

        /* Mobile Menu Animation */
        .navbar-collapse {
            transition: all 0.4s ease-in-out;
        }

        /* HOME CAROUSEL */
        .home-section {
            margin-top: 75px;
            /* navbar spacing */
        }

        .carousel-item {
            height: 90vh;
        }

        .carousel-item img {
            height: 100%;
            object-fit: cover;
        }

        /* Dark overlay */
        .carousel-item::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.45);
            z-index: 1;
        }

        /* Caption Styling */
        .carousel-caption {
            z-index: 2;
            bottom: 50%;
            transform: translateY(50%);
            text-align: left;
            max-width: 500px;
            backdrop-filter: blur(8px);
            background: rgba(255, 255, 255, 0.15);
            padding: 30px;
            border-radius: 20px;
            animation: fadeUp 1s ease forwards;
        }

        .carousel-caption h1 {
            font-size: 2.8rem;
            font-weight: 600;
        }

        .carousel-caption p {
            font-size: 1.1rem;
            margin: 15px 0;
        }

        /* Button */
        .carousel-caption .btn {
            padding: 10px 25px;
            border-radius: 30px;
        }

        /* Animation */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(80px);
            }

            to {
                opacity: 1;
                transform: translateY(50%);
            }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .carousel-item {
                height: 75vh;
            }

            .carousel-caption {
                bottom: 20%;
                transform: none;
                text-align: center;
                max-width: 90%;
            }

            .carousel-caption h1 {
                font-size: 1.8rem;
            }

            .carousel-caption p {
                font-size: 1rem;
            }
        }

        /* SERVICES SECTION */
        .services-section {
            background: linear-gradient(135deg, #f8f9fa, #eef2f7);
            position: relative;
            overflow: hidden;
        }

        /* Title */
        .section-title {
            font-size: 2.4rem;
            font-weight: 600;
            color: #0d6efd;
        }

        .section-subtitle {
            max-width: 650px;
            margin: 10px auto 0;
            color: #555;
            font-size: 1.05rem;
        }

        /* Service Card */
        .service-card {
            height: 100%;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            border-radius: 22px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
            transition: all 0.45s ease;
            position: relative;
            overflow: hidden;
        }

        /* Gradient border on hover */
        .service-card::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 22px;
            padding: 2px;
            background: linear-gradient(135deg, #0d6efd, #00c6ff);
            -webkit-mask: linear-gradient(#fff 0 0) content-box,
                linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card:hover {
            transform: translateY(-14px) scale(1.02);
            box-shadow: 0 25px 55px rgba(13, 110, 253, 0.25);
        }

        /* Icon */
        .service-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            transition: transform 0.4s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.9) rotate(8deg);
        }

        /* Text */
        .service-card h5 {
            font-weight: 600;
            margin-bottom: 12px;
            color: #222;
        }

        .service-card p {
            color: #555;
            font-size: 0.95rem;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .section-title {
                font-size: 1.9rem;
            }

            .service-card {
                padding: 30px 22px;
            }
        }

        /* CAREERS SECTION */
        .careers-section {
            position: relative;
            background: url("../images/about-bg.webp") center/cover no-repeat fixed;
            padding: 100px 0;
            color: #fff;
        }

        .careers-section::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.25);
            z-index: 1;
        }

        .careers-content {
            position: relative;
            z-index: 2;
        }

        /* Header */
        .careers-title {
            font-size: 2.6rem;
            font-weight: 600;
        }

        .careers-subtitle {
            max-width: 700px;
            margin: 15px auto 50px;
            font-size: 1.05rem;
            color: #ddd;
        }

        /* Career Card */
        .career-card {
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(14px);
            border-radius: 22px;
            padding: 35px 30px;
            height: 100%;
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
            transition: all 0.45s ease;
            position: relative;
            overflow: hidden;
        }

        .career-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #0d6efd, #00c6ff);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .career-card:hover::before {
            opacity: 0.12;
        }

        .career-card:hover {
            transform: translateY(-14px);
        }

        /* Icon */
        .career-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        /* Text */
        .career-card h5 {
            font-weight: 600;
            margin-bottom: 12px;
        }

        .career-card p {
            font-size: 0.95rem;
            color: #eee;
        }

        /* Button */
        .career-btn {
            margin-top: 20px;
            padding: 10px 26px;
            border-radius: 30px;
        }

        /* Reveal Animation */
        .reveal {
            opacity: 0;
            transform: translateY(60px);
            transition: all 0.9s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Mobile */
        @media (max-width: 768px) {
            .careers-section {
                padding: 70px 0;
                background-attachment: scroll;
            }

            .careers-title {
                font-size: 2rem;
            }
        }

        /* ABOUT SECTION */
        .about-section {
            position: relative;
            padding: 120px 0;
            /* background: url("../images/about-bg.webp") center / cover fixed no-repeat; */
            color: #fff;
            overflow: hidden;
        }

        /* Dark overlay */
        .about-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            z-index: 1;
        }

        .about-section .container {
            position: relative;
            z-index: 2;
        }

        /* Text Content */
        .about-title {
            font-size: 2.6rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: #ffffff;
        }

        .about-text {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #e0e0e0;
            margin-bottom: 15px;
        }

        /* Stats */
        .about-stats {
            display: flex;
            gap: 30px;
            margin-top: 30px;
        }

        .about-stats .stat h3 {
            font-size: 2rem;
            font-weight: 600;
            color: #0d6efd;
        }

        .about-stats .stat span {
            font-size: 0.9rem;
            color: #ccc;
        }

        /* Glass Card */
        .about-card {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(12px);
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
        }

        .about-card h4 {
            font-weight: 600;
            margin-bottom: 20px;
            color: #fff;
        }

        .about-card ul {
            list-style: none;
            padding: 0;
        }

        .about-card ul li {
            margin-bottom: 12px;
            font-size: 0.95rem;
            color: #f1f1f1;
        }

        /* Animations */
        .animate-left {
            animation: slideLeft 1.2s ease forwards;
        }

        .animate-right {
            animation: slideRight 1.2s ease forwards;
        }

        @keyframes slideLeft {
            from {
                opacity: 0;
                transform: translateX(-80px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideRight {
            from {
                opacity: 0;
                transform: translateX(80px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .about-section {
                padding: 90px 0;
                background-attachment: scroll;
            }

            .about-title {
                font-size: 2rem;
                text-align: center;
            }

            .about-text {
                text-align: center;
            }

            .about-stats {
                justify-content: center;
                flex-wrap: wrap;
            }

            .about-card {
                padding: 30px;
            }
        }

        /* CONTACT SECTION */
        .contact-section {
            position: relative;
            padding: 100px 0;
            background: url("../images/about-bg.webp") center / cover fixed no-repeat;
        }

        .contact-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.25);
            z-index: 0;
        }

        .contact-title {
            font-size: 2.6rem;
            font-weight: 600;
        }

        .contact-subtitle {
            max-width: 420px;
            margin: 20px 0 40px;
            opacity: 0.9;
        }

        .breadcrumb-text {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        .contact-info h6 {
            font-weight: 600;
            margin-bottom: 8px;
        }

        .contact-info p {
            font-size: 0.95rem;
            opacity: 0.85;
        }

        /* CONTACT CARD */
        .contact-card {
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(14px);
            padding: 40px;
            border-radius: 24px;
            box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
            animation: slideUp 1s ease forwards;
        }

        /* TABS */
        .contact-tabs .nav-link {
            border: none;
            color: #fff;
            font-weight: 500;
        }

        .contact-tabs .nav-link.active {
            color: #0d6efd;
            border-bottom: 3px solid #0d6efd;
        }

        /* FORM */
        .contact-card .form-control {
            background: transparent;
            border: 1.5px solid rgba(255, 255, 255, 0.35);
            color: #ffffff;
            border-radius: 6px;
            padding: 12px 14px;
            font-size: 15px;
            transition: all 0.3s ease;
        }

        /* Placeholder */
        .contact-card .form-control::placeholder {
            color: rgba(255, 255, 255, 0.7);
            font-weight: 400;
        }

        /* Focus state */
        .contact-card .form-control:focus {
            background: transparent;
            border-color: #0d6efd;
            box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.25);
            color: #ffffff;
        }

        /* Optional: hover effect */
        .contact-card .form-control:hover {
            border-color: rgba(255, 255, 255, 0.6);
        }

        /* ANIMATION */
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(80px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* MOBILE */
        @media (max-width: 768px) {
            .contact-title {
                font-size: 2rem;
            }

            .contact-card {
                padding: 30px 22px;
            }

            .contact-section {
                padding: 70px 0;
                background-attachment: scroll;
            }
        }

        /* FOOTER */
.modern-footer {
    background: linear-gradient(135deg, #0d6efd, #003f9e);
    color: #fff;
    padding: 70px 0 30px;
    position: relative;
    overflow: hidden;
}

/* Glass overlay */
.modern-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
}

/* Content */
.modern-footer .container {
    position: relative;
    z-index: 2;
}

/* Brand */
.footer-brand img {
    height: 45px;
}

.footer-brand h5 {
    font-weight: 600;
    margin: 0;
}

/* Text */
.footer-text {
    font-size: 0.95rem;
    color: #e0e0e0;
}

/* Titles */
.footer-title {
    font-weight: 600;
    margin-bottom: 15px;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 6px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 14px;
    margin-top: 10px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.4s ease;
}

.social-icons a:hover {
    background: #ffffff00;
    color: #fd0d0d;
    transform: translateY(-6px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding-top: 15px;
    font-size: 0.9rem;
    color: #ddd;
}

/* Mobile */
@media (max-width: 768px) {
    .modern-footer {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-brand {
        justify-content: center;
    }
}