@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  font-family: "Poppins", sans-serif;
  /* padding-top: 100px; Adjust based on the combined height of navbarone and nav-one */
}

/* Global Tags */

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: black;
}

span {
  font-size: 0.9rem;
  color: black;
}

h6 {
  font-size: 1.1rem;
  color: black;
}


/* Navigation */
/* <!-- nav-top --> */

.navbarone {
  position: fixed;
  top: 0;
  width: 100%;
  height: 40px; /* Adjust height as needed */
  background-color: #47C1E6;
  color: white;
  z-index: 10; /* Ensure it stays above other elements */
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding: 0 8vw 0 2vw; */
  cursor: pointer;
}
.navbarone .left{
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding: 0 8vw 0 8vw;  */
  color: #E96027;
  /* font-size: 0.9rem; */
}
.navbarone, .left, .email{
  margin-right: 15px;
}
.navbarone, .left, .email  span{
  font-size: 0.8rem;
  color: #fff;
  font-weight: 500;
  transition: all 0.3s ease;
}
.navbarone, .left, .email  span:hover{
  font-size: 0.8rem;
  color: #E96027;
  font-weight: 500;
}
.navbarone, .left, .call  span{
  font-size: 0.8rem;
  color: #fff;
  font-weight: 500;
  transition: all 0.3s ease;
}
.navbarone, .left, .call  span:hover{
  font-size: 0.8rem;
  color: #E96027;
  font-weight: 500;
}
   
      
/* <!-- nav-one --> */
.nav-one {
  position: fixed;
  top: 39px;
  width: 100%;
  height: 100px; 
  /*background-color: rgba(255, 255, 255,0.6);*/
  background-color: white;
  /*backdrop-filter: blur(5px);*/
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2vw;
  /*box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
  z-index: 999;
  transition: background-color 0.4s ease, box-shadow 0.3s ease, padding 0.3s ease;
  /* margin-top: 70px; */
  /* margin-bottom: 150px; */
}
.nav-one img {
  height: 100px;
  width: auto; 
  margin-left: 10px; 
  object-fit: contain;
  display: block;
}
/* for mobile  view nav bar start here */
.nav-one .navigation {
  display: flex;
}
#menu-btn{
  width: 30px;
  height: 30px;
  display: none;
}
#menu-close{
  display: none;
}
/* ---------------------------- */
.nav-one .navigation ul{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 0;
}
.nav-one .navigation ul li{
  list-style: none;
  margin-left: 30px;
}
.nav-one .navigation ul li a{
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s ease;
}
/* .nav-one .navigation ul li a:hover{
  color: #E96027;
} */
nav .navigation ul li a.active,
nav .navigation ul li a:hover{
  color: #E86027;
}

/*.nav-one.scrolled {*/
/*  background-color: white;*/
/*  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);*/
/*}*/

.join{
  /*border: 2px solid #47C1E6;*/
  padding: 10px;
  border-radius: 10px;
  background-color: #E86027;
  
}
.join:hover{
  box-shadow: 1px 1px 8px #E86027;
  background-color: #fff;
}
/* Social Media Icons */
.social-btn {
  display: flex;
  width: auto;
  align-items: center;
  justify-content: space-between;
  /* padding-left: 10px;
  padding-right: 10px;
  padding-top: 5px;
  padding-bottom: 5px; */
  padding: 5px;
  border: 1px;
  border-radius: 50%;
  margin-bottom: 5px;
  position: relative;
  /* right: -100px; */
  transition: right 0.4s ease;
}
.social-btn:hover {
  right: -0px;
  transition: right 0.4s ease;
}

.social {
  position: fixed;
  bottom: 5px;
  right: 10px;
  z-index: 2;
}
.social a {
  text-decoration: none;
}

.color-facebook {
  background-color: #1877F2;
  transition: box-shadow .4s ease;
}
.color-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.color-whatsapp {
  background-color:  #25D366;
}
.color-whatsapp i{
  font-size: 2rem;
  padding-left: 3px;
  padding-bottom: 2px;
}
.color-linkedin {
  background-color: #0A66C2;
}

.google-font {
  font-family: "Lato", sans-serif;
  font-size: 1.25rem;
}

