* {
    margin: 0;
    padding: 0
}

section {
    padding: 60px 0;
}

#hero-section {
    background: url(img/bg-1.webp) no-repeat center top/cover;
    position: relative;

}

#hero-section:before,
.wrapper-bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
}

#hero-section>div {
    position: relative;
}

#hero-section .wrapper {
    background: #f7f1e3;
    padding: 10px 20px;
    font-weight: 600;
    font-style: italic;
    line-height: 30px;
    font-family: "Libre Franklin", sans-serif;
}

#hero-section .wrapper>* {
    display: inline;
}

#hero-section .wrapper>p,
.about-wrapper {
    font-family: "Playwrite AU SA", cursive;
}

#hero-section img {
    box-shadow: 9px 9px 10px rgba(0, 0, 0, 0.5);
    border-radius: 30px 0;
    margin: 0 auto;
    display: block;
}

h1 {
    text-transform: uppercase;
    color: #12385a;
    text-align: center;
    border-bottom: 1px solid #2a7003;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    font-size: 1.7rem;
}

h1 span {
    color: #0888c3;
    display: block;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 2.5rem;
}


#services {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ff9600+0,f8bf20+100 */
    background: linear-gradient(to bottom, #ff9600 0%, #f8bf20 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    text-align: center;
}

#services h2 {
    font-size: 2.4rem;
}

h2 {
    position: relative;
    color: #083b9e;
    font-family: "Noto Serif", serif;
    text-transform: uppercase;
    padding-bottom: 15px;
    text-align: center;
}

h2:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    max-width: 90%;
    width: 600px;
    height: 3px;
    background: #ff007b;
    margin: 0 auto;
}

h2:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    max-width: 40%;
    width: 400px;
    height: 3px;
    background: #00ccff;
    margin: 0 auto;
}

h2 span {
    color: #fff000;
}
h2 .subh2{font-size: 14px; color: #083b9e; font-family: "Montserrat", sans-serif; font-weight: 700; line-height: 30px;}

#services .card,
.about-wrapper {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#021448+0,1b0792+100 */
    background: linear-gradient(to bottom, #021448 0%, #1b0792 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    color: #fff;
    padding: 30px 15px 20px;
    border-radius: 30px 0;
    box-shadow: 9px 9px 10px rgba(0, 0, 0, 0.5);
}

#services .card img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 5px solid transparent;
    outline: 5px solid #fff;
    margin: 0 auto 30px;
}

h3 {
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;

}

h3 span {
    display: block;
    font-family: "Manrope", sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 35px;
}

@media (max-width: 767px) {
    h3 {
        font-size: 20px;
    }
}

#courses {
    background: url(img/bg-2.webp) no-repeat center top/cover;
    position: relative;
}

#courses:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(12, 40, 108, 0.8);
}

#courses h2 {
    color: #fff;
}

#courses .card {
    padding: 30px 15px 20px;
    border-radius: 30px 0;
    text-align: center;

    font-family: "Manrope", sans-serif;
    font-weight: 400;
}

#courses .card img {
    width: 100px;
    height: auto;
}

#courses .row>div:nth-child(1) .card {
    background: #ffc000;
}

#courses .row>div:nth-child(2) .card {
    background: #0a52ff;
}

#courses .row>div:nth-child(3) .card {
    background: #7b00a4;
}

#courses .row>div:not(:nth-child(1)) .card {
    color: #fff;
}

#courses .card h3 {
    text-transform: uppercase;
}

.more-link-1 {
    background: #fff;
    border-radius: 30px 0;
    color: #000;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    padding: 3px 20px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
}

.more-link-1:after {
    background: url(img/icon-1.webp) no-repeat center center/contain;
    width: 20px;
    height: 20px;
    content: "";
}

.quality-list ul {
    list-style: none;
    counter-reset: my-counter;
    /* Start from 0 */
    padding-left: 0;
}

