.icon {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';
}

/* Material Icons ligatures render via text like <span class="icon">search</span> [web:7] */

/* Header is fixed and always visible; no hover styles, no animations */
.minimalist-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: none;
    /* no animation */
}

/* Fixed header requires top padding in content [web:3] */

.dark .minimalist-header {
    background-color: rgba(18, 18, 18, 0.9);
}

.minimalist-header .logo img {
    height: 40px;
    /* fixed size */
    transition: none;
}

.minimalist-header .contact-icons a,
.minimalist-header .search-icon {
    opacity: 1;
    /* always visible */
    transform: none;
    /* no slide */
    margin-left: 1rem;
    color: #333;
    transition: none;
    /* no animation */
}

.dark .minimalist-header .contact-icons a,
.dark .minimalist-header .search-icon {
    color: white;
}

.hamburger-menu {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.hamburger-icon {
    width: 24px;
    height: 3px;
    background-color: #333;
    margin: 4px 0;
    transition: none;
    /* no animation */
}

.dark .hamburger-icon {
    background-color: white;
}

/* Specializations helpers */
.enquire-now {
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content.active {
    max-height: 1000px;
    /* Adjust as needed */
}

/* Hero Section Styles */
.carousel-item {
    opacity: 0;
    transition: opacity 1s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.carousel-item.active {
    opacity: 1;
    z-index: 1;
}

.enquire-now {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
}

/* Success Stories Styles */
.material-symbols-outlined {
    font-variation-settings:
        'FILL'0,
        'wght'300,
        'GRAD'0,
        'opsz'24
}

.card-glow:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px 8px rgba(37, 99, 235, 0.7);
}

.card-glow-secondary:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px 8px rgba(107, 114, 128, 0.7);
}

.card-glow-accent:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px 8px rgba(180, 83, 9, 0.7);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Timeline Styles */
.timeline-item.completed .timeline-dot {
    background-color: #8B5CF6;
    border-color: #8B5CF6;
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.5);
}

.timeline-item.completed .timeline-dot .material-symbols-outlined {
    color: white;
    ;
}

.timeline-item.completed .timeline-line {
    background: linear-gradient(to bottom, #8B5CF6, #C4B5FD);
}

.timeline-item.active .timeline-dot {
    background-color: #C4B5FD;
    border-color: #8B5CF6;
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.3), 0 0 20px rgba(139, 92, 246, 0.6);
    transform: scale(1.2);
}

.timeline-item.active .timeline-dot .material-symbols-outlined {
    color: #8B5CF6;
}

.timeline-item.active .timeline-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 9999px;
    background-color: #8B5CF6;
    transform: translate(-50%, -50%) scale(1);
    animation: pulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
}

.timeline-item:hover .timeline-card {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px -5px rgba(139, 92, 246, 0.2), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.dark .timeline-item:hover .timeline-card {
    box-shadow: 0 10px 20px -5px rgba(139, 92, 246, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

.timeline-card {
    border: 1px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.timeline-card.active-card {
    border-image-source: linear-gradient(to right, #8B5CF6, #C4B5FD);
    border-image-slice: 1;
    box-shadow: 0 8px 25px -5px rgba(139, 92, 246, 0.3), 0 4px 6px -4px rgba(139, 92, 246, 0.1);
}

.dark .timeline-card.active-card {
    box-shadow: 0 8px 25px -5px rgba(139, 92, 246, 0.4), 0 4px 6px -4px rgba(139, 92, 246, 0.2);
}

.timeline-card.completed-card {
    border-color: #8B5CF6;
    box-shadow: 0 8px 25px -5px rgba(139, 92, 246, 0.2), 0 4px 6px -4px rgba(139, 92, 246, 0.05);
}

.card-hover:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.apply-now-button {
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.apply-now-hidden {
    transform: translateX(120%);
    /* slides it off-screen */
    opacity: 0;
}

.npf_wgts,
.npf_wgts * {
    box-sizing: border-box;
}

.npf_wgts {
    width: 100% !important;
    height: auto !important;
    overflow: visible !important;
    min-height: 480px;
    /* sensible starting height — adjust if needed */
}

/* target the injected iframe (some widgets nest iframe directly under .npf_wgts) */
.npf_wgts iframe {
    width: 100% !important;
    height: auto !important;
    min-height: 480px !important;
    border: 0 !important;
    overflow: visible !important;
    display: block;
}

/* if your page's layout adds overflow or max-height on the card, override it */
.lg\\:col-span-4,
.lg\\:col-span-4>div,
.card,
.form-card {
    max-height: none !important;
    overflow: visible !important;
}

/* small slide animation for mobile menu (optional) */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

html {
    scroll-behavior: smooth;
}

#PGDM-form {
    scroll-margin-top: 5.5rem;
}

.timeline-line {
    width: 2px;
    background: #a855f7;
}

.connector-left {
    height: 2px;
    background: #a855f7;
    position: absolute;
    right: 0;
}

.connector-right {
    height: 2px;
    background: #a855f7;
    position: absolute;
    left: 0;
}