.social-btn img {
  width: 40px;
}

.social-btn p {
  color: white;

  margin-top: 0px;
  margin-bottom: 0px;
}

.icons8-facebook-app {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-size: 100%;
}

.color-facebook:hover{
  box-shadow: 0 0 10px #1877F2;
}

.color-linkedin:hover{
  box-shadow: 0 0 10px  #0A66C2;
}

.icons8-instagram {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-size: 100%;
}

.color-instagram:hover {
  box-shadow: 0 0 10px rgba(220, 39, 67, 0.7);
}

.icons8-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-size: 100%;
}

.color-whatsapp:hover {
  box-shadow: 0 0 10px  #25D366;
}

.icons8-facebook-app,
.icons8-whatsapp,
.icons8-instagram {
  color: white;
  font-size: 1.5rem;
}


/* <!-- Front Couresol Behaviour --> */
    /* Carousel container height */
    .carousel-section {
      position: relative;
      margin-top: 140px;
      /*height: 100vh;*/
      overflow: hidden;
      /*margin-bottom: 150px;*/
    }
    .carousel-item img,
    .carousel-item video {
      object-fit: cover;
      width: 100%;
      height: 100%;
    }

    /* Text overlay */
    .carousel-text-overlay {
      position: absolute;
      top: 38%;
      left: 5%;
      /* transform: translateY(-80%); Center the text vertically */
      z-index: 2;
      color: #fff;
      pointer-events: none; /* Prevent text from blocking carousel interaction */
      max-width: 600px;

    }

    .carousel-text-content {
      /* background: rgba(0, 0, 0, 0.5); For better text readability */
      background-color: rgba(232, 96, 39, 0.4);
      padding: 20px;
      border-radius: 10px;
      pointer-events: auto; /* Allow interaction with button */
    }

   
/* Home */
#home{
  /* background-image: linear-gradient(rgba(9,5,54,0.3),rgba(5,4,46,0.7)),url(assets/images/back.jpg); */
  background-color: #c6f2ff;
  width: 100%;
  height: 50vh;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  /* padding-top: 40px; */
  
}
#home h2{
  color: black;
  font-size: 2.2rem;
  letter-spacing: 1px; 
}
#home p{
  width: 50%;
  color: black;
  font-size: 0.9rem;
  line-height: 25px;
}
#home .btn{
  margin-top: 30px;
}
#home a{
  text-decoration: none;
  font-size: 0.9rem;
  padding: 13px 35px;
  background-color: #fff;
  font-weight: 600;
  border-radius: 5px;
}
#home a.blue{
  color: #fff;
  background-color: #89BF42;
  transition: 0.3s ease;
}
#home a.blue:hover{
  color:  #E86027;
  background-color: #fff;
}
#home a.yellow{
  color: #fff;
  background-color:  #E86027;
  transition: 0.3s ease;
}
#home a.yellow:hover{
  color:   #E86027;
  background-color: #fff;
}
/* features */
#features{
  padding: 5vw 8vw 0 8vw;
  text-align: center;
  color: black;
}
#features .fea-base{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  grid-gap: 1rem;
  margin-top: 20px;
}
#features .fea-box{
  background-color: #c6f2ff;
  text-align: start;
  padding: 10px;
   border-top-left-radius:20px;
  border-bottom-right-radius: 20px;
  text-align: center;
}
#features .fea-box i{
  font-size: 2rem;
  /*color: black;*/
  color: #E96027;
}
#features .fea-box h3{
  font-size: 1.2rem;
  font-weight: 600;
  color: black;
  padding: 13px 0 7px 0;
}
#features .fea-box p{
  font-size: 1rem;
  font-weight: 400;
  color: black;
  text-align: justify;
}


