/* Main Section */
.ep-mgcs-main-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f2f2f4 0%, #ebe8ed 100%);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

/* Background Elements */
.ep-mgcs-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.ep-mgcs-bg-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.ep-mgcs-shape-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
  animation: float 6s ease-in-out infinite;
}

.ep-mgcs-shape-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
  animation: float 8s ease-in-out infinite reverse;
}

.ep-mgcs-shape-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  right: 10%;
  animation: float 10s ease-in-out infinite;
}

.ep-mgcs-bg-particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.ep-mgcs-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: particle-float 12s linear infinite;
}

.ep-mgcs-particle:nth-child(1) {
  left: 20%;
  animation-delay: 0s;
}

.ep-mgcs-particle:nth-child(2) {
  left: 40%;
  animation-delay: 3s;
}

.ep-mgcs-particle:nth-child(3) {
  left: 60%;
  animation-delay: 6s;
}

.ep-mgcs-particle:nth-child(4) {
  left: 80%;
  animation-delay: 9s;
}

/* Hero Section */
.ep-mgcs-hero-intro {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.ep-mgcs-hero-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.ep-mgcs-hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s;
}

.ep-mgcs-hero-card:hover::before {
  left: 100%;
}

.ep-mgcs-hero-icon-wrapper {
  position: relative;
  margin-bottom: 30px;
}

.ep-mgcs-hero-icon-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.ep-mgcs-hero-icon {
  font-size: 35px;
  color: white;
}

.ep-mgcs-hero-icon-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ep-mgcs-ring {
  position: absolute;
  border: 2px solid rgba(102, 126, 234, 0.3);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ep-mgcs-ring-1 {
  width: 100px;
  height: 100px;
  animation: pulse-ring 2s infinite;
}

.ep-mgcs-ring-2 {
  width: 120px;
  height: 120px;
  animation: pulse-ring 2s infinite 0.5s;
}

.ep-mgcs-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 20px;
  line-height: 1.2;
}

.ep-mgcs-hero-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  margin: 0 auto 25px;
  border-radius: 2px;
}

.ep-mgcs-hero-description {
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
}

/* Content Section */
.ep-mgcs-content-section {
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.ep-mgcs-features-wrapper {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.ep-mgcs-section-header {
  text-align: center;
  margin-bottom: 40px;
}

.ep-mgcs-icon-badge {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.ep-mgcs-icon-badge i {
  font-size: 24px;
  color: white;
}

.ep-mgcs-section-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 15px;
}

.ep-mgcs-section-underline {
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  margin: 0 auto;
  border-radius: 2px;
}

.ep-mgcs-feature-cards {
  margin-top: 30px;
}

.ep-mgcs-feature-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(102, 126, 234, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ep-mgcs-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(102, 126, 234, 0.05),
    transparent
  );
  transition: left 0.5s;
}

.ep-mgcs-feature-card:hover::before {
  left: 100%;
}

.ep-mgcs-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(102, 126, 234, 0.3);
}

.ep-mgcs-feature-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 18px;
  margin-right: 20px;
  flex-shrink: 0;
}

.ep-mgcs-feature-content {
  flex: 1;
  margin-right: 20px;
}

.ep-mgcs-feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 8px;
}

.ep-mgcs-feature-text {
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
}

.ep-mgcs-feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ep-mgcs-feature-icon i {
  font-size: 22px;
  color: #667eea;
}

/* Image Section */
.ep-mgcs-image-section {
  position: relative;
  z-index: 2;
}

.ep-mgcs-image-wrapper {
  position: relative;
}

.ep-mgcs-image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.ep-mgcs-main-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.ep-mgcs-image-frame:hover .ep-mgcs-main-image {
  transform: scale(1.05);
}

.ep-mgcs-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.8),
    rgba(118, 75, 162, 0.8)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}

.ep-mgcs-image-frame:hover .ep-mgcs-image-overlay {
  opacity: 1;
}

.ep-mgcs-overlay-content {
  text-align: center;
  color: white;
}

.ep-mgcs-overlay-icon {
  font-size: 40px;
  margin-bottom: 10px;
  display: block;
}

.ep-mgcs-overlay-text {
  font-size: 18px;
  font-weight: 600;
}

.ep-mgcs-floating-badges {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.ep-mgcs-floating-badge {
  position: absolute;
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  animation: float-badge 3s ease-in-out infinite;
}

.ep-mgcs-badge-1 {
  top: 20px;
  right: 20px;
  animation-delay: 0s;
}

.ep-mgcs-badge-2 {
  bottom: 60px;
  right: 30px;
  animation-delay: 1s;
}

.ep-mgcs-badge-3 {
  top: 50%;
  left: 20px;
  animation-delay: 2s;
}

.ep-mgcs-floating-badge i {
  font-size: 20px;
  color: #667eea;
}

/* Benefits Section */
.ep-mgcs-benefits-section {
  position: relative;
  z-index: 2;
}

.ep-mgcs-benefit-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 35px;
  height: 100%;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.ep-mgcs-benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.ep-mgcs-card-header {
  text-align: center;
  margin-bottom: 30px;
}

.ep-mgcs-card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.ep-mgcs-card-icon i {
  font-size: 28px;
  color: white;
}

.ep-mgcs-card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2d3748;
  margin: 0;
}

.ep-mgcs-card-content {
  text-align: left;
}

.ep-mgcs-benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.ep-mgcs-benefit-icon {
  width: 40px;
  height: 40px;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.ep-mgcs-benefit-icon i {
  font-size: 18px;
  color: #667eea;
}

.ep-mgcs-benefit-text {
  flex: 1;
}

.ep-mgcs-benefit-text p {
  margin: 0;
  color: #4a5568;
  line-height: 1.6;
}

.ep-mgcs-final-text p {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 15px;
}

.ep-mgcs-final-text p:last-child {
  margin-bottom: 0;
  font-weight: 600;
  color: #2d3748;
}

/* Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes particle-float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

@keyframes pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0;
  }
}

@keyframes float-badge {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .ep-mgcs-main-section {
    padding: 60px 0;
  }

  .ep-mgcs-hero-card {
    padding: 40px 25px;
    margin: 0 15px;
  }

  .ep-mgcs-hero-title {
    font-size: 2rem;
  }

  .ep-mgcs-features-wrapper {
    padding: 30px 20px;
    margin: 0 15px;
  }

  .ep-mgcs-feature-card {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
  }

  .ep-mgcs-feature-number {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .ep-mgcs-feature-content {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .ep-mgcs-benefit-card {
    padding: 25px 20px;
    margin-bottom: 30px;
  }

  .ep-mgcs-image-section {
    margin-top: 40px;
  }
}

@media (max-width: 576px) {
  .ep-mgcs-hero-title {
    font-size: 1.8rem;
  }

  .ep-mgcs-section-title {
    font-size: 1.5rem;
  }

  .ep-mgcs-card-title {
    font-size: 1.2rem;
  }
}

/* Our Gallery MGCS - Professional Styles with White Background */
.ourgallery-mgcs-main-section {
  position: relative;
  padding: 60px 0;
  background: #ffffff; /* Changed to white */
  overflow: hidden;
}

.ourgallery-mgcs-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.ourgallery-mgcs-bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05; /* Reduced opacity for white background */
}

.ourgallery-mgcs-shape-1 {
  width: 300px;
  height: 300px;
  background: #667eea; /* Solid color instead of rgba */
  top: 10%;
  right: -100px;
  animation: ourgallery-mgcs-float 8s ease-in-out infinite;
}

.ourgallery-mgcs-shape-2 {
  width: 200px;
  height: 200px;
  background: #764ba2; /* Solid color instead of rgba */
  bottom: 15%;
  left: -50px;
  animation: ourgallery-mgcs-float 10s ease-in-out infinite reverse;
}

.ourgallery-mgcs-shape-3 {
  width: 150px;
  height: 150px;
  background: #f093fb; /* Solid color instead of rgba */
  top: 50%;
  left: 10%;
  animation: ourgallery-mgcs-float 6s ease-in-out infinite;
}

@keyframes ourgallery-mgcs-float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
  }
}

/* Section Header - Updated for White Background */
.ourgallery-mgcs-section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.ourgallery-mgcs-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(
    135deg,
    #667eea,
    #764ba2
  ); /* Changed from transparent */
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.ourgallery-mgcs-main-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #26231f; /* Changed from white to dark */
  margin-bottom: 20px;
}

.ourgallery-mgcs-highlight {
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ourgallery-mgcs-main-description {
  font-size: 1.2rem;
  color: #666; /* Changed from white to gray */
  max-width: 600px;
  margin: 0 auto 25px;
  line-height: 1.6;
}

.ourgallery-mgcs-title-underline {
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #667eea, #764ba2);
  margin: 0 auto;
  border-radius: 2px;
}

/* Filter Container - Updated for White Background */
.ourgallery-mgcs-filter-container {
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.ourgallery-mgcs-filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 25px;
  background: #f8f9fa; /* Changed from transparent */
  border-radius: 25px;
  border: 1px solid #e9ecef; /* Changed border color */
}

.ourgallery-mgcs-filter-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white; /* Changed from transparent */
  color: #1177b7; /* Changed color */
  border: 2px solid #e9ecef; /* Changed border */
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ourgallery-mgcs-filter-btn:hover,
.ourgallery-mgcs-filter-btn.ourgallery-mgcs-active {
  background: linear-gradient(135deg, #0f76b9, #f49701);
  color: white;

  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Gallery Container - Remove Load More Section */
.ourgallery-mgcs-gallery-container {
  position: relative;
  z-index: 2;
}

.ourgallery-mgcs-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
  /* Removed margin-bottom for load more */
}

/* Gallery Items - Same as before */
.ourgallery-mgcs-gallery-item {
  transition: all 0.4s ease;
}

.ourgallery-mgcs-gallery-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid #f1f3f4; /* Added subtle border */
}

.ourgallery-mgcs-gallery-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.ourgallery-mgcs-image-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.ourgallery-mgcs-gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ourgallery-mgcs-gallery-card:hover .ourgallery-mgcs-gallery-image {
  transform: scale(1.1);
}

.ourgallery-mgcs-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgb(14, 117, 184), rgb(244, 162, 38));
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px;
  transition: opacity 0.4s ease;
}

.ourgallery-mgcs-gallery-card:hover .ourgallery-mgcs-image-overlay {
  opacity: 1;
}

.ourgallery-mgcs-image-info {
  color: white;
}

.ourgallery-mgcs-image-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.ourgallery-mgcs-image-category {
  font-size: 0.9rem;
  color: #fff;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ourgallery-mgcs-image-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.ourgallery-mgcs-view-btn,
.ourgallery-mgcs-download-btn,
.ourgallery-mgcs-share-btn {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.ourgallery-mgcs-view-btn:hover,
.ourgallery-mgcs-download-btn:hover,
.ourgallery-mgcs-share-btn:hover {
  background: white;
  color: #0d74b7;
  transform: scale(1.1);
}

.ourgallery-mgcs-image-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.95);
  color: #e74c3c;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  z-index: 3;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Remove Load More Section - Hide it */
.ourgallery-mgcs-load-more-section {
  display: none; /* Completely hidden */
}

/* Modal Styles - Same as before */
.ourgallery-mgcs-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.ourgallery-mgcs-modal-content {
  position: relative;
  margin: 3% auto;
  background: white;
  border-radius: 20px;
  max-width: 90%;
  max-height: 90%;
  overflow: hidden;
  animation: ourgallery-mgcs-modalSlideIn 0.4s ease;
}

@keyframes ourgallery-mgcs-modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.ourgallery-mgcs-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  background: linear-gradient(135deg, #0e75b9);
  color: white;
}

.ourgallery-mgcs-close-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
}

