* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* utilities */

img {
    user-select: none;
    /* Prevent text/image selection */
    -webkit-user-drag: none;
    /* Disable dragging in WebKit browsers */
    -moz-user-drag: none;
    /* Disable dragging in Mozilla Firefox */
    -o-user-drag: none;
    -ms-user-drag: none;
    pointer-events: none;
    /* Disable interactions */
}

.container {
    /* width: 1280px;
    margin: auto; */
}

header {
    width: 100%;

    position: relative;

    background: url("../assets/images/header-bg.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #3b0176;
    z-index: 1;
}

.banner-container {
    width: 100%;
    background: #E7314A;
    /* height: 70px; */

    padding-block: 25px;
    display: flex;
    align-items: center;
}

.banner-left {
    display: flex;
    gap: 10px;
}

.banner-left span {
    border-right: 3px solid #FD687D;
}

.banner-left span {
    color: #FFF;
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Inter;

    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.banner-right span {
    color: #FFF;
    text-align: right;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.header-content-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.header-contents {
    flex: 1;
    /* Takes remaining space */
    display: flex;
    align-items: center;

}

.header-content-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* Left Section */
.header-left {
    max-width: 80%;
    color: #fff;

    display: flex;
    flex-direction: column;


}


.header-logo{
    width: 300px;
    margin-bottom: 30px;
}




.header-left p:nth-child(2) {
    color: #FFF;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.header-left p:nth-child(3) {
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Inter;
    font-size: 66px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;


    background: linear-gradient(272deg, #FECC08 -36.34%, #FFF 96.12%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-left p span {
    margin-inline: 10px;
    width: 152.211px;
    height: 32.814px;
}

.header-left p:nth-child(4) {
    color: #FFF;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.6;
    width: 80%;
    margin-top: 5px;
    margin-bottom: 15px;

}

.header-left .apply-btn button {
    display: inline-flex;
    padding: 16px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    border-radius: 4px;
    background: #FECC08;
    color: #38162B;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border: none;
    outline: none;
}




/* Right Section */
/* Right Section */
.header-right {
    position: relative;
    display: flex;
    width: 50%;

    align-items: center;
}

.header-right img {
    width: 100%;
    /* Adjust the width to fit the container */
    max-width: 527px;
    /* Set a max-width to prevent the image from being too large */
    height: auto;
    /* Maintain aspect ratio */
    position: relative;
    transform: translate(-170px, 0px);



}

.header-bottom-image {
    position: absolute;
    bottom: -31.1px;
    /* Position at the bottom of the header */
    left: 50%;
    /* Center horizontally */
    transform: translateX(-50%);
    /* Adjust for exact centering */
    text-align: center;
    /* Center the image inside the container */
    width: 100%;
    /* Ensure it spans the full width if needed */
    cursor: pointer;
}

.header-bottom-image img {
    max-width: 7%;
    /* Ensure the image doesn't exceed the container width */
    height: auto;
    /* Maintain aspect ratio */
    cursor: pointer;
}




/* branding section */

#branding-section {
    padding: 50px 0;
    position: relative;
    /* Ensure it respects z-index */
    z-index: -1;
    /* Lower than the header-bottom-image */
}

#branding-section .container {
    width: 1280px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.branding-images {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.branding-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-inline: 10px;

}

.branding-image img {
    width: 100%;
    max-width: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.branding-img img:hover {
    transform: scale(1.05);
}


/* video section */

#video-section {
    padding: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;

}

#video-section .container {
    width: 1280px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-wrapper {
    width: 100%;

    position: relative;
    padding-bottom: 56.25%;
    /* Aspect ratio 16:9 */
    height: 0;


}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    /* Optional rounded corners */
    border: 2px solid #F3E8FF;
    padding: 10px;
}


/* facilites section */

#facilities {
    padding: 60px 0;

}

#facilities .container {
    width: 1280px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.facilities-left {
    width: 35%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}

.facilities-logo img {
    width: 35px;
}

.facilities-header p {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin: 0;

    width: 367px;

    color: #3B0176;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Inter;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.facilities-buttons {
    display: flex;
    flex-direction: column;
    gap: 13px;
    width: 100%;
}

.facilities-buttons button {
    background: transparent;
    color: #5B4900;
    border: 2px solid #FECC08;
    padding: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease, color 0.3s ease;
    text-align: left;
    width: 100%;
    font-size: 18px;


    color: #5B4900;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Inter;
    font-size: 18px;
    line-height: normal;
    font-weight: 500;
    outline: none;
}

.facilities-buttons button:hover,
.facilities-buttons button.active {
    background-color: #FECC08;
    color: #5B4900;
}

.facilities-right {
    flex: 1;
    overflow-x: auto;
    white-space: nowrap;

    max-width: 100%;

    display: flex;
    align-items: flex-end;

    padding-bottom: 15px;
    scrollbar-width: thin;

    scrollbar-color: #8A2BE2 #f0f0f0;
}

.facilities-right::-webkit-scrollbar {
    height: 8px;
    /* Scrollbar thickness */
}




.facilites-section {
    display: none;
    /* Hide all sections initially */
}

.facilites-section.active {
    display: flex;
    /* Show only the active section */
    gap: 20px;
}


.facilities-first img,
.facilities-second img,
.facilities-third img,
.facilities-fourth img {

    width: 380px;
    transition: transform 0.3s ease;
}


/* layering effect */


/* General styles */



.image-container {
    position: relative;
    overflow: hidden;

    transition: transform 0.3s ease;
    z-index: 0;
}

.image-container p {
    position: absolute;
    bottom: 30px;
    /* Adjust as needed */
    left: 25px;
    /* Adjust as needed */
    color: #FFF;
    /* Initial text color */
    font-family: Inter;
    font-size: 20px;
    font-weight: 500;
    margin: 0;
    z-index: 2;
    /* Ensure text is above the layer */
    transition: color 0.3s ease;
    /* Smooth color transition */
}

.image-container:hover p {
    color: #5b4900;
    /* Text color on hover */
}


.layer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(180deg, rgba(254, 204, 8, 0.00) 0%, #FECC08 100%);
    transition: height 0.3s ease;
    z-index: 1;
}

/* Hover effect specific to each image-container */
.image-container:hover .layer {
    height: 100%;
}



.image-container:hover img {
    transform: scale(1.05);
}

/* carousel container */

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    padding: 50px 0;
}

