
/*  typography */
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");
@font-face {
  font-family: 'futura-bold';
  src: url("../fonts/Futura-Bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

body {
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  color: #5c5c77;
}

p, .paragraph {
  font-weight: 400;
  color: #5c5c77;
  font-size: 15px;
  line-height: 1.9;
  font-family: "Poppins", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  color: #1e1e4b;
  font-family: "futura-bold";
  font-weight: 700;
  line-height: 1.2;
}

h1, .h1 {
  font-size: 60px;
}

@media (max-width: 575px) {
  h1, .h1 {
    font-size: 45px;
  }
}

h2, .h2 {
  font-size: 25px;
}

@media (max-width: 575px) {
  h2, .h2 {
    font-size: 25px;
  }
}

h3, .h3 {
  font-size: 25px;
}

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

h4, .h4 {
  font-size: 20px;
}

@media (max-width: 575px) {
  h4, .h4 {
    font-size: 18px;
  }
}

h5, .h5 {
  font-size: 18px;
}

@media (max-width: 575px) {
  h5, .h5 {
    font-size: 16px;
  }
}

h6, .h6 {
  font-size: 16px;
}

@media (max-width: 575px) {
  h6, .h6 {
    font-size: 14px;
  }
}

/* Button style */
.btn {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
  padding: 15px 40px;
  border-radius: 0;
  font-weight: 500;
  border: 0;
  position: relative;
  z-index: 1;
  transition: .2s ease;
  overflow: hidden;
}
.p-5{
  padding: 1rem !important;
}

.btn::before {
  position: absolute;
  content: "";
  height: 80%;
  width: 100%;
  left: 0;
  bottom: 10%;
  z-index: -1;
  transition: -webkit-transform .2s ease-in-out;
  transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}

.btn:focus {
  outline: 0;
  box-shadow: none !important;
}

.btn:active {
  box-shadow: none;
}

.btn:hover::before {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}

.btn-sm {
  font-size: 14px;
  padding: 10px 25px;
}

.btn-xs {
  font-size: 12px;
  padding: 5px 15px;
}

.btn-primary {
  background: #04046e;
  color: #fff;
}

.btn-primary::before {
  background: #fff;
}

.btn-primary:active {
  background: #04046e !important;
  color: #04046e;
}

.btn-primary:active::before {
  height: 80%;
}

.btn-primary:hover {
  background: #04046e;
  color: #04046e;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
  color: #04046e;
  background-color: #04046e;
  border-color: #04046e;
}

.btn-secondary {
  background: #fff;
  color: #04046e;
  border: 1px solid #fff;
}

.btn-secondary::before {
  background: #04046e;
}

.btn-secondary:active {
  background: #04046e;
  color: #fff;
  border: 1px solid #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #fff;
  border: 1px solid #fff;
}

.btn-primary-outline {
  border: 1px solid #04046e;
  color: #04046e;
  background: transparent;
}

.btn-primary-outline::before {
  background: #fff;
}

.btn-primary-outline:hover {
  background: #04046e;
  color: #04046e;
}

.btn-primary-outline:active {
  background: #04046e;
  color: #fff;
}

body {
  background-color: #fff;
  overflow-x: hidden;
}

::-moz-selection {
  background: #ffcd6e;
  color: #fff;
}

::selection {
  background: #ffcd6e;
  color: #fff;
}

/* preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

ol,
ul {
  list-style-type: none;
  margin: 0px;
}

img {
  vertical-align: middle;
  border: 0;
}

a {
  /*color: #04046e;*/
  color: #3b91e8;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a,
button,
select {
  cursor: pointer;
  transition: .2s ease;
}

a:focus,
button:focus,
select:focus {
  outline: 0;
}

a:hover {
  color: #cbd7ef;
}

a.text-primary:hover {
  color: #cbd7ef !important;
}

a.text-light:hover {
  color: #cbd7ef !important;
}

h4 {
  transition: .2s ease;
}

a h4:hover {
  color: #04046e;
}

.slick-slide {
  outline: 0;
}

.section {
  padding-top: 90px;
  padding-bottom: 90px;
}

.section-sm {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-title {
  /*margin-bottom: 30px;*/
  font-size: 22px;
}
@media(max-width: 480px){
    .section-title {
        font-size: 19px;
    }
}

.bg-cover {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.border-primary {
  border-color: #ededf1 !important;
}

/* overlay */
.overlay {
  position: relative;
}

/*.overlay::before {*/
/*  position: absolute;*/
/*  content: '';*/
/*  height: 100%;*/
/*  width: 100%;*/
/*  top: 0;*/
/*  left: 0;*/
/*  background: #1a1a37;*/
/*  opacity: .8;*/
/*}*/

.outline-0 {
  outline: 0 !important;
}

.d-unset {
  display: unset !important;
}

.bg-primary {
  background: #04046e !important;
}

.bg-secondary {
  background: #1a1a37 !important;
}

.bg-gray {
  background: #f8f8f8;
}

.text-primary {
  color: #04046e !important;
}
.text-blue{
    color: #04046e !important;
}
.text-color {
  color: #3a3a78;
}

.text-light {
  color: #8585a4 !important;
}

.text-lighten {
  color: #d6d6e0 !important;
}

.text-muted {
  color: #b5b5b7 !important;
}

.text-dark {
  color: #1e1e4b !important;
}

.font-secondary {
  font-family: "futura-bold";
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.pl-150 {
  padding-left: 150px;
}

.zindex-1 {
  z-index: 1;
}

.overflow-hidden {
  overflow: hidden;
}

.vertical-align-middle {
  vertical-align: middle;
}

.icon-md {
  font-size: 36px;
}

/* page title */
.page-title-section {
  padding: 200px 0 80px;
  
}
@media (max-width: 1440px) {
    .page-title-section {
       margin-top: 250px !important; 
    }
}
@media (max-width: 990px) {
    .page-title-section {
        margin-top: 0 !important;
    }
}



.custom-breadcrumb li.nasted {
  position: relative;
  padding-left: 25px;
}

.custom-breadcrumb li.nasted::before {
  position: absolute;
  font-family: "themify";
  content: "\e649";
  font-size: 20px;
  top: 50%;
  left: -5px;
  color: #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* /page title */
.list-styled {
  padding-left: 25px;
}
.list-styled strong{
  color: #666e84;
}

.list-styled li {
  position: relative;
  margin-bottom: 15px;
}

.list-styled li::before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #04046e;
  left: -25px;
  top: 5px;
}

textarea.form-control {
  height: 200px;
  padding: 20px;
}

#map_canvas {
  height: 500px;
}

.top-header {
  font-size: 12px;
  transition: -webkit-transform .2s ease;
  transition: transform .2s ease;
  transition: transform .2s ease, -webkit-transform .2s ease;
  -webkit-transform-origin: top;
          transform-origin: top;
  font-weight: 600;
}

.top-header.hide {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top;
          transform-origin: top;
}

@media (max-width: 991px) {
  .header {
    position: static !important;
    background: #1a1a37;
  }
}

.navigation {
  /*background-image: linear-gradient(to right, transparent 50%, #04046e 50%);*/
  /*background-color: #04046e;*/
  background-color: white !important;
  transition: .2s ease;
}

/*@media (max-width: 575px) {*/
/*  .navigation {*/
/*    background-image: linear-gradient(to right, transparent 70%, #04046e 30%);*/
/*  }*/
/*}*/

.navbar-nav {
  padding-left: 80px;
  /*background: #04046e;*/
  background: white;
}
@media (max-width: 991px) {
  .navbar-nav {
    padding-left: 0;
  }
}

.nav-bg {
  /*background-color: #1a1a37;*/
  background-color: #04046e;
  /*margin-top: -46px;*/
  
}

@media (max-width: 1440px) {
    .nav-bg {
       margin-top: -224px !important; 
    }
}


/*@media (max-width: 1600px) {*/
/*    .nav-bg {*/ 
/*       margin-top: -240px !important; */
/*    }*/
/*}*/

@media( max-width: 2560px){
    .nav-bg {
        margin-top: -315px ;
        /*margin-top: -285px;*/
    }

    .page-title-section {
        margin-top: 350px;
    }
}
@media( max-width: 1900px){
    .nav-bg {
        margin-top: -240px;
    }
        .page-title-section{
            margin-top: 300px;
        }
}
@media( max-width: 1024px){
    .nav-bg{
        margin-top: -172px !important;
    }
}
@media( max-width: 2100px){
    .nav-bg{
        margin-top: -285px ;
    }
}

@media (max-width: 1750px) {
    .nav-bg {
       margin-top: -230px ; 
    }
}

.nav-item {
  margin: 0 20px;
  position: relative;
}

.nav-item .nav-link {
  text-transform: uppercase;
  font-weight: 600;
}

.nav-item::before {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 6px;
  width: 100%;
  content: "";
  background: #fff;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top;
          transform-origin: top;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
}

.nav-item:hover::before, .nav-item.active::before {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}

.navbar-light .navbar-nav .nav-link {
  color: #04046e;
}

link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: #04046e;
}

.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show > .nav-link {
  color: #04046e;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 15px 0px;
}

@media (max-width: 991px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 20px;
  }
}
/* @media (min-width: 992px) {
  .navbar-expand-lg .navbar-collapse {
    margin-left: 160px;
  }
} */

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  background: #fff;
  box-shadow: 0 2px 5px #0000000d;
}

.navbar .dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.navbar .dropdown-menu {
  box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.12);
  border-bottom: 5px solid #04046e;
  padding: 15px;
  top: 40px;
  border-radius: 0;
  display: block;
  visibility: hidden;
  transition: .3s ease;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  background: #fff;
}