/* course */
#course{
  padding: 8vw 8vw 8vw 8vw;
  text-align: center;
}
#course .course-box{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  grid-gap: 1rem;
  margin-top: 50px;
  cursor: pointer;

}
#course .courses{
  text-align: start;
  background: #c6f2ff;
  height: 100%;
  position: relative;
   border-bottom-left-radius:20px;
  border-bottom-right-radius: 20px;
}
/*#course .courses{*/
/*  text-align: start;*/
/*  background: #c6f2ff;*/
/*  height: 100%;*/
/*  position: relative;*/
/*}*/
#course .courses img{
  width: 100%;
  height: 65%;
  background-size: cover;
  background-position: center;
}
#course .courses .deatils{
  padding: 15px 15px 0 15px;
  /*text-align: justify;*/
}
#course .courses .deatils h6{
    font-weight: 600;
    color: black;
}
#course .courses .deatils i{
  display: none;
  color: #FDC93B;
  font-size: .9rem; 
}
#course .courses .cost{
  background-color: #E86027;
  color: #fff;
  line-height: 70px;
  width: 70px;
  height: 70px;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  right: 15px;
  bottom: 100px;

}
/*------------------------------------------------*/
/*events*/

/* course */
#course1{
  padding: 8vw 8vw 8vw 8vw;
  text-align: center;
}
#course1 .course-box1{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  grid-gap: 1rem;
  margin-top: 50px;
  cursor: pointer;

}
#course1 .courses1{
  text-align: start;
  background: #c6f2ff;
  height: 100%;
  position: relative;
   border-bottom-left-radius:20px;
  border-bottom-right-radius: 20px;
}
#course1 .courses1{
  text-align: start;
  background: #c6f2ff;
  height: 100%;
  position: relative;
}
#course1 .courses1 img{
  width: 100%;
  height: 58%;
  background-size: cover;
  background-position: center;
}
#course1 .courses1 .deatils1{
  padding: 15px 15px 0 15px;
  text-align: justify;
}
#course .courses1 .deatils1 i{
  display: none;
  color: #FDC93B;
  font-size: .9rem; 
}
#course1 .courses1 .cost1{
  background-color: #E86027;
  color: #fff;
  line-height: 70px;
  width: 70px;
  height: 70px;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  right: 15px;
  bottom: 100px;

}
/*-------------------------------------------------*/
/* registration */
#registration{
  padding: 6vw 8vw 6vw 8vw;
  /* background-image: linear-gradient(rgba(99,112,168,0.5), rgba(81,91,233,0.5)),
  url("assets/images/signup.jpg"); */
  background-color: #C6F2FF;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
}
#registration .reminder{
  color: #000;
}
#registration .reminder h1{
  color: #000;
}
#registration .reminder .time{
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
#registration .reminder .time .date{
  text-align: center;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  border-radius: 10px;
  margin: 0 5px 10px 5px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.7rem;
  font-weight: 600;
  height: 100px;
  width: 100px;
  display: grid;
  place-items: center;
  /* padding: 10px; */
}
#registration .form{
  background: #fff;
  border-radius: 8px;
  width: 50%;
  padding: 40px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}
#registration .form input{
  margin: 15px 0;
  padding: 15px 10px;
  border: 1px solid #E46128;
  outline: none;
}
#registration .form input::placeholder{
  color: #E46128;
  font-weight: 500;
  font-size: 0.9rem;


}
#registration .form .btn{
  /*margin-top: 20px;*/
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn button.yellow{
  text-decoration: none;
  font-size: 0.9rem;
  padding: 13px 35px;
  background-color: #fff;
  font-weight: 600;
  border-radius: 5px;
  color: #fff;
  background-color: #E46128;
  transition: 0.3s ease;
  border: none;
}
.btn button.yellow:hover{
  color:  #fff;
  background-color: #87C041;
}
/* CEO Message */
#home-ceo{
  background: radial-gradient(circle,rgba(232, 96, 39, 1) 0%, rgba(69, 194, 230, 1) 100%);
  width: 100%;
  height: 50vh;
  background-size: cover;
  background-position: center;
  display: flex;
  /* flex-direction: column; */
  justify-content: center;
  align-items: center;
  text-align: center;
  /* padding-top: 40px; */
  border-top-left-radius: 70px;
  border-bottom-right-radius: 100px;
  margin-top: 100px;
  
}
#home-ceo img{
  transition: all 0.9s;
  border-radius: 50%;
}
#home-ceo img:hover{
  box-shadow: 1px 1px 8px #fff;
  border-radius: 50%;
}
#home-ceo p{
  width: 50%;
  color: black;
  font-size: 1rem;
  line-height: 25px;
  padding-left: 30px;
  text-align: justify;
}
/* experts */

