@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}


:root {
    --purple: #4B1D3A;
    --light: #F1F3FA;
    --dark: #1c1c1c;
    --yellow: #E3B34A;
    --grey: #f3f2f4;
    --hfont: "Poppins", sans-serif;
}


.accordion-item {
    border: unset !important
}

body {
    font-size: 14px;
    font-family: var(--hfont);
    color: var(--dark);
    font-display: swap
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: var(--hfont)
}

.text-white{
    color: #fff;
}
.text-yellow {
    color: var(--yellow) !important
}

.text-purple {
    color: var(--purple)
}

.bg-purple {
    background-color: var(--purple);
    color: #fff;
}
.bg-gray{
    background-color: var(--gray);
}
.bg-skyLite{
    background-color: #F1F5F9;
}
.bg-yellow{
    background-color: var(--yellow);
}
/* Header CSS */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1020; 
    background-color: #fff; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
}
.navbar-toggler-icon{
    font-size: 35px;
}
.navbar-toggler:focus {
    box-shadow: unset;
}
.navbar {
    background-color: #F6F7F8;
  }

  .header-wrapper {
    /* width: 90%; */
    margin: 0 auto;
  }

  .navbar-brand {
    font-weight: bold;
    width: 145px;
  }

  .navbar-brand img {
    width: 100%;
  }

/* Navbar links styling */
  .navbar-nav {
    align-items: center;
    width: 80%;
  }
  .title_01 {
    font-family: var(--headfont);
    font-size: 24px;
}
  .navbar-nav .nav-link {
    color: var(--purple);
    margin: 0 10px;
    font-size: 16px;
  }
  .navbar-nav .nav-link::after{
    content: " ";
    display: block;
    width: 0%;
    border-bottom: 3px solid #E4B34B;
    transition: width 0.3 ease;

  }
  .navbar-nav .nav-link:hover::after{
    width: 100%;

  }

  .navbar-nav .nav-link:hover {
    color: #4B1D3A;
    font-weight: 600;
  }

  /* CTA button styling */
  .cta-button {
    background-color: #4B1D3A;
    color: white;
    border-radius: 25px;
    padding: 10px 25px;
    text-decoration: none;
    font-weight: bold;
  }

  .cta-button:hover {
    background-color: #4B1D3A;
    color: white;
  }

  nav.navbar.navbar-expand-lg{
        border: 1px solid grey;
        border-radius: 20px;
        margin: 9px 15px;
  }
  
  /* Hero Section CSS */
.hero .myContainer{
    background-image: linear-gradient(45deg, #4B1D3A, 70%, transparent);
    color: #fff;
}
 .logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.text-rotating {
    position: relative;
    width: 150px; /* Reduced size */
    height: 150px; /* Reduced size */
}

.text-rotating svg {
    width: 100%;
    height: 100%;
    animation: rotating 10s linear infinite; /* Rotates only the text */
}

.center-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85px; /* Reduced size */
    height: 30px; /* Adjusted height */
    border-radius: 50%;
    
}
.x-logo{
    width:100%;
}

path {
    fill: none;
    stroke: none; /* Hide the path */
}

