@font-face {

  font-family: ppmori;

  src: url(font/PPMori-Regular.otf);

}





/* Main Cursor */

.custom-cursor {

  position: fixed;

  width: 20px;

  height: 20px;

  border: 2px solid #fff;

  border-radius: 50%;

  pointer-events: none;

  transform: translate(-50%, -50%);

  transition: transform 0.15s ease-out, opacity 0.2s;

  z-index: 9999;

  mix-blend-mode: difference;

}



/* Cursor Trail (Lagging Effect) */

.cursor-trail {

  position: fixed;

  width: 10px;

  height: 10px;

  background: #da4817;

  border-radius: 50%;

  pointer-events: none;

  opacity: 0.7;

  transform: translate(-50%, -50%);

  transition: transform 0.3s ease-out, opacity 0.3s;

  z-index: 9998;

  mix-blend-mode: difference;

}



/* Cursor Effect on Hover */

.hover-target:hover ~ .custom-cursor {

  transform: scale(2);

  background: rgba(255, 255, 255, 0.2);

  border-color: #da4817;

}



.hover-target:hover ~ .cursor-trail {

  transform: scale(1.5);

  background: white;

}



a{

  cursor: pointer;

}





@media (max-width: 900px) {



  .custom-cursor{

    display: none;

  }

  .cursor-trail{

    display: none;

  }

}











@import url("https://fonts.googleapis.com/css?family=Montserrat:500&display=swap");

@import url("https://fonts.googleapis.com/css?family=Dancing+Script&display=swap");

@import url("https://fonts.googleapis.com/css?family=Open+Sans&display=swap");

::selection {

  background: #da481786;

  color: rgb(255, 255, 255);

}



::-webkit-scrollbar {

  width: 8px; 

}



::-webkit-scrollbar-track {

  background: rgba(224, 224, 224, 0.5); 

}



::-webkit-scrollbar-thumb {

  background: linear-gradient(180deg, #da4817, #da4817); 

  border-radius:10px; 

  transition: background 0.3s, transform 0.3s; 

}



::-webkit-scrollbar-thumb:hover {

  background: linear-gradient(180deg, #da4817b7, #da4817b7); 

  transform: scale(1.1); 

}



.grid-background {

  position: fixed;  /* Ensures it covers the full screen */

  top: 0;

  left: 0;

  width: 100vw;  /* Covers full width */

  height: 100vh; /* Covers full height */

  z-index: -1;   /* Keeps it in the background */

  pointer-events: none; /* Prevents interference with other elements */

}



* {

  box-sizing: border-box;

  margin: 0;

  padding: 0;

  cursor: none;

  font-family: "ppmori", sans-serif;

}





html {

  scroll-behavior: smooth;

}



body {

  background: #111 !important; 

  /* font-family: "Open Sans", sans-serif; */

  /* cursor: url("images/cursor1.png"), auto; */

}



.loader-container {

  width: 100%;

  height: 100%;

  top: 0;

  left: 0;

  position: fixed;

  display: flex;

  justify-content: center;

  align-items: center;

  backdrop-filter: blur(4px);

  background-color: rgba(0, 0, 0, 0.4);

  z-index: 9999;

}



.loader {

  display: flex;

  justify-content: space-between;

  width: 80px;

}



.loader div {

  width: 16px;

  height: 16px;

  background-color: #da4817;

  border-radius: 50%;

  animation: grow-shrink 2s infinite;

}



.loader div:nth-child(1) {

  animation-delay: 0s;

}



.loader div:nth-child(2) {

  animation-delay: 0.3s;

}



.loader div:nth-child(3) {

  animation-delay: 0.6s;

}



@keyframes grow-shrink {



  0%,

  100% {

    transform: scale(1);

  }



  50% {

    transform: scale(1.5);

  }

}



hr {

  border: none;

  height: 2px;

  background-color: rgb(255, 144, 125);

  opacity: 0.4;

}



header {

  height: 40vh;

  position: relative;

}



.black {

  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);

}



nav {

  height: 80px;

  width: 100%;

  font-weight: 400;

  top: 0;

  position: fixed;

  display: flex;

  z-index: 1;

  justify-content: space-between;

  transition: 1.5s;

  align-items: center;

  backdrop-filter: blur(10px);

  /* background-color:#ffffff2d;  */

  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);

  background-color: #0000004c;

}



