
/* top start */

.owl-prev{
  display: none;
}
/* nav bar start */


@import url("https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(230, 75%, 56%);
  --title-color: hsl(230, 75%, 15%);
  --text-color: hsl(230, 12%, 40%);
  --body-color: hsl(230, 100%, 98%);
  --container-color: hsl(230, 100%, 97%);
  --border-color: hsl(230, 25%, 80%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Syne", sans-serif;
  --h2-font-size: 1.25rem;
  --normal-font-size: .938rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-fixed: 100;
  --z-modal: 1000;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1023px) {
  :root {
    --h2-font-size: 1.5rem;
    --normal-font-size: 1rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

header,.search,.login,
.search input,
.login input,
.login button {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}


.search input,
.login button {
  border: none;
  outline: none;
}

header ul {
  list-style: none;
  margin-bottom: 0;
}

header a {
  text-decoration: none;
}
.name{
  width: 100%;
  margin: 0px auto;
}

.name h1{
  text-align: center;
  background-color: darkblue;
  color: white;
  font-size: 2vmax;
  padding: 1vh;
}

/*=============== REUSABLE CSS CLASSES ===============*/
header .container {
  max-width: 1120px;
  /* margin-inline: 1.5rem; */
}

.main {
  position: relative;
  height: 100vh;
}

.main__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}

.search,
.login {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-modal);
  background-color: hsla(230, 75%, 15%, .1);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px); /* For safari */
  padding: 8rem 1.5rem 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
}

.search__close,
.login__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 1.5rem;
  color: var(--title-color);
  cursor: pointer;
}

/*=============== HEADER & NAV ===============*/
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--body-color);
  box-shadow: 0 2px 16px hsla(230, 75%, 32%, .15);
  z-index: var(--z-fixed);
  font-size: 1.2rem;
  z-index: 1000;
}
.header img{
  width: 4rem;
}
.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  transition: color .4s;
  
}

.nav__actions {
  display: flex;
  align-items: center;
  column-gap: 1rem;
}

.nav__search, 
.nav__login, 
.nav__toggle, 
.nav__close {
  font-size: 1.25rem;
  color: var(--title-color);
  cursor: pointer;
  transition: color .4s;
}

:is(.nav__logo, .nav__search, .nav__login, .nav__toggle, .nav__link):hover {
  color: var(--first-color);
}

/* Navigation for mobile devices */
@media screen and (max-width: 1023px) {
  .nav__menu {
    position: fixed;
    top: -100%;
    left: 0;
    background-color: var(--body-color);
    box-shadow: 0 8px 16px hsla(230, 75%, 32%, .15);
    width: 100%;
    /* padding-block: 4.5rem 4rem; */
    transition: top .4s;
  }
}

.nav__list {
  display: flex;
  flex-direction: column;
  row-gap: 2.5rem;
  text-align: center;
}

.nav__link {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  transition: color .4s;
}

.nav__close {
  position: absolute;
  top: 1.15rem;
  right: 1.5rem;
}

/* Show menu */
.show-menu {
  top: 0;
}

/*=============== SEARCH ===============*/
.search__form {
  display: flex;
  align-items: center;
  column-gap: .5rem;
  background-color: var(--container-color);
  box-shadow: 0 8px 32px hsla(230, 75%, 15%, .2);
  padding-inline: 1rem;
  border-radius: .5rem;
  transform: translateY(-1rem);
  transition: transform .4s;
}

.search__icon {
  font-size: 1.25rem;
  color: var(--title-color);
}

.search__input {
  width: 100%;
  padding-block: 1rem;
  background-color: var(--container-color);
  color: var(--text-color);
}

.search__input::placeholder {
  color: var(--text-color);
}

/* Show search */
.show-search {
  opacity: 1;
  pointer-events: initial;
}

.show-search .search__form {
  transform: translateY(0);
}

/*=============== LOGIN ===============*/
.login__form, 
.login__group {
  display: grid;
}

.login__form {
  background-color: var(--container-color);
  padding: 2rem 1.5rem 2.5rem;
  box-shadow: 0 8px 32px hsla(230, 75%, 15%, .2);
  border-radius: 1rem;
  row-gap: 1.25rem;
  text-align: center;
  transform: translateY(-1rem);
  transition: transform .4s;
}

.login__title {
  font-size: var(--h2-font-size);
  color: var(--title-color);
}

.login__group {
  row-gap: 1rem;
}

.login__label {
  display: block;
  text-align: initial;
  color: var(--title-color);
  font-weight: var(--font-medium);
  margin-bottom: .25rem;
}

.login__input {
  width: 100%;
  background-color: var(--container-color);
  border: 2px solid var(--border-color);
  padding: 1rem;
  border-radius: .5rem;
  color: var(--text-color);
}

.login__input::placeholder {
  color: var(--text-color);
}

.login__signup {
  margin-bottom: .5rem;
}

