/* Social icons open */ 
  


  .h2Gradient {
    display: inline-block;
    background: linear-gradient(to right, rgb(12 74 96) 0%, rgb(16 71 90) 40%, rgb(35 83 100) 60%, rgb(239 108 51) 100%);
    background-clip: text;
    color: transparent;
    -webkit-background-clip: text;
}

.scroll-section {
    /* height: 100vh; Full height of the viewport */
    width: 100%; /* Full width */
    scroll-snap-align: start; /* Snaps each section at the start */
    transition: transform 0.3s ; /* Apply smooth transform transition */
}

/* Optionally, you can add transform on hover or any specific actions */
.scroll-section:hover {
    transform: scale(1.05); /* Example: Scale up the section on hover */
}

body{
    /* font-family: 'Alice', serif; */
}

header {
    background-color: rgb(12 74 96 / 66%) !important;
    box-shadow: 0px 10px 20px 0px rgb(12 74 96 / 77%);
}
 
.selectAccordianProgram {
    outline: none;
}

.selectAccordianProgram:focus {
    outline: none;
    border-color: #3b82f6; /* Tailwind blue-500 */
    box-shadow: none; 
}
 
/* academic accordian icons open */
.selectAccordian {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("../images/arrowRight.png");
    background-size: 16px;  
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;  
    position: relative;  
} 
/* academic accordian  icons close */
 

/* facility css starts here  */
gameTextH2 {
    margin-bottom: 48px;
    padding-bottom: 16px;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    position: relative;
    text-transform: capitalize;
}

.h3Facility {
    margin: 0 0 10px;
    font-size: 28px;
    line-height: 36px;
}

.buttonFacility {
    outline: none !important;
}

.custom-carousel .item.active {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
    /* Slightly enlarge the active item */
    transition: all 0.3s ease;
}


/******* Common Element CSS End *********/

/* -------- title style ------- */
.line-title {
    position: relative;
    width: 500px;
}

.line-title::before,
.line-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    border-radius: 2px;
}

.line-title::before {
    width: 100%;
    background: #f2f2f2;
}

.line-title::after {
    width: 32px;
    background: rgb(0, 71, 206);
}

.btn1 {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    font-size: 14px;
    font-weight: 700;
    color: white;
    border: 3px solid rgb(0, 71, 206);
    cursor: pointer;
    position: relative;
    background-color: transparent;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    font-family: inherit;
}

.game-section {
    padding: 60px 50px;
}

.game-section .owl-stage {
    margin: 15px 0;
    display: flex;
    display: -webkit-flex;
}

.game-section .item {
    margin: 0 15px 60px;
    width: 290px;
    height: 330px;
    display: flex;
    display: -webkit-flex;
    align-items: flex-end;
    -webkit-align-items: flex-end;
    background: #343434 no-repeat center center / cover;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    cursor: pointer;
}

.game-section .item.active {
    width: 500px;
    box-shadow: 12px 40px 40px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 12px 40px 40px rgba(0, 0, 0, 0.25);
}

.game-section .item:after {
    content: "";
    display: block;
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
}

.game-section .item-desc {
    padding: 0 24px 12px;
    color: #fff;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transform: translateY(calc(100% - 54px));
    -webkit-transform: translateY(calc(100% - 54px));
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
}

.game-section .item.active .item-desc {
    transform: none;
    -webkit-transform: none;
}

.game-section .item-desc p {
    opacity: 0;
    -webkit-transform: translateY(32px);
    transform: translateY(32px);
    transition: all 0.4s ease-in-out 0.2s;
    -webkit-transition: all 0.4s ease-in-out 0.2s;
}

.game-section .item.active .item-desc p {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.game-section .owl-theme.custom-carousel .owl-dots {
    margin-top: -30px;
    position: relative;
    z-index: 5;
}

/***** responsive css Start ******/

@media (min-width: 992px) and (max-width: 1199px) {
    gameTextH2 {
        margin-bottom: 32px;
    }

    .h3Facility {
        margin: 0 0 8px;
        font-size: 24px;
        line-height: 32px;
    }

    /* -------- Landing page ------- */
    .game-section {
        padding: 50px 30px;
    }

    .game-section .item {
        margin: 0 12px 60px;
        width: 260px;
        height: 360px;
    }

    .game-section .item.active {
        width: 400px;
    }

    .game-section .item-desc {
        transform: translateY(calc(100% - 46px));
        -webkit-transform: translateY(calc(100% - 46px));
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    gameTextH2 {
        margin-bottom: 32px;
    }

    .h3Facility {
        margin: 0 0 8px;
        font-size: 24px;
        line-height: 32px;
    }

    .line-title {
        width: 330px;
    }

    /* -------- Landing page ------- */
    .game-section {
        padding: 50px 30px 40px;
    }

    .game-section .item {
        margin: 0 12px 60px;
        width: 240px;
        height: 330px;
    }

    .game-section .item.active {
        width: 360px;
    }

    .game-section .item-desc {
        transform: translateY(calc(100% - 42px));
        -webkit-transform: translateY(calc(100% - 42px));
    }
}

@media (max-width: 767px) {

    gameTextH2 {
        margin-bottom: 20px;
    }

    .h3Facility {
        margin: 0 0 8px;
        font-size: 19px;
        line-height: 24px;
    }

    .line-title {
        width: 250px;
    }

    /* -------- Landing page ------- */
    .game-section {
        /* padding: 30px 15px 20px; */
        padding: 20px 5px 10px;
    }

    .game-section .item {
        margin: 0 10px 40px;
        width: 200px;
        height: 280px;
    }

    .game-section .item.active {
        width: 270px;
        box-shadow: 6px 10px 10px rgba(0, 0, 0, 0.25);
        -webkit-box-shadow: 6px 10px 10px rgba(0, 0, 0, 0.25);
    }

    .game-section .item-desc {
        padding: 0 14px 5px;
        transform: translateY(calc(100% - 42px));
        -webkit-transform: translateY(calc(100% - 42px));
    }
}



/* dignetories  */
 /* Scale the second item when active */
 