.ourgallery-mgcs-close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.ourgallery-mgcs-modal-body {
  padding: 20px;
  text-align: center;
}

.ourgallery-mgcs-modal-image {
  max-width: 100%;
  max-height: 60vh;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}

.ourgallery-mgcs-modal-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.ourgallery-mgcs-modal-action-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #0e75b9, #f39600);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.ourgallery-mgcs-modal-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

/* Our Courses MGCS - Modern Card Style */
.our-courses-mgcs-main-section {
  position: relative;
  padding: 50px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  overflow: hidden;
}

.our-courses-mgcs-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.our-courses-mgcs-bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.our-courses-mgcs-shape-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
  top: 10%;
  right: -100px;
  animation: our-courses-mgcs-float 6s ease-in-out infinite;
}

.our-courses-mgcs-shape-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
  bottom: 20%;
  left: -50px;
  animation: our-courses-mgcs-float 8s ease-in-out infinite reverse;
}

/* Section Header */
.our-courses-mgcs-section-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.our-courses-mgcs-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.our-courses-mgcs-main-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #2d3748;
  margin-bottom: 20px;
}

.our-courses-mgcs-highlight {
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.our-courses-mgcs-main-description {
  font-size: 1.2rem;
  color: #718096;
  max-width: 600px;
  margin: 0 auto 25px;
  line-height: 1.6;
}

.our-courses-mgcs-title-underline {
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #667eea, #764ba2);
  margin: 0 auto;
  border-radius: 2px;
}

/* Course Grid */
.our-courses-mgcs-course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

/* Course Cards - Image Style */
.our-courses-mgcs-course-card {
  perspective: 1000px;
  height: 400px;
}

.our-courses-mgcs-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.our-courses-mgcs-card-inner:hover {
  transform: translateY(-10px) rotateX(5deg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

/* Card Color Themes */
.our-courses-mgcs-card-yellow .our-courses-mgcs-card-inner {
  background: linear-gradient(135deg, #568881 0%, #30bdb0eb 100%);
  color: #fff;
}

.our-courses-mgcs-card-pink .our-courses-mgcs-card-inner {
  background: linear-gradient(135deg, #c84b78 0%, #e64191 100%);
  color: white;
}

.our-courses-mgcs-card-purple .our-courses-mgcs-card-inner {
  background: linear-gradient(135deg, #807aca 0%, #6457ca 100%);
  color: white;
}

.our-courses-mgcs-card-blue .our-courses-mgcs-card-inner {
  background: linear-gradient(135deg, #5884b0 0%, #15588c 100%);
  color: white;
}

.our-courses-mgcs-card-green .our-courses-mgcs-card-inner {
  background: linear-gradient(135deg, #a4bf5c 0%, #596831 100%);
  color: #fff;
}

.our-courses-mgcs-card-orange .our-courses-mgcs-card-inner {
  background: linear-gradient(135deg, #a8996c 0%, #84723b 100%);
  color: white;
}

/* Card Header */
.our-courses-mgcs-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.our-courses-mgcs-category-badge {
  background: rgba(255, 255, 255, 0.2);
  color: inherit;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(10px);
}

.our-courses-mgcs-card-dots {
  display: flex;
  gap: 5px;
}

.our-courses-mgcs-card-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.our-courses-mgcs-card-dots span:first-child {
  background: rgba(255, 255, 255, 0.8);
}

/* Card Content */
.our-courses-mgcs-card-content {
  flex: 1;
}

.our-courses-mgcs-card-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.2;
}

.our-courses-mgcs-card-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  opacity: 0.9;
}

.our-courses-mgcs-card-description {
  font-size: 15.5px;
  text-align: justify;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 20px;
  opacity: 0.8;
}

.our-courses-mgcs-card-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.our-courses-mgcs-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
}

.our-courses-mgcs-feature-item i {
  width: 16px;
  opacity: 0.8;
}

/* Card Graphics */
.our-courses-mgcs-card-graphic {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
  opacity: 0.3;
  z-index: 1;
}

.our-courses-mgcs-graphic-element {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  animation: our-courses-mgcs-pulse 3s ease-in-out infinite;
}

/* Card Footer */
.our-courses-mgcs-card-footer {
  position: relative;
  padding-top: 10px;
  z-index: 2;
}

.our-courses-mgcs-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.2);
  color: inherit;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.our-courses-mgcs-card-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(5px);
  color: inherit;
}

/* Load More Section */
.our-courses-mgcs-load-more-section {
  text-align: center;
  position: relative;
  z-index: 2;
}

.our-courses-mgcs-load-more-btn,
.our-courses-mgcs-show-less-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #0e76b9, #f49600);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 25px rgba(201, 207, 237, 0.3);
}

.our-courses-mgcs-load-more-btn:hover,
.our-courses-mgcs-show-less-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(83, 84, 89, 0.4);
}

.our-courses-mgcs-show-less-btn {
  background: linear-gradient(135deg, #f49600, #0e76b9);
  box-shadow: 0 10px 25px rgba(201, 207, 237, 0.3);
}

.our-courses-mgcs-show-less-btn:hover {
  box-shadow: 0 15px 35px rgba(83, 84, 89, 0.4);
}

/* Hidden Class */
.our-courses-mgcs-hidden {
  display: none !important;
}

/* Notice MGCS Professional Styles */
.notice-mgcs-main-section {
  position: relative;
  padding: 50px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  overflow: hidden;
}

.notice-mgcs-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.notice-mgcs-bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
}

.notice-mgcs-shape-1 {
  width: 300px;
  height: 300px;
  background: #0f76b9;
  top: 10%;
  right: -100px;
  animation: notice-mgcs-rotate 20s linear infinite;
}

.notice-mgcs-shape-2 {
  width: 200px;
  height: 200px;
  background: #f49601;
  bottom: 20%;
  left: -50px;
  animation: notice-mgcs-rotate 25s linear infinite reverse;
}

/* Certificate Section */
.notice-mgcs-certificate-wrapper {
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}

.notice-mgcs-section-header {
  text-align: center;
  margin-bottom: 40px;
}

.notice-mgcs-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #0f76b9, #f49601);
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgba(15, 118, 185, 0.3);
}

.notice-mgcs-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #26231f;
  margin-bottom: 15px;
}

.notice-mgcs-title-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #0f76b9, #f49601);
  margin: 0 auto;
  border-radius: 2px;
}

/* Single Certificate Display */
.notice-mgcs-single-certificate-container {
  position: relative;
  background: white;
  border-radius: 25px;
  padding: 30px;
  box-shadow: 0 20px 50px rgba(38, 35, 31, 0.1);
  overflow: hidden;
}

.notice-mgcs-single-certificate-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #0f76b9, #f49601);
}

.notice-mgcs-current-certificate {
  position: relative;
  margin-bottom: 25px;
}

.notice-mgcs-certificate-display-frame {
  background: #f8f9fa;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 15px 35px rgba(38, 35, 31, 0.08);
}

.notice-mgcs-certificate-display-frame:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(38, 35, 31, 0.15);
}

.notice-mgcs-certificate-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 320px;
}

.notice-mgcs-certificate-display-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.notice-mgcs-certificate-display-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(15, 118, 185, 0.9),
    rgba(244, 150, 1, 0.9)
  );
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.notice-mgcs-certificate-display-frame:hover
  .notice-mgcs-certificate-display-overlay {
  opacity: 1;
}

.notice-mgcs-certificate-display-frame:hover
  .notice-mgcs-certificate-display-image {
  transform: scale(1.1);
}

.notice-mgcs-certificate-display-actions {
  display: flex;
  gap: 20px;
}

.notice-mgcs-view-certificate-btn,
.notice-mgcs-download-certificate-btn {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border: 3px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  backdrop-filter: blur(10px);
}

.notice-mgcs-view-certificate-btn:hover,
.notice-mgcs-download-certificate-btn:hover {
  background: white;
  color: #0f76b9;
  transform: scale(1.2);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.notice-mgcs-certificate-info-bar {
  padding: 20px;
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.notice-mgcs-certificate-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  background: linear-gradient(135deg, #0f76b9, #1e88e5);
  color: white;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.notice-mgcs-certificate-counter {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
}

.notice-mgcs-current-cert-number {
  font-size: 1.8rem;
  color: #0f76b9;
  font-weight: 800;
}

.notice-mgcs-cert-separator {
  font-size: 1.2rem;
  color: #666;
}

.notice-mgcs-total-cert-number {
  font-size: 1.3rem;
  color: #f49601;
  font-weight: 700;
}

/* Certificate Controls */
.notice-mgcs-certificate-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-top: 2px solid #f1f3f4;
}

.notice-mgcs-cert-nav-btn {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #0f76b9, #1e88e5);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(15, 118, 185, 0.3);
}

.notice-mgcs-cert-nav-btn:hover {
  background: linear-gradient(135deg, #f49601, #ff7043);
  transform: scale(1.1);
}

.notice-mgcs-cert-nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.notice-mgcs-certificate-indicators {
  display: flex;
  gap: 10px;
  align-items: center;
}

.notice-mgcs-cert-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.3s ease;
}

.notice-mgcs-cert-indicator.active {
  background: linear-gradient(135deg, #0f76b9, #f49601);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(15, 118, 185, 0.5);
}

.notice-mgcs-cert-indicator:hover {
  background: #9ca3af;
  transform: scale(1.2);
}

/* Certificate Auto-play Controls */
.notice-mgcs-cert-autoplay-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding: 15px 20px;
  background: #f8f9fa;
  border-radius: 15px;
}

.notice-mgcs-cert-play-pause {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #28a745, #20c997);
  border: none;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.notice-mgcs-cert-play-pause:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(40, 167, 69, 0.3);
}

.notice-mgcs-cert-play-pause.paused {
  background: linear-gradient(135deg, #dc3545, #fd7e14);
}

.notice-mgcs-cert-progress {
  width: 150px;
  height: 6px;
  background: #e5e7eb;
  border-radius: 3px;
  overflow: hidden;
}

.notice-mgcs-cert-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #0f76b9, #f49601);
  width: 0%;
  transition: width 0.1s ease;
  border-radius: 3px;
}

/* Certificate Slide Animations */
.notice-mgcs-cert-slide-out {
  animation: certSlideOut 0.4s ease-in-out forwards;
}

.notice-mgcs-cert-slide-in {
  animation: certSlideIn 0.4s ease-in-out forwards;
}

/* No Certificates State */
.notice-mgcs-no-certificates {
  text-align: center;
  padding: 60px 20px;
  color: #666;
}

.notice-mgcs-no-certificates i {
  font-size: 4rem;
  color: #0f76b9;
  margin-bottom: 20px;
}

.notice-mgcs-no-certificates h4 {
  font-size: 1.4rem;
  color: #26231f;
  margin-bottom: 10px;
}

/* Notice Section */
.notice-mgcs-notice-wrapper {
  position: relative;
  z-index: 2;
}

.notice-mgcs-notice-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(38, 35, 31, 0.1);
  overflow: hidden;
  height: 100%;
}

.notice-mgcs-notice-header {
  background: linear-gradient(135deg, #0f76b9, #f49601);
  padding: 30px;
  color: white;
  position: relative;
  overflow: hidden;
}

.notice-mgcs-notice-header::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20px;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.notice-mgcs-notice-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  backdrop-filter: blur(10px);
}

.notice-mgcs-notice-icon i {
  font-size: 24px;
  color: white;
}

.notice-mgcs-notice-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: -63px;
  padding-left: 69px;
  margin-bottom: 20px;
}

.notice-mgcs-notice-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 15px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Notice Content */
.notice-mgcs-notice-content {
  padding: 20px 30px;
  max-height: 400px;
  overflow-y: auto;
}

