* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Nunito Sans", sans-serif;
}

/*------ global css start -----*/
:root {
    --bg-gradient: linear-gradient(to right, #b61c1c, #c53939);
    --white: #ffffff;
    --yellow: #f29120;
    --red: #e82b2b;
    --grey: #f5f5f5;
    --blue: #143250;
    --dark-grey: #333333;
    --shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--blue);
    line-height: normal;
    margin: 0;
    padding: 0;
}

@media (min-width:768px) {
    h1 {
        font-size: 40px;
    }
}

h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--blue);
    line-height: normal;
    margin: 0;
    padding: 0;
}

@media (min-width:768px) {
    h2 {
        font-size: 34px;
    }
}

p {
    font-size: 16px;
    line-height: normal;
    font-weight: normal;
    font-style: normal;
    color: var(--dark-grey);
}

.button {
    background: var(--bg-gradient);
    padding: 14px 32px;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--white);
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    line-height: normal;
    letter-spacing: .5px;
    display: inline-block;
}

.button:hover {
    color: var(--white);
    background: var(--blue);
}

ul li {
    font-size: 16px;
    line-height: 28px;
    font-weight: normal;
    font-style: normal;
    color: var(--dark-grey);
    list-style-position: inside;
}

/*------ global css end --------*/
/*----- top-nav style start ------*/
.top-nav {
    background: var(--bg-gradient);
}

/*------ top-nav style end ------*/

/*---- nav style start -----*/
.categories_menu {
    position: relative;
}

.categories_menu .categories_menu_inner {
    position: absolute;
    border-left: 0;
    border-right: 0;
    display: none;
}

.categories_menu .categories_title h2 {
    padding: 12px 14px 12px;
}

.categories_menu .categories_title h2 i.arrow-down {
    float: right;
    margin-right: 15px;
    color: #fff;
    text-align: center;
    font-size: 14px;
    margin-top: 4px;
}

/* 04. categories area css here */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .categories_menu {
        position: relative;
    }
}

@media only screen and (max-width: 767px) {
    .categories_menu {
        margin-bottom: 45px;
        position: relative;
    }
}

.categories_title {
    background: var(--blue);
    cursor: pointer;
    border-radius: 10px;
}

.categories_title h2 {
    font-size: 15px;
    font-weight: 600;
    /* line-height: 26px; */
    color: #ffffff;
    cursor: pointer;
    /* padding: 12px 0 12px 22px; */
    margin-bottom: 0px;
    /* display: block; */
}

.categories_title h2 i {
    font-size: 14px;
    margin-right: 10px;
}

.categories_menu_inner {
    padding: 7px 0 7px;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    background: #fff;
    width: 250px;
    top: 100%;
    z-index: 9;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .categories_menu_inner {
        display: none;
        position: absolute;
        width: 100%;
        top: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .categories_menu_inner {
        display: none;
        position: absolute;
        width: 100%;
        top: 100%;
    }
}

.categories_menu_inner>ul>li {
    position: relative;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    color: #333;
}

.categories_menu_inner>ul>li>ul.categories_mega_menu ul li a {
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.categories_menu_inner>ul>li {
    line-height: 42px;
    padding: 0 10px;
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    border-bottom: 1px solid var(--red);
}

.categories_menu_inner>ul>li:hover {
    padding-left: 20px;
}

.categories_menu_inner>ul>li>ul.categories_mega_menu ul li a:hover {
    padding-left: 10px;
}

.categories_menu_inner>ul>li a {
    color: #333;
    text-decoration: none;
}

.categories_menu_inner>ul>li img {
    width: 18px;
    margin-right: 10px;
}

.categories_menu_inner>ul>li.dropdown_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.categories_menu_inner>ul>li.dropdown_list .link-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.categories_menu_inner>ul>li.dropdown_list .link-area>a {
    width: auto;
    height: auto;
    line-height: 30px;
    text-align: center;
    text-decoration: none;
}

.categories_menu_inner>ul>li>a i {
    padding-right: 10px;
}

.categories_menu_inner>ul>li>ul.categories_mega_menu {
    position: absolute;
    left: 110%;
    width: 480px;
    padding: 16px 15px 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    z-index: 9;
    background: #fff;
    -webkit-box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.15);
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.15);
}

