@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Marcellus&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Marcellus&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");


:root {
  --primary-color: #020202;
  --secondary-color: #4a4848;
  /* --secondary-color1		: #d08c27; */
  --secondary-color1: linear-gradient(to right, #8f3a5d, #3b3f80);
  --secondary-color2: #134883;
  --secondary-color3: #ec008c;
  /* --secondary-color3		: #a78e59; */
  --secondary-color4: #ffbf07;
  --text-color: #eadec8;
  --arrow-color: #eadec8;
  --accent-color: #ffc107;
  --white-color: #ffffff;
  --divider-color: #eaeaea;
  --dark-divider-color: #ffffff1a;
  --btn-color: #e7f4f9;
  --btn6-color: #efb708;
  --btn1-color: #a78b76;
  --othr-color: #612e11;
  --default-font: "Inter", sans-serif;
  --default-font1: "Poppins", sans-serif;
  /* --accent-font			: "Montserrat", sans-serif; */

  --center-width: 300px;
  --side-width: 200px;
  --gap: 20px;
  --duration: 0.8s;

  --global_padding: 40px 0;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

/* body {
    font-size: 20px !important;
    background: url("../img/Texturelabs_Paper_234L\ PNG\ 3.png") no-repeat center center fixed;
    background-size: cover; 
} */

body {
  font-size: 20px !important;
  background: url("../img/Texturelabs_Paper_234L%20PNG%203.png") repeat fixed;
  background-size: auto;
  background-position: center;
}

html {
  font-size: 100%;
}

a {
  text-decoration: none !important;
}

p {
  line-height: 1.8em;
  margin-bottom: 0px !important;
  margin-top: 15px;
  font-family: var(--default-font1) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--default-font1);
  font-weight: 600;
  line-height: 1.2em;
  color: var(--primary-color);
  margin-bottom: 0px !important;
}

figure {
  margin: 0 !important;
}

/* img{
	max-width: 100%;
} */

a {
  text-decoration: none;

}

a:hover {
  text-decoration: none;
  outline: 0;
}

a:focus {
  text-decoration: none;
  outline: 0;
}

html,
body {
  width: 100%;
  overflow-x: clip;
}

/* .container{
	max-width: 1320px;
} */

.image-anime {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--secondary-color1);
}

.image-anime img {
  width: 100% !important;
}

.image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.image-anime:hover {
  border: 2px solid transparent;
}


/* .fade-i {
  opacity: 0;
  animation: fadeIn 1.2s ease-in forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
} */

.fade-i {
  opacity: 0;
  transition: opacity 3s ease, transform 3s ease;
}

.fade-i.visible {
  opacity: 1;
  transform: translateY(0);
}

.image-anime.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  /* visibility: hidden; */
  overflow: hidden;
}

.reveal img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform-origin: left;
  transform-origin: left;
  transition: transform 1s ease-out, visibility 0s 0s;
  transform: translateX(-100%);
}

/* Class to trigger reveal animation */
.reveal.show img {
  transform: translateX(0);
  /* Move to normal position */
  visibility: visible;
}

.reveal1 {
  position: relative;
  display: inline-flex;
  overflow: hidden;
}

.reveal1 img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transform-origin: right;
  transform: translateX(100%);
  transition: transform 1s ease-out;
  visibility: hidden;
}

.reveal1.show img {
  transform: translateX(0);
  visibility: visible;
}

.header1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 999;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

header.sticky {
  background-size: 100% 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  /* transform: translateY(0); */
  background: rgba(255, 255, 255, 0.8);
}

header.sticky .navbar-light .navbar-nav .nav-link {
  color: var(--white-color) !important;
}

/* header.sticky .logo {
  filter: invert(1) brightness(0.1) contrast(2);
} */
header.sticky #primary li a:before {
  background: var(--primary-color);
}

header.sticky #primary li a {
  /* background-image: linear-gradient(to right, #000, #23abd4 50%, #000 50%); */
}

header.sticky .dropdown-toggle::after {
  color: var(--primary-color) !important;
}

.navbar-expand-lg .navbar-collapse {
  justify-content: center !important;
}

.logo {
  color: #fff;
}

.logo img {
  width: 200px;
  height: auto;
}

.navbar-light .navbar-nav .nav-link {
  font-size: 80% !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  color: var(--primary-color) !important;
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
  font-family: var(--default-font1) !important;
  position: relative;
  z-index: 10;
  width: auto;
}

.navbar-light .navbar-nav .nav-link:hover {
  background-color: var(--white-color) !important;
  color: var(--primary-color);
}

/* .navbar-light .navbar-nav .nav-link {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 20px 60px !important;
  border: 1px solid var(--primary-color) !important;
  border-radius: 50px !important;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1) !important;
  text-decoration: none !important;
  color: var(--primary-color) !important;
  text-transform: capitalize !important;
  transition: background 0.3s ease, color 0.3s ease !important;
} */

.navbar-light .navbar-nav .nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 20px;
  height: 100%;
  border: 1px solid #0000003f;
  border-radius: 50px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary-color);
  text-decoration: none;
  font-size: 13px;
}

/* INVISIBLE WIDTH HOLDER */
.nav-btn-spacer {
  visibility: hidden;
  white-space: nowrap;
  font-size: inherit;
  font-weight: inherit;
}

/* ANIMATED TEXT */
.nav-btn-text,
.nav-btn-text-hover {
  position: absolute;
  white-space: nowrap;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.nav-btn-text {
  transform: translateY(0);
  opacity: 1;
}

.nav-btn-text-hover {
  transform: translateY(120%);
  opacity: 0;
}

.nav-link:hover .nav-btn-text {
  transform: translateY(-120%);
  opacity: 0;
}

.nav-link:hover .nav-btn-text-hover {
  transform: translateY(0);
  opacity: 1;
}

.nav-btn-text,
.nav-btn-text-hover {
  position: absolute;
  transition: transform 0.3s ease, opacity 0.3s ease;
  color: #000 !important;
}

.nav-btn-text {
  transform: translateY(0);
  opacity: 1;
  color: var(--primary-color) !important;
}

.dropdown-toggle:hover::after {
  color: #000 !important;
}

.nav-btn-text-hover {
  transform: translateY(100%);
  opacity: 0;
}

.nav-link:hover {
  background-color: #fff;
  color: var(--primary-color) !important;
  border-color: var(--primary-color);
}

.nav-link:hover .nav-btn-text {
  transform: translateY(-100%);
  opacity: 0;
  color: var(--primary-color) !important;
}

.nav-link:hover .nav-btn-text-hover {
  transform: translateY(0);
  opacity: 1;
}

/* Dropdown Menu Styles */
/* Dropdown menu style */
.dropdown-menu {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  border: none;
  padding: 10px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Submenu positioning */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu>.dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: 0.3rem;
  margin-top: -0.5rem;
  border-radius: 12px;
  display: none;
}

/* Show submenu on hover */
.dropdown-submenu:hover>.dropdown-menu {
  display: block;
}

.dropdown-item {
  color: #222;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 8px;
  transition: background 0.3s ease;
  text-transform: uppercase;
  border-radius: 0 !important;
  width: 100%;
  font-size: 15px;
}


/* Hover arrow color */
.dropdown-toggle:hover::after {
  border-top-color: #ffff;
  /* hover color */
}


.dropdown-item:hover {
  background: var(--secondary-color1) !important;
  border-radius: none !important;
  color: #fff !important;
}

.dropdown-menu li {
  border-radius: 0 !important;
}

.dropdown-item:hover {
  background: #f0f0f0;
}

/* Mobile responsive */
@media (max-width: 991px) {
  .dropdown-submenu>.dropdown-menu {
    position: static;
    display: block;
    margin: 0;
    box-shadow: none;
  }
}

.dropdown-toggle::after {
  /* color: var(--primary-color) !important; */
  position: absolute;
  right: 11px;
  top: 15px;
}

.logo-btn {
  display: inline-block;
  padding: 8px 30px;
  font-size: 16px;
  font-weight: 500;
  color: var(--white-color);
  background-color: var(--secondary-color3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-family: var(--default-font);
  border: 1px solid var(--secondary-color3);
}

.logo-btn:hover {
  background-color: var(--secondary-color1);
  color: var(--white-color);
}

/* banner */

/* banner */

.ban {
  width: 100%;
  min-height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}


.ban-sec {
  position: relative;
  padding-top: 120px;
  padding-bottom: 30px;
  z-index: 2;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  /* height: 100vh; */
}

.bg-zoom {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  animation: zoomEffect 15s ease-in-out infinite alternate;
  will-change: transform;
}

.ban-sec::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.4);  */
  z-index: 2;
}

/* .bg-zoom::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  background: url(../img/banner-bg-shape-1.svg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 116px;
  z-index: 9;
} */

.ban-sec>*:not(.bg-zoom) {
  position: relative;
  z-index: 3;
}

.ban-cont {
  padding-top: 30px;
  padding-bottom: 50px;
}

.ban-btn {
  display: flex;
  gap: 20px;
  /* text-align: center;
  justify-content: center; */
}

.title {
  font-size: 35px !important;
  color: var(--primary-color);
  text-transform: uppercase;
  padding-top: 10px !important;
  /* font-family: "Urbanist", sans-serif; */
  font-family: var(--default-font1);
  text-transform: uppercase;
  white-space: normal;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 700;
}

.title span {
  background: var(--secondary-color1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

.sub-head {
  font-size: 18px;
  color: var(--secondary-color3);
  font-family: var(--default-font1);
  font-weight: 500;
  font-style: italic;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
  width: 100%;
  /* Take full width of container */
  padding: 10px 20px;
  background-color: #b966e721;
  width: fit-content;
  border-radius: 100px;
}

.cen {
  display: block;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.vcx {
  width: 100 !important;
  height: 100px !important;
  object-fit: contain;
}


.para {
  font-size: 80%;
  color: var(--secondary-color);
  font-weight: 400;
  font-family: var(--default-font1);
  text-align: left;
  padding-top: 10px;
  line-height: normal;
  line-height: 26px;
  margin-top: 0px !important;
}

.hero-h1 {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
  line-height: 54px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  color: var(--primary-color);
  text-align: left;
  font-family: var(--default-font);
}

.hero-subheading {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  color: var(--primary-color);
  text-align: left;
  font-family: var(--accent-font);
}

.ban-img {
  width: 100%;
  height: auto;
}

.hero-btn {
  display: inline-block;
  padding: 14px 30px;
  background: #fff;
  color: #000;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: #000;
  color: #fff;
}

@keyframes fadeUp {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }

  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

/* extraordinary button */

.extraordinary-btn1 {
  position: relative;
  background: transparent;
  color: var(--white-color);
  padding: 12px 36px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--default-font);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  /* border-radius: 50px; */
  text-decoration: none;
  border: 2px solid var(--secondary-color3);
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* box-shadow: 0 4px 15px rgba(250, 94, 7, 0.2); */
  background-color: var(--secondary-color3);
}

/* Top-down fill effect */
.extraordinary-btn1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--secondary-color1);
  z-index: -1;
  transition: height 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  border-radius: 0 0 50% 50%;
}

/* Arrow icon */
.extraordinary-btn1 i {
  transition: transform 0.4s ease;
}

/* Glow effect */
.extraordinary-btn1::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.3) 0%,
      rgba(255, 255, 255, 0) 70%);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: transform 0.6s, opacity 0.4s;
  z-index: -1;
}

/* Hover Effects */
.extraordinary-btn1:hover {
  color: white;
  /* transform: translateY(-5px); */
  /* box-shadow: 0 10px 25px rgba(250, 94, 7, 0.4); */
}

.extraordinary-btn1:hover::before {
  height: 200%;
  border-radius: 0;
}

.extraordinary-btn1:hover i {
  transform: rotate(45deg) scale(1.2);
}

/* Click effect */
.extraordinary-btn1:active {
  transform: translateY(-2px);
}

.extraordinary-btn1:active::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  transition: transform 0.3s, opacity 0.2s;
}

.olpo1 {
  display: flex;
  justify-content: center;
  width: 190px;
  margin: auto;
}

/* ***************** whatsapp icon *****************  */

.whatsapp-float {
  position: fixed;
  right: 20px;
  /* changed from left: 20px */
  bottom: 20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #25d366, #128c7e, #075e54, #34b7f1);
  background-size: 300% 300%;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  z-index: 1000;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  animation: gradientMove 5s ease infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.campus-features li {
  display: flex;
}

.campus-features li i {
  color: #ec008c;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.whatsapp-float:hover {
  transform: scale(1.1);
  text-decoration: none;
  color: #fff;
  box-shadow: 3px 3px 15px rgba(18, 140, 126, 0.5);
}

/* Bounce animation */
@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  /* bounce up 10px */
}

#backToTop {
  position: fixed;
  bottom: 30px;
  left: 30px;
  /* right er jaygay left */
  width: 45px;
  height: 45px;
  background: var(--secondary-color2);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  z-index: 999;
  transition: 0.3s ease;
}

/* ****************** */

.sticky-top::after {
  width: 100%;
  height: 3px;
  background: linear-gradient(332deg, #901007, #113391, #901007);
  background-size: 300% 300%;
  animation: gradientMove 3s ease infinite;
  content: "";
  left: 0;
  right: 0;

  bottom: 0;
  z-index: 5;
  position: absolute;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Base Button */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  padding: 16px 28px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  transition: all 0.3s ease;
  font-family: var(--default-font1);
}

/* White Variant */
.button.is-white {
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.button.is-white:hover {
  background-color: #fff;
  color: #000;
}

/* Text Animation */
.button-block {
  position: relative;
  overflow: hidden;
}

.button-text,
.button-text-hover {
  display: block;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.button-text-hover {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(100%);
  opacity: 0;
}

.button:hover .button-text {
  transform: translateY(-100%);
  opacity: 0;
}

.button:hover .button-text-hover {
  transform: translateY(0);
  opacity: 1;
}

/* Icon Animation */
.button-icon-block {
  display: inline-flex;
  margin-left: 8px;
  position: relative;
  width: 18px;
  height: 18px;
}

.button-icon,
.button-icon-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.button-icon-hover {
  transform: translate(-100%, 100%);
  opacity: 0;
}

.button:hover .button-icon {
  transform: translate(100%, -100%);
  opacity: 0;
}

.button:hover .button-icon-hover {
  transform: translate(0, 0);
  opacity: 1;
}

/* about sec */

.about-sec {
  width: 100%;
  height: auto;
  /* margin-top: 60px; */
  position: relative;
  z-index: 1;
  padding: 60px;
}

.about-sec::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  /* or left:0; jekhane chai */
  width: 100%;
  height: 100%;
  background-image: url("../img/left-right-line-small.svg");
  /* your image */
  background-size: cover;
  /* full cover */
  background-position: center;
  /* perfect alignment */
  background-repeat: no-repeat;
  opacity: 0.2;
  /* fade effect */
  z-index: -1;
  /* content er niche thakbe */
}

/* .about-sec::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0; 
    width: 100%;
    height: 100%;
    background-image: url("../img/map.png"); 
    background-size: cover;     
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;  
    z-index: -1;  
} */

.about-para {
  font-size: 32px;
  color: var(--primary-color);
  font-weight: 600;
  font-family: var(--default-font1);
  text-align: left;
  padding-top: 10px;
  line-height: normal;
  line-height: 1.33333;
  margin-top: 0px !important;
}

.btn-animated {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  padding: 14px 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  margin-top: 0px;
}

/* Light Variant (Instant Color Change) */
.btn-light {
  background: var(--secondary-color1);
  border: 1px solid #fff;
  color: var(--white-color);
}

.btn-light:hover {
  background: var(--secondary-color4);
  /* instant hover color */
  border-color: var(--secondary-color4);
  color: var(--white-color);
}

.btn-light1 {
  background: transparent;
  border: 2px solid var(--secondary-color3);
  color: var(--primary-color);
}

.btn-light1:hover {
  background: var(--secondary-color1);
  /* instant hover color */
  border-color: var(--secondary-color4);
  color: var(--white-color);
}

/* Text Animation */
.btn-text-wrap {
  position: relative;
  overflow: hidden;
}

.btn-text,
.btn-text-hover {
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
}

.btn-text-hover {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(100%);
  opacity: 0;
}

.btn-animated:hover .btn-text {
  transform: translateY(-100%);
  opacity: 0;
}

.btn-animated:hover .btn-text-hover {
  transform: translateY(0);
  opacity: 1;
}

/* Icon Animation */
.btn-icon-wrap {
  display: inline-flex;
  margin-left: 8px;
  position: relative;
  width: 18px;
  height: 18px;
}

.btn-icon,
.btn-icon-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
}

.btn-icon-hover {
  transform: translate(-100%, 100%);
  opacity: 0;
}

.btn-animated:hover .btn-icon {
  transform: translate(100%, -100%);
  opacity: 0;
}

.btn-animated:hover .btn-icon-hover {
  transform: translate(0, 0);
  opacity: 1;
}

/* mid-sec */

/* .gallery-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 300px 0px;
  }

  .gallery {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .img-card {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: transform 0.8s ease, opacity 0.8s ease;
  }

  .img-center {
    width: 630px;
    height: 440px;
    z-index: 2;
  }

  .img-left, .img-right {
    width: 300px;
    opacity: 1;
    z-index: 1;
    height: 440px;
  }

  .caption {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    color: #666;
  }

  @media (max-width: 768px) {
    .img-center { width: 200px; }
    .img-left, .img-right { width: 150px; }
  } */

/* .gallery-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 40px 0px 80px 0px;
}

.gallery {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 550px;
}



.img-center img {
    width: 580px;
    height: 440px !important;
}

.img-left img,
.img-right img {
  width: 330px; 
  height: 460px !important;
}


.img-card {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  transition: all 0.8s ease;
  overflow: hidden;
  border-radius: 16px;
}


.img-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  opacity: 0;
  transition: opacity 0.6s ease;
  border-radius: 16px;
  z-index: 1;
}




.img-title {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 32px;
  font-weight: 600;
  color: var(--white-color);
  opacity: 0;
  transition: all 0.6s ease;
  z-index: 2; 
  font-family: var(--default-font);
  
}


.img-card:hover::after,
.img-card.active::after {
  opacity: 1;
}

.img-card:hover .img-title,
.img-card.active .img-title {
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
}

.img-card:hover img {
  transform: scale(1.05);
} */

.gallery-wrap {
  position: relative;
  overflow: hidden;
  /* margin-top: 100px; */
  padding: var(--global_padding);
}

.gallery {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
}

.img-card {
  width: 300px;
  height: 460px;
  object-fit: cover;
  border-radius: 30px;
  transition: all 0.6s ease;
}

.video-card {
  position: relative;
  width: 600px;
  height: 460px;
  border-radius: 30px;
  overflow: hidden;
  transition: all 1.2s ease;
  z-index: 0;
  border: none;
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* tab-section */

.course {
  width: 100%;
  height: auto;
  margin-top: 100px;
}


.col-md-6 {
  position: relative;
}

.auto-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity .5s ease;
}

.auto-slider:first-child {
  opacity: 1;
}

.tab-mg {
  width: 100%;
  height: auto;
}

.course-sec {
  width: 100%;
  margin: auto;
  background: linear-gradient(0deg,
      rgb(255, 255, 255) 0%,
      rgb(240, 242, 255) 100%);
  border-radius: 16px;
  /* padding: 60px; */
  /* margin-top: 50px; */
  position: relative;
  z-index: 0;
  padding: var(--global_padding);
}


/* .tab-section {
  width: 100%;
  margin: auto;
  background: linear-gradient(0deg,
      rgb(255, 255, 255) 0%,
      rgb(240, 242, 255) 100%);
  border-radius: 16px;
  padding: 60px;
  margin-top: 50px;
  position: relative;
  z-index: 0;
} */

.course-sec::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  /* or left:0; jekhane chai */
  width: 100%;
  height: 100%;
  background-image: url("../img/bg-image-28.jpg");
  /* your image */
  background-size: cover;
  /* full cover */
  background-position: center;
  /* perfect alignment */
  background-repeat: no-repeat;
  opacity: 0.2;
  /* fade effect */
  z-index: -1;
}