.notice-mgcs-notice-content::-webkit-scrollbar {
  width: 6px;
}

.notice-mgcs-notice-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.notice-mgcs-notice-content::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #0f76b9, #f49601);
  border-radius: 3px;
}

.notice-mgcs-notice-item {
  display: flex;
  gap: 20px;
  padding: 10px;
  box-shadow: 0 10px 25px rgba(15, 118, 185, 0.1);
  margin-bottom: 15px;
  background: #f8f9fa;
  border-radius: 15px;
  border-left: 4px solid #0f76b9;
  transition: all 0.3s ease;
}

.notice-mgcs-notice-item:hover {
  transform: translateX(5px);

  background: white;
}

.notice-mgcs-notice-left {
  flex-shrink: 0;
}

.notice-mgcs-notice-date {
  height: 40px;
  text-align: center;
  background: linear-gradient(135deg, #f49600, #f49601);
  color: white;
  border-radius: 10px;
  padding: 7px;
  min-width: 44px;
}

.notice-mgcs-date-day {
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.notice-mgcs-date-month {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: -2px;
}

.notice-mgcs-notice-right {
  flex: 1;
}

.notice-mgcs-notice-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.notice-mgcs-notice-timestamp {
  font-size: 12px;
  color: #666;
  font-weight: 500;
}

.notice-mgcs-new-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, #dc3545, #ff6b6b);
  color: white;
  padding: 2px 8px;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  animation: notice-mgcs-pulse 2s infinite;
}

.notice-mgcs-notice-heading {
  font-size: 14px;
  font-weight: 600;
  color: #26231f;
  margin-bottom: 15px;
  line-height: 1.4;
}

.notice-mgcs-notice-actions {
  display: flex;
  gap: 10px;
}

.notice-mgcs-read-btn,
.notice-mgcs-download-notice-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 2px 10px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.notice-mgcs-read-btn {
  background: linear-gradient(135deg, #0f76b9, #1e88e5);
  color: white;
}

.notice-mgcs-download-notice-btn {
  background: linear-gradient(135deg, #f49601, #ff7043);
  color: white;
}

.notice-mgcs-read-btn:hover,
.notice-mgcs-download-notice-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  color: white;
}

/* Notice Footer */
.notice-mgcs-notice-footer {
  padding: 20px 30px;
  border-top: 1px solid #e9ecef;
  text-align: center;
}

.notice-mgcs-view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  background: linear-gradient(135deg, #0f76b9, #0f79b9);
  color: white;
  padding: 10px 23px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.notice-mgcs-view-all-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(15, 118, 185, 0.4);
  color: white;
}

/* Certificate Modal */
.notice-mgcs-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.notice-mgcs-modal-content {
  position: relative;
  margin: 5% auto;
  background: white;
  border-radius: 20px;
  max-width: 80%;
  max-height: 80%;
  overflow: hidden;
  animation: modalSlideIn 0.3s ease;
}

.notice-mgcs-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  background: linear-gradient(135deg, #0f76b9, #f49601);
  color: white;
}

.notice-mgcs-close-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s ease;
}

.notice-mgcs-close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.notice-mgcs-modal-body {
  padding: 20px;
  text-align: center;
}

.notice-mgcs-modal-image {
  max-width: 100%;
  max-height: 70vh;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* MGCS Banner Slider - 400px Height Version */
.mgcs-banner-slider-section {
  position: relative;
  height: 500px;
  min-height: 500px;
  overflow: hidden;
}

.mgcs-banner-slider-wrapper {
  height: 100%;
  width: 100%;
}

.mgcs-banner-slider {
  height: 100%;
  width: 100%;
}

.mgcs-banner-slider .swiper-wrapper {
  height: 100%;
}

.mgcs-banner-slider .swiper-slide {
  height: 100%;
  width: 100%;
  position: relative;
}

/* Slide Content - Adjusted for 400px */
.mgcs-banner-slide-content {
  height: 100%;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  padding: 20px 0; /* Added padding for better spacing */
}

.mgcs-banner-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  filter: brightness(0.7) contrast(1.1);
}

/* Professional Overlay - Same as before */
.mgcs-banner-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: radial-gradient(
      ellipse at top right,
      rgba(15, 118, 185, 0.5) 0%,
      transparent 60%
    ),
    linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(38, 35, 31, 0.4) 100%);
}

.swiper-slide:nth-child(2) .mgcs-banner-slide-overlay {
  background: radial-gradient(
      ellipse at bottom left,
      rgba(244, 150, 1, 0.4) 0%,
      transparent 60%
    ),
    linear-gradient(45deg, rgba(0, 0, 0, 0.6) 0%, rgba(15, 118, 185, 0.3) 100%);
}

.swiper-slide:nth-child(3) .mgcs-banner-slide-overlay {
  background: radial-gradient(
      ellipse at center,
      rgba(15, 118, 185, 0.3) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse at bottom right,
      rgba(244, 150, 1, 0.3) 0%,
      transparent 50%
    ),
    linear-gradient(225deg, rgba(0, 0, 0, 0.5) 0%, rgba(38, 35, 31, 0.4) 100%);
}

.mgcs-banner-slide-text {
  position: relative;
  z-index: 3;
  color: white;
}

/* Badge Styling - Reduced for 400px */
.mgcs-banner-slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px; /* Reduced gap */
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 10px 20px; /* Reduced padding */
  border-radius: 50px;
  font-size: 12px; /* Reduced font size */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px; /* Reduced margin */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: mgcs-banner-fadeInUp 1s ease-out 0.2s both;
}

.mgcs-banner-slide-badge i {
  font-size: 14px; /* Reduced icon size */
  color: #f49601;
}

/* Typography - Adjusted for 400px */
.mgcs-banner-slide-title {
  font-size: 2.2rem; /* Reduced from 4.5rem */
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 15px; /* Reduced margin */
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  animation: mgcs-banner-fadeInUp 1s ease-out 0.4s both;
}

.mgcs-banner-slide-description {
  font-size: 1rem; /* Reduced from 1.4rem */
  line-height: 1.5; /* Reduced line height */
  margin-bottom: 20px; /* Reduced margin */
  opacity: 0.95;
  max-width: 500px; /* Reduced max width */
  color: #fff;
  text-align: justify;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  animation: mgcs-banner-fadeInUp 1s ease-out 0.6s both;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Limit to 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Button Styling - Compact for 400px */
.mgcs-banner-slide-actions {
  display: flex;
  gap: 15px; /* Reduced gap */
  flex-wrap: wrap;
  animation: mgcs-banner-fadeInUp 1s ease-out 0.8s both;
}

.mgcs-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px; /* Reduced gap */
  padding: 12px 25px; /* Reduced padding */
  border-radius: 50px;
  font-size: 14px; /* Reduced font size */
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mgcs-banner-btn-primary {
  background: linear-gradient(135deg, #0f76b9 0%, #f49601 100%);
  color: white;

  box-shadow: 0 8px 25px rgba(15, 118, 185, 0.4);
}

.mgcs-banner-btn-primary:hover {
  transform: translateY(-2px); /* Reduced transform */
  box-shadow: 0 12px 35px rgba(15, 118, 185, 0.5);
  color: white;
}

.mgcs-banner-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
}

.mgcs-banner-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
  transform: translateY(-2px);
  color: white;
}

/* Navigation - Adjusted for 400px */
.mgcs-banner-slider-navigation {
  position: absolute;
  top: 50%;
  width: 100%;
  z-index: 10;
  transform: translateY(-50%);
  pointer-events: none;
}

.mgcs-banner-slider-button-prev,
.mgcs-banner-slider-button-next {
  position: absolute;
  top: 0;
  width: 50px; /* Reduced size */
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
  font-size: 16px; /* Reduced font size */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  pointer-events: auto;
  z-index: 20;
}

.mgcs-banner-slider-button-prev {
  left: 20px; /* Reduced distance */
}

.mgcs-banner-slider-button-next {
  right: 20px;
}

.mgcs-banner-slider-button-prev:hover,
.mgcs-banner-slider-button-next:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* Pagination - Adjusted for 400px */
.mgcs-banner-slider-pagination {
  position: absolute;
  bottom: 20px; /* Reduced from 40px */
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex !important;
  gap: 10px; /* Reduced gap */
  pointer-events: auto;
}

.mgcs-banner-slider-pagination .swiper-pagination-bullet {
  width: 10px; /* Reduced size */
  height: 10px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 1;
  pointer-events: auto;
}

.mgcs-banner-slider-pagination .swiper-pagination-bullet-active {
  background: linear-gradient(135deg, #0f76b9, #f49601);
  transform: scale(1.3); /* Reduced scale */
  box-shadow: 0 0 15px rgba(244, 150, 1, 0.6);
}

/* Progress Bar - Same position */
.mgcs-banner-slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px; /* Reduced height */
  background: rgba(255, 255, 255, 0.2);
  z-index: 10;
}

.mgcs-banner-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #0f76b9 0%, #f49601 100%);
  width: 0;
  transition: width 0.1s ease;
  box-shadow: 0 0 10px rgba(244, 150, 1, 0.6);
}

/* Remove decorations for compact version */
.mgcs-banner-slide-decorations,
.mgcs-banner-decoration {
  display: none; /* Hide decorations in compact version */
}

/* Our Tie-Ups & Certifications Complete Styles */

/* Main Section */
.Our-TieUpsCertifications-mgcs-main-section {
  position: relative;
  padding: 40px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  overflow: hidden;
}

/* Content Section */
.Our-TieUpsCertifications-mgcs-content-section {
  position: relative;
  z-index: 2;
  margin-bottom: 80px;
}

.Our-TieUpsCertifications-mgcs-section-header {
  margin-bottom: 40px;
}

.Our-TieUpsCertifications-mgcs-icon-badge {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0f76b9, #f49601);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 15px 30px rgba(15, 118, 185, 0.3);
}

.Our-TieUpsCertifications-mgcs-icon-badge i {
  font-size: 28px;
  color: white;
}

.Our-TieUpsCertifications-mgcs-section-title {
  font-size: 48px;
  font-weight: 700;
  color: #26231f;
  margin-bottom: 15px;
  line-height: 1.3;
}

.Our-TieUpsCertifications-mgcs-section-underline {
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #0f76b9, #f49601);
  border-radius: 2px;
}

/* Certification Cards */
.Our-TieUpsCertifications-mgcs-certification-cards {
  margin-top: 30px;
}

.Our-TieUpsCertifications-mgcs-cert-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 15px 40px rgba(38, 35, 31, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.Our-TieUpsCertifications-mgcs-cert-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, #0f76b9, #f49601);
}

.Our-TieUpsCertifications-mgcs-cert-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(38, 35, 31, 0.15);
}

.Our-TieUpsCertifications-mgcs-cert-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0f76b9, #f49601);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(15, 118, 185, 0.3);
}

.Our-TieUpsCertifications-mgcs-cert-content {
  flex: 1;
}

.Our-TieUpsCertifications-mgcs-cert-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #26231f;
  margin-bottom: 10px;
}

.Our-TieUpsCertifications-mgcs-cert-text {
  color: #26231f;
  text-align: justify;
  font-size: 16.5px;
  line-height: 1.7;
  margin: 0;
}

.Our-TieUpsCertifications-mgcs-cert-icon {
  width: 60px;
  height: 60px;
  background: rgba(15, 118, 185, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.Our-TieUpsCertifications-mgcs-cert-icon i {
  font-size: 24px;
  color: #0f76b9;
}

/* Image Section */
.Our-TieUpsCertifications-mgcs-image-section {
  position: relative;
  padding-left: 30px;
}

.Our-TieUpsCertifications-mgcs-image-wrapper {
  position: relative;
}

.Our-TieUpsCertifications-mgcs-image-frame {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(38, 35, 31, 0.15);
}

.Our-TieUpsCertifications-mgcs-main-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.Our-TieUpsCertifications-mgcs-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(15, 118, 185, 0.85),
    rgba(244, 150, 1, 0.85)
  );
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.3s ease;
}

