* {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}
h1 {
  font-size: clamp(2rem, 5vw, 5rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

p {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
}
.container,
.container-fluid {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  margin: auto;
}
img {
  max-width: 100%;
  display: block;
}
/*Header Start */
header {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  padding: 20px;
}
.sticky {
  position: fixed;
  top: 0;
  z-index: 5;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.navbar-logo img {
  height: 55px;
}
header nav ul {
  list-style: none;
  display: flex;
}
header nav ul li {
  padding: 10px 20px;
  position: relative;
}
header nav ul li .active {
  color: #1c7b7b;
}
header nav ul li a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  letter-spacing: 1px;

  transition: all 0.3s;
}
header nav ul li a:hover {
  color: #1c7b7b;
}
.dropdown-menu {
  display: none;
}
header nav ul li:hover .dropdown-menu {
  display: block;
  position: absolute;
  left: 0;
  top: 100%;
  border: none;
}
header nav ul li:hover .dropdown-menu ul {
  display: block;
  margin: 10px;
}
header nav ul li:hover .dropdown-menu ul li {
  width: 150px;
  padding: 10px;
}
/* MOBILE NAVBAR */

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #1c7b7b;
  z-index: 1001;
}

/* MOBILE */
@media (max-width: 991px) {
  header {
    padding: 15px 20px;
  }

  header .container {
    align-items: center;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(7, 21, 47, 0.96);
    backdrop-filter: blur(20px);
    transition: 0.4s ease;
    padding-top: 100px;
    z-index: 1000;
    text-align: center;
  }

  nav.active {
    right: 0;
  }
  nav::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 400px;
    height: 400px;
    background: rgba(0, 194, 255, 0.15);
    filter: blur(100px);
  }

  header nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 30px;
    gap: 15px;
  }

  header nav ul li {
    width: 100%;
    padding: 10px 0;
  }

  header nav ul li a {
    color: #fff;
    font-size: 18px;
  }

  .dropdown-menu {
    position: relative !important;
    background: none;
    padding-top: 10px;
  }

  .dropdown-menu ul {
    margin: 0 !important;
    padding-left: 15px;
  }
}

@media (max-width: 991px) {
  header {
    padding: 15px 0;
  }

  nav {
    width: 100%;
    margin-top: 15px;
  }

  header nav ul {
    flex-direction: column;
    align-items: center;
    padding: 0;
    gap: 10px;
  }

  header nav ul li {
    padding: 8px 0;
  }
}
/*Header End */

/* Side Button Start */
.side-stky-button-prt {
  position: fixed;
  right: 0px;
  top: 300px;
  z-index: 5;
  writing-mode: sideways-lr;
}
.side-stky-button {
  background: #1c7b7b;
  padding: 15px 5px;
  border: none;
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
}
.side-stky-button:hover {
  background: #033f3f;
}
/* Side Button End */

/* video banner start */
.hero {
  min-height: 100vh;
  height: auto;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
}

/* Video */
.bg-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gradient Overlay */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
}