.course .tab-button-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border: none;
}

ul#autoTab {
  display: block;
}

.course .tab-button-list li {
  margin-bottom: 20px;
}

.course .tab-button {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  position: relative !important;
  overflow: hidden;
  text-decoration: none;
  color: #000;
  background: #f1f3f9;
  border-radius: 10px;
  padding: 14px 20px !important;
  font-weight: 500;
  z-index: 1;
  transition: color 0.3s ease;
  width: 100% !important;
  justify-content: space-around !important;
  border-color: var(--secondary-color3) !important;
}

.course .tab-button img {
  height: 25px;
  width: 25px;
}

.course .tab-button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  /* background: var(--secondary-color1); */
  /* background: #2f57ef21; */
  background: rgb(248, 212, 238);
  z-index: -1;
  color: var(--white-color) !important;
}

.course .tab-button.active::before {
  animation: fillGradient 3s forwards;
  /* animation duration */
  color: var(--white-color) !important;
}

/* .course .tab-button.active {
  color: var(--white-color) !important;
} */

.tab-section .nav-pills .nav-link {
  color: var(--white-color) !important;
  background-color: var(--white-color) !important;
  border-radius: 50px !important;
  margin-right: 10px !important;
  padding: 10px 25px !important;
  font-weight: 600 !important;
  border: 1px solid transparent !important;
  transition: all 0.3s ease !important;
}

.tab-section .nav-pills .nav-link.active,
.tab-section .nav-pills .nav-link.active:focus {
  background: var(--secondary-color1) !important;
  color: var(--white-color) !important;
  transition: all 0.3s ease;
}

.tab-section .nav-pills .nav-link:hover {
  background: var(--secondary-color1) !important;
  color: var(--white-color) !important;
}

@keyframes fillGradient {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

.tab-button.active {
  color: #fff;
}

.tab-content img {
  width: 100%;
  border-radius: 12px;
  /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); */
  transition: transform 0.4s ease;
  /* width: 21% !important; */
}

.course-header .tab-content img {
  width: 21% !important;
}

.tab-content img:hover {
  transform: scale(1.03);
}

/* marque */

.marquee-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 60px 0px 0px 0px;
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee 25s linear infinite;
  /* adjust speed */
  margin-top: 50px;
}

.ws .marquee-track {

  margin-top: 0 !important;
  border: none !important;
}

.marquee-track:hover {
  animation-play-state: paused;
  /* pause on hover */
}

.testimonial-card {
  min-width: 300px;
  max-width: 300px;
  background: #000;
  color: #fff;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);

  /* subtle entrance animation */
  opacity: 0;
  transform: translateX(20px);
  animation: fadeInLeft 0.8s ease forwards;
}

.testimonial-card:nth-child(1) {
  animation-delay: 0.2s;
}

.testimonial-card:nth-child(2) {
  animation-delay: 0.4s;
}

.testimonial-card:nth-child(3) {
  animation-delay: 0.6s;
}

.testimonial-card:nth-child(4) {
  animation-delay: 0.8s;
}

.testimonial-card:nth-child(5) {
  animation-delay: 1s;
}

.testimonial-card:nth-child(6) {
  animation-delay: 1.2s;
}

.testimonial-card img.bg-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: bottom;
  /* bottom part visible */
  /* filter: brightness(0.4); */
}


.testimonial-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  background-color: #00000060;
}

.testimonial-content p {
  font-size: 15px;
}

.testimonial-content p.quote {
  font-size: 14px;
  margin-bottom: 10px;
}

.testimonial-content .author {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.testimonial-content .author img.avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.testimonial-content .author span {
  display: block;
}

/* fade in from right */
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.marquee-item {
  padding: 0 40px;
  white-space: nowrap;
  font-weight: 600;
}

/* PERFECT LOOP */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* pause on hover (optional) */
.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

.en {
  display: flex;
  justify-content: center;
  align-items: center;
}

.dsa img {

  width: 35% !important;
  height: 35% !important;
  margin: 0 auto;
}

/* course-sec */

.course-sec {
  width: 100%;
  height: auto;
  /* margin-top: 100px; */
}

.tab-sec {

  padding: 40px 20px 40px 20px;
  border-radius: 15px;
  position: relative;
  z-index: 0;
}


.tab-sec .nav-pills .nav-link {
  color: #000000;
  /* background-color: #1c1c1c; */
  border-radius: 50px;
  margin-right: 10px;
  padding: 6px 18px !important;
  font-weight: 500;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  border-color: var(--secondary-color3) !important;
}

.tab-sec .nav-pills .nav-link.active,
.tab-sec .nav-pills .nav-link.active:focus {
  background: var(--secondary-color1) !important;
  color: var(--white-color) !important;
  transition: all 0.3s ease;
  border: 1px solid var(--secondary-color3) !important;
}

.tab-sec .nav-pills .nav-link:hover {
  background: var(--secondary-color1) !important;
  color: var(--white-color) !important;
}

.tab-pane {
  margin-top: 40px;
  position: relative;
  z-index: 99;
}

.course-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}

.img_sdtc {
  width: 100px !important;
  margin: 0 auto !important;
  display: block;
  /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
}

.course-card {
  background: var(--white-color);
  border-radius: 16px;
  padding: 35px 25px 35px 25px;
  width: 100%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.041);
  transition: all 0.5s ease;
  border: 1px solid #eee;
  position: relative;
  overflow: hidden;
  z-index: 2;
  text-align: left;

}

/* ✨ Hover Effects */


.course-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.15),
      transparent 60%);
  transform: scale(0);
  transition: all 0.6s ease;
}

.course-card:hover::before {
  transform: scale(1);
}

.degree-label {
  color: var(--secondary-color3);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 8px;
  transition: color 0.4s ease;
  font-family: var(--default-font);
}

/* .course-card:hover .degree-label {
  color: var(--white-color);
} */

.course-header h2 {
  font-size: 120%;
  margin-bottom: 12px;
  color: var(--primary-color);
  transition: color 0.4s ease;
  padding-bottom: 13px;
  padding-top: 10px;
  font-family: var(--default-font);
  text-align: center;
}

.course-card .btn-light {

  width: 100%;
}

.course-meta {
  flex-direction: column;
  display: flex;
  gap: 8px;
  font-size: 14px;
  color: #555;
  margin-bottom: 18px;
  transition: color 0.4s ease;
}

.course-meta i {
  color: var(--secondary-color3);
  margin-right: 6px;
  transition: color 0.4s ease;
}

.meta-text {
  transition: color 0.4s ease;
  color: #444;
}

/* Hover effects */
/* .course-card:hover .course-meta i {
  color: var(--white-color);
}

.course-card:hover .meta-text {
  color: var(--white-color);
} */

.course-features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.course-features li {
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--primary-color);
  display: flex;
  align-items: baseline;
  transition: color 0.4s ease;
  position: relative;
  margin-bottom: 12px;
  line-height: 1.5;
}

.course-features li i {
  color: var(--secondary-color3);
  margin-right: 10px;
  font-size: 15px;
  transition: transform 0.4s ease, color 0.4s ease;
}

/* .course-card .course-card:hover .course-features li,
.course-card:hover .course-header h2 {
  color: var(--white-color);
}

.course-card:hover .course-features li i {
  color: var(--white-color);
  transform: rotate(20deg) scale(1.2);
} */

.learn-more-btn {
  display: inline-block;
  background: var(--secondary-color1);
  color: var(--white-color);
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.4s ease;
}

/* .learn-more-btn:hover {
  background: var(--white-color);
  color: var(--secondary-color3);
}

.course-card:hover .learn-more-btn {
  background: #fff;
  color: var(--secondary-color3);
} */

/* why choose us */

.why-choose {
  width: 100%;
  height: auto;
  padding: var(--global_padding);
}

/* Wrapper */
.benifit-wraps {
  margin-top: 40px;
}

.rbt-course-feature-inner h6 {
  font-size: 20px;
  margin-bottom: 15px;
}

/* Single benefit item */
.benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s ease, background 0.3s ease;
  padding: 15px 10px;
  border-radius: 10px;
  margin-bottom: 5px;
}

.benefit-item:hover {
  background: #f1f9f3;
  transform: translateX(5px);
}

.alumni-container .ny {
  padding: 30px 30px !important;
}

.ecx {
  text-align: left !important;
  margin-top: 15px !important;
}

/* Icon circle */
.icon-circle {
  width: 50px;
  height: 50px;
  /* background: var(--secondary-color1); */
  border: 1px solid var(--secondary-color3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--secondary-color3);
  flex-shrink: 0;
}

/* Text area */
.benefit-text h5 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: #111;
}

.benefit-text p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #6c757d;
}

/* stydent-testi */

.student-test {
  width: 100%;
  height: auto;
  /* margin-top: 100px; */
  background-color: #f6f6f6;
  padding: 60px 0px;
}

/* Marquee container */
.marquee-container1 {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 30px 0;
}

/* Marquee track */
.marquee-track1 {
  display: flex;
  width: max-content;
  gap: 20px;
  animation: marquee 30s linear infinite;
  /* use your testimonial marquee animation */
}

.marquee-track1:hover {
  animation-play-state: paused;
}


.marquee-right {
  animation-name: marquee;

  animation-direction: normal;

}


.marquee-left {
  animation-name: marquee;

  animation-direction: reverse;

}


@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }


}

