/********** Template CSS **********/
:root {
    --primary: #06BBCC;
    --light: #F0FBFC;
    --dark: #181d38;
}
body{
    overflow-x: hidden;
}
.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    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-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    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;
    border-radius: 0px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
    /* position: relative; */
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
   
    color:rgb(228, 67, 67);
   

}


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

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

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

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

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

    .navbar .dropdown-menu.fade-down {
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
    
}


/*** Header carousel ***/
@media (max-width: 568px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(24, 29, 56, .7), rgba(24, 29, 56, .7)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Service ***/
.service-item {
    background: var(--light);
    transition: .5s;
}

.service-item:hover {
    margin-top: -10px;
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Categories & Courses ***/
.category img,
.course-item img {
    transition: .5s;
}

.category a:hover img,
.course-item:hover img {
    transform: scale(1.1);
}
 @media all and (max-width:640px)
 {
    img{
    height: 200px;
    border-radius: 10px 10px 10px 10px;
    padding: 20px;
    width: 300px;
   
}
 }


/*** Team ***/
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}
/* Footer Media*/
.footer1
{
        margin-left: -40px;
        /* color: yellow;        */
}
.footer2{
      margin-left: 40px;
      color: red;
}  
.footer3{
       margin-left: 115px;
}  
.footer4{
       margin-left: 70px;
    
}  

.nor{
     margin-left: -50px;
}
.norm{
     margin-left: -50px;
}
.res img{
    width: 180px; 
    margin-left: 40px; 
    height: 180px; 
    border-radius: 40px;
    top: 1px;
}
 @media (min-width: 480px) and (max-width: 767px) 
{
    .footer1{
        margin-left: 90px;
       /* align-items: center; */
    }
    .cen{
        margin-left: 120px;
    }
  .footer2{
       margin-left: 160px;
  }  
   .footer3{
       margin-left: 165px;
  }  
   .footer4{
       margin-left: 150px;
  } 
  .nor{
    margin-left: 38px;
  } 
  .norm{
     margin-left: 127px;
  }
  .res img{
    margin-left: 115px;
     border-radius: 50px;
  }
   
}



/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    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;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

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

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
/* img{
    height: 50px;
    width: auto;
}
.gst{
    color: red;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 33px;
}
.space{
    display: flex;
    justify-content: space-between;
    gap: 20px;
} */

/* p{
   color: blue;
   font-weight: 45px; 
   font-size: 25px;
   font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
} */

.service1
{    color: blue;
   font-weight: 45px; 
   font-size: 25px;
   font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.scrolling-text {
    background-color: #337ab7;
    color: white;
    padding: 10px;
    text-align: center;
    margin: 0;
    font-size: 35px;
    
}
/* .logo img{
    height: 200px;
    border-radius: 10px 10px 10px 10px;
    padding: 20px;
   width: 500px;
   
} */
.front img{
    
    height: 200px;
    border-radius: 10px 10px 10px 10px;
    padding: 20px;
   width: 450px;
   
}

.itimages{
    height: 200px;
    border-radius: 10px 10px 10px 10px;
    padding: 20px;
   width: 300px;
   
}

 @media all and (max-width:640px)
 {
    .itimages{
    height: 220px;
    border-radius: 10px 10px 10px 10px;
    padding: 20px;
    width: 420px;
   
}
.logo{
    height: 100px;
    width: 30px;
    margin: 0;
    padding-left: 0;

}
.logotext{
height: 70px;
width: auto;
margin-left: 20px;
}

.logonew image{
height: 100px;
};

/* .gst{
    
    color: blue;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 5px;
} */

} /* media query closed*/
 
.imagetitles
{
    color: whitesmoke;

}
/* pagination */


.pagination {
    text-align: center;
    margin-top: 2rem;
}

.pagination a {
    color: #007BFF;
    padding: 8px 16px;
    text-decoration: none;
    border: 1px solid #007BFF;
    margin: 0 5px;
    border-radius: 4px;
    
}

.pagination a:hover {
    background-color: #007BFF;
    color: white;
}

.pagination .active {
    background-color: #007BFF;
    color: white;
}
/* .logoimg{
    height: 50px;
    width: 5px;
    margin-left: 5px;
} */


.logo img{
    height: 100px;
    width: auto;
}



/* .gst{
    color: red;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 33px;
} */
/* @media and all(max-width:3500px){
  
    .gst{
    color: red;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 15px;
}
} */
/*reviews img*/
.review img{
    height: 200px;
    width: 700px;
}
@media all and (max-width:640px){
    .review img{
    height: 200px;
    width: 460px;
    margin-left: 0;

}
}
.studentcol{
    color: rgba(12, 12, 238, 0.853);
}

.intercourse{
    padding-left: 500px;
}
/*placement table*/
  .table {
  display: flex;
  flex-direction: column;
  
  width: 80%;
  border: 1px solid #ccc;
  /* margin: 50px 0px 0px 50px; */
  margin-left: 185px;
  /* margin-right: 20px; */
  font-size: 15px;

}

.table-header, .table-row {
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid #eee;
}

.table-cell {
  flex: 1;
  padding: 10px;
  text-align: center;
  border-right: 1px solid #eee;
  box-sizing: border-box;
  /* height: 70px; */
  /* max-width: 120px; */

  


  
}

.table-header {
  background-color: #f5f5f5;
  font-weight: bold;
}

/* Remove last cell border */
.table-cell:last-child {
  border-right: none;
}

/* Responsive Design */
@media (max-width: 640px) {
  .table-header {
    display: none;
  }

  .table-row {
    flex-direction: column;
    border: 1px solid #ccc;
    margin-bottom: 10px;
  }

  .table-cell {
    border-right: none;
    border-bottom: 1px solid #eee;
    position: relative;
    /* padding-left: 20%; */
    font-size: 20px;
 /* margin-right: 50px; */
  }
  .table {
  margin-left: 50px;
  /* font-size: 20px; */

}
}
.aboutres{
    margin-left: 250px;
}
@media (max-width: 640px){
    .aboutres{
        margin-left: 180px;
    }
}
/* video*/
.testi{
  
    border-radius: 10px 10px 10px 10px;
    padding: 20px;
    width: 300px;
    border: 10px solid black;
    
}
/* .videos{
  
    border-radius: 1px 1px 1px 1px;
    padding: 20px;
    height: 20px;
    width: 30px;
    border: 10px solid black;
    /* height: 10px;
    width: 40px; */
    
/* } */ 
@media all and (max-width : 640px)
{
   .testi{
     border-radius: 10px 10px 10px 10px;
     padding: 20px;
     width: 300px;
     margin-left: 60px;
}  
}
/*vision and mission*/
.visimisi {
  display: flex;
  height: 80vh; /* Full height */

}

.column {
  flex: 1; /* Equal width columns */
  padding: 10px;
  box-sizing: border-box;
}

.left {
  /* background-color:#d0d0ff; */
  margin-left: 70px;
 text-align: center;
 margin-right: 30px;
 text-align: justify; 
 line-height: 30px;

}

.right {
  /* background-color: #d0d0ff; */
  margin-right: 70px;
  text-align: center;
  margin-left: 30px;
  text-align: justify; 
  line-height: 30px;
}
.visimisi img{
    height: 200px;
    width: 400px;
    border-radius: 30px;
    margin-left: 100px;
}
.visimisi1{
    margin-left: 250px;
    font-weight: bolder; 
    font-size: larger;
}
@media all and (max-width : 640px){
    .right{
       height: 380px;
       justify-content: center;
       margin-left: 30px;
       margin-right: 50px;
       margin-top: 120px;
      
    }
    .left{
        height: 420px;
        justify-content: center;
        margin-left: 30px;
        margin-right: 50px;
    }
 .visimisi{
    display: inline-block;
 }
 .visimisi img{
    height: 200px;
    width: 400px;
    border-radius: 30px;
    margin-left: 10px;
}
.visimisi1{
    margin-left: 162px;
    font-weight: bolder; 
    font-size: larger;
}
 
}

/*end */
/*java content heading center*/
.headcontent{
    margin-left: 550px;
}
@media (max-width: 640px){
    .headcontent{
        margin-left: 140px;
    }
}
/*Gallery student images*/
.student{
        height: 370px;
        padding: 20px ;
        width: 300px;
        align-items: center;

}
@media all and (max-width:640px){
    .student{
        height: 370px;
        padding: 20px ;
        width: 400px;
        align-items: center;

}

}

/*enquery form for course popup*/
    /* Modal overlay with background blur */
    .course-overlay {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 999;
    }

    /* Show modal */
    .course-overlay.active {
      display: flex;
    }

    /* Modal content box */
    .course-box {
      background: white;
      padding: 25px 30px;
      border-radius: 8px;
      max-width: 400px;
      width: 90%;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
      position: relative;
      text-align: left;
    }

    /* Close (X) button */
    .course-close-btn {
      position: absolute;
      top: 10px;
      right: 5px;
      background: #e74c3c;
      color: white;
      border: none;
      border-radius: 50%;
      width: 25px;
      height: 25px;
      font-size: 16px;
      font-weight: bold;
      cursor: pointer;
      line-height: 25px;
      text-align: center;
    }

    .course-close-btn:hover {
      background: #c0392b;
    }

    h2 {
      margin-top: 0;
      font-size: 20px;
    }

    p {
      font-size: 14px;
      margin: 8px 0;

    }

    /*To add child menu*/
    /* Custom submenu styling */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu  {
  top: 0;
  left: 100%;
  margin-top: -1px;
  display: none;
  position: absolute;
  border-radius: 0;
  z-index: 1000;
}

.dropdown-submenu:hover {
  display: block;
}

/* Arrow to indicate submenu */
.dropdown-submenu > .dropdown-toggle::after {
  content: " ▶";
  float: right;
  margin-top: 5px;
}
