:root {
            --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --primary-color: #667eea;
            --secondary-color: #764ba2;
            --text-dark: #2c3e50;
            --text-muted: #6c757d;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
            background: url('../img/empty-classroom-due-coronavirus-pandemics.jpg') no-repeat center center;
            background-size: cover;
            position: relative;
           }

        html {
            scroll-behavior: smooth;
        }

        /* Header Styles */
        .navbar-custom {
            background: var(--primary-gradient);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: bold;
            background: linear-gradient(45deg, #fff, #f0f0f0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: flex;
            align-items: center;
        }

        .navbar-brand img {
            max-height: 40px;
            height: auto;
            width: auto;
            max-width: 100%;
            object-fit: contain;
            vertical-align: middle;
        }

        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            transition: all 0.3s ease;
            border-radius: 5px;
            margin: 0 0.25rem;
        }

        .navbar-nav .nav-link:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        .dropdown-menu {
            background-color: rgba(255, 255, 255, 0.6);
            /* semi-transparent white */
            backdrop-filter: blur(10px);
            /* optional: adds a frosted-glass effect */
            border: none;
            box-shadow: none;
        }

        .dropdown-item:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }

        /* Show dropdown on hover */
        .nav-item.dropdown:hover .dropdown-menu {
            display: block;
            margin-top: 0;
            /* remove pop-down delay */
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        /* Optional smooth transition */
        .dropdown-menu {
            display: none;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.2s ease-in-out;
            background-color: rgba(255, 255, 255, 0.6);
            /* transparent background */
            backdrop-filter: blur(10px);
            border: none;
            box-shadow: none;
        }

        /* Optional smooth transition */
        .dropdown-menu {
            display: none;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.2s ease-in-out;
            background-color: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(10px);
            border: none;
            box-shadow: none;
        }

        /* School Selection Section */
        .school-selection {
            /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
            padding: 80px 0 40px;
            min-height: 50vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            margin-top: 80px;
            /* Offset for fixed navbar */
        }

        .school-selection::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="none"><path d="M0 20L50 25C100 30 200 40 300 35C400 30 500 10 600 15C700 20 800 40 900 45C950 47.5 1000 45 1050 45L1100 45V0H1050C1000 0 950 0 900 0C850 0 800 0 750 0C700 0 650 0 600 0C550 0 500 0 450 0C400 0 350 0 300 0C250 0 200 0 150 0C100 0 50 0 25 0L0 0Z" fill="rgba(102, 126, 234, 0.1)"/></svg>') repeat-x;
            animation: wave 15s linear infinite;
        }

        @keyframes wave {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-100px);
            }
        }
    
        .school-selection-card {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            position: relative;
            z-index: 2;
        }

        .school-selection-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--primary-gradient);
            border-radius: 20px 20px 0 0;
        }

        .school-selection h2 {
            color: var(--text-dark);
            font-size: 2.5rem;
            margin-bottom: 1rem;
            text-align: center;
            font-weight: 700;
        }

        .school-selection p {
            color: var(--text-muted);
            font-size: 1.1rem;
            text-align: center;
            margin-bottom: 2rem;
        }

        .school-select-form {
            max-width: 500px;
            margin: 0 auto;
        }


        /* Unify input and select field styles */
        .form-control, select.form-control {
            font-size: 1.1rem;
            padding: 15px 20px;
            border-radius: 12px;
            border: 2px solid #e9ecef;
            background: #fff;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .form-control:focus, select.form-control:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
            transform: translateY(-1px);
        }

        select.form-control {
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='gray' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 5.646a.5.5 0 0 1 .708 0L8 11.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            background-size: 1.2em;
            padding-right: 2.5em;
        }

        .school-select-form .btn-proceed {
            background: var(--primary-gradient);
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        }

        .school-select-form .btn-proceed:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
        }

        .school-select-form .btn-proceed:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .school-icon {
            font-size: 4rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            display: block;
            text-align: center;
        }




        /* Hero Section */
        .hero {
            background: url('/sms/img/classroom.jpg') no-repeat center center;
            background-size: cover;
            /* makes the image cover the whole section */
            color: white;
            padding: 150px 0 100px;
            text-align: center;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="none"><path d="M0 20L50 25C100 30 200 40 300 35C400 30 500 10 600 15C700 20 800 40 900 45C950 47.5 1000 45 1050 45L1100 45V0H1050C1000 0 950 0 900 0C850 0 800 0 750 0C700 0 650 0 600 0C550 0 500 0 450 0C400 0 350 0 300 0C250 0 200 0 150 0C100 0 50 0 25 0L0 0Z" fill="rgba(255,255,255,0.1)"/></svg>') repeat-x;
            animation: wave 20s linear infinite;
        }

        @keyframes wave {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-100px);
            }
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            margin-bottom: 1rem;
            animation: fadeInUp 1s ease-out;
        }

        .hero p {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            margin-bottom: 2rem;
            opacity: 0.9;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        .cta-buttons {
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Custom Button Styles */
        .btn-custom-primary {
            background: white;
            color: var(--primary-color);
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .btn-custom-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
            color: var(--primary-color);
        }

        .btn-custom-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-custom-secondary:hover {
            background: white;
            color: var(--primary-color);
            border-color: white;
        }

        /* Section Styles */
        .section-padding {
            padding: 100px 0;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 2.5rem);
            margin-bottom: 3rem;
            color: var(--text-dark);
            text-align: center;
        }

        /* Feature Cards */
        .feature-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            height: 100%;
            border: none;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }

        /* Product Cards */
        .product-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            height: 100%;
            border: none;
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--primary-gradient);
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .product-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }

        .product-features {
            list-style: none;
            margin-bottom: 2rem;
            padding: 0;
        }

        .product-features li {
            padding: 0.5rem 0;
            color: var(--text-muted);
            position: relative;
            padding-left: 1.5rem;
        }

        .product-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #28a745;
            font-weight: bold;
        }

        /* Testimonial Cards */
        .testimonial-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
            position: relative;
            height: 100%;
            border: none;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: -10px;
            left: 20px;
            font-size: 5rem;
            color: var(--primary-color);
            opacity: 0.3;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
            color: var(--text-muted);
        }

        /* Contact Form */
        .contact-form {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 15px;
        }

        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .contact-item a {
            color: #333333;
            text-decoration: none;
        }

        .contact-item a:hover {
            color: var(--primary-color);
        }


        .contact-icon {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-right: 1rem;
            min-width: 2rem;
        }

        /* Footer */
        footer {
            background: var(--text-dark);
            color: white;
            padding: 3rem 0 1rem;
        }

        .footer-section h5 {
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .footer-section a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--primary-color);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #34495e;
            color: #bdc3c7;
            margin-top: 2rem;
        }

        /* Loading Animation */
        .loading {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .loading.visible {
            opacity: 1;
            transform: translateY(0);
        }

   /* Mobile Adjustments - UPDATED VERSION */
@media (max-width: 768px) {
    .hero {
        padding: 120px 0 80px;
        min-height: 90vh;
    }

    .section-padding {
        padding: 60px 0;
    }

    .cta-buttons .btn {
        margin: 0.5rem 0;
        width: 100%;
        max-width: 300px;
    }
     .container.admission-form {
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Make school selection section full width on mobile */
    .school-selection .Placement-verifcation {
        padding: 80px 0 40px;
        margin-top: 80px;
    }
    
    .school-selection .container-fluid .Placement-verifcation {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .school-selection .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .school-selection .col-12 {
        padding-left: 0 !important;
        padding-right: 0 !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    
    .school-selection-card {
        margin: 0 !important;
        border-radius: 0 !important;
        padding: 2rem 1.5rem !important;
        box-shadow: none !important;
        border-left: none !important;
        border-right: none !important;
    }
    
    /* Ensure placement verification section is also full width */
    .Placement-verifcation {
        padding: 100px 0 60px;
    }
    
    .Placement-verifcation .container-fluid {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .Placement-verifcation .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .Placement-verifcation .col-12 {
        padding-left: 0 !important;
        padding-right: 0 !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

        /* Tablet Adjustments */
        @media (min-width: 769px) and (max-width: 1024px) {
            .hero {
                padding: 140px 0 90px;
            }

            .section-padding {
                padding: 80px 0;
            }
        }

     /* Placement Verification Section Styles - FIXED VERSION */
.Placement-verifcation {
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px; /* Increased top padding to account for navbar */
    position: relative;
    margin-top: 0; /* Removed margin-top since we're using padding */
}

.Placement-verifcation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.school-selection-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
    z-index: 1; /* Ensure card is above background elements */
}

.school-selection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #667eea);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.school-icon {
    font-size: 4rem;
    color: #667eea;
    margin-bottom: 20px;
    display: block;
}

.school-selection-card h2 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.school-selection-card h2:first-of-type {
    color: #667eea;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.school-selection-card h2:last-of-type {
    color: #e74c3c;
    font-size: 1.6rem;
    margin-bottom: 25px;
    font-weight: 600;
}

/* Instructions Section */
.instructions {
    background: #f8f9fa;
    border-left: 4px solid #667eea;
    padding: 20px;
    margin: 25px 0;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.instructions h4 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.instructions h4 i {
    color: #667eea;
}

.instructions ul {
    margin: 0;
    padding-left: 20px;
}

.instructions li {
    margin-bottom: 8px;
    color: #555;
    line-height: 1.5;
}

.instructions .highlight {
    background: #fff3cd;
    padding: 10px;
    border-radius: 5px;
    border-left: 3px solid #ffc107;
    margin: 10px 0;
}

.instructions .highlight strong {
    color: #856404;
}

.instructions .fee-notice {
    background: #d4edda;
    color: #155724;
    padding: 10px;
    border-radius: 5px;
    border-left: 3px solid #28a745;
    margin: 10px 0;
    font-weight: 500;
}

/* Form Styles */
.school-select-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.form-control:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}

.form-control::placeholder {
    color: #adb5bd;
    font-style: italic;
}

/* Input styling for index number */

input[name="indexNo"] {
    text-align: center;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 1.2rem;
    text-transform: uppercase;
}

/* Button Styles */
.btn-proceed {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-proceed::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-proceed:hover::before {
    left: 100%;
}

.btn-proceed:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-proceed:active {
    transform: translateY(0);
}

/* Loading Animation */
.btn-proceed.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn-proceed.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: -10px;
    border: 2px solid transparent;
    border-top: 2px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Error and Success Messages */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 10px;
    border: 1px solid transparent;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.alert-success {
    background-color: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
}

/* Add proper spacing before footer */
.Placement-verifcation + footer {
    margin-top: 0; /* Remove any existing margin */
}

/* Responsive Design */
@media (max-width: 768px) {
    .Placement-verifcation {
        padding: 100px 0 60px; /* Adjusted for mobile navbar height */
    }
    
    .school-selection-card {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .school-selection-card h2:first-of-type {
        font-size: 1.8rem;
    }
    
    .school-selection-card h2:last-of-type {
        font-size: 1.4rem;
    }
    
    .instructions {
        padding: 15px;
        margin: 20px 0;
    }
    
    .form-control {
        padding: 12px 15px;
        font-size: 1rem;
    }
    
    .btn-proceed {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .school-selection-card {
        padding: 1.5rem 1rem !important;
    }
    
    .school-selection h2 {
        font-size: 2rem !important;
    }
    
    .school-selection p {
        font-size: 1rem !important;
    }
    
    .school-icon {
        font-size: 3rem !important;
    }
    
    .btn-proceed {
        padding: 12px 30px !important;
        font-size: 1rem !important;
        width: 100% !important;
    }
}

/* Animation for card entrance */
.school-selection-card {
    animation: slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ensure proper navbar positioning */
.navbar-custom {
    z-index: 1030; /* Bootstrap's navbar z-index */
}

/* Additional footer spacing utility class */
.footer-spacing {
    margin-top: 0;
    padding-top: 0;
}



