@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Merriweather:ital,wght@1,400&display=swap");

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

:root {
  --primary-purple: #4d418c;
  --secondary-blue: #6a6fb3;
  --accent-gold: #caa95a;
  --dark-navy: #2c314a;
  --light-lavender: #dcdaf0;
  --neutral-dark: #3a3a3a;
  --neutral-light: #f9f9fb;
}

body {
  background-color: var(--neutral-light);
  overflow-x: hidden;
}

html {
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

/* ===== NAVBAR BRAND ===== */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.navbar-brand img {
  width: 80px;
  height: auto;
}

.logo-power {
  width: 90px !important;
  height: auto;
  margin-top: 5px;
}

.navbar-brand h5 {
  font-size: 1rem;
  margin: 0;
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark-navy);
  text-transform: uppercase;
  margin-bottom: 5px;
}

.navbar-brand p {
  font-size: 0.75rem;
  margin: 0;
  line-height: 1.1;
  color: var(--neutral-dark);
}

/* ===== NAVBAR TOP ===== */
.nav-top-media a {
  color: #2c314a;
  font-size: 12px;
}

.aply-btn {
  border: 2px solid #2c314a;
  border-radius: 8px;
  padding: 6px 15px;
  font-weight: 500;
  text-transform: uppercase;
}

/* ===== MAIN NAVBAR ===== */
.main-navbar {
  background: linear-gradient(135deg, #ffffff 0%, var(--light-lavender) 100%);
  border-bottom: 3px solid var(--accent-gold);
}

.main-navbar .nav-link {
  font-weight: 600;
  padding: 20px 18px 0px 18px;
  color: var(--dark-navy);
  transition: all 0.3s ease;
  border-radius: 4px;
  margin: 0 2px;
  text-transform: uppercase;
  font-size: 14px;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
  color: var(--primary-purple);
}

.main-navbar .dropdown-toggle::after {
  border-top-color: var(--primary-purple);
  margin-left: 6px;
}

/* ===== NORMAL DROPDOWN ===== */
.main-navbar .normal-dropdown .dropdown-menu {
  border-radius: 8px;
  padding: 10px 0;
  border: 1px solid var(--light-lavender);
  background: #ffffff;
  box-shadow: 0 5px 15px rgba(77, 65, 140, 0.1);
}

.main-navbar .dropdown-item {
  font-size: 14px;
  padding: 10px 20px;
  color: var(--dark-navy);
  transition: all 0.3s ease;
}

.main-navbar .dropdown-item:hover {
  background-color: var(--light-lavender);
  color: var(--primary-purple);
  padding-left: 25px;
}

/* ===== MEGA MENU ===== */
.main-navbar .mega-menu {
  background: linear-gradient(135deg, #ffffff 0%, var(--light-lavender) 100%);
  border-top: 3px solid var(--accent-gold);
  box-shadow: 0 10px 30px rgba(44, 49, 74, 0.15);
  padding-top: 0 !important;
  border-radius: 0px;
}

.main-navbar .mega-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary-purple);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--accent-gold);
  padding-bottom: 8px;
  display: inline-block;
}

.main-navbar .mega-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-navbar .mega-links li {
  margin-bottom: 10px;
}

.main-navbar .mega-links a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  color: var(--neutral-dark);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.main-navbar .mega-links a:hover {
  color: var(--primary-purple);
  padding-left: 10px;
}

.main-navbar .mega-links a::after {
  content: "→";
  color: var(--accent-gold);
  margin-right: 8px;
  opacity: 0;
  transition: all 0.3s ease;
}

.main-navbar .mega-links a:hover::after {
  opacity: 1;
  margin-right: 12px;
}

/* IMAGE COLUMN */
.main-navbar .mega-image-box {
  background: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(44, 49, 74, 0.1);
  border: 1px solid var(--light-lavender);
}

.main-navbar .mega-image-box img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
}

.main-navbar .mega-image-box p {
  font-size: 13px;
  color: var(--neutral-dark);
  margin-top: 12px;
  line-height: 1.5;
  font-style: italic;
}

/* Hover effect for mega menu links container */

.main-navbar .col-lg-2 {
  padding: 20px 15px;
  border-right: 1px solid rgba(220, 218, 240, 0.5);
}

.main-navbar .col-lg-2:last-child {
  border-right: none;
}

/* MOBILE ADJUSTMENTS */
@media (max-width: 991px) {
  .main-navbar {
    background: #ffffff;
  }

  .main-navbar .mega-dropdown .dropdown-menu {
    position: static;
    box-shadow: none;
    background: var(--neutral-light);
  }

  .main-navbar .col-lg-2 {
    border-right: none;
    border-bottom: 1px solid rgba(220, 218, 240, 0.5);
    padding: 15px 0;
  }

  .main-navbar .col-lg-2:last-child {
    border-bottom: none;
  }

  .main-navbar .mega-image-box {
    margin-top: 20px;
  }

  .main-navbar .mega-title {
    font-size: 14px;
  }

  .main-navbar .mega-links a {
    font-size: 13px;
  }
}

/* Navbar toggler customization */
.navbar-toggler {
  border: 2px solid var(--primary-purple);
  padding: 6px 10px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(77, 65, 140, 0.2);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2877, 65, 140, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ================================
   CXO MEGA MENU 
   ================================ */
.cxo-mega-wrapper .cxo-mega-block {
  position: relative;
  overflow: hidden;
}

.cxo-mega-wrapper .cxo-title {
  font-size: 15px;
  font-weight: 600;
  color: #2c314a;
  margin-bottom: 8px;
}

.cxo-mega-wrapper .cxo-mega-text p {
  font-size: 13.5px;
  line-height: 1.6;
  color: #3a3a3a;
  margin-bottom: 14px;
}

.cxo-mega-wrapper .cxo-btn-group {
  display: flex;
  gap: 10px;
}

.cxo-mega-wrapper .cxo-mega-image {
  padding: 0;
}

.cxo-mega-wrapper .cxo-mega-image img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  border-radius: 14px;
  position: relative;
  z-index: 2;
}

.cxo-mega-wrapper .cxo-image-overlay {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(44, 49, 74, 0.85);
  color: #ffffff;
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 20px;
  z-index: 3;
}

/* ================================
   CXO BUTTONS – BRAND COLORS
   ================================ */