/* Card styles */
.card {
  min-width: 280px;
  max-width: 280px;
  background: linear-gradient(135deg, #ffffff, #f0f4f8);
  border-radius: 20px;
  padding: 25px 20px 20px 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
}

.card::before {
  content: "“";
  font-size: 40px;
  color: #3b82f6;
  position: absolute;
  top: 15px;
  left: 20px;
  font-weight: bold;
}

.landing_banner h5 {
  font-size: 17px;
}

.inner_Section .title {
  font-size: 40px !important;
}

.card p {
  margin-top: 25px;
  font-size: 15px;
  line-height: 1.5;
  color: #475569;
  font-style: italic;
}

/* Star rating */
.card .rating {
  margin-top: 10px;
}

.card .rating span {
  color: #facc15;
  font-size: 16px;
  margin-right: 2px;
}

/* Profile section */
.card .profile {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.card .profile img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #3b82f6;
  margin-right: 15px;
}

.card .profile .name {
  font-weight: 600;
  font-size: 14px;
  color: #1e293b;
}

.card .profile .role {
  font-size: 12px;
  color: #64748b;
}

.bg-blue {
  background: var(--secondary-color2) !important;
  color: var(--white-color);
}

.bg-blue,
.bg-blue * {
  color: #ffffff !important;
}

/* cont-sec */

/* Left image background */
.cta {
  width: 100%;
  height: auto;
  flex: 1;
  background-image: url("../img/cont-img.webp");
  /* Replace with your image */
  background-size: cover;
  background-position: center;
  padding: 100px 0px;
  /* margin-top: 100px; */
}

/* Right form container */
.contact-form {
  flex: 1;
  background-color: #fff;
  border-radius: 20px;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.contact-form h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 40px !important;
  font-family: var(--default-font);
  text-transform: uppercase;
}

.contact-form h2 span {
  background: var(--secondary-color1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Form fields */
form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

label {
  font-weight: 500;
  color: #333;
  margin-bottom: 5px;
}

input,
textarea {
  width: 100%;
  padding: 14px 18px;
  border: none;
  background-color: #f5f5f5;
  border-radius: 25px;
  font-size: 1rem;
  outline: none;
}

textarea {
  min-height: 120px;
  resize: none;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #333;
}

.sub {
  background: var(--secondary-color1);
  color: var(--white-color);
  border: none;
  border-radius: 25px;
  padding: 14px 20px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  border: 1px solid var(--secondary-color3);
  margin-top: 20px;
}

.sub:hover {
  background: var(--accent-color);
  color: var(--white-color);
  border: 1px solid var(--accent-color);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-section {
    flex-direction: column;
  }

  .background-image {
    height: 40vh;
  }

  .contact-form {
    border-radius: 20px 20px 0 0;
    padding: 40px 30px;
  }
}

/* newsletter */

.newsletter-section {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0142b3;
  color: #fff;
  padding: 110px 40px;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.newsletter-left-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
  position: absolute;
  inset: 10% auto auto 0%;
}

.newsletter-left-image-div {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  object-fit: cover;
}

.newsletter-left-image {
  border-radius: 7px;
  width: 80px;
  min-width: 80px;
  height: 80px;
  min-height: 80px;
}

.newsletter-right-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-end;
  align-items: flex-end;
  display: flex;
  position: absolute;
  inset: 10% 0% auto auto;
}

.newsletter-right-image-div {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  display: flex;
}

.newsletter-left-image {
  border-radius: 7px;
  width: 80px;
  min-width: 80px;
  height: 80px;
  min-height: 80px;
  object-fit: cover;
}

.newsletter-content {
  max-width: 650px;
  text-align: center;
  z-index: 2;
}

.newsletter-content .subtitle {
  font-size: 15px;
  opacity: 0.8;
  margin-bottom: 12px;
}

.newsletter-content .search-line {
  font-size: 16px;
  margin-bottom: 30px;
}

.google-pill {
  background: var(--secondary-color2);
  border-radius: 30px;
  padding: 6px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 6px;
}

.google-pill i {
  color: #fbbc04;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.btn-outline,
.btn-fill {
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.btn-outline {
  border: 2px solid var(--white-color);
  color: var(--white-color);
}

.btn-outline:hover {
  background: var(--accent-color);
  color: var(--white-color);
}

.btn-fill {
  background: linear-gradient(90deg, #00c853, #00b0ff);
  color: #fff;
}

.btn-fill:hover {
  opacity: 0.9;
}

/* Side image grids */
.newsletter-images {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-images .column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-images img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  opacity: 0.9;
  transition: 0.4s;
  mix-blend-mode: multiply;
}

.newsletter-images img:hover {
  transform: scale(1.05);
  opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .newsletter-section {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
  }

  .newsletter-images {
    flex-direction: row;
    gap: 8px;
  }

  .newsletter-images img {
    width: 60px;
    height: 60px;
  }
}

/* footer */

.footer {
  padding: 60px 0 0 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.footer::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  /* or left:0; jekhane chai */
  width: 100%;
  height: 100%;
  background-image: url("../img/map.png");
  /* your image */
  background-size: cover;
  /* full cover */
  background-position: center;
  /* perfect alignment */
  background-repeat: no-repeat;
  opacity: 0.2;
  /* fade effect */
  z-index: -1;
  /* content er niche thakbe */
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 0;
}

.footer-column h2,
.footer-column h3 {
  font-weight: 700;
  margin-bottom: 15px;
  font-family: var(--default-font);
  font-size: 24px;
}

.footer-column h4 {
  margin-bottom: 5px;
  font-weight: 600;
  font-family: var(--default-font);
  font-size: 16px;
  padding-top: 26px;
  padding-bottom: 10px;
}

.footer-column p {
  margin: 0;
  /* font-size: 18px; */
  /* line-height: 1.6; */
  font-family: var(--default-font);
}

.footer-para {
  font-size: 14px;
  margin-top: 15px;
  margin-top: 15px !important;
}

.footer-column ul li a {
  margin: 0;
  font-size: 15px;
  line-height: 20px;
  font-family: var(--default-font);
  padding-bottom: 6px;
  font-weight: 500;
}

.footer-column ul li a:hover {
  color: var(--secondary-color2);
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.footer-column a {
  color: black;
  text-decoration: none;
  font-family: var(--default-font1);
}

.footer-column a:hover {
  text-decoration: underline;
}

.footer-bg-text {
  position: absolute;
  bottom: -80px;
  left: 0;
  right: 0;
  font-size: 300px;
  font-weight: 800;
  text-align: center;
  color: transparent;
  background: linear-gradient(to top, #807e7e, #e4e3e3);
  /* background: linear-gradient(to top, #8f3a5d, #3b3f80); */
  -webkit-background-clip: text;
  opacity: 0.4;
  pointer-events: none;
  z-index: -1;
}

.footer-bottom p {
  text-align: center;
  font-size: 18px;
  color: var(--primary-color);
  font-family: var(--default-font);
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 0px;
  }
}

.title-ban {
  font-size: 62px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--primary-color);
  font-weight: 700;
  font-family: var(--default-font);
}

/* --- CUSTOM CSS FOR ANIMATION --- */
.cd-headline.slide {
  display: inline-block;
  overflow: hidden;
  /* Crucial for clipping the vertical slide */
}

.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
  overflow: hidden;
  vertical-align: top;
  /* Align with the text line */
  height: 1.2em;
  /* Set a fixed height based on font size */
}

.cd-words-wrapper b {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(100%);
  /* Start below the visible area */
  transition: opacity 0.4s, transform 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  /* Custom smooth animation */
}

.cd-words-wrapper b.is-visible {
  position: relative;
  /* Take up space */
  opacity: 1;
  transform: translateY(0%);
  /* Slide into view */
}

.cd-words-wrapper b.is-hidden {
  position: absolute;
  opacity: 0;
  transform: translateY(-100%);
  /* Slide out above */
  pointer-events: none;
  /* Prevents interaction when hidden */
}

/* Gradient styling using Tailwind JIT colors */
.theme-gradient {
  /* background: linear-gradient(45deg,#ff006a,#5f27ff); */
  background: var(--secondary-color1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  /* Fallback */
  font-weight: 900;
}

/*  */

.banner-top {
  display: flex;
  margin: 0 -40px;
  margin-bottom: 10px;
}

.grid-box1 .info-card {

  width: 100% !important;

}

.banner-top .banner-badge-top {
  margin: 0 40px;
  display: flex;
  gap: 8px;
  align-items: center;

}

.role-card {
  display: flex;
  align-items: center;
  gap: 15px;
}

.erds .banner-badge-top {
  background-color: #fff;
  padding: 12px;
  /* margin: 0 10px !important; */
}

.banner-top .banner-badge-top .icon {
  margin-bottom: 8px;
  background: transparent;
}

.banner-top .banner-badge-top .subtitle {
  font-size: 14px;
  color: var(--primary-color);
  font-family: var(--default-font);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


.rating a i {
  color: #ff8f3c;
  font-style: normal;
}

/* .banner-badge-top .icon svg {
    width: 20px;   
    height: 20px;
} */

.top-circle-shape-top.top-circle-shape-top-left .top-circle-shape {
  top: 0;
  right: auto;
  left: -96px;
}

.top-circle-shape-top .top-circle-shape {
  top: 0;
}

.top-circle-shape {
  position: absolute;
  width: 240px;
  top: -2px;
  height: 240px;
  right: -96px;
  margin: 0 auto;
  background-image: linear-gradient(90deg, #cfa2e8, #637fea);
  opacity: 0.09;
  border-radius: 100%;
  box-sizing: border-box;
}

.top-circle-shape::before {
  position: absolute;
  content: "";
  background: #fff;
  border-radius: 100%;
  width: calc(100% - 60px);
  height: calc(100% - 60px);
  left: 30px;
  top: 30px;
}

.marquee-btn {
  position: relative;
  overflow: hidden;
  display: inline-block;
  padding: 3px 28px;
  border-radius: 50px;
  border: 2px solid #00000061;
  color: var(--secondary-color3);
  font-weight: 600;
  font-family: var(--default-font);
}

.marquee-btn span {
  display: inline-block;
  white-space: nowrap;
  /* animation: marqueeMove 6s linear infinite; */
  font-size: 18px;
  font-weight: 500;
}

/* Animation */
@keyframes marqueeMove {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* Main button style */
/* .gradient-border-btn {
    position: relative;
    overflow: hidden;
    padding: 12px 30px;
    border-radius: 50px;
    color: #ec008c;
    font-weight: 600;
    background: #fff; 
}


.gradient-border-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px; 
    border-radius: 50px;
    background: linear-gradient(45deg, #ec008c, #6a00ff);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}


.gradient-border-btn span {
    display: inline-block;
    white-space: nowrap;
    animation: marqueeMove 6s linear infinite;
}

@keyframes marqueeMove {
    0%   { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
} */

/* about-sec */

/* about page */

.inner_Section {
  padding: 90px 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* clip-path: ellipse(75% 60% at 50% 40%); */
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 85%, 0 100%);
}

/* .inner_Section::after {
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
}

.inner_Section::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  background: url(../img/banner-bg-shape-1.svg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 116px;
  z-index: 9;
} */
.about-ban-sec {
  width: 100%;
  height: auto;
  margin-top: 100px;
}

.counter-section {
  width: 100%;
  height: auto;
  margin-top: 100px;
  padding: 80px;
  background: linear-gradient(0deg,
      rgb(243, 242, 242) 0%,
      rgb(248, 212, 238) 100%);
}

.cont-n-sec {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.counter-box {
  flex: 1;
  min-width: 180px;
  text-align: center;
}

.counter-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.counter {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-color);
}

.plus {
  font-size: 32px;
  font-weight: 700;
  color: var(--secondary-color3);
  margin-left: 1px;
}

.increment-icon {
  font-size: 35px;
  color: var(--secondary-color3);
  margin-bottom: 20px;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  background: #f8d4ee;
  border-radius: 100%;
}

.counter-box p {
  font-size: 85%;
  color: var(--secondary-color);
  font-weight: 500;
  font-family: var(--accent-font);
  text-align: center;
  padding-top: 10px;
  line-height: normal;
  line-height: 26px;
  margin-top: 0px !important;
}

/* process */
#process-section {
  width: 100%;
  height: auto;
  margin-top: 100px;
}

.process-header {
  text-align: center;
  margin-bottom: 30px;
}

.process-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.process-item {
  cursor: pointer;
}

.top-row {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 5px;
}

.top-row .day {
  font-size: 12px;
  background: #6200ff;
  color: #fff;
  padding: 5px 10px;
  border-radius: 30px;
  font-weight: bold;
}

.top-row .day.purple {
  background: #8a33ff;
}

.top-row .day.blue {
  background: #005aff;
}

.top-row .day.pink {
  background: #ff009d;
}

.date {
  font-size: 12px;
  background: #f2f2f2;
  padding: 5px 10px;
  border-radius: 30px;
  font-weight: 600;
}

.process-item h3 {
  font-size: 22px;
  margin: 15px 0;
  width: 85%;
  font-family: var(--default-font);
}

.progress-line {
  width: 100%;
  height: 6px;
  background: #e3e3e3;
  border-radius: 50px;
  overflow: hidden;
  margin-top: 30px;
}

.progress-line span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--secondary-color3);
  border-radius: 50px;
  transition: width 1.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Bottom image */
.process-bottom img {
  width: 100%;
  border-radius: 20px;
  transition: opacity 0.4s ease;
}

.client {
  width: 100%;
  height: auto;
  margin-top: 100px;
  padding: 80px;
  background: linear-gradient(0deg,
      rgb(255, 255, 255) 0%,
      rgb(240, 242, 255) 100%);
}

.affi {
  width: 100%;
  height: auto;
  padding: var(--global_padding);
  /* padding-bottom: 0 !important; */
  background: linear-gradient(0deg, rgb(243, 242, 242) 0%, rgb(248 212 238 / 42%) 100%);
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.grid-item {
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: 0.3s ease;
}

.grid-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.grid-item img {
  width: auto;
  height: 6rem;
  border-radius: 10px;
  margin-bottom: 15px;
  object-fit: cover;
}

.grid-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-family: var(--default-font);
}

.grid-item p {
  color: #555;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 992px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .grid-container {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* faculty */

.mentor-section {
  padding: 100px 0;
  background: #f4f7fb;
}

.mentor-card {
  background: #ffffff;
  /* border-radius: 18px; */
  padding: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  border: 1px solid #e4ecf7;
}

.mentor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.mentor-img {
  position: relative;
  width: 280px;
  height: 280px;
  margin: auto;
}

.mentor-card h3 {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--default-font);
  justify-content: center;

}

.owl-item .mentor-card {
  box-shadow: none !important;
}

.mentor-card .verified {
  width: 18px !important;
  height: 18px;
}

.success-card .content {
  background-color: #fff !important;
}

.role {
  font-size: 15px;
  color: #46627c;
  margin: 5px 0 15px;
}

.meta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #344e6a;
  margin-bottom: 18px;
}

.meta .rating {
  color: #f6b900;
  font-weight: 600;
}

.pricing p {
  font-size: 14px;
  color: #6b8ba3;
  margin: 0;
}

.pricing h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 5px 0 20px;
  color: var(--secondary-color3);
  font-family: var(--accent-font);
}

.pricing h2 span {
  font-size: 15px;
  color: #7ea0b9;
  font-family: var(--accent-font);
}

.free-btn {
  display: block;
  text-align: center;
  padding: 10px 0;
  border: 1.8px solid var(--secondary-color3);
  border-radius: 10px;
  font-size: 15px;
  color: var(--primary-color);
  font-weight: 600;
  transition: 0.3s ease;
  margin-top: 30px;
}

.free-btn:hover {
  background: var(--accent-color);
  color: #fff;
  border: 1.8px solid var(--accent-color);
}

/* Owl nav arrows */
.owl-nav button i {
  background: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--secondary-color3);
  font-size: 18px;
}

.owl-nav {
  position: absolute;
  top: 40%;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.faq-section {
  width: 100%;
  height: auto;
  padding: 100px 0;
}

.faq-img {
  width: 100%;
  border-radius: 60px;
}

.faq-small-img {
  position: absolute;
  bottom: -40px;
  left: 40px;
  width: 180px;
  height: auto;
  border-radius: 50px;
}

/* Accordion Wrapper */
.accordion-item {
  border: none;
  margin-bottom: 18px;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.06);
}

/* Accordion Header */
.accordion-button {
  padding: 22px 26px;
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  background: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Remove default BS background */
.accordion-button:not(.collapsed) {
  background: #fff;
  color: var(--primary-color);
  box-shadow: none;
}

/* Remove blue border */
.accordion-button:focus {
  box-shadow: none;
  border: none;
}

/* Body content */
.accordion-body {
  padding: 22px 26px;
  font-size: 17px;
  line-height: 1.7;
  color: #4b5563;
}

/* Custom + icon design */
.accordion-button::after {
  content: "\f067";
  /* Font Awesome "+" */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px;

  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f3f4f6;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--secondary-color3);
}

/* Custom - icon when opened */
.accordion-button:not(.collapsed)::after {
  content: "\f068";
  /* Font Awesome "-" */
  background: var(--secondary-color3);
  color: #fff;
}

/* contact page */

.cont {
  width: 100%;
  height: auto;
  margin-top: 80px;
}

.cont1 {
  width: 100%;
  height: auto;
  margin-top: 70px;
  margin-bottom: 80px;
}

.form-control {
  padding: 7px 22px;
  border-bottom: 2px solid var(--secondary-color3);
  border-left: none !important;
  border-right: none !important;
  border-top: none !important;
  border-left: none !important;
  border-radius: 30px;
}

.form-control:focus {
  box-shadow: none !important;
}

.form-label {
  color: var(--secondary-color3);
  font-size: 95%;
  font-weight: 500;
  font-family: var(--default-font);
}

img.img-mg2 {
  width: 100%;
  height: 100%;
}

.image-content1 {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  /* border-radius: 20px; */
}

.responsive-map {
  overflow: hidden;
  padding-bottom: 40.25%;
  position: relative;
  height: 0;
}

.responsive-map iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

.cont1-sec {
  display: flex;
  justify-content: start;
}

.cont-mid {
  width: 100%;
  height: auto;
  margin-top: 100px;
  margin-bottom: 100px;
}

.contact-info-grid {
  width: 100%;
  background: #fff;
  text-align: center;
  margin-top: 60px;
}

.cxza {
  border: 1px solid #000;
  font-size: 14px;
}

.grid-box1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.info-card {
  background: var(--white-color);
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  border-bottom: 2px solid var(--secondary-color3);
}

.info-card:hover {
  transform: translateY(-5px);
}

.icon-circle1 {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: var(--secondary-color3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle1 i {
  font-size: 28px;
  color: #fff;
}

.info-card h5 {
  font-size: 18px;
  font-weight: 600;
  color: #0a1e10;
  margin-bottom: 10px;
  font-family: var(--default-font);
}

.info-card p,
.info-card p a {
  font-size: 15px;
  color: #666;
  margin: 0;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.3s;
  padding-top: 10px;
  font-family: var(--accent-font);
}

.info-card:hover {
  background-color: var(--btn6-color);
}

.info-card:hover h5,
.info-card:hover p,
.info-card:hover p a {
  color: #fff;
  font-family: var(--accent-font);
}

.info-card:hover {
  background: var(--secondary-color1);
  color: #fff;
}

.info-card:hover .icon-circle {
  background-color: #fff;
}

.info-card:hover .icon-circle i {
  color: var(--secondary-color3);
}

/* blog page */

.blog-section {
  padding: 80px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.08);
  transition: 0.35s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.12);
}

.blog-img img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.blog-content {
  padding: 22px;
}

.blog-category {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary-color3);
  text-transform: uppercase;
}

.blog-title {
  margin: 10px 0;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--default-font);
}

.blog-text {
  color: #4b5563;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-btn {
  color: var(--secondary-color3);
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.blog-btn:hover {
  color: var(--secondary-color4);
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 6px 0 10px;
  color: #6b7280;
  font-size: 14px;
}

.blog-meta i {
  color: var(--secondary-color3);
  margin-right: 5px;
}

/* blog-details */

.blog-details-section {
  padding: 70px 0;
  /* background: #f9fafb; */
}

.blog-details-container {
  display: flex;
  gap: 40px;
}

/* Left Side */
.blog-details-content {
  flex: 3;
}

.blog-details-img img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 25px;
}

.blog-details-meta {
  display: flex;
  gap: 18px;
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 10px;
}

.blog-details-meta i {
  color: var(--secondary-color3);
  margin-right: 5px;
}

.blog-details-title {
  margin: 10px 0 20px;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--default-font);
}

.blog-details-text p {
  font-size: 17px;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 18px;
  font-variant: var(--accent-font);
}

.blog-details-text h2 {
  font-size: 26px;
  margin: 25px 0 12px;
  color: var(--primary-color);
  font-family: var(--default-font);
  font-weight: 700;
}

.blog-details-text blockquote {
  margin: 25px 0;
  padding: 22px;
  border-left: 5px solid var(--secondary-color3);
  background: #fff;
  border-radius: 6px;
  font-style: italic;
  color: #374151;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.05);
}

/* Sidebar */
.blog-sidebar {
  flex: 1;
}

.sidebar-box {
  background: #fff;
  padding: 22px;
  margin-bottom: 25px;
  border-radius: 12px;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.06);
}

.sidebar-box h3 {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary-color3);
  font-family: var(--default-font);
  padding-bottom: 10px;
}

.sidebar-box ul {
  list-style: none;
  padding: 0;
}

.sidebar-box ul li {
  margin-bottom: 12px;
}

.sidebar-box ul li a {
  color: #4b5563;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

.sidebar-box ul li a:hover {
  color: var(--secondary-color4);
}

/* Responsive */
@media (max-width: 992px) {
  .blog-details-container {
    flex-direction: column;
  }
}

/* gallery page */
.gallery-section {
  width: 100%;
  height: auto;
  margin-top: 80px;
  margin-bottom: 100px;
}

/* Custom Gallery Tabs */
.custom-gallery-tab .nav-link {
  position: relative !important;
  padding: 10px 28px !important;
  margin: 0 8px !important;
  border-radius: 50px !important;
  background: #f0f0f0 !important;
  color: #333 !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.custom-gallery-tab .nav-link:hover {
  background: var(--secondary-color4) !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15) !important;
}

.custom-gallery-tab .nav-link.active {
  background: var(--secondary-color3) !important;
  color: #fff !important;
  transform: scale(1.1) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2) !important;
  border: none !important;
}

.custom-gallery-tab .nav-link::after {
  content: "" !important;
  position: absolute !important;
  bottom: -6px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 0 !important;
  height: 3px !important;
  background: #fff !important;
  border-radius: 2px !important;
  transition: width 0.3s ease !important;
}

.custom-gallery-tab .nav-link.active::after {
  width: 50% !important;
}

/* Tabs */
.gallery-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
  gap: 25px;
}

.gallery-tab {
  padding: 12px 30px;
  cursor: pointer;
  border-radius: 50px;
  background: #ddd;
  transition: all 0.3s;
  font-weight: 600;
  font-size: 16px;
}

.gallery-tab.active {
  background: #ff4b2b;
  color: #fff;
  transform: scale(1.1);
}

