

*{
  margin: 0;
  padding: 0;

}
h1, h2, h3, h4, h5, h6, p, a, li, ol, ul{
  margin: 0;
  padding: 0;
}
body{
  background-color: #0077ff05;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
}

:root{
  --primary-color: #1565c0;
}
/* .header-section{
  width: 100%;
} */
/* .glass-header {
  position: absolute;
  width: 100%;
  
  } */
  .glass-header .glass-navbar{
    width: 67%;
    position: absolute;
    display: flex;
    justify-content: space-between !important;
    z-index: 9999999;
    color: white;
    align-items: center;
  }
  .glass-header .glass-navbar .logo img{
    width: 100px;
    background-color: white;
    padding: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
  }
  .glass-header .glass-navbar .nav-links{
    display: flex;
    gap: 15px;
  }
  .glass-header .glass-navbar .nav-links a{
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    background: #1565c0;
    box-shadow: 0 -4px 16px #0000000d;
    border: 2px solid rgba(255, 255, 255, 0.336);
    color: rgb(255, 255, 255);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    font-weight: 600;
  }
  .glass-header .glass-navbar .nav-links a:hover{
   background-color: #ffffff;
    color: #1565c0;
    border: 2px solid #1565c0;

  }


/* navbar section css */

/* Bottom Menu */
.bottom-menu {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    background: #1565C0;
    box-shadow: 0 -4px 16px #0000000d;
    border: 2px solid rgba(255, 255, 255, 0.336);
    padding: 10px 20px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 9999;
}

/* Dark background detected */
.bottom-menu.dark {
    background: rgba(0,0,0,.45);
    border-color: rgba(255,255,255,.15);
    color: #fff;
}

/* Light background detected */
.bottom-menu.light {
    background: rgba(255,255,255,.8);
    border-color: rgba(0,0,0,.1);
    color: #000;
}

/* Home */
.home {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
}

/* Menu Wrapper */
.menu-wrapper {
    position: relative;
}

/* Menu Item */
.menu-item {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

/* Active pill */
.menu-item.active {
    background: rgba(255,255,255,.18);
}
.menu-item:hover{
      background: rgba(255,255,255,.18);
      color: #ffffff;

}
.menu-item:hover img{
      transform: rotate(0deg);
      transition: all 0.4s ease-in-out;

}
.bottom-menu .mobile-menu {
  display: none;
}

/* Submenu Card */
.submenu {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 260px;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    background: #1565C0;
    border: 2px solid rgba(255,255,255,0.35);
    box-shadow: 0 20px 45px rgba(0,0,0,.25);
    padding: 10px;
    border-radius: 20px;
    color: #fff;
    opacity: 0;
    transform: translateY(10px);
    transition: all .3s ease;
    z-index: 99999;
    visibility: hidden;
}

/* Submenu text */
.submenu li{
    list-style: none;
    padding: 10px ;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    margin-top: 5px;
}
.submenu li:hover{
    background: #ffffff27;
    transition: all 0.3s ease-in-out;   
}
.submenu li a{
    color: white;
    text-decoration: none;
}
/* Hover effect */
.menu-wrapper:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px);
    background: #1565C0;
    box-shadow: 0 -4px 16px #0000000d;
    border: 2px solid rgba(255, 255, 255, 0.336);
    transition: all 0.3s ease-in-out;
}
.bottom-menu a img{
  width: 20px;
  transition: all 0.3s ease-in-out;
}
.bottom-menu a:hover img{
  transform: scale(1.3);
}
.menu-wrapper span img{
  width: 10px;
  transform: rotate(90deg);
  transition: all 0.4s ease-in-out;
}

/* mobile view menu */
.mobile-submenu{
  display: ;
}
.mobile-submenu li{
  list-style: none;
  
}
.mobile-submenu li a{
  color: white;
  text-decoration: none;

}

