@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* Fonts */
body {
  font-family: "Inter", sans-serif !important;
}

:root {

  /* Colors */
  --background-color: #ffffff;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  --default-color: #444444;
  --heading-color: #2c4964;
  --text-dark: #2c3e50;
  --text-muted: #6c757d;
  --primary-green: #3cb34c;
  --primary-blue: #0c549c;

  /* Primary Theme */
  --primary-color: #0066cc;
  --secondary-color: #4a4a4a;
  --accent-color: #667eea;

  /* Backgrounds */
  --bg-light: #f9faff;
  --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --secondary-gradient: linear-gradient(120deg, #dcedff 0%, #f9faff 100%);

  /* Shadows & Borders */
  --border-radius: 16px;
  --shadow-soft: 0 10px 40px rgba(102, 126, 234, 0.1);
  --shadow-hover: 0 20px 60px rgba(102, 126, 234, 0.15);

  /* Navigation */
  --nav-color: #2c4964;
  --nav-hover-color: #1977cc;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #2c4964;
  --nav-dropdown-hover-color: #1977cc;
}

a {
  text-decoration: none !important;
}

:root {
  --darkBlue: #00013E;
  --bgBlue: #191A78;
  --buttonBG: #2E3094;
  --videOverlay: #000129;
  --NavyBlue: #0A0F36;
  --purplishblue: #2E3094;
  --diuOrange: #ffe240;
}

/* Example of using the custom colors */
.bg-darkBlue {
  background-color: var(--darkBlue);
}

.bg-bgBlue {
  background-color: var(--bgBlue);
}

.bg-buttonBG {
  background-color: var(--buttonBG);
}

.bg-videOverlay {
  background-color: var(--videOverlay);
}

.bg-NavyBlue {
  background-color: var(--NavyBlue);
}

.bg-purplishblue {
  background-color: var(--purplishblue);
}

.bg-diuOrange {
  background-color: var(--diuOrange);
}

.text-darkBlue {
  color: var(--darkBlue);
}

.text-bgBlue {
  color: var(--bgBlue);
}

.text-buttonBG {
  color: var(--buttonBG);
}

.text-videOverlay {
  color: var(--videOverlay);
}

.text-NavyBlue {
  color: var(--NavyBlue);
}

.text-purplishblue {
  color: var(--purplishblue);
}

.text-diuOrange {
  color: var(--diuOrange);
}


/* Color Presets */

.light-background {
  --background-color: #f1f7fc;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.header .branding {
  min-height: 60px;
  padding: 10px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .cta-btn,
.header .cta-btn:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .cta-btn {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

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

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 8px;
  font-size: 13px;
}



/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }

  .sectionTitle {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------*/
.diuBtn {
  background-color: rgb(255, 166, 0);
  color: white !important;
  transition: all 0.5s ease-in-out;
  border: 1px solid transparent;
  text-decoration: none;
}

.diuBtn:hover {
  background-color: white;
  border: 1px solid #ffe240;
  color: #b69b01 !important;
}


.curriculum-card {
  min-height: 350px;
}

.navy-blue-bg {
  background-color: #1a2b3c;
}

.purplish-blue-bg {
  background-color: #4a4e69;
}

.curriculum-icon {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}


.specialization-item {
  cursor: pointer;
  transition: color 0.3s ease;
}

.specialization-item:hover .specialization-text {
  color: #ff6b3c;
  /* DIU Orange equivalent */
}

.specialization-item:hover .specialization-icon {
  color: #ff6b3c;
  /* DIU Orange equivalent */
}

.specialization-image {
  object-fit: cover;
  max-height: 800px;
  width: 100%;
}

@media (max-width: 768px) {
  .specialization-image-container {
    display: none;
  }
}


.learnForm {
  padding: 50px 0px !important;
}

.bg-image {
  background-image: url('/img/c1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.bg-overlay {
  background: linear-gradient(to right, #2E3094, rgba(0, 1, 62, 0.8));
}

.video-thumbnail {
  position: relative;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.play-button:hover {
  background: rgba(255, 255, 255, 0.3);
}

.play-button-inner {
  background: white;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.counter {
  font-size: 2rem;
}

@media (min-width: 992px) {
  .counter {
    font-size: 3rem;
  }
}

.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1050;
}

.card {
  border: none;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  /* Soft shadow */
  border-radius: 8px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

/* Hover Effect */
.card:hover {
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}



.group:hover .group-hover\:text-warning {
  color: #ffc107 !important;
}

.bg-gradient-dark {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

/* Dots Positioned at the Bottom */
.owl-dots-container {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
}

.owl-dots {
  text-align: center;
}

.owl-dot {
  width: 10px;
  height: 10px;
  background: #d3d3d3;
  border-radius: 50%;
  border: none;
  display: inline-block;
  margin: 0 5px;
  transition: background 0.3s ease;
}

.owl-dot.active {
  background: #ff9800;
}

.cardbody img {
  max-height: 120px;
}

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

/* New CSS  */
.owl-carousel .owl-item {
  transition: opacity 0.8s ease;
}

.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}



/* Hero section styling */
.hero-section {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

/* Item styling with inline background */
.hero-carousel .item {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Overlay for better text readability */
.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 30%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 2;
}

/* Content styling */
.slide-content {
  position: relative;
  z-index: 5;
  padding: 30px 0;
}



/* Dots styling */
.owl-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
}

.owl-dots .owl-dot {
  margin: 0 5px;
}

/* Progress bar */
.owl-carousel .owl-controls {
  position: relative;
}

.slide-progress-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 10;
}

.slide-progress {
  height: 3px;
  background-color: #fff;
  width: 0;
}

/* Button styling */
.btn {
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-warning {
  box-shadow: 0 4px 10px rgba(255, 193, 7, 0.3);
}

.btn-warning:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 193, 7, 0.4);
}

.btn-outline-light {
  border-width: 2px;
}

.btn-outline-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 255, 255, 0.2);
}

/* Animation delay for staggered animations */
.animate__animated {
  animation-duration: 0.8s;
  animation-fill-mode: both;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .slide-overlay {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6));
  }
}

