
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

:root {
  --primary: #272ff2;
  --primary-dark: #021322;
  --secondary: #fe5104;
  --dark: #000000;
  --grey: #444444;
  --light: #f1f8ff;
}

* {
  box-sizing: border-box;
}

::selection {
  background-color: var(--primary);
  color: #ffffff;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

body::-webkit-scrollbar {
  width: 6px;
  background-color: #f5f5f5;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--primary);
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: var(--dark);
  overflow-x: hidden;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-optical-sizing: auto;
  font-style: normal;
}

a {
  text-decoration: none;
}

p {
  line-height: 26px;
}

.full-img {
  width: 100%;
}

.f20 {
  font-size: 20px;
}

.f18 {
  font-size: 18px;
}

.f16 {
  font-size: 16px;
}

.f14 {
  font-size: 14px;
}

.f12 {
  font-size: 12px;
}

.light-bg {
  background-color: var(--light);
}


header {
  /* padding: 10px 0; */
  position: relative;
  z-index: 100;
  background-color: #fff;
}

.fixed-header {
  background-color: #fff;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  animation: headerSlideDown 0.95s ease forwards;
}

@keyframes headerSlideDown {
  0% {
    margin-top: -100px;
  }

  100% {
    margin-top: 0;
  }
}

.logo img {
  /*width: 100%;*/
  /*max-width: 85px;*/
  max-height:100px;
}

.fixed-header .logo img {
  /*max-width: 85px;*/

      max-height:100px;
}

.menu {
  width: 100%;
  /*text-align: right;*/
  margin-top: 32px;
}

.menu li {
  display: inline;
  margin: 0 10px;
  position: relative;
}

.menu li a {
  color: var(--dark);
  transition: all 0.4s;
  font-weight: 500;
  padding: 5px;
  font-size: 16px;
}

.menu li a:hover {
  color: var(--primary);
}

.has-dropdown span {
  display: none;
  padding-left: 10px;
}

.dropdown {
  position: absolute;
  text-align: left;
  width: 250px;
  left: 0px;
  top: 50px;
  background-color: #fff;
  border-radius: 5px;
  transition: all 0.4s;
  visibility: hidden;
  opacity: 0;
  box-shadow: 0 5px 3px 0px rgba(0, 0, 0, 0.2);
  z-index: 10;
  border:solid 1px var(--light)
}

.dropdown li {
  display: block;
  border-bottom: solid 1px var(--light);
  margin: 0;
}

.dropdown li:last-child {
  border-bottom: none;
}

.dropdown li a {
  border: none;
  color: var(--black);
  padding: 8px 12px !important;
  display: block;
  border-radius: 0;
  font-size:14px !important;
  font-weight:400;
}

.dropdown li:first-child a {
  border-radius: 5px 5px 0 0;
}

.dropdown li:last-child a {
  border-radius: 0 0 5px 5px;
}

.menu li:hover .dropdown {
  visibility: visible;
  opacity: 1;
  top: 34px;
}

.menu li:hover .dropdown li a {
  color: var(--black);
}

.dropdown li a:hover {
  background-color: var(--light);
  color: var(--black) !important;
}


.dropdown::before {
  top: -12px;
  left: 15px;
  border-style: solid;
  border-width: 0 10px 13px;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  border-color: transparent transparent var(--primary);
  display: none;
}


.header-right {
  display: none;
}

.inner-sec {
  padding: 70px 0;
}

.banner {
  width: 100%;
  /*height: 650px;*/ 
  position: relative;
}

.banner img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.banner-cont {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  /* background-color:  rgba(0, 0, 0, 0.4); */
  background: linear-gradient(270deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.7) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  color: #fff;
  padding-bottom: 56px;
}

.banner-cont h1 {
  color: #fff;
  font-weight: 700;
  font-size: 36px;
}

.banner-cont p {
  font-size: 17px;
  font-weight: 500;
}

.slider-link {
  padding: 15px 25px;
  border-radius: 4px;
  background-color: var(--primary);
  color: #fff;
  font-size: 18px;
  transition: all 0.4s;
}

.slider-link:hover {
  background-color: var(--secondary);
}

.link-btn {
  padding: 15px 20px;
  border-radius: 4px;
  background-color: var(--primary);
  color: #fff;
  font-size: 16px;
  transition: all 0.4s;
}

.link-btn:hover {
  background-color: var(--secondary);
}

.link-btn-simple {
  color: var(--secondary);
  transition: all 0.3s;
}

.link-btn-simple:hover {
  color: var(--primary);
}

.title {
  font-size: 32px;
  font-weight: 600;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.title::before {
  content: '';
  position: absolute;
  bottom: -5px;
  width: 40%;
  left: 0;
  height: 2px;
  background-color: var(--primary);
  display: none;
}

.no-line::before {
  display: none;
}

.sub-title {
  font-size: 20px;
  color: var(--primary);
  font-weight: 500;
}

.why-box {
  width: 100%;
  height: 300px;
  position: relative;
}

.why-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-bg {
  background: url(../images/slide-pt.png) repeat #f8f8f8;
  padding-bottom: 250px;
}

.why-box-cont {
  position: absolute;
  top: 60%;
  left: 20px;
  right: 0;
  min-height: 280px;
  padding: 25px 25px 25px;
  background-color: rgba(255,255,255,1);
  backdrop-filter: blur(5px);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

.why-box-cont h5 {
  font-weight: 600;
  color: var(--primary);
}

.why-icon {
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: var(--primary);
  position: absolute;
  top: -15%;
  right: 10px;
}

.why-icon img {
  width: 45px;
  filter: invert();
  object-fit: contain;
}

.abt-img{
  width: 100%;
  height: 370px;
  object-fit: cover;
}

.service-box {
  margin-bottom: 30px;
  padding: 25px;
  min-height: 330px;
  transition: all 0.4s;
  height: 95%;
  border: solid 0px #e8e8e8;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
  background-color: #fff;
}

.service-box h1 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 20px;
  /* color: var(--primary); */
}

.service-box:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
  background-color: #fff;
  transform: translateY(-10px);
}

.service-icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 0px #e8e8e8;
}