#experts{
  padding: 8vw 8vw 8vw 8vw;
  text-align: center;
}
#experts h1{
  color: #000;
}
#experts .expert-box{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 1rem;
  margin-top: 50px;
  
}
#experts .expert-box .profile{ 
  background: #c6f2ff;
  /* background: radial-gradient(circle,rgba(232, 96, 39, 1) 0%, rgba(69, 194, 230, 1) 100%); */

  padding: 30px 10px;
  /* border-radius: 10px; */
  border-top-left-radius: 70px;
  border-bottom-right-radius: 70px;
  transition: all .3s ease;
}
#experts .expert-box .profile:hover{
  background: #c6f2ff;
  padding: 30px 10px;
  /* border-radius: 10px; */
  box-shadow: 0px 0px 10px #47C1E6;

}
.pro-links{
  margin-top: 10px ;
}
.pro-links i{
  padding: 10px 13px;
  border: 1px solid rgb(21, 21, 100);
  cursor: pointer;
  transition: 0.3s ease;
}
.pro-links i:hover{
  background: rgb(21, 21, 100);
  color: #fff;
  border: 1px solid rgb(21, 21, 100);
  cursor: pointer;
}
/* footer */
footer{
  padding: 45px 45px 5px 45px;
  background-color: #C6F2FF;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
footer .footer-col{
  /*padding-bottom: 40px;*/
}
footer h3{
  color: #E86027;
  font-weight: 600;
  padding-bottom: 40px;
  font-size: 18px;
}

footer li{
  list-style: none;
  color: black;
  padding: 10px 0;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s ease;
}
footer li span{
  color: black;
}
footer li span:hover{
  color: #E95F27;
}
footer li:hover{
  /*color: #E95F27;*/
  color: #f25415;
}
footer li i{
    color: #F25415;
}
footer p{
  color: black;
}
footer .subscribe{
  margin-top: 20px;
}
footer input{
  width: 220px;
  padding: 13px 12px;
  background: #e5e8e2;
  border: none;
  outline: none;
  color: #fff;
}
footer .subscribe a{
  text-decoration: none;
  font-size: 0.9rem;
  padding: 15px 15px;
  background-color: #fff;
  font-weight: 600;
  /* border-radius: 5px; */
}
footer .subscribe a.yellow{
  color: #fff;
  background-color:  #E96027;
  transition: 0.3s ease;
}
footer .subscribe  a.yellow:hover{
  color:  rgb(21, 21, 100);
  background-color: #fff;
}
footer .copyright{
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
}
footer .copyright p{
  color: black;
}
footer .copyright .pro-links{
  margin-top: 0px ;
}
footer .copyright .pro-links i{
 background-color: #E96027;
 color: #fff;
}
footer .copyright .pro-links i:hover{
  background-color: #E96027;
  color: #2c2c2c;
}
/* About */

#about-home{
  background-image: linear-gradient(rgba(9,5,54,0.1),rgba(5,4,46,0.5)),url(assets/images/australia-city.webp);
  width: 100%;
  height: 60vh;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 40px;
}
#about-home h2{
  color: #fff;
  font-size: 2.2rem;
  letter-spacing: 1px;
  font-weight: bold;
}
/* about-container */
#about-container{
  display: flex;
  align-items: center;
  padding: 8vw 8vw 2vw 8vw;
}
#about-container .about-img{
  width: 60%;
  padding-right: 60px;
}
#about-container .about-img img{
  width: 100%;
}
#about-container .about-text{
  width: 40%;
}
#about-container .about-text h2{
  color: black;
  padding-bottom: 15px;
}
#about-container .about-text p{
  color: black;
  font-weight: 300;
}
#about-container .about-text .about-fe{
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-top: 30px;
}
#about-container .about-text .about-fe img{
  width: 50px;
  background-size: cover;
  background-position: center;
  margin-right: 20px;
}
#about-container .about-text .about-fe .fe-text{
  width: 90%;
}
#about-container .about-text .about-fe .fe-text h5{
  font-size: 16px;
  color: black;
}
/* Trust */
/* Trust */
#trust{
  text-align: center;
  padding: 8vw;
  background-color:#9fe5fa;
  margin: 10px;
}
#trust .trust-img{
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  
}
.trust-img img {
  height: 180px;         /* Set your desired height */
  width: auto;         /* Set your desired width */
  object-fit: cover;    /* Crop and scale image properly */
  margin-right: 15px;   /* Spacing between images */
  border-radius: 5px;   /* Optional: rounded corners */
}