/* PRIMARY BUTTON */
.cxo-mega-wrapper .cxo-btn-primary {
  background-color: var(--primary-purple);
  color: #ffffff;
  border: 1px solid var(--primary-purple);
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.cxo-mega-wrapper .cxo-btn-primary:hover {
  background-color: var(--secondary-blue);
  border-color: var(--secondary-blue);
  color: #ffffff;
}

/* SECONDARY BUTTON */
.cxo-mega-wrapper .cxo-btn-secondary {
  background-color: transparent;
  color: var(--dark-navy);
  border: 1px solid var(--accent-gold);
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.cxo-mega-wrapper .cxo-btn-secondary:hover {
  background-color: var(--accent-gold);
  color: var(--dark-navy);
}

@media (max-width: 991px) {
  .cxo-mega-wrapper .cxo-mega-block {
    margin-bottom: 12px;
  }
}

/* ----------------------News-marquee------------------------ */

/* NEWS BOX */
.mega-news-box {
  background: #f9f9fb;
  border-radius: 12px;
  padding: 18px 18px 12px;
  border-left: 4px solid var(--primary-purple);
}

/* TITLE */
.mega-news-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark-navy);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* MARQUEE WRAPPER */
.mega-news-marquee {
  height: 190px;
  overflow: hidden;
  position: relative;
}

/* LIST */
.mega-news-marquee ul {
  list-style: none;
  padding: 0;
  margin: 0;
  animation: verticalScroll 14s linear infinite;
}

/* PAUSE ON HOVER */
.mega-news-marquee:hover ul {
  animation-play-state: paused;
}

/* LIST ITEM */
.mega-news-marquee li {
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px dashed #ddd;
}

/* DATE */
.mega-news-marquee .news-date {
  display: block;
  font-size: 12px;
  color: var(--secondary-blue);
  margin-bottom: 4px;
  font-weight: 500;
}

/* LINK */
.mega-news-marquee a {
  font-size: 14px;
  color: var(--neutral-dark);
  text-decoration: none;
  line-height: 1.4;
  display: inline-block;
}

.mega-news-marquee a:hover {
  color: var(--primary-purple);
  text-decoration: underline;
}

/* KEYFRAMES */
@keyframes verticalScroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}

/* --------------------------------------------------------- */
/* -----------------------Banner-section------------------- */
/* ------------------------------------------------------- */

/* SECTION */
.pgp-hero-section {
  background: linear-gradient(135deg, var(--dark-navy), var(--primary-purple));
  padding: 80px 0;
  color: #fff;
}

/* TITLE */
.pgp-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.pgp-subtext {
  font-size: 14px;
  max-width: 95%;
}

/* TAGS */
.pgp-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.pgp-tags span {
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  border: 1px solid var(--light-lavender);
  color: var(--light-lavender);
}

/* BUTTON */
.pgp-btn {
  background-color: var(--accent-gold);
  color: var(--dark-navy);
  padding: 8px 10px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
}

.pgp-btn:hover {
  background-color: #b99845;
  color: #fff;
}

/* TRUST */
.pgp-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.small-heading {
  font-size: 13px;
  color: var(--light-lavender);
  margin-bottom: 8px;
}

.logo-box {
  background: rgba(255, 255, 255, 0.08);
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
}

.logo-box span {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.logo-box span i {
  font-size: 10px;
}

.powerd-by {
  display: flex;
  align-items: center;
  gap: 10px;
}

.powerd-by h5 {
  margin: 0;
  font-size: 16px;
}

.powerd-by img {
  height: 40px;
  width: auto;
  background-color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
}

/* VIDEO CARD */
.video-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
}

.video-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  filter: brightness(0.65);
}

/* PLAY BUTTON */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border: none;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  font-size: 30px;
  color: var(--primary-purple);
}

/* VIDEO TEXT */
.video-text {
  position: absolute;
  top: 30px;
  left: 30px;
}

.video-text h3 {
  font-size: 28px;
  font-weight: 700;
}

.video-text span {
  color: var(--accent-gold);
}

.pgp-tags i,
.logo-box i {
  color: var(--accent-gold);
  margin-right: 6px;
}

/* -------------------------------------- */
/* -----------SG_PROGRAMS--------------- */
/* ------------------------------------ */

.sg-programs {
  padding: 0px 0px 0px 0px;
}

.sg-programs,
.sg-programs .img-box {
  position: relative;
}

.sg-programs .text-overlay.program-content {
  position: absolute;
  top: 50%;
  left: 50px;
  transform: translateY(-50%);
  color: var(--dark-navy);
  width: 60%;
}

.heading-programs {
  font-size: 40px;
  font-weight: 700;
  color: #3a3a3a;
  line-height: 1.1;
  margin: 0;
  padding: 40px 0px 20px 0px;
}

.heading-programs span {
  font-family: "Merriweather", serif;
  font-style: italic;
  font-weight: 400;
  color: #3a3a3a;
}

.program-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark-navy);
}

.program-desc {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--dark-navy);
}

.program-tags span {
  display: inline-block;
  background: var(--light-lavender);
  color: var(--dark-navy);
  font-size: 14px;
  padding: 4px 10px;
  border-radius: 4px;
  margin-right: 6px;
  margin-bottom: 6px;
}

.program-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-purple);
  text-decoration: none;
}

.program-link:hover {
  text-decoration: underline;
}

.program-actions {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}

.program-actions .program-link {
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.program-actions .btn-know {
  background: var(--light-lavender);
  color: var(--dark-navy);
}

.program-actions .btn-apply {
  background: var(--primary-purple);
  color: #fff;
}

/* ---------------High-lights----------- */

.cxo-highlights {
  padding: 40px 0px 50px 0px;
}

.cxo-highlights .cxo-card {
  position: relative;
  background: var(--neutral-light);
  border-radius: 14px;
  padding: 32px 28px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid #ececf3;
}

.cxo-highlights .cxo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(44, 49, 74, 0.12);
}

.cxo-highlights .cxo-count {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 35px;
  font-weight: 700;
  color: var(--light-lavender);
  line-height: 1;
}

.cxo-highlights .cxo-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 12px;
  max-width: 85%;
}

.cxo-highlights .cxo-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--neutral-dark);
  margin: 0;
}

/* ---------------High-lights----------- */

.sg-programs-ug,
.sg-programs-ug .img-box {
  position: relative;
}

.sg-programs-ug .ug-text-overlay {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 58%;
  color: var(--neutral-light);
}

.ug-program-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--neutral-light);
}

.ug-program-desc {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 12px;
  color: rgba(249, 249, 251, 0.85);
}

.ug-program-tags span {
  display: inline-block;
  background: rgba(220, 218, 240, 0.15);
  color: var(--light-lavender);
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 4px;
  margin-right: 6px;
  margin-bottom: 6px;
  border: 1px solid rgba(220, 218, 240, 0.3);
}

.ug-program-actions {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}

.ug-btn {
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ug-btn-know {
  background: var(--secondary-blue);
  color: #fff;
}

.ug-btn-know:hover {
  background: var(--primary-purple);
}

.ug-btn-apply {
  background: var(--accent-gold);
  color: var(--dark-navy);
}

.ug-btn-apply:hover {
  background: var(--primary-purple);
  color: #fff;
}

/* --------------------------------------------------- */
/* -----------------Faculty-section------------------ */
/* ------------------------------------------------- */

.Faculty .team-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
}