@keyframes rotating {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.dyword{
    min-width: 130px;
}
.logo-container {
    margin-top: 10vh;
}
/*## Mobile Style ##*/
/* @media(max-width:767px){
.center-image{
width: 70px !important;
height: 25px !important;
}
.text-rotating {
width: 120px !important; 
height: 120px !important;
}
} */
/* hero section - END */
/* Shubhamzzz - START */
/* ---- Program ---- */
.bigTitle{
    font-size: 40px !important;
}
.bg-dPharm{
    background-image: linear-gradient(220deg, #4B1D3A 0%, #9f008f 90%) !important;
}
.bg-bPharm{
    background-image: linear-gradient(220deg, #fcbd32 0%, #b17e0c 90%) !important;
}

.bg-mPharm1{
    background-image: linear-gradient(220deg, #4B1D3A 0%, #9f008f 90%) !important;
}
.bg-mPharm2{
    background-image: linear-gradient(220deg, #fcbd32 0%, #b17e0c 90%) !important;
}
.programTop{
    margin-top: -5vh;
    position: relative;
}
.w-full{
    width:100% !important;
}
.h-full{
    height: 100% !important;
}
.programSection .programTabBtns{
    gap:15px
}
.programSection .programTabBtns .nav-item{
    width: calc(16% - 15px);
}
.programSection .nav-item img{
    width: 100%;
}
.programSection .programDesc {
    color: #fff;
    font-weight: 500;
    height:85px;
}
.title_01 {
    font-weight: 700;
}
@media (min-width:992px){

    .title_01 {
        font-size: 40px;
    }
}


@media (max-width:991px){
    .title_01 {
        font-size: 26px;
    }
}
.ProgramsBgImg{
    background-size: cover;
    background-repeat: no-repeat;
}
.programSection .accordion-button:not(.collapsed) {
    color: #fff;
    background-color: var(--purple);
    box-shadow: unset;
}
.programSection .accordion-button:focus {
    z-index: 0;
    border-color: unset;
    outline: 0;
    box-shadow: unset;
}
.programSection .heroContainer{
    margin-top: -40px;
    border-radius: 35px;
    position: relative;
    z-index: 10;
}
.programSection .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.c_btn{
    background-color: var(--purple);
    color: #fff;
}
.c_btn:hover{
    color: #fff;
}
.c_btn:focus{
    box-shadow: unset;
}
.short-description {
    /* position: absolute;
    bottom: 25%;
    left: 5%; */
    margin-right: -10vw;
    padding-left: 3rem;
    /* color: #50264086; */
}

.pg-desc p{
    font-size: 14px;
    font-family: 'Poppins';
    line-height: 1.7em;
}
.programmobile .accordion-header button {
    background-color: var(--gray);
    color: #000;
    font-weight: 600;
}
.programmobile .accordion-button:not(.collapsed) {
    color: #fff;
    background-color: var(--purple) !important;
}
.programmobile .accordion-button::after{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* mobile Style */
@media (max-width:991px){
    .ProgramsBgImg {
        height: 35vh;
    }
}

/* ---- Program ---- */
/* hero Section */
.heroSection .heroContainer{
    height: 85vh;
}
.heroSection .heroHeading{
    font-size: 10rem;
    font-family: 'Poppins';
    font-weight: 700;
    color: #fff;
    position: relative;
    top: 10%;
}
.heroBgImg {
    height: 80%;
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
    right: 20%;
    bottom: 0;
}

/* hero Section */
/* why choose us */
.paddingContainerFluid {
    padding: 9px 15px;
}
.borderRadius{
    border-radius: 20px;
}
.uspImg {
    height: 200px;
    max-width: 90%;
}
.uspHead{
    font-size: large;
    font-weight: 600;
}
.whyChooseUs .whyUsBox:hover{
    cursor: pointer;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5) !important;
}
/* why choose us */
/* testimonials */
.testimonialImgBox{
    height: 75px;
    width: 75px;
}
.studentImg{
    height: 100%;
    width: 100%;
}
.studentName_01 {
    font-size: larger;
    font-weight: 500;
    color: #000;
}
.small_01{
    font-size: 10px;
}
.testimonials_01 .owl-next, .testimonials_01 .owl-prev {
    background-color: var(--yellow);
    width: 30px;
    height: 30px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.testimonials_01 .owl-nav{
    display: flex;
    gap: 10px;
    justify-content: center;
    padding-top: 20px;
}
.starYellow{
    height: 10px;
    width: 10px !important;
}
/* testimonials */
/* Shubhamzzz - END */
.bg-white{
    background: #fff;
}
/* About Us */
/* #aboutschool{
    min-width: 1280px;
} */
.header-about{
    display: flex;
    flex-direction: row;
}
h2.title_01.position-relative.ps_01.mb-3 {
    font-size: 40px;
    font-family: Poppins;
    font-weight: 500;
}

.title_02 pre{
    font-weight: 500;
    font-family: Poppins !important;
    font-size: 2.7rem;
}
span.horizontalLine {
    height: 2px;
    background-color: #1c2035;
    display: block;
    position: absolute;
    left: 0;
    top: 28%;
    width: 80px;
}
.ps_01 {
    padding-left: 100px;
}
.pe-lg-3{
    width: 50%;
    font-family: poppins;
}
/* hero section */
.myContainer{
    width: 99%;
}
.h-85{
    height: 85vh;
}
.heroImg{
    width: 100%;

}
.heroHeading{
    font-size: 10vw;
    font-family: 'Poppins';
    font-weight: 700;
    color: #fff;
}
.heroImg {
    width: 100%;
    top: -25%;
    position: absolute;
}
.about_logo img {
    height: 100px;
    width: 100%;
    object-fit: contain;
}
.border-purple_01 {
    /* border-top: 1px solid var(--light); */
    border-bottom: 1px solid var(--light);
}
@media (max-width:991px){
    .heroHeading{
        font-size:12vw;
    }
    .heroImg {
        width: 100%;
        top: -8vh;
        margin-top: -8vh;
        position: static;
    }
    .hero .myContainer{
        height: 85vh;
        overflow: hidden;
    }
    .navbar-brand img {
        width: 110px;
    }
}
/* hero section */
/* about section */
.aboutSection .img1{
    width: 75%;
}
.aboutSection .img2{
    padding-left: 25%;
}
.fit-content{
    width: fit-content;
}
.aboutSection img{
    border: 1px solid #000;
}
@media (max-width:991px){
    .aboutSection .img1{
        width: 100%;
    }
    .aboutSection .img2{
        padding-left: 0%;
    }
}
/* about section */
/* placements section */
.placement_01 .owl-next, .placement_01 .owl-prev {
    background-color: var(--yellow);
    width: 30px;
    height: 30px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.placement_01 .owl-nav{
    display: flex;
    gap: 10px;
    justify-content: center;
    padding-top: 20px;
}
.placementIconBox{
    width: 150px;
    height: 150px;
    border-radius: 100%;
}
.placementIconBox img{
    width: 85% !important;
    max-height: 75% !important;
}
/* mobile style */
@media (max-width:991px){
    .placementIconBox{
        width: 125px;
        height: 125px;
    }
}
/* placements section */
/* life at alrad */
.gallery_01 .owl-next, .gallery_01 .owl-prev {
    background-color: var(--yellow);
    width: 30px;
    height: 30px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.gallery_01 .owl-nav{
    display: flex;
    gap: 10px;
    justify-content: center;
    padding-top: 20px;
}
.gallery_01 .item img {
    transition: transform 0.3s ease-in-out;
    transform: scale(0.8);
    height: 95%;
    object-fit: cover;
}
.gallery_01 .owl-item.center img {
    transform: scale(1.2);
    height: 100%;
}
.gallery_01 .item{
    height: 250px;
}
@media (max-width:991px){
    .gallery_01 .item{
        height: 200px;
    }
}
/* life at alrad */
/* footer */
.footerSection{
    color: #fff;
    text-align: center;
}
.footerSection img{
    width: 80px;
}
.stickyBtnMobile {
    position: sticky;
    bottom: 0;
    z-index: 1000;
}
.stickyBtnMobile .divider{
    width: 2px;
}
.stickyBtnMobile .btn{
    color: #fff;
}
/* footer */
/* USP */
.your_path .col-lg-6 {
    display: grid
}

.your_path .border {
    background-color: var(--purple)
}
.your_path_img {
    height: 40px;
    object-fit: contain
}
.bg_applynew {
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    border-radius: 10px 10px 0 0;
    height: 400px;
}
.box_003 {
    background-color: #fff !important;
}
@media (min-width: 992px) {
    .bg_applynew {
        background-size: cover;
        background-position: top;
        border-radius: 10px;
        height: 500px;
    }
}
@media (min-width: 992px) {
    .your_path .box_003 {
        background-color: var(--bs-white) !important
    }
}
/* USP */
/* faculty */

.faculty_01 .owl-next, .faculty_01 .owl-prev {
    background-color: var(--purple);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.faculty_01 .owl-nav{
    display: flex;
    gap: 10px;
    justify-content: center;
    padding-top: 20px;
}
.faculty_01 img{
    height: 200px;
    width: 200px !important;
    object-fit: contain;
}
.facultyBox {
    border: 1px solid;
    width: 230px;
    padding: 15px 0px;
}
/* faculty */
/* CTA */
.bg_apply {
    background-repeat: no-repeat;
    height: 180px;
    background-size: cover;
    background-position: center;
    border-radius: unset;
}
.unlock_01 {
    height: 200px;
    width: 100%;
    object-fit: cover;
}
@media (min-width: 768px) and (max-width:991px) {
    .bg_apply {
        height: 300px;
    }
}
@media (min-width: 992px) {
    .bg_apply {
        height: unset;
        border-radius: 0 50rem 50rem 0;
        border-bottom-left-radius: unset !important;
        border-top-left-radius: unset !important;
    }
}
/* CTA */
/* Modal */
.modal-header .modalLogo img {
    width: 100px;
}
/* Modal */
/* Admission-process */
.w-80{
    width: 80%;
}
/* Admission-process */
/* Back to Top */
/* Back to Top Button Styles */
#backToTop {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    background-color: var(--yellow);
    color: white;
    border: 1px solid #fff;
    border-radius: 100%;
    cursor: pointer;
    font-size: 18px;
    width: 40px;
    height: 40px;
}
  
  #backToTop:hover {
    background-color: var(--purple);
  }
  
  @media (max-width:991px){
    #backToTop{
        bottom:42px;
    }
  }
  .btn-check:focus+.btn, .btn:focus {
    outline: 0;
    box-shadow: unset;
}
/* Back to Top */