@media (min-width: 992px) {
  .slide-content {
    padding: 0;
  }
}


/*========= Courses Card CSS ========= */

.micro-courses {
  padding: 6rem 0;
}

.course-card {
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
}

.course-card:hover {
  transform: translateY(-5px);
}

.courseCard-body {
  margin-top: 20px;
}

.courseCard-body p {
  font-size: 0.9rem;
}

.badge-pill {
  border-radius: 5px;
  background-color: #e3f1ff;
  padding: 0px 5px;
  font-size: 0.75rem;
}

.price-old {
  text-decoration: line-through;
  color: #999;
  font-size: 0.75rem;
  margin-left: 2px;
}

.coursePrice {
  font-size: 0.90rem;
}

.wallet {
  background-color: #e2ebff;
  padding: .3rem 0.4rem;
  border-radius: 50px;
}

.btn-enroll {
  background-color: #0d6efd;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  display: inline-block;
  font-size: 0.8rem;
  transition: all ease 0.3s;
}

.btn-enroll:hover {
  background-color: #084cdf;
  color: white;
}

/* Make title link and hover effect */
.card-title {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
}

.course-card:hover .card-title {
  color: var(--bs-warning);
  /* Bootstrap warning color (yellow) */
}

.card-img-wrapper {
  height: 200px;
  overflow: hidden;

}

.card-img-top {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  border-radius: 10px;
}

/* Consistent height on larger screens */
@media (min-width: 768px) {
  .row {
    display: flex;
    flex-wrap: wrap;
  }

  .course-card {
    display: flex;
    height: 100%;
  }

  .course-card .card {
    width: 100%;
  }
}


/* Why Chooose Section */
.whyChoose {
  padding: 6rem 0;
}

.whyTitle {
  margin-bottom: 6rem;
}

.whyIcon {
  background-color: #b4ccff;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.whyIcon img {
  width: 50px;
}

.whyChoose p {
  font-size: 0.875rem;
}

.whyImg {
  height: 500px;
  overflow: hidden;
}

.whyImg img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
}


/* Upcoming Events  */
.upcoming-events {
  background-color: #f8f9fa;
}

.events-info {
  background-color: #0d6efd;
  transition: all 0.3s ease;
}

.events-info:hover {
  transform: translateY(-5px);
}

.eventDate {
  color: #0d6efd;
  font-weight: bold;
}

.btn-outline-light:hover {
  background-color: #fff;
  color: #0d6efd;
}

.btn-primary {
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 110, 253, 0.3);
}

@media (max-width: 991.98px) {
  .events-info {
    text-align: center;
  }

  .event-card {
    margin-bottom: 1rem;
  }
}