/* ============  add new property  ======== */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
}

.trust-img {
  display: inline-block;
  animation: scroll-left 25s linear infinite;
}

.trust-img img {
  height: 60px;
  margin-right: 20px;
  border-radius: 8px;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}



/* Blog */

#blog-container{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 8vw;
  /* margin-top: 8vw; */
}
#blog-container .blogs{
  width: 60%;
}
#blog-container .blogs img{
  width: 100%;
  border-radius: 19px;
  padding-top: 100px;
}
#blog-container .blogs .post{
  padding-bottom: 60px;
}
#blog-container .blogs .post h3{
  color: #29303B;
  padding: 15px 0 10px 0;
}
#blog-container .blogs .post p{
  color: #757373;
  padding-bottom: 20px;
}
#blog-container .blogs .post a{
  text-decoration: none;
  font-size: 0.9rem;
  padding: 13px 15px;
  background-color: rgb(21, 21, 100);
  color: #fff;
  border-radius: 5px;
  font-weight: 600;
}
#blog-container .cate{
  width: 30%;
}
#blog-container .cate h2{
  padding-bottom: 7px;
}
#blog-container .cate a{
  text-decoration: none;
  color: #757373;
  font-weight: 500;
  line-height: 45px;
}
#blog-container .blogpost{
  width: 60%;
  margin: 0 auto;
}
#blog-container .blogpost p{
  text-align: justify;
  padding-bottom: 60px !important;

}



/* Course_inner */

#course-inner{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8vw;
}
#course-inner h3{
  padding: 35px 0 25px 0;
  color: #29303B;
}
#course-inner p{
  text-align: justify;
  color: #29303B;
}
#course-inner hr{
  height: 1px;
  background: rgba(236, 226, 229, 0.5);
  margin-top: 40px;
}
#course-inner .overview{
  width: 70%;
}
#course-inner .overview .course-img{
  width: 100%;
  height: 60vh;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}
#course-inner .overview .course-head{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
#course-inner .overview .course-head .c-name{
  width: 70%;
}
#course-inner .overview .course-head .c-name h2{
  color: #29303B;
}
#course-inner .overview .course-head .c-name .star{
  margin: 6px 0;
}
#course-inner .overview .course-head .c-name .star i{
  color: #FDC93B;
  font-size: 0.9rem;
}
#course-inner .overview .course-head .c-name p{
  font-size: 15px;
}
#course-inner .overview .course-head span {
  padding: 16px 22px;
  border-radius: 5px;
  font-size: 24px;
  font-weight: 700;
  font-weight: 700;
  background-color: #E86027;
}
#course-inner .overview .course-head span a{
  color: #fff;
  text-decoration: none;
}
#course-inner .learn p{
  font-size: 15px;
  padding-bottom: 15px;
}
#course-inner .learn p i{
  color: #E86027  ;
  font-weight: 700;
  margin-right: 20px;
}
#course-inner .tutor{
  display: flex;
}
#course-inner .tutor img{
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-right: 20px;
}
#course-inner .tutor h5{
  font-size: 15px;
}
#course-inner .enroll{
  width: 300px;
  padding: 0 30px 30px 30px;
  border-radius: 11px;
  box-shadow: 0px 20px 40px 0 rgb(11 2 55 / 8%);
}
#course-inner .enroll h3{
  padding-bottom: 10px;
}
#course-inner .enroll p{
  font-size: 15px;
  color: #64626e;
  margin: 15px 0;
}
#course-inner .enroll p i {
  color: #654ce4;
  font-weight: 500;
  margin-right: 18px;
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
}
#course-inner .enroll .enroll-btn{
  padding: 25px 0 20px 0;
  margin: auto;
  text-align: center;
}
#course-inner .enroll .enroll-btn a{
  text-decoration: none;
  font-size: .8rem;
  padding: 13px 45px;
  border-radius: 5px;
  font-weight: 600;
  color: #fff;
  background: rgb(50, 50, 136);
}