.Faculty .team-card {
  grid-column: span 1;
  padding: 0;
  text-align: left;
}

.Faculty .team-card-wide {
  grid-column: span 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.Faculty .team-img {
  background-color: var(--dark-navy);
  border-radius: 8px;
  width: fit-content;
  margin-bottom: 10px;
}

.Faculty .team-img img {
  width: 150px;
  height: 147px;
  object-fit: cover;
  filter: grayscale(100%);
  display: block;
  border-radius: 4px;
}

.Faculty .team-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--neutral-dark);
  margin-bottom: 4px;
}

.Faculty .team-desc {
  font-size: 12px;
  color: var(--neutral-dark);
  line-height: 1.5;
  margin: 0;
}

.Faculty .team-card-wide h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-purple);
  margin: 0;
}

@media (max-width: 992px) {
  .Faculty .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 576px) {
  .Faculty .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------------------------------------------- */
/* ------------owl-carosal-sg-cources----------- */
/* -------------------------------------------- */

.carosal-cources-sg {
  padding: 80px 0;
}

/* LEFT TEXT */
.carosal-cources-sg .sg-course-content h3 {
  font-size: 28px;
  color: var(--dark-navy);
  margin-bottom: 15px;
}

.carosal-cources-sg .sg-course-content p {
  color: var(--neutral-dark);
  line-height: 1.6;
}

/* CAROUSEL WRAPPER */
.carosal-cources-sg .sg-carousel-wrapper {
  position: relative;
}

/* ITEM */
.carosal-cources-sg .sg-carousel-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.carosal-cources-sg .sg-carousel-item img {
  width: 100%;
  height: 373px;
  object-fit: cover;
}

.carosal-cources-sg .sg-carousel-overlay {
  position: absolute;
  inset: 0;
  width: 40%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  background: linear-gradient(
    to right,
    rgba(77, 65, 140, 0.95) 80%,
    rgba(77, 65, 140, 0.85) 100%,
    rgba(77, 65, 140, 0) 100%
  );
}

.carosal-cources-sg .sg-course-content h3 {
  font-size: 40px;
  font-weight: 700;
  color: #3a3a3a;
  line-height: 1.1;
  margin: 0;
  padding: 40px 0px 20px 0px;
}

.carosal-cources-sg .sg-course-content h3 span {
  font-family: "Merriweather", serif;
  font-style: italic;
  font-weight: 400;
  color: #3a3a3a;
}

.carosal-cources-sg .sg-carousel-overlay h4 {
  font-size: 22px;
  margin-bottom: 8px;
}

.carosal-cources-sg .sg-carousel-overlay p {
  font-size: 14px;
}

/* DOTS - CENTER */
.carosal-cources-sg .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.carosal-cources-sg .owl-dot span {
  width: 10px;
  height: 10px;
  background: var(--light-lavender);
  display: block;
  border-radius: 50%;
  margin: 5px;
}

.carosal-cources-sg .owl-dot.active span {
  background: var(--primary-purple);
}

/* ARROWS - RIGHT SIDE */
.carosal-cources-sg .owl-nav {
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.carosal-cources-sg .owl-nav button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-purple) !important;
  color: #fff !important;
  font-size: 18px;
  transition: 0.3s;
}

.carosal-cources-sg .owl-nav button:hover {
  background: var(--secondary-blue) !important;
}

.carosal-btns {
  display: flex;
  gap: 10px;
}