/* Responsive */
@media (max-width:768px){
    .home, .menu-wrapper{
      display: none;
    }
  .bottom-menu .mobile-menu {
  display: block;
  color: white;
  text-decoration: none;
}
    .submenu{
        width:220px;
    }
    .bottom-menu{
      flex-direction: column;
    }
}
.main-top{
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #0044925e;
  
}
/* Video */
.main-top .bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%; 
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
}
.main-right-content{
  position: relative;
  width: 100%;
  display: flex;
  justify-content: end;
  align-items: start;
  margin-top: 150px;
}
/* .main-heading{
  display: flex;
  flex-direction: column;
  gap: 20px;
} */
.interactive-heading{
    color: white;
    font-size: 55px;
    font-weight: 700;
  }
  .heading{
    display: flex;
    flex-direction: column;
  }
.heading h1 {
    color: #1565C0;
    font-size: 45px;
    font-weight: 700;
  }
.academic-heading  {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
.academic-heading h2 {
    color: #1565C0;
    font-size: 45px;
    font-weight: 700;
  }
.academic-heading p {
    color: #00326a;
    font-size: 20px;


  }
.heading p {
    color: #00326a;
    font-size: 20px;
  }
.main-heading p{
  color: white;
  font-size: 20px;
  }

.main-right-content img{
  width: 65%;

}
 .main-content{
  padding-top: 250px ;
  width: 100%;
  display: flex;
  justify-content: end;
  align-items: start;
  flex-direction: column;
  position: relative;
  gap: 30px;
}
/* Button wrapper */
.cta-buttons {
    display: flex;
    gap: 14px;
}

/* Base button */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}

/* Primary button */
.btn-primary-home {
    background: #ffffff;
    color: #1565C0;
    border: 1px solid #1565C0;
    transition: all 0.3s ease-in-out;
}

.btn-primary-home:hover {
    background: #1565C0;
    transform: translateY(-1px);
    color: rgb(255, 255, 255);
    border: 1px solid #ffffff;

}
.btn-primary {
    background: #51181800;
    color: #1565C0;
    border: 1px solid #1565C0;
}

.btn-primary:hover {
    background: #1565C0;
    transform: translateY(-1px);
    color: rgb(255, 255, 255);
}

/* Outline button */
.btn-outline {
    border: 1.5px solid #ddd;
    color: #1565C0;
    background: #fff;
}

.btn-outline:hover {
    border-color: #1565C0;
    background: #f7f7f7;
    color: #1565C0;
    
}

/* Arrow */
.arrow {
    font-size: 20px;
    transition: transform 0.25s ease;
}
.btn-outline:hover .arrow {
    transform: translateX(4px);
}
.hero-section {
    height: 100vh;
    background-image: url(assets/about-bg.png);
    background-size: 100% 100%;
    background-blend-mode: overlay;
    background-attachment: fixed;
    background-color: #ffffffad;
    

}
.doll-image{
  width: 60%;
  padding-top: 100px;
}
.doll-image img{
      width: 60%;
}
.hero-relative{
  position: relative;
}
.hero-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    text-align: center;
    opacity: 0;
}
.main-hero-card{
  width: 100%;
  height: 400px;
    padding: 20px;
    border-radius: 20px;
   -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px);
    background: #1565c0ad;
    box-shadow: 0 -4px 16px #0000000d;
    height: 400px;
    border: 2px solid rgba(255, 255, 255, 0.336);
}
.main-hero-card .card-icon{
  margin-bottom: 20px;
}
.main-hero-card .card-icon img{
  width: 45%;
}

.hero-text1>.hero-text2>.hero-text3>.hero-text4>.hero-text5>.hero-text6{
    color: #ffffff;
}
.hero-text h1 {
    font-size: 40px;
    color: white;
    margin-bottom: 16px;
    font-weight: 700;
}