/* Unique Grid */
.gallery-tab-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  grid-auto-rows: 200px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 16px;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item::after {
  content: attr(data-category);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: #fff;
  font-weight: bold;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Optional: only slightly make every 7th item taller for aesthetics */
.gallery-tab-content a:nth-child(7n) {
  grid-row: span 2;
}

@media (max-width: 1024px) {
  .gallery-tab-content {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-tab-content a:nth-child(7n) {
    grid-row: span 1;
  }
}

@media (max-width: 600px) {
  .gallery-tab-content {
    grid-template-columns: 1fr;
    grid-auto-rows: 180px;
  }

  .gallery-tab-content a {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
}

/* course */

.course {
  width: 100%;
  height: auto;
  margin-top: 100px;
  margin-bottom: 100px;
}

.menu-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 25px;
  text-transform: uppercase;
}

.sticky-menu {
  position: sticky;
  top: 120px;
  background: linear-gradient(0deg,
      rgb(243, 242, 242) 0%,
      rgb(248, 212, 238) 100%);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #ececec;
}

.service-menu {
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-menu li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 10px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}

.service-menu li:last-child {
  border-bottom: none;
}

.service-menu li a {
  font-size: 15px;
  font-weight: 500;
  color: var(--primary-color);
  text-decoration: none;
  font-family: var(--default-font);
}

.service-menu li i {
  font-size: 14px;
  color: var(--secondary-color3);
}

.service-menu li.active a {
  color: var(--secondary-color3);
  font-weight: 700;
}

.service-menu li.active i {
  transform: translateX(4px);
  transition: 0.3s;
}

/* RIGHT SIDE CONTENT */

.course-box {
  margin-bottom: 60px;
}

.title-sm {
  font-size: 19px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-family: var(--default-font);
}

.title-sm span {
  background: var(--secondary-color1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 800;
  display: inline-block;
}

.course-box img {
  border-radius: 20px;
  margin: 25px 0;
  width: 100%;
}

/* html {
  scroll-behavior: smooth;
} */

/* -------------------------
   Shadow Boxes + Wrapper
-------------------------- */
.rbt-shadow-box {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  margin-top: 40px;
  border-left: 2px solid var(--secondary-color3);
}

/* -------------------------
   Course Thumbnail
-------------------------- */
.thuumbnail img {
  border-radius: 10px;
}

/* -------------------------
   Sticky Top Navigation
-------------------------- */
.rbt-inner-onepage-navigation {
  background: #fff;
  border-radius: 10px;
  padding: 15px 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.mainmenu {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.mainmenu li {
  flex-grow: 1;
  text-align: center;
}

.mainmenu li a {
  font-size: 15px;
  font-weight: 600;
  color: #555;
  padding: 8px 10px;
  display: inline-block;
  color: var(--secondary-color3);
  width: auto;
  height: auto;
  padding: 10px 24px;
  background-color: transparent;
  border: 1px solid var(--primary-color);
  border-radius: 30px;
  font-family: var(--default-font);
  margin: 0;
  position: relative;
  display: block;
  color: var(--color-heading);
  z-index: 2;
  padding: 10px 25px;
  border-radius: 500px;
}

.mainmenu li.current a,
.mainmenu li a:hover {
  color: var(--white-color);
  width: auto;
  height: auto;
  padding: 10px 24px;
  background-color: var(--secondary-color2);
  border: 1px solid var(--secondary-color2);
  border-radius: 30px;
  font-family: var(--default-font);
}

/* -------------------------
   Titles
-------------------------- */

/* -------------------------
   List Style (Learnings, Requirements, etc.)
-------------------------- */
.rbt-list-style-1 {
  padding: 0;
  list-style: none;
}

.rbt-list-style-1 li {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
  color: #555;
  font-size: 15px;
  font-family: var(--accent-font);
}

.rbt-list-style-1 li i {
  color: var(--secondary-color3);
  font-size: 15px;
  margin-top: 2px;
}

.accordion-body .campus-features li {
  position: relative;
  padding-left: 0;
  margin-bottom: 10px;
  font-size: 15px;
  color: #333;
}

.rbt-course-main-content li i {
  color: var(--secondary-color3);
}

.rbt-course-main-content li {
  font-size: 14px;
}

.home_ban {
  padding: 90px 0 0 0;
}

.home_ban_sec {
  padding-top: 0 !important;
}

/* -------------------------
   Accordion Style
-------------------------- */
.rbt-accordion-style .accordion-button {
  background: #faebd787;
  font-size: 16px;
  font-weight: 600;
  padding: 12px;
  /* border-bottom: 1px solid #eee; */
  box-shadow: none !important;
}

.rbt-accordion-style .accordion-button:not(.collapsed) {
  color: var(--primary-color);
}

.accordion-button::after {
  background-size: 14px;
}

/* .accordion-body {
  padding: 0;
} */

.liststyle {
  padding: 0;
  list-style: none;
}

.liststyle li {
  border-bottom: 1px solid #f1f1f1;
  padding-bottom: 15px;
}

.liststyle a {
  display: flex;
  justify-content: space-between;
  padding: 15px 5px;
  font-size: 15px;
  color: #444;
  font-family: var(--default-font);
}

.liststyle a:hover {
  background: #f9f9f9;
}

/* Left & Right inside each lesson row */
.course-content-left {
  display: flex;
  gap: 10px;
  align-items: center;
}

.course-content-right {
  text-align: right;
}

.min-lable {
  font-size: 13px;
  margin-right: 10px;
}

/* Lock Icon Row */
.course-lock i {
  color: #999;
}

/* -------------------------
   Instructor Box
-------------------------- */
.rbt-instructor .media {
  display: flex;
  gap: 20px;
}

.rbt-instructor .thumbnail img {
  width: 110px;
  height: 110px;
  border-radius: 10px;
  object-fit: cover;
}

.author-info h5 {
  font-size: 18px;
  font-weight: 700;
}

.author-info .subtitle {
  font-size: 14px;
  color: #777;
}

.rbt-meta {
  padding: 0;
  list-style: none;
}

.rbt-meta li {
  margin-bottom: 5px;
}

/* -------------------------
   Featured Review Section
-------------------------- */
.rbt-course-review {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.rbt-course-review:last-child {
  border-bottom: 0;
}

.rbt-course-review .media {
  display: flex;
  gap: 20px;
}

.rbt-course-review .thumbnail img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
}

.rbt-course-review .rating i {
  color: #ffc107;
  margin-right: 3px;
}

/* -------------------------
   Show More Button
-------------------------- */
.has-show-more {
  position: relative;
}

.has-show-more-inner-content {
  max-height: 250px;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.rbt-show-more-btn {
  display: flex;
  margin: 10px auto 0;
  text-align: center;
  font-weight: 600;
  color: var(--secondary-color3);
  cursor: pointer;
  justify-content: start;
  font-family: var(--default-font);
  font-size: 16px;
  position: relative;
}

.rbt-show-more-btn::after {
  background: linear-gradient(rgba(255, 255, 255, 0) 0%,
      rgb(255, 255, 255) 100%);
  position: absolute;
  content: "";
  left: 0;
  bottom: 100%;
  width: 100%;
  height: 80px;
}

.rbt-show-more-btn:hover {
  color: var(--secondary-color4);
}

/* Show more expanded state */
.has-show-more.expanded .has-show-more-inner-content {
  max-height: 9999px;
}

.has-show-more-inner-content {
  max-height: 300px;
  overflow-y: auto;
  transition: max-height 0.3s ease;
  position: relative;
}

.sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 119px;
  z-index: 99;
}

.course-badge-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(90deg, #d8d4fc, #c3e2ff);
  padding: 12px 15px;
  border-radius: 50px;
  width: fit-content;
  margin-bottom: 15px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff33;
  padding: 6px 18px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
}

.badge-item i {
  color: #ffb100;
  font-size: 18px;
}

.badge-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.rating-number {
  font-weight: 600;
  font-size: 15px;
}

.badge-rating i {
  color: #ff9d00;
  font-size: 16px;
}

.badge-text {
  font-size: 14px;
  color: #333;
  opacity: 0.8;
  font-weight: 500;
}

.instructor-card {
  background: linear-gradient(0deg,
      rgb(255, 255, 255) 0%,
      rgb(240, 242, 255) 100%);
  padding: 25px;
  border-radius: 20px;
  text-align: center;
  /* box-shadow: 0 8px 25px rgba(0,0,0,0.08); */
  transition: 0.3s;
  margin: 20px 0px;
}

.instructor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.instructor-card img {
  width: 110px !important;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 4px solid #ece9ff;
  display: block;
  margin: auto;
}

.instructor-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  font-family: var(--default-font);
  padding-top: 15px;
}

.instructor-card p {
  font-size: 14px;
  color: #777;
  margin: 0;
}

.recruiter-section {
  padding: 40px 0;
}

.recruiter-carousel .recruiter-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.recruiter-carousel .recruiter-item img {
  width: 130px !important;
  height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: 0.3s;
}

.recruiter-carousel .recruiter-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.student-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.course .btn-animated {
  padding: 12px 18px !important;
  font-weight: 600 !important;
  font-size: 15px !important;

}

.student-box {
  background: linear-gradient(0deg,
      rgb(243, 242, 242) 0%,
      rgb(248, 212, 238) 100%);
  border-radius: 16px;
  padding: 20px 10px 20px 10px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.student-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.student-box img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.student-box h5 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  font-family: var(--default-font);
}

.student-box p {
  font-size: 14px;
  color: #666;
  margin: 0;
  font-family: var(--accent-font);
}

.student-box p span {
  color: var(--secondary-color3);
  font-weight: 700;
}

/* Responsive */
@media (max-width: 992px) {
  .student-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .student-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .student-grid {
    grid-template-columns: 1fr;
  }
}

.student-work {
  width: 100%;
  height: auto;
  /* margin-top: 100px; */
  background: linear-gradient(0deg,
      rgb(255, 255, 255) 0%,
      rgb(240, 242, 255) 100%);
}

.student-work {
  padding: 60px 0;
}

.student-work .title-sm {
  font-size: 22px;
  font-weight: 600;
}

.student-work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.work-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

.banner-badge-top i {
  color: var(--secondary-color3);
}

/* .inner_Section .banner-badge-top {
  padding: 0 20px !important;
} */

.work-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.4s ease-in-out;
}

/* .work-item:hover img {
  transform: scale(1.1);
  width: 100%;
  height: 100%;
} */

.work-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: #fff;
}

.work-overlay h4 {
  font-size: 16px;
  margin: 0;
  color: var(--white-color);
  font-family: var(--default-font);
  text-align: center;
}

/* Hide extra gallery links */
.d-none {
  display: none;
}


/* Responsive */
@media (max-width: 992px) {
  .student-work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .student-work-grid {
    grid-template-columns: 1fr;
  }
}

.related-courses {
  padding: 60px 0px 100px 0px;
  background: linear-gradient(0deg,
      rgb(243, 242, 242) 0%,
      rgb(248, 212, 238) 100%);
  margin-top: 40px;
}

.related-courses .title-sm {
  font-size: 22px;
  font-weight: 600;
}

.related-course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.course-card1 {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  cursor: pointer;
}

.course-card1:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.course-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.course-info {
  padding: 15px;
}

.course-info h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  font-family: var(--default-font);
}

.course-info p {
  margin: 0;
  font-size: 14px;
  color: #444;
  font-family: var(--accent-font);
}

/* Responsive */
@media (max-width: 992px) {
  .related-course-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .related-course-grid {
    grid-template-columns: 1fr;
  }
}

/* admission */
.admission {
  width: 100%;
  height: auto;
  margin-top: 100px;
  margin-bottom: 100px;
}

.cta-sec {
  background: url("../img/cta-sec.jpg") no-repeat center/cover;
  padding: 60px 0;
  position: relative;
  color: #fff;
  text-align: center;
  /* margin-top: 60px; */
}

.cta-sec::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin: auto;
}

.cta-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

.cta-btn {
  display: inline-block;
  background: #ff4d4d;
  padding: 14px 35px;
  border-radius: 50px;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #e63636;
}

.eligibility-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 30px;
}

.eligibility-heading {
  font-size: 22px;
  font-weight: 700;
  margin-top: 25px;
  margin-bottom: 10px;
  font-family: var(--default-font);
}

.eligibility-text {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.eligibility-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.eligibility-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.check-icon {
  width: 100%;
  max-width: 24px;
  height: 24px;
  background-color: #b966e721;
  color: var(--secondary-color3);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
}

.eligibility-list p {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--primary-color);
}

.ws {
  padding: var(--global_padding);
  padding-top: 0 !important;
}

.tab-sec1 {
  margin-top: 40px;
  /* padding: 40px 20px 40px 20px; */
  border-radius: 15px;
  position: relative;
  z-index: 1;
}

.tab-sec1 .nav-pills {
  position: relative;
}

.tab-sec1 .nav-pills::after {
  width: 100%;
  height: 3px;
  background: linear-gradient(332deg, #901007, #113391, #901007);
  background-size: 300% 300%;
  animation: gradientMove 3s ease infinite;
  content: "";
  left: 0;
  right: 0;
  bottom: -20px;
  z-index: 5;
  position: absolute;
  display: none;
}

/* .sett_img {
  border-radius: 50% !important;
  -webkit-border-radius: 50% !important;
  -moz-border-radius: 50% !important;
  -ms-border-radius: 50% !important;
  -o-border-radius: 50% !important;
  width: 150px;
  height: 150px;
  object-fit: contain;
} */

.tab-sec1 .nav-pills .nav-link {
  color: #000;
  /* background-color: #1c1c1c; */
  border-radius: 50px;
  margin-right: 10px;
  padding: 10px 25px !important;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  border-color: var(--secondary-color3) !important;
}

.tab-sec1 .nav-pills .nav-link.active,
.tab-sec1 .nav-pills .nav-link.active:focus {
  background: var(--secondary-color1) !important;
  color: var(--white-color) !important;
  transition: all 0.3s ease;
  border: 1px solid var(--secondary-color3) !important;
}

.tab-sec1 .nav-pills .nav-link:hover {
  background: var(--secondary-color1) !important;
  color: var(--white-color) !important;
}

/* .fee-structure-sec {
    padding: 60px 0;
} */

/* Base Table */
.fee-table.attractive {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  margin-top: 40px;
}

/* Header */
.fee-table.attractive thead {
  background: var(--secondary-color3);
  color: #fff;
}

.fee-table.attractive th {
  padding: 16px;
  text-align: left;
  font-weight: 600;
}

/* Body */
.fee-table.attractive td {
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
}

/* Alternate Row */
.fee-table.attractive tbody tr:nth-child(odd) {
  background: #fafafa;
}

/* Hover */
.fee-table.attractive tbody tr:hover {
  background: #ffe7df;
  transition: 0.3s ease;
}

/* Highlight Total */
.fee-table.attractive tbody td strong {
  color: var(--secondary-color3);
  font-weight: 700;
}

/* ------------------------------
   MOBILE FRIENDLY (NO SCROLL)
-------------------------------- */
@media (max-width: 768px) {
  .fee-table.attractive thead {
    display: none;
    /* Hide header on mobile */
  }

  .fee-table.attractive,
  .fee-table.attractive tbody,
  .fee-table.attractive tr,
  .fee-table.attractive td {
    display: block;
    width: 100%;
  }

  .fee-table.attractive tr {
    margin-bottom: 20px;
    background: #fff;
    padding: 12px 10px;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  }

  .fee-table.attractive td {
    text-align: right;
    padding: 10px 12px;
    position: relative;
    border-bottom: none !important;
  }

  /* Label for each cell */
  .fee-table.attractive td:before {
    content: attr(data-label);
    position: absolute;
    left: 12px;
    top: 10px;
    font-weight: bold;
    color: #333;
    text-align: left;
  }
}

/* acceredation */

/* PROCESS SECTION */
.process-section {
  background: #fafafa;
  padding: 100px 0px;
}

/* CARD DESIGN */
.process-card {
  position: relative;
  height: 100%;
  padding: 40px 30px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
}

.step-number {
  font-size: 40px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.08);
  position: absolute;
  top: 1px;
  right: 3px;
}

/* TITLE */
.process-card h5 {
  font-weight: 600;
  margin-bottom: 15px;
  padding-right: 40px;
  font-family: var(--default-font);
  font-style: 24px;
}

/* TEXT */
.process-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  font-family: var(--default-font);
}

/* HOVER EFFECT */
.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

/* MOBILE */
@media (max-width: 767px) {
  .step-number {
    font-size: 32px;
  }
}

.ft-sz {
  font-size: 16px;
}

.why-faculty {
  padding: 100px 0;
}

.why-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 24px;
  text-align: center;
  height: 100%;
  transition: all 0.35s ease;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.icon-circle1 {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: #ec008c;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
}

.why-card h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}


.about-fac {
  margin-bottom: 100px;
}

/* industry */

/* About Section */
.about {
  padding: 100px 0px;
  text-align: center;
  max-width: 1000px;
  margin: auto;
}

.about-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* justify-content: center; */
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.about-icon {
  text-align: center;
  max-width: 100%;
}

.about-icon i {
  font-size: 2.5rem;
  color: var(--secondary-color3);
  margin-bottom: 10px;
}

.about-icon p {
  font-size: 18px;
  color: var(--primary-color);
  font-family: var(--default-font);
  font-weight: 500;
}

/* Collaboration Opportunities */
.collaboration {
  width: 100%;
  height: auto;
  padding: 80px;
  background: linear-gradient(0deg,
      rgb(243, 242, 242) 0%,
      rgb(248, 212, 238) 100%);
}

.collab-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.collab-card:hover {
  border-bottom: 2px solid var(--secondary-color3);
}

.collab-card {
  padding: 20px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.collab-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.collab-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--primary-color);
  font-family: var(--default-font);
}

.collab-card p {
  font-size: 1rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-family: var(--default-font1);
}

.collab-card a {
  color: var(--primary-color);
  font-weight: bold;
}

/* Success Stories */
.success {
  padding: 80px 0px;
  background: #f9f9f9;
}

.success h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.success-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.success-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.success-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.success-card .content {
  padding: 20px;
}

.success-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #fff;
  font-family: var(--default-font);
}

.success-card p {
  font-size: 15px;
  color: #fff;

  font-family: var(--default-font1);
  font-weight: 400;
}

/* admission */

.application-procedure {
  padding: var(--global_padding);
}

.intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #555;
  line-height: 1.7;
}

.gridss_box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

/* Grid */
.procedure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
  margin-top: 40px;
}

.procedure-card {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.procedure-card h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
  font-size: 24px;
  font-family: var(--default-font);
  font-family: 500;
}

.procedure-card ul {
  margin: 15px 0;
}


/* Info Boxes */
.info-box {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 0;
  min-height: 400px;
}

.info-box h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-family: var(--default-font);
  font-weight: 500;
  font-size: 28px;
}

.highlight {
  background: var(--secondary-color3);
  color: var(--white-color);
}

.info-box.highlight p {
  color: var(--white-color);
  margin-bottom: 15px;
  font-family: var(--default-font);
  font-weight: 500;
  font-size: 18px;
}

.highlight h3 {
  color: var(--white-color);
}

/* Docs */
.doc-list {
  padding-left: 20px;
  padding-top: 20px;
}

.doc-list li {
  margin-bottom: 10px;
  color: var(--secondary-color);
  font-size: 18px;
}

/* Bank */
.bank-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

.bank-table td {
  padding: 10px;
  border-bottom: 1px solid #ddd;
  font-family: var(--default-font);
  font-size: 15px;
}

.bank-table td:first-child {
  font-weight: 600;
  width: 40%;
  font-family: var(--default-font);
  font-size: 15px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 15px 0px 0px 0px !important;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  margin-bottom: 10px;
}

.contact-list i {
  color: var(--secondary-color3);
  font-size: 18px;
}

.contact-list a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
}

.contact-list a:hover {
  color: var(--secondary-color3);
}


.emails {
  margin-top: 10px;
  line-height: 1.8;
}

.emails i {
  color: var(--secondary-color3);
  margin-right: 8px;
  font-size: 16px;
}

.emails a {
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
  font-family: var(--default-font);
  font-size: 16px;
}

.emails a:hover {
  color: var(--secondary-color3);
}


/* **************Landing Page Css *****************  */

.banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 91px 0 60px 0;
}

.landing_content h5 {
  font-size: 20px;
  color: #000;


}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 16px;
}