.login__signup a {
  color: var(--first-color);
}

.login__forgot {
  display: inline-block;
  color: var(--first-color);
  margin-bottom: 1.25rem;
}

.login__button {
  display: inline-block;
  background-color: var(--first-color);
  width: 100%;
  color: #fff;
  font-weight: var(--font-semi-bold);
  padding: 1rem;
  border-radius: .5rem;
  cursor: pointer;
  transition: box-shadow .4s;
}

.login__button:hover {
  box-shadow: 0 4px 24px hsla(230, 75%, 40%, .4);
}

/* Show login */
.show-login {
  opacity: 1;
  pointer-events: initial;
}

.show-login .login__form {
  transform: translateY(0);
}

/*=============== BREAKPOINTS ===============*/
/* For medium devices */
@media screen and (min-width: 576px) {
  .search,
  .login {
    padding-top: 10rem;
  }

  .search__form {
    max-width: 450px;
    margin-inline: auto;
  }

  .search__close,
  .login__close {
    width: max-content;
    top: 5rem;
    left: 0;
    right: 0;
    margin-inline: auto;
    font-size: 2rem;
  }

  .login__form {
    max-width: 400px;
    margin-inline: auto;
  }
}

/* For large devices */
@media screen and (min-width: 1023px) {
  .nav {
    height: calc(var(--header-height) + 2rem);
    column-gap: 3rem;
  }
  .nav__close, 
  .nav__toggle {
    display: none;
  }
  .nav__menu {
    margin-left: auto;
  }
  .nav__list {
    flex-direction: row;
    column-gap: 3rem;
  }

  .login__form {
    padding: 3rem 2rem 3.5rem;
  }
}

@media screen and (min-width: 1150px) {
  .container {
    margin-inline: auto;
  }
}

/* nav bar end */




/* carasol start */

.carousel-container {
    position: relative;
    top: 0rem;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Make sure the carousel is responsive on all devices */
@media (max-width: 3000px) {
    .carousel-container {
        height: 100vh;
    }
   
}

@media (max-width: 2000px) {
    .carousel-container {
        height: 90vh;
    }
   
}

@media (max-width: 1700px) {
    .carousel-container {
        height: 90vh;
    }
   
}

@media (max-width: 1200px) {
    .carousel-container {
        height: 70vh;
    }
    
}

@media (max-width: 768px) {
    .carousel-container {
        position: relative;
        top: 0rem;
        height: 60vh;
    }
   
}

@media (max-width: 480px) {
    .carousel-container {
        height: 40vh;
    }
}
@media (max-width: 200px) {
    .carousel-container {
        height: 20vh;
    }
}

.carousel {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
    /* Faster transition */
}

.slide {
    min-width: 100%;
    position: relative;
}

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

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1)); */
    background: linear-gradient(to right, rgba(0, 0, 0, 0.204), rgba(0, 0, 0, 0.187), rgba(0, 0, 0, 0.1));
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 7%;
}

/* .slide-heading {
    color: white;
    font-size: 4rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 70%;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.1s forwards infinite;
    
} */

/* .slide-subheading {
    color: white;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 30px;
    max-width: 60%;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards 0.2s;
   
} */

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navigation buttons at bottom right */
.nav-buttons {
    position: absolute;
    bottom: 30px;
    right: 40px;
    display: flex;
    gap: 15px;
    z-index: 100;
    /* Higher z-index to ensure visibility */
}

.nav-btn {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 22px;
    border: none;
    outline: none;
    color: #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    /* Add shadow for better visibility */
}