.quality-list ul li {
    counter-increment: my-counter;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quality-list ul li::before {
    content: counter(my-counter, decimal-leading-zero) " ";
    font-weight: bold;
    color: #91b1ff;
    font-size: 70px;
}

@media (min-width: 768px) {

    .quality-list ul li:nth-child(even)::before {
        order: 2;
        margin-left: 15px;
    }

    .quality-list ul li:nth-child(odd)::before {
        margin-right: 15px;
    }

    .quality-list ul li:nth-child(odd) .quality-content {
        border-left: 3px solid #0a52ff;
        padding-left: 15px;
    }

    .quality-list ul li:nth-child(even) .quality-content {
        border-right: 5px solid #0a52ff;
        padding-right: 15px;
        text-align: right;
    }
}

.quality-content h3 {
    color: #0a52ff;
    text-transform: uppercase;
}

.quality-content p {
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    margin: 0;
}

@media (max-width: 767px) {
    .quality-list ul li {
        flex-direction: column;
        text-align: center;
    }

    .quality-list ul li:before {
        border-bottom: 5px solid #0a52ff;
        margin-bottom: 15px;
    }
}

h2:has(p) {
    font-size: 1.2rem;
}

h2:has(p)>p {
    font-size: 2rem;
}

#reguler-course h3 {
    color: #1d0059;
}

#reguler-course img {
    box-shadow: 7px 7px 13px rgba(0, 0, 0, 0.5);
}

.more-link-2 {
    color: #ff002d;
    text-transform: uppercase;
    position: relative;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
}

.more-link-2:after {
    background: url(img/icon-2.webp) no-repeat center center/contain;
    width: 15px;
    height: 15px;
    content: "";
}

.wrapper-bg {
    background: url(img/bg-1.webp) repeat center top;
    position: relative;
}

.wrapper-bg>* {
    position: relative;
}

#featured {
    font-family: "Montserrat", sans-serif;
    color: #1d0059;
}

#featured {
    font-weight: 700;
    text-transform: uppercase;
}

#featured h3,
#featured h3 span {
    font-size: calc(1.3rem + .6vw);
}

#featured h3 span {
    display: inline-block;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
}

.featured-border {
    border: 2px solid #e91e63;
    padding: 30px;
}

#cta h3 {
    font-family: "Manrope", sans-serif;
    color: #008cff;
    text-transform: none;
    font-weight: 500;
}

.cta-btn {
    background: #00335d;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    padding: 10px 20px;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 200px;
    margin: 20px auto 0;
}

.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 300px;
}

.swiper-slide img {
    display: block;
    width: 100%;
}

.brand-wrapper {
    position: relative;
    width: 60%;
}

.brand-wrapper:after {
    content: "";
    background: #a6faeb;
    clip-path: polygon(0 0,
            /* top-left */
            80% 0,
            /* near top-right */
            100% 100%,
            /* bottom-right (angled cut) */
            0% 100%
            /* bottom-left */
        );
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    top: 0;
    height: 100%;
    width: 100%;

}

.brand-wrapper:before {

    content: "";
    background: #4e0073;
    clip-path: polygon(0 0,
            /* top-left */
            83% 0,
            /* near top-right */
            100% 100%,
            /* bottom-right (angled cut) */
            0% 100%
            /* bottom-left */
        );
    display: block;
    position: absolute;
    right: 0;
    left: 7px;
    bottom: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.navbar-brand {
    max-width: 250px;
    position: relative;
    z-index: 1;
    display: block;
}

header {
    background: #fff;
    position: relative;
}

header::before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    right: 55%;
    bottom: 0;
    background: #a6faeb;
}

@media (min-width: 1199px) {
    .brand-wrapper{
        width: 40%;
    }
    header::before {
        right: 65%;
    }
}

.navbar-nav {
    gap: 20px;
    text-transform: uppercase;
    font-weight: bold;
    font-family: "Noto Serif", serif;
    font-size: 18px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: #0888c3;
}

.navbar-toggler {
    border: none;
    margin-right: 10px;
}

@media (max-width: 991px) {
    .navbar-nav {
        background: #a6faeb;
        gap: 0;
    }

    .nav-link {
        padding-inline: 15px;
    }
}

@media (max-width: 767px) {
    .brand-wrapper {
        width: 80%;
    }
}

.testimonial .swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial .swiper-slide img {
    display: block;
    width: auto;
}