.carosal-btns-one {
  background-color: var(--accent-gold);
  color: var(--neutral-dark);
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.carosal-btns-two {
  background-color: var(--secondary-blue);
  color: #ffffff;
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s ease;
}

/* ------------------------------------------ */
/* --------------about - SG------------------*/
/* ---------------------------------------- */

.about-section {
  padding-top: 60px;
  border-radius: 12px;
}

/* Left Side */
.about-left img {
  border-radius: 10px;
}

.about-contact h5 {
  color: #333;
  margin-bottom: 10px;
}

.about-contact p {
  color: #666;
  font-size: 15px;
}

.about-contact a {
  background-color: #f1f1f1;
  border-radius: 6px;
  padding: 8px 18px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.about-contact a:hover {
  background-color: #ffd369;
  color: #000;
}

/* Right Side */
.about-right {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.section-subtitle-aboutus {
  color: var(--green);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.section-title-aboutus {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.about-right p {
  color: #555;
  line-height: 1.7;
}

.green-bold {
  font-size: 5rem;
}

.read-more {
  color: var(--primary-purple);
}

/* ---------------------------------------- */
/* ---------------Infrastracture---------- */
/* -------------------------------------- */
.gallery-infra {
  padding: 40px 0px 60px 0px;
}

.gallery-infra .facility-text {
  max-width: 900px;
  margin: 0 auto 50px auto;
  text-align: center;
  color: var(--primary-purple);
  font-size: 1.1rem;
  line-height: 1.8;
  font-weight: 400;
}

.gallery-infra .infrastructure-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(44, 49, 74, 0.15);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  background-color: #ffffff;
  height: 300px;
}

.gallery-infra .infrastructure-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(44, 49, 74, 0.25);
}

.gallery-infra .infrastructure-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-infra .infrastructure-card:hover img {
  transform: scale(1.1);
}

.gallery-infra .card-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gallery-infra .title-section {
  background: linear-gradient(to bottom, rgba(44, 49, 74, 0.85), transparent);
  padding: 20px;
  transition: all 0.4s ease;
}

.gallery-infra .title-section h3 {
  font-size: 1.2rem;
  margin: 0;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.gallery-infra .overlay {
  background: linear-gradient(to top, rgba(44, 49, 74, 0.9), transparent 40%);
  color: #ffffff;
  padding: 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.gallery-infra .infrastructure-card:hover .overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-infra .overlay p {
  font-size: 0.95rem;
  color: #f1f1f1;
  margin-bottom: 15px;
  line-height: 1.5;
}

.gallery-infra .overlay a {
  display: inline-block;
  background-color: var(--accent-gold);
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease;
  align-self: flex-start;
}

.gallery-infra .overlay a:hover {
  background-color: var(--secondary-blue);
}

.gallery-infra .btn_all {
  display: inline-block;
  background-color: var(--primary-purple);
  color: #ffffff;
  padding: 12px 35px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.gallery-infra .btn_all:hover {
  background-color: var(--accent-gold);
  transform: scale(1.05);
}

/* ================================
   EVENT MARQUEE – CINEMATIC
================================ */

.event-marquee {
  width: 100%;
  overflow: hidden;
  padding: 20px 0px 60px 0px;
  cursor: auto;
}

.event-marquee:active {
  cursor: grabbing;
}

.event-marquee__wrapper {
  width: 100%;
  overflow: hidden;
}

.event-marquee__track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: eventMarqueeScroll 60s linear infinite; /* 🎬 cinematic speed */
  will-change: transform;
}

/* Pause animation on hover or drag */
.event-marquee__wrapper:hover .event-marquee__track,
.event-marquee.is-dragging .event-marquee__track {
  animation-play-state: paused;
}

.event-marquee__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-marquee__item img {
  height: 260px;
  width: auto;
  max-width: 1000px;
  object-fit: contain;
  display: block;
  border-radius: 14px;
  user-select: none;
  pointer-events: none; /* important for drag */
  transition: transform 0.4s ease;
}

.event-marquee__item img:hover {
  transform: scale(1.03);
}

/* Infinite animation */
@keyframes eventMarqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
  .event-marquee__item img {
    height: 210px;
  }
}

@media (max-width: 768px) {
  .event-marquee {
    padding: 20px 0;
  }

  .event-marquee__track {
    gap: 40px;
  }

  .event-marquee__item img {
    height: 160px;
    max-width: 600px;
  }
}

/* -------------------------------------- */
/* --------------Footer----------------- */
/* ------------------------------------ */

/* FOOTER */
.college-footer {
  background: var(--neutral-dark);
  padding: 60px 0 20px;
  color: var(--neutral-light);
  font-size: 14px;
}

.college-footer .footer-col {
  margin-bottom: 30px;
}

.footer-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #d1d1d1;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--light-lavender);
  padding-left: 4px;
}

/* FOOTER BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  margin-top: 20px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: #bdbdbd;
}

.footer-bottom a {
  color: #d1d1d1;
}

.footer-address p {
  margin-bottom: 12px;
  line-height: 1.6;
  color: #d1d1d1;
  font-size: 14px;
}

.footer-address a {
  color: #d1d1d1;
  text-decoration: none;
}

.footer-address a:hover {
  color: var(--light-lavender);
}

.ar-logos {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ar-logos img {
  background-color: #fff;
  padding: 6px;
  border-radius: 4px;
  max-height: 80px;
  width: auto;
  object-fit: contain;
}

/* ------------------------------------ */
/* ----------company-logos------------ */
/* ---------------------------------- */

.brand-wall {
  padding: 20px 0px 60px 0px;
}

/* GRID – EXACT 6 IN A ROW */
.brand-wall__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

/* LOGO CARD */
.brand-wall__item {
  background-color: var(--dark-navy);
  border-radius: 14px;
  height: 90px;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* LOGO IMAGE */
.brand-wall__item img {
  max-width: 120px;
  max-height: 45px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* optional for dark bg */
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .brand-wall__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .brand-wall__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .brand-wall__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ------------------------------------ */
/* -------------Counter-section------- */
/* ---------------------------------- */

/* Section Wrapper */
.career-outcomes-section {
  padding: 90px 0 120px;

  position: relative;
}

/* Background Image */
.career-bg img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
}

/* Stats Card */
.career-stats-card {
  position: absolute;
  left: 50%;
  bottom: -45px;
  transform: translateX(-50%);
  width: 92%;
  background: linear-gradient(135deg, var(--dark-navy), var(--primary-purple));
  border-radius: 22px;
  padding: 32px 10px;
  box-shadow: 0 18px 45px rgba(44, 49, 74, 0.35);
}

/* Stat Item */
.stat-item {
  padding: 18px 22px;
  border-right: 1px solid rgba(220, 218, 240, 0.25);
}

/* Remove border last */
.stat-item:last-child {
  border-right: none;
}

/* Main Numbers */
.stat-value {
  color: var(--accent-gold);
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 6px;
}

/* Labels */
.stat-label {
  color: var(--light-lavender);
  font-size: 15px;
  margin-bottom: 0;
}

/* Title Column */
.stat-title {
  color: var(--neutral-light);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 991px) {
  .career-stats-card {
    position: static;
    transform: none;
    margin-top: 25px;
    margin-left: 15px;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(220, 218, 240, 0.25);
    text-align: center;
  }

  .stat-item:last-child {
    border-bottom: none;
  }
}

/* ---------------------------------------- */
/* -------------Aboutus-page-------------- */
/* -------------------------------------- */

.about-sgc {
  padding: 80px 0px 0px 0px;
}
.inside-heading {
  font-size: 32px;
  font-weight: 700;
  color: #3a3a3a;
  line-height: 1.1;
  margin: 0;
  padding: 40px 0px 20px 0px;
}

.inside-heading span {
  font-family: "Merriweather", serif;
  font-style: italic;
  font-weight: 400;
  color: #3a3a3a;
}

.sgc-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.sgc-image-overlay-box {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(
    135deg,
    var(--primary-purple),
    var(--secondary-blue)
  );
  padding: 18px 22px;
  border-radius: 6px;
  min-width: 200px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  border-left: 4px solid var(--accent-gold);
}

.sgc-image-overlay-box h4 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1;
}

.sgc-image-overlay-box p {
  font-size: 14px;
  color: #f1f1f1;
  margin: 0;
  letter-spacing: 0.4px;
}

.students-foreign {
  margin-top: 40px;
  margin-bottom: 40px;
}

.students-foreign p {
  font-size: 16px;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 25px auto;
  text-align: center;
}

.students-foreign img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 40px;
}

.wrapper-full-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.pill-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  max-width: calc(100% - 40px);
  padding: 12px 22px;
  background: linear-gradient(
    135deg,
    var(--primary-purple),
    var(--secondary-blue)
  );
  border-radius: 50px;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.pill-overlay p {
  font-size: 22px;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
  white-space: normal;
}

/* -------------------------------- */
/* ---------mile-stone------------ */
/* ------------------------------ */

.sgc-timeline {
  padding: 0px 0px 40px 0px;
  background: #f8f9fc;
}

.sgc-timeline .container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

.sgc-timeline .timeline-title {
  text-align: center;
  margin-bottom: 30px;
}

.sgc-timeline .timeline {
  position: relative;
  padding-left: 40px;
}

.sgc-timeline .timeline::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--primary-purple);
}

.sgc-timeline .timeline-item {
  position: relative;
  margin-bottom: 50px;
  padding-left: 30px;
}

.sgc-timeline .timeline-item::before {
  content: "";
  position: absolute;
  left: -37px;
  top: 8px;
  width: 18px;
  height: 18px;
  background: var(--accent-gold);
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px var(--primary-purple);
}

.sgc-timeline .timeline-year {
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 8px;
  font-size: 15px;
}

.sgc-timeline .timeline-content {
  background: #ffffff;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.sgc-timeline .timeline-content h4 {
  color: var(--primary-purple);
  font-size: 20px;
  margin-bottom: 10px;
}

