@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&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');

html {
    font-size: 16px;
}

body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    position: relative;
    overflow-x: hidden;
    background-color: #171614;
    overscroll-behavior: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
div {
    font-family: "Bebas Neue", sans-serif;
}


a {
    text-decoration: none;
    transition: .3s all ease-in-out;
}

/* Preloader CSS */
[data-text-anim] {
    visibility: hidden;
}

.preloader-mask,
.preloader-progress-bar,
.preloader-bg {
    position: fixed;
    top: 0;
    left: 0;
    height: 100svh;
    width: 100%;
    pointer-events: none;
}

.preloader-mask {
    z-index: 100;
    background-color: #1C1917;
    mask: linear-gradient(white, white), url('../images/rectangle-shape.svg') center/40% no-repeat;
    mask-composite: subtract;
    /*mask-image: linear-gradient(to right, black 50%, transparent 100%);*/
}

.preloader-progress-bar {
    width: 100%;
    height: 100%;
    z-index: 100;
    background-color: #2D2925;
}

.preloader-bg {
    background-color: #fff;
    transform-origin: left;
    transform: scaleX(0.2);
}

.preloader-logo {
    display: flex;
    width: 100%;
    height: 100%;

    p {
        margin: auto;
        text-align: center;
        mix-blend-mode: difference;
        font-size: 4rem;
        color: #fff;
        font-weight: 500;
        line-height: 100%;
    }
}

.duplicate-char {
    position: absolute;
    inset: 0;
    transform: translateY(100%);
}

.ct2 div {
    font-family: 'Poppins' !important;
}

/* Preloader CSS Ends */

/* Navbar CSS */


nav {
    position: absolute !important;
    top: 0;
    z-index: 11;
    width: 100%;
}


ul.navbar-nav {
    padding: .7rem 3rem;
    background: rgba(34, 32, 32, 1);
    border-radius: 66px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    gap: 2rem;
    position: relative;
}


a.navbar-brand {
    font-size: 3.125rem;
    color: #FFE44A;
    margin: 0;
}

a.navbar-brand:hover,
a.navbar-brand:focus {
    color: #FFE44A;
}

li.nav-item {
    position: relative;
}

.navbar-nav li a {
    font-size: 1.375rem;
    color: #fff;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
    padding: .5rem 1.2rem !important;
}

.nav-hover-bg {
    position: absolute;
    background: #E6E4E0;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    opacity: 0;
    z-index: 1;
}

.nav-hover-bg.active {
    opacity: 1;
}

.extBtns a {
    padding: 1rem 2rem;
    font-size: 1.375rem;
    background: #E6E4E0;
    border-radius: 50px;
    color: #000;
}

/* Navbar CSS Ends */


/* Main Banner CSS Starts */
.mainBanner {
    position: relative;
    height: 1280px;
    display: flex;
    align-items: center;
}

.mainBanner::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 1200px;
    height: 1200px;
    background: radial-gradient(circle, rgba(105, 125, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: gradientMoveRight 10s ease-in-out infinite;
    z-index: -2;
    opacity: .4;
}

.mainBanner::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 1200px;
    height: 1200px;
    background: radial-gradient(circle, rgba(255, 105, 240, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: gradientMoveLeft 12s ease-in-out infinite;
    z-index: -2;
    opacity: .4;
}

@keyframes gradientMoveRight {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-30px, 30px);
    }
}

@keyframes gradientMoveLeft {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -30px);
    }
}

.mainBanner svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: -1;
}

.headingWrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
}

.headingWrapper .transparentTxt {
    font-size: 6.25rem;
    -webkit-text-stroke: 1px #fff;
    color: transparent;
    line-height: 6.25rem;
}

.headingWrapper .centerTxt {
    font-size: 18rem;
    color: #ffe44a;
    display: flex;
    line-height: 15rem;
}

.headingWrapper .filledTxt {
    font-size: 9rem;
    color: #fff;
    line-height: 7rem;
}

.extCtMain {
    display: flex;
    align-items: flex-end;
    gap: 3rem;
}

.ct1 {
    font-size: 9rem;
    color: #fff;
    line-height: 8rem;
    flex: 0 0 80%;
}

.extContentBanner {
    width: 60%;
    position: relative;
}

.extContentBanner .ct2 {
    color: #fff;
    font-size: 1rem;
    position: absolute;
    bottom: 10px;
    right: 0;
    width: 45%;
    font-family: 'Poppins';
}

/* Main Banner CSS Ends */



