/* Breadcrumb Hero Styling */
.breadcrumb-hero {
    /* Using a linear gradient to mimic the abstract blue image */
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #1e293b 100%);
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Optional: Adding a subtle overlay pattern for the "abstract" look */
.breadcrumb-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('path-to-your-abstract-overlay.png'); /* If you have the image */
    opacity: 0.1;
    pointer-events: none;
}

.breadcrumb-container {
    z-index: 10;
}

.breadcrumb-title {
    font-size: clamp(40px, 8vw, 70px); /* Responsive font size */
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    /* Strong text shadow to match the image */
    text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
}

.breadcrumb-nav {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.breadcrumb-nav a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #37e2f1; /* Cyan hover color to match your theme */
}

.breadcrumb-nav span {
    opacity: 0.8;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .breadcrumb-hero {
        padding: 60px 20px;
    }
}


/* Custom CSS */
.btn-glow {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-glow:hover {
    box-shadow: 0 0 20px rgba(55, 226, 241, 0.6); /* Cyan glow */
    transform: scale(1.05);
}






.breadcrumb-title {
    font-size: clamp(40px, 8vw, 70px);
    font-weight: 800;
    color: #ffffff;
    cursor: pointer;
    display: inline-block;
    perspective: 1000px;
}

/* Individual Letter Styling */
.tumble-letter {
    display: inline-block;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

/* THE TUMBLE EFFECT: Rotation + Scale + Glow */
.breadcrumb-title:hover .tumble-letter {
    color: #37e2f1; /* Your signature Cyan */
    text-shadow: 0 0 15px rgba(55, 226, 241, 0.8), 
                 0 0 30px rgba(55, 226, 241, 0.4);
}

/* Random tumbling motion for each letter */
.breadcrumb-title:hover .tumble-letter:nth-child(odd) {
    transform: translateY(-15px) rotateX(25deg) rotateY(-15deg) scale(1.1);
}

.breadcrumb-title:hover .tumble-letter:nth-child(even) {
    transform: translateY(10px) rotateX(-20deg) rotateY(20deg) scale(1.05);
}

/* Smooth return when mouse leaves */
.tumble-letter:hover {
    transform: scale(1.4) !important; /* Extra pop for the specific letter under mouse */
    color: #5bf1ec70 !important;
    z-index: 10;
}

/* BREADCRUMB NAV HOVER */
.breadcrumb-nav a {
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.breadcrumb-nav a:hover {
    letter-spacing: 2px;
    color: #37e2f1;
    transform: skewX(-10deg);
}






/* Custom Card Styling for Mission & Vision */
.mv-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px; /* Matching the rounded look in image */
    padding: 30px 40px;
    text-align: center;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 
                0 8px 10px -6px rgba(0, 0, 0, 0.1); /* Deep soft shadow */
    transition: all 0.4s ease;
}

.mv-card:hover {
    transform: translateX(-10px); /* Slides slightly left on hover */
    border-color: #1a3a5f;
    box-shadow: 0 20px 30px rgba(26, 58, 95, 0.15);
}

/* Floating Animation for the puzzle graphic */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .text-right {
        text-align: center;
    }
    .border-r-4 {
        border-right: 0;
        border-bottom: 4px solid #1a3a5f;
        padding-right: 0;
        padding-bottom: 20px;
    }
}



.choice-card {
    background: #f8fafc; /* light bg */
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.choice-card .card-title {
    color: #0f172a;
    font-weight: 600;
    margin-top: 15px;
    transition: color 0.3s ease;
}

/* 🔥 HOVER EFFECT */
.choice-card:hover {
    background: #1a3a5f;
    transform: translateY(-5px);
}

.choice-card:hover .card-title {
    color: #fff;
}

.choice-card:hover i {
    color: #fff !important;
}

/* ACTIVE CARD (default blue) */
.active-card {
    background: #1a3a5f;
}

.active-card .card-title,
.active-card i {
    color: #fff !important;
}