/* contact */

#contact{
  padding: 8vw;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
#contact .getin{
  width: 350px;
}
#contact .getin h2{
  color: #E86027;
  font-size: 30px;
  font-weight: 800;
  line-height: .8;
  margin-bottom: 16px;
}
#contact .getin p{
  color: #000;
  line-height: 24px;
  margin-bottom: 33px;
  padding-bottom: 25px;
  border-bottom: 1px solid #e5e4ed;
}
#contact .getin h3{
  color: #E86027;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  margin-bottom: 15px;
}
#contact .getin .getin-details div{
  display: flex;
}
#contact .getin .getin-details div p{
  cursor: pointer;
}
#contact .getin .getin-details div i{
  cursor: pointer;
}
#contact .getin .getin-details div .get {
  font-size: 16px;
  line-height: 22px;
  color: #E86027;
  margin-right: 20px;
}
#contact .getin .getin-details div p{
  font-size: 14px;
  border-bottom: none;
  line-height: 22px;
  margin-bottom: 15px;
}
#contact .getin .getin-details .pro-links i{
  margin-right: 8px;
  background-color: #E86027;
  color: #fff;

}
#contact .getin .getin-details .pro-links i:hover {
  background-color: #E86027;
  color: #000;
}
.numbers{
  flex-direction: column;
}
#contact .form{
  width: 60%;
  background: #f7f6fa;
  padding: 40px;
  border-radius: 10px;
}
#contact .form h4{
  font-size: 24px;
  color: #E86027;
  line-height: 30px;
  margin-bottom: 8px;
}
#contact .form p{
  color: #000;
  line-height: 24px;
  padding-bottom: 25px;
}
#contact .form .form-row{
  display: flex;
  justify-content: space-between;
  width: 100%;
}
#contact .form .form-row input{
  width: 48%;
  font-size: 14px;
  font-weight: 400;
  border-radius: 3px;
  border: none;
  background: #fff;
  color: #000;
  outline: none;
  padding: 20px 30px;
  margin-bottom: 20px;
}
#contact .form .form-col input,
#contact .form .form-col textarea{
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  border-radius: 3px;
  border: none;
  background: #fff;
  color: #000;
  outline: none;
  padding: 20px 30px;
  margin-bottom: 20px;
}
#contact .form button{
  font-size: .9rem;
  padding: 13px 25px;
  background: #E86027;
  border-radius: 5px;
  outline: none;
  border: none;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
}
#map{
  width: 100%;
  height: 70vh;
  margin-bottom: 8vw;
}
#map iframe{
  width: 100%;
  height: 100%;
}

/* ---------------------  New and Events --------------- */

.event-para p{
  font-size: 0.95rem;
  color: rgb(39, 38, 38);
  padding: 15px 0;
}

.deatils a{
    text-decoration: none;
    font-size: 0.80rem;
    padding-bottom: 2px;
    background: #E86027;
    color: white;
    padding: 5px 14px;
    border-radius: 6px;
}

.course-box .image div img{
  width: 100%;
}

.downloadBtn{
  margin-top: 40px;
}

.downloadAll{
  text-decoration: none;
  margin-top: 40px;
    font-size: 1rem;
    background: #E86027;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    border: 2px solid;
    transition: all .4s ease;
}

.downloadAll:hover{
  background-color: white;
  color: #E86027;
}
  
/* ------------------------------------------------------------------------------ */












/* responsive */











/* ------------------------------------------------------------------------------ */