.Our-TieUpsCertifications-mgcs-image-frame:hover
  .Our-TieUpsCertifications-mgcs-image-overlay {
  opacity: 1;
}

.Our-TieUpsCertifications-mgcs-image-frame:hover
  .Our-TieUpsCertifications-mgcs-main-image {
  transform: scale(1.1);
}

.Our-TieUpsCertifications-mgcs-overlay-content {
  text-align: center;
  color: white;
}

.Our-TieUpsCertifications-mgcs-overlay-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.Our-TieUpsCertifications-mgcs-overlay-text {
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.Our-TieUpsCertifications-mgcs-floating-badges {
  position: absolute;
  top: -20px;
  right: -20px;
}

.Our-TieUpsCertifications-mgcs-floating-badge {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.Our-TieUpsCertifications-mgcs-badge-1 {
  background: #0f76b9;
  top: 0;
  right: 0;
  animation: Our-TieUpsCertifications-mgcs-float 3s ease-in-out infinite;
}

.Our-TieUpsCertifications-mgcs-badge-2 {
  background: #f49601;
  top: 30px;
  right: 30px;
  animation: Our-TieUpsCertifications-mgcs-float 3s ease-in-out infinite 1s;
}

.Our-TieUpsCertifications-mgcs-badge-3 {
  background: #26231f;
  top: 60px;
  right: 60px;
  animation: Our-TieUpsCertifications-mgcs-float 3s ease-in-out infinite 2s;
}

.Our-TieUpsCertifications-mgcs-floating-badge i {
  color: white;
  font-size: 20px;
}

/* Additional Sections */
.Our-TieUpsCertifications-mgcs-additional-section {
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}

.Our-TieUpsCertifications-mgcs-info-card {
  background: white;
  border-radius: 25px;
  padding: 40px 30px;
  height: 100%;
  box-shadow: 0 20px 50px rgba(38, 35, 31, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.Our-TieUpsCertifications-mgcs-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #0f76b9, #f49601);
}

.Our-TieUpsCertifications-mgcs-info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(38, 35, 31, 0.15);
}

.Our-TieUpsCertifications-mgcs-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.Our-TieUpsCertifications-mgcs-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0f76b9, #f49601);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  box-shadow: 0 10px 25px rgba(15, 118, 185, 0.3);
}

.Our-TieUpsCertifications-mgcs-card-icon i {
  font-size: 24px;
  color: white;
}

.Our-TieUpsCertifications-mgcs-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #26231f;
  margin: 0;
}

.Our-TieUpsCertifications-mgcs-recognition-item,
.Our-TieUpsCertifications-mgcs-partnership-item {
  display: flex;
  margin-bottom: 25px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.Our-TieUpsCertifications-mgcs-recognition-item:hover,
.Our-TieUpsCertifications-mgcs-partnership-item:hover {
  background: #e9ecef;
  transform: translateX(10px);
}

.Our-TieUpsCertifications-mgcs-recognition-icon,
.Our-TieUpsCertifications-mgcs-partnership-icon {
  width: 50px;
  height: 50px;
  background: #0f76b9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.Our-TieUpsCertifications-mgcs-recognition-icon i,
.Our-TieUpsCertifications-mgcs-partnership-icon i {
  color: white;
  font-size: 18px;
}

.Our-TieUpsCertifications-mgcs-recognition-text h5,
.Our-TieUpsCertifications-mgcs-partnership-text h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #26231f;
  margin-bottom: 8px;
}

.Our-TieUpsCertifications-mgcs-recognition-text p,
.Our-TieUpsCertifications-mgcs-partnership-text p {
  color: #26231f;
  text-align: justify;
  font-size: 15.5px;
  margin: 0;
  line-height: 1.6;
}

.Our-TieUpsCertifications-mgcs-compliance-text {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 15px;
  border-left: 4px solid #0f76b9;
}

.Our-TieUpsCertifications-mgcs-compliance-text p {
  color: #26231f;
  text-align: justify;
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.Our-TieUpsCertifications-mgcs-compliance-text p:last-child {
  margin-bottom: 0;
}

/* Certificates Section */
.Our-TieUpsCertifications-mgcs-certificates-section {
  position: relative;
  padding: 60px 0;

  overflow: hidden;
}

.Our-TieUpsCertifications-mgcs-certificates-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(15, 118, 185, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(244, 150, 1, 0.1) 0%,
      transparent 50%
    );
}

.Our-TieUpsCertifications-mgcs-certificates-header {
  text-align: center;
  margin-bottom: 50px;
}

.Our-TieUpsCertifications-mgcs-certificates-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #0f76b9, #f49601);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  box-shadow: 0 10px 25px rgba(15, 118, 185, 0.3);
}

.Our-TieUpsCertifications-mgcs-certificates-title {
  font-size: 48px;
  font-weight: 700;
  color: #26231f;
  margin-bottom: 20px;
}

.Our-TieUpsCertifications-mgcs-certificates-divider {
  width: 120px;
  height: 4px;
  background: linear-gradient(to right, #0f76b9, #f49601);
  margin: 0 auto;
  border-radius: 2px;
}

.Our-TieUpsCertifications-mgcs-certificates-slider-wrapper {
  margin-top: 40px;
}

.Our-TieUpsCertifications-mgcs-client-slider {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.Our-TieUpsCertifications-mgcs-single-certificate {
  flex: 0 0 300px;
  margin-bottom: 30px;
}

.Our-TieUpsCertifications-mgcs-certificate-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}

.Our-TieUpsCertifications-mgcs-certificate-frame:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.Our-TieUpsCertifications-mgcs-certificate-img {
  width: 100%;
  height: 150px;
  padding: 10px;
  transition: transform 0.5s ease;
}

.Our-TieUpsCertifications-mgcs-certificate-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(15, 118, 185, 0.9),
    rgba(244, 150, 1, 0.9)
  );
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.3s ease;
}

.Our-TieUpsCertifications-mgcs-certificate-frame:hover
  .Our-TieUpsCertifications-mgcs-certificate-overlay {
  opacity: 1;
}

.Our-TieUpsCertifications-mgcs-certificate-frame:hover
  .Our-TieUpsCertifications-mgcs-certificate-img {
  transform: scale(1.1);
}

.Our-TieUpsCertifications-mgcs-certificate-info {
  text-align: center;
  color: white;
}

.Our-TieUpsCertifications-mgcs-certificate-info i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

.Our-TieUpsCertifications-mgcs-certificate-info span {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Enhanced Professional Breadcrumb Section */
.vision-mgcs-breadcrumb-section {
  position: relative;
  min-height: 300px;
  background: linear-gradient(135deg, #0f76b9 0%, #f49601 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background Image Layer */
.vision-mgcs-breadcrumb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/banner.jpg") center/cover no-repeat !important;
  z-index: 1;
}

/* Enhanced Gradient Overlay */
.vision-mgcs-breadcrumb-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(15, 118, 185, 0.85),
    rgba(244, 150, 1, 0.75)
  );
  z-index: 1;
}

/* Professional Pattern Overlay */
.vision-mgcs-breadcrumb-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(255, 255, 255, 0.1) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px
    ),
    linear-gradient(45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%);
  background-size: 60px 60px, 80px 80px, 40px 40px, 40px 40px;
  animation: vision-mgcs-pattern-move 20s linear infinite;
  z-index: 2;
}

/* Enhanced Floating Particles */
.vision-mgcs-breadcrumb-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.vision-mgcs-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  animation: vision-mgcs-float-enhanced 8s ease-in-out infinite;
}

.vision-mgcs-particle:nth-child(1) {
  width: 8px;
  height: 8px;
  top: 15%;
  left: 15%;
  animation-delay: -1s;
}
.vision-mgcs-particle:nth-child(2) {
  width: 6px;
  height: 6px;
  top: 25%;
  left: 65%;
  animation-delay: -2s;
}
.vision-mgcs-particle:nth-child(3) {
  width: 10px;
  height: 10px;
  top: 65%;
  left: 25%;
  animation-delay: -3s;
}
.vision-mgcs-particle:nth-child(4) {
  width: 4px;
  height: 4px;
  top: 85%;
  left: 75%;
  animation-delay: -4s;
}
.vision-mgcs-particle:nth-child(5) {
  width: 7px;
  height: 7px;
  top: 35%;
  left: 85%;
  animation-delay: -5s;
}
.vision-mgcs-particle:nth-child(6) {
  width: 5px;
  height: 5px;
  top: 55%;
  left: 10%;
  animation-delay: -6s;
}
.vision-mgcs-particle:nth-child(7) {
  width: 9px;
  height: 9px;
  top: 75%;
  left: 90%;
  animation-delay: -7s;
}

/* Enhanced Content Styling */
.vision-mgcs-breadcrumb-content {
  position: relative;
  z-index: 4;
}

/* Professional Glass Effect Icon */
.vision-mgcs-breadcrumb-icon {
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 2px 4px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.vision-mgcs-breadcrumb-icon:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.vision-mgcs-breadcrumb-icon i {
  font-size: 36px;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Enhanced Typography */
.vision-mgcs-breadcrumb-title {
  font-size: 4rem;
  font-weight: 900;
  color: white;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.3);
  line-height: 1.1;
  letter-spacing: -1px;
  position: relative;
}

.vision-mgcs-breadcrumb-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.8), transparent);
  border-radius: 2px;
}

.vision-mgcs-breadcrumb-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  font-weight: 400;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
}

/* Enhanced Navigation */
.vision-mgcs-breadcrumb-nav {
  position: relative;
  z-index: 4;
  text-align: right;
}

.vision-mgcs-bread-list {
  list-style: none;
  padding: 20px 25px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.vision-mgcs-bread-list li {
  color: white;
  font-size: 1rem;
  margin: 0 8px;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.vision-mgcs-bread-list li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.05);
}

.vision-mgcs-bread-list li a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.vision-mgcs-bread-list li.active {
  color: white;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 15px;
  border-radius: 25px;
  backdrop-filter: blur(5px);
}

.vision-mgcs-bread-list li i {
  font-size: 14px;
}

/* Add Decorative Elements */
.vision-mgcs-breadcrumb-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      ellipse at top left,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at bottom right,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    );
  z-index: 3;
  pointer-events: none;
}

/* Enhanced Main Section */
.vision-mgcs-main-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  overflow: hidden;
}

.vision-mgcs-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.vision-mgcs-bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.vision-mgcs-shape-1 {
  width: 300px;
  height: 300px;
  background: #0f76b9;
  top: 10%;
  right: -100px;
  animation: vision-mgcs-rotate 20s linear infinite;
}

.vision-mgcs-shape-2 {
  width: 200px;
  height: 200px;
  background: #f49601;
  bottom: 20%;
  left: -50px;
  animation: vision-mgcs-rotate 15s linear infinite reverse;
}

.vision-mgcs-shape-3 {
  width: 150px;
  height: 150px;
  background: #26231f;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  animation: vision-mgcs-pulse 10s ease-in-out infinite;
}

/* Hero Introduction */
.vision-mgcs-hero-intro {
  position: relative;
  z-index: 2;
  margin-bottom: 100px;
}

.vision-mgcs-hero-card {
  background: white;
  border-radius: 30px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(38, 35, 31, 0.1);
  position: relative;
  overflow: hidden;
}

.vision-mgcs-hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(to right, #0f76b9, #f49601);
}

.vision-mgcs-hero-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}

