/********** Template CSS **********/
:root {
    --primary: #60BB46;
    --secondary: #757575;
    --light: #F3F6F8;
    --dark: #0C2B4B;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 80px
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
    position: relative;
    padding-bottom: 15px; /* adjust if needed */
    color: #212529;
    transition: color 0.3s ease;
    text-align: center;
    position: relative;
}
.navbar .navbar-nav .nav-link::after{
    content: '';
    position: absolute;
    width: 0%;
    height: 5px;
    background-color: var(--primary);
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
    border-radius: 5px 5px 0 0;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}
.navbar .navbar-nav .nav-link:hover::after,
.navbar .navbar-nav .nav-link.active::after {
    width: 100px;
}
@media (min-width : 1200px){
    .navbar .navbar-nav .nav-link:hover::after,
    .navbar .navbar-nav .nav-link.active::after {
        width: 100%;
    }
}
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 0, 0, .75);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .75), rgba(0, 0, 0, .75)), url(../img/common/short-banner-image.png) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/*** Facts ***/
.facts {
    position: relative;
    margin-top: -120px;
    z-index: 1;
}
@media (min-width: 991.98px) {
    .facts {
        margin-top: -75px;
    }
}


/*** Courses ***/
.courses {
    min-height: 100vh;
    background: linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, .9)), url(../img/background-banner-image\ \(1\).png) center center no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.courses-item .courses-overlay {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.courses-item:hover .courses-overlay {
    height: 100%;
    opacity: 1;
}


/*** Team ***/
.team-items {
    margin: -.75rem;
}

.team-item {
    padding: .75rem;
}

.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
    background: var(--primary);
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .75);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-social {
    height: 100%;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    height: 40px;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--primary);
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
}

.testimonial-carousel .owl-item img {
    width: 150px;
    height: 150px;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--light);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    background: #092139;
}

.copyright a {
    color: var(--primary);
}

.copyright a:hover {
    color: var(--light);
}

.banner{
    height: 90dvh;
    /* background-image: url(../img/Adobe\ Express\ -\ file\ \(1\).jpg); */
    background-repeat: no-repeat;
    background-color: #1D3557;
    background-blend-mode: overlay;
    border-radius: 0 0 60px 60px;
}
.banner h2{
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    color: #60BB46;
    text-align: left;
}
.banner h1{
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: left;
}
@media (min-width:1200px){
    .banner h1{
        font-size: 4rem;
    }
}
.banner h1 span{
    background-color: #60BB46;
    text-align: left;
}
.banner .btn{
    border-radius: 6px;
    padding: 10px 30px;
    margin: 40px 0 10px;
}
@media (min-width:1200px){
    .banner .btn{
        margin : 50px 0 25px;
    }
}
.banner p{
    width: 50%;
    font-size: 1rem;
    text-align: left;
}
.banner-user--img{
    height: 50px;
}
.banner-user--img ~ .testimonial-wrapper{
    margin-left: 100px;
}
@media (min-width : 1200px){
    .banner-user--img ~ .testimonial-wrapper{
        margin-left: 0px;
    }
}
.banner-user--img img{
    width: 50px !important;
    height: 50px !important;
}
.banner-user--img img:not(:first-child){
    margin-left: 25px;
    z-index: -1;
}
.banner-user--img img:last-child{
    margin-left: 50px;
    z-index: -2;
}
@media (min-width : 1200px){
    .banner-user--img img:not(:first-child){
        margin-left: -20px;
    }
}
.banner .banner-img{
    padding-top: 50px;
}
.banner .banner-img--main{
    width: 60%;
    border-radius: 10px;
   margin-bottom: 40px;
  
}
.banner .banner-img--sub{
    position: absolute;
    width: 40%;
    bottom: -2%;
    /* left: 0; */
    right: 200px;
    border-radius: 10px;
}
.testimonial-wrapper {
    display: inline;
}

.testimonial-text {
    display: inline;
}

.testimonial-text.collapsed {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
    display: inline-block;
    vertical-align: middle;
}

.testimonial-text.expanded {
    white-space: normal;
    display: inline;
    max-width: none;
}