.nav-btn:hover {
    background-color: white;
    transform: scale(1.1);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.dots-container {
    position: absolute;
    bottom: 30px;
    left: 40px;
    display: flex;
    gap: 12px;
    z-index: 100;
    /* Higher z-index to ensure visibility */
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    /* Add shadow for better visibility */
}

.dot.active {
    background-color: white;
    transform: scale(1.3);
}

/* More responsive adjustments */
@media (max-width: 768px) {
    .slide-heading {
        font-size: 2.5rem;
        max-width: 90%;
    }

    .slide-subheading {
        font-size: 1.2rem;
        max-width: 90%;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .nav-buttons {
        right: 20px;
        bottom: 20px;
        gap: 10px;
    }

    .dots-container {
        left: 20px;
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .slide-heading {
        font-size: 2rem;
    }

    .slide-subheading {
        font-size: 1rem;
    }

    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

/* carasol end */




/* compani logo start */
.logo-section {
  display: flex;
  justify-content: center;
  align-items: center;
  /* flex-wrap: wrap; */
  /* padding: 1rem; */
  gap: 3rem;
  /* width: 70%; */
  /* max-width: 1000px; */
  margin: auto;
  /* margin: 2rem; */
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.logo-container {
  flex: 1 1 150px;
  /* max-width: 200px; */
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo-container img {
  width: 80%;
  height: auto;
  object-fit: contain;
}
@media (max-width: 768px) {
  .logo-section {
      flex-direction: row;
      justify-content: center;
  }
}

/* compani logo end */





/* logo start*/
.image-scroll-container {
  margin: 5vh 0;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.image-strip {
  display: flex;
  animation: scrollLeft 20s linear infinite;
  gap: 50px;
}

.image-strip img {
  width: 250px;
  height:  40px;
  object-fit: cover;
  margin-right: 10px;
  border-radius: 10px;
  background: transparent;
}

/* Animation */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* logo end */


/* cource start */

.courses-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title-cource {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title-cource h2 {
  font-size: 2.5rem;
  color: #1e293b;
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s forwards;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
}

.section-title-cource p {
  color: #64748b;
  font-size: 1.1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.2s forwards;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
}

.section-title-cource::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #3b82f6;
  opacity: 0;
  animation: fadeIn 1s 0.4s forwards;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.course-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s forwards;
  position: relative;
  border: 1px solid #e2e8f0;
  margin-bottom: 5vh;
}

.course-card:nth-child(1) {
  animation-delay: 0.4s;
}

.course-card:nth-child(2) {
  animation-delay: 0.6s;
}

.course-card:nth-child(3) {
  animation-delay: 0.8s;
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #3b82f6;
}

.course-card:hover .course-image img {
  transform: scale(1.1);
}

.course-card:hover .course-content h3::after {
  width: 100%;
}

.course-image {
  height: 180px;
  overflow: hidden;
  position: relative;
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.course-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 50%);
}

.course-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  z-index: 2;
}

.bca .course-tag {
  background-color: #3b82f6;
}

.bba .course-tag {
  background-color: #4f46e5;
}

.bhm .course-tag {
  background-color: #2563eb;
}

.course-content {
  padding: 1.5rem;
}

.course-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  position: relative;
  display: inline-block;
  color: #1e293b;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
}

.course-content h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  transition: width 0.3s ease;
}

.bca .course-content h3::after {
  background-color: #3b82f6;
}

.bba .course-content h3::after {
  background-color: #4f46e5;
}

.bhm .course-content h3::after {
  background-color: #2563eb;
}

.course-content p {
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.1em;
}

.course-details {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(100, 116, 139, 0.2);
}

.detail-item {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: #64748b;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.2em;
}

.detail-item i {
  margin-right: 5px;
  color: #3b82f6;
}

.course-button {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid transparent;
  margin-bottom: 1.2rem;
}

.course-button:hover {
  transform: translateY(-3px);
}

.bca .course-button {
  background-color: #3b82f6;
  color: #fff;

}

.bca .course-button:hover {
  background-color: #2563eb;
}

.bba .course-button {
  background-color: #4f46e5;
  color: #fff;
}

.bba .course-button:hover {
  background-color: #4338ca;
}

.bhm .course-button {
  background-color: #2563eb;
  color: #fff;
}

.bhm .course-button:hover {
  background-color: #1d4ed8;
}

/* Progress Bar Styles */
.progress-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}

.progress-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #64748b;
  width: 30%;
}

.progress-bar-container {
  background-color: #e2e8f0;
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
  width: 60%;
}

.progress-bar {
  height: 100%;
  width: 0;
  border-radius: 4px;
  transition: width 1.5s ease-in-out;
}

.progress-percentage {
  width: 10%;
  text-align: right;
  font-size: 0.9rem;
  font-weight: 600;
  color: #64748b;
}

.bca .progress-bar {
  background-color: #3b82f6;
}

.bba .progress-bar {
  background-color: #4f46e5;
}

.bhm .progress-bar {
  background-color: #2563eb;
}

@keyframes fadeUp {
  0% {
      opacity: 0;
      transform: translateY(30px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}

@media (max-width: 768px) {
  .courses-grid {
      grid-template-columns: 1fr;
  }
  
  .section-title-cource h2 {
      font-size: 2rem;
  }

  body {
      padding: 1rem;
  }
}

@media (max-width: 480px) {
  .course-details {
      flex-direction: column;
      gap: 0.8rem;
  }
  
  .section-title-cource h2 {
      font-size: 1.8rem;
  }
  
  .course-content h3 {
      font-size: 1.3rem;
  }
  
  .progress-container {
      flex-wrap: wrap;
  }
  
  .progress-label {
      width: 100%;
      margin-bottom: 5px;
  }
  
  .progress-bar-container {
      width: 75%;
  }
  
  .progress-percentage {
      width: 25%;
  }
}
/* corses end */






/* about start */
:root {
  --primary-color: #3a1c71;
  --secondary-color: #d76d77;
  --accent-color: #ffaf7b;
  --light-color: #f8f9fa;
  --dark-color: #212529;
}

.about-section {
  padding: 5rem 0;
  background-color: #bdd0f2d8;
  border-radius: 20px;
}

.about-section-title {
  position: relative;
  margin-bottom: 3rem;
  color: var(--primary-color);
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
}

.about-section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
}

.about-content {
  padding: 2rem;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
}

.stats-container {
  max-width: 800px;
  margin: 0 auto;
}

.stats-item {
  text-align: center;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.stats-item:hover {
  transform: translateY(-10px);
}

.stats-item .number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.counter1,.counter2,.counter3{
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
}
.stats-item .label {
  font-size: 1.1rem;
  color: #555;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
}

@media (max-width: 768px) {
  .stats-item {
      margin-bottom: 1.5rem;
  }
}
/* about end */





/* feacture start */

/* feacture end */






/* rodemap start */
 
.roadmap {
  position: relative;
  width: 100%;
  max-width: 800px;
  padding: 60px 0;
  margin: auto;
}

.timeline-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #2563eb, #1e40af);
  transform: translateX(-50%);
}

.timeline-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #2563eb, #1e40af);
  transform-origin: top;
  animation: growLine 2s ease-out forwards;
}

@keyframes growLine {
  0% {
      transform: scaleY(0);
  }
  100% {
      transform: scaleY(1);
  }
}

.roadmap-item {
  position: relative;
  display: flex;
  align-items: center;
  width: 50%;
  margin-bottom: 50px;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.roadmap-item.left {
  left: 0;
  justify-content: flex-end;
  text-align: right;
}

.roadmap-item.right {
  left: 50%;
  justify-content: flex-start;
  text-align: left;
}

.icon {
  position: relative;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  margin: 0 20px;
  z-index: 2;
  box-shadow: 0 8px 16px rgba(29, 78, 216, 0.3);
  transition: transform 0.5s, box-shadow 0.5s;
}

.roadmap-item:hover .icon {
  transform: scale(1.2) rotate(10deg);
  box-shadow: 0 12px 24px rgba(29, 78, 216, 0.4);
}

.icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.3);
  z-index: -1;
  transform: scale(0);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
      transform: scale(1);
      opacity: 0.8;
  }
  70% {
      transform: scale(1.5);
      opacity: 0;
  }
  100% {
      transform: scale(1);
      opacity: 0;
  }
}