.vision-mgcs-hero-icon-circle {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #0f76b9, #f49601);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.vision-mgcs-hero-icon {
  font-size: 48px;
  color: white;
}

.vision-mgcs-hero-icon-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.vision-mgcs-ring {
  position: absolute;
  border: 2px solid #0f76b9;
  border-radius: 50%;
  opacity: 0.3;
}

.vision-mgcs-ring-1 {
  width: 140px;
  height: 140px;
  top: -70px;
  left: -70px;
  animation: vision-mgcs-pulse-ring 3s ease-in-out infinite;
}

.vision-mgcs-ring-2 {
  width: 160px;
  height: 160px;
  top: -80px;
  left: -80px;
  animation: vision-mgcs-pulse-ring 3s ease-in-out infinite 1s;
}

.vision-mgcs-hero-title {
  font-size: 48px;
  font-weight: 800;
  color: #26231f;
  margin-bottom: 20px;
  line-height: 1.3;
}

.vision-mgcs-hero-divider {
  width: 120px;
  height: 4px;
  background: linear-gradient(to right, #0f76b9, #f49601);
  margin: 0 auto 30px;
  border-radius: 2px;
}

.vision-mgcs-hero-description {
  font-size: 16.5px;
  text-align: justify;
  opacity: 0.8;
  line-height: 1.8;
  color: #26231f;
  max-width: 800px;
  margin: 0 auto 40px;
}

.vision-mgcs-hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.vision-mgcs-stat-item {
  text-align: center;
}

.vision-mgcs-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0f76b9, #f49601);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 5px;
}

.vision-mgcs-stat-label {
  font-size: 0.9rem;
  color: #26231f;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Content Section */
.vision-mgcs-content-section {
  position: relative;
  z-index: 2;
  margin-bottom: 100px;
}

.vision-mgcs-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #0f76b9, #f49601);
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.vision-mgcs-content-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #26231f;
  margin-bottom: 40px;
  line-height: 1.3;
}

.vision-mgcs-mission-cards {
  margin-bottom: 40px;
}

.vision-mgcs-mission-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 15px 35px rgba(38, 35, 31, 0.08);
  border-left: 5px solid #0f76b9;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.vision-mgcs-mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(38, 35, 31, 0.15);
}

.vision-mgcs-mission-card:nth-child(even) {
  border-left-color: #f49601;
}

.vision-mgcs-mission-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.vision-mgcs-mission-icon {
  width: 50px;
  height: 50px;
  background: #0f76b9;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.vision-mgcs-mission-card:nth-child(even) .vision-mgcs-mission-icon {
  background: #f49601;
}

.vision-mgcs-mission-icon i {
  font-size: 20px;
  color: white;
}

.vision-mgcs-mission-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #26231f;
  margin: 0;
}

.vision-mgcs-mission-text {
  color: #26231f;
  text-align: justify;
  font-size: 16.5px;
  line-height: 1.7;
  margin: 0;
}

.vision-mgcs-mission-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #0f76b9, #f49601);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.vision-mgcs-mission-card:hover .vision-mgcs-mission-accent {
  transform: scaleX(1);
}

.vision-mgcs-highlight-box {
  background: linear-gradient(135deg, #0f76b9, #f49601);
  border-radius: 20px;
  padding: 30px;
  color: white;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.vision-mgcs-highlight-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vision-mgcs-highlight-icon i {
  font-size: 24px;
}

.vision-mgcs-highlight-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.vision-mgcs-highlight-text {
  line-height: 1.6;
  margin: 0;
  font-size: 16.5px;
  color: #fff;
  text-align: justify;
  opacity: 0.9;
}

/* Enhanced Image Section */
.vision-mgcs-image-section {
  position: relative;
  padding-left: 40px;
}

.vision-mgcs-image-frame {
  position: relative;
}

.vision-mgcs-image-container {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(38, 35, 31, 0.15);
}

.vision-mgcs-main-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.vision-mgcs-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(15, 118, 185, 0.8),
    rgba(244, 150, 1, 0.8)
  );
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.vision-mgcs-image-container:hover .vision-mgcs-image-overlay {
  opacity: 1;
}

.vision-mgcs-image-container:hover .vision-mgcs-main-image {
  transform: scale(1.1);
}

.vision-mgcs-play-button {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border: 3px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.vision-mgcs-play-button:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.3);
}

.vision-mgcs-play-button i {
  font-size: 24px;
  color: white;
  margin-left: 3px;
}

.vision-mgcs-image-decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  pointer-events: none;
}

.vision-mgcs-deco-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: absolute;
}

.vision-mgcs-dot-1 {
  background: #0f76b9;
  top: 0;
  right: 0;
  animation: vision-mgcs-bounce 2s ease-in-out infinite;
}

.vision-mgcs-dot-2 {
  background: #f49601;
  top: 20px;
  right: 20px;
  animation: vision-mgcs-bounce 2s ease-in-out infinite 0.5s;
}

.vision-mgcs-dot-3 {
  background: #26231f;
  top: 40px;
  right: 40px;
  animation: vision-mgcs-bounce 2s ease-in-out infinite 1s;
}

/* Objective MGCS - Professional Educational Objective Theme CSS */
.objective-mgcs {
  background: #ffffff;
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}

.objective-mgcs::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"><circle cx="20" cy="20" r="2" fill="rgba(15,118,185,0.03)"/><circle cx="80" cy="80" r="2" fill="rgba(244,150,1,0.03)"/><path d="M10,50 Q50,10 90,50 T170,50" stroke="rgba(38,35,31,0.02)" stroke-width="1" fill="none"/></svg>');
  opacity: 0.5;
}

/* Main Card */
.objective-mgcs-main-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 20px 40px rgba(15, 118, 185, 0.15);
  border: 2px solid rgba(244, 150, 1, 0.3);
}

.objective-mgcs-intro-content {
  padding: 20px 0;
}

.objective-mgcs-intro-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0f76b9, #f49601);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  box-shadow: 0 15px 30px rgba(15, 118, 185, 0.3);
}

.objective-mgcs-intro-icon i {
  font-size: 2.5rem;
  color: white;
}

.objective-mgcs-intro-content h3 {
  color: #26231f;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.objective-mgcs-intro-content p {
  color: #26231f;
  opacity: 0.8;
  text-align: justify;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 16.5px;
}

.objective-mgcs-highlights {
  margin-top: 1.5rem;
}

.objective-mgcs-highlight-item {
  display: flex;
  font-size: 16.5px;
  align-items: center;
  margin-bottom: 1rem;
  color: #26231f;
  opacity: 0.8;
}

.objective-mgcs-highlight-item i {
  color: #f49601;
  margin-right: 15px;
  font-size: 1.2rem;
}

/* Image Wrapper */
.objective-mgcs-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.objective-mgcs-main-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(15, 118, 185, 0.2);
}

.objective-mgcs-floating-stats {
  position: absolute;
  top: 20px;
  right: 20px;
}

.objective-mgcs-stat-box {
  background: rgba(255, 255, 255, 0.95);
  padding: 15px 20px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 20px rgba(15, 118, 185, 0.2);
  backdrop-filter: blur(10px);
}

.objective-mgcs-stat-box i {
  font-size: 2rem;
  color: #0f76b9;
}

.objective-mgcs-stat-content h4 {
  color: #26231f;
  font-weight: 700;
  margin-bottom: 0;
  font-size: 1.5rem;
}

.objective-mgcs-stat-content p {
  color: #26231f;
  opacity: 0.8;
  margin-bottom: 0;
}

/* Section Title */
.objective-mgcs-points-section {
  padding-top: 30px;
  padding-bottom: 30px;
}
.objective-mgcs-section-title {
  color: #26231f;
  font-weight: 700;
  font-size: 48px;
  margin-bottom: 2rem;
}

.objective-mgcs-section-title i {
  color: #0f76b9;
}

/* Point Cards */
.objective-mgcs-point-card {
  background: #ffffff;
  border-radius: 20px;
  margin-top: 20px;
  padding: 30px;
  box-shadow: 0 15px 30px rgba(15, 118, 185, 0.15);
  border: 2px solid rgba(244, 150, 1, 0.3);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
}

.objective-mgcs-point-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(15, 118, 185, 0.25);
  border-color: #f49601;
}

.objective-mgcs-point-number {
  position: absolute;
  top: -15px;
  left: 30px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #0f76b9, #f49601);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(15, 118, 185, 0.3);
}

.objective-mgcs-point-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f49601, #26231f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 20px rgba(244, 150, 1, 0.3);
}

.objective-mgcs-point-icon i {
  font-size: 1.8rem;
  color: white;
}

.objective-mgcs-point-content h4 {
  color: #26231f;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.objective-mgcs-point-content p {
  color: #26231f;
  font-size: 16.5px;
  text-align: justify;
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.objective-mgcs-point-features {
  margin-top: 1rem;
}

.objective-mgcs-feature {
  font-size: 15px;
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  color: #26231f;
}

.objective-mgcs-feature i {
  color: #0f76b9;
  margin-right: 10px;
  font-size: 1rem;
}

/* Approach Tabs */
.objective-mgcs-approach-tabs {
  display: flex;
  gap: 10px;
  margin-top: 1rem;
}

.objective-mgcs-tab {
  flex: 1;
  padding: 8px 12px;
  background: rgba(15, 118, 185, 0.1);
  border: 1px solid rgba(15, 118, 185, 0.3);
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.objective-mgcs-tab:hover,
.objective-mgcs-tab.active {
  background: linear-gradient(135deg, #0f76b9, #f49601);
  color: white;
}

.objective-mgcs-tab i {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

/* Approach Cards */
.objective-mgcs-approach-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(15, 118, 185, 0.15);
  border: 2px solid rgba(244, 150, 1, 0.3);
  transition: all 0.3s ease;
  height: 100%;
}

.objective-mgcs-approach-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(15, 118, 185, 0.25);
}

.objective-mgcs-approach-header {
  background: linear-gradient(
    135deg,
    rgba(15, 118, 185, 0.1),
    rgba(244, 150, 1, 0.1)
  );
  padding: 30px 25px 20px;
  text-align: center;
}

.objective-mgcs-approach-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0f76b9, #f49601);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 10px 20px rgba(15, 118, 185, 0.3);
}

.objective-mgcs-approach-icon i {
  font-size: 2rem;
  color: white;
}

.objective-mgcs-approach-header h4 {
  color: #26231f;
  font-weight: 600;
  margin-bottom: 0;
}

.objective-mgcs-approach-body {
  padding: 25px;
}

.objective-mgcs-approach-body p {
  color: #26231f;
  font-size: 16.5px;
  text-align: justify;
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.objective-mgcs-approach-benefits {
  margin-top: 1rem;
}

.objective-mgcs-benefit {
  font-size: 16.5px;
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  color: #26231f;
}

.objective-mgcs-benefit i {
  color: #f49601;
  margin-right: 10px;
  font-size: 1rem;
}

/* Conclusion Banner */
.objective-mgcs-conclusion-banner {
  background: linear-gradient(
    135deg,
    rgba(15, 118, 185, 0.08),
    rgba(244, 150, 1, 0.08)
  );
  padding: 50px 30px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(15, 118, 185, 0.2);
  border: 2px solid rgba(244, 150, 1, 0.3);
}

.objective-mgcs-conclusion-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #0f76b9, #f49601);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: 0 20px 40px rgba(15, 118, 185, 0.3);
}

.objective-mgcs-conclusion-icon i {
  font-size: 3rem;
  color: white;
}

.objective-mgcs-conclusion-content h3 {
  color: #26231f;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
}

.objective-mgcs-conclusion-content p {
  color: #26231f;
  opacity: 0.8;
  line-height: 1.7;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.objective-mgcs-conclusion-stats {
  margin-top: 2rem;
}

.objective-mgcs-conclusion-stat {
  padding: 20px;
}

.objective-mgcs-conclusion-stat i {
  font-size: 2.5rem;
  color: #0f76b9;
  margin-bottom: 1rem;
}

.objective-mgcs-conclusion-stat h4 {
  color: #26231f;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.objective-mgcs-conclusion-stat p {
  color: #26231f;
  opacity: 0.8;
  margin-bottom: 0;
}

/* About Us MGCS - Updated with Custom Colors CSS */
.about-us-MGCS {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

.about-us-MGCS::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"><circle cx="20" cy="20" r="2" fill="rgba(15,118,185,0.05)"/><circle cx="80" cy="80" r="2" fill="rgba(244,150,1,0.05)"/><circle cx="40" cy="60" r="1" fill="rgba(38,35,31,0.03)"/></svg>');
  opacity: 0.3;
}

/* Header Styles */
.about-us-MGCS-header {
  position: relative;
  z-index: 2;
}

.about-us-MGCS-icon-wrapper {
  display: inline-block;
  padding: 20px;
  background: linear-gradient(135deg, #0f76b9, #f49601);
  border-radius: 50%;
  box-shadow: 0 15px 30px rgba(15, 118, 185, 0.3);
}

.about-us-MGCS-main-icon {
  font-size: 3rem;
  color: #fff;
  animation: bounce 2s infinite;
}

.about-us-MGCS-title {
  font-size: 48px;
  font-weight: 600;
  color: #2e2a26;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(38, 35, 31, 0.1);
}

.about-us-MGCS-subtitle-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #0f76b9, #f49601);
  margin: 0 auto 1rem;
  border-radius: 2px;
}

.about-us-MGCS-subtitle {
  font-size: 1.1rem;
  color: #222;
  font-weight: 500;
  opacity: 0.8;
}

/* Main Content Styles */
.about-us-MGCS-image-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 118, 185, 0.2);
  transition: all 0.3s ease;
}