/* nav a::after {

  content: "";

  display: block;

  width: 0;

  height: 2.2px;

  background-color: #ffffffce;

  transition: width 0.3s ease;

  position: absolute;

  bottom: 0;

  left: 50%;

  transform: translateX(-50%);

} */



nav a:hover::after {

  width: 88%;

}



nav ul {

  display: flex;

  align-items: center;

}



nav ul li {

  list-style: none;

  margin-left: 15px;

}



nav ul li a {

  padding: 2px 10px;

  text-transform: uppercase;

  color: #ccc;

  font-weight: bolder;

  font-size: 13px;

  cursor: pointer;

  transition: 0.5s;

  text-decoration: none;

  /* font-family: sans-serif; */

  letter-spacing: 1.3px;

  font-weight:300;

}





nav ul li a:hover {

  /* color: #fff; */

  border-radius: 7px;

  letter-spacing: 2px;

  /* background: #000000fc; */

  padding: 5px 10px;

  color: #da4817;

}



.active {

  color: #fff;

  border-radius: 7px;

  background: #da4817;

  padding: 5px 10px;

}



.logo img {

  width: 130px;

  cursor: pointer;

  transition: all 1s;

  position: relative;

  left: 100px;

}



.get-started {

  position: relative;

  right: 100px;

  padding: 7px 15px;

  border: none;

  border-radius: 13px;

  text-decoration: none;

  color: white;

  transition: 0.2s;

  background: #da4817;

  /* font-family: sans-serif; */

  font-size: 12px;

  font-weight: 600;

  letter-spacing: 1.5px;

}



.get-started:hover {

  font-size: 12.4px;

  background-color: #da4817bd;

  /* color: black; */

}



/* hamburger  */

.hamburger {

  display: none;

  cursor: pointer;

  flex-direction: column;

  justify-content: space-between;

  width: 25px;

  height: 18px;

  position: relative;

  right: 30px;

}



.hamburger .line {

  height: 3px;

  background-color: #da4817;

  width: 100%;

  border-radius: 5px;

}



@media (max-width: 900px) {

  nav {

    padding: 0 20px;

  }



  .logo img {

    left: 0;

    width: 110px;

  }



  .get-started {

    margin: auto;

    position: absolute;

    width: 100px;

    font-size: 8px;

  }

  nav ul {

    position: fixed;

    top: 80px;

    right: -100%;

    max-height: 100vh;

    width:50vw;

    background-color: #222;

    flex-direction: column;

    align-items: flex-start;

    padding: 20px;

    transition: 0.3s ease;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);

    z-index: 100;

  }



  nav ul li {

    margin: 20px 0;

  }



  nav ul li a {

    font-size: 13px;

    font-weight: 200;

    color: #fff;

    letter-spacing: 1px;

  }



  .hamburger {

    display: flex;

  }



  .menu-active ul {

    right: 0;

    /* Menu slides in when active */

  }



}



/* hamburger end  */