.sgc-timeline .timeline-content p {
  color: #444;
  font-size: 15px;
  line-height: 1.7;
}

/* --------------------------------- */
/* ----------Vision-mission-------- */
/* ------------------------------- */

.vm-sgc {
  padding: 80px 0px;
}

.vm-sgc ul {
  padding-left: 1rem;
}

.vision-mission {
  padding: 80px 0;
  background: linear-gradient(135deg, #f3f1ff 0%, #ebe9ff 100%);
  position: relative;
  overflow: hidden;
}

.vision-mission .container {
  position: relative;
  z-index: 1;
}

.vision-mission h3 {
  color: var(--primary-purple);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.vision-mission h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--secondary-blue);
  border-radius: 3px;
}

.vision-mission p {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 0;
}

.vision-mission .row > div {
  padding: 30px;
}

.vision-text {
  position: relative;
  padding-right: 30px;
}

.vision-text::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--secondary-blue),
    transparent
  );
  opacity: 0.3;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vision-mission .col-lg-6 {
  animation: fadeInUp 0.8s ease-out forwards;
}

.vision-mission .col-lg-6:last-child {
  animation-delay: 0.3s;
}

/* ---------------------------------- */
/* ----------Board-of-trustees------ */
/* -------------------------------- */

.team-section {
  padding: 90px 0;
  background: #f4f8fd;
}

.team-section .section-header h2 {
  position: relative;
  display: inline-block;
  font-weight: 600;
}

.team-section .section-header p {
  margin-top: 10px;
  color: #555;
}

/* Team Card */

.team-section .team-card {
  background: #fff;
  padding: 25px 20px 30px;
  border-radius: 14px;
  text-align: center;
  height: 100%;
  transition: all 0.35s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.team-section .team-card img {
  width: 50%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 18px;
  filter: grayscale(100%);
  transition: all 0.4s ease;
}

.team-section .team-card h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.team-section .team-card span {
  font-size: 13px;
  color: var(--accent-gold);
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}

.team-section .team-card p {
  font-size: 14px;
  color: #666;
}

/* ------------------------ */

.Director-message {
  padding: 40px 0px 0px 0px;
}

/* -------------------------------------------------*/
/* ================= CXO UG PAGE ================= */
/* ---------------------------------------------- */

.cxo-header-part-mba {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: url(../images/cxo/mba-cxo-program.webp) no-repeat 100% 1%;
  background-size: cover;
}

.cxo-header-part-mba::before {
  content: "";
  position: absolute;
  inset: 0;
}

.cxo-header-part-mba .container {
  position: relative;
  z-index: 2;
}

.cxo-header-part-mba h1 {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.cxo-header-part-mba h1 span {
  color: #ffd369;
}

.cxo-header-part-mba div > span {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 500;
  position: relative;
  padding-left: 18px;
}

.cxo-header-part-mba div > span::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ffd369;
}

/* ----- */

.cxo-header-part {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: url(../images/cxo/ug-banner.webp) no-repeat 100% 1%;
  background-size: cover;
}

.cxo-header-part::before {
  content: "";
  position: absolute;
  inset: 0;
}

.cxo-header-part .container {
  position: relative;
  z-index: 2;
}

.cxo-header-part h1 {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.cxo-header-part h1 span {
  color: #ffd369;
}

.cxo-header-part div > span {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 500;
  position: relative;
  padding-left: 18px;
}

.cxo-header-part div > span::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ffd369;
}

.cxo-ug-page {
  padding: 70px 0px 0px 0px;
}

.cxo-section {
  padding: 0px 0px 40px;
}
.cxo-ug-page .cxo-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark-navy);
  position: relative;
  margin-bottom: 20px;
}

.cxo-ug-page .cxo-center {
  text-align: center;
}

.cxo-ug-page .cxo-center::after {
  left: 50%;
  transform: translateX(-50%);
}

.cxo-ug-page .cxo-text {
  color: #555;
  line-height: 1.7;
}

.cxo-ug-page .cxo-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px;
}

.cxo-ug-page .cxo-highlight {
  border-left: 4px solid var(--accent-gold);
  padding-left: 20px;
  margin-bottom: 25px;
}

.cxo-ug-page .cxo-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.cxo-ug-page .cxo-card-header {
  background: var(--primary-purple);
  color: #fff;
  padding: 18px 22px;
  font-weight: 700;
}

.cxo-ug-page .cxo-card-body {
  padding: 25px;
}

.cxo-ug-page .cxo-year-box {
  background: var(--light-lavender);
  padding: 30px;
  border-radius: 12px;
}

.cxo-ug-page .cxo-gold-bg {
  background: rgba(202, 169, 90, 0.15);
}

.cxo-ug-page .cxo-list {
  padding-left: 18px;
}

.cxo-ug-page .cxo-badge {
  display: inline-block;
  background: #eee;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin: 10px 5px 0 0;
}

.cxo-ug-page .cxo-icon {
  font-size: 40px;
  color: var(--accent-gold);
  margin-bottom: 15px;
}

.cxo-ug-page .cxo-cta {
  background: var(--primary-purple);
  padding: 60px 0px;
}

.apply-call-box {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
}

.apply-call-box .apply-btn {
  background: linear-gradient(135deg, #4d418c, #6a6fb3);
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.apply-call-box .apply-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.apply-call-box .divider {
  color: #999;
}

.apply-call-box .call-text {
  color: #fff;
}

.apply-call-box .call-text a {
  color: #ffff;
  text-decoration: none;
  font-weight: 600;
}

.apply-call-box .call-text a:hover {
  text-decoration: underline;
}

.cxo-ug-page .cxo-title-white {
  color: #fff;
  font-weight: 700;
}

.cxo-ug-page .cxo-text-white {
  color: #eee;
}

.cxo-ug-page .cxo-roi {
  font-size: 48px;
  font-weight: 800;
  color: var(--accent-gold);
}

.benefits-mba {
  padding: 0px 0px 40px 0px;
  background-color: #f9f9fc;
}

.benefits-mba .bene-boxz {
  height: 100%;
  text-align: center;
  padding: 30px 20px;
  border-radius: 12px;
  background: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.benefits-mba .bene-boxz:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.benefits-mba .bene-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: #eef0ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefits-mba .bene-icon i {
  font-size: 26px;
  color: #4d418c;
}

.benefits-mba .bene-boxz h5 {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin-bottom: 8px;
}

.benefits-mba .bene-boxz p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .benefits-mba {
    padding: 0px 0px 30px 0px;
  }
}

/* ------------------------------------ */
/* ----------all-cources-------------- */
/* ---------------------------------- */

.sgc-courses-section {
  background-color: var(--neutral-light);
}

.sgc-section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark-navy);
}