.about-us-MGCS-image-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(15, 118, 185, 0.3);
}

.about-us-MGCS-main-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about-us-MGCS-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(15, 118, 185, 0.8),
    rgba(244, 150, 1, 0.8)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-us-MGCS-image-card:hover .about-us-MGCS-image-overlay {
  opacity: 1;
}

.about-us-MGCS-overlay-content {
  text-align: center;
  color: white;
}

.about-us-MGCS-play-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: pulse 2s infinite;
}

.about-us-MGCS-intro-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(15, 118, 185, 0.15);
  border: 2px solid #f49601;
  transition: all 0.3s ease;
}

.about-us-MGCS-intro-card:hover {
  box-shadow: 0 25px 50px rgba(15, 118, 185, 0.25);
  transform: translateY(-5px);
}

.about-us-MGCS-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0f76b9, #f49601);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 10px 20px rgba(15, 118, 185, 0.3);
}

.about-us-MGCS-card-icon i {
  font-size: 1.5rem;
  color: white;
}

.about-us-MGCS-intro-card h4 {
  color: #2e2a26;
  font-weight: 600;
  margin-bottom: 1rem;
}

.about-us-MGCS-intro-card p {
  color: #222;
  text-align: justify;
  font-size: 16.5px;
  opacity: 0.8;
  line-height: 1.6;
}

/* Impact Section */
.about-us-MGCS-section-title {
  padding: 31px;
  color: #2e2a26;
  font-weight: 600;
  font-size: 48px;
  text-shadow: 0 2px 10px rgba(26, 35, 31, 0.1);
}

.about-us-MGCS-section-title i {
  color: #0f76b9;
}

.about-us-MGCS-impact-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(15, 118, 185, 0.15);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(244, 150, 1, 0.2);
}

.about-us-MGCS-impact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(15, 118, 185, 0.25);
}

.about-us-MGCS-challenge-card:hover {
  border-top: 4px solid #f49601;
}

.about-us-MGCS-virtual-card:hover {
  border-top: 4px solid #0f76b9;
}

.about-us-MGCS-success-card:hover {
  border-top: 4px solid #2e2a26;
}

.about-us-MGCS-card-header {
  padding: 25px 25px 0;
  text-align: center;
}

.about-us-MGCS-card-header h5 {
  color: #2e2a26;
  font-weight: 600;
}

.about-us-MGCS-card-icon-box {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-us-MGCS-challenge-card .about-us-MGCS-card-icon-box {
  background: linear-gradient(135deg, #f49601, #26231f);
}

.about-us-MGCS-virtual-card .about-us-MGCS-card-icon-box {
  background: linear-gradient(135deg, #0f76b9, #f49601);
}

.about-us-MGCS-success-card .about-us-MGCS-card-icon-box {
  background: linear-gradient(135deg, #26231f, #0f76b9);
}

.about-us-MGCS-card-icon-box i {
  font-size: 2rem;
  color: white;
}

.about-us-MGCS-card-body {
  padding: 0 25px 20px;
  text-align: center;
  padding-top: 18px;
}

.about-us-MGCS-card-body p {
  color: #222;
  text-align: justify;
  font-size: 15.5px;
  opacity: 0.8;
  line-height: 1.6;
}

.about-us-MGCS-card-footer {
  height: 150px;
  overflow: hidden;
}

.about-us-MGCS-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about-us-MGCS-impact-card:hover .about-us-MGCS-card-image {
  transform: scale(1.1);
}

/* Role Section */
.about-us-MGCS-role-banner {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(15, 118, 185, 0.15);
  border: 2px solid #f49601;
}

.about-us-MGCS-role-title {
  color: #2e2a26;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.about-us-MGCS-role-title i {
  color: #0f76b9;
}

.about-us-MGCS-role-subtitle {
  color: #2e2a26;
  opacity: 0.8;
  font-size: 1.1rem;
}

.about-us-MGCS-role-badge {
  background: linear-gradient(135deg, #0f76b9, #f49601);
  color: white;
  padding: 15px 25px;
  border-radius: 50px;
  display: inline-block;
  box-shadow: 0 10px 20px rgba(15, 118, 185, 0.3);
}

.about-us-MGCS-role-badge i {
  margin-right: 8px;
}

/* Feature Cards */
.about-us-MGCS-feature-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(15, 118, 185, 0.15);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(244, 150, 1, 0.3);
  overflow: hidden;
}

.about-us-MGCS-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(15, 118, 185, 0.25);
  border-color: #f49601;
}

.about-us-MGCS-feature-card h5 {
  color: #2e2a26;
  font-weight: 600;
  margin-bottom: 1rem;
}

.about-us-MGCS-feature-card p {
  color: #222;
  text-align: justify;
  font-size: 15.5px;
  opacity: 0.8;
  line-height: 1.6;
}

.about-us-MGCS-feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0f76b9, #f49601);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 20px rgba(15, 118, 185, 0.3);
}

.about-us-MGCS-feature-icon i {
  font-size: 2rem;
  color: white;
}

.about-us-MGCS-feature-image {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 15px;
  transition: transform 0.3s ease;
}

.about-us-MGCS-feature-card:hover .about-us-MGCS-feature-image {
  transform: scale(1.1);
}
.about-us-MGCS-role-section {
  padding-top: 30px;
}
/* Conclusion Section */
.about-us-MGCS-conclusion {
  padding-top: 30px;
}
.about-us-MGCS-conclusion-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(15, 118, 185, 0.2);
  border: 2px solid #f49601;
}

.about-us-MGCS-conclusion-card h4 {
  color: #2e2a26;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.about-us-MGCS-conclusion-card p {
  color: #222;
  opacity: 0.8;
  line-height: 1.8;
  font-size: 16.5px;
}
.about-us-MGCS-conclusion-stats {
  padding-top: 50px;
}
.about-us-MGCS-conclusion-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #0f76b9, #f49601);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: 0 15px 30px rgba(15, 118, 185, 0.3);
  animation: float 3s ease-in-out infinite;
}

.about-us-MGCS-conclusion-icon i {
  font-size: 3rem;
  color: white;
}

.about-us-MGCS-stat {
  text-align: center;
  margin-bottom: 2rem;
}

.about-us-MGCS-stat i {
  font-size: 2.5rem;
  color: #0f76b9;
  margin-bottom: 0.5rem;
}

.about-us-MGCS-stat h5 {
  font-size: 2rem;
  font-weight: 700;
  color: #26231f;
  margin-bottom: 0.5rem;
}

.about-us-MGCS-stat p {
  color: #26231f;
  font-weight: 500;
  opacity: 0.8;
}

.our-services-MGCS {
  line-height: 1.6;
}
.our-services-MGCS__hero .container {
  max-width: 100%;
  padding: 0 53px;
}

.our-services-MGCS .container-fluid {
  padding: 0;
}
/* Hero Section */
.our-services-MGCS__hero {
  background: linear-gradient(135deg, #2e2a26 0%, #0f76b9 100%);
  color: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.our-services-MGCS__hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 70%,
      rgba(244, 150, 0, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(15, 118, 185, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.our-services-MGCS__hero-content {
  position: relative;
  z-index: 2;
}

.our-services-MGCS__hero-title {
  font-size: 3.5rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: white;
}

.our-services-MGCS__hero-subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #f49600;
}

.our-services-MGCS__hero-desc {
  color: #fff;
  font-size: 16.5px;
  text-align: justify;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 500px;
}

.our-services-MGCS__hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.our-services-MGCS__hero-stats .stat-item {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.our-services-MGCS__hero-stats .stat-item:hover {
  background: rgba(244, 150, 0, 0.2);
  transform: translateY(-5px);
}

.our-services-MGCS__hero-stats .number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #f49600;
  margin-bottom: 5px;
}

.our-services-MGCS__hero-stats .label {
  font-size: 0.9rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero Image Section */
.our-services-MGCS__hero-image {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  overflow: hidden;
}

.hero-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.our-services-MGCS__hero-image:hover .hero-main-image {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 118, 185, 0.3) 0%,
    rgba(244, 150, 0, 0.2) 50%,
    rgba(46, 42, 38, 0.3) 100%
  );
  border-radius: 20px;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.floating-elements .element {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 4s ease-in-out infinite;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.floating-elements .element i {
  font-size: 1.5rem;
  color: #0f76b9;
}

.element-1 {
  top: 15%;
  right: 15%;
  animation-delay: 0s;
}

.element-1 i {
  color: #f49600;
}

.element-2 {
  bottom: 25%;
  left: 10%;
  animation-delay: 1.5s;
}

.element-3 {
  top: 60%;
  right: 25%;
  animation-delay: 3s;
}

.element-3 i {
  color: #f49600;
}

/* Explore Section */
.our-services-MGCS__explore {
  padding: 100px 0;
  background: #ffffff;
}

.our-services-MGCS__section-title {
  font-size: 48px;
  font-weight: 600;
  color: #2e2a26;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.our-services-MGCS__section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #0f76b9, #f49600);
  border-radius: 2px;
}

.our-services-MGCS__section-desc {
  font-size: 1.1rem;
  color: #222;
  max-width: 800px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

/* Service Cards */
.our-services-MGCS__service-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 40px 30px;
  height: 100%;
  position: relative;
  transition: all 0.4s ease;
  border: 2px solid #e9ecef;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(46, 42, 38, 0.08);
}

.our-services-MGCS__service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(46, 42, 38, 0.15);
  border-color: #f49600;
}

.our-services-MGCS__card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #0f76b9, #f49600);
  transform: scaleY(0);
  transition: transform 0.4s ease;
}

.our-services-MGCS__service-card:hover .our-services-MGCS__card-accent {
  transform: scaleY(1);
}

.our-services-MGCS__card-icon {
  margin-bottom: 25px;
  position: relative;
}

.our-services-MGCS__card-icon i {
  font-size: 3rem;
  color: #0f76b9;
  transition: all 0.3s ease;
}

.our-services-MGCS__service-card:hover .our-services-MGCS__card-icon i {
  color: #f49600;
  transform: scale(1.1);
}

.our-services-MGCS__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2e2a26;
  margin-bottom: 20px;
  line-height: 1.3;
}

.our-services-MGCS__card-desc {
  font-size: 16.5px;
  text-align: justify;
  color: #222;
  line-height: 1.6;
  margin-bottom: 30px;
}

.our-services-MGCS__card-link {
  color: #0f76b9;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.our-services-MGCS__card-link:hover {
  color: #f49600;
  text-decoration: none;
  transform: translateX(5px);
}

.our-services-MGCS__card-link i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.our-services-MGCS__card-link:hover i {
  transform: translateX(5px);
}
.our-services-MGCS__service-card {
  animation: fadeInUp 0.6s ease forwards;
}

.our-services-MGCS__service-card:nth-child(1) {
  animation-delay: 0.1s;
}
.our-services-MGCS__service-card:nth-child(2) {
  animation-delay: 0.2s;
}
.our-services-MGCS__service-card:nth-child(3) {
  animation-delay: 0.3s;
}
.our-services-MGCS__service-card:nth-child(4) {
  animation-delay: 0.4s;
}
.our-services-MGCS__service-card:nth-child(5) {
  animation-delay: 0.5s;
}
.our-services-MGCS__service-card:nth-child(6) {
  animation-delay: 0.6s;
}

/* Loading Animation */
.our-services-MGCS__hero-content {
  animation: fadeInLeft 1s ease forwards;
}

.our-services-MGCS__hero-image {
  animation: fadeInRight 1s ease forwards;
}
/* Animation Effects */
@keyframes certSlideOut {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-30px);
  }
}