.carousel-slide {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide img {
    width: 100%;
    flex-shrink: 0;
}

.carousel-navigation {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.carousel-navigation span {
    width: 50px;
    height: 3px;
    background-color: #ccc;
    margin: 0 5px;
    cursor: pointer;
    margin-top: 10px;
}

.carousel-navigation span.active {
    background-color: #3B0176;
}


/* stats-section */
#stats {
    padding: 50px 0;
}

.stats-heading {
    margin-bottom: 45px;
}

.stats-heading p {
    color: #3B0176;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Inter;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.stas-showing-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin: 0 auto;
}

.stats-img {
    flex: 1;
    text-align: center;
}

.stats-img img {
    width: 367px;
    height: 149px;
    height: auto;
    border-radius: 10px;
}

/* brands */
#brands {
    padding: 20px 0;
}

.container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.working-images {
    display: flex;
    animation: scrollBrands 20s linear infinite;
    white-space: nowrap;
    width: max-content;
    /* Ensure the container expands to fit all images */
}

@keyframes scrollBrands {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Move by 50% for seamless loop */
    }
}

/* Gradient overlay for the blur effect at the start */
.working-images::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    /* Adjust the width of the blur effect */
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    pointer-events: none;
    z-index: 2;
}

/* Gradient overlay for the blur effect at the end */
.working-images::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    /* Adjust the width of the blur effect */
    height: 100%;
    background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    pointer-events: none;
    z-index: 2;
}

.working-images img {
    width: 151.473px;
    height: 64.122px;
    margin-right: 20px;
    flex-shrink: 0;
}



/* admission section */

#admission-details {
    padding: 80px 0;
}


#admission-details .container {
    display: flex;
    justify-content: space-between;
    gap: 20px;

}

.admission-header {
    width: 174px;
    position: relative;
    padding-top: 25px;
}

.admission-header::before {
    content: '';
    /* Required for pseudo-elements */
    position: absolute;
    /* Position the line absolutely */
    top: 0px;
    /* Adjust this value to position the line above the header */
    left: 0%;
    /* Start the line 10% from the left (to center it with 80% width) */
    width: 45%;
    /* Set the width of the line */
    height: 3px;
    /* Set the thickness of the line */
    background-color: yellow;
    /* Set the color of the line */

}

