        /* Custom Styling */
        body {
            font-family: Arial, sans-serif;
        }

        /* Navbar Styling */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* Branding Icons */
        .branding-left img,
        .branding-right img {
            height: 50px;
            /* Adjust size as needed */
        }

        /* Center Navbar Menu */
        .navbar-nav {
            margin: 0 auto;
        }

        .navbar-nav .nav-item {
            position: relative;
        }

        /* Underline Effect on Hover */
        .navbar-nav .nav-link {
            position: relative;
            transition: all 0.3s ease-in-out;
            padding: 10px 15px;
        }

        .navbar-nav .nav-link::after {
            content: "";
            display: block;
            width: 0;
            height: 2px;
            background-color: #007bff;
            transition: width 0.3s ease-in-out;
            position: absolute;
            bottom: -2px;
            left: 0;
        }

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

        /* Dropdown Menu on Hover */
        .navbar-nav .dropdown:hover .dropdown-menu {
            display: block;
            margin-top: 0;
        }

        .dropdown-menu {
            border-radius: 5px;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        }

        /* Styling for Dropdown Arrows */
        .nav-link.dropdown-toggle::after {
            content: "\f107";
            /* FontAwesome Down Arrow */
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            margin-left: 5px;
            display: contents;
        }

        .dropdown:hover .nav-link.dropdown-toggle::after {
            content: "\f106";
            /* FontAwesome Up Arrow */
        }

        /* Hero Section */
        .hero-section {
            background: url('img/your-image.jpg') no-repeat center center;
            background-size: cover;
            min-height: 80vh;
            display: flex;
            align-items: center;
            text-align: left;
            color: white;
            padding: 50px;
        }

        .hero-section h1 {
            font-size: 3rem;
            color: black !important;
        }

        .hero-section p {
            font-size: 1.2rem;
            color: black !important;
            margin-bottom: 0px !important;

        }

        .hero-section h1 span {
            font-weight: bolder;
        }

        .btn-custom {
            background-color: #ff4081;
            color: white;
            padding: 10px 20px;
            font-size: 1rem;
        }

        @media (max-width: 992px) {

            /* Stack Branding Icons and Center Menu on Smaller Screens */
            .navbar {
                flex-direction: column;
                align-items: center;
            }

            .branding-left,
            .branding-right {
                display: none;
                /* Hide branding icons on small screens */
            }

            .navbar-nav {
                text-align: center;
            }
        }

        .sticky-footer {
            position: sticky !important;
            bottom: 0 !important;
            width: 100%;
            background-color: #343a40;
            color: white;
            padding: 15px;
            text-align: center;
            z-index: 111;
            font-size: 10px;
            font-weight: 100;
        }

        .sticky-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1030;
            background-color: white;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        }

        .full-image {
            width: 100%;
            clip-path: inset(0 0 10% 0);
            /* Crops 10% from the bottom */
            object-fit: cover;
            position: relative;
            transform: translateY(10%);
            /* Moves the image down to align */
        }



        /* Contact Container */

        /* Button Styling */
        .btn-custom {
            background-color: #007bff;
            color: white;
            padding: 10px 20px;
            font-size: 1rem;
            width: 100%;
            border-radius: 5px;
        }

        .btn-custom:hover {
            background-color: #0056b3;
        }

        /* Banner Section */
        .contact-banner,
        .about-banner {
            position: relative;
            width: 100%;
            height: 300px;
            /* Adjust height as needed */
            background: url('../assets/img/bg-1.png') no-repeat center center/cover;
            display: flex;
            justify-content: center;
            align-items: center;
        }
		
		.homeBg{
			position: relative;
            width: 100%;
            height: auto;
            /* Adjust height as needed */
            background: url('../assets/img/bg.jpg') no-repeat center center/cover;
            display: flex;
            justify-content: center;
            align-items: center;
		}

        /* Dark Overlay for Readability */
        .banner-overlay {
            position: absolute;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            /* Adjust opacity */
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }

        /* Banner Text Styling */
        .banner-text {
            font-size: 3rem;
            font-weight: bold;
            color: white;
            text-transform: uppercase;
            text-align: center;
            letter-spacing: 2px;
        }

        /* Responsive Styling */
        @media (max-width: 768px) {
            .banner-text {
                font-size: 2rem;
            }

            .contact-banner {
                height: 200px;
                /* Reduce height for mobile */
            }
        }

        .contact-form p {
            font-weight: 200;
            margin-top: -7px;

        }

        .contact-box {
            background: #f8f9fa;
            /* Light gray background */
            padding: 20px;
            border-radius: 10px;
            width: 100%;
            max-width: 500px;
            /* Wider on larger screens */
            height: auto;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
            /* Subtle shadow */
            margin-bottom: 20px;
            /* Spacing between sections */
        }

        .contact-box h4 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .contact-box p {
            font-size: 16px;
            margin: 0;
        }

        /* Responsive Icon Size */
        .contact-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 50%;
            box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.15);
            color: #007bff;
            /* Bootstrap primary color */
        }

        /* Icon Sizes for Different Screens */
        @media (max-width: 575px) {

            /* Extra small screens */
            .contact-icon {
                font-size: 18px;
                /* Small icons */
                width: 30px;
                height: 30px;
            }
        }

        @media (min-width: 576px) and (max-width: 767px) {

            /* Small devices */
            .contact-icon {
                font-size: 22px;
                /* Medium icons */
                width: 35px;
                height: 35px;
            }
        }

        @media (min-width: 768px) {

            /* Medium to large screens */
            .contact-icon {
                font-size: 28px;
                /* Large icons */
                width: 40px;
                height: 40px;
            }
        }

        /* Aligning content properly based on screen size */
        @media (min-width: 992px) {

            /* Large screens */
            .contact-container {
                display: flex;
                justify-content: start;
                align-items: start;
                text-align: left;
            }
        }

        @media (max-width: 991px) {

            /* Tablets & Mobile screens */
            .contact-container {
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
        }

        /* Adjusting the layout */
        .contact-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        /* Responsive Image */
        .contact-image img {
            max-width: 100%;
            border-radius: 10px;
        }

        .hero {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 50vh;
            padding: 50px;
        }

        .hero-content {
            max-width: 500px;
        }

        .hero h1 {
            font-size: 3rem;
            font-weight: bold;
        }

        .hero p {
            font-size: 1.5rem;
        }

        .req-btn-custom {
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: bold;
            text-decoration: none;
        }

        .req-btn-custom:hover {
            background-color: #a470ff;
            color: white;
        }

        .hero-image img {
            max-width: 100%;
            height: auto;
        }

        /* .feature-card:hover { transform: scale(1.05); transition: 0.3s; } */

        .feature-card {
            perspective: 1000px;
            height: 200px;
        }

        .feature-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transform-style: preserve-3d;
            transition: transform 0.6s;
        }

        .feature-card:hover .feature-card-inner {
            transform: rotateY(180deg);
        }

        .feature-card-front,
        .feature-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            text-align: center;
        }

        .feature-card-front {
            background: linear-gradient(135deg, #09b8e4, #6dd5ed);
        }

        .feature-card-back {
            background: linear-gradient(135deg, #f7971e, #ffd200);
            transform: rotateY(180deg);
            color: #000;
        }

        .stakeholder-section {
            background: #f8f9fa;
            padding: 60px 20px;
        }

        .stakeholder-card {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease-in-out;
        }

        .stakeholder-card:hover {
            transform: scale(1.05);
        }


        /* Counter Section */

        .counter-section {
            background: url('../assets/img/bg-1.png') no-repeat center center/cover;
            position: relative;
            padding: 80px 0;
            text-align: center;
            color: white;
        }

        /* Dark Overlay */
        .counter-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            /* Dark overlay */
        }

        /* Counter Box */
        .counter-box {
            position: relative;
            z-index: 1;
        }

        .counter-box h2 {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .counter-box p {
            font-size: 1.2rem;
            font-weight: 500;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .counter-box h2 {
                font-size: 2rem;
            }

            .counter-box p {
                font-size: 1rem;
            }
        }

        /* about us page */
        .about-banner {
            background: url('../assets/img/bg-1.png') no-repeat center center/cover;
            height: 300px;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .overlay {
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            /* Dark overlay */
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .about-banner h1 {
            color: white;
            font-size: 3rem;
            font-weight: bold;
        }


        /* List Group Styling */
        .list-group-item {
            border: none;
            background-color: #f8f9fa;
            font-size: 1.1rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .about-banner {
                height: 200px;
            }

            .about-banner h1 {
                font-size: 2rem;
            }
        }

        /* Timeline Stakeholder Benefits */
        /* Stakeholders Security Hero Banner */
.security-banner {
    background: url('../assets/security-banner.jpg') no-repeat center center/cover;
    height: 300px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Roadmap Timeline */
.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 5px;
    height: 100%;
    background: #007bff;
    transform: translateX(-50%);
}

/* Timeline Item */
.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 40px;
}

/* Timeline Icons */
.timeline-item .timeline-icon {
    width: 60px;
    height: 60px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -20px;
}

/* Timeline Content */
.timeline-item .timeline-content {
    width: 45%;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-in-out;
}

/* Right Side Content */
.timeline-item .timeline-content.right {
    text-align: left;
}

/* Left Side Content */
.timeline-item .timeline-content {
    text-align: right;
}

/* Hover Effect */
.timeline-item .timeline-content:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.15);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-item .timeline-icon {
        left: 20px;
        transform: translateX(0);
    }

    .timeline-item .timeline-content {
        width: 100%;
        margin-left: 80px;
    }

    .timeline-item .timeline-content.left {
        text-align: left;
    }

    .timeline-item .timeline-content.right {
        text-align: left;
    }
}


