@font-face {
    font-family: 'sf-pro-display';
    font-style: normal;
    font-weight: 200;
    src: local('sf-pro'), url('../fonts/sf-pro-display-regular.woff2') format('woff');
}
@font-face {
    font-family: 'sf-pro-display';
    font-style: normal;
    font-weight: 400;
    src: local('sf-pro'), url('../fonts/sf-pro-display-medium.woff2') format('woff');
}
@font-face {
    font-family: 'sf-pro-display';
    font-style: normal;
    font-weight: 600;
    src: local('sf-pro'), url('../fonts/sf-pro-display-bold.woff2') format('woff');
}
@font-face {
    font-family: 'sf-pro-display';
    font-style: normal;
    font-weight: 200;
    src: local('sf-pro'), url('../fonts/sf-pro-display-regular.woff2') format('woff');
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
*{
    padding: 0;
    margin: 0;
}
html{
    overflow-x: hidden;
}
body {
    font-family: 'sf-pro-display';
    line-height: 1.5;
    background-color: #FAF8F8;
    padding-top: 77px;
}
ul{
    padding: 0;
    margin: 0;
}
li{
    list-style: none;
}
a{
    text-decoration: none;
    color: #000;
}
p{
    font-family: "Roboto", sans-serif !important;
    font-size: 16px;
    font-weight: 400;
    color: #333;

}
:root {
    --main-color: #CB0000;
    --secondary-color: #ffffff;
    --head-size: 32px;
    --para-size: 16px;
}
/* Target the entire scrollbar */
::-webkit-scrollbar {
  width: 5px;
}

/* Scrollbar track */
::-webkit-scrollbar-track {
  background: #ffffff;
}

/* Scrollbar thumb */
::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
  border-radius: 2px;
}











.head-tags {
    margin-bottom: 30px;
}
.head-tags p {
    font-size: 14px !important;
    margin-bottom: 20px;
    border: 1px solid #cb000073;
    margin: auto;
    width: fit-content;
    border-radius: 20px;
    padding: 3px 15px;
}
/* Dropdown menu */
.navs ul li .dropdown {
    position: absolute;
    bottom: -165px;
    left: -25px;
    background: #faf8f8;
    display: none;
    flex-direction: column;
    min-width: 201px;
    z-index: 1000;
    gap: 18px;
    padding: 20px 10px;
    border-radius: 15px;
    padding-top: 40px;
}

.navs ul li .dropdown li a {
    padding: 10px 15px;
}

/* Show dropdown on hover */
.navs ul li:hover .dropdown{
    display: flex;
    justify-content: start;
}
/* ======================== */

header {
    padding: 15px 0px;
    position: fixed;
    width: 100%;
    z-index: 999;
    background: #faf8f8;
    top: 0;
}
header .navs .nav-bar {
    align-items: center;
    gap: 30px;
    justify-content: center;
    height: 47px;
    font-weight: 100;
}
header .navs ul .dropdown-nav{
    position: relative;
}
header .navs ul li a {
    font-size: 16px;
    color: #000;
}
header .navs ul li a i{
    font-size: 10px;
    margin-left: 2px;
}
.nav_enquiry {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 47px;
    gap: 30px;
}
.nav-side {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
}
.nav_enquiry a {
    position: relative;
    background: linear-gradient(to right, #c30000, #ff0000);
    padding: 8px 30px;
    color: #fff;
    border-radius: 20px;
    overflow: hidden;
    font-size: 14px;
    box-shadow: inset 0 5px 10px rgb(0 0 0 / 13%);

    &:after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent,rgba(255, 255, 255, 0.4),transparent);
        transition: 0.9s;
    }
    &:hover:after {
        left: 100%;
    }
    &:active{
        transform: scale(0.9);
        transition: 0.9s;
    }
}
.toggle_icon span {
    display: block;
    background-color: #cb0000;
    height: 3px;
    width: 25px;
    margin: 7px 0px;
    cursor: pointer;
    border-radius: 20px;
}
.toggle_icon span:nth-child(2) {
    width: 15px;
    margin-left: auto;
}

.side_menu_logo img{
    width: 150px;
}
.side_menu_bg {
    background: linear-gradient(0deg, rgb(167 0 0) 0%, rgb(193 0 0) 100%);
    color: #fff;
    width: 30%;
    position: fixed;
    right: 0;
    top: 0px;
    height: 100vh;
    padding: 40px;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: all ease 0.8s;
    opacity: 0;
    align-content: center;
    align-items: flex-start;
    justify-content: space-between;
    z-index: 99;
}
.side_menu_active {
    transform: translateX(0%);
    opacity: 1;
}
.side_menu .course_dropdown{
    display: none;
}
.side_menu ul {
    list-style: none;
    line-height: 50px;
    padding-left: 0;
}
.side_menu ul li a {
    display: block;
    color: #fff;
    font-size: 25px;
}
.side_menu ul li a i{
    font-size: 15px;
    margin-left: 2px;
}