@media (max-width: 769px) {
  /* Adjust navbarone height for mobile view */
  
  /* nav bar code start */
  .nav-one {
    padding: 0px 20px;
  }
  .nav-one img {
    width: 60px;
  }
  #menu-btn{
    width: 30px;
    height: 30px;
    display: initial;
  }
  #menu-close{
    display: initial;
    font-size: 1.6rem;
    color: #000;
    padding: 30px 0 20px 20px;
  }
  .nav-one .navigation ul {
    position: absolute;
    top: 0;
    right: -220px;
    width: 220px;
    height: 100vh;
    background-color: #C6F2FF;
    backdrop-filter: blur(4.5px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    transition: 0.3s ease;
  }
  .nav-one .navigation ul.active{
    right: 0;
  }
  .nav-one .navigation ul li{
    padding: 20px 0 20px 40px;
    margin-left: 0;
  }
  .nav-one .navigation ul li a{
    color: #000;
  }
  /* -------------------nav bar code end---------------- */
   /* Responsive text adjustments */
   .carousel-section {
    position: relative;
    height: 55vh;
    overflow: hidden;

  }
    .carousel-text-overlay {
      left: 5px; /* Adjust for smaller screens */
      top: 50%; /* Adjust vertical placement */
    }
    .carousel-text-content {
      width: 90%; /* Ensure the text doesn't overflow on smaller screens */
      padding-left: 15px;
      padding-right: 15px;
      border-radius: 10px;
      background: rgba(0, 0, 0, 0.5); /* For better text readability */
      display: none;
    }
    .carousel-item img,
    .carousel-item video {
      object-fit: cover;
      width: 100%;
      height: 100vh;
    }
  #home {
    /* padding-top: 0px; */
    height: 90vh;
  }
  #home p {
    width: 90%;
  }
  #features {
    padding: 8vw 4vw 0 4vw;
  }
  #course {
    padding: 8vw 4vw 0vw 4vw;
  }
  #registration {
    margin-top: 8vw;
    flex-direction: column;
    padding: 6vw 4vw 6vw 4vw;
  }
  #registration .reminder{
    text-align: center;
  }
  #registration .reminder .time {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
  }
  #registration .form{
    width: 100%;
    margin-top: 10px;
  }
   #registration .form input{
    width: 100%;
   }
   /* ceo */
   #home-ceo{
  /* background-image: linear-gradient(rgba(9,5,54,0.3),rgba(5,4,46,0.7)),url(assets/images/back.jpg); */
  background: radial-gradient(circle,rgba(232, 96, 39, 1) 0%, rgba(69, 194, 230, 1) 100%);
  width: 100%;
  height: 60vh;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  
}
#home-ceo img{
  transition: all 0.9s;
  border-radius: 50%;
}
#home-ceo img:hover{
  box-shadow: 1px 1px 8px #fff;
  border-radius: 50%;
}
#home-ceo p{
  width: 50%;
  color: black;
  font-size: 1rem;
  line-height: 25px;
  padding-left: 30px;
  text-align: justify;
}
  #experts {
    padding: 8vw 8vw 4vw 8vw;
    text-align: center;
  }
  footer .copyright .pro-links {
    margin-top: 15px;
  }
  /* About */
   #about-container {
    padding: 8vw 2vw 2vw 2vw;
  }
  #about-container .about-img {
    padding-right: 30px;
  }
  #trust .trust-img img {
    width: 50px;
    height: auto;
  }
  /* blog */

  #blog-container{
    padding: 8vw 4vw;
  }
  #blog-container .blogpost{
    width: 100%;
    margin-top: 30px;
  }
  #blog-container .blogpost img{
    width: 100%;
    height: 50vh;
    object-fit: cover;
  }
  #course-inner{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 8vw 4vw;
  }
  #course-inner .overview{
    width: 100%;
  }
  #course-inner .overview .course-img{
    width: 100%;
    height: 100%;
  }
  #course-inner .enroll{
    margin-top: 25px;
  }
  /* contact */
  #contact {
    padding: 8vw 4vw;
  }
  #contact .getin{
    width: 250px;
  }
  
}

/* CSS */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  padding: 20px;
}

.video-box {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  background: #000;
}