.feature-list i {
  color: var(--secondary-color3);
  /* green tick */
  font-size: 18px;
}

.landing_content h1 {
  font-weight: 600;
  margin: 10px 0 0 0;
  font-size: 45px;
  background: var(--secondary-color1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.landing_content h6 {
  font-weight: 600;
  font-size: 22px;
  margin-top: -24px;
}

.landing_content ul {
  margin: 1rem 0 0.5rem 0;
}

.landing_wrapper {
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  overflow: hidden;
  /* important for radius */
}

/* TOP & BOTTOM GRADIENT BORDER */
.landing_wrapper::before,
.landing_wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--secondary-color1);
}

.landing_wrapper::before {
  top: 0;
}

.landing_wrapper::after {
  bottom: 0;
}


.form_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.content1 h6 {
  font-size: 14px;
  margin-bottom: 0.3rem !important;
}

.landing_form input {
  border: 1px solid #00000057 !important;
  margin: 0 !important;
}

.landing_form label {
  background: var(--secondary-color1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 15px !important;
}

.input-group-text {
  border: 1px solid #00000057 !important;
  border-radius: 30px;

}

.programs_flex {
  display: flex;
  gap: 15px;
}

.program-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 16px;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05),
    0 2px 6px rgba(0, 0, 0, 0.03);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 99;
}

/* Animated border layer */
.program-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 2px solid transparent;
  /* Default transparent */
  transform: scale(0.85);
  opacity: 0;
  transition:
    transform 0.45s ease,
    opacity 0.45s ease;
  pointer-events: none;
}

/* Hover effect */
.program-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.12),
    0 10px 20px rgba(0, 0, 0, 0.08);
}

.program-card:hover::before {
  transform: scale(1);
  opacity: 1;
}

/* Different colors for each card */
.program-card:nth-child(1)::before {
  border-color: #FF6B6B;
  /* Red-ish */
}

.program-card:nth-child(2)::before {
  border-color: #6BCB77;
  /* Green-ish */
}

.program-card:nth-child(3)::before {
  border-color: #4D96FF;
  /* Blue-ish */
}


.program-card h5 {
  font-weight: 600;
  /* margin-top: 20px; */
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 20px;
}

/* Text */
.program-card p {
  color: #6c757d;
  font-size: 15px;
  line-height: 1.6;
}

.programs_flex .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  transition: transform 0.45s ease,
    box-shadow 0.45s ease;
}

/* Icon Hover Animation */
.program-card:hover .icon {
  transform: translateY(-6px) scale(1.05);
}

.icon {
  background: #B9185B;
  /* box-shadow: 0 10px 25px rgba(240, 98, 146, 0.45); */
}

/* .icon.blue {
  background: #4f6df5;
  box-shadow: 0 10px 25px rgba(79, 109, 245, 0.45);
}

.icon.purple {
  background: #b36bff;
  box-shadow: 0 10px 25px rgba(179, 107, 255, 0.45);
} */

.landing_banner {
  position: relative;
  /* margin-bottom: 15rem; */
}

.cardbox {
  position: absolute;
  bottom: -61px;
  left: 0;
  right: 0;
}

/* Labels & Heading */
.edu-label {
  background: var(--secondary-color1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

.edu-heading {
  font-size: 36px;
  margin: 16px 0 30px;
  line-height: 1.3;
}

.edu-heading span {
  background: var(--secondary-color1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}


/* Typography */
.feature-heading {
  color: #0d2a5c;
  /* Dark navy color */
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.feature-description {
  color: #4a5568;
  /* Soft gray text */
  font-size: 0.95rem;
  line-height: 1.6;
}

.text-warning-custom {
  color: #B9185B;
}


/* ***** cousers section ********  */


.histudy-courses {
  /* background: linear-gradient(0deg, rgb(243, 242, 242) 0%, rgb(248 212 238 / 30%) 100%); */
  position: relative;
  padding: var(--global_padding);
  /* margin-top: 30px; */
}


/* 
.histudy-card {
  border: none;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  padding: 15px;
  background-color: #fff;
}

.histudy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.histudy-card-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin: 14px;
}


.histudy-card-body {
  padding: 0 20px 20px 20px;

}

.histudy-card-body .histudy-meta {
  font-size: 13px;
  color: #797979;
}

.histudy-card-title {
  background: var(--secondary-color1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

}

.histudy-card-text {
  font-size: 15px;
  margin: 5px 0 !important;
  color: #414141;
}

.histudy-rating {
  color: #eb8d00;
  font-size: 18px;
} */

.navbar {
  position: sticky !important;
  top: 0 !important;
  background: #fff !important;
  z-index: 9999 !;
}


/* .histudy-btn-link {
  text-align: right !important;
  color: #0a1e10;
  font-weight: 600;
  font-size: 16px;
}

.histudy-courses {
  padding: var(--global_padding);
} */


.place-card {
  position: relative;
  transition: all 0.35s ease;
  border: 2px solid transparent;
}

.place-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid #58003973;
  border-radius: inherit;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.35s ease;
  pointer-events: none;
}

.place-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  z-index: 5;
}

.place-card:hover::before {
  opacity: 1;
  transform: scale(1);
}


.course-card {
  background: #fff;
  padding: 15px;
  border-radius: 15px !important;
  min-height: 250px !important;
}

.card-header {
  /* display: flex;
  justify-content: space-between;
  align-items: center; */
  margin-bottom: 15px;
}

.card-header h2 {
  background: var(--secondary-color1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  z-index: 99;
  text-align: left;
  /* width: 63%; */
}

.course-desc {
  font-size: 15px;
  text-align: left;
}

.apply-btn {
  background: var(--secondary-color1);
  color: #fff;
  padding: 10px 18px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  border-radius: 30px;
  position: relative;
  z-index: 99;
}

.card-row {
  display: flex;
  padding: 12px 10px;
  margin-bottom: 8px;
  background: #b966e721;
}

.card-row:nth-child(odd) {
  background: #ffffff;
}

.label {
  width: 140px;
  font-weight: bold;
  font-size: 13px;
  color: #333;
}

.value {
  font-size: 15px;
  color: #555;
  font-weight: 600;
}



.add {
  background: var(--secondary-color1);
}

.vcxs {
  color: #ffffff;
  display: inline-block;
  padding: 3px;
  border-radius: 5px;
  font-size: 15px;
}


/* ******* alumni-container *********  */


.alumni-container {
  /* background: linear-gradient(218.15deg,
      #b966e7 0%,
      #2f57ef 100%); */

  padding: var(--global_padding);
  text-align: center;
  position: relative;
}


.alumni-container .title {
  color: #ffffff;
  margin-bottom: 0;
  text-align: left;
}

.alumni-container p {
  color: #fdfdfd;
}

.content {
  padding: 10px 45px 6px 35px;
  background: linear-gradient(218.15deg, #b966e7 0%, #2f57ef 100%);
}

alumni-carousel .item img {
  width: 100%;
  height: 80px;
  object-fit: contain;
  background-color: #fff;
  border-radius: 13px;
  padding: 5px;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
}

.marquee {
  display: flex;
  width: max-content;
  gap: 40px;
}

.marquee .item img {
  height: 75PX;
  /* aspect-ratio: 1 / 1; */
  object-fit: contain;
}

.alumni-container .title {
  margin: 0 !important;
  padding: 0 !important;
}


.career-hero .btn-animated {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  padding: 13px 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  margin-top: 0px;
}

.alumni-container .marquee-container {


  padding: 20px 0px 0px 0px;
}

/* LEFT MOVE */
.marquee-left {
  animation: marqueeLeft 25s linear infinite;
}

/* RIGHT MOVE */
.marquee-right {
  animation: marqueeRight 25s linear infinite;
}

@keyframes marqueeLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes marqueeRight {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.alumni-container .content {
  display: flex;
  justify-content: center;
  /* align-items: center; */
  flex-direction: column;
  clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
}


/* ******** mentor-section ************  */
.mentor-area {
  padding: var(--global_padding);
  text-align: center;

}


.mentor-item {
  text-align: center;
}

.mentor-img {
  position: relative;
  width: 180px;
  height: 180px;
  margin: auto;
}

.mentor-img img {
  width: 100%;
  height: 100%;
  border-radius: 10%;
  object-fit: cover;
  border: 4px solid #eef2ff;
  -webkit-border-radius: 10%;
  -moz-border-radius: 10%;
  -ms-border-radius: 10%;
  -o-border-radius: 10%;
}


.landing_pick {
  display: flex;
  align-items: center;
  /* justify-content: center; */
}

.mentor-share {
  position: absolute;
  inset: 0;
  background: rgba(79, 70, 229, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: 0.3s;
}

.mentor-share a {
  width: 32px;
  height: 32px;
  background: #fff;
  color: #4f46e5;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
}

.mentor-img:hover .mentor-share {
  opacity: 1;
}

.mentor-item h4 {
  margin-top: 16px;
  font-size: 16px;
}

.mentor-item span {
  font-size: 14px;
  color: #ffffff;
  /* background-color: #005aff; */
  padding: 4px 12px;
  border-radius: 0 10px 0 10px;
  background: var(--secondary-color1);
}

/* Owl dots */
.mentor-owl .owl-dots {
  margin-top: 30px;
}

.dropdown-submenu>.dropdown-menu {
  top: 0;
  left: 95%;
  margin-left: 0.3rem;
  margin-top: -0.5rem;
  border-radius: 12px;
  /* display: block; */
}


/* ****** feedback sections *******  */

.feedback-section {
  padding: var(--global_padding);
  text-align: center;

}


.feedback-card {
  background: var(--secondary-color1);
  padding: 30px;
  border-radius: 15px;
  color: white;
  text-align: left;
  /* Shadow off kora holo */
  box-shadow: none !important;

}

.user-info {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 20px;
}

.user-img img {
  width: 60px !important;
  height: 60px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.3);
  margin-right: 15px;
}

.user-details h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.user-details p {
  font-size: 14px;
  opacity: 0.8;
}

.quote-mark {
  position: absolute;
  right: 0;
  font-size: 40px;
  opacity: 0.5;
}

.feedback-text p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.rating {
  color: #ff9d00;
  /* Star color */
  font-size: 20px;
  display: flex;
}


/* ***** cta-bar ******  */

.career-hero {
  width: 100%;
  background: linear-gradient(218.15deg, #b966e7 0%, #2f57ef 100%);
  /* padding: 60px 20px; */
  box-sizing: border-box;
}

/* .career-container {
  max-width: 1200px;
  margin: 0 auto;
} */

.career-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.career-left {
  flex: 1;
  min-width: 280px;

  margin-left: 8rem;
}

.career-label {
  display: inline-block;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 2px solid #ffffff;
  margin-bottom: 16px;
}

.career-title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 24px;
  color: #f8f8f8;
}

.career-btn {
  display: inline-block;
  background-color: #d32f2f;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.career-btn:hover {
  background-color: #b71c1c;
}

.career-right {
  flex: 1;
  min-width: 280px;
}

.career-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .career-row {
    flex-direction: column;
    text-align: center;
  }

  .career-left,
  .career-right {
    margin: 0;
  }
}


/* ******* v-stats-wrapper part started ****  */

.v-stats-wrapper {
  padding: var(--global_padding);
  background-image: url('../img/bg fashion-min.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  background-attachment: fixed;

}

.v-stats-wrapper::after {
  content: '';
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #060606bb;
  position: absolute;
}

.v-stats-wrapper .container {
  position: relative;
  z-index: 99;
}

.v-stats-grid {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;

}

.v-stats-card {
  text-align: center;
  flex: 1;
  min-width: 200px;
  /* border: 1px double #0000001f; */
  border-radius: 10px;
  padding: 35px;
}

.v-number-box {
  color: #ffffff;
  font-weight: 600;
  font-size: 45px;
  line-height: 1;

}

.v-plus {
  margin-left: 2px;
}

.v-stats-label {
  color: #ffffff;
  /* Soft Grey Color */
  font-size: 14px;
  font-weight: 500;
  margin-top: 15px;
  letter-spacing: 0.5px;
  font-family: sans-serif;
}


/* *********** histudy-features ******** */

/* Container for Flip effect */
.flip-card {
  background-color: transparent;
  height: 300px;
  /* perspective: 1000px; */
}

.histudy-features {
  padding: var(--global_padding);
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  text-align: left;
}

/* Hover Action */
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Front & Back Sides */
.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 300px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Front Design */
.flip-card-front {
  background-color: #fff;
  border: 1px solid #eee;
}

/* Back Design */
.flip-card-back {
  transform: rotateY(180deg);
  padding: 30px;
}

/* Background Colors for Front */
.card-yellow {
  background-color: #FFF9E1;
}

.card-purple-light {
  background-color: #F8EFFF;
}

.card-pink {
  background-color: #FFF0F3;
}

/* Gradients for Back side */
.card-gradient-1 {
  background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
}

.card-gradient-2 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.card-gradient-3 {
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.btn-link {
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}

.list-unstyled li {
  font-size: 15px;
  font-weight: 500;
}

.course-card:hover {
  color: var(--secondary-color3);

}

.course-card:hover .degree-label {
  color: var(--secondary-color3);

}

.course-card h2:hover {
  color: var(--secondary-color3);

}

/* 
.course-card:hover,
.course-card:hover * {
  color: #000 !important;
} */


.student_placement {
  padding: var(--global_padding);
}

.student_placement_Wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ****** footer part started ******  */

/* =======================
   FOOTER BASE
======================= */
/* =======================
   FOOTER BASE
======================= */
.cu-footer {
  background: #ffffff;
  color: #000;
  padding: 30px 0 0;
  font-family: "Segoe UI", Arial, sans-serif;
}

/* =======================
   LAYOUT
======================= */
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}

/* =======================
   LEFT
======================= */
.footer-left {
  max-width: 420px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 10px;
}

.footer-left p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* =======================
   CENTER
======================= */
.footer-center {
  font-size: 14px;
  max-width: 360px;
}

.footer-center p {
  margin: 8px 0;
  color: #333;
}

.footer-center i {
  margin-right: 8px;
  font-size: 15px;
}

/* Contact icon colors */
.footer-center .fa-phone-alt {
  color: #000000;
}

.footer-center .fa-envelope {
  color: #000000;
}

.footer-center .fa-info-circle {
  color: #000000;
}

.footer-center a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-center a:hover {
  color: #6f42c1;
}

/* =======================
   SOCIAL ICONS (SOLID COLORS)
======================= */
.footer-center .social-icons {
  margin-top: 14px;
}

.footer-center .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 6px;
  width: 44px;
  height: 44px;
  font-size: 18px;
  border-radius: 50%;
  color: #000000;
  transition: all 0.35s ease;

}


/* Hover effect */
.footer-center .social-icons a:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.25);
}

/* =======================
   DIVIDER
======================= */
.alen {
  border: none;
  height: 1px;
  background: #00000020;
  margin: 25px 0;
}

/* =======================
   FOOTER BOTTOM
======================= */
.footer-bottom {
  text-align: center;
  padding-bottom: 15px;
}

.footer-bottom p {
  font-size: 15px;
  color: #888;
  margin: 0;
}

/* =======================
   MARQUEE
======================= */
.marquee-wrapper {
  /* background-color: #f9f9f9; */
  padding: 6px 10px;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid #eee;
}

.marquee-text {
  display: inline-block;
  padding-left: 100%;
  font-size: 14px;
  animation: marquee 15s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}


.alumni-container .owl-carousel .owl-item img {
  border-radius: 5px;
}


/* ******* innner banner ******  */


.inner_my_banner {
  padding: 150px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.inner_my_banner h6 {
  font-size: 18px;
}

.inner_my_banner h1 {
  font-size: 45px;
  text-transform: capitalize;
  margin-top: 10px;
}


/* Layout Reset */
.hero-block {
  padding: var(--global_padding);
  background-color: #fdfdfd;
}

.hero-block .container {
  display: flex;
  /* max-width: 1200px; */
  /* margin: 0 auto; */
  padding: 0 20px;
  align-items: center;
  gap: 80px;
}

/* Visual Styles */
.hero-block__visual {
  flex: 1;
}

.hero-block__image-card {
  border-radius: 40px;
  overflow: hidden;
  /* box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12); */
}

.hero-block__img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* Content Styles */
.hero-block__content {
  flex: 1.2;
}


.hero-block__description {
  color: #64748b;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 35px;
}

/* Features Styles */
.hero-block__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 40px;
}

.hero-block__feature-item {
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  display: flex;
  align-items: center;
}

.hero-block__tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 2px solid #ef4444;
  /* Red color */
  border-radius: 50%;
  margin-right: 12px;
  color: #ef4444;
  font-size: 10px;
}

/* Stat Cards Styles */
.hero-block__stats-group {
  display: flex;
  gap: 15px;
}

.hero-block__stat-card {
  flex: 1;
  background: #ffffff;
  border: 1px solid #f1f5f9;
  padding: 25px 10px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.hero-block__stat-number {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
}

.hero-block__stat-text {
  font-size: 11px;
  color: #94a3b8;
  text-transform: capitalize;
}


/* ******** LP SECTION ************  */


.lp-section {
  padding: var(--global_padding);
}


.lp-badge {
  font-size: 12px;
  color: #888;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.lp-title {
  font-size: 38px;
  font-weight: 700;
  margin: 16px 0;
  color: #111;
}

.lp-desc {
  font-size: 15px;
  color: #555;
  max-width: 420px;
  margin-bottom: 30px;
}

.lp-feature {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}

.lp-icon {
  color: #e11d48;
  font-size: 18px;
  margin-top: 3px;
}

.lp-feature h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.lp-feature p {
  font-size: 14px;
  color: #666;
  max-width: 360px;
}


.lp-image-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.lp-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* BUTTON */
.lp-btn {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: #e11d48;
  color: #fff;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
}

.lp-btn:hover {
  background: #be123c;
}


/* **********founder part started************** */

.founder-section {
  padding: var(--global_padding);
  background: url(../img/ed.jpg) center;
  background-repeat: no-repeat;
  padding: 100px 0;
  background-size: cover;

}

.nczzx img {
  width: 100%;
  height: 100px;
  object-fit: contain;
  margin-top: 25px;
}

.nice .item img {
  width: 120px;
  height: 120px;
  border-radius: 10px;
}


.founder-info h3 {
  font-size: 28px;
  margin-bottom: 6px;
  color: #111;
}

.designation {
  font-size: 14px;
  color: #000000;
  margin-bottom: 20px;
}

.founder-quote {
  font-size: 15px;
  line-height: 1.7;
  color: #000000;
  margin-bottom: 30px;
  max-width: 500px;
}

.visit-btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 50px;
  background: linear-gradient(135deg, #2f57ef, #b966e7);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
}

.visit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(47, 87, 239, 0.4);
}

.btn-light8 {
  padding: 15px 22px !important;
  border: 2px solid var(--secondary-color3) !important;
}


/* **** btn ***  */

/* *** awards section ******  */
.awards-section {
  padding: var(--global_padding);
  background: #ffffff;
}

.awards-slider {
  margin: 50px auto 0 auto;

}

.section-title h2 {
  font-size: 34px;
  font-weight: 600;
  color: #111827;
}

.section-title p {
  max-width: 720px;
  margin: 14px auto 45px;
  color: #4b5563;
  font-size: 15px;
}

.award-card {
  /* border: 1px solid #e5e7eb; */
  border-radius: 14px;
  /* padding: 22px; */
  gap: 20px;
  transition: all 0.25s ease;
  background: #fff;
  margin-bottom: 15px;
}

.award-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  border-color: #d1d5db;
}