.hero-text p {
    font-size: 20px;
    color: #ffffff;
}
.hero-text1 {
    opacity: 1;
}
.hero-text4 {
  z-index: +1;
}
.hero-text5 {
       z-index: +1;
}
.hero-text6 {
       z-index: +1;
}
.hero-text7 {
       z-index: +1;
}
.hero-text8 {
       z-index: +1;
}
.hero-cards1{
  background-color: #12509E;
}
.hero-cards2{
  background-color:#018cdd ;
}
.hero-cards3{
  background-color: #ff8c33f0;
}
.hero-cards4{
  background-color: #9BC2EF;
}
.hero-cards5{
  background-color: #ffb846;
}
.hero-cards6{
  background-color: #6a5fe7;
}
.hero-cards7{
  background-color: #7FCD74;
}
.hero-cards8{
  background-color: #f7c44f;
}

.about{
    width: 100%;
    height:100vh;
    /* background:#ffffff; */
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    overflow: hidden;
    background-image: url(assets/icons/accevate-logo.png);
    background-repeat: no-repeat;
    background-size: 45% ;
    background-position: center;

  }
  .about .school-section{
    width: 100%;
    /* background: #ffffff; */
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-top: 1px dashed gray;
    border-bottom: 1px dashed gray;
  }
  /* jab .school-section hover ho */
 .about:has(.school-section:hover) {
    background-image: url(assets/icons/accevate-logo-shadow.png);
    /* background-color: rgb(255, 255, 255); */
} 
/* shape style */
.shap1{
    width: 150px;
    height: 150px;
    /* background: linear-gradient(135deg, #1565C0, #42a5f5); */
    border-radius: 30px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  }

.shap1 img{
    width: 90px;
    transition: all 0.3s ease-in-out;
}
.shap1:hover img{
    transform: scale(1.2);
}


/* features section css  */


.feature-section {
  padding: 120px 0;
  min-height: 100vh; 
  background-image: url(assets/images/Component3.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  overflow: hidden;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.feature-item {
  width: 80%;
  padding: 10px 10px;
  border-top: 3px solid transparent;
  opacity: 0.4;
  transition: all .3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.feature-item.active {
  transform: scale(1.1);
  opacity: 1;
  border-color: #6c63ff;
  background: linear-gradient(90deg, #6b63ff0b, #6b63ff00 );
  box-shadow: rgba(0, 0, 0, 0.35) 0px -50px 36px -28px inset;
  border-radius: 20px;
}

.feature-item h4 {
  font-size: 20px;
  margin-bottom: 8px;
}

.feature-images {
  position: sticky;
  top: 120px;
  height: 400px;
  overflow: hidden;
}

.feature-img {
  width: 100%;
  overflow: hidden;
   position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(0);
  transform: scale(1.1);
  transition: all .4s ease;
  margin-top: 10px;
  margin-left: 14px;
}

.feature-img.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}
.position-relative .desktop-img{
  position: absolute;
  top: 0;
  z-index: 9999;

}
.position-relative .desktop-img img{
  width: 100%;

}
.desktop-avitar{
      width: 205px !important;
    content: "";
    position: relative;
    right: -609px;
    top: -583px;
}

.main-solution{
  width: 100%;
  height: 100vh;
  border: 1px solid red;
}


.timeline-section {
  height: 200vh;
  padding: 100px 80px;
}

.timeline {
  position: relative;
  width: 400px;
}

.line {
  position: absolute;
  left: 120px;
  top: 0;
  width: 2px;
  height: 100%;
  background: rgb(0, 0, 0);
}

.event {
  position: relative;
  height: 200px;
}

.year {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.7;
} 

#dot {
  position: absolute;
  left: 110px;
  top: 50%;
  width: 16px;
  height: 16px;
  background: #ff0000;
  border-radius: 50%;
  transform: translateY(-50%) scale(0);
}

.timeline-wrap {
  height: 100vh;
  padding: 100px;
}

.timeline-svg {
  width: 300px;
  display: block;
}

.label {
  position: absolute;
  left: 40px;
  font-size: 16px;
}

.label-2019 {
  top: 200px;
}

.label-2020 {
  top: 340px;
}
.label-2021 {
  top: 480px;
}
.label-2022 {
  top: 620px;
}
.label-2023 {
  top: 760px;
}

.parallax-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* Common */
.parallax-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}


.process-section {
  min-height: 100vh;
  padding: 100px 0;
}

.process-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 80px;
}