.testimonial .card {
    background: #f4f4f4;
    border-radius: 5px;
    border: none;
}

#testimonial .more-link-1 {
    background: #007fcf;
    box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.43);
    color: #fff;
    padding: 10px 20px;
}

#testimonial .more-link-1:after {
    display: none;
}

.star-icon li {
    color: #f6e800;
}

.star-icon li svg {
    fill: #f6e800;
}

#cta-form {
    background: #00335d;
}

#cta-form h2 {
    color: #fff !important;
    padding: 0;
}

#cta-form h2:after,
#cta-form h2:before {
    display: none;
}

#cta-form h2 span {
    color: #fff000;
}

.cta-content {
    text-align: center;
    text-transform: uppercase;
}

.cta-content p {
    color: #fff000;
}

#cta-form form {
    max-width: 500px;
    margin: 20px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

footer {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#0a175c+0,492ef8+100 */
    background: linear-gradient(to bottom, #0a175c 0%, #492ef8 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    color: #fff;
}

footer h4 {
    color: #fff000;
}

footer ul {
    padding: 0;
}

footer ul li {
    list-style: none;
    display: flex;
    gap: 10px;
}

/* footer p{
    margin: 0;
} */
.social {
    display: flex;
    gap: 20px;
}

.social img {
    width: 40px;
}

.video-wrapper {
    position: relative;
    /* padding-bottom: 56.25%; */
    /* padding-bottom: 45%; */
    /* height: 0; */
}

.video-wrapper iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0 !important;
    left: 0;
    max-height: 90vh;
}

.sound-toggle-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid white;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.sound-toggle-btn {
    opacity: 0;
    visibility: hidden;
}

.video-wrapper.is-active .sound-toggle-btn {
    opacity: 1;
    visibility: visible;
}

.sound-toggle-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.05);
}

#indrani-pathshala h5 {
    color: #ff8c05;
}

#indrani-pathshala>div:nth-child(2) h4 {
    font-family: "Story Script", sans-serif;
    font-size: calc(1.575rem + .3vw);
}

#trust-section h2 {
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            /* Fade in starts here */
            rgba(255, 255, 255, 1) 30%,
            /* White begins at 30% */
            rgba(255, 255, 255, 1) 70%,
            /* White ends at 70% (Solid center bar) */
            rgba(255, 255, 255, 0) 100%
            /* Fade out ends here */
        );
    padding: 10px 30px;
    color: #006400;
    margin: 0;
}

#trust-section h2:before,
#trust-section h2:after,
.service-cta h2:before,
.service-cta h2:after {
    display: none;
}

.service-cta h2 {
    color: #003782;
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    text-transform: uppercase;
}

.service-cta h2 > p{
    color: #fff;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    font-size: 2.4rem;
}

.yellow-bg{
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffe400+100 */
background: linear-gradient(to bottom,  #ffffff 0%,#ffe400 100%) !important; /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.yellow-bg::before{
    display: none !important;
}

.yellow-bg h2{
    color: #02257d !important;
}

.university-logo-carousel .swiper-slide img{
    width: auto;
    margin: 0 auto;
}

.university-logo-carousel .swiper-slide-shadow-left,
.university-logo-carousel .swiper-slide-shadow-right{
    background-image: none !important;
}

.unversity-wrapper{
    padding: 50px 0;
}
.unversity-wrapper h4{
    color: #060d83;
    font-weight: 800;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    position: relative;
}
.unversity-wrapper h4:before{
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    display: block;
    max-width: 90%;
    width: 300px;
    height: 3px;
    background: #060d83;
    margin: 0 auto;
}

.university-logo-carousel .swiper-slide {
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: scale(0.85);
  opacity: 0.6;
}

/* Center active slide */
.university-logo-carousel .swiper-slide-active {
  transform: scale(1.15); /* 👈 makes it bigger */
  opacity: 1;
  z-index: 2;
}

/* Optional: smooth neighbors */
.university-logo-carousel .swiper-slide-prev,
.university-logo-carousel .swiper-slide-next {
  transform: scale(0.95);
  opacity: 0.8;
}

.university-list{
    margin-top: 50px;
}

.university-card{
    border: 2px solid #002337;
    border-radius: 20px;
    padding: 20px;
}
.university-card h5{
    color: #0d0187;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
}
.university-card h5 > span{
    font-size: 1rem;
}
.university-card h5 > p{
    font-size: 1.1rem;
    font-weight: 700;
    color: #02257d;
}

.university-card ul,
.course-support > ul,
.choose-wrapper > ul{
    padding: 0;
    margin: 0;
}
.university-card ul > li,
.course-support > ul > li,
.choose-wrapper > ul > li{
    list-style: none;
}
.university-card ul > li > span:first-child{
    color: #000;
}
.university-card ul > li > span:last-child{
    color: #0193ee;
}


.course-support h4,
.skew-title{
    color: #fff;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    padding: 10px 20px;
}
.course-support h4:before,
.skew-title:before{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%) skew(-10deg, 0);
    background: #0a6bc4;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border-width: 0 3px;
    outline-width: 0 3px;
    border-style: solid;
    border-color: #054987;
    outline-color: #003362;
    z-index: -1;
}

