        /* 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;
        }

        /* 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;
        }