.content {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  max-width: 280px;
  transition: all 0.5s;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  transition: width 0.4s ease;
  z-index: -1;
}

.roadmap-item.right .content::before {
  left: 0;
}

.roadmap-item.left .content::before {
  right: 0;
  left: auto;
}

.roadmap-item:hover .content::before {
  width: 100%;
}

.roadmap-item:hover .content {
  color: white;
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(29, 78, 216, 0.2);
}

.content h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  color: #1e40af;
  position: relative;
  padding-bottom: 8px;
}

.content h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  transition: width 0.4s;
}

.roadmap-item.left .content h3::after {
  left: auto;
  right: 0;
}

.roadmap-item:hover .content h3::after {
  width: 60px;
  background: white;
}

.roadmap-item:hover .content h3 {
  color: white;
}

.content p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #334155;
}

.roadmap-item:hover .content p {
  color: #f0f9ff;
}

.show {
  opacity: 1;
}

/* Responsive Design - Improved */
/* Large devices (≥992px) */
@media screen and (min-width: 992px) {
  .roadmap {
      max-width: 800px;
  }
  
  .content {
      max-width: 280px;
  }
}

/* Medium devices (768px - 991px) */
@media screen and (min-width: 768px) and (max-width: 991px) {
  .roadmap {
      max-width: 700px;
      padding: 50px 0;
  }
  
  .content {
      max-width: 250px;
      padding: 18px;
  }
  
  .icon {
      width: 45px;
      height: 45px;
      font-size: 18px;
      margin: 0 15px;
  }
  
  .content h3 {
      font-size: 1.1rem;
  }
  
  .content p {
      font-size: 0.85rem;
  }
}

/* Small devices (<768px) - Single column layout */
@media screen and (max-width: 767px) {
  .roadmap {
      max-width: 100%;
      padding: 40px 0;
  }
  
  .timeline-line {
      left: 25px;
  }
  
  .roadmap-item {
      width: 100%;
      margin-left: 0;
      padding-left: 50px;
      justify-content: flex-start;
      text-align: left;
      margin-bottom: 40px;
  }
  
  .roadmap-item.left, .roadmap-item.right {
      left: 0;
      justify-content: flex-start;
      text-align: left;
  }
  
  .icon {
      position: absolute;
      left: 0;
      margin: 0;
      width: 40px;
      height: 40px;
      font-size: 16px;
  }
  
  .content {
      max-width: calc(100% - 50px);
      padding: 15px;
  }
  
  .roadmap-item.left .content h3::after {
      left: 0;
      right: auto;
  }
  
  .roadmap-item.left .content::before {
      left: 0;
      right: auto;
  }
}