@media only screen and (max-width: 767px) {
    .categories_menu_inner>ul>li>ul.categories_mega_menu {
        left: 0;
        width: 100%;
        top: 100%;
        max-height: 250px;
        overflow: auto;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .categories_menu_inner>ul>li>ul.categories_mega_menu {
        left: 0;
        top: 100%;
        max-height: 250px;
        overflow: auto;
    }
}

.categories_menu_inner>ul>li>ul.categories_mega_menu>li {
    width: 50%;
    float: left;
    padding: 0px 5px 20px 5px;
}

@media only screen and (max-width: 767px) {
    .categories_menu_inner>ul>li>ul.categories_mega_menu>li {
        width: 100%;
    }
}

.categories_menu_inner>ul>li>ul.categories_mega_menu>li>a {
    display: block;
    line-height: 30px;
    padding: 6px 8px;
    font-size: 14px;
    font-weight: 600;
    color: #444;
    text-decoration: none;
}

.categories_menu_inner>ul>li>ul.categories_mega_menu>li>a:hover {
    color: #7ecc13;
}

.categories_menu_inner>ul>li ul.categories_mega_menu.column_1 {
    width: 200px;
    padding: 0;

}

.categories_menu_inner>ul>li ul.categories_mega_menu.column_1 li {
    width: 100%;
    padding: 0;
    list-style: none;
    border-bottom: 1px solid var(--red);
}

.categories_menu_inner>ul>li ul.categories_mega_menu.column_1 li:last-child a {
    border-bottom: 0;
}

.categories_menu_inner ul li ul.categories_mega_menu.open {
    opacity: 1;
    visibility: visible;
    left: 100%;
}

@media only screen and (max-width: 767px) {
    .categories_menu_inner ul li ul.categories_mega_menu.open {
        left: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .categories_menu_inner ul li ul.categories_mega_menu.open {
        left: 0;
    }
}

.categorie_sub_menu ul li a {
    font-size: 14px;
    font-weight: 400;
    color: #646464;
    text-transform: capitalize;
    line-height: 28px;
    display: block;
}

.categorie_sub_menu ul li a:hover {
    color: #ff5500;
}

/*home two categorie css here*/
@media only screen and (max-width: 767px) {
    .categories_menu {
        margin-bottom: 26px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .categories_menu_inner {
        z-index: 99;
    }
}

@media only screen and (max-width: 767px) {
    .categories_menu_inner {
        z-index: 99;
    }
}

@media (min-width:992px) {
    nav .nav-item {
        padding: 0 8px;
    }
}

nav .nav-item .nav-link {
    font-weight: 700;
    color: var(--dark-grey);
}

.navFixed {
    position: fixed;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 99;
    top: 0;
    border-bottom: 1px solid var(--grey);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

/*---- nav style end ----*/

/*------- banner style start --------*/
.slidebanner .swiper-slide {
    min-height: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slidebanner .swiper-slide .slide-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    width: 100%;
}

@media (min-width:768px) {
    .slidebanner .swiper-slide .slide-content {
        width: 70%;
    }
}

.slidebanner .swiper-slide .slide-content span {
    font-size: 14px;
    font-weight: bold;
    font-style: normal;
    line-height: normal;
}

/* Base styles for the slide content */
.slide-content {
    opacity: 1;
    transition: opacity 2s ease;
}

/* Fade animations */
.fade-left {
    transform: translateX(-300px);
    opacity: 0;
    transition: transform 2s ease, opacity 2s ease;
}

.fade-right {
    transform: translateX(300px);
    opacity: 0;
    transition: transform 2s ease, opacity 2s ease;
}

.fade-top {
    transform: translateY(-300px);
    opacity: 0;
    transition: transform 2s ease, opacity 2s ease;
}

/* Active state styles */
.swiper-slide-active .fade-left,
.swiper-slide-active .fade-right,
.swiper-slide-active .fade-top {
    opacity: 1;
    transform: translateY(0);
}

/* Specific styles for fade-left and fade-right */
.swiper-slide-active .fade-left {
    transform: translateX(0);
}

.swiper-slide-active .fade-right {
    transform: translateX(0);
}

.swiper-slide-active .fade-top {
    transform: translateY(0);
}

.slidebanner .swiper-pagination-bullet {
    width: 24px !important;
    border-radius: 10px !important;
    height: 5px !important;
    background: var(--white) !important;
    opacity: 1 !important;
}

.slidebanner .swiper-pagination-bullet-active {
    background: var(--yellow) !important;
}

/*------- banner style end -------*/

.courses-section {
    /* background: linear-gradient(180deg, #fdfbfb 0%, #ebedee 100%); */
    background: #f9f3eb;
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #2c3e50;
    position: relative;
}

.section-heading h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background: #3498db;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
}

.section-heading p {
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 24px auto auto auto;
}

.course-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.card-img-wrapper {
    position: relative;
}

.course-img {
    height: 220px;
    object-fit: cover;
    width: 100%;
}

.course-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(52, 152, 219, 0.9);
    padding: 6px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    border-radius: 30px;
}

.card-body h5 {
    font-weight: 700;
    color: #2c3e50;
}

.course-description {
    font-size: 0.95rem;
    color: #6c757d;
    min-height: 60px;
}

.course-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #27ae60;
}

.course-old-price {
    font-size: 1rem;
    color: #bdc3c7;
    text-decoration: line-through;
    margin-left: 10px;
}

.view-more-btn {
    background: #3498db;
    color: white;
    border-radius: 30px;
    transition: background 0.3s ease;
}

.view-more-btn:hover {
    background: #2980b9;
}

.partner-section {
    background: #f9f3eb;
}

.swiper {
    padding-top: 10px;
    padding-bottom: 40px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-card {
    background: white;
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    max-width: 100%;
    text-align: center;
}

.partner-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.partner-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.partner-card:hover img {
    transform: scale(1.1);
}

/*------ testimonial sec start ------*/
.testimonial-sec {
    background: linear-gradient(180deg, #fdfbfb 0%, #ebedee 100%);
}

.testimonial {
    width: 100%;
    max-width: 600px;
    margin: auto;
}

.testimonial .testimonial-content {
    font-size: 16px;
    margin-bottom: 120px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.testimonial .testimonial-content p {
    margin-bottom: 0;
    text-align: center;
}

.testimonial .testimonial-content .user-profile {
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
    align-items: center;
}

.testimonial .testimonial-content .user-profile strong {
    font-size: 18px;
    font-weight: 600;
}

.testimonial .testimonial-content .user-profile span {
    font-size: 14px;
}

.testimonial .client-name {
    font-weight: bold;
    margin-top: 10px;
}

.testimonial .swiper-pagination-bullet {
    width: 80px;
    height: 80px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    margin: 5px;
}
/*------ testimonial sec end ------*/

/*----- single product sec start ------*/
.product-sec .item {
    border-radius: 15px;
    text-decoration: none;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    height: 100%;
}

.product-sec .item .item-body {
    padding: 1.5rem;
}

.product-sec .item img {
    border-radius: 15px 15px 0 0;
    aspect-ratio: 1;
    object-fit: cover;
}

.product-sec .item .item-body p {
    font-weight: 700;
    margin: 1rem 0 0 0;
    text-align: center;
}

/*----- single product sec end -----*/

/*====== product-details ==========*/
.product-details .item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: start;
}

.product-details .item .item_a {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.product-details .item_a span,
.product-details .item_a strong {
    font-size: 24px;
}

@media (max-width:768px) {

    .product-details .item_a span,
    .product-details .item_a strong {
        font-size: 18px;
    }
}

.product-details .item_a span {
    color: var(--black-grey);
}

.product-details .item_a strong {
    color: var(--black);
    font-weight: 500;
}

.product-details .item_a button {
    font-size: 12px;
    padding: 8px 24px;
    border: 1px solid var(--orange);
    border-radius: 20px;
    font-weight: 400;
    background: var(--orange);
    color: var(--white);
    letter-spacing: 1px;
}

@media (max-width:768px) {
    .product-details .item_a button {
        font-size: 12px;
        padding: 8px;
    }
}

.product-details .item .button {
    border: none;
}

.product-details .item .whatsapp {
    background: #25d366;
    color: var(--white);
}

.product-details .item .whatsapp:hover {
    background: var(--white);
    color: #25d366;
    border: 1px solid #25d366;
}

#fixedBtn {
    position: fixed;
    right: 35px;
    bottom: 20px;
    background: var(--yellow);
    width: 50px;
    height: 50px;
    border-radius: 50px;
    z-index: 999;
    border: none;
    font-size: 30px;
    color: var(--white);
}

.navArrow {
    gap: 14px;
}

.navArrow a {
    color: var(--dark-grey);
    font-size: 14px;
}

/*-------- product details end -------*/

/*------ bredcrumb start -------*/
.page-breadcrumb ol li a {
    color: var(--dark-grey);
    text-decoration: none;
    font-weight: 600;
}

/*----- bredcrumb end -------*/

/*----- footer style start ------*/
footer {
    background: var(--grey);
}

footer .item h4 {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 700;
}

footer .item .link-list {
    margin: 0;
    padding: 0;
}

footer .item .link-list li {
    list-style: none;
    margin-bottom: 4px;
}

footer .item .link-list li a {
    color: var(--dark-grey);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

footer .item .social-links {
    display: flex;
    gap: 8px;
}

footer .item .social-links li {
    width: 35px;
    height: 35px;
    border-radius: 35px;
    display: inline-block;
    border: 1px solid var(--dark-grey);
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .item .social-links li:hover {
    background: var(--bg-gradient);
    cursor: pointer;
}

footer .item .social-links li:hover a {
    color: var(--white);
}

/*----- footer style end ------*/

.feature-box {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
    height: 100%;
}

.feature-box h4 {
    font-weight: bold;
    margin-top: 15px;
    color: #333;
}

.feature-box p {
    font-size: 14px;
    color: #666;
}

.feature-section {
    background-color: #f9f3eb;
}

.brand-section {
    background: linear-gradient(180deg, #fdfbfb 0%, #ebedee 100%);
}

.brand-title {
    color: #2c3e50;
    font-weight: bold;
    margin-bottom: 20px;
}

.check-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.check-item i {
    color: #e74c3c;
    margin-right: 10px;
}

.view-more-btn {
    background-color: #c0392b;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    margin-top: 10px;
}

.admissions-banner {
    background-color: #f39c12;
    color: white;
    text-align: center;
    font-weight: bold;
}

.placements-banner {
    background-color: #27ae60;
    color: white;
    text-align: center;
    font-style: italic;
    font-weight: bold;
}

.stats-section {
    /* background-color: #e74c3c; */
    background: #f9f3eb;
    color: var(--dark-grey);
}

.stat-item {
    text-align: center;
    font-size: 14px;
}

.stat-item i {
    font-size: 24px;
    margin-bottom: 5px;
}

.stat-item .number {
    font-weight: bold;
    font-size: 18px;
}

.register-btn {
    background-color: #e67e22;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
}

.language-bubble {
    background-color: white;
    border-radius: 10px;
    padding: 5px 10px;
    margin: 5px;
    display: inline-block;
    border: 1px solid #ddd;
}

.feature-image {
    height: 120px;
    margin: 0 auto;
    display: block;
}
.plant-image {
    max-width: 100%;
}
.rs-features {
    position: relative;
    margin-top: -245px;
    z-index: 94;
  }
  .rs-features .features-wrap {
    border-radius: 5px 5px 5px 5px;
    background: var(--bg-gradient);
    padding: 25px 40px 25px;
    display: flex;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
  }
  .rs-features .features-wrap .icon-part img {
    width: 50px;
    margin: 0 35px 8px 0;
  }
  .rs-features .features-wrap .content-part .title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
  }
  .rs-features .features-wrap .content-part .title .watermark {
    color: #ffffff;
  }
  .rs-features .features-wrap .content-part .dese {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
  }
  .rs-features .features-wrap:hover {
    transform: translateY(-10px);
  }
  
  /* ------------------------------------
    06. Breadcrumbs Section CSS
---------------------------------------*/
.rs-breadcrumbs {
  position: relative;
}
.rs-breadcrumbs .breadcrumbs-img img {
  width: 100%;
}
.rs-breadcrumbs .breadcrumbs-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
.rs-breadcrumbs .breadcrumbs-text .page-title {
  font-size: 38px;
  margin-bottom: 10px;
  color: #0c8b51;
}
.rs-breadcrumbs .breadcrumbs-text ul {
  padding: 0;
}
.rs-breadcrumbs .breadcrumbs-text ul li {
  color: #505050;
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
}
.rs-breadcrumbs .breadcrumbs-text ul li a {
  position: relative;
  padding-right: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #505050;
}
.rs-breadcrumbs .breadcrumbs-text ul li a:before,
.rs-breadcrumbs .breadcrumbs-text ul li a:after {
  background-color: #505050;
  content: "";
  height: 15px;
  width: 2px;
  position: absolute;
  right: 7px;
  top: 2px;
  transform: rotate(26deg);
}
.rs-breadcrumbs .breadcrumbs-text ul li a:before {
  right: 13px;
}
.rs-breadcrumbs .breadcrumbs-text ul li a:hover {
  color: #0c8b51;
}
.rs-breadcrumbs .breadcrumbs-text.white-color .page-title {
  color: #ffffff;
}
.rs-breadcrumbs .breadcrumbs-text.white-color ul li {
  color: #ffffff;
}
.rs-breadcrumbs .breadcrumbs-text.white-color ul li a {
  color: #ffffff;
}
.rs-breadcrumbs .breadcrumbs-text.white-color ul li a:before,
.rs-breadcrumbs .breadcrumbs-text.white-color ul li a:after {
  background-color: #ffffff;
}
.rs-breadcrumbs .breadcrumbs-text.white-color ul li a:before {
  right: 13px;
}
.rs-breadcrumbs .breadcrumbs-text.white-color ul li a:hover {
  color: #0c8b51;
}
.rs-breadcrumbs .breadcrumbs-text.padding {
  padding-top: 100px;
}
.breadcrumbs-overlay:after {
  content: '';
  position: absolute;
  background-color: rgba(17, 17, 17, 0.8);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.breadcrumbs1 {
  background-image: url(assets/images/breadcrumbs/1.jpg);
  background-size: cover;
  background-position: center;
  background-position: center top;
}
  