body {
  margin-top: 4;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.navbar {
  background-color: white;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 20;
  box-shadow: 0 4px 6px #0000001a;
}

.navbar-container {
  max-width: 1200px;
  margin: auto;
  padding: 4pt;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.odel-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 70%;
}

.logo-texts {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.mut-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #b2d27f;
  margin: 0;
}

.odel-subtitle {
  font-size: 1.5rem;
  align-items: center;
  font-weight: bold;
  color: #b2d27f;
  margin: 0;
}

.nav-links {
  display: none;
  gap: 1.5rem;
}

.nav-links a,
.dropdown-toggle {
  color: #0f172a;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

.nav-links a:hover,
.dropdown-toggle:hover {
  color: #9b0000;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  min-width: 200px;
  background: white;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  z-index: 100;
  padding: 0.5rem 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  color: #0f172a;
}

.dropdown-menu a:hover {
  background-color: #f0f0f0;
  color: #9b0000;
}

.mobile-toggle {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #0f172a;
  display: block;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: white;
  padding: 1rem;
}

.mobile-menu a {
  padding: 0.5rem 0;
  text-decoration: none;
  color: #0f172a;
}

.mobile-dropdown {
  margin-top: 1rem;
}

.mobile-dropdown-menu {
  display: none;
  flex-direction: column;
  margin-top: 0.5rem;
  padding-left: 1rem;
}

.mobile-dropdown-menu a {
  padding: 0.3rem 0;
}

.mobile-dropdown-toggle {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1rem;
  font-weight: 400;
  color: #0f172a;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .mobile-toggle,
  .mobile-menu {
    display: none;
  }
}

.mobile-menu a:hover,
.mobile-dropdown-toggle:hover {
  color: #9b0000;
}

.show {
  display: flex;
}

.hero-bg {
  background-image: url("images/mbil.365Z.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* Make it fill the full viewport height but adjust for mobile */
  min-height: 100vh;

  /* Keep content centered vertically */
  display: flex;
  align-items: center;

  /* On large screens center horizontally, but on small keep text aligned */
  justify-content: center;

  /* Slight overlay for better text visibility */
  position: relative;
}


.gradient-text {
  background: linear-gradient(
    -45deg,
    #b2d27f,
    #2563eb,
    #b2d27f,
    #2563eb,
    #b2d27f
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientAnimation 5s ease infinite;
  display: inline-block;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.blur-animate {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(20px);
  animation: blurIn 1.5s ease-out forwards;
  animation-delay: 0.2s;
}

@keyframes blurIn {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.course-card {
  transition: all 0.3s ease;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px #2563eb, 0 10px 10px -5px #2563eb;
}

.stat-card {
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: linear-gradient(145deg, #e6f3e7, #ffffff);
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
}

.floating-icons {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
}

.floating-icon {
  position: absolute;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
  top: 20%;
  left: 5%;
  font-size: 3rem;
  animation-delay: 0s;
}

.floating-icon:nth-child(2) {
  top: 60%;
  left: 15%;
  font-size: 2.5rem;
  animation-delay: 1s;
}

.floating-icon:nth-child(3) {
  top: 30%;
  right: 10%;
  font-size: 4rem;
  animation-delay: 2s;
}

.floating-icon:nth-child(4) {
  top: 70%;
  right: 5%;
  font-size: 3rem;
  animation-delay: 3s;
}

.testimonial-card {
  transition: all 0.3s ease;
  perspective: 1000px;
}

.testimonial-card:hover {
  transform: translateY(-5px) scale(1.02);
}

.testimonial-inner {
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.testimonial-card:hover .testimonial-inner {
  transform: rotateY(10deg);
}

.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  background-color: #0279bc;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.scroll-top.visible {
  opacity: 1;
}

.scroll-top:hover {
  background-color: #9b0000;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .floating-icons {
    display: none;
  }
}

.footer {
  background-color: #b2d27f;
  color: #9b0000;
  padding-top: 2rem;
  margin-top: 1rem;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.footer h3,
.footer h4 {
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer p {
  color: #9b0000;
  margin-bottom: 1rem;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 0.5rem;
}

.footer a {
  color: #9b0000;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
}

.footer a:hover {
  color: #9b0000;
  transform: scale(1.05);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a i {
  font-size: 1.2rem;
}

/* Contact icons spacing */
.contact-info li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.footer-bottom {
  border-top: 1px solid #2e2e2e;
  margin-top: 2rem;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-links a {
  margin: 0 0.75rem;
  font-size: 0.9rem;
}

/* Animations */
.animate-fade-in {
  opacity: 0;
  animation: fadeIn 1s forwards;
}

.delay-01s {
  animation-delay: 0.1s;
}
.delay-02s {
  animation-delay: 0.2s;
}
.delay-03s {
  animation-delay: 0.3s;
}
.delay-04s {
  animation-delay: 0.4s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* ====== Overall Layout ====== */
.olx-layout {
  display: flex;
  flex-direction: row;
  align-items: flex-start; /* Align both columns from the top */
  width: 100%;
  background-color: #fff;
  box-sizing: border-box;
}

/* ====== Sidebar (Left Column) ====== */
.olx-sidebar {
  flex: 0 1 auto; /* Width determined by content */
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-right: 1px solid #ddd;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.05);
  padding: 12px;
  box-sizing: border-box;
}

/* ====== Menu Items ====== */
.olx-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.olx-menu-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background-color: #3b5bd1;
  color: white;
  font-weight: 500;
  font-size: 15px;
  padding: 14px 18px;
  border: none;
  margin-bottom: 6px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 50px;
}

.olx-menu-item:hover {
  background-color: #2f49aa;
}

.olx-menu-item.olx-active {
  background-color: #b2d27f;
  color: #333;
  font-weight: 600;
}

/* ====== Content Area (Right Column) ====== */
.olx-content {
  flex: 1; /* Takes remaining space */
  background-color: white;
  padding: 12px 30px 20px 30px; /* Top padding matches sidebar */
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: auto;     
  min-height: auto;
}

.olx-content-section {
  display: none;
}

.olx-content-section.olx-active {
  display: block;
}

.olx-content-section h2 {
  color: #202124;
  margin-top: 0;
  font-size: 22px;
}

.olx-content-section p {
  color: #444;
  line-height: 1.6;
}

/* ====== Responsive Design ====== */
@media (max-width: 768px) {
  .olx-layout {
    flex-direction: column;
  }

  .olx-sidebar {
    width: 100%;
    border-right: none;
    box-shadow: none;
    border-bottom: 1px solid #ddd;
  }

  .olx-content {
    width: 100%;
    padding: 16px;
  }
}
/* --- Collapsible Content Styling --- */
.olx-collapse {
  margin-top: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  background-color: #f9f9f9;
}

.olx-collapse-btn {
  width: 100%;
  background-color: #3b5bd1;
  color: #fff;
  padding: 14px 18px;
  text-align: left;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.olx-collapse-btn:hover {
  background-color: #2f49aa;
}

.olx-collapse-btn.active {
  background-color: #b2d27f;
  color: #333;
  font-weight: 600;
}

.olx-collapse-content {
  display: none;
  padding: 15px 20px;
  background-color: #fff;
}

.olx-collapse-content ul {
  margin: 0;
  padding-left: 20px;
  list-style: disc;
}

.olx-collapse-content li {
  margin-bottom: 6px;
  line-height: 1.6;
}
/* === OLX CONTENT STYLING FOR TEXT SECTIONS === */
.olx-content-section {
  display: none;
  color: #333;
  line-height: 1.7;
  font-size: 16px;
}

.olx-content-section.olx-active {
  display: block;
}

/* Headings inside content */
.olx-content-section h2 {
  color: #1a1a1a;
  font-size: 22px;
  margin-bottom: 12px;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 6px;
}

.olx-content-section h3 {
  color: #2b3d91; /* blue to match site theme */
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* === ICONS BEFORE HEADINGS === */

/* Tip Block */
.olx-tip {
  background-color: #f7faff;
  border-left: 4px solid #3b5bd1;
  padding: 10px 14px;
  border-radius: 4px;
  margin: 14px 0;
  font-style: italic;
}

.olx-tip::before {
  content: "💡 ";
  font-style: normal;
  margin-right: 6px;
}

/* Links (if any) */
.olx-content-section a {
  color: #3b5bd1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.olx-content-section a:hover {
  color: #2f49aa;
}
.accordion {
  border-radius: 8px;
  overflow: hidden;
  margin-top: 1rem;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
  background: #fff;
}

.accordion-header {
  background-color: #0279bc;
  color: white;
  font-weight: 600;
  padding: 1rem;
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s;
}

.accordion-header:hover {
  background-color: #9b0000;
}

.accordion-content {
  display: none;
  padding: 1rem;
  background: #f9f9f9;
  line-height: 1.6;
}

.accordion-item.active .accordion-content {
  display: block;
}

.accordion-item.active .accordion-header {
  background-color: #274bb0;
}
.olx-button-container {
  margin-top: 1rem;
}

.olx-button {
  display: inline-block;
  background-color: #004aad; /* MUT blue */
  color: #ffffff !important; /* Ensure text stays white */
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.olx-button:hover {
  background-color: #00357a; /* Darker blue on hover */
  transform: translateY(-2px);
  color: #ffffff !important;
}

.olx-button:active {
  background-color: #002b63; /* Even darker on click */
  transform: translateY(0);
  color: #ffffff !important;
}
/* === Academic Advising Section Styling === */
.olx-advisors-container {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.olx-advisor-card {
  background-color: #f9f9f9;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  padding: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.olx-advisor-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.olx-advisor-card h4 {
  color: #3b5bd1;
  margin-bottom: 8px;
}

.olx-advisor-card p {
  color: #444;
  margin: 0;
  line-height: 1.5;
}

.olx-advisor-card a {
  color: #9b0000;
  text-decoration: none;
}

.olx-advisor-card a:hover {
  text-decoration: underline;
}

.olx-content-section h2 i, 
.olx-content-section h3 i {
  color: #0056b3;
  margin-right: 8px;
}

.clean-list {
  list-style-type: none; /* Removes browser bullets */
  padding-left: 0;
}

.clean-list li {
  margin-bottom: 8px;
  background: #f9fafc;
  border-left: 4px solid #0056b3;
  padding: 10px 15px;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.clean-list li:hover {
  background: #eef4fb;
}
/* Flex container for form + contact info */
.contact1-flex-container {
  display: flex;
  flex-wrap: wrap; 
  gap: 20px;       /* reduced space between form and card */
  justify-content: center;
  align-items: flex-start;
  max-width: 1000px; /* optional: limit overall width */
  margin: 0 auto;    /* center the whole flex container */
}

/* Google Form styling */
.google-form-container {
  flex: 1 1 590px;  /* slightly smaller min-width */
  max-width: 630px; /* limits extra wide screens */
  border: 2px solid #3b5bd1;
  border-radius: 10px;
  background: #fff;
}

.google-form-container iframe {
  width: 100%;
  min-height: 1000px;
  border: none;
}

/* Contact info card styling */
.contact1-info-card {
  flex: 0 1 370px;  /* slightly smaller */
  max-width: 370px;
  background: #ffffff;
  border: 2px solid #3b5bd1;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Responsive tweaks remain the same */
@media (max-width: 1024px) {
  .contact1-flex-container {
    flex-direction: column;
    align-items: center;
  }

  .contact1-info-card {
    width: 100%;
    text-align: center;
  }

  .contact1-info-card li {
    justify-content: center;
  }
}