.hero {

  width: 100%;

  height: 25vh;

  position: relative;

  display: flex;

  justify-content: start;

  align-items: center;

  text-transform: uppercase;

  overflow: hidden; 

  background: linear-gradient(-45deg, #111, #666, #111, #666);

  background-size: 400% 400%;

  animation: gradientAnimation 15s ease infinite;

  color: #ffffff;

  border-bottom-right-radius: 60px;

  border-bottom-left-radius: 60px;

  border-bottom: .5px solid #bbb;

}



@keyframes gradientAnimation {

  0% {

    background-position: 0% 0%;

  }

  50% {

    background-position: 100% 100%;

  }

  100% {

    background-position: 0% 0%;

  }

}



.hero h2 {

  position: relative;

  top: 2rem;

  color:#fff;

  text-shadow: 3px 3px 6px #000000cc;

  margin: auto;

  /* font-family: sans-serif; */

  font-weight: 700;

  letter-spacing: 2px;

  z-index: 0.1; 

}





@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");



::selection {

  background: #da4817ab;

  color: rgb(255, 255, 255);

}



.testimonials-heading {

  margin-top: 10rem;

  font-size: 2.5em;

  color: #da4817;

  text-align: center;

  margin-bottom: 30px;

  font-weight: bold;

  text-transform: uppercase;

}



.wrapper {

  max-width: 1200px;

  min-height: 400px;

  margin: auto;

  padding: 0 20px;

  display: flex;

  flex-wrap: wrap;

  align-items: center;

  justify-content: space-between;

  position: relative;

}

.wrapper .box {

  height: 290px;

  background: #fff;

  width: calc(33% - 10px);

  padding: 25px;

  border-radius: 10px;

  box-shadow: 0px 4px 8px rgba(255, 255, 255, 0.15);

}

.wrapper .box i.quote {

  font-size: 20px;

  color: #b0b0b08a;

}

.wrapper .box .content {

  display: flex;

  flex-wrap: wrap;

  align-items: center;

  justify-content: space-between;

  padding-top: 10px;

}

.box .info .name {

  font-weight: 600;

  font-size: 17px;

}

.box .info .job {

  font-size: 16px;

  font-weight: 500;

  color: #da481767;

}

.box .info .stars {

  margin-top: 2px;

}

.box .info .stars i {

  color: #da4817;

}

.box .content .image {

  height: 75px;

  width: 75px;

  padding: 3px;

  background: #da48173d;

  border-radius: 50%;

}

.content .image img {

  height: 100%;

  width: 100%;

  object-fit: cover;

  border-radius: 50%;

  border: 2px solid #fff;

}

.box:hover .content .image img {

  border-color: #fff;

}







/* For Tablets (768px to 1045px) */

@media (max-width: 1045px) {

  .wrapper {

    padding: 0 10px;

  }



  .wrapper .box {

    width: calc(50% - 15px);

    height: auto;

    padding: 20px;

    margin-top: 30px;

  }



  .box .info .name {

    font-size: 16px;

  }



  .box .info .job {

    font-size: 14px;

  }

}



/* For Mobile Devices (Below 768px) */

@media (max-width: 768px) {

  .testimonials-heading {

    font-size: 2rem;

    margin-top: 6rem;

  }



  .wrapper {

    flex-direction: column;

    align-items: center;

  }



  .wrapper .box {

    width: 90%;

    margin: 10px 0;

    padding: 15px;

  }



  .box .info .name {

    font-size: 15px;

  }



  .box .info .job {

    font-size: 13px;

  }



  .box .content .image {

    height: 60px;

    width: 60px;

  }

}



/* For Extra Small Devices (Below 480px) */

@media (max-width: 480px) {

  .testimonials-heading {

    font-size: 1.8rem;

    margin-top: 5rem;

  }



  .wrapper .box {

    width: 100%;

    padding: 10px;

  }



  .box .info .name {

    font-size: 14px;

  }



  .box .info .job {

    font-size: 12px;

  }



  .box .content .image {

    height: 55px;

    width: 55px;

  }

}







/* Filter */



.container1 {

  max-width: 1170px;

  margin: auto;

}

.row {

  display: flex;

  flex-wrap: wrap;

}

img {

  max-width: 100%;

  vertical-align: middle;

}

/*.gallery*/

.gallery {

  width: 100%;

  display: block;

  min-height: 100vh;

  /* background-color: #111111e6; */

  padding: 100px 0;

}

.gallery .gallery-filter {

  padding: 0 15px;

  width: 100%;

  text-align: center;

  margin-bottom: 20px;

}



.gallery .gallery-filter .filter-item {

  color: #ccc;

  font-size: 17px;

  text-transform: uppercase;

  display: inline-block;

  margin: 0 17px;

  cursor: pointer;

  background: rgba(255, 255, 255, 0);

  border-bottom: 2px solid transparent;

  transition: all 0.3s ease;

}

.gallery .gallery-filter .filter-item.active {

  color: #fff;

  border-color: #da4817;

  font-weight: bold;

}

.gallery .gallery-item {

  width: calc(100% / 3);

  padding: 15px;

  margin-top: 180px;

}

.gallery .gallery-item-inner img {

  width: 100%;

}

.gallery .gallery-item.show {

  animation: fadeIn 0.5s ease;

}

@keyframes fadeIn {

  0% {

    opacity: 0;

  }

  100% {

    opacity: 1;

  }

}

.gallery .gallery-item.hide {

  display: none;

}



/* responsive*/

@media (max-width: 991px) {

  .gallery .gallery-item {

    width: 50%;

    justify-content: center;

    display: flex;

  }

}

@media (max-width: 767px) {

  .gallery .gallery-item {

    width: 100%;    

  }

}



  

  .gallery .gallery-filter .filter-item {

    margin-bottom: 10px;

  }





.filter_heading {

  font-size: 16px;

  text-transform: uppercase;

  font-weight: 700;

  letter-spacing: 1px;

  color: #808080;

  text-align: center;

  margin-block-end: 15px;

}



.section-title {

  color: black;

  text-align: center;

  font-size: 26px;

  font-weight: bolder;

  /* font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif; */

}



.heading .caption2 {

  font-size: 13.5px;

  text-transform: uppercase;

  font-weight: 700;

  letter-spacing: 0.2rem;

  color: #fff;

}



popular_crs {

  font-size: 30px;

  font-weight: 700;

  color: #da4817;

}



/*End Filter */



/* Card Design*/



.card {

  width: 280px;

  height: min-content;

  padding: 25px;

  margin: 0 15px;

  background: #fff;

  border-radius: 8px;

  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);

}