.sgc-section-subtitle {
  max-width: 750px;
  margin: 0 auto;
  color: var(--neutral-dark);
}

.sgc-course-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.sgc-course-header {
  background: linear-gradient(
    135deg,
    var(--primary-purple),
    var(--secondary-blue)
  );
  padding: 20px 30px;
}

.sgc-course-header h3 {
  color: #ffffff;
  margin: 0;
  font-weight: 600;
}

.sgc-course-body {
  padding: 30px;
}

.sgc-course-description {
  color: var(--neutral-dark);
  line-height: 1.7;
  margin-bottom: 25px;
}

.sgc-course-offered h5 {
  font-weight: 600;
  color: var(--dark-navy);
  margin-bottom: 15px;
}

.sgc-course-list {
  background: var(--light-lavender);
  padding: 20px;
  border-radius: 10px;
  height: 100%;
}

.sgc-course-list h6 {
  color: var(--primary-purple);
  font-weight: 600;
  margin-bottom: 10px;
}

.sgc-course-list ul {
  padding-left: 18px;
  margin: 0;
}

.sgc-course-list ul li {
  color: var(--neutral-dark);
  margin-bottom: 6px;
}

.sgc-course-actions {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.sgc-btn-primary {
  background-color: var(--primary-purple);
  color: #ffffff;
  border-radius: 30px;
  padding: 10px 26px;
  font-weight: 500;
}

.sgc-btn-primary:hover {
  background-color: var(--secondary-blue);
  color: #ffffff;
}

.sgc-btn-outline {
  border: 1px solid var(--primary-purple);
  color: var(--primary-purple);
  border-radius: 30px;
  padding: 10px 26px;
  font-weight: 500;
}

.sgc-btn-outline:hover {
  background-color: var(--primary-purple);
  color: #ffffff;
}

.sgc-fees-links {
  margin-top: 20px;
  font-size: 0.95rem;
}

.sgc-fees-links a {
  color: var(--accent-gold);
  font-weight: 500;
  text-decoration: none;
}

.sgc-fees-links span {
  margin: 0 8px;
  color: var(--neutral-dark);
}

.sgc-fees-links a:hover {
  text-decoration: underline;
}

.sgc-course-image-wrapper {
  text-align: center;
}

.sgc-course-image {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* ------------------------------------------ */
/* -------------Rules-Regulations----------- */
/* ---------------------------------------- */
.rr {
  background-color: var(--neutral-light);
  padding: 60px 0;
}

.general-regulations,
.general-regulations-continue {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 35px 30px;
  height: 100%;
  box-shadow: 0 10px 25px rgba(44, 49, 74, 0.08);
  border-left: 5px solid var(--primary-purple);
}

.general-regulations ul,
.general-regulations-continue ul {
  padding-left: 0;
  margin: 0;
}

.general-regulations ul li,
.general-regulations-continue ul li {
  list-style: none;
  position: relative;
  padding-left: 32px;
  margin-bottom: 18px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--neutral-dark);
}

.general-regulations ul li::before,
.general-regulations-continue ul li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 12px;
  color: var(--secondary-blue);
}

.general-regulations ul li:hover,
.general-regulations-continue ul li:hover {
  color: var(--dark-navy);
}

/* ------------------------ */

/* MBA Grooming & Dress Code Section */
.mba-gg {
  background: var(--neutral-light);
  padding: 60px 0;
  color: var(--neutral-dark);
}

/* Intro Text Box */
.mba-gg .gg-sub-line {
  background: var(--light-lavender);
  padding: 25px 30px;
  border-left: 6px solid var(--primary-purple);
  border-radius: 10px;
  margin-bottom: 35px;
}

.mba-gg .gg-sub-line p {
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: var(--dark-navy);
}

.mba-gg .gg-sub-line ul {
  padding-left: 18px;
  margin-bottom: 0;
}

.mba-gg .gg-sub-line ul li {
  font-size: 14.5px;
  margin-bottom: 6px;
  position: relative;
  color: var(--neutral-dark);
}

/* Section Headings */
.mba-gg h5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-purple);
  margin-bottom: 15px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--accent-gold);
  display: inline-block;
}

/* Lists */
.mba-gg ul {
  padding-left: 20px;
}

.mba-gg ul li {
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 8px;
  color: var(--neutral-dark);
}

.mba-gg .col-lg-6 {
  padding: 25px 30px;
  margin-bottom: 25px;
}

/* Note Styling */
.mba-gg p strong {
  color: var(--primary-purple);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.mba-gg p {
  font-size: 14px;
  margin-top: 15px;
  color: var(--dark-navy);
}

/* --------------------------------- */
/* ----------Principal-message----- */
/* ------------------------------- */

.principal-image-wrapper {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}

.principal-image {
  width: 100%;
  object-fit: cover;
}

.principal-image-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(
    to top,
    rgba(44, 49, 74, 0.9),
    rgba(44, 49, 74, 0.2)
  );
  color: #ffffff;
  padding: 15px 20px;
}

.principal-image-caption h5 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.principal-image-caption p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--accent-gold);
}

.principal-content-box {
  padding: 40px;
  border-radius: 14px;
}

.principal-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-purple);
  margin-bottom: 10px;
}

.principal-divider {
  display: block;
  width: 70px;
  height: 4px;
  background-color: var(--accent-gold);
  border-radius: 2px;
  margin-bottom: 25px;
}

.principal-content-box p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--neutral-dark);
  margin-bottom: 16px;
}

.principal-quote {
  font-style: italic;
  font-weight: 500;
  color: var(--primary-purple);
  background-color: var(--light-lavender);
  padding: 18px 22px;
  border-left: 4px solid var(--accent-gold);
  border-radius: 8px;
}

.principal-signature {
  margin-top: 25px;
  font-size: 0.95rem;
  color: var(--dark-navy);
}

/* --------------------------------- */
/* -------Faculty------------------ */
/* ------------------------------- */

.table-fac-heading {
  padding-top: 60px;
}

.sgc-faculty {
  padding: 0px 0px 30px 0px;
  background-color: var(--neutral-light);
}

.sgc-faculty .table {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(44, 49, 74, 0.08);
  border: none;
}

.sgc-faculty thead {
  background: linear-gradient(
    135deg,
    var(--primary-purple),
    var(--secondary-blue)
  );
}

.sgc-faculty thead th {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  padding: 16px 18px;
  border: none;
  letter-spacing: 0.5px;
}

.sgc-faculty tbody td {
  padding: 14px 18px;
  font-size: 15px;
  color: var(--neutral-dark);
  vertical-align: middle;
  border-color: #ececf4;
}

.sgc-faculty tbody tr:nth-child(even) {
  background-color: var(--light-lavender);
}