/* Portfolio Section CSS Starts */
.sectionHeading h2 {
    text-align: center;
    font-size: 18rem;
    background: -webkit-linear-gradient(#fff, #ffffff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cardStackMain {
    width: 100%;
    margin: 3rem auto 0;
    position: relative;
    will-change: transform;
}

.cardStack {
    border-radius: 2.813rem;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 15rem;
    justify-content: center;
    position: -webkit-sticky;
    position: sticky;
    transform-origin: center top;
    will-change: transform;
}

.stack1 {
    background-color: #697DFF;
    top: 0;
}

.stack2 {
    background-color: #FFEA00;
    top: 20px;
}

.stack3 {
    background-color: #FF69F0;
    top: 40px;
}

.stack4 {
    background-color: #3F4B99;
    top: 60px;
}

.stack5 {
    background-color: #F6818B;
    top: 80px;
}

.portfolioImg {
    position: relative;
    text-align: center;
}

.portfolioImg .portfolioType {
    position: absolute;
    top: 2rem;
    right: 0;
    width: 30%;
    z-index: 10;
}

.portfolioImg .portfolioType .portfolioTag {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.portfolioImg .portfolioType .portfolioTag span {
    background: #fff;
    padding: .5rem 1rem;
    border-radius: 50px;
    font-size: 1.375rem;
}

.portfolioImg img {
    object-fit: cover;
    width: 100%;
    height: 75vh;
    border-radius: 40px;
}

.portfolioDesc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.portfolioDesc h3 {
    font-size: 1.875rem;
    margin: 0;
}

.portfolioDesc p {
    margin: 0;
    font-family: 'Poppins';
    font-size: 1rem;
}

.portfolioSection .themeBtn {
    display: block;
    text-align: center;
    background: #fff;
    width: 15%;
    margin: 2rem auto 0;
    border-radius: 40px;
    padding: 1rem;
    font-size: 1.375rem;
    color: #000;
}

/* Portfolio Section CSS Ends */



/* Service Section CSS Starts */
.wrapper {
    height: 300px;
    max-height: 50vh;
    position: relative;
    display: flex;
    align-items: center;
}

.carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.box {
    padding: 2rem 2rem;
    flex-shrink: 0;
    border-radius: 20px;
    width: 400px;
    margin-right: 2rem;
    background: black !important;
    color: white;
    border: 1px solid;
}

.box__inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.box:nth-child(1) {
    background-color: #697DFF;
}

.box:nth-child(2) {
    background-color: #FFEA00;
}

.box:nth-child(3) {
    background-color: #FF69F0;
}

.box:nth-child(4) {
    background-color: #3F4B99;
}

.box:nth-child(5) {
    background-color: #F6818B;
}


.iconBox {
    display: inline-block;
    padding: .5rem;
    background: #222222;
    border-radius: 20px;
}

.contentBox h3 {
    font-size: 1.875rem;
}

.contentBox ul li {
    font-size: 1rem;
    font-family: 'Poppins';
}

.contentBox h2 {
    margin: 1rem 0;
}

.contentBox a {
    font-size: 1.25rem;
    color: #fff;
}

.serviceSection .themeBtn {
    display: block;
    text-align: center;
    background: #fff;
    width: 15%;
    margin: 4rem auto 0;
    border-radius: 40px;
    padding: 1rem;
    font-size: 1.375rem;
    color: #000;
}

/* Service Section CSS Ends */


/* CTA Section CSS Starts */
.ctaSection {
    background: #697EFF;
    position: relative;
    border-radius: 70px;
    padding: 5rem 0;
    text-align: center;
    margin: 5rem 0;
    z-index: 1;
    overflow: hidden;
}

.ctaSection img {
    position: absolute;
    bottom: -20px;
    left: 0;
}

.ctaSection svg {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    z-index: -1;
}

.ctaSection h2 {
    font-size: 6.25rem;
    line-height: 8rem;
}

.ctaSection h2 span {
    font-size: 12.75rem;
    color: #FFE44A;
}

.ctaSection p {
    font-family: 'Poppins';
    color: #fff;
    width: 65%;
    margin: auto;
}

.ctaSection .btnGroup {
    margin: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.ctaSection .btnGroup a {
    display: block;
    text-align: center;
    border-radius: 40px;
    padding: .5rem;
    font-size: 1.375rem;
    width: 40%;
}

.ctaSection .btnGroup a.themeBtn {
    background: #fff;
    color: #000;
}

.ctaSection .btnGroup a.secondaryBtn {
    color: #fff;
    background: #000;
}

/* CTA Section CSS Ends */



/* Video Section CSS Starts */
.videoContent {
    position: relative;
}

.videoContent::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 1200px;
    height: 1200px;
    background: radial-gradient(circle, rgba(255, 234, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: gradientMoveRight 10s ease-in-out infinite;
    z-index: -2;
    opacity: .4;
}

/* Video Section CSS Ends */


/* About Section */
.aboutSection {
    padding: 8rem 0;
}

.aboutContent h2 {
    font-size: 9rem;
    margin: 0;
    line-height: 7rem;
    color: #fff;
}

.aboutContent p {
    color: #989696;
    font-family: 'Poppins';
}

.aboutContent p span {
    color: #fff;
    text-transform: capitalize;
    font-weight: 600;
}

/* About Section Ends */


/* Articles Section CSS Starts */
.articlesSection {
    padding: 4rem 0;
}

.articlesSwiper {
    padding: 2rem 0;
}

.articleCard {
    /* background: #2a2520; */
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.articleCard:hover {
    transform: translateY(-10px);
}

.articleCard img {
    width: 100%;
    height: 320px;
    border-radius: 40px;
}

.articleContent {
    padding: 1.5rem;
}

.articleContent h3 {
    font-size: 1.875rem;
    color: #fff;
    margin-bottom: 1rem;
}

.articleContent p {
    font-family: 'Poppins';
    color: #989696;
    margin-bottom: 1rem;
}

.articleContent a {
    color: #FFE44A;
    font-size: 1.125rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.articleContent a:hover {
    color: #fff;
}

/* Swiper Navigation Buttons */
.swiperBtn button {
    background: transparent;
    border: none;
}

.swiperBtn .btnLeft button {
    transform: rotate(180deg);
}

.customSwiperBtn {
    text-align: right;
    margin-bottom: 2rem;
}

.customSwiperBtn svg {
    fill: #FFE44A;
}

/* Swiper Pagination */
.articlesSwiper .swiper-pagination-bullet {
    background: #FFE44A;
    opacity: 0.5;
}

.articlesSwiper .swiper-pagination-bullet-active {
    opacity: 1;
}

.articlesSection .sectionHeading h2 {
    font-size: 6.25rem;
    text-align: left;
    margin: 0;
}

.articlesSection .sectionHeading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.articlesSection .sectionHeading .themeBtn {
    text-align: center;
    border-radius: 40px;
    padding: .5rem;
    font-size: 1.375rem;
    width: 15%;
    color: #000;
    background: #fff;
}

/* Articles Section CSS Ends */



/* Footer Section CSS Starts */
footer {
    position: relative;
    overflow: hidden;
    padding-top: 5rem;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 21, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: gradientMoveRight 10s ease-in-out infinite;
    z-index: -2;
    opacity: .4;
}

footer::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 21, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: gradientMoveLeft 12s ease-in-out infinite;
    z-index: -2;
    opacity: .4;
}

footer h2 {
    font-size: 6.25rem;
    color: #fff;
    line-height: 6rem;
}

footer h2 span {
    color: #ffe44a;
}

footer form .form-control {
    background: #262626;
    border: none;
    margin-bottom: 1rem;
    border-radius: 50px;
    font-family: 'Poppins';
    height: 44px;
    border: 1px solid #000;
    color: #fff !important;
}

footer form textarea.form-control {
    height: 160px;
    resize: none;
    padding-left: 2rem;
}

footer form .form-control:focus {
    background: #262626;
    outline: none;
    border-color: #ffe44a;
    box-shadow: none;
}

footer form button {
    text-align: center;
    border-radius: 40px;
    padding: .5rem;
    font-size: 1.375rem;
    width: 25%;
    color: #000;
    background: #ffe44a;
}

.footerMenu ul {
    list-style: none;
}

.footerMenu ul li a {
    color: #fff;
    font-size: 1.875rem;
}

.contactInfo ul li,
.contactInfo ul li a {
    font-family: 'Poppins';
    color: #fff;
    list-style: none;
}

.contactInfo ul li a {
    margin-left: 1rem;
}

.copyrightTxt {
    font-family: 'Poppins';
    color: #fff;
}

.socialIcon {
    font-family: 'Poppins';
    display: flex;
    gap: 1rem;
    justify-content: end;
    align-items: center;
}

.socialIcon ul {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0;
    list-style: none;
    margin: 0;
}

.socialIcon p {
    margin: 0;
    color: #fff;
}

.copyrightRow {
    margin-top: 5rem;
}

/* Footer Section CSS Ends */



/* Inner pages CSS Starts */


/* About Page CSS Starts */

.innerBanner {
    height: 550px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.innerBanner::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 1200px;
    height: 1200px;
    background: radial-gradient(circle, rgba(105, 125, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: gradientMoveRight 10s ease-in-out infinite;
    z-index: -2;
    opacity: .4;
}

.innerBanner::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 1200px;
    height: 1200px;
    background: radial-gradient(circle, rgba(255, 105, 240, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: gradientMoveLeft 12s ease-in-out infinite;
    z-index: -2;
    opacity: .4;
}

.innerBanner svg {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
}

.innerBanner h1 {
    color: #fff;
    font-size: 9rem;
    margin: 0;
    text-align: center;
}

.boxx {
    padding: 2rem 2rem;
    height: 350px;
    border-radius: 20px;
    margin-bottom: 2rem;
    background: #000 !important;
    color: white;
    border: 1px solid #fff;
}

.bxBg1 {
    background-color: #699EFF;
}

.bxBg2 {
    background-color: #FFEA00;
}

.bxBg3 {
    background-color: #FF69F0;
}

.bxBg4 {
    background-color: #3F4B99;
}

.bxBg5 {
    background-color: #F6818B;
}

.bxBg6 {
    background-color: #699EFF;
}

.aboutPageVideo {
    padding: 5rem 0;
}

/* Testimonial Section CSS Starts */
.testimonialSection {
    padding: 5rem 0;
    overflow: hidden;
}

.testimonialSlider {
    margin-top: 3rem;
    padding: 0 5%;
}

.testimonialSwiper {
    overflow: visible !important;
    padding: 2rem 0;
}

.testimonialSwiper .swiper-wrapper {
    display: flex;
    align-items: center;
}

.testimonialSwiper .swiper-slide {
    opacity: 0.4;
    transform: scale(0.85);
    transition: all 0.5s ease;
    filter: blur(2px);
}

.testimonialSwiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
    z-index: 2;
}

.testimonialCard {
    background: rgba(42, 37, 32, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.testimonialCard:hover {
    border-color: #FFE44A;
}

.testimonialBody {
    margin-bottom: 2rem;
}

.testimonialBody p {
    color: #fff;
    font-size: 2rem;
    line-height: 1.2;
    margin: 0;
}

.testimonialFooter {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.clientImg {
    flex: 0 0 80px;
}

.clientImg img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #FFE44A;
}

.clientInfo h4 {
    font-size: 1.5rem;
    color: #fff;
    margin: 0 0 0.25rem 0;
    font-family: 'Bebas Neue';
}

.clientInfo p {
    font-family: 'Poppins';
    color: #989696;
    font-size: 0.875rem;
    margin: 0;
}

/* Testimonial Section CSS Ends */

/* About Page CSS Ends */


/* Portfolio Page CSS Starts */
.portfolioInnerSection {
    padding: 5rem 0;
}

.portfolioMain {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    min-width: 0;
    width: 100%;
}

.single-item-slick {
    width: 600px;
    margin: 0 auto;
    position: relative;
}

.single-item-slick .slick-list {
    overflow: hidden;
}

.single-item-slick .slick-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.single-item-slick .slick-slide img {
    width: auto !important;
    max-width: 100%;
    height: auto !important;
    display: block;
    border-radius: 40px;
}

.single-item-slick .slick-prev,
.single-item-slick .slick-next {
    z-index: 10;
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
}

.single-item-slick .slick-prev {
    left: -50px;
}

.single-item-slick .slick-next {
    right: -50px;
}

.single-item-slick .slick-prev:before,
.single-item-slick .slick-next:before {
    color: #fff;
    font-size: 30px;
}

.portfolioMain:hover {
    transform: translateY(-10px);
}

.portfolioMain .img {
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.portfolioMain .img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolioMain:hover .img::after {
    opacity: 1;
}

.portfolioMain .img img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    width: 100%;
}

.portfolioMain:hover .img img {
    transform: scale(1.1);
}

.portfolioMain .portfolioExc {
    transition: all 0.3s ease;
}

.portfolioMain:hover .portfolioExc h2 {
    color: #FFE44A;
    transition: color 0.3s ease;
}

.portfolioMain .portfolioExc h2 {
    color: #fff;
    margin-top: 2rem;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.portfolioMain .portfolioExc p {
    font-family: 'Poppins';
    color: #fff;
}

.portfolioMain .portfolioExc .portfolioTags {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.portfolioMain .portfolioExc .portfolioTags div {
    background: #fff;
    padding: .5rem 1rem;
    border-radius: 50px;
    color: #000;
    transition: all 0.3s ease;
}

.portfolioMain:hover .portfolioExc .portfolioTags div {
    background: #FFE44A;
    transform: translateY(-2px);
}

/* Portfolio Page CSS Ends */


/* Single Portfolio Page CSS Starts */
.portfolioDetails h2 {
    font-size: 5rem;
    text-align: center;
    color: #fff;
}

.portfolioDetails p {
    font-size: 1rem;
    font-family: 'Poppins';
    color: #989696;
    width: 60%;
    margin: auto;
    text-align: center;
}

.portfolioExtDetails {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #989696;
    text-align: center;
    margin-top: 3rem;
}

.portfolioExtDetails span {
    color: #fff;
    display: block;
    font-size: 22px;
}

.portfolioDetails .portfolioMain {
    margin-top: 3rem;
}

.portfolioDetails .portfolioMain h3 {
    color: #fff;
}

.portfolioDetails .portfolioMain p {
    margin: 0;
    text-align: right;
}

.portfolioDetails .extDescriptions {
    margin: 7rem 0;
}

.portfolioDetails .extDescriptions h3 {
    color: #fff;
    font-size: 3.125rem;
}

.portfolioDetails .extDescriptions p {
    width: 100%;
    text-align: left;
}

.moreProjectSection h2 {
    color: #fff;
    margin-bottom: 2rem;
}

/* Single Portfolio Page CSS Ends */


/* Inner pages CSS Ends */
.portfolioImg video {
    border-radius: 40px;
    object-fit: cover;
    width: 100%;
    height: 75vh;
}


/* Scholarship Section CSS Starts */
.scholarshipSection {
    padding: 5rem 0;
    position: relative;
}

.scholarshipSection .sectionHeading h2 {
    font-size: 6.25rem;
    color: #fff;
    margin-bottom: 2rem;
}

.universityLogo {
    padding: 2rem;
    transition: transform 0.3s ease;
}

.universityLogo img {
    max-width: 200px;
    height: auto;
    filter: grayscale(100%) brightness(0) invert(1);
    transition: all 0.3s ease;
}

.universityLogo:hover img {
    filter: none;
    transform: scale(1.05);
}

/* Scholarship Section CSS Ends */


/* Testimonials Section CSS Starts */
.testimonialSection {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.testimonialSection::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(105, 125, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: gradientMoveRight 10s ease-in-out infinite;
    z-index: -2;
    opacity: .4;
}

.testimonialSection .sectionHeading h2 {
    font-size: 6.25rem;
    color: #fff;
    margin-bottom: 3rem;
    text-align: center;
}

.testimonialSlider {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonialSwiper {
    padding: 2rem 0 4rem;
}

.testimonialCard {
    background: rgba(34, 32, 32, 0.5);
    border-radius: 30px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: auto;
}

.testimonialCard:hover {
    transform: translateY(-10px);
    border-color: #FFE44A;
    box-shadow: 0 10px 40px rgba(255, 228, 74, 0.2);
}

.testimonialBody {
    margin-bottom: 2rem;
}

.testimonialBody p {
    font-family: 'Poppins';
    color: #E6E4E0;
    font-size: 1.125rem;
    line-height: 1.8;
    font-style: italic;
}

.testimonialFooter {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.clientImg {
    flex-shrink: 0;
}

.clientImg img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #FFE44A;
}

.clientInfo h4 {
    font-size: 1.5rem;
    color: #fff;
    margin: 0 0 0.25rem 0;
}

.clientInfo p {
    font-family: 'Poppins';
    color: #989696;
    font-size: 0.875rem;
    margin: 0;
}

/* Swiper Pagination for Testimonials */
.testimonialSwiper .swiper-pagination-bullet {
    background: #FFE44A;
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.testimonialSwiper .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}

/* Testimonials Section CSS Ends */

.universityLogo.filter-none img {
    filter: none;
}

.home h2.rollRight {
    font-size: 18rem;
}

.ground h2.rollRight {
    font-size: 7rem;
    margin-bottom: 3rem;
}

figure.universityfig {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.universityLogo h3 {
    color: white;
}

.cardStackMain a {
    color: black;
}