/* Add this to your main.css file */
.needHlep {
  position: relative;
  background: url('/img/1.jpg') no-repeat center center;
  background-size: cover;
  padding: 8rem 5rem;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
  color: white;
  /* optional for text readability */
}

.needHlep::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  /* black overlay with 60% opacity */
  border-radius: 10px;
  z-index: -1;
}

/* Industry Experts Section Styling */
.expert-card {
  border: none;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-radius: 8px;
}

.expert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

.expert-card img {
  transition: all 0.3s ease;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.expert-card:hover img {
  transform: scale(1.02);
}

/* Footer Styling */
footer {
  background-color: #1a1a1a !important;
}

footer a:hover {
  color: #ffc107 !important;
  padding-left: 5px;
  transition: all 0.3s ease;
}

footer li {
  transition: all 0.3s ease;
}

footer iframe {
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  border: 0;
  border-radius: 8px;
}

/* Learners Section Styling */
.learners-section {
  background: #e9e9e9;
}

.learner-card {
  transition: all 0.3s ease;
  background: #ffffff !important;
}

.learner-card:hover {
  background-color: #ecf8ff !important;
}

.learner-image {
  width: 60px;
  height: 60px;
}

.learner-image img {
  height: 60px;
  width: 60px;
  object-fit: cover;
  border-radius: 10%;
}

.learners-info {
  position: relative;
  z-index: 1;
}

.learners-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 33, 71, 0.95), rgba(0, 33, 71, 0.8));
  z-index: -1;
  border-radius: 0.5rem;
}
.mgs-height{
    height: 200px;
    overflow: hidden;
}

element.style {
}
.desig-height {
    height: 50px;
}

/* Industry Collaborations Section */
.industry-collaborations {
  padding-top: 5rem;
}

.logo-item {
  padding: 10px;
  text-align: center;
}

.logo-item img {
  max-height: 50px;
  width: 50px;
  object-fit: contain;
}