.service-icon img {
  width: 50px;
  filter: invert();
}

.ba-bg {
  background: url(../images/ba-bg.jpg) no-repeat center;
  background-size: cover;
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.result-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.result-cont {
  width: 100%;
  height: 350px;
  position: relative;
}

.result-cont img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.result-cont-inner {
  position: absolute;
  bottom: 10px;
  width: 100%;
  padding: 20px;
  background-color: rgba(255,255,255,0.9);
}

.help-box {
  background-color: #fff;
}

.help-box img{
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.help-cont {
  padding: 20px;
}

.help-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.help-brd {
  border: solid 1px #e8e8e8;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
}

.help-brd .help-cont {
  min-height: 300px;
}

/* ====== Footer CSS ====== */

footer {
  width: 100%;
  padding: 40px 0px 10px 0;
  background-color: var(--primary-dark);
  font-size: 16px;
  position: relative;
  color: #eee;
}

.f-logo img {
  width: 100%;
  max-width: 100px;
}

.f-links {
  margin-top: 20px;
}

footer p {
  color: #eee;
}

.f-links li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: #eee;
}

.f-links li i {
  position: absolute;
  left: 0;
  top: 0px;
}


footer a {
  color: var(--dark);
  transition: all 0.4s;
  color: #eee;
  font-weight:400;
}

footer a:hover {
  color: #fff;
}

.footer-btm {
  text-align: center;
  border-top: solid 1px #00182e;
}
.ser-img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: all 0.4s;
}
.ser-img.new {
    border-radius:12px;
}
 .contact-fix {
            position: fixed;
            bottom: 20px;
            left: 20px;
            border-color: var(--primary);
            z-index: 1000; /* Ensures the button is above other elements */
            background: var(--primary);
        }
label.form-label {
    color: black;
}

.kb-carousel {
  overflow: hidden;
  max-height:750px;
}

.course-sidebar {
  width: 100%;
  border:solid 1px #e8e8e8;
  border-radius: 10px;
  background-color: var(--light);
  min-height: 300px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}

.course-sidebar h5 {
  padding: 15px;
  color: #fff;
  background-color: var(--primary);
  border-radius: 10px 10px 0 0;
}

.course-sidebar ul {
  padding: 5px 20px 20px 20px;
}

.course-sidebar ul li a {
   padding: 10px;
   display: block;
   border-bottom: dashed 1px #a1a1a1;
   color: var(--dark);
   transition: all 0.4s;
}

.course-sidebar ul li a:hover {
  padding-left: 13px;
}


.course-sidebar ul li:last-child a {
  border-bottom: none;
}

.course-details {
  /*margin-bottom: 100px;*/
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 20px;
    border-radius: 12px;
 
} 


.f-links.service li { 
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: #000;
}

.service-box:hover .ser-img {
    scale: 1.04;
    transition: all 0.4s;
}
.over {
    overflow:hidden;
}
.logotext {
    padding: 10px;
    margin: 0;
    font-size: 19px; 
    color: #fc4f02;
    font-weight: bold; 
    /*max-width: 200px;*/
}
.logotext .big {
    font-size: 36px;
}
.logo-flex{
    display:flex;
    align-items:center;
} 
.logotext .new {
    color:var(--primary);
}
.home-social li i {
        color: #fc4f02;
    transition: all .4s;
}

.home-social li:hover i {
    color:var(--primary);
     transition: all .4s;
     scale:1.01;
}
.to1 {
        filter: grayscale(1);
    max-width: 100px;
    position: absolute;
    top: 100px;
    left: 50px;
    animation: rotateAnimation 2s linear infinite; 
}
.to2 {
        filter: grayscale(1);
    max-width: 100px;
    position: absolute;
    bottom: 100px;
    right: 50px;
     animation: moveFrontBack 2s ease-in-out infinite;
}
.to4 {
        filter: grayscale(1);
    max-width: 100px;
    position: absolute;
    top: 30%;
    right: 60px;
     animation: moveFrontBack 2s ease-in-out infinite;
}
.to3 {
        filter: grayscale(1);
    max-width: 100px;
    position: absolute;
    bottom: 40%;
    left: 50px;
    animation: rotateAnimation 2s linear infinite; 
}
@keyframes rotateAnimation {
    from {
        transform: rotate(0deg); 
    } 
    to {
        transform: rotate(360deg); 
    }
}
@keyframes moveFrontBack {
    0%, 100% {
        transform: translateX(0); 
    }
    50% {
        transform: translateX(30px);
    }
}