/* Glass Card */
.glass-card {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 500px;
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Text */
.glass-card h1 {
  font-size: 48px;
  margin-bottom: 15px;
  transition: 0.6s;
}

.glass-card p {
  font-size: 18px;
  margin-bottom: 25px;
  opacity: 0.85;
  transition: 0.6s;
}

/* CTA */
.cta {
  padding: 12px 28px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(135deg,#1c7b7b,#34d399);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.cta:hover {
  transform: scale(1.05);
}

/* Cards Container */
.info-cards {
  position: absolute;
  bottom: 40px;
  left: 8%;
  right: 8%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.info-cards a {
  text-decoration: none;
}

/* Individual Card */
.info-card {
  padding: 25px;
  border-radius: 18px;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  text-align: center;
  transition: 0.4s ease;
  cursor: pointer;
}

/* Icon */
.info-card .icon {
  font-size: 28px;
  margin-bottom: 10px;
}

/* Title */
.info-card h3 {
  font-size: 16px;
  font-weight: 500;
}

/* Hover Effect */
.info-card:hover {
  transform: translateY(-10px) scale(1.03);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
  .info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .info-cards {
    grid-template-columns: 2, 1fr;
    bottom: 20px;
  }
}

@media (max-width: 768px) {
  .glass-card {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 120px 20px 40px;
    max-width: 85%;
    padding: 25px;
  }

  .glass-card h1 {
    font-size: 34px;
    line-height: 1.2;
  }

  .glass-card p {
    font-size: 16px;
  }
}
/* Floating Buttons start */
.floating {
  position: fixed;
  bottom: 25px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  animation: ripple 2s infinite;
}

@media (max-width: 480px) {
  .floating {
    width: 45px;
    height: 45px;
    bottom: 15px;
  }
}

.floating svg {
  width: 24px;
  fill: #fff;
}

/* Positions */
.call {
  left: 20px;
  background: #1c47d4;
}

.whatsapp {
  right: 20px;
  background: #25d366;
}
/* Floating Buttons end */

/* Ripple Effect */
@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
/* Ripple Effect */

/* Responsive */
@media (max-width: 768px) {
  .glass-card {
    left: 5%;
    right: 5%;
  }
  .glass-card h1 {
    font-size: 32px;
  }
}
/* Responsive */

/* video banner end */

/* Achievement Section Start */
.why-aimzone {
  padding: 120px 8%;
  /* background: radial-gradient(circle at top, #0f172a, #1c7b7b); */
  background: linear-gradient(rgba(5, 57, 83, 0.849), rgb(28, 123, 123));
  color: #fff;
  overflow: hidden;
  text-align: center;
}

/* Title */
.section-title {
  font-size: 48px;
  margin-bottom: 10px;
}

.section-sub {
  opacity: 0.7;
  margin-bottom: 60px;
}

/* Stats */
.stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 60px;
}

.stat h3 {
  font-size: 36px;
  color: #00c6ff;
}

.stat p {
  font-size: 14px;
  opacity: 0.7;
}

/* Cards */
.aimzone-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* Card */
.aim-card {
  padding: 40px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.4s;
  position: relative;
}

/* Glow border */
.aim-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 25px;
  padding: 1px;
  background: linear-gradient(135deg, #00c6ff, transparent);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
}

/* Icon */
.aim-icon {
  font-size: 38px;
  margin-bottom: 15px;
}

/* List */
.aim-list {
  list-style: none;
  margin-top: 20px;
}

.aim-list li {
  margin-bottom: 12px;
  opacity: 0.85;
  transition: 0.3s;
}

.aim-list li:hover {
  transform: translateX(8px);
  opacity: 1;
}

/* Hover lift */
.aim-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .aimzone-cards {
    grid-template-columns: 1fr;
  }

  .stats {
    flex-direction: column;
    gap: 20px;
  }
}
/* Achievement Section End */

/* course section start */
.cours-list-name h4 {
  color: #1c7b7b;
  font-size: 45px;
}
.cours-list-name p {
  font-size: 20px;
}
.course-sctn .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 80px 20px;
}
.cours-list-name {
  width: 400px;
}
.ug-section {
  border-radius: 15px;
  box-shadow: 10px 5px 26px rgb(134, 134, 134);
  overflow: hidden;
  position: relative;
}
.ug-section h5 {
  color: #fff;
  font-size: 25px;
  font-weight: bold;
  position: absolute;
  bottom: 0;
  left: 20px;
}
.pg-section {
  border-radius: 15px;
  box-shadow: 10px 5px 26px rgb(134, 134, 134);
  overflow: hidden;
  position: relative;
}
.ug-section,
.pg-section {
  width: 100%;
  max-width: 400px;
}
.pg-section h5 {
  color: #fff;
  font-size: 25px;
  font-weight: bold;
  position: absolute;
  bottom: 0;
  left: 20px;
}
.course-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  overflow: hidden;
}
.course-img img {
  width: 100%;
  height: 100%;
  transition: 0.5s ease-in-out;
}
.course-img img:hover {
  transform: scale(1.1);
}
/* course section end */

/* Review section start */
.reviews {
  padding: 120px 8%;
  text-align: center;
  /* background: radial-gradient(circle at top, #020617, #000); */
  background: linear-gradient(rgba(5, 57, 83, 0.849), rgb(28, 123, 123));
  background-color: #fff;
}

/* TITLE */
.reviews .section-title {
  font-size: 42px;
  color: #fff;
}

.reviews .section-sub {
  opacity: 0.7;
  margin-bottom: 50px;
  color: #fff;
}

/* Slider */
.slider {
  position: relative;
  max-width: 600px;
  margin: auto;
  overflow: hidden;
}

.reviewslides {
  display: flex;
  transition: transform 0.6s ease;
}

/* Slide */
.slide {
  min-width: 100%;
  display: none;
}

.slide.active {
  display: block;
}

/* Card */
.review-card {
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(15px);
  background: rgba(126, 125, 125, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* User */
.user {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

/* Avatar */
.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

/* Image inside */
.avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #020617;
}

/* Optional Glow */
.avatar::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0, 198, 255, 0.2);
  filter: blur(10px);
  z-index: -1;
}

/* Stars */
.stars {
  color: gold;
  margin-top: 10px;
}

/* Nav */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  padding: 10px;
  cursor: pointer;
}

.prev {
  left: -50px;
}
.next {
  right: -50px;
}

/* Dots */
.dots {
  margin-top: 20px;
}

.dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #b5bcc5;
  border-radius: 50%;
  margin: 5px;
  cursor: pointer;
}

.dots .active {
  background: #0d4e9e;
}
/* WRAPPER */
.review-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* BLOCK */
.review-block h3 {
  margin-bottom: 20px;
}

/* CARD */
.review-card {
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
  transition: 0.3s;
}

/* TEXT */
.review-card p {
  font-size: 15px;
  margin-bottom: 10px;
}

/* STARS */
.stars {
  color: gold;
  margin-bottom: 8px;
}

/* NAME */
.review-card span {
  font-size: 13px;
  opacity: 0.7;
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .review-wrapper {
    grid-template-columns: 1fr;
  }
}
/* Review section end */

/* Review video section start */