.card .card-img {

  width: 100%;

  text-align: center;

}



.card .card-img img {

  height: 80px;

  width: 120px;

  margin: -100px 0 15px 0;

  /* filter: drop-shadow(0 15px 8px #cdd5e2); */

  transition: 0.3s;

}



.card:hover .card-img img {
  transform: translatey(15px);
  scale: 1.03;
}



.card .card-title h3 {

  color: #2a394d;

  font-size: 22px;

  letter-spacing: 0.5px;

}



.card .card-title p {

  color: #b3bac3;

  font-size: 18px;

  margin-top: -4px;

  letter-spacing: -0.5px;

}



.card .card-details {

  display: flex;

  justify-content: space-between;

  margin: 15px 0;

}



.card .card-details span {

  color: #b3bac3;

  font-size: 16px;

}



.card .card-details p {

  color: #1b2430;

  font-size: 18px;

  font-weight: 700;

  margin-top: -2px;

}



.card button {

  width: 100%;

  height: 40px;

  color: #fff;

  background: #1b2430;

  border-radius: 3px;

  font-size: 18px;

  font-weight: 600;

  cursor: pointer;

}

.card button a{
  text-decoration: none;
  color: white;
}


free {

  color: #008907;

  font-size: 19px;

  font-weight: 700;

  margin-top: -2px;

}



/* Blocks */



.site-section-cover {

  margin-top: -743px;

  position: relative;

  background-size: cover;

  background-repeat: no-repeat;

  background-position: center center;

}

.site-section-cover,

.site-section-cover .container {

  position: relative;

  z-index: 2;

}

.site-section-cover,

.site-section-cover .container > .row {

  height: calc(100vh - 196px);

  min-height: 577px;

}

@media (max-width: 991.98px) {

  .site-section-cover,

  .site-section-cover .container > .row {

    height: calc(70vh - 196px);

    min-height: 400px;

  }

}

.site-section-cover.overlay {

  position: relative;

}

.site-section-cover.overlay:before {

  position: absolute;

  content: "";

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  background: rgba(0, 0, 0, 0.3);

  z-index: 1;

}

.site-section-cover.inner-page,

.site-section-cover.inner-page .container > .row {

  height: auto;

  min-height: auto;

  padding: 2em 0;

}

.site-section-cover.img-bg-section {

  background-size: cover;

  background-repeat: no-repeat;

}

.site-section-cover h1 {

  font-size: 28px;

  color: #ffffffce;

  line-height: 1;

  align-items: center;

  font-family: "Asterone";

}