/* Extra small devices (<480px) */
@media screen and (max-width: 479px) {
  .roadmap {
      padding: 30px 0;
  }
  
  .timeline-line {
      left: 20px;
  }
  
  .roadmap-item {
      padding-left: 40px;
      margin-bottom: 30px;
  }
  
  .icon {
      width: 35px;
      height: 35px;
      font-size: 14px;
  }
  
  .content {
      padding: 12px;
      max-width: calc(100% - 40px);
  }
  
  .content h3 {
      font-size: 1rem;
      padding-bottom: 6px;
      margin-bottom: 6px;
  }
  
  .content p {
      font-size: 0.8rem;
      line-height: 1.4;
  }
}
/* rodemap end */



/* gallary start */
.gallary-page{
  /* background-color: #edf6ff; */
  background-color: #edf6ff;
  border-radius: 30px;
}
.gallary-page .container {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #edf6ff;

  
}

.gallery-section {
  padding: 2rem 0;
  text-align: center;
  
}

.gallary-page h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #2c3e50;
  position: relative;
  display: inline-block;
}

.gallary-page h2:after {
  content: '';
  position: absolute;
  width: 50%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #3498db, transparent);
  bottom: -10px;
  left: 25%;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 250px);
  gap: 15px;
  margin-bottom: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transform: translateY(30px);
  opacity: 0;
  animation: fadeInUp 0.6s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-item:nth-child(7) { animation-delay: 0.7s; }
.gallery-item:nth-child(8) { animation-delay: 0.8s; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(52, 152, 219, 0.3);
  z-index: 1;
}

.view-more-btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #3498db, #2c3e50);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.view-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.3);
}

.view-more-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.view-more-btn:hover::before {
  left: 100%;
}

.gallery-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-modal.show {
  display: flex;
  opacity: 1;
  animation: fadeIn 0.3s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  position: relative;
  width: 80%;
  max-width: 900px;
  height: 80%;
  margin: auto;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  transform: scale(0.7);
  opacity: 0;
  transition: all 0.4s ease;
}

.gallery-modal.show .modal-content {
  transform: scale(1);
  opacity: 1;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 10;
  background-color: #e74c3c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.close-modal:hover {
  transform: rotate(90deg);
  background-color: #c0392b;
}

.close-modal::before,
.close-modal::after {
  content: '';
  position: absolute;
  width: 15px;
  height: 2px;
  background-color: white;
}

.close-modal::before {
  transform: rotate(45deg);
}

.close-modal::after {
  transform: rotate(-45deg);
}

.modal-gallery {
  padding: 30px;
  height: 100%;
  overflow-y: auto;
}

.modal-gallery h3 {
  margin-bottom: 20px;
  color: #2c3e50;
  font-size: 1.5rem;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.photo-grid-item {
  border-radius: 8px;
  overflow: hidden;
  height: 200px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  cursor: pointer;
}

.gallery-modal.show .photo-grid-item {
  opacity: 1;
  transform: translateY(0);
}

.gallery-modal.show .photo-grid-item:nth-child(1) { transition-delay: 0.1s; }
.gallery-modal.show .photo-grid-item:nth-child(2) { transition-delay: 0.2s; }
.gallery-modal.show .photo-grid-item:nth-child(3) { transition-delay: 0.3s; }
.gallery-modal.show .photo-grid-item:nth-child(4) { transition-delay: 0.4s; }
.gallery-modal.show .photo-grid-item:nth-child(5) { transition-delay: 0.5s; }
.gallery-modal.show .photo-grid-item:nth-child(6) { transition-delay: 0.6s; }
.gallery-modal.show .photo-grid-item:nth-child(7) { transition-delay: 0.7s; }
.gallery-modal.show .photo-grid-item:nth-child(8) { transition-delay: 0.8s; }
.gallery-modal.show .photo-grid-item:nth-child(9) { transition-delay: 0.9s; }
.gallery-modal.show .photo-grid-item:nth-child(10) { transition-delay: 1s; }
.gallery-modal.show .photo-grid-item:nth-child(11) { transition-delay: 1.1s; }
.gallery-modal.show .photo-grid-item:nth-child(12) { transition-delay: 1.2s; }

.photo-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.photo-grid-item:hover img {
  transform: scale(1.1);
}

/* Single photo popup */
.photo-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.photo-modal.show {
  display: flex;
  opacity: 1;
  animation: zoomIn 0.3s forwards;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.photo-modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.photo-container {
  position: relative;
  max-width: 100%;
  max-height: 80vh;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.photo-container img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
}

.photo-caption {
  color: white;
  margin-top: 15px;
  font-size: 1.2rem;
  text-align: center;
}

.close-photo-modal {
  position: absolute;
  top: -40px;
  right: 0;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.close-photo-modal::before,
.close-photo-modal::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 3px;
  background-color: white;
}

.close-photo-modal::before {
  transform: rotate(45deg);
}

.close-photo-modal::after {
  transform: rotate(-45deg);
}

.close-photo-modal:hover::before,
.close-photo-modal:hover::after {
  background-color: #3498db;
}

.photo-nav {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.photo-nav:hover {
  background-color: rgba(52, 152, 219, 0.8);
}

.photo-nav.prev {
  left: -75px;
}

.photo-nav.next {
  right: -75px;
}

.photo-nav::before {
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  border-top: 3px solid white;
  border-right: 3px solid white;
}

.photo-nav.prev::before {
  transform: rotate(-135deg);
  margin-left: 5px;
}

.photo-nav.next::before {
  transform: rotate(45deg);
  margin-right: 5px;
}

/* Scrollbar styling */
.modal-gallery::-webkit-scrollbar {
  width: 8px;
}

.modal-gallery::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.modal-gallery::-webkit-scrollbar-thumb {
  background: #3498db;
  border-radius: 10px;
}

.modal-gallery::-webkit-scrollbar-thumb:hover {
  background: #2980b9;
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 200px);
  }
  
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .photo-nav {
    width: 40px;
    height: 40px;
  }
  
  .photo-nav.prev {
    left: -55px;
  }
  
  .photo-nav.next {
    right: -55px;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(8, 200px);
  }
  
  .photo-grid {
    grid-template-columns: 1fr;
  }
  
  .photo-nav {
    top: auto;
    bottom: -60px;
    transform: none;
  }
  
  .photo-nav.prev {
    left: 30%;
  }
  
  .photo-nav.next {
    right: 30%;
  }
  
  .photo-caption {
    margin-bottom: 50px;
  }
}
/* gallary end */





/* contact us start */
.outreach-block {
  max-width: 1200px;
  width: 95%;
  margin: 40px auto;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  background-color: white;
  overflow: hidden;
  opacity: 0;
}

.outreach-title-area {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 15px;
}

.outreach-title-area h2 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  color: #0a2540;
  margin-bottom: 15px;
  position: relative;
}

