/* ==========================================================================
   "What is Parul University?" Section Styles
   ========================================================================== */
.pu-about-overview-section {
    padding: 90px 0 80px;
    background-color: #FFFFFF;
    position: relative;
    width: 100%;
}

/* Header */
.pu-about-overview-header {
    text-align: center;
    margin: 0 auto 35px;
}

.pu-about-overview-title {
    font-family: var(--font-display, 'Polymath Display', sans-serif);
    font-size: 56px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #B53C72 0%, #5641E0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.pu-about-overview-lead {
    font-family: var(--font-figtree, 'Figtree', sans-serif);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-secondary, #5B5B5B);
    margin: 0 auto;
}

/* Main Gate Wide Image (Full-Width Edge-to-Edge) */
.pu-about-gate-wrapper {
    position: relative;
    width: 100%;
    margin: 38px 0 30px;
    text-align: center;
    overflow: hidden;
}

.pu-about-gate-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}

.pu-about-gate-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 90px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 45%, #FFFFFF 100%);
    pointer-events: none;
    z-index: 2;
}

/* Middle Narrative Paragraphs */
.pu-about-overview-narrative {
    margin: 0 auto 50px;
    text-align: center;
}

.pu-about-overview-narrative p {
    font-family: var(--font-figtree, 'Figtree', sans-serif);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.62;
    color: var(--text-secondary, #5B5B5B);
    margin-bottom: 22px;
}

.pu-about-overview-narrative p:last-child {
    margin-bottom: 0;
}

/* Key Facts Cards Container - Full Container Width */
.pu-about-facts-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

/* Desktop Grid View */
@media (min-width: 992px) {
	
    .pu-about-facts-slider {
        display: flex;
        gap: 28px;
        width: 100%;
        justify-content: stretch;
    }
    .pu-about-fact-card-wrapper {
        flex: 1;
        width: 50%;
        max-width: 100%;
        min-width: 0;
    }
}

/* Fact Card Styling */
.pu-about-fact-card {
    border-radius: 24px;
    overflow: hidden;
    border: 1.5px solid rgba(86, 65, 224, 0.16);
    background: #F3F1FD;
    box-shadow: 0 4px 20px rgba(15, 4, 69, 0.04);
    height: 385px;
    display: flex;
    flex-direction: column;
}

.pu-about-fact-card-header {
    background-color: var(--navy, #0F0445);
    padding: 16px 28px;
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
}

.pu-about-fact-card-title {
    font-family: var(--font-figtree, 'Figtree', sans-serif);
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.pu-about-fact-card-body {
    background: linear-gradient(180deg, #EBE7FB 0%, #F3F0FD 45%, #FAF9FE 100%);
    padding: 8px 28px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
}

.pu-about-fact-row {
    position: relative;
    display: flex;
    align-items: center;
    padding: 16px 0;
    border-bottom: none;
    gap: 24px;
}

/* Left-to-Right Fading Divider Line */
.pu-about-fact-row::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 1.2px;
    background: linear-gradient(90deg, rgba(15, 4, 69, 0.55) 0%, rgba(15, 4, 69, 0.35) 30%, rgba(15, 4, 69, 0.12) 65%, rgba(15, 4, 69, 0) 100%);
    pointer-events: none;
}

.pu-about-fact-row:last-child::after {
    display: none;
}

.pu-about-fact-row:last-child {
    padding-bottom: 0;
}

.pu-about-fact-label {
    font-family: var(--font-figtree, 'Figtree', sans-serif);
    font-size: 15.5px;
    font-weight: 600;
    color: var(--navy, #0F0445);
    width: 155px;
    min-width: 140px;
    flex-shrink: 0;
    line-height: 1.35;
}

.pu-about-fact-value {
    font-family: var(--font-figtree, 'Figtree', sans-serif);
    font-size: 15.5px;
    font-weight: 500;
    color: #1F1F24;
    text-align: left;
    flex-grow: 1;
    line-height: 1.38;
}

/* ==========================================================================
   Mobile Slick Slider Dots & Responsive Overrides
   ========================================================================== */
@media (max-width: 991.98px) {
    .pu-about-overview-section {
        padding: 60px 0 15px;
    }

    .pu-about-overview-title {
        font-size: 36px;
        margin-bottom: 16px;
    }

    .pu-about-overview-lead {
        font-size: 15px;
        line-height: 1.5;
    }

    .pu-about-gate-wrapper {
        margin: 24px 0 35px;
    }

    .pu-about-gate-img {
        width: 100%;
        max-width: 100%;
        transform: scale(1.02);
    }

    .pu-about-gate-bottom-fade {
        height: 60px;
    }

    .pu-about-overview-narrative {
        margin-bottom: 35px;
    }

    .pu-about-overview-narrative p {
        font-size: 15px;
        line-height: 1.52;
        margin-bottom: 16px;
    }

    .pu-about-fact-card-wrapper {
        padding: 0 4px;
    }

    .pu-about-fact-card-header {
        padding: 14px 20px;
    }

    .pu-about-fact-card-body {
        padding: 4px 20px 16px;
    }

    .pu-about-fact-row {
        padding: 12px 0;
        gap: 16px;
    }

    .pu-about-fact-label {
        font-size: 14px;
        width: 105px;
        min-width: 100px;
    }

    .pu-about-fact-value {
        font-size: 14px;
    }

    /* Slick Dots for Fact Slider */
    .pu-about-slick-dots {
        display: flex !important;
        justify-content: center;
        align-items: center;
        list-style: none;
        padding: 0;
        margin: 20px 0 0;
        gap: 6px;
    }

    .pu-about-slick-dots li {
        margin: 0;
        display: inline-block;
    }

    .pu-about-slick-dots li button {
        width: 8px;
        height: 8px;
        border-radius: 4px;
        background-color: #D1D1D6;
        border: none;
        font-size: 0;
        padding: 0;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .pu-about-slick-dots li.slick-active button {
        width: 28px;
        background-color: var(--warning-yellow, #FFC800);
    }
	
		.pu-about-facts-container .pu-about-facts-slider .slick-list {
		height: 385px;
	}
	
	.pu-about-slick-dots{
		margin-top: 14px !important;
	}
}