.site-section-cover:hover h1 {

  color: #ffffff;

}

.site-section-cover h1 strong {

  font-weight: 900;

}

@media (max-width: 991.98px) {

  .site-section-cover h1 {

    font-size: 2rem;

  }

}

.site-section-cover p {

  font-size: 18px;

  color: #fff;

}



.site-section {

  padding: 70px 0;

}

@media (max-width: 991.98px) {

  .site-section {

    padding: 30px 0;

  }

}



.heading .caption {

  font-size: 13.5px;

  text-transform: uppercase;

  font-weight: 700;

  letter-spacing: 0.2rem;

  color: #fff;

}



.heading h2 {

  font-size: 30px;

  font-weight: 700;

  color: #da4817;

}



.course {

  margin-top: 27px;

  display: block;

  padding: 20px 10px;

  background: #eee;

  text-decoration: none;

  color: #0779e4;

  border-radius: 15px;

  text-align: center;

}

.course h3 {

  font-size: 18px;

  color: #979797;

  -webkit-transition: 0.3s color ease;

  -o-transition: 0.3s color ease;

  transition: 0.3s color ease;

}

.course .wrap-icon {

  display: block;

  font-size: 40px;

  margin-bottom: 10px;

}

.course:hover {

  background: #fff;

  -webkit-box-shadow: 0 5px 10px 0 rgba(255, 255, 255, 0.1);

  box-shadow: 0 5px 10px 0 rgba(255, 255, 255, 0.2);

}

.course:hover h3 {

  color: #000;

}































/*               footer          */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

footer {

  position: relative;

}

.container2 {

  max-width: 1170px;

  margin: auto;

}

.row2 {

  display: flex;

  flex-wrap: wrap;

}

ul {

  list-style: none;

}

.footer {

  margin-top: 120px;

  background: linear-gradient(#3d3d3d, #232323, #000000);

  padding: 70px 0;

}

.footer-col {

  width: 25%;

  padding: 0 15px;

}

.footer-col h4 {

  font-size: 18px;

  color: #ffffff;

  left: 2rem;

  text-transform: capitalize;

  margin-bottom: 35px;

  font-weight: 700;

  position: relative;

  letter-spacing: 1px;

}

.footer-col h4::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: -10px;

  background-color: #da4817;

  height: 2px;

  box-sizing: border-box;

  width: 50px;

}

.footer-col ul li:not(:last-child) {

  margin-bottom: 10px;

}

.footer-col ul li a {

  font-size: 16px;

  text-transform: capitalize;

  text-decoration: none;

  font-weight: 300;

  color: #bbbbbb;

  position: relative;

  /* right: 2rem; */

  display: block;

  transition: all 0.3s ease;

}

.footer-col ul li a:hover {

  color: #ffffff;

  padding-left: 8px;

}

.footer-col .social-links a {

  display: inline-block;

  height: 40px;

  width: 40px;

  background-color: rgba(255, 255, 255, 0.2);

  margin: 0 10px 10px 0;

  text-align: center;

  line-height: 40px;

  border-radius: 50%;

  color: #ffffff;

  font-size: 1.2rem;

  transition: all 0.5s ease;

}

.footer-col .social-links a:hover {

  color: #24262b;

  background-color: #ffffff;

}



.footer-bottom {

  position: absolute;

  bottom: 0;

  width: 100%;

  text-align: center;

  font-size: 13px;

  color: #fff;

  letter-spacing: 1px;

  /* font-family: sans-serif; */

  padding: 3px;

}



.footer-bottom b {

  color: #da4817;

  font-size: 15px;

  font-weight: bolder;

}



.footer-bottom p {

  margin: 0;

}



.footer-bottom a {

  color: #da4817cb;

  text-decoration: none;

}



.footer-bottom a:hover {

  text-decoration: underline;

}



/*responsive*/

@media (max-width: 767px) {

  .footer-col {

    width: 50%;

    margin-bottom: 30px;

  }

}

@media (max-width: 574px) {

  .footer-col {

    width: 100%;

  }

}