.outreach-title-area h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(50px, 8vw, 80px);
  height: 4px;
  background: linear-gradient(90deg, #0a2540, #4a9fe0);
  border-radius: 2px;
}

.outreach-title-area p {
  color: #4a5568;
  font-size: clamp(0.9rem, 3vw, 1.1rem);
  max-width: 600px;
  margin: 0 auto;
}

.outreach-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 3vw, 30px);
  padding: 0 25px;
  
}

.details-column {
  flex: 1;
}

.details-card {
  display: flex;
  align-items: flex-start;
  margin-bottom: clamp(15px, 2.5vw, 25px);
  padding: clamp(12px, 2vw, 15px);
  border-radius: 8px;
  background-color: #f0f7ff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid #1a56db;
}

.details-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #4a9fe0;
}

.details-icon {
  margin-right: 15px;
  min-width: clamp(35px, 5vw, 40px);
  height: clamp(35px, 5vw, 40px);
  background: linear-gradient(135deg, #0a2540, #4a9fe0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: clamp(0.9rem, 3vw, 1.1rem);
}

.details-text h3 {
  font-size: clamp(1rem, 3vw, 1.2rem);
  margin-bottom: 5px;
  color: #0a2540;
}

.details-text p {
  color: #4a5568;
  font-size: clamp(0.85rem, 2vw, 1rem);
  word-break: break-word;
}

.message-column {
  flex: 1.5;
  min-width: 300px;
}

.input-block {
  margin-bottom: clamp(15px, 2.5vw, 20px);
  opacity: 0;
}

.input-block label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #0a2540;
  font-size: clamp(0.9rem, 2vw, 1rem);
}

