/* Master UI & Theme Design Enhancements */
body {
    font-family: "Inter", sans-serif;
    color: #334155;
    background-color: #ffffff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Jost", sans-serif;
}

/* Modern Sticky Header Styling */
.custom-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    padding: 12px 0;
}

.navbar-brand img {
    max-height: 42px;
    object-fit: contain;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: #475569 !important;
    padding: 6px 16px !important;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #1a73e8 !important;
    background-color: #f1f5f9;
}

/* Call-To-Action Button Variants */
.btn-cta-nav {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.2s ease;
}

/* Trustworthy, Clean Footer Architecture */
.custom-footer {
    background-color: #0f172a;
    color: #94a3b8;
    font-size: 0.9rem;
    border-top: 5px solid #1a73e8;
}

.custom-footer h5 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
}

.custom-footer h5::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 3px;
    background-color: #ffb300;
    border-radius: 2px;
}

.footer-links-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-links-list a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.social-icon-circle {
    width: 38px;
    height: 38px;
    background-color: #1e293b;
    color: #94a3b8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.social-icon-circle:hover {
    background-color: #1a73e8;
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-bottom-bar {
    border-top: 1px solid #1e293b;
    padding: 24px 0;
    color: #64748b;
    font-size: 0.85rem;
}

/* Custom Ocean Theme Enhancements */
.custom-navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(2, 132, 199, 0.1);
    padding-bottom: 15px;
    /* space for the wave */
}

/* Subtle underlying water texture glow */
.navbar-ocean-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 50% -100%,
        rgba(2, 132, 199, 0.08) 0%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 1;
}

/* Wave positioning layer */
.ocean-wave-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
    pointer-events: none;
}

.ocean-waves {
    position: relative;
    width: 100%;
    height: 12px;
    margin-bottom: -1px;
    /* Fixes tiny white gaps */
    min-height: 12px;
    max-height: 15px;
}

/* CSS Animation for moving ocean water waves */
.wave-parallax > use {
    animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.wave-parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.wave-parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.wave-parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}
/* .swiper-wrapper .college-card-single{
    width: 320px !important;
} */