/* ========================= About Us CSS ====================  */
/*  Hero Section */
.about-hero-section {
  background: linear-gradient(120deg, #dcedff 0%, #f9faff 100%);
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.about-hero-title {
  color: #002147;
  letter-spacing: -1px;
}

.text-gradient {
  background: linear-gradient(90deg, #1977cc 0%, #ff9900 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero-img img {
  position: relative;
  z-index: 1;
  max-width: 540px;
  min-height: 260px;
  object-fit: cover;
  border-radius: 2rem;
  box-shadow: 0 8px 32px rgba(25, 119, 204, 0.12);
}

@media (max-width: 991.98px) {
  .about-hero-img-bg {
    width: 220px;
    height: 220px;
  }

  .about-hero-img {
    max-width: 220px;
    min-height: 140px;
  }

  .about-hero-section {
    padding: 2.5rem 0;
  }

  .about-hero-title {
    font-size: 2rem;
  }
}

.about-section {
  padding: 6rem 0;
  background: var(--bg-light);
}

.about-section h2 {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.about-section h2::after {
  content: '';
  width: 50px;
  height: 4px;
  background: var(--accent-color);
  position: absolute;
  bottom: -10px;
  left: 0;
}

.about-section p {
  font-size: 1.1rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

/* Mission & Vision Section */
.mission-vision {
  padding: 6rem 0;
  background: #fff;
}

.mission-vision h2 {
  color: #002147;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.mission-vision .mission-card {
  border: none;
  border-radius: 18px;
  background: #f8faff;
  box-shadow: 0 4px 18px rgba(25, 119, 204, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.mission-vision .mission-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 10px 32px rgba(25, 119, 204, 0.13);
}

.icon-circle {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #1977cc 60%, #ff9900 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 2px 8px rgba(25, 119, 204, 0.10);
}

.vision-icon {
  background: linear-gradient(135deg, #ff9900 60%, #1977cc 100%);
}

.mission-vision h3 {
  color: #1977cc;
  font-weight: 600;
}

.mission-vision p {
  color: #444;
  font-size: 1.08rem;
}

.gallery-section {
  padding: 6rem 0;
  background: var(--bg-light);
}

.gallery-section h2 {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}


.gallery-section .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

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

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

.gallery-section .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  color: white;
  font-weight: 500;
}

.gallery-section .gallery-item:hover .gallery-overlay {
  opacity: 1;
}

@media (max-width: 768px) {

  .about-section,
  .mission-vision,
  .gallery-section {
    padding: 4rem 0;
  }

  .gallery-section img {
    height: 200px;
  }
}

/* ===============Contact  Page CSS =============*/

.contact-section {
  background: var(--bg-light);
}

.contact-section h2 {
  color: #002147;
}

.contact-section .card {
  border-radius: 16px;
}

.contact-section .form-control:focus {
  border-color: #ff9900;
  box-shadow: 0 0 0 0.2rem rgba(255, 153, 0, .15);
}

/* =========================== All Course Page CSS ==============  */

.filter-sidebar {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  height: fit-content;
  position: sticky;
  top: 2.8rem;
}

.filter-title {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f0f0f0;
}

.filter-group {
  margin-bottom: 2rem;
  position: relative;
}

.filter-group label {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.75rem;
  display: block;
  font-size: 1rem;
}

.filter-group label i {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

.form-select,
.form-control {
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 0.875rem 1rem;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.form-select:focus,
.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.15);
  background: white;
}

.form-select:hover,
.form-control:hover {
  border-color: var(--primary-color);
  background: white;
}

.btn-reset {
  background: linear-gradient(135deg, var(--primary-color), #667eea);
  border: none;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

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

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

.btn-reset:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Filter animations */
.filter-group {
  animation: slideInUp 0.5s ease-out;
}

.filter-group:nth-child(2) {
  animation-delay: 0.1s;
}

.filter-group:nth-child(3) {
  animation-delay: 0.2s;
}

.filter-group:nth-child(4) {
  animation-delay: 0.3s;
}

.filter-group:nth-child(5) {
  animation-delay: 0.4s;
}

.filter-group:nth-child(6) {
  animation-delay: 0.5s;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.course-grid {
  min-height: 100vh;
}

@media (max-width: 768px) {
  .filter-sidebar {
    margin-bottom: 2rem;
  }
}

.allCourse-title {
  background-color: #0954aa;
  text-align: center;
  color: white;
  padding: 5rem 0;
}

.course-card.hidden {
  display: none;
}

.no-results {
  text-align: center;
  padding: 3rem;
  color: #6c757d;
}

.no-results i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #dee2e6;
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

.level-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(240, 255, 31, 0.7);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: 0.7rem;
  z-index: 1;
}

.duration-badge {
  position: absolute;
  background-color: rgba(255, 193, 7, 0.938);
  color: #333;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: 0.7rem;
  z-index: 1;
}

.course-card {
  position: relative;
}


/* ======================== Single Event Page CSS =================  */

.page-title {
  background: var(--secondary-gradient);
  position: relative;
  overflow: hidden;
}

.page-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23667eea" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.page-title .container {
  position: relative;
  z-index: 2;
}

.breadcrumb-item a {
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
  color: #5a6fd8;
  transform: translateX(2px);
}

.hero-title {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
}

.event-banner {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.event-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.event-banner:hover::after {
  opacity: 1;
}

.event-banner:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.content-section {
  background: white;
  padding: 2rem;
  margin-bottom: 2rem;
}

.section-title {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  text-align: center;
}

.section-title h2 {
  font-weight: 600;
}

.learning-list {
  list-style: none;
  padding: 0;
}

.learning-list li {
  padding: 0.8rem 0;
  border-left: 3px solid var(--accent-color);
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  background: rgba(102, 126, 234, 0.05);
  border-radius: 0 8px 8px 0;
  transition: all 0.3s ease;
}

.learning-list li:hover {
  background: rgba(102, 126, 234, 0.1);
  transform: translateX(5px);
}

.learning-list li::before {
  content: '✓';
  color: var(--accent-color);
  font-weight: bold;
  margin-right: 0.5rem;
}

.event-details-card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  border: none;
  transition: all 0.3s ease;
}

.event-details-card:hover {
  box-shadow: var(--shadow-hover);
}

.detail-item {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #f1f3f4;
  transition: all 0.3s ease;
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-item:hover {
  background: rgba(102, 126, 234, 0.05);
  border-radius: 8px;
  padding-left: 1rem;
  margin: 0 -1rem;
}

.detail-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 1rem;
  font-size: 1.1rem;
}

.detail-content strong {
  color: var(--text-dark);
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.detail-content span {
  color: var(--text-muted);
  font-size: 1rem;
}

.status-badge {
  background: linear-gradient(45deg, #28a745, #20c997);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 500;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.8;
  }
}

.register-card {
  background: var(--primary-gradient);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  border: none;
  overflow: hidden;
  position: relative;
}

.register-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.6s;
}

.register-card:hover::before {
  animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }

  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.btn-register {
  background: white;
  color: var(--accent-color);
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-register:hover {
  background: #f8f9ff;
  color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.btn-register::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
  transition: left 0.5s;
}

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


@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .event-details-card {
    position: relative;
    top: 0;
  }
}


/* ==================== industry-collaborations Page CSS ===================  */


/* Benefits Section */
.benefits-section {
  padding: 100px 0;
  background-color: #f7f7f7;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header h2 {
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.section-header p {
  font-size: 1.3rem;
  color: #6c757d;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.benefit-card {
  background: white;
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.05), rgba(80, 227, 194, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: rgba(74, 144, 226, 0.2);
}

.benefit-card:nth-child(2):hover {
  border-color: rgba(80, 227, 194, 0.2);
}

.benefit-card:nth-child(2)::before {
  background: linear-gradient(135deg, rgba(80, 227, 194, 0.05), rgba(74, 144, 226, 0.05));
}

.benefit-card:nth-child(3):hover {
  border-color: rgba(255, 107, 107, 0.2);
}

.benefit-card:nth-child(3)::before {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.05), rgba(255, 193, 7, 0.05));
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, #4a90e2, #50e3c2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.benefit-card:nth-child(2) .icon-wrapper {
  background: linear-gradient(135deg, #50e3c2, #4a90e2);
}

.benefit-card:nth-child(3) .icon-wrapper {
  background: linear-gradient(135deg, #ff6b6b, #ffc107);
}

.benefit-card:hover .icon-wrapper {
  transform: scale(1.1);
}

.benefit-card i {
  font-size: 2.2rem;
  color: white;
  transition: transform 0.3s ease;
}

.benefit-card:hover i {
  transform: scale(1.1);
}

.benefit-card h4 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
  position: relative;
  z-index: 2;
}

.benefit-card p {
  font-size: 1.1rem;
  color: #6c757d;
  line-height: 1.7;
  font-weight: 400;
  position: relative;
  z-index: 2;
}

/* Responsive design */
@media (max-width: 768px) {
  .benefits-section {
    padding: 80px 0;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .benefit-card {
    padding: 40px 30px;
  }
}

/* Course Modal Styles */
.modal-content {
  border-radius: 20px;
  border: none;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.modal-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-bottom: 1px solid #e9ecef;
  padding: 1rem 2.5rem;
}

.modal-header .modal-title {
  color: var(--heading-color);
  font-weight: 700;
}

.modal-header .btn-close {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  padding: 0.5rem;
  transition: all 0.3s ease;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-header .btn-close:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
}

.modal-header .btn-close i {
  font-size: 1.2rem;
  color: #6c757d;
}

.modal-header .btn-close:hover i {
  color: #dc3545;
}

.modal-body {
  padding: 2rem;
}

.modal-footer {
  border-top: none;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Course Header */
.course-header {
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e9ecef;
}

.course-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.course-badges {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.course-badges .badge {
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
}

/* Course Hero Section */
.course-hero-section {
  margin-bottom: 2rem;
}

.course-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.course-hero-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.course-image-wrapper:hover .course-hero-image {
  transform: scale(1.05);
}

.course-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.course-image-wrapper:hover .course-image-overlay {
  opacity: 1;
}

.play-btn {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-btn:hover {
  background: white;
  transform: scale(1.1);
}

.play-btn i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-left: 4px;
}

/* Quick Info Card */
.quick-info-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
  overflow: hidden;
  height: 100%;
}

.quick-info-header {
  background: linear-gradient(135deg, var(--primary-color), #667eea);
  color: white;
  padding: 1rem;
  text-align: center;
  font-size: 1rem;
}

.quick-info-content {
  padding: 1.5rem;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.info-row:last-child {
  border-bottom: none;
}

.info-label {
  font-size: 0.9rem;
  color: #6c757d;
  font-weight: 500;
}

.info-value {
  font-weight: 600;
  color: var(--heading-color);
  font-size: 1rem;
}

.price-row .info-value {
  color: #28a745;
  font-size: 1.1rem;
  font-weight: 700;
}

/* Offer Banner */
.offer-banner {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  border: 2px solid #ffc107;
  border-radius: 16px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.offer-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 193, 7, 0.1), transparent);
  animation: shimmer 2s infinite;
}

.offer-banner .offer-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.offer-icon {
  width: 60px;
  height: 60px;
  background: #ffc107;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.offer-icon i {
  font-size: 1.5rem;
  color: white;
}

.offer-text {
  flex: 1;
}

.offer-title {
  color: #856404;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.offer-description {
  color: #856404;
  margin-bottom: 0;
  font-size: 0.95rem;
}

.discount-text {
  color: #dc3545;
  font-weight: 700;
}

.offer-badge {
  flex-shrink: 0;
}

.discount-badge {
  background: #dc3545;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: bold;
  font-size: 1rem;
  animation: pulse 2s infinite;
}

/* Course Image */
.course-image-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  flex: 1;
  margin-top: -30px;
}

.course-modal-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.course-image-container:hover .course-modal-image {
  transform: scale(1.02);
}

/* Flex container for image and offer */
.modal-body .d-flex {
  gap: 1rem;
  align-items: flex-start;
}

.modal-body .d-flex .offer-card {
  flex: 1;
  margin-bottom: 0;
}

/* Offer Card */
.offer-card {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  border: 2px solid #ffc107;
  border-radius: 12px;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 193, 7, 0.1), transparent);
  animation: shimmer 2s infinite;
}

.offer-header {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: #856404;
}

.offer-content p {
  color: #856404;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.offer-highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.discount-badge {
  background: #dc3545;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.8rem;
  animation: pulse 2s infinite;
}

/* Content Sections */
.content-section {
  background: white;
  padding: 2rem;
}

.section-header {
  margin-bottom: 1.5rem;
}

.section-title {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  font-size: 1.3rem;
}

.section-title i {
  color: var(--primary-color);
}

.section-content {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1.5rem;
  border-left: 4px solid var(--primary-color);
}

.course-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #495057;
  margin-bottom: 0;
}

/* Curriculum List */
.curriculum-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.curriculum-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  font-size: 0.9rem;
}

.curriculum-item:hover {
  background: #e9ecef;
  transform: translateX(3px);
}

.curriculum-item i {
  color: #28a745;
  font-size: 1rem;
  flex-shrink: 0;
}

.curriculum-item span {
  font-weight: 500;
  color: var(--heading-color);
}

/* Course Info Card */
.course-info-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
  overflow: hidden;
}

.course-info-card .card-header {
  background: linear-gradient(135deg, var(--primary-color), #667eea);
  padding: 1rem;
  border-bottom: none;
}

.course-info-card .card-header h6 {
  margin: 0;
  font-weight: 600;
  color: white;
  font-size: 1rem;
}

.instructors-card .card-header h6 {
  color: white;
}

.course-info-card .card-body {
  padding: 1rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.info-item:last-child {
  border-bottom: none;
}

.info-icon {
  width: 35px;
  height: 35px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon i {
  color: var(--primary-color);
  font-size: 1rem;
}

.info-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.info-label {
  font-size: 0.8rem;
  color: #6c757d;
  margin-bottom: 0.25rem;
}

.info-value {
  font-weight: 600;
  color: var(--heading-color);
  font-size: 0.9rem;
}

.price-highlight {
  color: #28a745 !important;
  font-size: 1rem !important;
}

/* Instructors Card */
.instructors-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
  overflow: hidden;
}

.instructors-card .card-header {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  padding: 1rem;
  border-bottom: none;
}

.instructors-card .card-header h6 {
  margin: 0;
  font-weight: 600;
  font-size: 1rem;
}

.instructors-card .card-body {
  padding: 1rem;
}

.instructor-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.instructor-item:last-child {
  border-bottom: none;
}

.instructor-item:hover {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 0.75rem;
  margin: 0 -0.75rem;
}

.instructor-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid #e9ecef;
}

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

.instructor-info {
  flex: 1;
}

.instructor-name {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

.instructor-title {
  color: #6c757d;
  margin-bottom: 0.25rem;
  font-size: 0.8rem;
}

.instructor-stats {
  display: flex;
  gap: 0.75rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: #6c757d;
}

.stat-item i {
  font-size: 0.8rem;
}

/* CTA Card */
.cta-card {
  background: linear-gradient(135deg, var(--diuOrange), #ffd700);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(255, 226, 64, 0.3);
  border: 2px solid #ffc107;
}

.cta-title {
  color: var(--darkBlue);
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.cta-subtitle {
  color: var(--darkBlue);
  opacity: 0.8;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.cta-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--darkBlue);
  font-weight: 500;
  font-size: 0.8rem;
}

.feature-item i {
  font-size: 0.9rem;
}

/* Modal Buttons */
.modal .btn-warning {
  background: var(--diuOrange);
  border: none;
  color: var(--darkBlue);
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 226, 64, 0.3);
}

.modal .btn-warning:hover {
  background: #ffd700;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 226, 64, 0.4);
}

.modal .btn-outline-secondary {
  border: 2px solid #6c757d;
  color: #6c757d;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  background: transparent;
}

.modal .btn-outline-secondary:hover {
  background: #6c757d;
  color: white;
  transform: translateY(-2px);
}

/* Animations */
@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .modal-dialog {
    margin: 0.5rem;
    max-width: calc(100% - 1rem);
  }

  .modal-body {
    padding: 0 1rem 1rem;
  }

  .modal-header {
    padding: 0.75rem 1rem 0;
  }

  .modal-footer {
    padding: 0.75rem 1rem;
  }

  #modalCourseTitle {
    font-size: 1.5rem;
  }

  .course-modal-image {
    height: 150px;
  }

  .content-section {
    padding: 1rem;
  }

  .offer-card {
    padding: 0.75rem;
  }

  .offer-header {
    font-size: 0.9rem;
  }

  .offer-content p {
    font-size: 0.8rem;
  }

  .curriculum-list {
    gap: 0.5rem;
  }

  .curriculum-item {
    padding: 0.5rem;
    font-size: 0.8rem;
  }

  .info-item {
    padding: 0.5rem 0;
  }

  .info-icon {
    width: 30px;
    height: 30px;
  }

  .info-icon i {
    font-size: 0.9rem;
  }

  .info-label {
    font-size: 0.75rem;
  }

  .info-value {
    font-size: 0.85rem;
  }

  .instructor-item {
    padding: 0.5rem 0;
  }

  .instructor-avatar {
    width: 40px;
    height: 40px;
  }

  .instructor-name {
    font-size: 0.85rem;
  }

  .instructor-title {
    font-size: 0.75rem;
  }

  .cta-card {
    padding: 1rem;
  }

  .cta-title {
    font-size: 0.9rem;
  }

  .cta-subtitle {
    font-size: 0.8rem;
  }

  .feature-item {
    font-size: 0.75rem;
  }

  .modal .btn-warning {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
  }

  .modal .btn-outline-secondary {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  /* Mobile flex layout */
  .modal-body .d-flex {
    flex-direction: column;
    gap: 0.75rem;
  }

  .modal-body .d-flex .course-image-container {
    margin-right: 0;
  }

  .modal-body .d-flex .offer-card {
    margin-bottom: 0;
  }
}

@media (max-width: 576px) {
  .modal-dialog {
    margin: 0;
    max-width: 100%;
    height: 100%;
  }

  .modal-content {
    border-radius: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 0 0.75rem 0.75rem;
  }

  .modal-header {
    padding: 0.5rem 0.75rem 0;
  }

  .modal-footer {
    flex-shrink: 0;
    padding: 0.5rem 0.75rem;
  }

  #modalCourseTitle {
    font-size: 1.25rem;
  }

  .course-modal-image {
    height: 120px;
  }

  .content-section {
    padding: 0.75rem;
  }

  .course-info-card .card-body,
  .instructors-card .card-body {
    padding: 0.75rem;
  }

  .modal-footer .d-flex {
    flex-direction: column;
    gap: 0.75rem;
  }

  .modal-footer .btn {
    width: 100%;
  }

  .row.g-3 {
    --bs-gutter-x: 0.75rem;
    --bs-gutter-y: 0.75rem;
  }

  .course-image-container {
    margin-top: 5px;
  }
}

/* Registration form  */

.registration-form {
  max-width: 500px;
  margin: 50px auto;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-title {
  text-align: center;
  margin-bottom: 30px;
}

.btn-submit {
  background-color: #ffc107;
  color: #000;
  border: none;
  width: 100%;
}

.btn-submit:hover {
  background-color: #ffca2c;
}


/* Facilitator card: image scales on parent hover + overflow  */
.item .group .overflow-hidden {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  /* optional */
  aspect-ratio: 4 / 5;
  transition: box-shadow .3s ease;
}

/* Image styling */
.item .group .overflow-hidden img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform .35s ease;
  will-change: transform;
}

/* Overlay element */
.item .group .overflow-hidden::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  /* initially transparent */
  transition: background .35s ease;
}

/* Hover effect */
.item .group:hover .overflow-hidden img {
  transform: scale(1.06);
  /* soft zoom */
}

.item .group:hover .overflow-hidden {
  box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
  /* softer shadow */
}

.item .group:hover .overflow-hidden::after {
  background: rgba(0, 0, 0, 0.2);
  /* soft dark overlay */
}



.facilitator-carousel .owl-nav {
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  padding: 0 8px;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}

.facilitator-carousel:hover .owl-nav {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* Show nav when carousel hovered */
.facilitator-carousel:hover .owl-nav,
.facilitator-carousel.show-owl-nav .owl-nav {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* Nav buttons style */
.facilitator-carousel .owl-nav button {
  background: #0c549c !important;
  /* blue background */
  color: #fff !important;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px !important;
  line-height: 1;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transition: background .25s ease, transform .15s ease;
}

.facilitator-carousel .owl-nav button:hover {
  background: #03305f !important;
  /* darker blue on hover */
  transform: translateY(-2px);
}

/* Touch devices: nav always visible */
@media (hover: none) {
  .facilitator-carousel .owl-nav {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
}


/* Industry Expart Section CSS  */
.header-section {
  background: var(--primary-blue);
  color: white;
  padding: 2rem 0;
}

.profile-img {
  width: 220px;
  height: 250px;
  border-radius: 5%;
  border: 3px solid white;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.profile-name {
  font-size: 1.8rem;
  color: white;
  font-weight: 700;
  margin: 0.5rem 0;
}

.profile-title {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.social-links a {
  color: white;
  font-size: 2rem;
  margin: 0 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
  color: #ebebeb;
  transform: scale(1.2);
}

.content-section {
  padding: 2rem 0;
}

.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.card-header {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
  color: white !important;
  border: none;
  border-radius: 12px 12px 0 0 !important;
  padding: 1rem 1.5rem;
}

/*.card-title {*/
/*  font-size: 1.2rem;*/
/*  color: white;*/
/*  font-weight: 600;*/
/*  margin: 0;*/
/*}*/

.card-body {
  padding: 1.5rem;
}

.info-item {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
}

.info-item:last-child {
  border-bottom: none;
}

.info-item i {
  color: var(--primary-green);
  width: 25px;
  font-size: 1.1rem;
}

.skill-item {
  margin-bottom: 1rem;
}

.skill-name {
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
}

.progress {
  height: 8px;
  border-radius: 10px;
  background-color: #e9ecef;
}

.progress-bar {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
  border-radius: 10px;
  transition: width 1s ease;
}

.btn-custom {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
  color: white;
  border: none;
  border-radius: 25px;
  padding: 0.7rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  margin: 0.3rem;
}

.btn-custom:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(60, 179, 76, 0.3);
}

.btn-outline-custom {
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  border-radius: 25px;
  padding: 0.6rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  margin: 0.3rem;
}

.btn-outline-custom:hover {
  background: var(--primary-blue);
  color: white;
  transform: translateY(-2px);
}

.contact-item {
  background: linear-gradient(135deg, rgba(60, 179, 76, 0.1), rgba(12, 84, 156, 0.1));
  padding: 0.8rem;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  border-left: 4px solid var(--primary-green);
}

.contact-item strong {
  color: var(--primary-blue);
  font-weight: 600;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .header-section {
    padding: 1.5rem 0;
  }

  .profile-name {
    font-size: 1.5rem;
  }

  .profile-title {
    font-size: 1rem;
  }

  .content-section {
    padding: 1rem 0;
  }

  .card-body {
    padding: 1rem;
  }

  .btn-custom,
  .btn-outline-custom {
    display: block;
    text-align: center;
    margin: 0.5rem 0;
  }
}

@media (max-width: 576px) {
  .profile-img {
    width: 100px;
    height: 100px;
  }

  .profile-name {
    font-size: 1.3rem;
  }

  .card-header {
    padding: 0.8rem 1rem;
  }

  .card-title {
    font-size: 1.1rem;
  }

  .facilitator a {
    font-size: 24px;
  }
}
