* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}
header {
  background-color: #1e1e1e;
}
.head {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.f1 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
}
.f1 i {
  width: 1em;
  height: 1em;
  font-size: 40px;
  color: #0464e4;
}
a {
  text-decoration: none;
}
.f1 span {
  font-size: 16px;
  color: #c5c5c5;
}

.logo img {
  width: 500px;
  max-width: 100%;
}
.f1 h4 {
  font-size: 20px;
}

/* Style for nav bar */
.nav1 {
  background-color: #0664e2;
  margin: 0;
  padding: 0;
}

.menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3em;
  list-style-type: none;
  height: 60px;
}

.menu > li {
  display: inline-block;
  position: relative;
  color: white;
}

.submenu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #343434;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
  width: 200px;
  padding-left: 0;
}

.submenu.show {
  display: block;
  opacity: 1;
}

.submenu > li {
  display: block; /* Display submenu items as block */
}

.submenu > li > a {
  display: block;
  text-decoration: none;
  color: #e4e4e4;
  font-size: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
}

.submenu a:hover {
  background-color: #3c3c3c; /* Highlight on hover */
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  width: 100%;
}

.menu > li > a {
  text-decoration: none; /* Remove underline from links */
  color: #ffffff; /* Link color */
  text-transform: uppercase;
  font-weight: 500;
}

.menu > li > a:hover {
  color: #e9bc0a; /* Change color on hover */
}


.sidebar{
    position: fixed;
    top: 0; 
    right: 0;
    height: 100vh;
    width: 250px;
    background-color: rgb(59, 58, 58);
    /* box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1); */
    list-style: none;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .sidebar li{
    width: 100%;
  }
  .sidebar a{
    width: 100%;
  }
  .menu-button{
    display: none;
  }


  /* footer css */

  footer{
    background-color: black;
    border-top: 5px solid #0664E2;
  }
  .footer-list{
    list-style: none;
    padding-left: 0;
  }
 .footer-list a {
    text-decoration: none;
    color:  #FFFFFFC9;
    font-size: 14px;
 }
 .contact-item{
    font-size: 14px;
    color: #FFFFFFC9;
    margin: 3px;
 }
 .copyright{
    border-top:1px solid #FFFFFF40;
 }

/* speartor css */
.separator-line {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40%; /* Set the width of the separator */
  margin: 0 auto; /* Center the separator */
}

.separator-line::before,
.separator-line::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background-color: #e9bc0a;;
}

.separator-line i {
  margin: 0 15px;
  font-size: 24px;
  color: #a53c3c;
}
.form-label {
  font-size: 14px;
}

/* Style for input placeholders */
input::placeholder, textarea::placeholder {
  font-size: 14px;
}

.formi-aff{
  padding-top: 50px;
}


/* thank you page styling */

.b-dy {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #6f86d6, #48c6ef);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  margin-top: -20px;
}

.thank-you-container {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  animation: slideIn 1.5s ease-out;
}

.thank-you-container h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
  animation: fadeInTitle 1.5s ease-in-out forwards;
}

.thank-you-container p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  animation: fadeInText 2s ease-in-out forwards;
}

.thank-you-container .checkmark {
  font-size: 120px;
  color: #0d6efd;
  margin-bottom: 20px;
  animation: scaleUp 1s ease-in-out;
}

.thank-you-container a {
  display: inline-block;
  background-color: #0d6efd;
  color: white;
  padding: 10px 20px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  animation: ripple 2s infinite;
}

.thank-you-container a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, rgba(73, 57, 177, 0.2) 20%, transparent 60%);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.6s ease-out;
  border-radius: 50%;
  z-index: -1;
}

.thank-you-container a:hover::before {
  transform: translate(-50%, -50%) scale(1);
}


/* Animations */
@keyframes scaleUp {
  0% {
      transform: scale(0.3);
  }
  50% {
      transform: scale(1.1);
  }
  100% {
      transform: scale(1);
  }
}

