        /* General Styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa !important;
}

/* Hero Section */
/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

/* Background Video */
.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Overlay remains the same */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animations */
.fade-in-top {
    animation: fadeInTop 1.5s ease-out forwards;
    opacity: 0;
}

.fade-in-delay {
    animation: fadeIn 2s ease-out 0.5s forwards;
    opacity: 0;
}

.fade-in-late {
    animation: fadeIn 2s ease-out 1s forwards;
    opacity: 0;
}

@keyframes fadeInTop {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* CTA Button */
.btn-learn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background-color: #1b4388;
    border: none;
    border-radius: 30px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.btn-learn:hover {
    background-color: #33a8d0;
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
}

/* Login Button */
.btn-login {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background-color: #1b4388;
    border: none;
    border-radius: 30px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.btn-login:hover {
    background-color: #33a8d0;
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
}





/* Search Box */
.search-box {
    display: flex;
    width: 50%;
    margin: 20px auto;
    background: white;
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.search-box input {
    flex: 1;
    border: none;
    padding: 10px;
    border-radius: 5px;
    outline: none;
}

.search-box button {
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
}

.btn-sgn{
    background-color: #32498d;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .search-box {
        width: 80%;
    }

    .hero {
        height: 70vh;
    }
}

/*service cards*/
.service-card {
    border: 1px solid #ddd;
    padding: 30px;
    text-align: center;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%; /* Ensures equal width */
}

.row > .col-md-6 {
    display: flex;
    align-items: stretch; /* Ensures all service cards stretch equally */
}

.service-card img {
    max-width: 100%;
    height: auto;
    object-fit: cover; /* Ensures images resize properly */
}

        
        /*footer*/
        
        .footer {
            background: #111;
            color: white;
            padding: 40px 0;
        }
        .footer a {
            color: white;
            text-decoration: none;
        }
        .footer a:hover {
            text-decoration: underline;
        }
        .footer .social-icons a {
            margin-right: 10px;
            font-size: 20px;
        }
        .newsletter input[type="email"] {
            width: 100%;
            padding: 10px;
            margin-top: 10px;
            border-radius: 5px;
            border: none;
        }
        .newsletter button {
            margin-top: 10px;
            width: 100%;
            background: #ff6f00;
            color: white;
            border: none;
            padding: 10px;
            border-radius: 5px;
        }
    
   