@keyframes certSlideIn {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes notice-mgcs-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes Our-TieUpsCertifications-mgcs-float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}
@keyframes notice-mgcs-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}
/* Animations */
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
/* Animations */
@keyframes handshake {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-10deg);
  }
  75% {
    transform: rotate(10deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes vision-mgcs-pattern-move {
  0% {
    background-position: 0 0, 0 0, 0 0, 0 0;
  }
  100% {
    background-position: 60px 60px, -80px -80px, 40px 40px, -40px -40px;
  }
}
@keyframes vision-mgcs-float-enhanced {
  0%,
  100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
    opacity: 0.6;
  }
  25% {
    transform: translateY(-20px) translateX(10px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(-40px) translateX(-5px) rotate(180deg);
    opacity: 0.8;
  }
  75% {
    transform: translateY(-20px) translateX(-10px) rotate(270deg);
    opacity: 1;
  }
}

@keyframes vision-mgcs-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes vision-mgcs-pulse {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
  }
  50% {
    transform: translateX(-50%) scale(1.2);
  }
}
@keyframes vision-mgcs-pulse-ring {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.1;
  }
}
@keyframes vision-mgcs-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Animations - Same as before */
@keyframes mgcs-banner-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px); /* Reduced transform */
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes our-courses-mgcs-float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}
@keyframes our-courses-mgcs-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.5;
  }
}