.view-more-btn {
    font-weight: 500;
    vertical-align: middle;
    white-space: nowrap;
}
  .lightbox .lb-close {
    top: 10px !important;
    bottom: auto !important;
    right: 10px !important;
    position: absolute !important;
  }
  .btn-social {
    width: 40px;
    height: 40px;
    font-size: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.blog-card {
    /* height: 400px; */
    position: relative;
   border-radius: 16px !important;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #dadada !important;
}

.blog-card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover img {
    transform: scale(1.05);
}

.blog-info {
    /* position: absolute; */
    bottom: 0;
    left: 0;
    right: 0;
    /* background: linear-gradient(to top, rgba(15, 15, 15, 0.85), rgba(0, 0, 0, 0)); */
    color: #fff;
    padding: 20px;
}
.blog-info h1{
    font-size: 1.25rem;
    font-weight: 600;
    color: #000 !important;
}
.blog-info h5{
    font-size: 1rem;
    font-weight: 400;
    color: #212529 !important;
}

.overview .card{
    border: none;
    box-shadow: 0 2px 2px #00000020, 0 -2px 2px #00000020;
    border-bottom: 2px solid transparent;
    transition: all ease-in-out 0.5s;
}
.overview .card:hover{
    border-bottom-color: #60BB46;
    transition: all ease-in-out 0.5s;
}
.why-course ul{
    list-style-type: none;
}
.why-course ul li{
    height: 50px;
    width: 100% !important;
}
@media (min-width : 1200px){
    .why-course ul li{
        height: 50px;
        width: 50% !important;
    }
}
.have-project{
    background-color: #60BB46;
    padding: 30px 0;
    position: relative;
    border-radius: 20px;
    margin-bottom: -100px;
    z-index: 99;
}
.have-project p{
    color: #fff;
    font-weight: 500;
    width: 85%;
}
.have-project__content{
    padding: 20px;
}
.have-project__content h4{
    text-align: center;
}
.have-project__content p{
    text-align: center;
    width: 100%;
}
.have-project__content a{
    width: 100%;
}
@media (min-width:1200px){
    .have-project__content{
        padding: 0px;
    }
    .have-project__content h4{
        text-align: left;
    }
    .have-project__content p{
        text-align: left;
    }
    .have-project__content a{
        width: 200px;
        margin-right: 30px;
    }
}
.have-project img{
    width: 120px;
}
.have-project h4{
    color: #fff;
    font-weight: 600;
}
.have-project::before {
    content: "";
    border-radius: 20px;
    width: 100%;
    height: 100%;
    position: absolute;
    background: url(../img/gpt9.svg);
    mix-blend-mode: overlay;
    top: 0;
    background-size: cover;
    opacity: 0.3;
}
.course-feature .team-item{
    transition: all ease-in-out 0.5s;
}
.course-feature .team-item:hover{
    transform: translateY(-20px) !important;
    transition: all ease-in-out 0.5s;
}
.course-feature .team-item:hover::after{
    background-color: transparent !important;
}
.blog--tab-section{
    background-color: #fff;
    box-shadow: 0 2px 2px #00000020, 0 -2px 2px #00000020;
    width: 85%;
    /* padding: 20px; */
    border-radius: 10px;
    margin: -45px auto 0;
    z-index: 9 !important;
    position: relative;
    padding-left: 20px;
}
.blog--tab-section .nav{
    gap: 20px;
 }
.blog--tab-section .nav li{ 
    padding: 15px 0px;
    position: relative;
    min-width: 40px;
    text-align: center;
}
.blog--tab-section .nav li.active::after{
    width: 100%;
} 
.blog--tab-section .nav li::after{
    content: '';
    height: 4px;
    width: 0;
    position: absolute;
    bottom: 0;
    background-color: #60BB46;
    left: 50%;
    transform: translateX(-50%);
    transition: all ease-in-out 0.5s;
} 
.blog--tab-section .nav li:hover::after{ 
    width: 100%;
    transition: all ease-in-out 0.5s;
}
.blog--tab-section .nav li a{
    color: #212529;
}
.blog--detail-card .blog-img-wrapper{
    height: 400px;
}
.blog--detail-card:hover img{
    transform: scale(1) !important;
}
.blog--detail-card .blog-img-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dropcap {
  height: 64px;
  line-height: 64px;
  width: 64px;
  font-size: 42px;
  text-align: center;
  float: left;
  color: #009686;
  padding: 0 10px;
  margin-right: 10px; }
.panel {
  color: #555;
  background: #FFF;
  margin-bottom: 30px;
  box-shadow: 0 2px 2px #00000015, 0 -2px 2px #00000010; 
  border-radius: 10px;
  width: 85%;
  margin: 0 auto;
  padding: 10px;
}
.panel-head {
  display: table;
  width: 100%;
  margin: 0;
  color: #777;
  padding: 20px 25px 15px 25px;
  border-bottom: 1px solid #EEE; }

.panel-title {
  display: table-cell;
  vertical-align: middle;
  text-align: left;
  font-size: 18px;
  font-family: "Dosis", "Poppins", sans-serif;
  font-weight: 600;
  margin-bottom: 0; }

.panel-head-icon {
  font-size: 20px;
  padding: 0 10px 0 0;
  display: table-cell;
  vertical-align: middle; }

.panel-action {
  display: table-cell;
  vertical-align: middle;
  text-align: right;
  font-size: 18px; }

.panel-title-text {
  display: table-cell;
  vertical-align: middle; }

.panel-body {
  padding: 25px; }

.panel-footer {
  border-top: 1px solid #DDD;
  padding: 20px 25px; }

.panel-primary {
  border: 0; }
  .panel-primary .panel-head {
    color: #FFF;
    background-color: #009686; }

.panel-success {
  border: 0; }
  .panel-success .panel-head {
    color: #FFF;
    background-color: #0bc36e; }

.panel-warning {
  border: 0; }
  .panel-warning .panel-head {
    color: #FFF;
    background-color: #fec107; }

.panel-danger {
  border: 0; }
  .panel-danger .panel-head {
    color: #FFF;
    background-color: #fb9678; }

.panel-secondary {
  border: 0; }
  .panel-secondary .panel-head {
    color: #FFF;
    background-color: #cd0fd8; }

.panel-info {
  border: 0; }
  .panel-info .panel-head {
    color: #FFF;
    background-color: #03a9f3; }

.panel-dark {
  border: 0; }
  .panel-dark .panel-head {
    color: #FFF;
    background-color: #555; }




  .theme-accordion-container {
  width: 100%;
  text-align: left; }

.theme-accordion {
  background: #FFF;
  border-bottom: 1px solid #f4f4f4; }
  .theme-accordion:nth-last-child(1) {
    border: 0; }

.theme-accordion-hdr {
  position: relative;
  padding: 15px;
  font-size: 16px;
  color: #333;
  cursor: pointer; }
  .theme-accordion-hdr h4 {
    font-size: 18px;
    color: #005D53;
    margin: 0; 
    width: 90%;
}
    .theme-accordion-hdr h4 i {
      width: 24px;
      height: 24px;
      line-height: 24px;
      color: #FFF;
      text-align: center;
      margin: 0 10px 0 0;
      background: #60BB46;
      border-radius: 2px; }

.theme-accordion-control {
  position: absolute;
  top: 15px;
  right: 15px; }
  .theme-accordion-control i {
    font-size: 24px;
    color: #60BB46; }

.theme-accordion-bdy {
  display: none;
  width: 100%;
  padding: 15px;
  border-top: 1px solid #FAFAFA;
 }


/* Arrow (triangle) pointing to the parent */
.nav-item.dropdown .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 20px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #f1f6fc;
}

/* Dropdown item style */
.dropdown-menu .dropdown-item {
    padding: 10px 20px;
    transition: background-color 0.3s ease;
    color: #333;
    white-space: nowrap;
}

/* Hover effect */
.dropdown-menu .dropdown-item:hover {
    background-color: #60BB46;
    color: white;
}

  .about-us--section .key-feature i{
    font-size: 2rem;
    color: #60BB46;
  }
  .about-us--section .key-feature h2{
    font-size: 1rem;
    font-weight: 600;
  }
  .about-us--section .key-feature p{
    font-size: 0.875rem;
    font-weight: 400;
  }
  .why-ott{
    background-color: #60BB4620;
  }
  
  .why-ott .wow .btn-square{
    border-radius: 50%;
    color: #fff;
  }

  .who-we .team-item{
      box-shadow: 0 2px 2px #00000020, 0 -2px 2px #00000005;
      border-radius: 10px;
    }
    .who-we .team-item:hover::after{
        background-color: #fff;
    }
    .who-we .team-item h2{
        font-size: 1.25rem;
    }
    .who-we .team-item p{
        font-size: 0.875rem;
    }
  .who-we .team-item__thumbnail{
      background-color: #fff;
      height: 100px;
}
.who-we .team-item__thumbnail i{
    font-size: 2.5rem;
}
.we-offer .key-feature{
    background-color: #60BB4620;
    padding: 20px;
}
.we-offer .key-feature i{
    font-size: 2.5rem;
}
.we-offer .key-feature h2{
    font-size: 1rem;
}
.we-offer .key-feature p{
    font-size: 0.875rem;
}
    .info-box {
      position: fixed;
      bottom: -40px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #6EC1E4;
      padding: 20px 30px;
      color: white;
      border-radius: 10px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .info-box i {
      font-size: 28px;
    }
ul {
    list-style-type: none; /* Default dot */
    
}

li {
    margin-bottom: 10px; /* Adjust the space between items */
    color: #000;
}
.contact-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  padding: 60px 25px;
  flex-wrap: wrap;
}

.contact-item {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  max-width: 305px;
  position: relative;
}


.contact-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 1px;
  background-color: #e5e7eb;
}

.icon-container {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background-color: #f0f4ff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon {
  font-size: 26px;
  color: #60BB46; /* Rose-600 */
}

.info h3 {
  font-size: 18px;
  font-weight: 700;
  color: #002e4d; /* Dark Blue */
  margin-bottom: 8px;
}

.info p {
  font-size: 15px;
  color: #003b5c;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-item {
    flex: 1 1 50%;
    max-width: 100%;
    padding: 20px 10px;
  }

  .contact-item:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
  }

  .contact-item {
    max-width: 100%;
    border-bottom: 1px solid #e5e7eb;
    padding: 20px 0;
  }

  .contact-item:last-child {
    border-bottom: none;
  }
}

.icon {
  font-size: 26px;
  color: #60BB46;
  transition: color 0.3s ease, transform 0.3s ease;
}

.contact-item:hover .icon {
  color: #3a9930; /* Slightly darker green on hover */
  
}