.sgc-faculty tbody tr:hover {
  background-color: rgba(106, 111, 179, 0.12);
  transition: background 0.3s ease;
}

.sgc-faculty tbody td:first-child {
  font-weight: 600;
  color: var(--dark-navy);
}

.sgc-faculty tbody td:nth-child(2) {
  color: var(--primary-purple);
  font-weight: 500;
}

.facilities-college {
  background-color: var(--neutral-light);
  padding: 60px 0;
}

.facilities-college .row {
  align-items: center;
  margin-bottom: 60px;
}

.facilities-college h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-purple);
  margin-bottom: 15px;
  position: relative;
}

.facilities-college h3::after {
  content: "";
  width: 50px;
  height: 3px;
  background-color: var(--accent-gold);
  display: block;
  margin-top: 8px;
}

.facilities-college p {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--neutral-dark);
  margin-bottom: 0;
}

.facilities-college img {
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(44, 49, 74, 0.12);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.facilities-college img:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(44, 49, 74, 0.18);
}

.facilities-college .facility-4 {
  background-color: var(--light-lavender);
  padding: 40px 30px;
  border-radius: 16px;
}

.facilities-college .facility-4 h3 {
  margin-top: 25px;
}

.facilities-college .facility-1,
.facilities-college .facility-3 {
  padding: 20px 0;
}

/* --------------------------------------- */
/* --------------Gallery----------------- */
/* ------------------------------------- */

.gallery-all {
  background-color: #f8f9fa;
}

.gallery-title {
  color: #15177c;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* --------------------------------------- */
/* ------------Events-gallery------------ */
/* ------------------------------------- */

.events-gallery-clg {
  padding: 60px 0;
  background: var(--neutral-light);
}

.event-card {
  background: #fff;
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 8px 24px rgba(44, 49, 74, 0.08);
  margin-bottom: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.event-card:hover {
  transform: translateY(-4px);
}

.event-image-link {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
}

.event-image-link img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.4s ease;
}

.event-image-link:hover img {
  transform: scale(1.05);
}

.image-tooltip {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(44, 49, 74, 0.9);
  color: #fff;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 6px;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.event-image-link:hover .image-tooltip {
  opacity: 1;
  transform: translateY(0);
}

.event-title {
  margin-top: 14px;
  font-size: 17px;
  font-weight: 600;
  color: var(--dark-navy);
}

/* -------------------------------- */
/* ------------Placements--------- */
/* ------------------------------ */

/* ---------------- Placement Intro Section ---------------- */
.placements-sgc {
  background-color: var(--neutral-light);
  padding: 80px 0px;
}

.placements-sgc img {
  border-radius: 8px;
}

.over-lay-placement-text {
  margin-top: 12px;
  padding: 10px;
  background-color: var(--light-lavender);
  color: var(--dark-navy);
  font-size: 14px;
  text-align: center;
  border-radius: 6px;
  font-weight: 500;
}

.placement-goals {
  background-color: #fff;
  padding: 40px 0px;
}

.placement-goals ul {
  padding-left: 18px;
  margin-top: 15px;
}

.placement-goals ul li {
  margin-bottom: 8px;
}

.placement-goals img {
  border-radius: 8px;
  margin-top: 20px;
}

.quality-policy {
  padding: 40px 0px;
}

.quality-policy h5 {
  margin-bottom: 10px;
  color: var(--primary-purple);
}

.quality-policy p {
  max-width: 800px;
  font-size: 15px;
}

/* ------------------- */

.placement-partners-clg {
  padding: 0px 0px 60px 0px;
  background: #f8f9fc;
}

.placement-partners-clg .placement-partners-row {
  align-items: center;
}

.placement-partners-clg .partner-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  height: 100px;
}

.placement-partners-clg .partner-logo-box img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.placement-partners-clg .partner-logo-box img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ----------------------------------- */
/* -----------Mandatory-disclosure--- */
/* --------------------------------- */

.mandatory-closures {
  padding: 70px 0;
  background-color: var(--neutral-light);
}

.mandatory-closures h4 {
  color: var(--dark-navy);
  font-size: 22px;
  letter-spacing: 0.5px;
}

.mandatory-closures .nav-tabs {
  border-bottom: none;
  gap: 10px;
  margin-bottom: 40px;
}

.mandatory-closures .nav-tabs .nav-link {
  border: 1px solid var(--light-lavender);
  border-radius: 30px;
  padding: 10px 28px;
  font-size: 15px;
  font-weight: 600;
  color: var(--neutral-dark);
  background-color: #fff;
  transition: all 0.3s ease;
}

.mandatory-closures .nav-tabs .nav-link:hover {
  background-color: var(--light-lavender);
  color: var(--primary-purple);
}

.mandatory-closures .nav-tabs .nav-link.active {
  background-color: var(--primary-purple);
  color: #fff;
  border-color: var(--primary-purple);
  box-shadow: 0 6px 18px rgba(77, 65, 140, 0.25);
}

/* =====================================
   Tab Content Area
===================================== */
.mandatory-closures .tab-content {
  background-color: #fff;
  padding: 40px 35px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(44, 49, 74, 0.08);
}

.mandatory-closures .year-link {
  display: block;
  text-align: center;
  padding: 16px 10px;
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-purple);
  background-color: var(--neutral-light);
  border: 1px solid var(--light-lavender);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mandatory-closures .year-link:hover {
  background-color: var(--secondary-blue);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(106, 111, 179, 0.35);
}

.mandatory-closures .year-link:active {
  transform: translateY(-2px);
}

.mandatory-closures .row {
  justify-content: center;
}

.mandatory-closures {
  padding: 60px 0;
}

.mandatory-closures .tab-content {
  padding: 30px 25px;
}

.mandatory-closures .nav-tabs .nav-link {
  padding: 9px 22px;
  font-size: 14px;
}

.clg-carrers {
  background-color: var(--neutral-light);
  padding: 70px 0;
}

.clg-carrers h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-purple);
  margin-bottom: 20px;
  position: relative;
}

.clg-carrers h3::after {
  content: "";
  width: 60px;
  height: 4px;
  background-color: var(--accent-gold);
  display: block;
  margin-top: 10px;
}

.clg-carrers p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--neutral-dark);
  margin-bottom: 18px;
}

.clg-carrers h5 {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-navy);
  margin-top: 30px;
  margin-bottom: 10px;
}

.clg-carrers a {
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary-blue);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.clg-carrers a:hover {
  color: var(--primary-purple);
  border-color: var(--accent-gold);
}

.clg-carrers .col-lg-12 {
  background-color: var(--light-lavender);
  padding: 40px;
  border-radius: 12px;
}

/* Section */
.contact-section {
  background-color: var(--neutral-light);
  padding: 80px 0;
}