.course-support > ul > li,
.choose-wrapper > ul > li > span:first-child{
    display: flex;
    align-items: center;
}
.course-support > ul > li:before,
.choose-wrapper > ul > li > span:first-child:before{
    content: "";
    display: inline-block;
    width: 20px;
    min-width: 20px;
    height: 20px;

    background-image: url("img/tick.webp");
    background-size: contain;
    background-repeat: no-repeat;

    margin-right: 8px;
    vertical-align: middle;
}

.choose-wrapper > ul > li > span:first-child:before{
    background-image: url("img/about-tick.webp") !important;
}
.choose-wrapper > ul > li > span:first-child{
    color: #1f6aff;
}

.course-support + div > h2 > p{
    color: #03bfdd;
}

.about-wrapper{
    color: #fff700;
    line-height: 35px;
    box-shadow: none;
}
.about-devider{
    display: block;
    background: #fff;
    max-width: 200px;
    width: 100%;
    height: 2px;
    margin: 10px auto;
}

.mission-vision-wrapper h3{
    text-transform: uppercase;
    color: #2093d9;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    border-bottom: 1px solid #000;
    display: inline-block;
}
.mission-vision-wrapper img{
    box-shadow: 9px 9px 10px rgba(0, 0, 0, 0.5);
    border-radius: 0 30px;
}

.shape-text{
    position: relative;
    text-align: center;
}
.shape-text:before{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%) skew(-10deg, 0);
    background: #fff;
    padding: 5px 15px;
    width: 100%;
    height: 100%;
    box-shadow: 0px 3px 0px 3px #013965;
}
.shape-text span{
    color: #1d0059;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    position: relative;
}

.color-light-blue{
    color: #0d4ec4;
}

.color-dark-blue{
    color: #281a70;
}

.choose-wrapper > ul{
    margin-bottom: 30px;
}
.choose-wrapper > ul > li{
    flex-wrap: wrap;
    display: flex;
}

@media (max-width: 767px) {
    .choose-wrapper > ul > li > span:last-child{
        padding-left: 28px;
    }
}

.course-details-header h3{
    color: #0888f4;
}

#rcd .course-support{
    text-align: center;
}

.question{
    font-weight: 700;
    color: #060b82;
    margin-bottom: 0;
}


/* Add this to your CSS file */
.youtube-background {
    width: 100vw;
    height: calc(100vh - 70px);
    position: relative;
    overflow: hidden; /* Prevents scrollbars from the video spilling over */
}

@media (max-width: 767px) {
    .video-wrapper{
        padding-bottom: 0;
    }
    .video-wrapper iframe{
        max-height: 100%;
    }
    .youtube-background {
        height: auto;
        width: 100%;
        aspect-ratio: 16/9;
    }
}

/* Floating Action Buttons */
.floating-btn {
    position: fixed;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
    color: #fff;
}

.call-btn {
    left: 20px;
    background-color: #0a52ff;
}

.whatsapp-btn {
    right: 20px;
    background-color: #25D366;
}

.floating-btn svg {
    width: 32px;
    height: 32px;
}