.admission-header p {
    color: #3B0176;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Inter;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.eligibility-criteria {}

.eligibility-criteria p:nth-child(1) {
    color: #E7314A;

    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.eligibility-criteria p:nth-child(2) {
    color: #38162B;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    width: 338px;

}



.fess-structure p:nth-child(1) {

    color: #E7314A;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.fess-structure p:nth-child(2) {
    color: #38162B;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.fess-structure p:nth-child(3) {
    width: 317px;
    color: #38162B;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.duration p:nth-child(1) {
    color: #E7314A;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.duration p:nth-child(2) {
    color: #38162B;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}


/* General Styles */
#timeline {
    font-family: "Inter", sans-serif;
    background-color: #4d009b;
    padding: 60px 0;
}


.timeline-header {
    width: 580px;
    margin-bottom: 40px;
}

.timeline-header p {
    color: #FFF;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Inter;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.timeline-header span {
    color: #FECC08;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Inter;
    font-size: 32px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}

.timeline-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.timeline-left {
    flex: 1.5;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.timeline-contents-left {


    border-radius: 8px;
}

.timeline-contents-left p {
    color: #FECC08;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.timeline-details {
    width: 367px;
}

.timeline-details p {
    color: #FFF;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 22px;
}


.timeline-dates {
    margin-block: 30px;
}

.timeline-dates p {
    color: #FFF;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-block: 18px;
}

.timeline-dates span {
    color: #FECC08;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

#timeline button {
    padding: 16px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    background: #FECC08;


    color: #38162B;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;

    border: none;
    outline: none;
    width: 55%;
}


.timeline-contents-right {

    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    cursor: pointer;
    flex-direction: column;
    width: 174px;
}

.timeline-contents-right p {
    color: #FFF;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.timeline-contents-right span {
    width: 60 px;
    height: 20px;
    flex-shrink: 0;

}

.timeline-contents-right span img {
    width: 100%;
}

.timeline-right {
    flex: 1;
    padding: 20px;
}

.timeline-right-container {
    width: 100%;
    height: 500px;
    /* Fixed height */
    overflow-y: scroll;
    /* Enable scrolling */
    padding-right: 10px;
}

/* Hide scrollbar for Chrome, Safari, and Opera */
.timeline-right-container::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge, and Firefox */
.timeline-right-container {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}


.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50px;
    width: 0;
    /* Set width to 0 since we're using border */
    border-left: 4px dashed #ccc;
    /* Dashed line */
    z-index: 1;
    /* Lower z-index to place it below step numbers */
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    cursor: pointer;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;

    margin-bottom: 10px;
    /* Space between steps */
    position: relative;
    z-index: 10;
}

.step p a {
    display: block;
    font-size: 12px;
    color: #fecc08;
    margin-top: 5px;
}

.step.active {
    opacity: 1;
    /* Enabled state */

    background-color: #4d009b;
    /* Highlight background */
    color: #fff;
    /* Highlight text */

}

/* Step Number */
.step-number {
    width: 76px;
    height: 77px;
    background: #3E007C;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    flex-shrink: 0;
    transition: all 0.3s ease;
    color: #FFF;
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Inter;
    font-size: 34px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    /* Ensure steps are above the dashed line */
    z-index: 10;

}

.step.active .step-number {
    background-color: #6C12C8;
    color: #fff;
    z-index: 10;

}

/* Step Text */
.step p {
    color: #929aab;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 0;
}

.step.active p {
    color: #fff;
    /* Ensure text is visible on active background */
}

/* events section */


#events-section {
    padding: 50px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.events-header p {
    color: #3B0176;
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Inter;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 25px;
}

.events-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.events-tabs button {
    width: 270px;
    height: 78px;
    background: #FFF2C1;
    cursor: pointer;
    transition: background-color 0.3s ease;

    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    outline: none;

}


.events-tabs button p {

    color: #38162B;
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;

    margin: 0;
    width: 130px;
}

.events-tabs button:hover {
    background-color: #FECC08;
    /* Darker shade on hover */
}

.events-thing-container {
    display: block;
    /* justify-content: center;
    align-items: center;
    min-height: 541px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    background-color: #fcf8e8; */
}

.fashion-week-thing,
.design-festival {
    display: none;
    /* Hide both sections by default */
    text-align: center;
    font-size: 18px;
    color: #38162B;
}

.fashion-week-thing.active,
.design-festival.active {
    display: block;
    /* Show the active section */
}



/* Active Button */
.events-tabs button.active {
    background-color: #FECC08 !important;
}

/* Hide all event contents by default */
.events-thing-container>div {
    display: none;
}

/* Show active content */
.events-thing-container {
    background: #f0cd49;
    padding: 30px;
    border-radius: 10px;
}

.events-thing-container>div.active {
    display: block;

}

/* Experts Section */
.experts-section {
    padding: 50px 0;
    position: relative;
}

.experts-header p {
    width: 657px;
    color: #3B0176;
    font-family: Inter;
    font-size: 32px;
    font-weight: 600;

    margin-bottom: 35px;
}

.container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.speaker-container {
    display: flex;
    animation: scrollSpeakers 55s linear infinite;
    white-space: nowrap;
    width: max-content;
    gap: 30px;
}

@keyframes scrollSpeakers {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Gradient overlay (optional) */
.speaker-container::before,
.speaker-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* .speaker-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(255,255,255,1), rgba(255,255,255,0));
}

.speaker-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(255,255,255,1), rgba(255,255,255,0));
} */