.input-block input,
.input-block textarea,
.input-block select {
  width: 100%;
  padding: clamp(10px, 1.5vw, 12px) clamp(12px, 2vw, 15px);
  border: 1px solid #cfe0f3;
  border-radius: 8px;
  font-size: clamp(0.9rem, 2vw, 1rem);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.input-block input:focus,
.input-block textarea:focus,
.input-block select:focus {
  outline: none;
  border-color: #4a9fe0;
  box-shadow: 0 0 0 3px rgba(74, 159, 224, 0.2);
}

.input-block textarea {
  resize: vertical;
  min-height: 120px;
}

.input-row {
  display: flex;
  gap: clamp(15px, 2.5vw, 20px);
}

.input-row .input-block {
  flex: 1;
}

.send-button {
  display: inline-block;
  background: linear-gradient(90deg, #0a2540, #4a9fe0);
  color: white;
  border: none;
  padding: clamp(10px, 1.5vw, 13px) clamp(20px, 3vw, 30px);
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(26, 86, 219, 0.25);
  width: auto;
}

.send-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(26, 86, 219, 0.35);
  background: linear-gradient(90deg, #183762, #5fb8f5);
}

.send-button:active {
  transform: translateY(-1px);
}

.media-links {
  margin-top: clamp(25px, 4vw, 40px);
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 20px);
  flex-wrap: wrap;
  padding: 0 10px;
}

.media-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(40px, 5vw, 45px);
  height: clamp(40px, 5vw, 45px);
  border-radius: 50%;
  background-color: #f0f7ff;
  color: #0a2540;
  font-size: clamp(1rem, 3vw, 1.2rem);
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.media-btn:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, #0a2540, #4a9fe0);
  color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Mobile Phone (up to 480px) */
@media (max-width: 480px) {
  .outreach-block {
    width: 100%;
    margin: 15px auto;
    padding: 15px 10px;
    border-radius: 8px;
  }
  
  .outreach-title-area {
    margin-bottom: 20px;
  }
  
  .input-row {
    flex-direction: column;
    gap: 0;
  }
  
  .details-card {
    padding: 10px;
  }
  
  .details-icon {
    margin-right: 10px;
  }
  
  .send-button {
    width: 100%;
  }
  
  .media-links {
    margin-top: 20px;
  }
}

/* Mobile Phones & Small Tablets (481px to 767px) */
@media (min-width: 481px) and (max-width: 767px) {
  .outreach-block {
    width: 95%;
    margin: 20px auto;
    padding: 15px;
  }
  
  .outreach-wrapper {
    flex-direction: column;
  }
  
  .input-row {
    flex-direction: column;
    gap: 0;
  }
  
  .send-button {
    width: 100%;
  }
}

/* iPads & Tablets (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .outreach-wrapper {
    flex-direction: column;
  }
  
  .details-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .details-card {
    margin-bottom: 0;
    height: 100%;
  }
}

/* Laptops & Small Desktops (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .outreach-wrapper {
    flex-direction: row;
  }
  
  .details-column {
    flex: 0.8;
  }
  
  .message-column {
    flex: 1.2;
  }
}

/* Large Desktops & PCs (1200px and up) */
@media (min-width: 1200px) {
  .outreach-block {
    padding: 30px;
    margin: 50px auto;
  }
  
  .outreach-wrapper {
    gap: 40px;
  }
  
  .input-row {
    gap: 30px;
  }
}

/* Touch Device Optimization */
@media (hover: none) {
  .details-card:hover {
    transform: none;
  }
  
  .media-btn:hover {
    transform: none;
  }
  
  .send-button:hover {
    transform: none;
  }
  
  .details-card, .media-btn, .send-button {
    transition: background 0.3s ease;
  }
  
  .send-button:active, 
  .media-btn:active,
  .details-card:active {
    transform: scale(0.98);
  }
}
/* contact us end */




/* pacement start */
.placement-section {
  padding: 60px 0;
  background-color: #c2dcf6;
  border-radius: 30px;
}

.top {
  text-align: center;
  margin-bottom: 40px;
}

.top h2 {
  color: #333;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 2.5rem;
}

.top h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #5e72e4;
}

.text-muted{
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  font-size: large;
}

.student-card {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin: 15px;
  transition: transform 0.3s ease;
  text-align: center;
  padding: 20px;
}

.student-card:hover {
  transform: translateY(-10px);
}

.student-image {
  width: 150px;
  height: 150px;
  margin: 0 auto 15px;
  position: relative;
}

.student-image img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  border-radius: 50%;
  border: 5px solid #5e72e4;
}

.student-info {
  padding: 10px;
}

.student-name {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 5px;
}

.company-badge {
  background-color: #5e72e4;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
}

.performance-stars {
  color: #ffc107;
  margin: 10px 0;
  font-size: 16px;
}

.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}