/* VIDEO REVIEW SECTION */
.student-video-section{
    padding:120px 0;
    background:
    linear-gradient(
    135deg,
    #07152f,
    #0d2b5c);
    overflow:hidden;
}

/* HEADER */
.video-section-head{
    text-align:center;
    max-width:750px;
    margin:auto;
    margin-bottom:70px;
    color:#fff;
}

.video-section-head h2{
    font-size:55px;
    margin:20px 0;
    line-height:1.2;
}

.video-section-head p{
    line-height:1.9;
    opacity:.8;
    font-size:18px;
}

/* GRID */
.student-video-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* CARD */
.student-video-card{
    border-radius:30px;
    overflow:hidden;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(15px);
    transition:.4s;
}

.student-video-card:hover{
    transform:translateY(-12px);
}

/* THUMBNAIL */
.student-video-thumbnail{
    position:relative;
    height:260px;
    overflow:hidden;
}

.student-video-thumbnail img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.student-video-card:hover
.student-video-thumbnail img{
    transform:scale(1.08);
}

/* OVERLAY */
.student-video-thumbnail::before{
    content:'';
    position:absolute;
    inset:0;
    background:
    linear-gradient(
    to top,
    rgba(0,0,0,.7),
    transparent);
    z-index:1;
}

/* PLAY BUTTON */
.video-play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:75px;
    height:75px;
    border-radius:50%;
    background:
    linear-gradient(
    135deg,
    #00c2ff,
    #0072ff);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    font-size:24px;
    z-index:2;
    transition:.4s;
}

.video-play-btn:hover{
    transform:translate(-50%,-50%) scale(1.1);
}

/* CONTENT */
.student-video-content{
    padding:30px;
    color:#fff;
}

/* PROFILE */
.student-profile{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
}

.student-profile img{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid rgba(255,255,255,.15);
}

.student-profile h4{
    margin-bottom:5px;
}

.student-profile span{
    opacity:.7;
    font-size:14px;
}

/* TEXT */
.student-video-content p{
    line-height:1.8;
    opacity:.85;
}

/* RESPONSIVE */
@media(max-width:991px){

    .student-video-grid{
        grid-template-columns:1fr 1fr;
    }

    .video-section-head h2{
        font-size:45px;
    }

}

@media(max-width:768px){

    .student-video-section{
        padding:80px 0;
    }

    .student-video-grid{
        grid-template-columns:1fr;
    }

    .video-section-head h2{
        font-size:34px;
    }

    .student-video-thumbnail{
        height:220px;
    }

    .student-video-content{
        padding:25px;
    }

    .video-play-btn{
        width:65px;
        height:65px;
        font-size:20px;
    }

}
/* Review video section end */

/* University */
.unvrcty-sldr .container-fluid {
  margin: 100px 0px;
}
.unvrcty-sldr-head {
  text-align: center;
  margin: 50px;
}
.sub-hd {
  color: #1c7b7b;
}
.logo-carousel .logo-box {
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
}

.logo-carousel img {
  max-height: 60px;
  max-width: 120px;
  object-fit: contain;
  opacity: 0.85;
  transition: 0.3s;
}

.logo-carousel span {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #444;
}

.logo-carousel img:hover {
  opacity: 1;
}
/* University end */

/* Main Footer Start */
.main-footer {
  width: 100%;
  height: auto;
  /* background:#9fdbdb; */
  background:
    linear-gradient(rgba(5, 57, 83, 0.849), rgb(28, 123, 123)),
    url(../images/Contact-bg.jpg) no-repeat top;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  padding: 60px 20px;
}
.main-footer .container {
  display: flex;
  justify-content: space-around;
  text-align: left;
}
.main-footer .container a {
  color: #e5e5e5cc;
}
.main-footer .container a:hover {
  color: #fff;
}
.main-footer .container p {
  color: #fff;
}
.footer-part-title {
  margin-bottom: 30px;
  color: #fff;
}

.address-widget {
  list-style: none;
  padding-left: 0;
  color: #fff;
}
.address-widget li {
  margin-bottom: 10px;
}
.address-widget li i {
  margin-right: 5px;
}
.address-widget li p {
  margin: 0;
}
.address-widget a {
  text-decoration: none;
  color: #fff;
}
.address-widget a:hover {
  color: #1c7b7b;
}

.link-widget {
  list-style: none;
  padding: 0;
}
.link-widget li {
  margin-bottom: 10px;
}
.link-widget a {
  text-decoration: none;
  color: #fff;
}

.course-widget {
  list-style: none;
  padding: 0;
}
.course-widget li {
  margin-bottom: 10px;
}
.course-widget a {
  text-decoration: none;
  color: #fff;
}

.location-widget {
  list-style: none;
  padding: 0;
}
.location-widget li {
  margin-bottom: 10px;
}
.location-widget a {
  text-decoration: none;
  color: #fff;
}

@media (max-width: 768px) {
  .main-footer .container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
}
/* Main Footer End */

/* End Footer Start*/
.end-footer {
  background: #1c7b7b;
}
.end-footer p {
  text-align: center;
  color: #fff;
  margin: 0;
  padding: 10px;
}
/* End Footer End*/

@media (max-width: 768px) {
  section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 32px;
  }
}

/* Pages Start */

/* Banner Bottom Cards pages */

/* info card banner */
.inner-banner{
  position: relative;
  height: 75vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 8%;
  background-size: cover;
  background-position: center;
}

.banner-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0,0,0,0.8),
    rgba(0,0,0,0.3)
  );
}

.banner-content{
  position: relative;
  z-index: 2;
  max-width: 650px;
  color: #fff;
  animation: fadeUp 1s ease;
}

.sub-title{
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  margin-bottom: 20px;
  font-size: 14px;
  letter-spacing: 1px;
}