.award-img {
  flex: 0 0 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #f9fafb;
}

.award-img img {
  max-width: 45px;
  max-height: 45px;
  object-fit: contain;
}

.award-content h5 {
  font-size: 16.5px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #111827;
}

.award-content p {
  font-size: 14.5px;
  color: #6b7280;
  line-height: 1.5;
}

/* ******** mentor zone *************  */

.mentor-zone {
  padding: var(--global_padding);
  background: linear-gradient(0deg, rgb(243, 242, 242) 0%, rgb(248 212 238 / 30%) 100%);
  position: relative;
}

.mentor-wrap {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}


.mentor-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #111;
}

.mentor-title p {
  max-width: 700px;
  margin: 12px auto 0;
  font-size: 16px;
  color: #555;
}

.mentor-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  text-align: center;
}

.mentor-box {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.mentor-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.mentor-photo {
  height: 100px;
  width: 100px;
  overflow: hidden;
  border-radius: 50%;
}

.mentor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  /* border-right: 4px solid var(--secondary-color3); */

}

.mentor-box:hover .mentor-photo img {
  transform: scale(1.08);
}

.mentor-text {
  padding: 10px 0;
  text-align: center;
}

.mentor-text h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #111;
}

.mentor-post {
  display: block;
  font-size: 14px;
  font-weight: 500;
  background: var(--secondary-color1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}

.mentor-org {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.mentor-field {
  display: inline-block;
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 30px;
  background: #f1f1f1;
  color: #333;
}

/* *********** insd faulty  zone ************  */

.insd-faculty-zone {
  padding: var(--global_padding);
  background: #f8f9fc;
}

/* Heading */
.faculty-head h2 {
  font-size: 36px;
  font-weight: 700;
  color: #111;
}

.faculty-head h2 span {
  color: #7b4eff;
}

.faculty-head p {
  font-size: 16px;
  color: #555;
  margin-top: 8px;
}

/* Faculty Card */
.faculty-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
}

.faculty-card:hover {
  transform: translateY(-10px);
}

/* Image */
.faculty-img {
  height: 280px;
  overflow: hidden;
}

.faculty-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.faculty-card:hover img {
  transform: scale(1.08);
}

/* Info */
.faculty-info {
  padding: 20px;
  text-align: center;
}

.faculty-info h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.faculty-role {
  font-size: 14px;
  color: #7b4eff;
  font-weight: 500;
}

.faculty-dept {
  font-size: 14px;
  color: #444;
  margin: 6px 0;
}

.faculty-work {
  font-size: 13px;
  color: #777;
}

/* Owl spacing */
.faculty-slider .faculty-item {
  padding: 15px;
  display: flex;
  gap: 15px;
}

.faculty-photo img {
  width: 100px !important;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border-left: 3px solid var(--secondary-color3);
}

/* ********** faculty-editorial-wrap **************  */


/* ************ Pm Laxmi *********  */


/* ********** scholarship card *****  */

.scholarship {
  padding: var(--global_padding);
}

.scholarship-card {
  background: white;
  display: flex;

  flex-direction: row;
  /* max-width: 850px; */
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}


.image-side {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.image-side img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 50%;

}

.image-overlay small {
  font-weight: 600;
  font-size: 25px;

}


.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 20px;
  color: white;
}

.image-overlay h3 {
  color: white;

}

/* ডান পাশের টেক্সট কন্টেন্ট */
.content-side {
  flex: 1.2;
  padding: 40px;
  position: relative;
}

.badge {
  background: #ffedea;
  color: #ff4757;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}

.title {
  font-size: 28px;
  color: #1a1a1a;
  margin: 15px 0 10px 0;
}

.sub-title {
  color: #7f8c8d;
  font-size: 16px;
  margin-bottom: 14px;
  display: block;
}


.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 0;
  padding: 20px 0 0 0;
  border-top: 1px solid #f1f1f1;
  border-bottom: 1px solid #f1f1f1;
}

.info-box span {
  display: block;
  font-size: 11px;
  color: #bdc3c7;
  text-transform: uppercase;
  font-weight: bold;
}

.info-box strong {
  font-size: 16px;
  color: #2c3e50;
}

.description {
  color: #57606f;
  line-height: 1.6;
  font-size: 15px;
  margin-bottom: 30px;
}

/* place-wrap  */

.place {
  padding: var(--global_padding);

  position: relative;
}

.place-wrap {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.place_set_img {
  position: absolute;
  width: 25%;
  top: 0;
  right: 0;
}

/* ================= BASE CARD ================= */
.place-card {
  width: 320px;
  /* min-height: 400px; */
  padding: 30px;
  border-radius: 20px;
  background: #fff;
  cursor: pointer;
  position: relative;
  transition: .4s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .30);
}

.place-head .sub-head {
  padding: 7px 22px;
  font-size: 13px;
}