.side_menu_adrs ul {
    list-style: none;
    padding: 0;
    display: inline-flex;
    gap: 11px;
}
.side_menu_adrs p {
    color: #fff;
    margin-bottom: 5px;
}
.side_menu_adrs p a{
    color: #fff;
}

.nav-close {
    position: absolute;
    right: 10%;
    top: 8%;
    cursor: pointer;
}

.nav-close span {
    display: block;
    height: 2px;
    width: 35px;
    background-color: #ffffff;
    margin-bottom: 0.5rem;
}

.nav-close span:first-child {
    transform: rotate(45deg);
    margin: -1px;
}

.nav-close span:last-child {
    transform: rotate(-45deg);
}

.side_menu_adrs .social_links {
    list-style: none;
    padding: 0;
    display: inline-flex;
    gap: 10px;
}

.side_menu_adrs .social_links li i {
    font-size: 18px;
    color: #ffffff;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    border: 2px solid;
    border-radius: 30px;
    width: 36px;
    height: 36px;
    line-height: 35px;
    text-align: center;
}

.side_menu_adrs .social_links li i:hover {
    color: #770404;
    border: #ffffff solid 2px;
    background-color: #fff;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
/* ------Dropdown-------- */


/* Dropdown */
.side_menu ul li {
    position: relative;
}

.side_menu ul li ul {
    display: none;
    flex-direction: column;
    background: #f9f9f9;
}

.side_menu ul li ul li a {
    color: #333;
}

.side_menu ul li ul li a:hover {
    background: #eee;
}

/* Show dropdown when active */
.side_menu ul li.active > ul {
    display: flex;
    flex-direction: column;
}

/* Desktop menu */
@media (min-width: 768px) {
    .side_menu ul {
        display: flex;
        flex-direction: column;
    }

    .side_menu ul li {
    flex: none;
    }

    .side_menu ul li ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    display: none;
    }

    .side_menu ul li.active > ul {
    display: block;
    }
}


/* ===============hero-sec================ */
.hero-sec {
    background: url(../images/be-up-hero.webp);
    background-size: cover;
    background-position: top;
    height:100vh;
    margin: 0 20px;
    border-radius: 20px;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}
.hero-sec .hero-cnt{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    justify-content: center;
    text-align: center;
}
.hero-sec .hero-cnt h1{
    font-size: 40px;
    overflow: hidden;
}

.hero-sec .hero-cnt h1 .reveal-head {
  display: block;
  animation: reveal 1.5s cubic-bezier(0.77, 0, 0.175, 1) 0s;
}

.hero-sec .hero-cnt h1 .text-style{
    font-size: 55px;
    font-weight: 600;
    color: var(--main-color);
}
.hero-sec .hero-cnt p{
    max-width: 700px;
}
.hero-sec .hero-cnt p span{
    color: var(--main-color);
}
.hero-cnt .top-tag {
    border: 1px solid var(--main-color);
    font-size: 12px !important;
    padding: 8px 15px;
    border-radius: 50px;
}
.enquiry-btn a {
    background: linear-gradient(to right, var(--main-color), #ff0000);
    color: var(--secondary-color);
    padding: 7px 30px 7px 8px;
    border-radius: 50px;
    font-size: 15px;
    box-shadow: inset 0 5px 10px rgb(0 0 0 / 13%);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    position: relative;

    &:hover {
        gap: 0px;
        padding: 7px 44px 7px 0px;
    }
    &:after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent,rgba(255, 255, 255, 0.4),transparent);
        transition: 0.9s;
    }
    &:hover:after {
        left: 100%;
    }
    &:active{
        transform: scale(0.9);
        transition: 0.9s;
    }
}
.enquiry-btn {
    position: relative;
    margin-top: 50px;
    display: flex;
    justify-content: center;
}
.enquiry-btn a i {
    font-size: 12px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    background: var(--secondary-color);
    color: var(--main-color);
    transition: 0.4s;
}
.enquiry-btn a:hover i {
    transform: translateX(88px);
}
.avatar img {
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 20px;
      animation: reveal 1.5s cubic-bezier(0.77, 0, 0.175, 1) 0s;
}

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

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

/* ==========================about-sec=================================== */