.banner-content h1{
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 700;
}

.banner-content p{
  font-size: 18px;
  line-height: 1.7;
  opacity: .85;
  margin-bottom: 35px;
}

.banner-buttons{
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.banner-btn{
  padding: 14px 32px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: .4s;
}

.primary-btn{
  background: linear-gradient(135deg,#1c7b7b,#34d399);
  color: #fff;
}

.secondary-btn{
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  color: #fff;
}

.banner-btn:hover{
  transform: translateY(-4px);
}

/* Individual Banner Backgrounds */

.malaysia-banner{
  background-image: url('../images/malaysia-bg.jpg');
}

.admission-banner{
  background-image: url('../images/admission-bg.jpg');
}

.fees-banner{
  background-image: url('../images/fee-bg.jpg');
}

.visa-banner{
  background-image: url('../images/visa-process-bg.jpg');
}

/* Animation */

@keyframes fadeUp{
  from{
    opacity:0;
    transform: translateY(40px);
  }
  to{
    opacity:1;
    transform: translateY(0);
  }
}

/* Responsive */

@media(max-width:768px){

  .inner-banner{
    height: 70vh;
    padding: 0 20px;
    text-align: center;
    justify-content: center;
  }

  .banner-content h1{
    font-size: 38px;
  }

  .banner-content p{
    font-size: 16px;
  }

  .banner-buttons{
    justify-content: center;
  }

}

/* info card section-1 */
.modern-page{
  padding:120px 8%;
  background:#0f172a;
  color:#fff;
}

.page-banner{
  text-align:center;
  margin-bottom:70px;
}

.page-banner h1{
  font-size:48px;
  font-weight:700;
  margin-bottom:15px;
}

.page-banner p{
  font-size:18px;
  opacity:.8;
}

.page-grid,
.pricing-grid,
.timeline,
.visa-flow{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
}

.modern-card,
.price-card,
.step-card,
.visa-card{
  padding:35px;
  border-radius:24px;
  background:rgba(255,255,255,0.06);
  backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,0.1);
  transition:.4s;
}

.modern-card:hover,
.price-card:hover,
.step-card:hover,
.visa-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 40px rgba(0,0,0,0.3);
}

.icon{
  font-size:42px;
  margin-bottom:20px;
}

.step-card span,
.number{
  width:55px;
  height:55px;
  border-radius:50%;
  background:#1c7b7b;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:20px;
  font-weight:700;
  font-size:20px;
}

h3{
  margin-bottom:15px;
}

@media(max-width:768px){

  .modern-page{
    padding:90px 20px;
  }

  .page-banner h1{
    font-size:34px;
  }

}

/* info card section-2 */
.details-section{
  padding:100px 8%;
  background:#081120;
  color:#fff;
}

.section-heading{
  text-align:center;
  max-width:700px;
  margin:auto auto 70px;
}

.section-heading span{
  display:inline-block;
  padding:8px 18px;
  border-radius:30px;
  background:rgba(255,255,255,0.08);
  margin-bottom:20px;
  font-size:14px;
  letter-spacing:1px;
}

.section-heading h2{
  font-size:48px;
  margin-bottom:20px;
}

.section-heading p{
  opacity:.8;
  line-height:1.7;
}

.details-wrapper,
.admission-grid,
.scholarship-wrapper,
.visa-support-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:25px;
}

.detail-box,
.admission-card,
.scholarship-box,
.visa-support-card{
  padding:35px;
  border-radius:24px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  backdrop-filter:blur(12px);
  transition:.4s;
}

.detail-box{
  display:flex;
  gap:20px;
  align-items:flex-start;
}

.detail-box:hover,
.admission-card:hover,
.scholarship-box:hover,
.visa-support-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 40px rgba(0,0,0,0.35);
}

.detail-icon,
.visa-icon{
  font-size:42px;
}

h3{
  margin-bottom:15px;
}

p{
  line-height:1.7;
}

@media(max-width:768px){

  .details-section{
    padding:80px 20px;
  }

  .section-heading h2{
    font-size:34px;
  }

  .detail-box{
    flex-direction:column;
  }

}

/* Banner Bottom Cards pages */

/* About Us */
/* ABOUT HERO */
.about-hero {
  position: relative;
  min-height: 100vh;
  background: url("../images/About--bg.jpg") center/cover;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5, 15, 40, 0.92),
    rgba(5, 15, 40, 0.65)
  );
}

.about-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: #fff;
}

.about-badge {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
}

.about-content h1 {
  font-size: 65px;
  line-height: 1.1;
  margin-bottom: 25px;
}

.about-content p {
  font-size: 18px;
  line-height: 1.8;
  opacity: 0.85;
  margin-bottom: 35px;
}

.about-btns {
  display: flex;
  gap: 20px;
}

.about-btn {
  padding: 14px 35px;
  border-radius: 40px;
  text-decoration: none;
  transition: 0.4s;
  font-weight: 600;
}