/* ================= CARD VARIANTS ================= */
.card-geo {
  background-image:
    linear-gradient(30deg, #f0f9ff 12%, transparent 12.5%),
    linear-gradient(150deg, #f0f9ff 12%, transparent 12.5%);
}

/* .card-premium {
  background: #f8fafc;
} */


.card-dots {
  background-image:
    radial-gradient(circle at 25px 25px, rgba(59, 130, 246, .12) 1px, transparent 0);
  background-size: 40px 40px;
}

/* ================= ACTIVE CARD ================= */
.place-card.is-active {

  color: #000000;
  transform: translateY(-12px) scale(1.05);
  /* border: 2px solid #58003973;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.268),
    0 0 0 3px rgba(120, 0, 136, 0.176); */
  z-index: 5;
}


.place-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.place-badge {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #fff;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
}

.place-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #e0e7ff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #3b82f6;
}

.place-card.is-active .place-icon {
  /* background: rgba(255, 255, 255, .1); */
  color: #60a5fa;
}

/* ================= TEXT ================= */
.place-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 8px;
  background: var(--secondary-color1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.place-sub {
  font-size: .8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 25px;
}

.place-card.is-active .place-sub {
  color: #000000;
  font-weight: 700;
}

.place-icon i {
  background: var(--secondary-color1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* ================= STATS ================= */
.place-stat {
  display: flex;
  justify-content: space-between;
  padding: 6px 16px;
  border-radius: 12px;
  /* background: #f9fafb; */
  margin-bottom: 15px;
  background: linear-gradient(0deg, rgb(243, 242, 242) 0%, rgb(248 212 238 / 30%) 100%);
  border: 1px solid #0000001a;
}

.place-card.is-active .place-stat {

  background: linear-gradient(0deg, rgb(243, 242, 242) 0%, rgb(248 212 238 / 30%) 100%);
  border: 1px solid #0000001a;
}

.stat-name {
  font-weight: 600;
  font-size: 16px;
}

.stat-num {
  font-size: 18px;
  font-weight: 800;
}

.stat-unit {
  font-size: 1rem;
  background: var(--secondary-color1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.place-card.is-active .stat-unit {
  color: #60a5fa;
}

/* ================= FOOTER ================= */
.place-foot {
  margin-top: 20px;
  font-size: 12px;
  color: #303030;
  text-align: center;
}

.place-card.is-active .place-foot {
  color: #000000;
}

/* ************** placements-section ************  */

.insd-placement-wrap {
  padding: var(--global_padding);
  background: linear-gradient(180deg, #f8f9ff, #ffffff);

}


.insd-placement-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}


.insd-placement-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

.insd-placement-list {
  list-style: none;
  padding: 0;
}

.

/* Right Cards */
.insd-placement-cards {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.insd-partner-card {
  background: #fff;
  padding: 14px;
  border-radius: 14px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.insd-partner-title {
  font-size: 22px;
  margin-bottom: 12px;
  color: #1f2a44;
}

.insd-partner-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin: 0;
  padding: 0;
}

/* Stats Card */
.insd-stats-card {
  display: flex;
  justify-content: space-between;
  background: var(--secondary-color1);
  padding: 25px;
  border-radius: 14px;
  text-align: center;
  color: #fff;
}

.insd-stats-card h4 {
  font-size: 28px;
  margin-bottom: 5px;
  color: #fff;

}

.insd-stats-card span {
  font-size: 14px;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 992px) {
  .insd-placement-grid {
    grid-template-columns: 1fr;
  }

  .insd-stats-card {
    flex-direction: column;
    gap: 15px;
  }
}


/* ***********Final cta **********  */

.final-cta-section {
  background: linear-gradient(0deg, rgb(243, 242, 242) 0%, rgb(248 212 238 / 30%) 100%);
  padding: var(--global_padding);
  text-align: center;
  color: #ffffff;
}

.cta-container {
  max-width: 900px;
  margin: auto;
}

.cta-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-text {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 35px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Primary CTA */
.btn-primary-cta {
  background: #ffb703;
  color: #162447;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary-cta span {
  display: block;
  font-size: 12px;
  opacity: 0.8;
}

.btn-primary-cta:hover {
  background: #ffd166;
  transform: translateY(-3px);
}

/* Secondary CTA */
.btn-secondary-cta {
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary-cta:hover {
  background: #ffffff;
  color: #162447;
}


/* alumi testimonials  */

.insd-alumni-section {
  background: #f8f9fc;
  padding: var(--global_padding);
}

.insd-alumni-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.insd-alumni-header h2 {
  font-size: 34px;
  font-weight: 700;
  color: #1f2a44;
}

.insd-alumni-header p {
  font-size: 16px;
  color: #555;
  margin-top: 10px;
}

.insd-alumni-card {
  background: #f1f1f1;
  padding: 35px 25px;
  border-radius: 14px;
  text-align: center;
  /* box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08); */
  height: 312px;
}

.insd-alumni-img {
  width: 90px;
  height: 90px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  background: #eee;
}

.insd-alumni-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insd-alumni-name {
  font-size: 16px;
  font-weight: 700;
  color: #1f2a44;
  margin-bottom: 10px;
}

.insd-alumni-name span {
  font-weight: 400;
  color: #fff;
  background-color: var(--secondary-color2);
  padding: 3px;
  border-radius: 0 5px 0 5px;
  margin-top: 5px;
  display: inline-block;
  font-size: 13px;
}

.quotes {
  font-size: 40px;
  color: var(--secondary-color2);
}

.insd-alumni-text {
  font-size: 14.5px;
  color: #444;
  line-height: 1.6;
}

/* Remove dots */
.insd-alumni-carousel .owl-dots {
  display: none;
}

/* Navigation arrows */
.insd-alumni-carousel .owl-nav button {
  position: absolute;
  top: 45%;
  background: #ffffff !important;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.15);
  font-size: 22px !important;
  color: #1f2a44 !important;
}

.insd-alumni-carousel .owl-nav .owl-prev {
  left: -55px;
}

.insd-alumni-carousel .owl-nav .owl-next {
  right: -55px;
}

/* ************closing cta *********  */
/* Closing CTA Section */
.closing-cta {
  padding: var(--global_padding);
  background: linear-gradient(0deg, rgb(243, 242, 242) 0%, rgb(248 212 238 / 30%) 100%);

  text-align: center;
  color: #ffffff;
}

/* Heading */
.cta-heading {
  font-size: 36px;
  font-weight: 700;
  max-width: 900px;
  margin: 0 auto 35px;
  line-height: 1.3;
}

.cta-heading span {
  color: #ffd369;
}

/* Buttons Wrapper */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Base Button */
.cta-buttons .btn {
  padding: 14px 34px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Primary CTA */
.btn-primary-cta {
  background-color: #ffd369;
  color: #1a1a1a;
}

.btn-primary-cta:hover {
  background-color: #ffca2c;
  transform: translateY(-2px);
}

/* Secondary CTA */
.btn-secondary-cta {
  border: 2px solid #ffffff;
  color: #ffffff;
  background: transparent;
}

.btn-secondary-cta:hover {
  background-color: #ffffff;
  color: #1f3c88;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-heading {
    font-size: 28px;
  }
}


/* ************ Capmpus Tour section *****************  */


.campus-tour-section {
  padding: var(--global_padding);
  background: #f9fafc;
}

.section-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #5b6cff;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
}

.section-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.campus-features {
  padding-left: 0;
  list-style: none;
  margin-bottom: 30px;
}

.campus-features li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 15px;
  color: #333;
}

/* 
.campus-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #5b6cff;
  font-size: 14px;
} */


/* event work shop desing  section  */


.events-section {
  padding: var(--global_padding);

}

.events-section .container {
  max-width: 1200px;
  margin: auto;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px;
}


.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Card */
.event-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* Image Placeholder */
.event-img {
  height: 200px;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  position: relative;
}

.event-img.fashion {
  background: linear-gradient(135deg, #ff512f, #dd2476);
}

.event-img.graphic {
  background: linear-gradient(135deg, #11998e, #38ef7d);
}

.event-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #fff;
  color: #000;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
}

/* Content */
.event-content {
  padding: 24px;
}

.event-date {
  display: inline-block;
  font-size: 13px;
  color: #777;
  margin-bottom: 8px;
}

.event-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1d1d1f;
}

.event-content p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.event-btn {
  display: inline-block;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--secondary-color3);
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
  margin-top: 25px;
}

.event-btn:hover {
  background: #1a5ed8;
}


/* elegibale table  */

/* ============================
   ELIGIBILITY CRITERIA TABLE
============================ */


/* Table Wrapper */
.eligibility-section .table-responsive {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Table Base */
.eligibility-section .table {
  margin-bottom: 0;
  background-color: #ffffff;
}

/* Table Header */
.eligibility-section .table thead th {
  background-color: #b966e721;
  color: #222;
  font-weight: 600;
  font-size: 15px;
  padding: 16px;
  border: none;
}

/* Table Body */
.eligibility-section .table tbody td {
  font-size: 14.5px;
  color: #333;
  padding: 16px;
  line-height: 1.6;
  vertical-align: middle;
}

/* Course Name Highlight */
.eligibility-section .table tbody td:first-child {
  font-weight: 500;
  color: var(--secondary-color3);
}

/* Row Hover Effect */
.eligibility-section .table-hover tbody tr:hover {
  background-color: #b966e721;
  transition: background-color 0.3s ease;
}

/* Specialization Text */
.eligibility-section .table tbody td:nth-child(2) {
  color: #444;
}

/* Duration Badge Style */
.eligibility-section .table tbody td:last-child {
  font-weight: 500;
  color: var(--secondary-color3);

}

/* Borders Cleanup */
.eligibility-section .table-bordered> :not(caption)>* {
  border-width: 1px;
  border-color: #e5ecf4;
}

/* Admission FAQ Heading */
.eligibility-section h3 {
  margin-top: 50px;
}


.faq-section {
  padding: var(--global_padding);
}


/* ************* Scholarship-Session **********  */

/* ==========================
   PDF VIEW SECTION
========================== */

.pdf-view-section {

  padding: var(--global_padding);
}


/* PDF Box */
.pdf-view-wrapper {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
}

/* PDF iframe */
.pdf-iframe {
  width: 100%;
  height: 80vh;
  /* full pdf feel */
  border: none;
}


.enquery {
  position: fixed;
  right: -71px;
  top: 41%;
  transform: translateY(-50%);
  background: #000;
  color: #fff;
  padding: 12px 20px;
  cursor: pointer;
  font-weight: 600;
  z-index: 9999;
  transition: right 0.4s ease;
  background: var(--secondary-color1);
  border-radius: 5px;
  transform: rotate(-90deg);
  cursor: pointer;
}

/* Hover effect */
/* .enquery:hover {
  right: 0;

} */


.placement-assistance {
  padding: var(--global_padding);


  overflow: hidden;
}

.placement-assistance .container {
  background: #0142b3;
  border-radius: 30px;
  position: relative;
  padding: 40px 0;
}


.logo-marquee {
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: scrollLogos 20s linear infinite;
}

.placement-counters {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 400px;
  align-items: center;
  margin: 0 auto;

}


.counter-box {
  min-width: 240px;
  padding: 30px 40px;
  text-align: center;
  /* background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  backdrop-filter: blur(10px); */
  /* background: rgba(255, 255, 255, 0.08); */

  transition: 0.3s ease;
}


.counter-box h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.counter-box p {
  font-size: 16px;
  opacity: 0.85;
  margin: 0;
  color: #fff;

}

.logo-track img {
  height: 60px;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 0 6px rgba(255, 255, 255, 0.4));
  opacity: 0.9;
  transition: 0.3s ease;
}


.logo-track img:hover {
  filter: brightness(0) invert(1) drop-shadow(0 0 6px rgba(255, 255, 255, 0.4));
  opacity: 0.9;
  transition: 0.3s ease;
}

/* Hover pause */
.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.placement-assistance .counter {
  color: #fff;
}


/* ************ modal form *******  */
/* =========================
   CENTER MODAL ANIMATION
========================= */

.modal.fade .modal-dialog {
  transform: translateY(-50px);
  transition: all 0.35s ease-in-out;
  opacity: 0;
}

.modal.fade.show .modal-dialog {
  transform: translateY(0);
  opacity: 1;
}

/* =========================
   CENTER POSITION
========================= */

#enquiryModal .modal-dialog {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0 auto;
  max-width: 500px;
  padding: 20px;
}

/* Modal Content */
#enquiryModal .modal-content {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

/* =========================
   TABLET (≤ 991px)
========================= */

@media (max-width: 991px) {
  #enquiryModal .modal-dialog {
    max-width: 420px;
  }
}

/* =========================
   MOBILE (≤ 575px)
========================= */

@media (max-width: 575px) {
  #enquiryModal .modal-dialog {
    max-width: 95%;
    padding: 15px;
  }

  #enquiryModal .modal-content {
    border-radius: 14px;
  }
}

/* =========================
   BUTTON STYLE (UNCHANGED)
========================= */
.btn_xzz {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
  flex-direction: row;
}

.btn_xzz li {
  padding: 7px 10px;
  list-style: none;
  border-radius: 30px;
  font-size: 13px;
  color: #333;
  font-weight: 600;
}

.btn_xzz li:nth-child(1) {
  background-color: #FCEFE8;
}

.btn_xzz li:nth-child(2) {
  background-color: #E8F4FC;
}

.btn_xzz li:nth-child(3) {
  background-color: #EAFCE8;
}

.marquee-content a {
  color: #000;
}


/* ********** opportunites ********** */

.opportunites {
  /* padding: var(--global_padding); */
  background-color: var(--secondary-color2);

  display: flex;
  justify-content: center;
  align-items: center;
}

.img_boxs_opportunites {
  max-width: 600px;
}

.opp_content {
  padding-left: 4rem;
}


/* **************************  */

/* application-section */

.application-section {
  /* background: url('../img/pexels-ray-piedra-1478477-2.webp') center/cover no-repeat; */

  background: url(../img/sliderbg.jpg) center/cover no-repeat;
  padding: 60px 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.app-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  background: rgb(255 255 255 / 35%);
}


.app-features {
  background: var(--secondary-color2);
  color: #fff;
  padding: 40px 30px;
  height: 435px;
  border-radius: 17px;
}

.app-features ul {
  list-style: none;
  padding: 0;
}

.app-features li {
  margin-bottom: 20px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.app-features li i {
  width: 40px;
  height: 45px;
  background: var(--secondary-color3);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

/* RIGHT */
.app-form {
  padding: 40px;
}


/* FORM GRID */
.form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 12px;
  border: 1px solid #ccc;
  width: 100%;
  font-size: 14px;
}

textarea {
  resize: none;
  height: 60px;
}

.full {
  grid-column: span 3;
}

/* BUTTON */
.submit-btn {
  margin-top: 25px;
  width: 100%;
  background: var(--secondary-color3);
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 16px;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .app-container {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .full {
    grid-column: span 1;
  }
}


/* *********************  */

/* payment-portal */


.payment-portal {
  padding: var(--global_padding);
  color: #333;
}

/* TOP CONTENT */
.portal-content {
  max-width: 900px;
  margin: auto;
  text-align: center;
  padding: 40px 20px;
}


.terms {
  text-align: left;
  font-size: 16px;
  line-height: 1.6;
}

.terms h4 {
  margin-top: 20px;
  font-size: 14px;
  color: #000;
}

/* LOAN BANNER */
.loan-banner {
  background: var(--secondary-color2);
  text-align: center;
  padding: 47px 10px;
  margin-top: 20px;
  color: #fff;
  border-radius: 55px;
}

.loan-banner h3 {
  margin: 0;
  font-size: 25px;
  color: #fff;
}

.loan-banner p {
  margin-top: 5px;
  font-size: 13px;
}

.loan-features {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 40px 20px;
  text-align: center;
}

.feature i {
  font-size: 28px;
  color: var(--secondary-color3);
  margin-bottom: 8px;
}

.feature p {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .loan-features {
    flex-direction: column;
    gap: 20px;
  }
}

/* career zone  */


/* ===== SECTION ===== */
.career-zone {
  padding: var(--global_padding);
  background-image: url(../img/inner_banner/Artboard\ 1.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ===== WRAPPER ===== */
.career-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  /* display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px; */
  align-items: center;
  /* background-color: #fff; */
  border-radius: 30px;
  /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
}

.metric-icon i {
  font-size: 18px;
  color: #fff;
}


/* ===== METRICS ===== */
.career-metrics {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.metric-box {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  padding: 10px 7px;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  /* justify-content: space-between; */
}

.metric-icon {
  width: 42px;
  height: 42px;
  background: var(--secondary-color3);
  color: var(--secondary-color3);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}

.metric-box h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}

.metric-box p {
  margin: 0;
  font-size: 20px;
  color: #666;
}

/* ===== RIGHT CONTENT ===== */
.career-brands {
  /* background: #fff; */
  padding: 10px;
  border-radius: 18px;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */
}

/* .brand-heading {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  text-align: center;
} */

/* ===== BRAND GRID ===== */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.brand-tile {
  background: #fafafa;
  border-radius: 12px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  transition: all 0.3s ease;
}

.brand-tile img {
  max-height: 90px;
  max-width: 100%;
  /* filter: grayscale(100%); */
  /* opacity: 0.7; */
  transition: all 0.3s ease;
}

.e21 {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.brand-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.brand-tile:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .career-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .career-info .title {
    font-size: 34px;
  }

  .brand-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .career-zone {
    padding: 50px 0;
  }

  .career-info .title {
    font-size: 28px;
  }

  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .career-brands {
    padding: 25px;
  }
}


/* ************ admission-section ***********  */


.admission-section {
  padding: var(--global_padding);
  text-align: center;

}


.admission-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  background: #ffffff;
  margin-top: 10px;
}

.admission-card {
  background: #f7f4ff;
  padding: 25px 20px;
  border-radius: 15px;
  /* width: 220px; */
  text-align: left;
  transition: all 0.3s ease;
  cursor: pointer;
  /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.admission-card h3 {
  font-size: 18px;
  margin: 10px 0 5px;
  color: #2b2b2b;
  line-height: 26px;
}

.admission-card p {
  font-size: 14px;
  color: #666;
  margin-top: 15px;
}

.step-number {
  background: #ffffff;
  color: var(--secondary-color3);

  font-weight: bold;
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

/* Force number style always */
.admission-card:hover .step-number,
.active-card .step-number {
  background: #ffffff;
  color: var(--secondary-color3);

}

.flex_box {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
}


/* Active Card Style */
.active-card {
  background: var(--secondary-color2);
}

.active-card h3,
.active-card p {
  color: #ffffff;
}

/* Hover Effect */
.admission-card:hover {
  background: var(--secondary-color2);
  transform: translateY(-5px);
}

.admission-card:hover h3,
.admission-card:hover p {
  color: #ffffff;
}


/* ************ admission-section ***********  */


/* APPLY SECTION */
.apply-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;

}

.apply-section {
  padding: var(--global_padding);
}

.apply-card {
  /* background: linear-gradient(135deg, #ffffff, #f2eaff); */
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(111, 66, 193, 0.15);
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  background-image: url(../img/inner_banner/Artboard\ 2.jpg);
  background-size: 100%;
  background-repeat: no-repeat;
}

.icon-box {
  width: 45px;
  height: 45px;
  background: var(--secondary-color3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  margin-bottom: 15px;
  border-radius: 50%;
}


.apply-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.apply-card p {
  font-size: 16px;
  color: #666;
}


.criteria-section {
  padding: var(--global_padding);
}


.criteria-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  /* max-width: 1000px; */
  margin: auto;
}

.criteria-box {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(111, 66, 193, 0.12);
}

.criteria-box:hover * {

  color: #fff !important;
}

.criteria-box:hover {
  background-color: var(--secondary-color2);
  transition: 0.4s all ease;
  -webkit-transition: 0.4s all ease;
  -moz-transition: 0.4s all ease;
  -ms-transition: 0.4s all ease;
  -o-transition: 0.4s all ease;
}


.criteria-box i {
  font-size: 26px;
  color: var(--secondary-color3);
  margin-bottom: 8px;
}

.criteria-box h4 {
  margin: 5px 0;
  font-size: 18px;
}

.criteria-box p {
  font-size: 15px;
  color: #666;
}


/* ********************** */


.fees {
  padding: var(--global_padding);
}

.icons {
  text-align: center;
}

.icon_boxs {
  text-align: center;

}

.icon_boxs i {
  color: var(--secondary-color3);
}

.r-box {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(111, 66, 193, 0.12);
  margin-top: 15px;
}

/* ************** faculty **********  */

.faculty-item {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  /* padding: 20px; */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.faculty-photo img {
  width: 100%;
  /* border-radius: 10px; */
}

.faculty-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.faculty-post {
  font-size: 14px;
  font-weight: 500;
  color: #555;
  margin: 0;
}

.faculty-branch {
  font-size: 13px;
  color: #777;
  margin: 0 !important;
}

.faculty-work {
  font-size: 13px;
  font-weight: 500;
  color: var(--secondary-color3);
}

/* ***************** global_Section_ready ***************  */


.global_Section_ready {
  padding: var(--global_padding);
}

.banner_ing {
  padding: var(--global_padding);
  background-image: url(../img/abt-img.png);
  background-size: cover;
  background-position: center;
  /* margin-top: 30px; */
}

/* ***************** global_Section_ready ***************  */


/* ************** help bar **************  */
.help-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: 14px;
  background: linear-gradient(90deg, #f7f2ff, #efe6ff);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  /* max-width: 100%; */
  margin-top: 35px;
}

.help-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.help-icon {
  width: 38px;
  height: 38px;
  background: var(--secondary-color3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.help-icon img {
  width: 20px;
  filter: brightness(0) invert(1);
}

.help-text {
  font-size: 16px;
  font-weight: 500;
  color: #2b2b2b;
}


.modal-backdrop {
  display: none !important;
}


.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info-item {
  display: flex;
  /* align-items: center; */
  gap: 8px;
  /* justify-content: center; */

}

.contact-info-icon {
  color: #fff;
  /* theme color */
  font-size: 18px;
}

.contact-info-text {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 20px;

}

.contact-info-item i {
  /* padding: 5px;   */
  color: var(--secondary-color3);
  /* border-radius: 50%; */
}


.social-links-list {
  list-style: none;
  display: flex;
  gap: 12px;
  padding: 0;
  margin: 0;
}

/* Common */
.social-link-item a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--secondary-color3);
  transition: all 0.3s ease;
}


/* ****************** new form ***************************  */


/* Main Content */
.appinform-main {
  display: flex;
  flex-wrap: wrap;
  margin: 40px 0;
  gap: 40px;
}

/* Career Counselling Section */
.appinform-counselling {
  flex: 1;
  min-width: 300px;
  /* background-color: white; */
  border-radius: 8px;
  padding: 30px;
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); */
  margin-top: 0;
}

.appinform-counselling h2 {

  font-weight: 700;
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #fff;
}

.appinform-counselling-list {
  list-style: none;
  padding: 0;
}

.appinform-counselling-list li {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  color: #fff;
  font-weight: 600;
}

.appinform-counselling-list li:last-child {
  border-bottom: none;
}

.appinform-counselling-list i {
  color: #fff;
  margin-right: 15px;
  font-size: 1.2rem;
  width: 24px;
}

.appinform-form-section {
  flex: 2;
  min-width: 300px;
  background-color: #ffffffd4;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.appinform-form-header {
  margin-bottom: 30px;
}

.appinform-form-header h2 {
  font-weight: 700;
  color: #0c2340;
  font-size: 2.2rem;
  margin-bottom: 5px;
}

.appinform-form-header p {
  color: #666;
  font-size: 1.1rem;
}

.appinform-form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 0;
}

.appinform-form-group {
  flex: 1;
  min-width: 250px;
}

.appinform-form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #444;
}

.appinform-form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  transition: border 0.3s;
  /* border-radius: 30px; */
}

.appinform-form-control:focus {
  outline: none;
  border-color: #00a0df;
  box-shadow: 0 0 0 2px rgba(0, 160, 223, 0.2);
}

/* Radio */
.appinform-radio-group {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}

.appinform-radio-option {
  display: flex;
  align-items: center;
}

.appinform-radio-option input {
  margin-right: 8px;
}

/* Checkbox */
.appinform-checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-top: 25px;
}

.appinform-checkbox-group input {
  margin-top: 5px;
  margin-right: 10px;
}

/* Submit Button */
.appinform-submit-btn {
  background-color: #e31e24;
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 20px;
  display: block;
  width: 100%;
}

.appinform-submit-btn:hover {
  background-color: #c4171d;
}


/* Phone Input */
.appinform-phone-input {
  display: flex;
}

.appinform-country-code {
  background-color: #f5f5f5;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-right: none;
  border-radius: 4px 0 0 4px;
  font-weight: 600;
}

.admis_form {
  background-image: url(../img/et1.jpg);
  background-size: 100%;
  background-position: left center;
  background-repeat: no-repeat;
  padding: 150px 0 60px 0;
}

.appinform-phone-input .appinform-form-control {
  border-radius: 0 4px 4px 0;
}

/* Responsive */
@media (max-width: 992px) {
  .appinform-main {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .appinform-form-row {
    flex-direction: column;
  }
}


/* ********** fees payment *********  */
.feespayemts {
  padding: var(--global_padding);
}

.feespayemts-box {
  max-width: 1000px;
  margin: auto;
  font-size: 14px;
  color: #222;
  line-height: 1.6;
}

.feespayemts-box h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feespayemts-box ul {
  padding-left: 18px;
  margin-top: 5px;
}

.feespayemts-box ul li {
  margin-bottom: 6px;
  font-size: 16px;
}

.feespayemts-box hr {
  margin: 15px 0;
  border: none;
  border-top: 1px solid #ddd;
}

.feespayemts-box .important {
  font-weight: 600;
  margin-top: 8px;
}

.feespayemts-box .mode {
  margin-top: 5px;
  font-weight: 600;
}

.loan-banner {
  background: var(--secondary-color2);
  text-align: center;
  padding: 47px 10px;
  margin-top: 20px;
  color: #fff;
}

.loan-banner h3 {
  margin: 0;
  font-size: 25px;
  font-weight: 700;
}

.loan-banner p {
  margin: 3px 0 0;
  font-size: 14px;
}

/* ************** video testimonials ************  */
/* Section */
.video-testimonial-section {
  padding: var(--global_padding);
  background: #f9f9f9;
}


.video-testimonial-item {
  background: #fff;
  border-radius: 16px;
  padding: 0;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}

.video-testimonial-item:hover {
  transform: translateY(-6px);
}

/* Video */
.video-testimonial-item iframe.yt-video {
  width: 100%;
  height: 220px;
  border-radius: 14px;
  border: none;
}

/* Name */
.video-testimonial-item h6 {
  margin-top: 16px;
  font-size: 17px;
  font-weight: 600;
}

/* Designation */
.video-testimonial-item p {
  font-size: 14px;
  color: #777;
  margin-bottom: 0;
}

/* Owl Navigation */
.video-testimonial-slider .owl-nav {
  margin-top: 25px;
  text-align: center;
}

.video-testimonial-slider .owl-nav button {
  background: var(--secondary-color2) !important;
  color: #fff !important;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin: 0 8px;
}

.video-testimonial-slider .owl-nav button span {
  font-size: 24px;
  line-height: 1;
}

/* Dots */
.video-testimonial-slider .owl-dots {
  margin-top: 25px;
  text-align: center;
}

.video-testimonial-slider .owl-dot span {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  margin: 5px;
  display: inline-block;
  transition: all 0.3s ease;
}

.video-testimonial-slider .owl-dot.active span {
  background: var(--secondary-color2);
  width: 26px;
  border-radius: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .video-testimonial-item iframe.yt-video {
    height: 200px;
  }

  .video-testimonial-section .title {
    font-size: 26px;
  }
}

/* *************** back to top *************  */

#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: var(--secondary-color2);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  z-index: 999;
  transition: 0.3s ease;
}

#backToTop i {
  font-size: 18px;
}

#backToTop:hover {
  background: #444;
  transform: translateY(-3px);
}

/* --------------------MOBILE FLOATING ICON ---------------  */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--secondary-color2);
  z-index: 9999;
}

.icn-bx-ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0;
  padding: 10px 0;
  list-style: none;
}

.icn-bx-ul li a {
  color: #fff;
  font-size: 20px;
}

.bord {
  width: 1px;
  height: 25px;
  background: rgba(255, 255, 255, 0.3);
}


#enquiryModal .landing_wrapper::before,
.landing_wrapper::after {
  background: none !important;
  box-shadow: rgba(0, 0, 0, 0.01) 0px 3px 8px !important;
}

.modal_form {
  border-radius: 30px;
}

/* ******** Home page counter *******  */
.stats-wrap {
  padding: var(--global_padding);
  /* background: #0f172a; */
}

.stats-container {
  /* max-width: 1200px; */
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.stat-card {
  position: relative;
  padding: 30px;
  border-radius: 18px;
  color: #222;
  display: flex;
  gap: 18px;
  align-items: center;
  overflow: hidden;
  transition: 0.4s ease;
}

.stat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.18), transparent);
  opacity: 0;
  transition: 0.4s;
}

.stat-card:hover::after {
  opacity: 1;
}

.stat-card:hover {
  transform: translateY(-10px) scale(1.02);
}

.stat-icon {
  min-width: 64px;
  height: 64px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 30px;
  background: rgba(255, 255, 255, 0.2);
}

.stat-number {
  display: block;
  font-size: 28px;
  font-weight: 800;
}

.stat-text {
  font-size: 15px;
  opacity: 0.9;
}

/* Light / Soft Color Variants */