.process-wrapper {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.process-step {
  position: relative;
  text-align: center;
  opacity: 0;
  transform: translateY(60px);
  border-radius: 10px;
  padding: 10px 0px;
  border: 0.5px dashed rgba(176, 176, 255, 0.476);
  /* box-shadow: 0px 0px 10px rgb(215, 215, 215); */
  
  
}
.process-step::after{
  position: absolute;
  content:"";
  width: 70px ;
  height: 100px;
  right: -30px;
  top: 45%;
  background-image: url(assets/icons/arrow.png);
  background-size: 100%;
  background-repeat: no-repeat;
  transform: rotate(20deg);
}
.process-step:nth-child(3)::after {
  top: 80%;
  transform: rotate(120deg);
}
.process-step:nth-child(4)::after {
   transform: rotate(190deg);
  right: -80px;
     top: 25%;
}
.process-step:nth-child(5)::after {
   transform: rotate(190deg);
  right: -80px;
     top: 25%;

}
.process-step:nth-child(6)::after { 
 display: none;
}

.process-step:hover {
  transform: scale(1.1);
  transition: all 0.3s ease-in-out;
  /* border: 1px solid rgb(225, 225, 225); */
  box-shadow: 0px 0px 10px rgb(215, 215, 215);
  background-color: #1565C0;
  color: white;
  
}

.process-step img {
  width: 90px;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
}

.process-step:hover img {
  transform: scale(1.2);
  width: 90px;
  margin-bottom: 20px;
}

.process-step h4 {
  font-size: 20px;
  margin-bottom: 10px;
}
.academic-wrapper {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  /* padding: 50px 0px; */
  background-image: url(assets/images/Component3.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
}

.academic-modules {
  width: 100vw;
  height: 100vh;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.academic-images{
  width: 100%;
  background-image: url(/assets/dashboard2.png);
  background-size: 100% 100%;
}
.academic-modules img{
  width: 100%;
}
.academic-card{
    color: white;
    background-color: #1565c000;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(20px);
    box-shadow: 0 -4px 16px #0000000d;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    padding: 30px;
    border-radius: 20px;
}
.academic-content{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.academic-content img{
  width: 200px;
}


/* .actives{
  background-color: rgb(255, 205, 205);
} */




/* role section css start */
.role-section {
  height: 100vh;
  padding: 60px 0;
  background-image: url(assets/images/Frame257.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.tab {
  padding: 10px 25px;
  border-radius: 25px;
  border: none;
  background: #eee;
  cursor: pointer;
  font-weight: 600;
}

.tab.active {
  background: #1565c0;
  color: #fff;
}

.role-wrapper {
  position: relative;
  height: 350px;
}

.role-panel {
  height: 500px;
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(40px);
  display: flex;
  color: #ffffff;
  background-color: #1565c000;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(20px);
      box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  padding: 30px;
  border-radius: 20px;
}

.role-panel.active {
  opacity: 1;
  transform: translateY(0);
}
.role-card{
  padding: 20px;
}
.role-card ul{
  list-style: none;
}
.role-heading h2{
  color: #1565C0;
  font-size: 60px;
}
.role-card-img{
  display: flex;
  justify-content: center;
  align-items: center;
}
.role-card-content ul{
  display: flex;
  flex-direction: column; 
  justify-content: start;
  align-items: start;
  gap: 15px;
}
.role-card-content li{
  font-size: 16px;
  color: #00326a;
}


/* testimonial css start */

.testimonial{
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.choose-us{
  width: 100%;
  height: 100vh;
  background-image: url(assets/images/backillu.jpg);
  background-size: 100% 100%;
  background-attachment: fixed;
}
.tl-container {
  max-width: 1200px;
  margin: 0 auto;
}

.tl-card {
  scale: 0;
  opacity: 0;
  border: none;
  border-radius: 0;
  box-shadow: 0px 2px 12px 2px LightGrey;
  overflow: hidden;
  animation: fade-in linear forwards;
  animation-timeline: view();
  animation-range: 50px 350px;
}

.left::before {
  scale: 0;
  opacity: 0;
  animation: fade-in linear forwards;
  animation-timeline: view();
  animation-range: 200px 350px;
}

.right::before {
  scale: 0;
  opacity: 0;
  animation: fade-in linear forwards;
  animation-timeline: view();
  animation-range: 200px 350px;
}

.origin-left {
  transform-origin: 0% 0%;
}

.origin-right {
  transform-origin: 100% 0%;
}

@keyframes fade-in {
  to {
    scale: 1;
    opacity: 1;
  }
}

.tl-img-container {
  width: 100%;
  height: 200px;
  filter: saturate(40%);
  transition: all 0.4s ease;
}

.tl-card:hover .scale {
  filter: saturate(100%);
  transform: scale(1.1);
}

.image-1 {
  background: url("https://assets.codepen.io/9400490/idea.jpg") 50% 50%
    no-repeat;
  background-size: cover;
}

.image-2 {
  background: url("https://assets.codepen.io/9400490/map.jpg") 50% 50% no-repeat;
  background-size: cover;
}

.image-3 {
  background: url("https://assets.codepen.io/9400490/writing.jpg") 50% 50%
    no-repeat;
  background-size: cover;
}

.image-4 {
  background: url("https://assets.codepen.io/9400490/submit.jpg") 50% 50%
    no-repeat;
  background-size: cover;
}

/* The actual timeline (the vertical ruler) */
.main-timeline {
  position: relative;
}

/* The actual timeline (the vertical ruler) */
.main-timeline::after {
  content: "";
  position: absolute;
  width: 0px;
  border: 1px dashed #1565c0;
  background-color: none;
  top: 0;
  bottom: 0px;
  left: 50%;
  margin-left: -4px;
}

/* Container around content */
.timeline {
  position: relative;
  background-color: inherit;
  width: 50%;
}

/* The circles on the timeline */
.timeline::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border: 3px solid #f0f2f5;
  outline: 1px solid #1565c0;
  right: -8px;
  background-color:#1565c0 ;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

/* Place the container to the left */
.left {
  padding: 10px 40px 20px 0px;
  left: 0;
}

/* Place the container to the right */
.right {
  padding: 10px 0px 20px 40px;
  left: 50%;
}

/* Add arrows to the left container (pointing right) */
.left::before {
  content: " ";
  position: absolute;
  top: 18px;
  z-index: 1;
  right: 30px;
  border: medium solid white;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent white;
}

/* Add arrows to the right container (pointing left) */
.right::before {
  content: "";
  position: absolute;
  top: 18px;
  z-index: 1;
  left: 30px;
  border: medium solid white;
  border-width: 10px 10px 10px 0;
  border-color: transparent white transparent transparent;
}

/* Fix the circle for containers on the right side */
.right::after {
  left: -14px;
}

.accordion-button {
  --bs-accordion-border-width: 0;
  --bs-accordion-border-radius: 0;
  --bs-accordion-inner-border-radius: 0;
  font-size: 18px;
  background-color: #efefef;
}

.accordion-button:not(.collapsed) {
  background-color: #1565c0;
  color: White;
}

.accordion-button:after {
  margin: 0;
  margin-left: 15px;
}

.accordion-button:not(.collapsed):after {
  filter: invert(100%) brightness(200%);
}

.accordion-item {
  border: none;
}

.card-footer {
  background-color: White;
  text-align: center;
  border-bottom: 5px solid white;
}

.icon-link {
  height: 40px;
  width: 40px;
  font-size: 18px;
  background-color: transparent;
  border: 1px solid DimGrey;
  border-radius: 50%;
  padding: 15px;
  margin: 0;
  transition: transform 0.3s ease;
  text-decoration: none;
  & i {
    color: DimGrey;
    transition: color 0.2s;
  }
}


/* Demo section css start here */
.demo-section{
  width: 100%;
  height: 100vh;
  background-color: #1565C0;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-image: url(assets/images/frame259.png);
  background-repeat: no-repeat;
  background-size: 100% 100%; */
}
.demo-form{
  width: 100%;
  height: 450px;
  border: 1px solid white;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}



@media (hover: hover) {
  .icon-link:hover {
    border: 1px solid DodgerBlue;
    transform: scale(1.15);
  }
  .icon-link:hover i {
    color: DodgerBlue;
  }
}

/* Media queries - Responsive timeline on screens less than 600px wide */

@media screen and (max-width: 700px) {
  /* Place the timelime to the left */
  .main-timeline::after {
    left: 10px;
  }

  /* Full-width containers */
  .timeline {
    width: 100%;
    padding-left: 40px;
    padding-right: 25px;
  }

  /* Make sure that all arrows are pointing leftwards */
  .timeline::before {
    left: 30px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
  }

  /* Make sure all circles are at the same spot */
  .left::after,
  .right::after {
    left: -4px;
  }

  .left::before {
    right: auto;
  }

  /* Make all right containers behave like the left ones */
  .right {
    left: 0%;
  }

  .tl-card {
    transform-origin: 0% 0%;
  }
}


/* mobile */
@media(max-width:768px){
  .glass-header .glass-navbar{
    width: 90%;
  }
  .glass-header .glass-navbar .logo img{
    width: 70px;
  }
  .glass-header .glass-navbar .nav-links a{
      padding: 5px 15px;
    border-radius: 34px;
    font-weight: 400;
    font-size: 14px;
  }
  .main-right-content img{
    margin-right: 50px;
  }
  .main-heading {
    align-items: center;
  }
  .main-heading h1{
    font-size: 24px;
    text-align: center;
  }
  .heading h1{
    font-size: 24px;
  }
  .heading p{
    font-size: 14px;
  }
  .main-heading p{
    text-align: center;
    font-style: 14px;
  }
  .cta-buttons .btn{
      padding: 4px 10px;
      font-size: 10px;
  }
    .main-content{
      padding-top: 120px;
      align-items: center;
    }
    .hero-relative{
      width: 100%;
      margin-top: -200px;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .hero-relative .main-hero-card{
      width: 350px;
      margin-left: 12px;
    }
    
    .heading{
      font-size: 24px;
    }
    .process-wrapper{
      gap: 10px;
      padding: 10px;
    }
    .process-step{
      width: 90px;
    }
    .process-step img{
      width: 30px;
      margin-bottom: 6px;
    }
    .process-step h4{
      font-size: 16px;
    }
    .process-step p{
      font-size: 14px;
    }
    .feature-section{
      padding: 40px 0px !important;
    }
    .features{
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
    .academic-wrapper{
      gap: 20px;
    }
    .academic-heading{
      gap: 10px;
    }
    .academic-heading h2{
        font-size: 24px ;
    }
    .mobile-view-img{
      margin-top: 20px;
    }

    /* role-section */
    .role-section{
          padding: 25px 0px;
    }

    .role-heading h2{
      font-size: 30px !important;
    }
    .role-heading .mb-5{
      margin-bottom: 10px !important;
    }
    .tabs{
    gap: 10px;
    margin-bottom: 30px;
    margin-top: 15px;
    }
    .tabs .tab{
    padding: 10px 20px;
    font-weight: 400;
    font-size: 14px;
    }
    .role-panel{
    height: 500px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    }
    .role-card{
      padding: 0px;
    }
    .role-card-content ul{
      gap: 5px;
    }
    .role-card-content li{
      font-size: 15px;
    }
  .role-card-img img{
    width: 50%;
  }
}




/* Start the Contact us Section css  */
/* .formSec{
        margin: 20px auto;
  }
  .formSec label{
        font-size: 16px;
    color: #fff;
    margin: 0 auto 5px;
  }
  .formSec input{   
    font-size: 14px;
    padding: 4px 16px;
    border-radius: 100px;
    border: 1px solid #a1a1a1;
    } */



/* Glass Card */
.glass-form {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 18px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    padding: 35px 35px;
}



/* Labels */
.formSec label {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 6px;
}

/* Inputs */
.formSec .form-control {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    border-radius: 30px;
    padding: 10px 18px;
    font-size: 14px;
    transition: 0.3s ease;
}

/* Placeholder */
.formSec .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Focus effect */
.formSec .form-control:focus {
    background: rgba(255, 255, 255, 0.25);
    border-color: #38bdf8;
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.6);
    color: #fff;
}

/* Spacing */
.formSec {
    margin: 14px auto;
}

/* Glass Button */
.glass-btn {
    background: rgb(27 102 188);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    padding: 12px 45px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.35s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Hover effect */
.glass-btn:hover {
    background: linear-gradient(120deg, rgba(56, 189, 248, 0.35), rgba(168, 85, 247, 0.35));
    box-shadow: 0 0 18px rgba(56, 189, 248, 0.6);
    transform: translateY(-2px) scale(1.03);
}

/* Click effect */
.glass-btn:active {
    transform: scale(0.97);
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.4);
}

.contactHeading h2 {
    font-size: 42px;
    /* text-shadow: 0 0 12px rgba(56, 189, 248, 0.6); */
    color: #fff;
    font-weight: 600;
    margin: 0 auto 36px;
    text-align: center;
    text-transform: capitalize;
}

.imgSecErp {
    text-align: center;
}

.imgSecErp img {
    width: 450px;
}
/* End the Contact us Section css  */



/* footer css start here */
.footer-section{
  width: 100%;
  height: 1030px;
  background-image: url(assets/footerbackground.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.footer-inner-section{
  padding: 20px;
}
.footer-logo img{
  width: 60%;
}
.footer-logo{
    display: flex;
  flex-direction: column;
  gap: 20px;
}
.left-section{
  display: flex;
  flex-direction: column;
  gap: 30px;
}
  .footer-button a{
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    background: #1565c0;
    box-shadow: 0 -4px 16px #0000000d;
    border: 2px solid rgba(255, 255, 255, 0.336);
    color: rgb(255, 255, 255);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    font-weight: 600;
  }
  .footer-button a:hover{
   background-color: #ffffff;
    color: #1565c0;

  }


  /* ====================== start Footer Sec css ========================== */
  .footer-inner-section {
    padding: 80px;
}

.FooterRightSec {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.footerMenu h5 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 14px;
    color: #0f1843;
}

.footerMenu ul {
    list-style: none;
    padding-left: 0;

}

.footerMenu ul li {
    padding: 6px 0;
}

.footerMenu ul li a {
    font-size: 16px;
    transition: color 0.2s;
    text-decoration: none;
    color: #0f1843;
}

.footerMenu ul li a:hover {
    color: #1565C0;
}

.contact-item a {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .ai-section{
  flex-direction: column;
  display: flex;
  justify-content: start;
  gap: 20px;
}
.ai-list{
  display: flex;
  justify-content: start;
  gap: 10px;
}
.ai-list img{
      width: 50px;
      transition: all 0.3s ease-in-out;
}
.ai-list img:hover{
      transform: scale(1.2);
}
  /* ====================== End Footer Sec css ========================== */


/* =====================ERP page css start here ======================== */


.erp-home-section{
  width: 100%;
  height: 100vh;
  background-color: #b1d5ff;
}