.primary-btn {
  background: linear-gradient(135deg,#1c7b7b,#34d399);
  color: #fff;
}

.secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.about-btn:hover {
  transform: translateY(-5px);
}

/* ABOUT INTRO */
.about-intro {
  padding: 120px 0;
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 30px;
}

.section-tag {
  color: #1c7b7b;
  font-weight: 700;
  letter-spacing: 2px;
}

.about-text h2 {
  font-size: 48px;
  margin: 20px 0;
}

.about-text p {
  line-height: 1.9;
  color: #555;
}

.about-features {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.feature-box {
  flex: 1;
  padding: 25px;
  border-radius: 20px;
  background: #f5f7fb;
  text-align: center;
}

.feature-box h3 {
  font-size: 35px;
  color: #1c7b7b;
}

/* WHY SECTION */
.why-about {
  padding: 120px 0;
  background: linear-gradient(135deg, #07152f, #0d2b5c);
  color: #fff;
}

.section-head {
  text-align: center;
  margin-bottom: 70px;
}

.section-head h2 {
  font-size: 50px;
  margin-top: 15px;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-card {
  padding: 40px 30px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.4s;
}

.why-card:hover {
  transform: translateY(-12px);
}

.why-icon {
  font-size: 45px;
  margin-bottom: 20px;
}

/* JOURNEY */
.journey-section {
  padding: 120px 0;
  background: #f7f9fc;
}

.journey-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

.journey-step {
  background: #fff;
  padding: 35px 25px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.journey-step span {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #00c2ff, #0072ff);
  color: #fff;
  font-weight: bold;
  margin-bottom: 20px;
}

/* MISSION */
.mission-section {
  padding: 120px 0;
  background: #07152f;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.mission-card {
  padding: 50px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}

.mission-card h2 {
  margin-bottom: 20px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .about-grid,
  .mission-grid,
  .why-cards,
  .journey-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .about-content h1 {
    font-size: 50px;
  }
}

@media (max-width: 768px) {
  .about-grid,
  .mission-grid,
  .why-cards,
  .journey-wrapper {
    grid-template-columns: 1fr;
  }

  .about-content h1 {
    font-size: 38px;
  }

  .about-btns {
    flex-direction: column;
  }

  .about-features {
    flex-direction: column;
  }

  .section-head h2,
  .about-text h2 {
    font-size: 34px;
  }
}
/* About Us */

/* Contact */

/* CONTACT HERO */
.contact-hero{
    position:relative;
    min-height:70vh;
    background:
    url('../images/Contact-bg.jpg')
    center/cover;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.contact-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
    135deg,
    rgba(5,15,40,.92),
    rgba(5,15,40,.65));
}

.contact-hero-content{
    position:relative;
    z-index:2;
    max-width:750px;
    color:#fff;
}

.contact-tag{
    display:inline-block;
    padding:10px 20px;
    border-radius:30px;
    background:rgba(255,255,255,.1);
    border:1px solid rgba(255,255,255,.1);
    backdrop-filter:blur(10px);
    margin-bottom:25px;
    font-size:14px;
    letter-spacing:2px;
}

.contact-hero-content h1{
    font-size:65px;
    line-height:1.1;
    margin-bottom:25px;
}

.contact-hero-content p{
    font-size:18px;
    line-height:1.8;
    opacity:.85;
}

/* CONTACT SECTION */
.contact-section{
    padding:120px 0;
    background:#f7f9fc;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:start;
}

/* LEFT */
.contact-info h2{
    font-size:45px;
    margin:15px 0 20px;
}

.contact-info p{
    color:#666;
    line-height:1.8;
}

/* CONTACT CARD */
.contact-card{
    display:flex;
    gap:20px;
    padding:25px;
    margin-top:25px;
    border-radius:20px;
    background:#fff;
    box-shadow:0 10px 40px rgba(0,0,0,.05);
    transition:.4s;
}

.contact-card:hover{
    transform:translateY(-8px);
}

.contact-icon{
    min-width:60px;
    height:60px;
    border-radius:18px;
    background: linear-gradient(135deg,#1c7b7b,#34d399);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:22px;
}

/* SOCIAL */
.social-links{
    display:flex;
    gap:15px;
    margin-top:40px;
}

.social-links a{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#1c7b7b;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.4s;
}

.social-links a:hover{
    transform:translateY(-5px);
    background:#1c7b7b;
    color:#fff;
}

/* FORM BOX */
.contact-form-box{
    background:#fff;
    padding:50px;
    border-radius:30px;
    box-shadow:0 20px 60px rgba(0,0,0,.06);
}

.contact-form-box h2{
    font-size:40px;
    margin:15px 0 35px;
}

/* FORM */
.contact-form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    border:none;
    outline:none;
    padding:18px 20px;
    border-radius:15px;
    background:#f5f7fb;
    font-size:16px;
}

.form-group textarea{
    resize:none;
}

/* BUTTON */
.contact-btn{
    border:none;
    padding:18px;
    border-radius:15px;
    background: linear-gradient(135deg,#1c7b7b,#34d399);
    color: #fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.4s;
}

.contact-btn:hover{
    transform:translateY(-5px);
}

/* MAP */
.map-section iframe{
    width:100%;
    height:500px;
    border:none;
    display:block;
}

/* RESPONSIVE */
@media(max-width:991px){

    .contact-wrapper{
        grid-template-columns:1fr;
    }

    .contact-hero-content h1{
        font-size:50px;
    }

}

@media(max-width:768px){

    .contact-section{
        padding:80px 0;
    }

    .contact-form-box{
        padding:30px 20px;
    }

    .contact-info h2,
    .contact-form-box h2{
        font-size:32px;
    }

    .contact-hero-content h1{
        font-size:38px;
    }

    .contact-hero{
        min-height:60vh;
    }

    .social-links{
        flex-wrap:wrap;
    }

    .contact-card{
        padding:20px;
    }

}

/* Contact */

/* Courses 1 */
/* COURSES HERO */
.courses-hero {
  position: relative;
  min-height: 75vh;
  background: url("../images/Course-bg.jpg") center/cover;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.courses-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5, 15, 40, 0.92),
    rgba(5, 15, 40, 0.65)
  );
}

.courses-hero-content{
    position:relative;
    z-index:2;
    max-width:750px;
    color:#fff;
}

.courses-tag{
    display:inline-block;
    padding:10px 22px;
    border-radius:30px;
    background:rgba(255,255,255,.1);
    border:1px solid rgba(255,255,255,.12);
    backdrop-filter:blur(10px);
    margin-bottom:25px;
    letter-spacing:2px;
    font-size:14px;
}

.courses-hero-content h1{
    font-size:65px;
    line-height:1.1;
    margin-bottom:25px;
}

.courses-hero-content p{
    font-size:18px;
    line-height:1.8;
    opacity:.85;
}

/* FILTER */
.course-filter-section{
    padding:40px 0;
    background:#fff;
    position:sticky;
    top:85px;
    z-index:20;
    box-shadow:0 5px 20px rgba(0,0,0,.04);
}

.filter-wrapper{
    display:flex;
    gap:15px;
    justify-content:center;
    flex-wrap:wrap;
}

.filter-btn{
    border:none;
    padding:14px 28px;
    border-radius:40px;
    background:#f5f7fb;
    cursor:pointer;
    transition:.4s;
    font-weight:600;
}

.filter-btn.active,
.filter-btn:hover{
    background: linear-gradient(135deg,#1c7b7b,#34d399);
    color: #fff;
}

/* COURSES */
.courses-section{
    padding:120px 0;
    background:#f7f9fc;
}

.courses-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

/* CARD */
.course-card{
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 15px 50px rgba(0,0,0,.06);
    transition:.4s;
}

.course-card:hover{
    transform:translateY(-12px);
}

/* IMAGE */
.course-image{
    position:relative;
    overflow:hidden;
}

.course-image img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:.5s;
}

.course-card:hover .course-image img{
    transform:scale(1.08);
}

.course-badge{
    position:absolute;
    top:20px;
    left:20px;
    background: linear-gradient(135deg,#1c7b7b,#34d399);
    color: #fff;
    padding:10px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

/* CONTENT */
.course-content{
    padding:35px;
}

.course-category{
    color:#1c7b7b;
    font-weight:600;
    font-size:14px;
    letter-spacing:1px;
}

.course-content h3{
    font-size:30px;
    margin:15px 0;
    line-height:1.3;
}

.course-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

/* META */
.course-meta{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:30px;
}

.course-meta span{
    display:flex;
    align-items:center;
    gap:8px;
    color:#555;
    font-size:14px;
}

/* BUTTON */
.course-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 28px;
    border-radius:40px;
    background: linear-gradient(135deg,#1c7b7b,#34d399);
    color: #fff;
    text-decoration:none;
    font-weight:600;
    transition:.4s;
}

.course-btn:hover{
    transform:translateY(-5px);
}

/* RESPONSIVE */
@media(max-width:991px){

    .courses-grid{
        grid-template-columns:1fr;
    }

    .courses-hero-content h1{
        font-size:50px;
    }

}

@media(max-width:768px){

    .courses-section{
        padding:80px 0;
    }

    .courses-hero{
        min-height:60vh;
    }

    .courses-hero-content h1{
        font-size:38px;
    }

    .course-content{
        padding:25px 20px;
    }

    .course-content h3{
        font-size:24px;
    }

    .filter-wrapper{
        justify-content:flex-start;
        overflow-x:auto;
        padding-bottom:10px;
        scrollbar-width:none;
    }

    .filter-wrapper::-webkit-scrollbar{
        display:none;
    }

    .filter-btn{
        white-space:nowrap;
    }

}

/* Courses 1 */

/* Universities */
/* HERO */
.universities-hero{
    position:relative;
    min-height:75vh;
    background:
    url('../images/university/university-main-banner.jpg')
    center/cover;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.universities-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
    135deg,
    rgba(5,15,40,.92),
    rgba(5,15,40,.65));
}

.universities-hero-content{
    position:relative;
    z-index:2;
    max-width:750px;
    color:#fff;
}

.universities-tag{
    display:inline-block;
    padding:10px 20px;
    border-radius:30px;
    background:rgba(255,255,255,.1);
    border:1px solid rgba(255,255,255,.1);
    backdrop-filter:blur(10px);
    margin-bottom:25px;
    font-size:14px;
    letter-spacing:2px;
}

.universities-hero-content h1{
    font-size:65px;
    line-height:1.1;
    margin-bottom:25px;
}

.universities-hero-content p{
    font-size:18px;
    line-height:1.8;
    opacity:.85;
}

/* FILTER */
.university-filter-section{
    padding:40px 0;
    background:#fff;
}

.university-filter-wrapper{
    display:flex;
    gap:20px;
    justify-content:center;
    flex-wrap:wrap;
}

.university-filter-wrapper input,
.university-filter-wrapper select{
    border:none;
    outline:none;
    padding:18px 20px;
    border-radius:15px;
    background:#f5f7fb;
    min-width:280px;
    font-size:16px;
}

/* UNIVERSITIES */
.universities-page-section{
    padding:120px 0;
    background:#f7f9fc;
}

.universities-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

/* CARD */
.university-card{
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 15px 50px rgba(0,0,0,.06);
    transition:.4s;
}

.university-card:hover{
    transform:translateY(-12px);
}

/* IMAGE */
.university-image{
    position:relative;
    height:280px;
    overflow:hidden;
}

.university-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.university-card:hover .university-image img{
    transform:scale(1.08);
}

/* BADGE */
.university-badge{
    position:absolute;
    top:20px;
    left:20px;
    padding:10px 18px;
    border-radius:30px;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    color:#fff;
    font-size:14px;
    border:1px solid rgba(255,255,255,.15);
}

/* CONTENT */
.university-content{
    padding:35px;
}

.university-logo{
    width:120px;
    height:70px;
    margin-bottom:25px;
}

.university-logo img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.university-content h3{
    font-size:30px;
    line-height:1.3;
    margin-bottom:18px;
}

.university-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

/* META */
.university-meta{
    display:flex;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:30px;
    color:#555;
}

.university-meta div{
    display:flex;
    align-items:center;
    gap:8px;
}

/* BUTTON */
.university-btn{
    display:inline-block;
    padding:15px 30px;
    border-radius:50px;
    background: linear-gradient(135deg,#1c7b7b,#34d399);
    color: #fff;
    text-decoration:none;
    transition:.4s;
    font-weight:600;
}

.university-btn:hover{
    transform:translateY(-5px);
}

/* RESPONSIVE */
@media(max-width:991px){

    .universities-grid{
        grid-template-columns:1fr;
    }

    .universities-hero-content h1{
        font-size:50px;
    }

}

@media(max-width:768px){

    .universities-page-section{
        padding:80px 0;
    }

    .universities-hero{
        min-height:60vh;
    }

    .universities-hero-content h1{
        font-size:38px;
    }

    .university-content{
        padding:25px;
    }

    .university-content h3{
        font-size:24px;
    }

    .university-image{
        height:220px;
    }

    .university-meta{
        flex-direction:column;
        gap:10px;
    }

    .university-filter-wrapper input,
    .university-filter-wrapper select{
        width:100%;
        min-width:100%;
    }

}

/* Universities */

/* University Details */

/* HERO */
.university-details-hero{
    position:relative;
    min-height:70vh;
    background:
    url('../images/university/university-banner.jpg')
    center/cover;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.details-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
    135deg,
    rgba(5,15,40,.92),
    rgba(5,15,40,.65));
}

.details-hero-content{
    position:relative;
    z-index:2;
    max-width:700px;
    color:#fff;
}

.details-tag{
    display:inline-block;
    padding:10px 20px;
    border-radius:30px;
    background:rgba(255,255,255,.1);
    border:1px solid rgba(255,255,255,.1);
    backdrop-filter:blur(10px);
    margin-bottom:25px;
    font-size:14px;
    letter-spacing:2px;
}

.details-hero-content h1{
    font-size:65px;
    margin-bottom:20px;
    line-height:1.1;
}

.details-hero-content p{
    font-size:18px;
    line-height:1.8;
    opacity:.85;
}

/* SECTION */
.university-details-section{
    padding:120px 0;
    background:#f7f9fc;
}

.details-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
}

/* IMAGE */
.details-image{
    border-radius:30px;
    overflow:hidden;
    margin-bottom:40px;
}

.details-image img{
    width:100%;
    display:block;
}

/* CARD */
.details-card{
    background:#fff;
    padding:40px;
    border-radius:30px;
    margin-bottom:35px;
    box-shadow:0 15px 50px rgba(0,0,0,.05);
}

.details-card h2{
    font-size:38px;
    margin:15px 0 25px;
}

.details-card p{
    color:#666;
    line-height:1.9;
}

/* COURSE LIST */
.course-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.course-item{
    display:flex;
    align-items:center;
    gap:15px;
    padding:18px 20px;
    border-radius:15px;
    background:#f5f7fb;
    font-weight:500;
}

.course-item i{
    color:#1c7b7b;
}

/* GALLERY */
.gallery-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.gallery-grid img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:20px;
}

/* SIDEBAR */
.details-sidebar{
    position:sticky;
    top:120px;
    height:fit-content;
}

.sidebar-card{
    background:#fff;
    padding:35px;
    border-radius:30px;
    margin-bottom:30px;
    box-shadow:0 15px 50px rgba(0,0,0,.05);
}

.sidebar-card h3{
    margin-bottom:25px;
    font-size:28px;
}

/* INFO */
.sidebar-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.sidebar-card ul li{
    display:flex;
    justify-content:space-between;
    padding:15px 0;
    border-bottom:1px solid #eee;
}

.sidebar-card ul li:last-child{
    border:none;
}

.sidebar-card ul li span{
    color:#666;
}

/* APPLY */
.apply-card{
    background:
    linear-gradient(135deg,#07152f,#0d2b5c);
    color:#fff;
}

.apply-card p{
    color:rgba(255,255,255,.8);
    margin-bottom:30px;
}

/* BUTTON */
.apply-btn{
    display:inline-block;
    padding:15px 30px;
    border-radius:50px;
    background: linear-gradient(135deg,#1c7b7b,#34d399);
    color: #fff;
    text-decoration:none;
    font-weight:600;
    transition:.4s;
}

.apply-btn:hover{
    transform:translateY(-5px);
}

/* CONTACT */
.sidebar-contact{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.sidebar-contact div{
    display:flex;
    align-items:center;
    gap:15px;
    color:#555;
}
.sidebar-contact a {
  text-decoration: none;
  color: #555;
}

.sidebar-contact i{
    color:#0072ff;
    margin-right: 15px;
}

/* RESPONSIVE */
@media(max-width:991px){

    .details-grid{
        grid-template-columns:1fr;
    }

    .details-sidebar{
        position:relative;
        top:0;
    }

    .details-hero-content h1{
        font-size:50px;
    }

}

@media(max-width:768px){

    .university-details-section{
        padding:80px 0;
    }

    .details-card{
        padding:25px;
    }

    .details-card h2{
        font-size:30px;
    }

    .details-hero-content h1{
        font-size:38px;
    }

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-grid img{
        height:220px;
    }

    .sidebar-card{
        padding:25px;
    }

}

/* University Details */

/* Gallery */

/* HERO */
.gallery-hero{
    position:relative;
    min-height:75vh;
    background:
    url('../images/Gallery-bg.jpg')
    center/cover;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.gallery-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
    135deg,
    rgba(5,15,40,.92),
    rgba(5,15,40,.65));
}

.gallery-hero-content{
    position:relative;
    z-index:2;
    max-width:750px;
    color:#fff;
}

.gallery-tag{
    display:inline-block;
    padding:10px 20px;
    border-radius:30px;
    background:rgba(255,255,255,.1);
    border:1px solid rgba(255,255,255,.1);
    backdrop-filter:blur(10px);
    margin-bottom:25px;
    font-size:14px;
    letter-spacing:2px;
}

.gallery-hero-content h1{
    font-size:65px;
    line-height:1.1;
    margin-bottom:25px;
}

.gallery-hero-content p{
    font-size:18px;
    line-height:1.8;
    opacity:.85;
}

/* FILTER */
.gallery-filter-section{
    padding:40px 0;
    background:#fff;
}

.gallery-filter-wrapper{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.gallery-filter-btn{
    border:none;
    padding:14px 28px;
    border-radius:50px;
    background:#f1f5f9;
    cursor:pointer;
    transition:.4s;
    font-weight:600;
}

.gallery-filter-btn.active,
.gallery-filter-btn:hover{
    background: linear-gradient(135deg,#1c7b7b,#34d399);
    color: #fff;
}

/* GALLERY */
.gallery-page-section{
    padding:120px 0;
    background:#f7f9fc;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

/* ITEM */
.gallery-item{
    position:relative;
    border-radius:30px;
    overflow:hidden;
    min-height:320px;
    cursor:pointer;
}

.gallery-item.large{
    grid-column:span 2;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.7s;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

/* OVERLAY */
.gallery-item::before{
    content:'';
    position:absolute;
    inset:0;
    background:
    linear-gradient(
    to top,
    rgba(0,0,0,.8),
    transparent);
    z-index:1;
}

/* CONTENT */
.gallery-content{
    position:absolute;
    left:30px;
    bottom:30px;
    z-index:2;
    color:#fff;
}

.gallery-content span{
    display:inline-block;
    margin-bottom:12px;
    padding:8px 15px;
    border-radius:30px;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    font-size:13px;
}

.gallery-content h3{
    font-size:28px;
    line-height:1.3;
}

/* VIDEO SECTION */
.gallery-video-section{
    padding:120px 0;
    background:#07152f;
}

.video-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.video-content{
    color:#fff;
}

.video-content h2{
    font-size:50px;
    margin:20px 0;
}

.video-content p{
    line-height:1.9;
    opacity:.8;
}

/* VIDEO BOX */
.video-box{
    position:relative;
    border-radius:30px;
    overflow:hidden;
}

.video-box img{
    width:100%;
    display:block;
}

/* PLAY */
.play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:90px;
    height:90px;
    border-radius:50%;
    background: linear-gradient(135deg,#1c7b7b,#34d399);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:28px;
    text-decoration:none;
    transition:.4s;
}

.play-btn:hover{
    transform:translate(-50%,-50%) scale(1.1);
}

/* RESPONSIVE */
@media(max-width:991px){

    .gallery-grid{
        grid-template-columns:1fr 1fr;
    }

    .gallery-item.large{
        grid-column:span 1;
    }

    .video-wrapper{
        grid-template-columns:1fr;
    }

    .gallery-hero-content h1{
        font-size:50px;
    }

}

@media(max-width:768px){

    .gallery-page-section,
    .gallery-video-section{
        padding:80px 0;
    }

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-item{
        min-height:280px;
    }

    .gallery-content{
        left:20px;
        bottom:20px;
    }

    .gallery-content h3{
        font-size:22px;
    }

    .gallery-hero{
        min-height:60vh;
    }

    .gallery-hero-content h1{
        font-size:38px;
    }

    .video-content h2{
        font-size:34px;
    }

    .play-btn{
        width:70px;
        height:70px;
        font-size:22px;
    }

}

/* Gallery */