.stat-yellow {
  background: linear-gradient(135deg,
      #f5e9ff 0%,
      #fde2f3 100%);
}

.stat-blue {
  background: linear-gradient(135deg,
      #eef2ff 0%,
      #e0e7ff 100%);
}

.stat-dark {
  background: linear-gradient(135deg,
      #fff1f2 0%,
      #ffe4e6 100%);
}

.stat-red {
  background: linear-gradient(135deg,
      #e0f2fe 0%,
      #bae6fd 100%);
}


/* Responsive */
@media (max-width: 992px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .stats-container {
    grid-template-columns: 1fr;
  }
}

/* ************** */

.set_marquee {
  background: #ffe7df;
  padding: 10px 0;
  overflow: hidden;
}

.marquee {
  /* width: 100%; */
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.marquee-content {
  display: inline-block;
  white-space: nowrap;
  color: #222;
  font-size: 24px;
  font-weight: 600;
  animation: scrollText 20s linear infinite;
}

@keyframes scrollText {
  from {
    transform: translateX(0%);
  }

  to {
    transform: translateX(-50%);
  }
}


.hight_marquee {
  overflow: hidden;
  width: 100%;
  padding: 40px 0;
}

.brand-grid {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.brand-track {
  display: flex;
  width: max-content;
  gap: 60px;
}

.brand-tile img {
  width: 160px;
  height: auto;
  object-fit: contain;
}

/* LEFT TO RIGHT */
.left-marquee .brand-track {
  animation: scroll-left 40s linear infinite;
}

/* RIGHT TO LEFT */
.right-marquee .brand-track {
  animation: scroll-right 40s linear infinite;
}

/* Animations */
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

/* Pause on Hover */
.brand-grid:hover .brand-track {
  animation-play-state: paused;
}


.placement-cta-new {
  padding: 20px 0;


}

.cta-box {
  /* max-width: 1000px; */
  margin: auto;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  /* background: linear-gradient(135deg, #0142b3, #1d6cff); */
  background-image: url(../img/1\ \(2\).jpg);
  background-size: cover;
  background-position: center;
  position: relative;
}

.cta-box::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 99;
  background-color: #000000ba;
  border-radius: 10px;

}

.cta-left {
  position: relative;
  z-index: 100;
}

.cta-left h2 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 10px;
}

.cta-left p {
  color: #dbe5ff;
  margin-bottom: 25px;
}

.cta-btns {
  display: flex;
  gap: 15px;
}

.cta-btn {
  padding: 14px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: .3s;
}

.cta-btn.primary {
  background: #ffb400;
  color: #000;
}

.cta-btn.primary:hover {
  transform: translateY(-3px);
}

.cta-btn.outline {
  border: 2px solid #fff;
  color: #fff;
}

.cta-btn.outline:hover {
  background: #fff;
  color: #000;
}

.cta-right img {
  max-width: 260px;
}

/* Mobile */

@media(max-width:768px) {
  .cta-box {
    flex-direction: column;
    text-align: center;
  }

  .cta-btns {
    justify-content: center;
    flex-wrap: wrap;
  }
}


/* mission */

.mission-vision-section {
  padding: var(--global_padding);
}

/* GRID */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
}

/* BOX */
.mv-box {
  background: #fff;
  padding: 45px 40px;
  border: 1px solid #e5e7eb;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  border-radius: 6px;
}

.mv-box::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  /* background: #0142b3; */
  transition: height 0.35s ease;
  z-index: 0;
  background: var(--secondary-color1);
}

/* hover effect */
.mv-box:hover::after {
  height: 100%;
  /* 🔹 move upward */
}

/* content always on top */
.mv-box>* {
  position: relative;
  z-index: 1;
}

.mv-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* ICON */
.mv-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #0142b3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  margin-bottom: 25px;
  -webkit-border-radius: ;
  -moz-border-radius: ;
  -ms-border-radius: ;
  -o-border-radius: ;
}

.mv-box h4 {
  font-size: 24px;
  margin-bottom: 12px;
}

.mv-box p {
  color: var(--secondary-color);
  line-height: 1.8;
  font-size: 16px;
  font-family: var(--default-font);
  font-weight: 400;
}

/* smooth transition */
.mv-icon,
.mv-box h4,
.mv-box p {
  transition:
    color 0.3s ease,
    background 0.3s ease;
}

/* hover state */
.mv-box:hover .mv-icon {
  color: #fff;
  background: rgba(255, 255, 255, 0.25);
  /* optional soft bg */
}

.mv-box:hover h4,
.mv-box:hover p {
  color: #fff;
}

/* MOBILE */
@media (max-width: 767.78px) {
  .mv-grid {
    grid-template-columns: 1fr;
  }
}

.clients-section {
  padding: 90px 0px 0px 0px;
}


.logo-marquee-section {
  width: 100%;
  overflow: hidden;
  padding: 30px 0;
}

.logo-marquee {
  width: 100%;
  overflow: hidden;
}

.logo-marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeLeft 20s linear infinite;
}

.logo-marquee-left .logo-marquee-track {
  animation: marqueeLeft 20s linear infinite;
}

.logo-item {
  flex: 0 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
}

.logo-item img {
  max-height: 60px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.logo-item img:hover {
  opacity: 1;
}

/* Animation */
@keyframes marqueeLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}


.curriculum-body h6 {
  margin-top: 28px;
  margin-bottom: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.curriculum-body h6 i {
  color: var(--secondary-color2);
  font-size: 15px;
}

.curriculum-body ul {
  margin-bottom: 18px;
  padding-left: 18px;
}

.curriculum-body ul li {
  margin-bottom: 6px;
  line-height: 1.6;
}


/* ===============================
   Career CTA Section
================================ */

.career-cta {
  padding: 80px 0;
  background: var(--secondary-color2);
  /* dark premium look */
  position: relative;
  overflow: hidden;
}

.career-cta .container {
  max-width: 900px;
}

.career-cta .cta-title {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.career-cta .cta-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 620px;
  margin: 0 auto 28px;
}

/* Button wrapper spacing */
.career-cta .cta-btn {
  display: flex;
  justify-content: center;
}

/* ===============================
   Responsive
================================ */

@media (max-width: 768px) {
  .career-cta {
    padding: 60px 20px;
  }

  .career-cta .cta-title {
    font-size: 28px;
  }

  .career-cta .cta-text {
    font-size: 15px;
  }
}


/* ==========================
   Instructor Section
========================== */
.instructor-section {
  background-color: #f9f9f9;
  /* light background */
  color: #333;

}

.instructor-wrapper {
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
}

.instructor-wrapper:hover {
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.instructor-title {
  font-size: 28px;
  font-weight: 600;
  color: #222;
  text-align: center;
}

.instructor-description {
  font-size: 16px;
  color: #555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ==========================
   Carousel Cards
========================== */
.instructor-carousel .instructor-card {
  background-color: #fff;
  padding: 20px 15px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.instructor-carousel .instructor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.instructor-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid #ffd700;
  /* optional highlight border */
  transition: transform 0.3s ease;
}

.instructor-card:hover img {
  transform: scale(1.05);
}

.instructor-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #222;
}

.instructor-placement {
  font-size: 14px;
  color: #777;
}

.instructor-placement span {

  font-weight: 500;
  color: #0142b3;
  text-transform: uppercase;
  line-height: 15px;
}

.card .profile img {
  display: none;
}

/* ==========================
   Owl Carousel Overrides
========================== */
.owl-carousel .owl-nav {
  display: none;
  /* hide default nav */
}

.owl-carousel .owl-dots {
  text-align: center;
  margin-top: 15px;
}

.owl-carousel .owl-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #ccc;
  border-radius: 50%;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.owl-carousel .owl-dot.active {
  background-color: #0142b3;
}

/* ==========================
   Responsive
========================== */
@media (max-width: 991px) {
  .instructor-wrapper {
    padding: 30px 20px;
  }

  .instructor-title {
    font-size: 24px;
  }

  .instructor-description {
    font-size: 15px;
  }

  .instructor-card img {
    width: 100px;
    height: 100px;
  }

  .instructor-name {
    font-size: 16px;
  }

  .instructor-placement {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .instructor-wrapper {
    padding: 20px 15px;
  }

  .instructor-title {
    font-size: 20px;
  }

  .instructor-description {
    font-size: 14px;
  }

  .instructor-card img {
    width: 80px !important;
    height: 80px !important;
  }

  .instructor-name {
    font-size: 15px;
  }

  .instructor-placement {
    font-size: 12px;
  }
}


.learning-careers-section {
  font-family: 'Poppins', sans-serif;
  color: #333;
}

/* Section Titles */
.section-title {
  font-size: 28px;
  font-weight: 600;
  color: #222;
  position: relative;
}

.Small_head {
  font-size: 22px;
}

.center-box {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

/* .section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #ffbf00;
  margin: 8px auto 0;
  border-radius: 2px;
} */

/* Learning Experience Cards Grid */
.cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.info-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  width: 220px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.15);
}

.info-card .icon {
  font-size: 32px;
  margin-bottom: 15px;
  color: #ffbf00;
}

/* Careers & Placements Grid */
.placement-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 30px;
  justify-content: center;
}

.placement-column {
  flex: 1 1 300px;
  background-color: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.placement-column:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.placement-column h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.placement-column ul {
  list-style-type: disc;
  padding-left: 20px;
}

.placement-column ul li {
  margin-bottom: 8px;
  color: #555;
}

/* Buttons */
.placement-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #ffbf00;
  color: #fff;
}

.btn-primary:hover {
  background-color: #e6ac00;
}

.btn-secondary {
  background-color: #333;
  color: #fff;
}

.btn-secondary:hover {
  background-color: #555;
}

/* Responsive */
@media(max-width: 991px) {

  .cards-grid,
  .placement-grid {
    gap: 15px;
  }
}

@media(max-width: 576px) {

  .info-card,
  .placement-column {
    width: 100%;
    padding: 20px;
  }

  .placement-buttons {
    flex-direction: column;
  }
}


/* ==========================
   Section Styling
========================== */
.edu-career-section {
  font-family: 'Poppins', sans-serif;
  color: #333;
  background: #f5f7fa;
}

/* Section Titles */
.edu-title,
.career-title {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  position: relative;
}

/* .edu-title::after,
.career-title::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background-color: #ffbf00;
  margin: 10px auto 0;
  border-radius: 2px;
} */

/* ==========================
   Learning Experience Cards
========================== */
.edu-cards {
  display: flex;
  /* flex-wrap: wrap; */
  gap: 25px;
  justify-content: center;
  margin-top: 25px;
}

.edu-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  width: 220px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.edu-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15);
}

.edu-icon {
  font-size: 26px;
  color: #ffbf00;
  margin-bottom: 15px;
}

.career-list li {
  font-size: 15px;
  padding-bottom: 10px;
}

.edu-text {
  font-size: 16px;
  font-weight: 500;
  color: #555;
  line-height: 1.5;
}

/* ==========================
   Careers & Placements
========================== */
.career-grid {
  display: flex;
  /* flex-wrap: wrap; */
  gap: 40px;
  justify-content: center;
  margin-top: 30px;
}

.career-column {
  flex: 1 1 300px;
  background: #fff;
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.career-column:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.career-subtitle {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #222;
}

.career-list {
  list-style: disc;
  padding-left: 20px;
}

.fashion-platforms {
  padding: var(--global_padding);
  /* background: #f9f9f9; */
  width: 100%;
}

.fashion-slider .item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}


.section-heading h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
}

.logo-carousel .logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  background: #ffffff;
  border-radius: 12px;
  transition: 0.4s ease;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.logo-carousel .logo-item img {
  max-height: 100px;
  width: auto;
  opacity: 0.7;
  transition: 0.4s ease;
}

/* 
.logo-carousel .logo-item:hover {
  transform: translateY(-5px);
} */

.logo-carousel .logo-item:hover img {
  opacity: 1;
}

.carousel-note {
  margin-top: 40px;
}

.carousel-note p {
  max-width: 700px;
  margin: auto;
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}


.partner-section {
  padding: var(--global_padding);
}

.partner-section h3 {
  font-weight: 700;
  margin-bottom: 20px;
}

.short-line {
  max-width: 700px;
  margin-bottom: 25px;
  color: #555;
}

.logo-carousel img,
.logo-row img {
  max-height: 70px;
  object-fit: contain;
  /* filter: grayscale(100%); */
  transition: .3s;
}

.logo-carousel img:hover,
.logo-row img:hover {
  filter: none;
  transform: scale(1.05);
}

/* Logo Row */

.logo-row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
  justify-content: center;
}

/* Student Impact */

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.impact-item {
  padding: 18px;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fafafa;
  font-size: 15px;
}


.career-hero .career-title {
  font-size: 32px;
  font-weight: 700;
  color: #fff !important;
  position: relative;
}


.stats-area {
  padding: 30px 0;
  background: linear-gradient(135deg, #0b0620, #1b0f3a);
}

.stats-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 25px;
  border-radius: 15px;
  /* background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .15); */
  color: #fff;
  transition: .4s;
}

.stats-card:hover {
  transform: translateY(-10px);
  border-color: #ff0057;
  box-shadow: 0 10px 30px rgba(255, 0, 87, .3);
}

.stats-icon img {
  height: 45px;
}

.stats-content h2 {
  font-size: 32px;
  margin: 0;
  color: #fff;
}

.stats-content p {
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: .7;
  margin: 0;
}


.student-achievers {
  background: #fff;
  padding: var(--global_padding);

}

.stats-area {
  /* background: #005aff; */
  background: var(--secondary-color1);
}

.stats-card {
  color: #fff;
}


/* .col-md-3:nth-child(1) .stats-card {
  background: linear-gradient(135deg, #c3ecff 0%, #e6ccff 100%);
  color: #222;
}


.col-md-3:nth-child(2) .stats-card {
  background: linear-gradient(135deg, #ffd6a5 0%, #ffb4c6 100%);
  color: #222;
}


.col-md-3:nth-child(3) .stats-card {
  background: linear-gradient(135deg, #b9fbc0 0%, #98f5e1 100%);
  color: #222;
}


.col-md-3:nth-child(4) .stats-card {
  background: linear-gradient(135deg, #fff3b0 0%, #ffd166 100%);
  color: #222; */
}


/* Hover */
.stats-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.e2 .nav-link {
  font-size: 15px;
  /* border: 1px solid #000 !important; */
}

.e2 .nav-link i {
  color: #222;
}


/* Card */
.achiever-card {
  text-align: center;
  padding: 15px;
}

.achiever-card img {
  width: 100%;
  max-width: 200px;
  height: 160px;
  object-fit: contain;
  /*border: 3px solid #1e3a8a;
    */
  margin: auto;
  transition: 0.3s ease;
  /* border: 1px solid #005aff; */
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.achiever-card:hover img {
  transform: scale(1.05);
}

.achiever-card h5 {
  margin-top: 15px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.brand {
  font-size: 14px;
  font-weight: 500;
  color: #555;
}

/* Brand highlights */
.brand.hm {
  color: #c0392b;
  font-weight: 700;
}

.brand.levis {
  color: #e10600;
  font-weight: 700;
}


.roles-section {
  padding: 0 0 40px 0;
}


.e44 {
  padding: 10px 0;

}

.role-card {
  border-radius: 14px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
}

/* Color sequence */
.role-card:nth-child(1) {
  background: #eef6ff;
}

.role-card:nth-child(2) {
  background: #fff5f7;
}

.role-card:nth-child(3) {
  background: #f7fee7;
}

.role-card:nth-child(4) {
  background: #f4f3ff;
}

.role-card:nth-child(5) {
  background: #fff4e6;
}

.role-card:nth-child(6) {
  background: #f0fdfa;
}


/* Hover effect */
.role-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}


.role-icon {
  font-size: 36px;
  margin-bottom: 15px;
}

.role-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.role-card p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 0;
}

/* Mobile Device  */

.mbl-hero-wrap {
  background: #ffffff;
}

.mbl-hero-img {
  height: 350px;
  object-fit: cover;
}

.histudy-courses {
  padding-top: 0 !important;
}

/* .alumni-container .para{
  padding: 10px 60px 0 60px;
} */


.owl-carousel .owl-dot.active {
  background-color: #0142b3;
  display: none;
}

.role-card {
  padding: 15px;

}

.role-card h5 {
  font-size: 18px;
}

/* Content */
.mbl-hero-body {
  padding: 26px 20px 30px;
}

.mbl-hero-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #c58b2b;
  margin-bottom: 10px;
}

.mbl-hero-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 14px;
}

.mbl-hero-text {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Buttons */
.mbl-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mbl-btn {
  padding: 14px 18px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Primary */
.mbl-btn-primary {
  background: #111;
  color: #fff;
}

/* Outline */
.mbl-btn-outline {
  border: 1px solid #111;
  color: #111;
  background: transparent;
}

/* Hover */
.mbl-btn-primary:hover {
  background: #000;
}

.mbl-btn-outline:hover {
  background: #111;
  color: #fff;
}


.image_changer {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.image_changer img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  /* image center */
  opacity: 0;
  transition: opacity 1s ease;
}

.image_changer img.active {
  opacity: 1;
}

.team-section {
  padding: var(--global_padding);
  background: #f8f9fc;
}

.team-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 25px;
}

.team-card {
  background: #fff;
  /* width: 300px; */
  height: 350px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.team-image {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.team-image img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
}

.team-content {
  padding: 25px;
  text-align: center;
}

.team-content h3 {
  margin: 10px 0 5px;
  font-size: 20px;
  font-weight: 600;
}

.team-content span {
  display: block;
  font-size: 14px;
  color: #777;
  margin-bottom: 15px;
}

.team-content p {
  font-size: 14px;
  color: #555;
}

/* Tablet */
@media (max-width: 991px) {
  .team-wrapper {
    gap: 20px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .team-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

/* video */
.testimonial-card {
  /* width: 260px; */
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
}

.video-wrapper {
  width: 100%;
  height: 100%;
}

.video-wrapper iframe.bg-video {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  /* NO CROP */
}

/* hide youtube click layer */
.video-wrapper iframe {
  pointer-events: none;
}


/* Gallery Section  */

.event-gallery {
  padding: var(--global_padding);
}

.event-gallery .gallery-grid {
  /* max-width: 1200px; */
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.event-gallery a {
  overflow: hidden;
  border-radius: 14px;
  display: block;
}

.event-gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.4s ease;
}

.event-gallery a:hover img {
  transform: scale(1.08);
}

/* Tablet */
@media (max-width: 991px) {
  .event-gallery .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .event-gallery .gallery-grid {
    grid-template-columns: 1fr;
  }

  .event-gallery img {
    height: 220px;
  }
}

.course-highlights {
  display: flex;
  gap: 15px;
}


.highlight-card {
  background: #fff;
  padding: 12px;
  border-radius: 14px;
  min-width: 200px;
  transition: all 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.highlight-head {
  font-size: 20px;
  font-weight: 600;
  color: var(--secondary-color2);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}

.highlight-text {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

.accordion-body ul {
  margin: 0;
  padding: 0;
}

.accordion-body ul li {
  list-style: none !important;
}



.blink {
  animation: blink 1s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}