.speaker-container img {
    width: 366px;
    height: 454px;
    object-fit: cover;
    flex-shrink: 0;
}

/* students section */

#students-says {
    position: relative;
    padding: 40px 0;
    z-index: 0;
    margin-bottom: -7%;

}



.students-header-section {
    width: 657px;
    margin-bottom: 40px;
    /* Spacing below the header */
}

.students-header-section p {
    color: #3B0176;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Inter;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}


.slider-container {
    position: relative;
    width: 70%;
    margin: auto;


}

.students-says-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.slider img {
    width: 100%;
    height: auto;
    flex-shrink: 0;
    border-radius: 10px;
    object-fit: cover;
    /* Ensures images fill the space nicely */
}

#prevBtn,
#nextBtn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    border: none;
    cursor: pointer;
    z-index: 100;
    border-radius: 50%;
}


#prevBtn {
    left: -100px;
    /* Move outside the image */

}

#nextBtn {
    right: -100px;
    /* Move outside the image */
}

#prevBtn img,
#nextBtn img {
    width: 50px;




}

.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    /* More spacing */
}

.dot {
    width: 50px;
    /* Width of the line */
    height: 3px;
    margin: 0 8px;
    /* Adjusted spacing */
    background: #5416a0;
    /* Light gray for inactive dots */
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;

}

.dot.active {
    background: #fff;
    /* Darker for active dot */
    transform: scale(1.3);
    /* Slightly enlarge active dot */
}

.dot:hover {
    background: #999;
    /* Hover effect for dots */
}


/* awards section */

#awards {
    padding: 100px 0;
    background: #4d009b;

    padding-top: 10%;
}


#awards .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0;
}

.awards-contents {
    display: flex;

    justify-content: space-between;

}

.awards-header-section {

    width: 967px;
    margin-bottom: 50px;

}

.awards-header-section p {
    color: #FFF;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Inter;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.awards-header-section p span {
    color: #FECC08;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Inter;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.awards-left {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.awards-left img {
    width: 100%;
}

.awards-right {
    width: 65%;
    /* Adjusted to take more space */
    display: flex;
    flex-direction: column;
    /* Stack children vertically */
    gap: 20px;
    overflow: hidden;
    /* Add space between card container and slider buttons */
}

.awards-card-container {
    display: flex;
    gap: 35px;
    width: max-content;
    /* Allow the container to expand based on card content */
    transition: transform 0.5s ease;
}

.awards-card {
    width: 300px;
    height: 400px;
    background: #550E9C;
    /* Added background color to the card */

    overflow: hidden;
    /* Ensures the image doesn't overflow the card */
    flex-shrink: 0;
    /* Prevent cards from shrinking */
    border-bottom: 2px solid #FECC08;
}

.awards-card .card-img-container {
    width: 100%;
    /* Full width of the card */
    height: 184px;
    overflow: hidden;
    /* Ensures the image doesn't overflow the container */
}

.awards-card .card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the image covers the container without distortion */
}

.awards-card .awards-contents {
    background: #550E9C;
    display: flex;
    justify-content: flex-start;

    padding: 20px;
    flex-direction: column;
    color: white;

}