@media (max-width: 991px) {
  .navbar .dropdown-menu {
    display: none;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transform-origin: unset;
            transform-origin: unset;
  }
}

.navbar .dropdown-menu.view {
  visibility: visible !important;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media (max-width: 991px) {
  .navbar .dropdown-menu.view {
    display: block;
  }
}

.navbar .dropdown-menu.show {
  visibility: hidden;
}

@media (max-width: 991px) {
  .navbar .dropdown-menu.show {
    visibility: visible;
    display: block;
  }
}

.navbar .dropdown-item {
  position: relative;
  color: #1e1e4b;
  transition: .2s ease;
  font-family: "Poppins", sans-serif;
}

@media (max-width: 991px) {
  .navbar .dropdown-item {
    text-align: center;
  }
}

.navbar .dropdown-item:not(:last-child) {
  margin-bottom: 10px;
}

.navbar .dropdown-item:hover {
  color: #04046e;
  background: transparent;
}

/*.hero-section {*/
/*  padding: 180px 0 100px;*/
/*}*/

.hero-slider .prevArrow,
.hero-slider .nextArrow {
  position: absolute;
  /*bottom: -123px;*/
  bottom:190px;
  z-index: 9;
  padding: 15px;
  color: rgba(255, 255, 255, 0.5);
  border: 0;
  font-size: 30px;
  transition: all linear .2s;
  background: transparent;
}
@media( max-width: 480px){
    .hero-slider .prevArrow,
    .hero-slider .nextArrow, .hero-slider .slick-dots{
        display: none !important;
    }
}

.hero-slider .prevArrow:focus,
.hero-slider .nextArrow:focus {
  outline: 0;
}

.hero-slider .prevArrow:hover,
.hero-slider .nextArrow:hover {
  color: #04046e;
}

.hero-slider .prevArrow {
  right: 60px;
}

.hero-slider .nextArrow {
  right: 0;
}

.hero-slider .slick-dots {
  position: absolute;
  left: 80px;
  bottom: 150px;
  padding-left: 0;
}

@media(max-width: 768px) {
    .hero-slider .slick-dots {
        bottom: 5px;
    }
}

.hero-slider .slick-dots li {
  display: inline-block;
  margin: 0 6px;
}

.hero-slider .slick-dots li.slick-active button {
  /*background: #04046e;*/
  background: #04046e;
}

.hero-slider .slick-dots li button {
  color: transparent;
  padding: 0;
  overflow: hidden;
  height: 10px;
  width: 10px;
  background: rgba(255, 255, 255, 0.5);
  border: 0;
  outline: 0;
}

/* banner feature */
.feature-icon {
  font-size: 50px;
  color: #04046e;
  display: inline-block;
}

.feature-blocks {
  margin-top: -100px;
  padding-left: 70px;
  padding-top: 80px;
  padding-right: 30%;
}

@media (max-width: 1400px) {
  .feature-blocks {
    padding-right: 10%;
  }
}

@media (max-width: 1200px) {
  .feature-blocks {
    padding-right: 50px;
    padding-left: 50px;
    padding-top: 30px;
  }
  .feature-blocks h3 {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .feature-blocks {
    margin-top: 0;
    padding: 50px;
  }
  .feature-blocks h3 {
    font-size: 25px;
  }
}

/* /banner feature */
/* course */
.card-btn {
  font-size: 12px;
  padding: 5px 10px;
}

.flex-basis-33 {
  flex-basis: 33.3333%;
}

.hover-shadow {
  transition: .3s ease;
}

.hover-shadow:hover {
  box-shadow: 0px 4px 25px 0px rgba(27, 39, 71, 0.15);
}

/* /course */
/* success story */
.success-video {
  min-height: 300px;
}

.success-video .play-btn {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (max-width: 767px) {
  .success-video .play-btn {
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.play-btn {
  display: inline-block;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  background: #04046e;
  color: #fff;
  font-size: 20px;
  text-align: center;
}

.play-btn i {
  line-height: 80px;
}

.play-btn::before {
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  z-index: -2;
  transition: .3s ease;
  transition-delay: .2s;
}

.play-btn::after {
  position: absolute;
  content: "";
  height: 80%;
  width: 80%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #04046e;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  z-index: -1;
  transition: .3s ease;
}

.play-btn:hover::before {
  height: 80%;
  width: 80%;
  transition-delay: 0s;
}

.play-btn:hover::after {
  height: 0;
  width: 0;
  transition: 0s ease;
}

/* /success story */
/* events */
.card-date {
  position: absolute;
  background: #04046e;
  font-family: "futura-bold";
  text-align: center;
  padding: 10px;
  color: #fff;
  top: 0;
  left: 0;
  text-transform: uppercase;
}

.card-date span {
  font-size: 40px;
}

/* /events */
/* teacher */
.teacher-info {
  width: 70%;
  bottom: 0;
  right: 0;
}

/* /teacher */
/* footer */
.newsletter {
  background-image: linear-gradient(to right, transparent 50%, #04046e 50%);
  margin-bottom: -100px;
  position: relative;
  z-index: 1;
}

.newsletter-block {
  padding-left: 50px;
}

@media (max-width: 575px) {
  .newsletter-block {
    padding-left: 15px;
  }
}

.input-wrapper {
  position: relative;
}

.input-wrapper button {
  position: absolute;
  right: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.form-control {
  height: 60px;
  background: #fff;
  border-radius: 0;
  padding-left: 25px;
}

.form-control:focus {
  border-color: #04046e;
  box-shadow: none;
}

.newsletter-block .form-control {
  height: 70px;
}

.bg-footer {
  background-color: #182b45;
}

.logo-footer {
  margin-top: -20px;
  display: inline-block;
}

.footer {
  border-color: #494a43 !important;
  /*padding-top: 200px;*/
}

/* /footer */
.filter-controls li {
  cursor: pointer;
  transition: .1s ease;
}
.filter-controls li.active{
  color: #1a1a37;
}

.filter-controls li.mixitup-control-active {
  font-weight: 600;
  color: #1a1a37;
}

.filter-controls li:hover {
  color: #1a1a37;
}





/* Testimonials */

.testimonial-section {
  max-width: 100%;
  margin: 50px auto;
  text-align: center;
  padding: 40px 15px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.85);
}

.testimonial-heading {
  font-size: 2rem;
  color: #222;
  margin-bottom: 30px;
}

.testimonial-slider {
  display: flex;
  overflow: hidden;
  position: relative;
  scroll-behavior: smooth;
}

.testimonial-item {
  flex: 0 0 100%;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}

.testimonial-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 15px;
  object-fit: cover;
}

.testimonial-text {
  font-size: 1.1rem;
  color: #555;
  margin: 0 auto 20px;
  max-width: 75%;
  line-height: 1.6;
}

.testimonial-author {
  font-size: 1.1rem;
  color: #111;
  font-weight: 600;
}

.slider-nav {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.prev-btn,
.next-btn {
  background-color: #04046e;
  color: #fff;
  font-size: 1.5rem;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  margin: 0 10px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.prev-btn:hover,
.next-btn:hover {
  background-color: #4273c5;
}

/* Medium Screens */
@media screen and (max-width: 768px) {
  .testimonial-heading {
    font-size: 1.6rem;
  }

  .testimonial-img {
    width: 80px;
    height: 80px;
  }

  .testimonial-text {
    font-size: 1rem;
    max-width: 95%;
  }

  .testimonial-author {
    font-size: 1rem;
  }

  .prev-btn,
  .next-btn {
    font-size: 1.2rem;
    padding: 8px 12px;
  }
}

/* Small Devices */
@media screen and (max-width: 480px) {
  .testimonial-heading {
    font-size: 1.4rem;
  }

  .testimonial-text {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .testimonial-author {
    font-size: 1rem;
  }

  .testimonial-img {
    width: 70px;
    height: 70px;
  }

  .testimonial-item {
    padding: 10px;
  }

  .prev-btn,
  .next-btn {
    font-size: 1rem;
    padding: 6px 10px;
  }
}


@media screen and (max-width: 768px){
  .position-relative .img img{
    width: 395px;
    height: auto;
  }
  .mt{
    margin-top: 20px;
  }
}

@media screen and (max-width: 480px){
    .position-relative .img img{
        width: 290px;
        height: auto;
    }
}

.card-body p{
  color: black;
  text-align: justify;
}

/* vission/mission  */

.main-container {
  display: flex;
  align-items: center;
  margin: 20px 207px;
  width: 70vw;
}
.main-container img {
  width: 300px;
  height: 250px;
  border-radius: 8px;
}
.main-container .text {
  padding: 10px;
  font-size: 16px;
  line-height: 1.5;
}
.main-container.reverse {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .main-container {
    width: 85vw;
    flex-direction: column;
    /*margin: 20px 32px ;*/
    margin: auto;
  }
  .main-container img {
      width: 100%; 
      max-width: 300px; 
      margin: 20px auto; 
  }
  .main-container .text {
      /*padding: 10px; */
      text-align: center; 
  }
  .main-container.reverse {
    flex-direction: column;
  }
}

/* Registration- Afflication  */

.auto-containers {
  display: flex;
  justify-content: center;
  text-align: center;
  width: 90vw;
  margin: 20px 65px;
}
@media (max-width: 768px){
  .auto-containers{
    margin: 20px 20px;
  }
}
.clearfix:before.row:before {
  display: table;
  content: " ";
}
strong{
  color: black;
}


/* certificate Verification */

.certificate-container {
  max-width: 40%;
  margin: 0 auto;
  margin-top: 50px !important;
  margin-bottom: 20px !important;
  background: #d1dcf1;
  border-radius: 10px;
  box-shadow: 6px 4px 6px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.form-header {
  text-align: center;
  margin-bottom: 20px;
  color: #1a1a37;
  font-size: 24px;
  font-weight: bold;
  position: relative;
}

.form-header:after {
  content: '';
  display: block;
  margin: 10px auto;
  width: 50px;
  height: 3px;
  background: #1a1a37;
}

form {
  display: flex;
  flex-direction: column;
  /* gap: 20px; */
}

.form-group {
  /* display: flex;
  flex-direction: column; */
  grid-template-columns: 1fr 1fr;
  gap: 20px; 
  margin-bottom: 20px;
}

.form-group label {
  font-weight: bold;
  margin-bottom: 5px;
  color: #333;
  display: block;
}



/* .form-group input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
} */

.form-group input:focus {
  border-color: #007b5e;
  /* box-shadow: 0 4px 8px red; */
  box-shadow: 0 4px 8px #1a1a37;
  outline: none;
}

.form-group .date-icon {
  position: relative;
}

.form-group .date-icon input {
  padding-right: 40px; /* Adds space for the calendar icon */
}

.form-group .date-icon:after {
  content: '\1F4C5'; /* Calendar icon as a pseudo-element */
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #999;
}

.btn-container {
  text-align: center;
}

/* .btn {
  padding: 10px 20px;
  background-color: #007b5e;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #005945;
} */

/* Responsive Design */
@media (max-width: 768px) {
  .certificate-container {
      width: 90%;
      max-width: 90%;
  }

  .form-header {
      font-size: 20px;
  }

  .btn {
      font-size: 16px;
  }
}

/* Student Details Section */
.student-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  width: 100%;
}
.student-details h2{
  text-align:center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  font-weight: bold;
  background: linear-gradient(to right, #1a1a37, #2a8f61);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  text-transform: uppercase;
}
.student-details h2::after{
content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #1a1a37;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.student-info-container {
  display: flex;
  flex-direction: column;
  margin-left: 8rem;
  margin-bottom: 40px;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 800px;
  border: 1px solid #ccc;
  padding: 15px;
  border-radius: 8px;
  background: #f9f9f9;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
}

.student-image img {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  /*margin-right: 20px;*/
  /*margin-left:35px;*/
  border: 2px solid #0c7eaf;
}

.student-details-table {
  flex: 2;
  width: 100%;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  margin-top: 10px;
}

table th, table td {
  padding: 10px;
  text-align: center;
  border: 1px solid #ddd;
}

table th {
  font-size: 13px;
  text-align: center;
  background-color: #04046e;
  font-weight: 400;
  color: #ffffff;
  padding: 10px 10px;
}

table td {
  background-color: white;
  color: black;
  text-align:center !important;
  /*padding:10px 65px;*/
}

.student-details-table td{
  padding: 10px 65px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .student-info-container {
      margin-left: 0;
      flex-direction: column;
      align-items: center;
      text-align: center;
  }
  table th, table td{
      font-size: 12px;
      /*padding:  17px 47px;*/
  }

  .student-image img {
      margin-bottom: 15px;
  }

  .student-details-table {
      width: 100%;
      display: grid;
      justify-content: center;
  }
}

@media (max-width: 480px) {
  
  table th, table td {
      font-size: 12px;
      padding: 8px;
  }

  .student-image img {
      width: 120px;
      height: 120px;
  }
}
/* Student-registration */
.container-body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.form-container {
  margin: 20px 0;
  background-color: #d1dcf1; 
  border-radius: 8px;
  width: 90%;
  max-width: 1200px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
  color: #1a1a37; 
  text-align: center;
  margin-bottom: 10px;
  font-size: 24px;
}

.form-container hr {
  border: 0;
  border-top: 2px dashed #1a1a37; 
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group label {
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}



.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #04046e;
  box-shadow: 0 4px 8px rgba(0, 123, 94, 0.3);
  outline: none;
}

.form-group .half-width {
  flex: 1 1 calc(50% - 10px);;
  min-width: 250px;
}

.form-group .full-width {
  flex: 1 1 100%;
}

.declaration {
  margin-top: 20px;
  font-size: 14px;
  text-align: center;
}

.submit-btn {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.checkbox{
  width: 18px !important;
  height: 20px !important;
  margin-top: -1px !important;
}
.check{
  gap: 10px;
}

.register{
  padding: 10px 25px;
  /* border-radius: 20px; */
  font-size: 15px;
  background: #1a1a37;
}
.register:hover {
  background: #1a1a37;
  color: #1a1a37;
}

@media (max-width: 768px) {
  .form-group {
      flex-direction: column;
  }

  .form-group .half-width {
      flex: 1 1 100%;
  }
}

/* Announcement-joined */

.latest{
  width: 120%;
}

.recent{
  width: 60%;
  margin-left: 170px;
}

@media (max-width: 768px) {
  .latest{
    width: 98%;
  }
  
  .recent{
    width: 98%;
    margin-left: 0px;
  }
}



/* Contact */
.icon-box{
  display: flex;
  gap: 10px;
}

.icon-box img{
  height: 90px;
  width: 90px;
}
.icon-box h3{
  margin-top: 6px;
}
/*.text{*/
/*  margin-left: 103px;*/
/*  margin-top: -43px;*/
/*}*/
.box{
  margin-left: 15px;
  margin-top: 65px;
}

.contact-box{
  border: 1px solid #d1d1d1;
}
@media (max-width: 768px){
.m-b{
  margin-bottom: 50px;
}
.box{
  margin-top: 35px;
}
}

/* student-exam */
.main-form{
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background: linear-gradient(to right, #f8fafc, #eef2f3);
  display: flex;
  justify-content: center;
  align-items: center;
  /* height: 100vh; */
  color: #333;
}
.table-container {
  margin: 40px 0;
  background: #fff;
  padding: 2.5rem 4.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 95vw;
  overflow-x: auto;
  text-align: center;
  border-radius: 10px;
}

@media screen and (max-width: 768px) {
  .table-container {
    padding: 2rem 1.5rem;
  }
  table {
    font-size: 0.9rem;
  }

  th, td {
    padding: 8px;
  }
  .btn-primary {
    font-size: 1rem;
    padding: 8px 15px;
  }
}

@media screen and (max-width: 480px){
  .table-container{
    padding: 1rem;
  }
  th, td {
    font-size: 0.8rem;
    padding: 6px;
  }

  .btn-primary {
    font-size: 1rem;
    padding: 8px 15px;
  }
}

 table {
  display: contents;
  width: 100%;
  max-width: 800px;
  /* margin: 0 auto; */
  border-collapse: collapse;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px){
.table{
  overflow-x: auto;
}
}

/* @media screen and (max-width: 480px){
  table{
    width: 100%;
  }
} */

th, td {
  padding: 10px 15px;
  text-align: center;
  border: 1px solid #ddd;
}

th {
  background-color: #34495e;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}

td {
  text-align: center;
  background-color: #f9f9f9;
}

tr:nth-child(even) td {
  /*background-color: #82a1d8;*/
  background-color: #dfdfff;
}

tr:hover td {
  background-color: #c9d7ee;
}
.student-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  width: 100%;
}
.student-details h2{
  text-align:center;
margin-bottom: 1.5rem;
  font-size: 2rem;
  font-weight: bold;
  background: linear-gradient(to right, #04046e, #1a1a37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  text-transform: uppercase;
}
.student-details h2::after{
content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #1a1a37;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

/* other links */
.link-table{
  display: inline;
}
.link-table th{
padding: 15px 50px;
}

td a{
  color: #10103c; 
  font-weight: 700;
}

/* jobs */
.apply{
  padding: 10px 10px;
  border-radius: 20px;
  font-size: 15px;
  background: #1a1a37;

}

.apply:hover {
  background: #1a1a37;
  color: #1a1a37;
}
.popup-form {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.form-content {
  background: #f9e6c2;
  padding: 20px;
  width: 90%;
  max-width: 65%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  text-align: center;
}
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 30px;
  color: #04046e;
  cursor: pointer;
}
.close-btn:hover{
  transform: scale(1.3);
}
.form-content label{
  font-size: 1.2rem;
  color: #1a1a37;
  display: flex;
  margin: 0px 0 5px;
}

.form-content input {
  width: 100%;
  padding: 8px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
@media screen and (max-width: 768px){
  .form-content {
    padding: 15px;
  }
  .form-content h2 {
    font-size: 1.2rem;
  }
  .form-content input {
    padding: 8px;
    font-size: 0.9rem;
  }
  .pop{
    width: 55% !important;
    margin-left: 4rem !important;
  }
}
@media screen and (max-width: 480px){
  .form-content {
    padding: 10px;
  }
  .form-content h2 {
    font-size: 1rem;
    font-weight: bolder;
  }
  .form-content input {
    padding: 8px;
    font-size: 1rem;
  }
  .pop{
    width: 55%;
    margin-left: 58px;
  }
}
.pop{
  width: 30%;
  margin-left: 19rem;
}

/* BRANCH APPLY */
.form2-row {
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 480px){
  .form2-row{
    display: block;
  }
}

@media screen and (max-width: 768px){
  .form2-row{
    display: block;
  }
}

.form2-row .form2-group {
  flex: 1;
}

.form2-group {
  margin-bottom: 1.2rem;
}

.form2-group .form-control{
  padding-bottom: 35px;
}
.form2-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: black;
}

.form2-group input,
.form2-group select,
textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

@media screen and (max-width: 768px){
    .form2-group input,
    .form2-group select,
    textarea{
        padding: 1rem;
        font-size:1rem;
}
}

textarea {
  resize: none;
}

.form2-group input:focus,
.form2-group select:focus,
textarea:focus {
  border-color: #0077cc;
  box-shadow: 0 0 5px rgba(0, 119, 204, 0.5);
}
.form-container h3{
  color: #325b93; 
  text-align: left;
  margin-bottom: 10px;
  font-size: 20px;
}

/* Course-1 */

.ta-1{
  text-align: center;
  margin-top: 8px;
}

.ml-30{
  margin-left: 40px;
}

.top-img{
  height: 40rem;
  width: 60rem;
  margin-left: 80px;
}
@media screen and (max-width: 768px){
  .top-img{
    margin-left: 0px;
  }
}
@media screen and (max-width: 768px){
  .text-left{
    text-align: center !important;
  }
}
 /*Video-Gallery*/

 .body{
  overflow-x:hidden;
}

.video-gallery {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 100px;
      padding: 20px;
      margin-top:80px;
      margin-bottom: 80px;
      
  }

  .thumbnail {
      position: relative;
      cursor: pointer;
      width: 100%;
      max-width: 500px;
      height: 300px;
      flex: 1 1 calc(50.333% - 40px);
      border:none !important;
  }

  .thumbnail img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
      opacity:0.7;
  }

  .thumbnail .play-button {
      position: absolute;
      top: 80%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 25px;
      color: white;
      background: rgba(0, 0, 0, 0.6);
      /* border-radius: 50%; */
      border: none;
      padding: 10px;
  }

  .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: auto;
      background-color: rgba(0, 0, 0, 0.8);
      justify-content: center;
      align-items: center;
      overflow-y: auto;
      z-index: 9999;
  }

  .modal.active {
      display: flex;
  }

  .modal-content {
      position: relative;
      width: 100%;
      max-width: 70%;
      background: #fff;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  }

  .close-button {
      position: absolute;
      top: 10px;
      right: 10px;
      font-size: 24px;
      color: white;
      background: red;
      border: none;
      border-radius: 50%;
      padding: 5px 13px;
      cursor: pointer;
  }

  .slider {
      display: flex;
      transition: transform 0.3s ease-in-out;
      width: 100%;
      margin-top:50px;
      margin-bottom:-9px;
  }

  .slider .video-wrapper {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

  /* .slider-controls {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      width: 100%;
      justify-content: space-between;
      pointer-events: none;
  }

  .slider-controls button {
      background: rgba(0, 0, 0, 0.6);
      color: white;
      border: none;
      padding: 6px 13px;
      font-size: 18px;
      cursor: pointer;
      pointer-events: auto; 
  } */

  @media (max-width: 768px) {
      .thumbnail {
          /*flex: 1 1 calc(50% - 20px); */
          flex:auto;
          /*max-width: 100%;*/
      }

      .thumbnail img {
          height: auto;
      }
      
      button #yt-button{
          background-color:#2a8f6100 !important;
           margin-left: 100px;
          position: absolute;
          margin-top: -113px;
          background-color: #2a8f6100;
      }

      .modal-content {
          width: 100%;
      }

      .close-button {
          font-size: 18px;
          padding: 4px 8px;
      }
  }

  @media (max-width: 480px) {
      .thumbnail {
          /*flex: 1 1 100%; */
          flex:auto;
          margin-bottom: -130px;
          /*max-width: 100%;*/
      }
      .thumbnail img {
          height: auto;
          
      }

      .play-button {
          font-size: 36px;
          padding: 8px;
      }
       .modal-content {
          max-width: 100%;
      }

      .slider-controls button {
          font-size: 14px;
          padding: 5px 10px;
      }
  }
  
  @media (max-width: 375px ){
      .thumbnail{
          margin-bottom: -170px;
      }
  }
  .video-wrapper iframe{
      width:949;
      height:534;
      margin-bottom: 40px;
  }
  @media (max-width: 768px){
      .video-wrapper iframe{
      width:383px;
      height:535;
  }
  }

  /* Photo Gallery */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 20px;
  justify-content: center;
}

.gallery-item {
  flex: 1 1 calc(25% - 10px);
  max-width: calc(25% - 10px);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  transition: transform 0.3s;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .gallery-item {
    flex: 1 1 calc(33.33% - 10px); 
    max-width: calc(33.33% - 10px);
  }
}

@media (max-width: 768px) {
  .gallery-item {
    flex: 1 1 calc(50% - 10px); 
    max-width: calc(50% - 10px);
  }
}

@media (max-width: 480px) {
  .gallery-item {
    flex: 1 1 100%; 
    max-width: 100%;
  }
}

/* Popup styling */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 10px;
}

.popup-image {
  max-width: 100% ;
  width: 50% ;
  max-height: 100% ; 
  border-radius: 10px;
  transition: transform 0.3s; 
  margin-top: 150px;
}

.popup-image:hover {
  transform: scale(1.05); 
}

.caption {
  margin-top: 15px;
  color: #fff;
  font-size: 1.4em;
  text-align: center;
  padding: 0 10px;
  word-wrap: break-word;
}

/* Navigation buttons */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2em;
  background: none;
  color: #fff;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 2em;
  color: #04046e;
  cursor: pointer;
}

/* Responsive Popup */
@media (max-width: 768px) {
  .popup-image {
    width: 70%;
    max-width: 80%;
    max-height: 60%;
    margin-top: 0px;
  }

  .caption {
    font-size: 1em;
  }

  .prev, .next {
    font-size: 1.5em;
  }

  .close {
    font-size: 1.5em;
  }
}

@media (max-width: 480px) {
  .popup-image {
    width: 70%;
    max-width: 90%;
    max-height: 50%;
    margin-top: 0px;
  }

  .caption {
    font-size: 0.9em;
  }

  .prev, .next {
    font-size: 1.2em;
  }

  .close {
    font-size: 1.2em;
  }
}

.list-unstyled {
    color:white !important;
}

.white{
    color:white !important;
}

    .mg-l{
        margin-left:60px;
    }
    .navbar-brand{
        padding-top: 0px;
        padding-bottom: 0px;
    }
    
    
/*.navbar-expand-lg .navbar-nav {*/
/*-ms-flex-direction: row;*/
/*flex-direction: row;*/
/*width: 100%;*/
/*margin: auto;*/
/*justify-content: center;*/
/*height: 65px;*/
    
/*}*/

.page-title-section {
    background: linear-gradient(rgba(24, 29, 56, .7), rgba(24, 29, 56, .7)), url(images/backgrounds/image_top_background2.jpg);
    background-size: cover;
}