/* Enhanced Responsive Design for 400px */
@media (max-width: 1200px) {
  .mgcs-banner-slide-title {
    font-size: 2rem;
  }
  .mgcs-banner-slide-description {
    font-size: 0.95rem;
  }

  .vision-mgcs-image-section {
    padding-left: 20px;
  }

  .Our-TieUpsCertifications-mgcs-image-section {
    padding-left: 15px;
  }

  .our-courses-mgcs-course-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
  }
  .ourgallery-mgcs-gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .mgcs-banner-slider-section {
    height: 380px; /* Slightly reduced for tablets */
  }

  .mgcs-banner-slide-title {
    font-size: 1.8rem;
  }

  .mgcs-banner-slide-description {
    font-size: 0.9rem;
    -webkit-line-clamp: 2; /* Reduced lines on tablets */
  }

  .mgcs-banner-slider-button-prev {
    left: 15px;
  }

  .mgcs-banner-slider-button-next {
    right: 15px;
  }

  .Our-TieUpsCertifications-mgcs-main-title {
    font-size: 2.5rem;
  }

  .Our-TieUpsCertifications-mgcs-section-title {
    font-size: 2rem;
  }

  .Our-TieUpsCertifications-mgcs-certificates-title {
    font-size: 2rem;
  }

  .Our-TieUpsCertifications-mgcs-image-section {
    padding-left: 0;
    margin-top: 40px;
  }

  .Our-TieUpsCertifications-mgcs-cert-card {
    flex-direction: column;
    text-align: center;
  }

  .Our-TieUpsCertifications-mgcs-card-header {
    flex-direction: column;
    text-align: center;
  }

  .Our-TieUpsCertifications-mgcs-card-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .vision-mgcs-breadcrumb-title {
    font-size: 3rem;
  }

  .vision-mgcs-breadcrumb-subtitle {
    font-size: 1.1rem;
  }

  .vision-mgcs-breadcrumb-icon {
    width: 80px;
    height: 80px;
  }

  .vision-mgcs-breadcrumb-icon i {
    font-size: 32px;
  }

  .vision-mgcs-hero-title {
    font-size: 2.2rem;
  }

  .vision-mgcs-content-title {
    font-size: 2rem;
  }

  .vision-mgcs-partners-title {
    font-size: 2rem;
  }

  .vision-mgcs-image-section {
    padding-left: 0;
    margin-top: 40px;
  }

  .vision-mgcs-hero-stats {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .ourgallery-mgcs-main-section {
    padding: 60px 0;
  }

  .ourgallery-mgcs-main-title {
    font-size: 2.5rem;
  }

  .ourgallery-mgcs-filter-tabs {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .ourgallery-mgcs-gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .ourgallery-mgcs-image-wrapper {
    height: 220px;
  }

  .ourgallery-mgcs-modal-actions {
    flex-direction: column;
    gap: 10px;
  }

  .our-courses-mgcs-main-section {
    padding: 60px 0;
  }

  .our-courses-mgcs-main-title {
    font-size: 2.5rem;
  }

  .our-courses-mgcs-course-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .our-courses-mgcs-course-card {
    height: 350px;
  }

  .our-courses-mgcs-card-inner {
    padding: 25px;
  }

  .our-courses-mgcs-card-title {
    font-size: 1.5rem;
  }

  .our-courses-mgcs-card-graphic {
    width: 60px;
    height: 60px;
    bottom: 15px;
    right: 15px;
  }

  .our-courses-mgcs-graphic-element {
    font-size: 2rem;
  }

  .mgcs-banner-slider-section {
    height: 350px; /* Further reduced for mobile */
  }

  .mgcs-banner-slide-title {
    font-size: 1.6rem;
  }

  .mgcs-banner-slide-description {
    font-size: 0.85rem;
    -webkit-line-clamp: 2;
  }

  .mgcs-banner-slide-actions {
    flex-direction: row; /* Keep buttons in row */
    gap: 10px;
  }

  .mgcs-banner-btn {
    padding: 10px 20px;
    font-size: 12px;
  }

  .mgcs-banner-slider-button-prev,
  .mgcs-banner-slider-button-next {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .Our-TieUpsCertifications-mgcs-main-section {
    padding: 60px 0;
  }

  .Our-TieUpsCertifications-mgcs-certificates-section {
    padding: 60px 0;
  }

  .Our-TieUpsCertifications-mgcs-header-content {
    padding: 40px 25px;
  }

  .Our-TieUpsCertifications-mgcs-main-title {
    font-size: 2rem;
  }

  .Our-TieUpsCertifications-mgcs-section-title {
    font-size: 1.8rem;
  }

  .Our-TieUpsCertifications-mgcs-certificates-title {
    font-size: 1.8rem;
  }

  .Our-TieUpsCertifications-mgcs-recognition-item,
  .Our-TieUpsCertifications-mgcs-partnership-item {
    flex-direction: column;
    text-align: center;
  }

  .Our-TieUpsCertifications-mgcs-recognition-icon,
  .Our-TieUpsCertifications-mgcs-partnership-icon {
    margin-right: 0;
    margin-bottom: 15px;
    align-self: center;
  }

  .Our-TieUpsCertifications-mgcs-client-slider {
    flex-direction: column;
    align-items: center;
  }

  .Our-TieUpsCertifications-mgcs-single-certificate {
    flex: none;
    max-width: 300px;
  }

  .vision-mgcs-breadcrumb-section {
    min-height: 350px;
  }

  .vision-mgcs-breadcrumb-title {
    font-size: 2.5rem;
  }

  .vision-mgcs-breadcrumb-nav {
    text-align: center;
    margin-top: 25px;
  }

  .vision-mgcs-bread-list {
    justify-content: center;
    padding: 15px 20px;
  }

  .vision-mgcs-breadcrumb-content {
    text-align: center;
  }

  .vision-mgcs-hero-card {
    padding: 40px 25px;
  }

  .vision-mgcs-hero-title {
    font-size: 1.8rem;
  }

  .vision-mgcs-hero-stats {
    gap: 25px;
  }

  .vision-mgcs-stat-number {
    font-size: 2rem;
  }

  .vision-mgcs-mission-header {
    flex-direction: column;
    text-align: center;
  }

  .vision-mgcs-mission-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .vision-mgcs-highlight-box {
    flex-direction: column;
    text-align: center;
  }

  .vision-mgcs-main-image {
    height: 300px;
  }
  .objective-mgcs-title {
    font-size: 2rem;
  }

  .objective-mgcs-section-title {
    font-size: 1.5rem;
  }

  .objective-mgcs-main-card {
    padding: 25px 20px;
  }

  .objective-mgcs-main-image {
    height: 250px;
  }

  .objective-mgcs-floating-stats {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 20px;
    text-align: center;
  }

  .objective-mgcs-approach-tabs {
    flex-direction: column;
    gap: 5px;
  }

  .objective-mgcs-conclusion-content h3 {
    font-size: 1.8rem;
  }

  .our-partner-mgcs-connection {
    margin: 20px 0;
  }

  .our-partner-mgcs-connection-line {
    width: 60px;
    height: 4px;
  }

  .our-partner-mgcs-title {
    font-size: 2rem;
  }

  .our-partner-mgcs-simple-card {
    height: 380px;
    margin-bottom: 30px;
  }

  .our-partner-mgcs-image-container {
    height: 220px;
  }

  .our-partner-mgcs-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .our-partner-mgcs-btn {
    width: 200px;
    justify-content: center;
  }

  .our-services-MGCS__hero .container {
    padding: 0 10px;
  }
  .our-services-MGCS__hero {
    padding: 60px 0;
    text-align: center;
  }

  .our-services-MGCS__hero-title {
    font-size: 2.5rem;
  }

  .our-services-MGCS__hero-subtitle {
    font-size: 1.4rem;
  }

  .our-services-MGCS__hero-stats {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .our-services-MGCS__hero-stats .stat-item {
    width: 100%;
    max-width: 200px;
  }

  .our-services-MGCS__hero-image {
    height: 300px;
    margin-top: 40px;
  }

  .floating-elements .element {
    width: 50px;
    height: 50px;
  }

  .floating-elements .element i {
    font-size: 1.2rem;
  }

  .our-services-MGCS__section-title {
    font-size: 2.2rem;
  }

  .our-services-MGCS__service-card {
    padding: 30px 20px;
    margin-bottom: 30px;
  }

  .our-services-MGCS__explore {
    padding: 60px 0;
  }

  .about-us-MGCS-title {
    font-size: 2rem;
  }

  .about-us-MGCS-section-title {
    font-size: 1.5rem;
  }

  .about-us-MGCS-main-image {
    height: 250px;
  }

  .about-us-MGCS-intro-card,
  .about-us-MGCS-role-banner,
  .about-us-MGCS-conclusion-card {
    padding: 20px;
  }

  .about-us-MGCS-feature-card {
    padding: 20px;
    margin-bottom: 20px;
  }
  .notice-mgcs-main-section {
    padding: 40px 0;
  }

  .notice-mgcs-single-certificate-container {
    padding: 20px;
  }

  .notice-mgcs-certificate-image-wrapper {
    height: 250px;
  }

  .notice-mgcs-certificate-info-bar {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .notice-mgcs-certificate-controls {
    flex-direction: column;
    gap: 15px;
  }

  .notice-mgcs-cert-autoplay-controls {
    flex-direction: column;
    gap: 10px;
  }

  .notice-mgcs-cert-progress {
    width: 100%;
  }

  .notice-mgcs-notice-item {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .notice-mgcs-notice-title {
    font-size: 26px;
    margin-top: -54px;
  }
  .notice-mgcs-notice-icon {
    height: 48px;
    width: 48px;
  }
  .notice-mgcs-notice-badge {
    font-size: 11px;
  }
  .notice-mgcs-notice-date {
    width: 39px;
  }
  .notice-mgcs-notice-heading {
    text-align: justify;
  }
  .our-courses-mgcs-main-section {
    padding: 23px 0 !important;
  }
  .notice-mgcs-notice-header {
    padding: 13px !important;
  }

  .about-us-MGCS-intro-card h4 {
    font-size: 23px;
  }
  .ourgallery-mgcs-main-title {
    font-size: 2rem;
  }

  .ourgallery-mgcs-filter-btn {
    width: 100%;
    justify-content: center;
    outline: none !important;
  }

  .ourgallery-mgcs-image-overlay {
    padding: 20px;
  }

  .ourgallery-mgcs-modal-content {
    margin: 5% 3%;
    max-width: 94%;
    margin-top: 105px;
  }
  .Our-TieUpsCertifications-mgcs-certificates-section {
    padding: 30px 0 !important;
  }
  .our-courses-mgcs-main-title {
    font-size: 2rem;
    margin-top: -60px !important;
  }

  .our-courses-mgcs-course-card {
    height: auto;
  }
  .about-us-MGCS-intro-card p,
  .about-us-MGCS-conclusion-card p {
    font-size: 15px;
  }
  .our-courses-mgcs-card-inner {
    padding: 20px;
  }

  .our-courses-mgcs-card-title {
    font-size: 26px;
  }
  .our-courses-mgcs-load-more-section {
    margin-top: -31px;
  }
  .our-courses-mgcs-load-more-btn,
  .our-courses-mgcs-show-less-btn {
    font-size: 14px;
  }
  .our-courses-mgcs-card-description {
    font-size: 15px;
  }

  .about-us-MGCS {
    padding: 3rem 0;
  }

  .about-us-MGCS-main-icon {
    font-size: 2rem;
  }

  .about-us-MGCS-title {
    font-size: 32px;
  }
  .about-us-MGCS-subtitle {
    font-size: 15px;
  }
  .about-us-MGCS-conclusion-icon {
    width: 70px;
    height: 70px;
  }

  .about-us-MGCS-conclusion-icon i {
    font-size: 2rem;
  }
  .ourgallery-mgcs-main-section {
    padding: 30px 0 !important;
  }
  .our-services-MGCS__hero-title {
    font-size: 45px;
  }
  .our-services-MGCS__hero {
    padding: 30px 0;
  }
  .our-services-MGCS__hero-subtitle {
    font-size: 18px;
  }
  .our-services-MGCS__hero-stats .number {
    font-size: 20px;
  }
  .our-services-MGCS__hero-stats .label {
    font-size: 13px;
  }
  .our-services-MGCS__hero-desc,
  .our-services-MGCS__card-desc {
    font-size: 15px;
  }
  .our-services-MGCS__section-title {
    font-size: 32px;
  }
  .our-services-MGCS__section-desc {
    font-size: 15px;
    margin: 0;
    text-align: justify;
  }
  .our-services-MGCS__service-card {
    padding: 25px 15px;
  }

  .our-services-MGCS__hero-stats {
    gap: 10px;
  }

  .our-services-MGCS__hero-image {
    height: 250px;
  }

  .floating-elements .element {
    width: 40px;
    height: 40px;
  }

  .floating-elements .element i {
    font-size: 1rem;
  }

  .our-partner-mgcs {
    padding: 40px 0;
  }

  .our-partner-mgcs-stats-container,
  .our-partner-mgcs-cta-card {
    padding: 25px 20px;
  }

  .our-partner-mgcs-simple-card {
    height: 360px;
  }

  .our-partner-mgcs-image-container {
    height: 200px;
  }

  .objective-mgcs {
    padding: 40px 0;
  }

  .objective-mgcs-point-card,
  .objective-mgcs-approach-card {
    padding: 20px;
    margin-bottom: 20px;
  }

  .objective-mgcs-conclusion-banner {
    padding: 30px 20px;
  }

  .objective-mgcs-conclusion-icon {
    width: 80px;
    height: 80px;
  }

  .objective-mgcs-conclusion-icon i {
    font-size: 2rem;
  }

  .vision-mgcs-main-section {
    padding: 60px 0;
  }

  .vision-mgcs-hero-intro {
    margin-bottom: 60px;
  }

  .vision-mgcs-content-section {
    margin-bottom: 60px;
  }

  .vision-mgcs-partners-section {
    padding: 60px 0;
  }

  .vision-mgcs-breadcrumb-title {
    font-size: 2rem;
    position: relative;
    top: -23px;
  }

  .vision-mgcs-breadcrumb-subtitle {
    font-size: 1rem;
    margin-top: -22px;
  }

  .vision-mgcs-breadcrumb-icon {
    width: 70px;
    height: 70px;
    position: relative;
    top: 4px;
  }
  .vision-mgcs-ring-1 {
    width: 114px;
    height: 114px;
    top: -54px;
    left: -60px;
  }
  .vision-mgcs-ring-2 {
    width: 136px;
    height: 136px;
    top: -66px;
    left: -72px;
  }
  .vision-mgcs-breadcrumb-icon i {
    font-size: 28px;
  }

  .vision-mgcs-hero-title {
    font-size: 1.6rem;
  }

  .vision-mgcs-content-title {
    font-size: 32px;
    text-align: center;
  }

  .vision-mgcs-partners-title {
    font-size: 1.8rem;
  }

  .Our-TieUpsCertifications-mgcs-main-title {
    font-size: 1.8rem;
  }

  .Our-TieUpsCertifications-mgcs-section-title,
  .Our-TieUpsCertifications-mgcs-certificates-title {
    font-size: 32px;
  }
  .Our-TieUpsCertifications-mgcs-cert-title {
    font-size: 26px;
  }

  .Our-TieUpsCertifications-mgcs-info-card {
    padding: 30px 20px;
  }

  .Our-TieUpsCertifications-mgcs-cert-card {
    padding: 25px 20px;
  }
  .notice-mgcs-section-title {
    font-size: 32px;
  }
  .mgcs-banner-slider-section {
    height: 280px;
    min-height: 280px;
  }
  .mgcs-banner-slider-navigation {
    display: none !important;
  }
  .mgcs-banner-slide-title {
    font-size: 1.4rem;
  }
  .notice-mgcs-certificate-badge {
    padding: 8px 18px;
    font-size: 12px;
  }
  .mgcs-banner-slide-badge {
    padding: 8px 15px;
    font-size: 11px;
    margin-bottom: 10px;
    margin-top: -60px;
  }
  .notice-mgcs-certificate-controls {
    display: ruby;
    margin-left: 74px;
  }
  .mgcs-banner-slide-description {
    font-size: 0.8rem;
    margin-bottom: 15px;
    -webkit-line-clamp: 2;
  }

  .mgcs-banner-btn {
    padding: 8px 15px;
    font-size: 11px;
  }
  .mgcs-banner-slide-text {
    margin-top: -36px !important;
  }

  .mgcs-banner-slider-pagination {
    bottom: 15px;
  }
  .notice-mgcs-header-badge {
    padding: 9px 25px;
    font-size: 12px;
  }
  .notice-mgcs-current-cert-number {
    font-size: 12px;
  }
  .notice-mgcs-total-cert-number {
    font-size: 12px;
  }
  .notice-mgcs-cert-nav-btn {
    width: 35px;
    height: 35px;
  }
  .Our-TieUpsCertifications-mgcs-client-slider {
    display: block;
    margin-left: 10px;
  }
  .vision-mgcs-breadcrumb-section {
    min-height: 250px;
  }
  .vision-mgcs-bread-list {
    padding: 6px;
  }
  .vision-mgcs-bread-list li a {
    font-size: 10px;
  }
  .vision-mgcs-bread-list li.active {
    font-size: 10px;
  }
  .vision-mgcs-breadcrumb-nav {
    margin-top: 20px;
  }
  .Our-TieUpsCertifications-mgcs-recognition-text p,
  .Our-TieUpsCertifications-mgcs-partnership-text p,
  .objective-mgcs-intro-content p,
  .objective-mgcs-point-content p,
  .objective-mgcs-approach-body p,
  .objective-mgcs-conclusion-content p,
  .objective-mgcs-conclusion-stat p,
  .about-us-MGCS-card-body p,
  .about-us-MGCS-feature-card p {
    font-size: 15px;
  }
  .objective-mgcs-benefit,
  .vision-mgcs-hero-description,
  .vision-mgcs-mission-text,
  .about-us-MGCS-role-subtitle,
  .Our-TieUpsCertifications-mgcs-cert-text {
    font-size: 15px;
  }
  .objective-mgcs-intro-content h3 {
    font-size: 26px;
  }
  .vision-mgcs-stat-number {
    font-size: 26px;
  }
  .objective-mgcs-highlight-item,
  .vision-mgcs-highlight-text {
    font-size: 15px;
  }
  .vision-mgcs-mission-title,
  .vision-mgcs-highlight-title,
  .about-us-MGCS-role-title {
    font-size: 25px;
  }
  .objective-mgcs-section-title,
  .vision-mgcs-hero-title,
  .about-us-MGCS-section-title,
  .Our-TieUpsCertifications-mgcs-card-title {
    font-size: 32px;
  }
  .objective-mgcs-conclusion-content h3 {
    font-size: 32px;
  }
  .vision-mgcs-stat-label {
    font-size: 12px;
  }
  .Our-TieUpsCertifications-mgcs-recognition-text h5,
  .Our-TieUpsCertifications-mgcs-partnership-text h5 {
    font-size: 20px;
  }
  .objective-mgcs-point-content h4,
  .objective-mgcs-approach-header h4,
  .objective-mgcs-conclusion-stat h4,
  .about-us-MGCS-card-header h5,
  .about-us-MGCS-feature-card h5 {
    font-size: 25px;
  }
  .vision-mgcs-hero-icon-circle {
    width: 90px;
    height: 90px;
  }
  .vision-mgcs-section-badge {
    font-size: 12px;
    margin-left: 62px;
  }
  .vision-mgcs-image-frame {
    margin-bottom: -75px !important;
  }
  .Our-TieUpsCertifications-mgcs-certificates-badge {
    font-size: 12px;
    padding: 10px 30px;
  }
  .about-us-MGCS-role-badge {
    font-size: 12px;
    padding: 7px 25px;

    margin-top: 4px;
  }
  .about-us-MGCS-feature-icon {
    height: 70px;
    width: 70px;
  }
  .about-us-MGCS-conclusion {
    padding: 0;
  }
  .Our-TieUpsCertifications-mgcs-additional-section {
    margin-bottom: -20px;
  }
}