/* Header */
.contact-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 12px;
}

.contact-header p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--neutral-dark);
  font-size: 1rem;
  line-height: 1.7;
}

/* Contact Box */
.contact-box {
  background: #ffffff;
  border-radius: 14px;
  padding: 30px 25px;
  height: 100%;
  text-align: center;
  box-shadow: 0 10px 30px rgba(44, 49, 74, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(44, 49, 74, 0.12);
}

/* Icon */
.contact-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-purple),
    var(--secondary-blue)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.4rem;
}

/* Info */
.contact-info h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark-navy);
  margin-bottom: 10px;
}

.contact-info p {
  font-size: 0.95rem;
  color: var(--neutral-dark);
  line-height: 1.6;
  margin-bottom: 0;
}

.contact-info small {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--secondary-blue);
}

/* Links */
.contact-info a {
  color: var(--primary-purple);
  text-decoration: none;
  font-weight: 500;
}

.contact-info a:hover {
  color: var(--accent-gold);
}

/* Map */
.g-map {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(44, 49, 74, 0.12);
}

.admission-modal {
  background: #fff;
  border-radius: 6px;
  font-family: "Inter", "Segoe UI", sans-serif;
}

.admission-header {
  background: var(--primary-purple);
  color: #fff;
  padding: 0.75rem 1.25rem;
}

.admission-header .modal-title {
  font-size: 1rem;
  font-weight: 600;
}

.admission-body {
  padding: 1.5rem;
}

.admission-form .form-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--neutral-dark);
  margin-bottom: 0.25rem;
}

.admission-form .form-control,
.admission-form .form-select {
  font-size: 0.9rem;
  padding: 0.55rem 0.75rem;
  border-radius: 4px;
  border: 1px solid #dcdcdc;
  color: var(--neutral-dark);
}

.admission-form .form-control:focus,
.admission-form .form-select:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 0.1rem rgba(77, 65, 140, 0.15);
}

.admission-submit {
  font-size: 0.9rem;
  padding: 0.55rem 2rem;
  border-radius: 4px;
  background: var(--primary-purple);
  color: #fff;
  border: none;
}

.admission-submit:hover {
  background: var(--secondary-blue);
}

.admission-header {
  background: #f4f4f4;
  color: var(--neutral-dark);
  border-bottom: 1px solid #ddd;
}

.admission-submit {
  background: var(--neutral-dark);
}

/* ------------------------------------------ */
/* ------------logo-certifications---------- */
/* ---------------------------------------- */

.client-logs-scrolling {
  padding: 70px 0px 0px 0px;
  background: #f9fbff;
}

.clients-text {
  padding-right: 20px;
}

.dull-clr-title-clients {
  font-size: 40px;
  font-weight: 700;
  color: #3a3a3a;
  line-height: 1.1;
  margin: 0;
  padding: 40px 0px 20px 0px;
}

.title-clients-bold {
  font-family: "Merriweather", serif;
  font-style: italic;
  font-weight: 400;
  color: #3a3a3a;
}

.clients-desc {
  font-size: 15.5px;
  line-height: 1.7;
  color: #555;
  margin-top: 10px;
}

.logo-marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.logo-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: scroll-left 28s linear infinite;
}

.img-wish-logo {
  width: 180px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

.img-wish-logo img {
    max-width: 70%;
    max-height: 50px;
    object-fit: contain;
    filter: grayscale(100%);
}

/* Smooth infinite animation */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .dull-clr-title-clients {
    font-size: 28px;
  }

  .clients-text {
    text-align: center;
    padding-right: 0;
  }

  .logo-track {
    gap: 25px;
  }
}

.logo-marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
}

/* Gradient overlays */
.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(
    to right,
    #f9f9fb 0%,
    rgba(249, 249, 251, 0) 100%
  );
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(to left, #f9f9fb 0%, rgba(249, 249, 251, 0) 100%);
}

/* --------------------------------------- */
/* -------------global-certifications----- */

.gp-title {
  font-size: 40px;
  font-weight: 700;
  color: #3a3a3a;
  line-height: 1.1;
  margin: 0;
  padding: 40px 0px 20px 0px;
  text-align: center;
}

.gp-title span{
  font-family: "Merriweather", serif;
    font-style: italic;
    font-weight: 400;
    color: #3a3a3a;
}

.global-partners-area {
  padding: 40px 0px;
  background-color: #f7f9fc;
}

.gp-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

.gp-row {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.gp-col {
  flex: 1 1 200px;
  max-width: 250px;
}

.gp-logo-box {
  background: #ffffff;
  border-radius: 14px;
  padding: 25px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

.gp-logo-box:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.gp-logo-box img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: 0.3s ease;
}

.gp-logo-box:hover img {
  filter: grayscale(0%);
}

/* Mobile responsive */

@media (max-width: 768px) {
  .gp-col {
    max-width: 45%;
  }
}

@media (max-width: 480px) {
  .gp-col {
    max-width: 100%;
  }
}

/* -------------------------------------- */

.international-collaboration {
  padding: 70px 0;
  background: #f8f9fc;
}

.section-title-cr {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-navy);
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
  color: #666;
  font-size: 16px;
}

.collab-card {
  background: #fff;
  border-radius: 14px;
  padding: 25px 20px;
  height: 100%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
  text-align: center;
}

.collab-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.collab-card img {
  max-width: 120px;
  height: auto;
  margin-bottom: 15px;
}

.collab-card h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 3px;
  color: #111;
}

.collab-card span {
  font-size: 14px;
  color: #888;
  display: block;
  margin-bottom: 15px;
}

.collab-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: left;
}

.collab-card ul li {
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
  position: relative;
  padding-left: 15px;
}

.collab-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #3b5cff;
  font-weight: bold;
}

/* Responsive */

@media (max-width: 768px) {
  .section-title {
    font-size: 26px;
  }

  .collab-card {
    padding: 20px 16px;
  }
}

/* ---------------------------------------- */
/* ----------cxo-page-logos--------------- */

.Certifications-inside {
    padding: 20px 0;
    background: #fafafa;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #222;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px 20px;
    align-items: center;
}

/* Logo cell */
.cert-item {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Logo image */
.cert-item img {
    max-width: 110px;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.85;
    transition: 0.3s ease;
}

.cert-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* =====================
   Responsive
===================== */

/* Tablet */
@media (max-width: 991px) {
    .cert-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px 20px;
    }

    .section-title {
        font-size: 26px;
    }

    .cert-item {
        height: 100px;
    }

    .cert-item img {
        max-width: 120px;
        max-height: 70px;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 15px;
    }

    .section-title {
        font-size: 22px;
    }

    .cert-item {
        height: 90px;
    }

    .cert-item img {
        max-width: 105px;
        max-height: 60px;
    }
}
