        html, body {
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .main-wrapper {
            flex: 1;
        }

        /* Navbar */
   
            
        .fab {
            font-size: 1.5rem;
            color: #FFF;
        }

        /* Navbar customizations */
        .navbar-custom {
            background: linear-gradient(135deg, #ffffff 0%, #f2f5f8 100%);
            border-bottom: 3px solid #FFD700;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
            height: 80px;
        }

        @media (max-width: 780px) {
            .navbar-collapse {
                background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); /* Match the background color */
                box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
            }
        }

        .navbar-custom .navbar-brand img {
            height: 40px;
            margin-right: 10px;

        } 
       
        .navbar-custom .nav-link {
            color: navy;
            font-size: 1.1rem;
            transition: color 0.3s ease;
            text-align: center;            
        }
        .navbar-custom .nav-link:hover {
            color: #ffc107;
            text-align: center;
            border-bottom: 0.5px solid #FFD700;
        }

        /* Ensure toggle button stays in place */
        .navbar-toggler {
            /* border-color: #fff;  Adjust the border color of the toggle button */
            border: 2px solid #19334e;
        }


        .navbar-toggler:focus {
            outline: none; /* Remove the default outline when focused */
            box-shadow: none; /* Remove the default shadow */
        }

       /* Ensure correct dropdown structure handling */

        /* Make top-level nav links white */
        .navbar-nav > .nav-item > .nav-link {
            color:navy !important;
        }

        /* Optional: keep dropdown-item links dark if you prefer */
        .dropdown-menu .dropdown-item {
            color: #212529;
        }
        .navbar-nav > .nav-item > .nav-link.active {
            color: #ffc107 !important; /* Yellow/golden highlight */
            font-weight: bold;
        }
        
        /* Footer styles */
        .footer {
            background: linear-gradient(135deg, #343a40 0%, #23272b 100%);
            color: #adb5bd;
            border-top: 3px solid #FFD700;
            padding: 40px 0;
        }
        .footer h5 {
            color: #ffc107;
        }
        .footer a {
            color: #adb5bd;
            text-decoration: none;
        }
        .footer a:hover {
            color: #fff;
            text-decoration: underline;
        }
        .footer .newsletter {
            background-color: #23272b;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        }

        /* Social media icons hover effect */
        .footer .fab:hover {
            color: #ffc107;
            transform: scale(1.2);
            transition: color 0.3s, transform 0.3s;
        }

        /* Button customizations */
        .btn-primary {
            background-color: #ffc107;
            border-color: #ffc107;
            transition: background-color 0.3s, transform 0.3s;
        }
        .btn-primary:hover {
            background-color: #f3ff07;
            transform: scale(1.05);
        }
        .btn-outline-primary {
            border:2px solid #ffc107;
            color: #ffc107;
            transition: background-color 0.3s, transform 0.3s;
        }
        .btn-outline-primary:hover {
            background-color: #ffc107;
            color: #343a40;
            transform: scale(1.05);
        }

        /* Card hover effects */
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        /* Additional global styles */
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f8f9fa;
            scroll-padding-top: 80px; /* Adjust this value according to your header height */
        
        }
        html {
            scroll-behavior: smooth;

        }

       



        .card-title {
            font-size: 1.25rem;
            font-weight: bold;
            text-align: center;
	}

        /* Footer */
        .custom-footer {
            background-color: #2b65ca;
            color: #ddd;
            padding: 20px 0;
            border-top: 4px solid #f99d1c;/* Yellow Top border */
            margin-top: auto;
            width: 100%;
    
        }

        .custom-footer h5 {
            color: #fff;
            font-weight: bold;
        }

        .custom-footer ul {
            list-style: none;
            padding: 0;
        }

        .custom-footer ul li {
            margin-bottom: 0.5rem;
        }

        .custom-footer ul li a {
            color: #00bcd4;
            text-decoration: none;
            transition: color 0.3s;
        }

        .custom-footer ul li a:hover {
            text-decoration: none;
            color: #0288d1;
        }
.text-footer-heading {
        color: #ffffff;
        font-weight: bold;
        font-size: 1.2rem;
    }

    .footer-text {
        color: #bbb;
        font-size: 0.95rem;
    }

    .text-link {
        color: #00bcd4; /* Aqua-like color for email/phone links */
        text-decoration: none;
    }

    .text-link:hover {
        text-decoration: underline;
        color: #0288d1; /* Slightly darker on hover */
    }

    .footer-link {
        display: inline-block;
        color: #bbb;
        font-size: 1rem;
        text-decoration: none;
        position: relative;
        transition: color 0.3s ease, transform 0.3s ease;
    }

    .footer-link::after {
        content: '';
        display: block;
        width: 0;
        height: 2px;
        background: #00bcd4;
        transition: width 0.3s;
    }

    .footer-link:hover {
        color: #00bcd4;
        transform: translateX(5px); /* Subtle slide effect */
    }

    .footer-link:hover::after {
        width: 100%; /* Underline animation */
    }


        .social-icon {
            color: #bbb;
            font-size: 1.2rem;
            margin: 0 8px;
            transition: transform 0.3s, color 0.3s;
        }

        .social-icon:hover {
            transform: scale(1.2);
            color: #00bcd4;
        }

        /* Responsive Footer */
        @media (max-width: 768px) {
            .custom-footer {
                text-align: center;
            }
        }


    .logos-slide-main {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.logos-slide-container {
    display: inline-block;
    white-space: nowrap;
}

.logos-slide {
    display: inline-flex;
    animation: slide 20s linear infinite;
}

.career-slide-reverse .logos-slide {
    animation: slide-reverse 20s linear infinite;
}

button.text1.logo-slide-bg {
    border: 2px solid #00cc00;
    border-radius: 12px;
    font-size: 1.5rem;
    padding: 10px 20px;
    margin: 0 10px;
    background-color: transparent;
    color: #000;
    white-space: nowrap;
    cursor: pointer;
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes slide-reverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}
    /* Card Styling */
    .card {
        background-color: #3e37f6;
        color: white;
        position: relative;
        overflow: hidden;
    }

    .card-title {
        font-weight: bold;
    }

    .card-text {
        color: white;
    }

    .btn-outline-primary {
        color: white;
        border-color: white;
    }

    .btn-outline-primary:hover {
        background-color: white;
        color: #f39c12;
    }

    /* Hover Animation for Cards */
    .card::before {
        content: '';
        position: absolute;
        top: -100%;
        left: 0;
        width: 100%;
        height: 10px;
        background: linear-gradient(to bottom, #ffd700, transparent);
        z-index: 1;
        transform: translateY(0);
        transition: transform 0.3s ease-out;
    }

    .card:hover::before {
        transform: translateY(100%);
    }

    .card-body {
        position: relative;
        z-index: 2;
    }

    /* Sticky Join Us Button */
    .join-us-btn {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background: linear-gradient(45deg, #f39c12, #e67e22);
        color: white;
        padding: 12px 24px;
        border-radius: 50px;
        font-weight: bold;
        font-size: 16px;
        text-decoration: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        animation: pulse 2s infinite ease-in-out;
    }

    .join-us-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        background: linear-gradient(45deg, #e67e22, #f39c12);
        color: white;
    }

    /* Pulsating Animation */
    @keyframes pulse {
        0% {
            transform: scale(1);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        50% {
            transform: scale(1.03);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }
        100% {
            transform: scale(1);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
    }
/* Font Definitions */
@font-face {
    font-family: 'Stencil';
    src: url('{% static "fonts/stencil.ttf" %}') format('truetype'); /* Adjust path if needed */
}

@font-face {
    font-family: 'Segoe Print';
    src: url('{% static "fonts/segoeprint.ttf" %}') format('truetype'); /* Adjust path if needed */
}

@font-face {
    font-family: 'Segoe UI Bold';
    src: url('{% static "fonts/segoeuib.ttf" %}') format('truetype'); /* Adjust path if needed */
}

@font-face {
    font-family: 'Segoe UI';
    src: url('{% static "fonts/segoeui.ttf" %}') format('truetype'); /* Adjust path if needed */
}

/* Apply Fonts */
.navbar-brand,
.sidebar-title {
    font-family: 'Stencil', sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.sub-heading {
    font-family: 'Segoe Print', sans-serif;
    font-size: 11px;
    color: #666;
}

h1, h2, h3, h4, h5, h6,
.nav-link,
.header-title {
    font-family: 'Segoe UI Bold', sans-serif;
}

p, li, a:not(.nav-link), .toast-body,
.footer p {
    font-family: 'Segoe UI', sans-serif;
}