.awards-contents p:nth-child(1) {
    width: 230px;
    color: #FECC08;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.awards-contents p:nth-child(2) {

    color: #FFF;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* Slider Buttons */
.card-slider-button {
    display: flex;
    justify-content: center;
    /* Center the buttons horizontally */
    gap: 20px;
    /* Add space between the buttons */
}


.award-card-slider-button {
    display: flex;
    justify-content: flex-start;
    /* Center the buttons horizontally */
    gap: 10px;
    /* Add space between the buttons */
    margin-left: 35px;

}

/* Slider Buttons */
.award-card-slider-button button {
    background: none;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.award-card-slider-button button img {
    width: 60px;
    height: 60px;
}



/* life at pu */


.life {
    background: url("../assets/images/camp.webp");
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.life h2 {
    font-family: "Roboto", sans-serif;
    font-weight: bold;
}

.stroke {
    /* Add a white stroke to the text */
    -webkit-text-stroke: 1px white;
    /* Stroke width and color */
    color: transparent;
    /* Make the text itself transparent */
    font-size: 160px;
    /* Adjust font size as needed */
    font-weight: bold;
    /* Adjust font weight as needed */
}

.stroke2 {
    color: #ffcc29;
    -webkit-text-stroke: 0;
}



.life h3 {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    line-height: 1;
}


/* life at pu another */

.nav-pills {
    padding: 30px 0;
    background-color: #eeeeee;
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}


.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: var(--bs-nav-pills-link-active-color);
    background-color: #4d009b;
}


.nav-item {
    margin: 0 5px;


}


.nav-link {
    color: #333;
    background-color: transparent;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-family: "Inter", sans-serif;
    cursor: pointer;

}


.nav-link.active {
    color: #fff;

    background-color: #4d009b;
    border-color: #4d009b;

}


.nav-link:hover {
    color: #4d009b;

    background-color: rgba(0, 123, 255, 0.1);

    border-color: #4d009b;

}


.nav-link br {}

#life-pu .tab-content {

    max-width: 1350px;
    margin: 35px auto;


}

/* footer section */

footer {
    background-color: #4d009b;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

footer p {
    margin-bottom: 0;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}



/* scroll to the top button */

/* Scroll-to-Top Button */
#scrollToTopBtn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #6c12c8;
    /* Blue color, you can change it */
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    display: none;
    /* Hidden by default */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
    z-index: 100;
}

#scrollToTopBtn:hover {
    background-color: #0056b3;
    /* Darker blue on hover */
}

.marquee {
    display: flex;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    width: 400px;

    resize: horizontal;
    container-type: inline-size;
}


.marquee>* {
    -webkit-animation: marquee 10s linear infinite both alternate;
    animation: marquee 10s linear infinite both alternate;
}

@-webkit-keyframes marquee {
    to {
        transform: translateX(min(100cqw - 100%, 0px));
    }
}

@keyframes marquee {
    to {
        transform: translateX(min(100cqw - 100%, 0px));
    }
}

.video {
    position: relative;
    max-width: 100%;
    background-color: #000;
}

.video:before {
    content: "";
    display: block;
    /* 16:9 aspect ratio */
    padding-top: 56.25%;
}

.video__poster {
    left: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    overflow: hidden;
    right: 0;
    z-index: 10;
    transition: opacity 0.3s, visibility 0s 0.3s;
    cursor: pointer;
}

.video__poster:before {
    width: 75px;
    height: 75px;
    max-height: 75vw;
    max-width: 75vh;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.video__poster:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 16px;
    border-color: transparent transparent transparent #fff;
    margin-left: 2px;
}

.video__poster--hide {
    opacity: 0;
    visibility: hidden;
}

.video__image {
    display: block;
    width: 100%;
}

.video__iframe,
.video__video,
.video iframe {
    left: 0;
    position: absolute;
    top: 0;
    border: 0;
    height: 100%;
    width: 100%;
}

.events-thing-container h5 {
    font-size: 28px;
    margin-top: 10px;
}

/* mayur css start */

/*sidebar form starts*/

.dsu-form {
    top: 8rem;
}

.dsu-form {
    z-index: 100000 !important;
}

.dsu-form {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    width: 308px;
    float: right;
    margin-top: 52px;
    padding: 0 0 0;
    background: #fff;
    position: fixed;
    right: 0;
    z-index: 9999;
    margin: 0;
    padding: 0;
    transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-duration: 0.1s;
    -moz-transition-duration: 0.1s;
    -webkit-transition-duration: 0.1s;
    -o-transition-duration: 0.1s;
}

.form-clickOuter {
    left: -34%;
    position: absolute;
    bottom: 39%;
    right: 78%;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    animation: blinker 2s linear infinite;
}

.form-click {
    position: relative;
    font-weight: 500;
    font-size: 19px;
    padding: 5px 20px;
    cursor: pointer;
    display: inline-block;
    -webkit-border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    -ms-border-radius: 0 0 5px 5px;
    -o-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
    color: #000;
    background: #ffd700;
}

.frmBg {
    text-align: center;
    padding: 10px 15px;
    background-color: #000;
}

.frmBg span {
    font-size: 22px;
    color: #fff;
    font-weight: 700;
}

input#submit_btn {
    /*    background: #393185;*/
    margin: auto;
    display: block;
}

.dsu-form1 {
    border: 1px solid #ced4da;
    padding: 1rem;
}


/*sidebar form ends*/

button.btn.enq_ftr {
    background-color: #fde500;
    color: #000;
    font-weight: 700;
    font-size: .9rem;
    width: 100%;
    border-radius: 0rem;
}
#timeline button a{
    color: #38162B;
    text-decoration: none;
}