.owl-prev, .owl-next {
  position: absolute;
  background-color: #ffffff !important;
  color: white !important;
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.owl-prev:hover, .owl-next:hover {
  opacity: 1;
  background-color: #4a5bd0 !important;
}

.owl-prev {
  left: -20px;
}

.owl-next {
  right: -20px;
  background-color: white;
}

.student-course {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 5px;
}

.student-performance {
  font-weight: 600;
  color: #343a40;
  font-size: 15px;
}

@media (max-width: 768px) {
  .owl-nav {
      position: static;
      margin-top: 20px;
      transform: none;
      display: flex;
      justify-content: center;
      gap: 20px;
  }
  
  .owl-prev, .owl-next {
      position: static;
  }
  
  .student-image {
      width: 120px;
      height: 120px;
  }
}
/* placement end */








/* testimonial start */
.testimonial-section {
  padding: 80px 20px;
  background-color: #ffffff;
  color: #333;
}
.testi-section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}
.testi-section-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  color: #2a5298;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
}
.testi-section-title h2:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #4dabf7;
  border-radius: 2px;
}
.testi-section-title p {
  font-size: 18px;
  color: #666;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
}
.testimonial-card {
  background: linear-gradient(to right, #1e3c72, #2a5298);
  border-radius: 15px;
  padding: 30px;
  margin: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  height: 280px;
  color: white;
}
.testimonial-card:before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 60px;
  height: 60px;
  background-color: #4dabf7;
  opacity: 0.2;
  border-radius: 50%;
  z-index: 0;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 3px solid #4dabf7;
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.quote-icon {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 24px;
  color: #4dabf7;
  opacity: 0.6;
}
.info h4 {
  font-size: 18px;
  margin-bottom: 5px;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
}
.info p {
  font-size: 14px;
  opacity: 0.7;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
}
.testimonial-body {
  font-size: 16px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.testimonial-body p{
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.1rem;
}
.rating {
  margin-top: 15px;
  color: #ffd700;
}
.owl-dots {
  text-align: center;
  margin-top: 30px;
}
.owl-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  border-radius: 50%;
  background-color: rgba(42, 82, 152, 0.3) !important;
  transition: all 0.3s ease;
}
.owl-dot.active {
  width: 20px;
  border-radius: 10px;
  background-color: #2a5298 !important;
}
.owl-nav {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.owl-prev, .owl-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(42, 82, 152, 0.2) !important;
  color: #2a5298 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  transition: all 0.3s ease;
  font-size: 20px !important;
}
.owl-prev:hover, .owl-next:hover {
  background-color: #2a5298 !important;
  color: white !important;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .testimonial-section {
      padding: 60px 15px;
  }
  .testi-section-title h2 {
      font-size: 28px;
  }
  .testi-section-title p {
      font-size: 16px;
  }
  .testimonial-card {
      padding: 20px;
      height: auto;
  }
  .owl-nav {
      display: none;
  }
}

/* Animation classes */
.animate-fade-in {
  animation: fadeIn 0.8s ease forwards;
}
.animate-slide-up {
  animation: slideUp 0.8s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
/* testimonial end */




/* feacture start */

/* feacture end */





/* footer start */
.footer {
  background: linear-gradient(135deg, #2c3e50, #1a252f);
  color: #fff;
  padding: 60px 0 20px;
  position: relative;
  overflow: hidden;
  margin-top: auto;
  width: 100%;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.footer-section {
  margin-bottom: 30px;
}

.footer-section h3 {
  font-size: 22px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 50px;
  height: 3px;
  background: #3498db;
  transition: width 0.3s ease;
}

.footer-section:hover h3::after {
  width: 100%;
}

.footer-section p {
  line-height: 1.6;
  color: #bdc3c7;
  font-size: 15px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
  display: flex;
  align-items: center;
}

.footer-links a i {
  margin-right: 8px;
  font-size: 12px;
  transition: transform 0.3s;
}

.footer-links a:hover {
  color: #3498db;
}

.footer-links a:hover i {
  transform: translateX(3px);
}

.contact-info {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.contact-info i {
  margin-right: 15px;
  font-size: 18px;
  color: #3498db;
  width: 20px;
  text-align: center;
  margin-top: 3px;
}

.contact-info span {
  flex: 1;
  color: #bdc3c7;
  font-size: 15px;
  line-height: 1.5;
}

.social-links {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #3498db;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s ease;
  z-index: -1;
}

.social-links a:hover::before {
  transform: scale(1);
}

.social-links a:hover {
  transform: translateY(-5px);
}

.map-container {
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
}

.map-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.map-container:hover::before {
  opacity: 1;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.newsletter-form {
  display: flex;
  margin-top: 15px;
  flex-wrap: wrap;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  min-width: 150px;
  padding: 12px 15px;
  border: none;
  border-radius: 5px;
  outline: none;
  font-size: 14px;
}

.newsletter-form button {
  background-color: #3498db;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background-color: #2980b9;
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: #bdc3c7;
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.float-up {
  animation: floatUp 3s infinite ease-in-out;
}

@keyframes floatUp {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0 10px;
  }
  
  .footer-section h3 {
    font-size: 20px;
  }
  
  .footer-container {
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
  
  .footer-section {
    margin-bottom: 25px;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }
  
  .footer-bottom {
    margin-top: 20px;
    font-size: 12px;
  }
}

@media (max-width: 400px) {
  .footer {
    padding: 30px 0 10px;
  }
  
  .footer-section h3 {
    font-size: 18px;
  }
  
  .contact-info i {
    font-size: 16px;
  }
  
  .contact-info span,
  .footer-section p {
    font-size: 14px;
  }
  
  .social-links a {
    height: 35px;
    width: 35px;
  }
}

/* Fix for very small devices */
@media (max-width: 320px) {
  .footer-container {
    padding: 0 10px;
  }
  
  .footer-section h3::after {
    bottom: -5px;
    height: 2px;
  }
}
/* footer end */