@keyframes fadeInTitle {
  0% {
      opacity: 0;
      transform: translateY(-30px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes fadeInText {
  0% {
      opacity: 0;
      transform: translateY(20px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes slideIn {
  0% {
      opacity: 0;
      transform: translateY(50px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes ripple {
  0% {
      box-shadow: 0 0 10px 0 rgba(0, 68, 255, 0.7), 0 0 30px 0 rgba(0, 64, 255, 0.7), 0 0 50px 0 rgba(0, 30, 255, 0.7);
  }
  100% {
      box-shadow: 0 0 10px 20px rgba(18, 79, 184, 0.1), 0 0 30px 20px rgba(0, 8, 255, 0.1), 0 0 50px 20px rgba(21, 0, 255, 0.1);
  }
}


/* Hide on desktop (show only on mobile and tablet) */
@media only screen and (min-width: 1025px) {
  .desktop-hide {
    display: none;
  }
  
}

/* Hide on tablet (show only on mobile and desktop) */
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .tablet-hide {
    display: none;
  }
}

/* lofin page design  */

.b-dy2 {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #6f86d6, #48c6ef);
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  margin-top: -20px;
}
.login-container {
  max-width: 400px;
  margin: 50px auto;
  padding: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background-color: #f9f9f9;
}
.image img {
  display: block;
  margin: 0 auto 20px;
  border-radius: 50%;
}
button[type="submit"] {
  width: 100%;
  margin-top: 15px;
}
.form-label {
  font-weight: 600;
}
hr.custom-hr {
  width: 20%;
  margin: 10px auto;
  border-color: #e5e5e5;
}

/* card css */
/* From Uiverse.io by gharsh11032000 */ 
.card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 350px;
  border-radius: 24px;
  line-height: 1.6;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 36px;
  border-radius: 22px;
  color: #ffffff;
  overflow: hidden;
  background: #2373d7;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.content::before {
  position: absolute;
  content: "";
  top: -4%;
  left: 50%;
  width: 90%;
  height: 90%;
  transform: translate(-50%);
  background: #ced8ff;
  z-index: -1;
  transform-origin: bottom;

  border-radius: inherit;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.content::after {
  position: absolute;
  content: "";
  top: -8%;
  left: 50%;
  width: 80%;
  height: 80%;
  transform: translate(-50%);
  background: #e7ecff;
  z-index: -2;
  transform-origin: bottom;
  border-radius: inherit;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.content svg {
  width: 48px;
  height: 48px;
}

.content .para {
  z-index: 1;
  opacity: 1;
  font-size: 16px;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.content .link {
  z-index: 1;
  color: #fea000;
  text-decoration: none;
  font-family: inherit;
  font-size: 16px;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.content .link:hover {
  text-decoration: underline;
}

.card:hover {
  transform: translate(0px, -16px);
}

.card:hover .content::before {
  rotate: -8deg;
  top: 0;
  width: 100%;
  height: 100%;
}

.card:hover .content::after {
  rotate: 8deg;
  top: 0;
  width: 100%;
  height: 100%;
}

/* our courses css */

.back-img {
  background-image: linear-gradient(rgba(35,115,215,1), rgba(0, 0, 0, 0.8));
  width: 100%;
  height: auto;
  width: 100%;
  margin-top: 50px;
}

.back-gradient {
  background-image: linear-gradient(rgba(35,115,215,1), rgba(0, 0, 0, 0.8));
  width: 100%;
  margin-top: 50px;
}



.cardMain p {
  font-size: 30px;
  font-weight: 500;
  line-height: 35px;
  color: #333;
}

.cardMain p.small {
  font-size: 14px;
}

.go-corner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 32px;
  height: 32px;
  overflow: hidden;
  top: 0;
  right: 0;
  background-color: #e9bc0a;
  border-radius: 0 4px 0 32px;
}

.go-arrow {
  margin-top: -4px;
  margin-right: -4px;
  color: white;
  font-family: courier, sans;
}

.card1 {
  display: block;
  position: relative;
  max-width: 100%;
  background-color: #f2f8f9;
  border-radius: 4px;
  padding: 32px 24px;
  margin: 12px;
  text-decoration: none;
  z-index: 0;
  overflow: hidden;
}

.card1:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -16px;
  right: -16px;
  background: #e9bc0a;
  height: 32px;
  width: 32px;
  border-radius: 32px;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform 0.25s ease-out;
}

.card1:hover:before {
  transform: scale(21);
}

.card1:hover p {
  transition: all 0.3s ease-out;
  color: rgba(255, 255, 255, 0.8);
}

.card1:hover h3 {
  transition: all 0.3s ease-out;
  color: #fff;
}

.card2 {
  display: block;
  top: 0px;
  position: relative;
  max-width: 262px;
  background-color: #f2f8f9;
  border-radius: 4px;
  padding: 32px 24px;
  margin: 12px;
  text-decoration: none;
  z-index: 0;
  overflow: hidden;
  border: 1px solid #f2f8f9;
}

.card2:hover {
  transition: all 0.2s ease-out;
  box-shadow: 0px 4px 8px rgba(38, 38, 38, 0.2);
  top: -4px;
  border: 1px solid #ccc;
  background-color: white;
}

.card2:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -16px;
  right: -16px;
  background: #00838d;
  height: 32px;
  width: 32px;
  border-radius: 32px;
  transform: scale(2);
  transform-origin: 50% 50%;
  transition: transform 0.15s ease-out;
}

.card2:hover:before {
  transform: scale(2.15);
}

.card3 {
  display: block;
  top: 0px;
  position: relative;
  max-width: 262px;
  background-color: #f2f8f9;
  border-radius: 4px;
  padding: 32px 24px;
  margin: 12px;
  text-decoration: none;
  overflow: hidden;
  border: 1px solid #f2f8f9;
}

.card3 .go-corner {
  opacity: 0.7;
}

.card3:hover {
  border: 1px solid #00838d;
  box-shadow: 0px 0px 999px 999px rgba(255, 255, 255, 0.5);
  z-index: 500;
}

.card3:hover p {
  color: #00838d;
}

.card3:hover .go-corner {
  transition: opactiy 0.3s linear;
  opacity: 1;
}

.card4 {
  display: block;
  top: 0px;
  position: relative;
  max-width: 262px;
  background-color: #fff;
  border-radius: 4px;
  padding: 32px 24px;
  margin: 12px;
  text-decoration: none;
  overflow: hidden;
  border: 1px solid #ccc;
}

.card4 .go-corner {
  background-color: #00838d;
  height: 100%;
  width: 16px;
  padding-right: 9px;
  border-radius: 0;
  transform: skew(6deg);
  margin-right: -36px;
  align-items: start;
  background-image: linear-gradient(-45deg, #8f479a 1%, #dc2a74 100%);
}

.card4 .go-arrow {
  transform: skew(-6deg);
  margin-left: -2px;
  margin-top: 9px;
  opacity: 0;
}

.card4:hover {
  border: 1px solid #cd3d73;
}

.card4 h3 {
  margin-top: 8px;
}

.card4:hover .go-corner {
  margin-right: -12px;
}

.card4:hover .go-arrow {
  opacity: 1;
}

.card1 svg{
  width: 80px;
  height: 80px;
}


/* Css for Call to action CTA */

.zoom-in {
  overflow: hidden; /* Ensure overflow is hidden when zooming in */
  position: relative; /* Create a positioning context */
}

.zoom-in img {
  transition: transform 0.5s ease; /* Smooth transition for the zoom effect */
  width: 100%;
  height: 100%;
}

.zoom-in:hover img {
  transform: scale(1.1); /* Scale up the image to 110% on hover */
}



/* Recoginstaion Style */




@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 60px 0;
  background: white;
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.logos:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: inline-block;
  animation: 20s slide infinite linear;
}

.logos-slide img {
  height: 150px;
  margin: 0 40px;
}

/* Mission & vision css */


.main-container {
  background-image: linear-gradient(rgba(35,115,215,1), rgba(0, 0, 0, 0.8));

}

.mv {
padding: 20px;
color: #f1f1f1;
background: rgba(255, 255, 255, 0.17);
border-radius: 5px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
border: 1px solid rgba(255, 255, 255, 0.3);
transition: all 0.5s ease;
}
.mv:hover {
  background: rgba(255, 255, 255, 0.25); /* Slightly increase opacity */
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2); /* Enhance shadow on hover */
  transform: scale(1.05); /* Slight scaling effect */
  border: 1px solid rgba(255, 255, 255, 0.5); /* Brighten border */
}

.responsive-video {
  width: 100%;
  height: auto;
  max-width: 100%;
}

/* counter css */

.svgg svg{
  width: 80px;
}
.counter-main{
  background-color: black;
}

/* css for form */

input[type="text"], input[type="email"],input[type="number"], input[type="tel"], input[type="date"], input[type="file"], select, textarea {
  border: none !important;
  border-bottom: 2px solid #007bff  !important;
  outline: none !important;
  width: 100% !important;
}

/* Styling for labels and button */
label {
  font-weight: bold;
  margin-top: 10px;
}

.btn-submit {
  margin-top: 20px;
  background-color: #007bff;
  color: #fff;
}

.btn-submit:hover {
  background-color: #0056b3;
}

.consvg svg {
  width: 80px;
}

.con-img {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                      url('./asset/images/contacct-us.webp'); 
    background-size: cover; 
    background-position: center;
    color: white; 
    padding: 50px;
    text-align: center; 
    height: 400px; 
    
}

/* recognised intitute css */
.recog-card svg{
  width: 35px;
  height: 35px
}

.insti-card {
  padding: 30px;
  width: auto;
  height: 400px;
  border-radius: 15px;
  background-image: url('./asset/images/well.png');
  color: rgb(255, 255, 255);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
  background-color: transparent;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4); /* Box shadow effect */
}

.insti-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #2373d7;
  z-index: 1; /* Ensures the gradient appears on top of the background image */
}

.insti-card * {
  position: relative;
  z-index: 2; /* Ensures the content appears above the gradient overlay */
}

.insti-card:hover {
  transform: scale(1.05); /* Slight zoom effect on hover */
}



/* Entrance animation */

@keyframes slideInFromTop {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInFromBottom {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Animation classes */
.animate-top {
  animation: slideInFromTop 1.5s ease forwards;
}

.animate-bottom {
  animation: slideInFromBottom 1.5s ease forwards;
}

.animate-left {
  animation: slideInFromLeft 1.5s ease forwards;
}

.animate-right {
  animation: slideInFromRight 1.5s ease forwards;
}


/* courses csss */

.icon-circle1 {
  display: flex; 
  justify-content: center; 
  align-items: center; 
  color: #0663E1; 
  font-size: 28px; 
  
}

.icon-circle1 i {
  margin: 0; /* Remove default margin */
}

/* call to action css */

.ct-action{
  background-color: black;
  border-radius: 10px;
}
.btn-courses{
  padding: 15px 50px;
  background-color: #0663E1;
    font-family: "Roboto", Sans-serif;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    transition-duration: 1s;
    color: white;
    border-radius:10px;
    border-color: transparent;
}
@keyframes buzz {
  0% { transform: translate(0); }
  25% { transform: translate(-2px, 0); }
  50% { transform: translate(2px, 0); }
  75% { transform: translate(-2px, 0); }
  100% { transform: translate(0); }
}

.btn-courses:hover {
  animation: buzz 0.3s;
}

/* about us css */

.aboutus-img {
  overflow: hidden;
  border-radius: 10px; /* Apply border-radius to the container */
}

.aboutus-img img {
  transition: transform 0.5s ease;
  width: 100%; 
  height: 500px;
  border-radius: inherit; 
}

.aboutus-img img:hover {
  transform: scale(1.1);
}

/* contact us page css */

.icon-circle {
  background-color: #0663E1;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}


/* loan Css */
.text-responsive{
  font-size: 1.3rem;
}
/* Hide on mobile (show only on tablet and desktop) */
@media only screen and (max-width: 768px) {
  .mobile-hide {
    display: none;
  }
  .navMobile {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .sidebra{
    width: 100%;
  }
  .menu{
    justify-content: start;
    gap: 2em;
    width: 100%;
    z-index: 1000;
  }
  .submenu {
    display: none; 
    position: relative; 
    left: 0; 
    top: 0;
    background-color: transparent; 
    z-index: 1000;
    opacity: 1;
    transition: opacity 0.3s ease;
    width: 100%; 
    padding-left: 0; 
    box-shadow: none;
}
.submenu a:hover {
    background-color: #3c3c3c; 
    width: 100%;
  }
  .mobile-footer{
    width: 50%;
  }
  .formi-aff{
    padding-top: 0;
  }
  .form-m{
    margin: 5px;
  }
  .row>* {
    flex-shrink: 1;
    
}
.mobile-form{
  padding-top: 20px;
}
.separator-line {
  
  width: 80%; /* Set the width of the separator */
  margin: 0 auto; /* Center the separator */
}
.pbb{
  margin-top:30px;
}
.mobile-courses{
  width: 50%;
}

.card1{
  padding : 10px;
}
.cardMain p {
  line-height: 20px;
  text-align: center;
  padding-top: 10px;
}
.logos:before {
  left: 0;
  background: none;
}

.logos:after {
  right: 0;
  background: none;
}
.logos-slide img {
  height: 120px;
  margin: 0 40px;
}
.mv{
  margin: 10px;
}

.svgg svg{
  width: 70px;
}
.svgg p {
  font-size:18px !important;
}
.counter{
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
}
.svgg{
  width: 50%;
}

.con-img{
  margin-top: 50px;
}
.mobile-responsive{
  width : 50%;
}
.card{
  width: 290px;
}
.aboutus-img img {
  
  width: 100%; 
  height: 300px !important;
}

.text-responsive{
  font-size: 1rem;
}

.mobile-font{
    font-size:16px !important;
}
.mobile-font li{
    font-size:16px !important;
}


}