.about-sec{
    padding: 120px 0px;
}
.about-sec img {
    width: 100%;
    border-radius: 20px;
}
.abt-cnt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 458px;
}
.abt-cnt h6 {
    font-size: var(--head-size);
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 30px;
}
.about-sec .buttons .discover_btn{
    background: linear-gradient(to right, #c30000, #ff0000);
    padding: 8px 20px;
    border-radius:30px ;
    color: var(--secondary-color);
    position: relative;
    transition: 0.5s;
    &:after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent,rgba(255, 255, 255, 0.4),transparent);
        transition: 0.9s;
    }
    &:hover:after {
        left: 100%;
    }
    &:active{
        transform: scale(0.9);
    }
}
.about-sec .buttons {
    margin-top: 20px;
    display: flex;
    gap: 20px;
}
.about-sec .buttons .enquire_btn{
    border: 1px solid var(--main-color);
    padding: 8px 20px;
    border-radius:50px ;
    color: var(--main-color);
}
.about-sec .count-cnt {
    background: linear-gradient(2deg, #c30000, #f65b5b);
    color: #ffffff;
    height: 217px;
    padding: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ee4d4d;
    border-radius: 15px;
}
.about-sec .count-cnt h4 {
    margin: 0;
    font-weight: 200;
}
.about-sec .count-cnt h4 span{
    font-size: 45px;
    font-weight: 600;
}


/*========================Course=========================*/

.courses{
    padding-bottom: 100px;
}
.courses .course-top-cnt {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.courses .course-top-cnt h3 span {
    color: var(--main-color);
}
.courses .course-top-cnt h3 {
    font-size: var(--head-size);
}
.courses .course-top-cnt p{
    max-width: 750px;
    margin-top: 5px;
}
.courses .types-courses{
    margin-top: 60px;
    display: flex;
}
.courses .course-cnt h6{
    border: 2px solid var(--main-color);
    font-size: 13px;
    display: inline-block;
    border-radius: 50px;
    padding: 5px 20px;
    color: #000;
}
.courses .detailed-course:hover h6{
    border: 2px solid var(--secondary-color);
    color: #fff;
}
.courses .course-cnt h2{
    font-size: 22px;
    font-weight: 600;
    padding: 10px 0;
}
.courses .course-cnt h2 span{
    color: var(--main-color);
}
.courses .detailed-course {
    display: flex;
    height: 380px;
    margin: 20px;
    padding: 30px;
    border: 1px solid #dedede;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 20px;
    transition: 5s all;
}
.courses .disc-btn {
    position: relative;
    overflow: hidden;
    border: 1px solid #dedede;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 52px;
    text-align: center;
    transition: 0.2s all;
}
.courses .detailed-course a{
    width: fit-content;
}
.courses .disc-btn::after {
    content: 'Discover More';
    position: absolute;
    color: #fff;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: 0.9s;
    overflow: hidden;
    
}
.courses .detailed-course:hover .disc-btn::after {
    left: 10%;
}
.courses .detailed-course:hover {
    background: linear-gradient(49deg, #ff3c3c, #ff6f6f, #ff3c3c);
}
.courses .detailed-course:hover h2,.courses .detailed-course:hover h2 span,.courses .detailed-course:hover p{
    color: #fff;
}
.courses .detailed-course:hover .disc-btn {
    text-align: start;
    width: 155px;
}
.courses .detailed-course:hover .disc-btn i {
    color: #fff;
    transform: translateX(124px);
    transition: 0.5s;
}

/* ======================================keyfeatures====================================== */
.keyfeatures{
    padding: 100px 0;
    background-color: #141414;
}
.keyfeatures h3{
    font-size: var(--head-size);
    color: #fff;
    margin-bottom: 40px;
}
.keyfeatures h3 span{
    color: var(--main-color);
    margin-bottom: 40px;
}
.features-tags p {
    font-size: 14px !important;
    margin-bottom: 20px;
    border: 2px solid var(--main-color);
    width: fit-content;
    border-radius: 20px;
    padding: 3px 15px;
    color: #ffffff;
}
.keyfeatures .features-box {
    height: 400px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    background: #1c1c1c;
    margin: 0px 10px;
    padding: 30px;
    border-radius: 20px;
    color: #fff;
    transition: 0.4s all;

    &:hover {
        background: linear-gradient(142deg, #ff2323, #ff4f4f);
    }
    &:hover i {
        transform: rotate(45deg);
    }
}
.keyfeatures .features-box h4{
    padding-bottom: 10px;
}
.keyfeatures .features-box p {
    font-weight: 200 !important;
    color: #fff;
}
.keyfeatures .features-box i{
    border: 1px solid #ffffff;
    font-size: 12px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    transition: 0.2s;
}
.features_slide{
    position: relative;
}
.keyfeatures .slick-prev {
    position: absolute;
    top: -20%;
    right: 150px;
    background-color: var(--main-color);
    width: 50px;
    height: 50px;
    line-height: 50px;
    border: none;
    border-radius: 50%;
}
.keyfeatures .slick-prev i{
    color: #fff;
    rotate: 180deg;
}
.keyfeatures .slick-next {
    position: absolute;
    top: -20%;
    right: 75px;
    background: none;
    width: 49px;
    height: 49px;
    line-height: 50px;
    border: 1px solid #fff;
    border-radius: 50%;
}
.keyfeatures .slick-next i{
    color: #fff;
}


/* ============================testimonial=================================== */

.testimonial-sec{
    padding: 100px 0;
}
.testimonial-sec h4{
    font-size: var(--head-size);
    margin-bottom: 10px;
    text-align: center;
}
.testimonial-sec h4 span{
    color: var(--main-color);
}
.testimonial-sec .testi-para {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}
.testimonial_slide {
    margin-top: 60px;
    position: relative;
}
.testimonial_slide .testi_head_texts {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.testimonial_slide .testi_head_texts h5{
    font-size: 18px;
    margin-bottom: 0;
}
.testimonial_slide .testi_head_texts img{
    width: 65px;
}
.testimonial_slide .top-cnts p {
    font-size: 15px;
    margin-bottom: 0;
}
.testimonial_slide .testi-author {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 25px;
}
.testimonial_slide .testi-author p {
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
}
.testimonial_slide .testi-author p span{
    font-size: 12px;
    font-weight: 400;
}
.testimonial_slide .testi-author img {
    width: 40px;
    border-radius: 99px;
}
.testimonials {
    background: #ffffff;
    padding: 25px;
    border-radius: 20px;
    margin: 0px 10px;
    height: 300px;
}

.testimonial_slide .slick-prev {
    position: absolute;
    top: -25%;
    right: 130px;
    background-color: var(--main-color);
    width: 42px;
    height: 42px;
    line-height: 41px;
    border: none;
    border-radius: 50%;
    font-size: 15px;
}
.testimonial_slide .slick-prev i{
    color: #fff;
    rotate: 180deg;
}
.testimonial_slide .slick-next {
    position: absolute;
    top: -25%;
    right: 75px;
    background: none;
    width: 40px;
    height: 40px;
    line-height: 39px;
    font-size: 15px;
    border: 1px solid var(--main-color);
    border-radius: 50%;
}
.testimonial_slide .slick-next i{
    color: #000000;
}


/* ===============================videio-testimonial==================================== */
.vdo-testimonial {
    padding-bottom: 40px;
}
.vdo-testimonial h5 {
    font-size: var(--head-size);
    font-weight: 500;
    padding-bottom: 35px;
}
.vdo-slider .vdo-thumb{
    display: block;
    width: -webkit-fill-available;
    border-radius: 15px;
}
.vdo-testimonial .test-img-div{
    width: 40px;
    height: 40px;
    object-fit: cover;
}
.vdo-testimonial .vdo-author {
    display: flex;
    gap: 10px;
    align-items: center;
}
.vdo-testimonial .vdo-author img {
    width: 100%;
    margin-right: 10px;
    border-radius: 99px;
}
.vdo-testimonial .vdo-cnt {
    height: 460px;
    margin: 0px 10px;
    position: relative;
}
.vdo-testimonial .vdo-cnt iframe {
    border-radius: 15px;
}
.vdo-testimonial .vdo-author {
    margin-top: 15px;
}
.vdo-slider .author-name h6 {
    font-size: 18px;
    margin: 0;
    font-weight: 400;
}
.vdo-slider .author-name p{
    font-size: 13px;
    margin: 0;
}
.vdo-testimonial .slick-prev {
    position: absolute;
    top: -15%;
    right: 130px;
    background-color: var(--main-color);
    width: 42px;
    height: 42px;
    line-height: 41px;
    border: none;
    border-radius: 50%;
    font-size: 15px;
}
.vdo-testimonial .slick-prev i{
    color: #fff;
    rotate: 180deg;
}
.vdo-testimonial .slick-next {
    position: absolute;
    top: -15%;
    right: 75px;
    background: none;
    width: 40px;
    height: 40px;
    line-height: 39px;
    font-size: 15px;
    border: 1px solid var(--main-color);
    border-radius: 50%;
}
.vdo-testimonial .slick-next i{
    color: #000000;
}

/* ==============================blog-sec============================= */
.blog-sec{
    padding: 100px 0px;
    position: relative;
}
.blog-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
}
.blog-box{
    margin:0px 10px ;
}
.blog-cnt h5 {
    font-size: var(--head-size);
    font-weight: 600;
    margin-bottom: 50px;
}
.blog-cnt h5 span{
    color: var(--main-color);
}
.blog-cnt p {
    margin-bottom: 90px;
}
.blog-cnt{
    padding: 30px;
}
.blog-cnt a {
    border: 1px solid var(--main-color);
    padding: 9px 30px;
    border-radius: 20px;
}
.blog-box .blog-slide-cnt h5 {
    font-weight: 400;
    padding-top: 20px;
}
.blog-box .blog-slide-cnt p {
    font-size: 16px;
    padding: 5px 0 10px 0;
}
.blog-box .blog-slide-cnt a {
    border: 1px solid var(--main-color);
    padding: 9px 20px;
    border-radius: 200px;
    color: var(--main-color);
    display: flex;
    align-items: center;
    width: fit-content;
    gap: 2px;
}
.blog-sec .slick-prev {
    position: absolute;
    bottom: 10%;
    left: -48%;
    background-color: var(--main-color);
    width: 42px;
    height: 42px;
    line-height: 41px;
    border: none;
    border-radius: 50%;
    font-size: 15px;
}
.blog-sec .slick-prev i{
    color: #fff;
    rotate: 180deg;
}
.blog-sec .slick-next {
    position: absolute;
    bottom: 10%;
    left: -41%;
    background: none;
    width: 40px;
    height: 40px;
    line-height: 39px;
    font-size: 15px;
    border: 1px solid var(--main-color);
    border-radius: 50%;
}
.blog-sec .slick-next i{
    color: #000000;
}



/*= ==========================footer============================ */

footer {
    background: url(../images/footer_bg.png) rgb(20 20 20);
    padding-top: 100px;
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
}
footer form {
    position: relative;
    width: 65%;
}
footer form input{
    border: none;
    background: #333333;
    padding: 15px 25px;
    border-radius: 100px;
    width: 100%;
}
footer form button {
    background: linear-gradient(to right, var(--main-color), #ff0000);
    width: 100px;
    height: 40px;
    border: none;
    border-radius: 100px;
    color: #fff;
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
}
footer .quick-links p,footer .footer-courses p,footer .footer-social p{
    color: var(--main-color);
    font-weight: 500;
}
footer .footer-para {
    color: #fff;
    font-size: 18px;
    padding-top: 25px;
    font-weight: 500;
    margin-bottom: 8px;
}
footer ul li a{
    font-family:"Roboto", sans-serif ;
    color: #fff;
    font-size: 15px;
    font-weight: 300;
}
footer ul {
    line-height: 30px;
}
.bottom-footer {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    border-top: 0.1px solid #323232;
    padding: 25px;
}
.bottom-footer p{
    font-size: 14px;
    color: #fff;
    font-weight: 200;
}
.designed-by a{
    color: #f1b614;
}




/* About-page ===============================================================================================
=============================================================================================================
============================================================================================================= */

.banner .banner-cnt{
    background-image: url(../images/banner-bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
}
.banner .banner-cnt h2{
    color: #fff;
    font-weight: 600;
    overflow: hidden;
}
.banner .banner-cnt h2 span{
    display: block;
    animation: reveal 1.5s cubic-bezier(0.77, 0, 0.175, 1) 0s;
}
.banner .banner-cnt p{
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    overflow: hidden;
}
.banner .banner-cnt p span{
    display: block;
    animation: reveal 1.5s cubic-bezier(0.77, 0, 0.175, 1) 0s;
}

/* ====================about-cnt===== */

.about-full-cnt{
    padding: 100px 0;
}
.about-full-cnt h1 {
    font-size: 35px;
    margin-bottom: 45px;
}
.about-full-cnt h1 img{
    width: 25px;
}
.about-full-cnt .abt-counts-bg {
    background-image: url(../images/about-img.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 420px;
    display: flex;
    align-items: flex-end;
    border-radius: 20px;
    justify-content: center;
    padding: 20px;
}
.about-full-cnt .abt-counts-bg .abt-counts {
    display: flex;
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    align-items: center;
    justify-content: space-around;
    padding: 20px;
    border-radius: 10px;
}
.about-full-cnt .abt-counts-bg .counts{
    background: #0000;
}
.about-full-cnt .abt-counts-bg h4 {
    color: #fff;
    font-size: 40px;
    margin: 0;
    font-weight: 600;
}
.about-full-cnt .abt-counts-bg p{
    color: #fff;
    font-size: 15px;
    font-weight: 300;
    margin: 0;
}
.about-full-cnt .abt-cnts h5 {
    font-size: 25px;
    font-weight: 600;
}
.about-full-cnt .abt-cnts h5 span{
    color: var(--main-color);
}
.about-full-cnt .abt-cnts p{
font-weight: 400;
}
.about-full-cnt .abt-cnts{
    height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/* ============mission-vision=========== */
.mission-vision{
    padding: 100px 0;
    background: #fff;
}
.mission-vision .mv-top-head h3 {
    font-size: 30px;
    font-weight: 400;
    max-width: 500px;
}


.m-v-button a {
    background: linear-gradient(to right, var(--main-color), #ff0000);
    color: var(--secondary-color);
    padding: 7px 25px 7px 8px;
    border-radius: 50px;
    font-size: 15px;
    box-shadow: inset 0 5px 10px rgb(0 0 0 / 13%);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    position: relative;

    &:hover {
        gap: 0px;
        padding: 7px 40px 7px 0px;
    }
    &:after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent,rgba(255, 255, 255, 0.4),transparent);
        transition: 0.9s;
    }
    &:hover:after {
        left: 100%;
    }
    &:active{
        transform: scale(0.9);
        transition: 0.9s;
    }
}
.m-v-button {
    position: relative;
    margin-top: 30px;
    display: flex;
    justify-content: start;
}
.m-v-button a i {
    font-size: 12px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    background: var(--secondary-color);
    color: var(--main-color);
    transition: 0.4s;
}
.m-v-button a:hover i {
    transform: translateX(88px);
}
.mission-vision .our-story {
    background-image: url(../images/our-story-img.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 496px;
    display: flex;
    align-items: flex-start;
    border-radius: 20px;
    justify-content: flex-end;
    padding: 20px;
    flex-direction: column;
}
.mission-vision .our-story p{
    color: #fff;
    font-weight: 300;
}
.mission-vision .our-story h5{
    color: #fff;
    font-weight: 600;
}
.mandv{
    margin-top: 50px;
}
.mandv-box {
    background: linear-gradient(193deg, var(--main-color), #ff4e4e);
    padding: 30px;
    border-radius: 15px;
}
.mandv-box h6{
    color: #fff;
    font-size: 30px;
}
.mandv-box p{
    color: #fff;
    font-weight: 300;
}


/* ================================why-choose-us=============================*/

.why-choose-us{
    padding: 100px 0px;
}
.why-choose-us h6{
   font-size:var(--head-size);
   margin-bottom: 40px;
}
.why-choose-box{
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.why-choose-box .wc-box-img {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: linear-gradient(193deg, var(--main-color), #ff4e4e);
    border-radius: 50%;
    margin-bottom: 30px;
}
.why-choose-box .wc-box-img img{
    width: 30px;
}


/* =========================historybritco============================ */

.historybritco{
    padding: 50px 0px 100px 0;
}
.historybritco .history-img img{
    width: 100%;
    border-radius: 20px;
}
.historybritco h4 {
    font-size: 40px;
    margin-bottom: 25px;
}
.historybritco .history-cnts p {
    margin-bottom: 50px;
}
.history-cnts a{
    padding: 10px 20px;
    border: 1px solid var(--main-color);
    border-radius: 20px;
}



/* Iphone Course Images =====================================================================================
=============================================================================================================
============================================================================================================= */

.iphone-course{
    padding: 100px 0px;
}
.iphone-course-img{
    position: relative;
}
.iphone-course-cnt h4 {
    font-size: 40px;
    margin-bottom: 10px;
}
.iphone-course-cnt ul {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}
.iphone-course-cnt ul li img {
    width: 30px;
}
.iphone-course-cnt ul li {
    border: 2px solid var(--main-color);
    border-radius: 99px;
    padding: 5px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.iphone-course-cnt ul li span{
    color: var(--main-color);
    font-weight: 600;
}

.iphone-course-cnt h4 span{
    color: var(--main-color);
}
.iphone-course-img img {
    width: 100%;
    border-radius: 20px;
}
.iphone-course-img p {
    position: absolute;
    top: 0px;
    right: 0px;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    background-color: var(--main-color);
    color: #fff;
    padding: 10px 30px;
    margin: 0;
    border-radius: 40px;
    font-size: 18px;
}
.syllabus-col {
    border: 1px solid;
    border-radius: 30px;
    padding: 50px;
}
.iphone-syllabus-head h4{
    margin-bottom: 20px;
    font-size: 35px;
    color: var(--main-color);
}
.syllabus-col ul li {
    padding: 5px 0px;
    font-weight: 300;
}
.syllabus-col ul li img {
    background: #cb0000;
    padding: 3px;
    width: 25px;
    height: 25px;
    border-radius: 50px;
}
/* ==============whocanjoin================= */

.whocanjoin {
    padding: 100px 0px;
    background: #ffe9e9;
}
.who-can-cards {
    margin: auto;
    width: fit-content;
}
.who-can-cnts{
    height: 441px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.who-can-cnts h4 {
    font-size: 50px;
    max-width: 80%;
    margin-bottom: 20px;
}
.who-can-cnts h4 span{
    color: var(--main-color);
}
.who-can-cards .cards{
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 40px;
    border-radius: 15px;
    margin: 10px 0px;
    max-width: 450px;
}
.who-can-cards .cards-a{
    background-image: url(../images/cards-a.png);
}
.who-can-cards .cards-b{
    background-image: url(../images/cards-b.png);
}
.who-can-cards .cards-c{
    background-image: url(../images/cards-c.png);
}
.who-can-cards h6 {
    color: #fff;
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 10px;
}
.who-can-cards p{
    color: #fff;
    font-weight: 400;
    margin: 0;
}
.who-can-button a {
    background: linear-gradient(to right, var(--main-color), #ff0000);
    color: var(--secondary-color);
    padding: 7px 25px 7px 8px;
    border-radius: 50px;
    font-size: 15px;
    box-shadow: inset 0 5px 10px rgb(0 0 0 / 13%);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    position: relative;

    &:hover {
        gap: 0px;
        padding: 7px 45px 7px 0px;
    }
    &:active{
        transform: scale(0.9);
        transition: 0.9s;
    }
}
.who-can-button{
    position: relative;
    margin-top: 30px;
    display: flex;
    justify-content: start;
}
.who-can-button a i {
    font-size: 12px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    background: var(--secondary-color);
    color: var(--main-color);
    transition: 0.4s;
}
.who-can-button a:hover i {
    transform: translateX(88px);
}







.syllabus{
    padding: 100px 0px;
    position: relative;
}
.syllabus-head h4{
    max-width: 500px;
    font-size: var(--head-size);
    margin: auto;
    text-align: center;
    margin-bottom: 50px;
}
.syllabus .iphone-syllabus h6 {
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 20px;
    margin: 0;
}
.syllabus .iphone-syllabus {
    border: 1px solid #c30000;
    padding: 20px;
    border-radius: 20px;
    height: 400px;
    margin: 0 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.syllabus .iphone-syllabus i {
    border: 1px solid #c30000;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: #000000;
    border-radius: 50%;
    font-size: 12px;
}
.syllabus .iphone-syllabus .syllabus-icon {
    width: 50px;
    height: 50px;
    background: var(--main-color);
    border-radius: 50%;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.syllabus .iphone-syllabus img{
    width: 30px;
}


.syllabus .slick-prev {
    position: absolute;
    top: -20%;
    right: 150px;
    background-color: var(--main-color);
    width: 50px;
    height: 50px;
    line-height: 50px;
    border: none;
    border-radius: 50%;
}
.syllabus .slick-prev i{
    color: #fff;
    rotate: 180deg;
}
.syllabus .slick-next {
    position: absolute;
    top: -20%;
    right: 85px;
    background: none;
    width: 49px;
    height: 49px;
    line-height: 50px;
    border: 1px solid #000000;
    border-radius: 50%;
}
.syllabus .slick-next i{
    color: #000000;
}
.course-syllabus ul {
    padding-left: 18px;
}
.course-syllabus ul li{
    font-size: 15px;
    font-weight: 100;
    list-style: disc;
}



.footer-cta{
    padding: 100px 0px;
}
.cta-div {
    background-color: var(--main-color);
    background-image: url(../images/bg-img.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 350px;
    border-radius: 20px;
    padding: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.cta-div h4 {
    color: #fff;
    font-size: 35px;
    max-width: 700px;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
}
.cta-div p{
    color: #fff;
    max-width: 550px;
    margin-bottom: 5px;
    font-weight: 300;
    font-size: 18px;
}
.cta-div .bttns {
    margin-top: 25px;
    display: flex;
    gap: 19px;
    align-items: center;
}
.cta-div .bttns .enquire_btn{
    background-color: #fff;
    padding: 8px 20px;
    border-radius: 7px;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
}
.cta-div .bttns .enquire_btn i{
    font-size: 12px;
    margin-left: 3px;

}
.cta-div .bttns .knowmore{
    color: #fff;
    text-decoration: underline;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: 500;
}
.footer-cta .cta-img{
    position: absolute;
    bottom: 0;
    right: 0;
}
.footer-cta .cta-img img{
    border-radius: 20px;
}


/* Contact =====================================================================================
=============================================================================================================
============================================================================================================= */



.contact-sec{
    padding: 100px 0px
}
.contact-sec h2{
   font-size: var(--head-size);
   max-width: 600px;
   margin: auto;
}
.contact-sec .getin-sec p i{
    color: var(--main-color);
}
.form-floating input,.form-floating textarea{
    border-radius: 15px;
}
.contact-sec button{
    border-radius: 15px;
    background-color: var(--main-color);
    border: none;
    margin-top: 30px;

    &:hover{
        background-color: #e71f1f;
    }
}
.contact-sec iframe{
    border-radius: 30px;
}
.input-container .input-head {
    font-size: var(--head-size);
    font-weight: 500;
}
.input-container .input-head span{
    color: var(--main-color);
}
.contact-sec .getin-sec{
    margin-top: 50px;
    text-align: center;
}
.contact-sec .getin-sec p {
    padding: 8px 20px;
    border-radius: 100px;
    width: 100%;
}
.contact-sec .getin-sec i {
    font-size: 40px;
    color: var(--main-color);
    margin-bottom: 10px;
}
/* .contact-sec .getin-sec .socio-box{
    border: 2px solid #c30000;
    padding: 20px;
    border-radius: 20px;
} */
.contact-sec .getin-sec .socio-box h6{
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}


/* Gallery =====================================================================================
=============================================================================================================
============================================================================================================= */



.gallery-sec{
    padding: 100px 0px;
}
.gallery-sec .header {
    text-align: center;
    color: white;
    max-width: 1150px;
    margin: auto;
    margin-bottom: 35px;
}
.gallery-sec .header h1 {
    font-size: var(--head-size);
    margin-bottom: 10px;
    /* text-shadow: 2px 2px 4px rgba(0,0,0,0.3); */
    animation: fadeInDown 1s ease-out;
    color: #000;
    font-weight: 600;
}
.gallery-sec .header h1 span{
    color:var(--main-color);
}

.gallery-sec .header p {
    font-size: 1.2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.gallery-sec .filter-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: auto;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 0.6s both;
    border: 2px solid #ca0000;
    width: fit-content;
    margin-bottom: 50px;
    border-radius: 99px;
    padding: 10px 10px;
}
.gallery-sec .filter-btn {
    background: rgba(255,255,255,0.2);
    color: #4e4e4e;
    border: none;
    padding: 5px 15px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-sec .filter-btn:hover{
    color: #000000;
}
.gallery-sec .filter-btn.active {
    background: rgb(202 0 0);
    box-shadow: 0 8px 15px rgb(0 0 0 / 27%);
    color: #ffff;
}

.gallery-sec .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    animation: fadeIn 1s ease-out 0.9s both;
}

.gallery-sec .photo-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

}


.gallery-sec .photo-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-sec .photo-item:hover img {
    transform: scale(1.1);
}

.gallery-sec .photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-sec .photo-item:hover .photo-overlay {
    transform: translateY(0);
}

.gallery-sec .photo-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.gallery-sec .photo-description {
    font-size: 0.9rem;
    opacity: 0.9;
}

.gallery-sec .photo-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.9);
    color: #333;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Modal Styles */
.gallery-sec .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    animation: fadeIn 0.3s ease;
}

.gallery-sec .modal-content {
    position: relative;
    margin: auto;
    display: block;
    width: 80%;
    max-width: 800px;
    max-height: 80%;
    border-radius: 10px;
    animation: zoomIn 0.3s ease;
    object-fit: cover;
}
.gallery-sec .close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.gallery-sec .close:hover {
    color: #bbb;
}

.gallery-sec .modal-info {
    color: white;
    text-align: center;
    padding: 20px;
    background: rgba(0,0,0,0.5);
    margin-top: -5px;
    border-radius: 0 0 10px 10px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes zoomIn {
    from { transform: scale(0.3); }
    to { transform: scale(1); }
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-sec .header h1 {
        font-size: 2rem;
    }
    
    .gallery-sec .gallery {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
    }
    .gallery-sec .photo-item img {
        height: 150px;
    }
    .filter-buttons {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .modal-content {
        width: 95%;
    }
}


/* Blog =====================================================================================
=============================================================================================================
============================================================================================================= */


.blogs-sec{
    padding: 100px 0px;
}
.blog-card .img-box img {
    width: 100%;
    border-radius: 20px;
}
.blogs-sec .publish-date {
    color: #707070;
    font-size: 13px;
    font-weight: 400;
    margin: 5px 0 10px 0;
}
.blogs-sec h6 {
    text-align: center;
    font-size: 35px;
    margin-bottom: 50px;
}
.blogs-sec .cnt-box{
    padding: 10px;
}
.blogs-sec .cnt-box h5{
    font-weight: 600;
    font-size: 22px;
}
.readmore-btn{
    margin-top: 20px;
}
.readmore-btn a {
    padding: 8px 20px;
    background-color: var(--main-color);
    color: #fff;
    border-radius: 99px;
    display: flex;
    width: fit-content;
}



/* ===================blog-inner===================== */

.inner-blog-sec{
    padding: 100px 0px;
}
.inner-blog-head p{
    text-align: center;
    margin-top: 15px;
}

.inner-blog-head h1{
    max-width: 750px;
    text-align: center;
    margin: auto;
}
.inner-blog-img{
    display: flex;
    height: 600px;
    width: 100%;
    margin: auto;
    margin-top: 60px;
    margin-bottom: 50px;
}
.inner-blog-img img{
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.recent-blog-sec{
    padding-left: 33px;
    border-left: 1px solid #e0e0e0;
    height: 100%;
}

.recent-blog-sec h3{
    margin-bottom: 30px;
}

.inner-blog-sec .blog-cnts h4{
    font-weight: 600;
}

.recent-blogs a {
    display: flex;
    margin-top: 20px;
}
.recent-blogs a h5{
    font-size: 30px;
    margin-top: 60px;
}

.recent-blogs a img{
    width: 180px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
}
.recent-blogs a .recent-blog-cnt p{
    font-size: 13px;
    margin: 0;    
}
.recent-blogs a .blog-date{
    font-size: 10px;
    margin: 0;
    color: #707070;
    font-weight: 400;
}
.recent-blogs a h6{
    font-size: 15px;
    font-weight: 600;
}
.recent-blogs a .recent-blog-cnt {
    padding: 5px;
    padding-left: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.syllabus .mac-syllabus {
    height: 300px;
}