.video-box video {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 475px) {
  
  .carousel-section {
    margin-bottom: -35vh;

  }
  .carousel-item img,
  .carousel-item video {
    object-fit: cover;
    width: 100%;
    height: 235px;
  }
  #registration {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    text-align: center;
  }
  #registration .reminder .time {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  #home-ceo{
  background: radial-gradient(circle,rgba(232, 96, 39, 1) 0%, rgba(69, 194, 230, 1) 100%);
  width: 100%;
  height: 50vh;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  /* padding-top: 40px; */
  /* margin-top: 50px; */
  
}
#home-ceo img{
  transition: all 0.9s;
  border-radius: 50%;
  margin-bottom: 10px;
}
#home-ceo img:hover{
  box-shadow: 1px 1px 8px #fff;
  border-radius: 50%;
}
#home-ceo p{
  width: 100%;
  color: black;
  font-size: 0.5rem;
  line-height: 12px;
  padding: 15px;
  text-align: justify;
}
  footer input {
    width: 200px;
    padding: 13px 12px;
    background: #334F6C;
    border: none;
    outline: none;
    color: #fff;
    margin-bottom: 20px;
  }
  /* About */
  #about-container{
    flex-direction: column-reverse;
  }
  #about-container .about-img{
    width: 100%;
    padding-right: 0px;
  }
  #about-container .about-text{
    width: 100%;
    padding-bottom: 20px;
  }
  #trust .trust-img {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  #trust .trust-img img{
    width: 60px;
    margin: 10px 15px;
    height: auto;
  }
  #blog-container{
    flex-direction: column;
  }
  #blog-container .blogs{
    width: 100%;
  }
  #blog-container .cate{
    width: 100%;
  }
  #blog-container .blogpost{
    width: 100%;
    margin-top: 70px;
  }
  #blog-container .blogpost img{
    width: 100%;
    height: 50vh;
    object-fit: cover;
  }
  #course-inner .overview .course-head .c-name{
    width: 50%;
  }
  #course-inner .overview .course-head .c-name h2{
    font-size: 22px;
  }
   #course-inner .overview .course-head  span{
    font-size: 22px;
  }
  #course-inner .enroll{
    width: 100%;
  }  
  /* contact */
  #contact {
    padding: 8vw 4vw;
    flex-direction: column;
    align-content: flex-start;
    justify-content: flex-start;
  }
  #contact .getin{
    width: 100%;
    margin-bottom: 30px;
  }
  #contact .form {
    width: 100%;
    padding: 40px 30px;
  }
  #contact .form .form-row{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
  }
  #contact .form .form-row input{
    width: 100%;
  }
  .navbarone .left .email{
      display: none;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .nav-one {
    padding: 15px 20px;
    top: 0;
    background-color: #FDFDFD;
  }
  .nav-one img {
    width: 60px;
  }
  #menu-btn{
    width: 30px;
    height: 30px;
    display: initial;
  }
  #menu-close{
    display: initial;
    font-size: 1.6rem;
    color: white;
    padding: 30px 0 20px 20px;
  }
  .nav-one .navigation ul {
    position: absolute;
    top: 0;
    right: -220px;
    width: 220px;
    height: 100vh;
    background-color: rgba(17,20,104,0.45);
    backdrop-filter: blur(4.5px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    transition: 0.3s ease;
  }
  .nav-one .navigation ul.active{
    right: 0;
  }
  .nav-one .navigation ul li{
    padding: 20px 0 20px 40px;
    margin-left: 0;
  }
  .nav-one .navigation ul li a{
    color: #fff;

  }
  .carousel-section {
    position: relative;
    height: 55vh;
    overflow: hidden;
    margin-bottom: -5vh;
    margin-top: 100px;

  }
  .carousel-text-overlay {
    left: 5px;
    top: 50%;
  }
  .carousel-text-content {
    width: 90%;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
    /* display: none; */
  }
  .carousel-item img,
  .carousel-item video {
    object-fit: cover;
    width: 100%;
    height: 835px;
  }
}
@media (max-width: 376px) {
  footer input{
    width: 100%;
    margin-bottom: 20px;
  }
}


.nav-one.scrolled{
  background-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

#menu-close.scrolled{
  color: black;
}

.nav-one.scrolled ul li a {
  color: #0a0a0a;
}


.marq1{
            height: auto;
            background-color: yellow;
            color: red;
            font-size: 20px;
            padding: 5px;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 100;
            font-weight: bold;
     
 }
 
 
 
 
  /* Gallery Container */
  .course-box .image {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  /* Gallery Images */
  .course-box .image div {
    flex: 1 1 200px; /* min width 200px, flexible growth */
    max-width: 250px;
  }

  .course-box .image div img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border: 1px solid #ccc;
  }

  /* Download Button */
  .downloadBtn {
    margin-top: 15px;
    text-align: center;
  }