/*
Theme Name: EBL Theme
Theme URI: 
Author: Webxdevelop
Author URI: 
Description: Custom WordPress theme for EBL
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ebl-theme
*/

/* Import your existing CSS files here */ 

/* Global styles */
:root {
    --primary-color: #ae3f00 !important; /* Maroon from new image */
    --primary-rgb: 106, 44, 49;
    --secondary-color: #a9ae09; /* Tan/Khaki from new image SVG */
    --dark-color: #9c4b08; /* Darker Maroon for text/elements */
    --light-color: #FDFBF8; /* Very Light Cream from new image background */
    --gray-color: #A18C79; /* Warmer gray */
    --footer-color: #4A2023; /* Dark Maroon for footer, matching new image */
    --text-color: #5A2023; /* Maroonish for general text */
    --light-gray: #EAE0D3; /* Lighter version of secondary, for light gray needs */
    --font-primary: "Roboto", sans-serif;
    --font-secondary: "Open Sans", sans-serif;
  }

  .elementor-edit-area-active .e-con {
    --primary-color: #ae3f00 !important; /* Your primary color */
    --secondary-color: #aa9d49 !important;
    --outline-color: #dee2e6 !important;
}
  
  body {
    font-family: "Open Sans", "Roboto", "Helvetica Neue", sans-serif;
    color: var(--dark-color);
    overflow-x: hidden;
    background-color: var(--light-color);
  }
  
  /* Header styles */
  .header {
    position: fixed;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    padding-top: 62px;
    transition: all 0.5s ease;
    top: 0;
    background-color: transparent;
  }
  
  .header.scrolled {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    width: 100%;
    z-index: 100; /* Ensure it's above other content */
    background-color: rgba(47, 46, 60, 0.7) !important; /* Existing value */
    backdrop-filter: blur(5px); /* Existing value */
    -webkit-backdrop-filter: blur(5px); /* Existing value */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); /* Existing value */
    padding-top: 10px; /* Slimmer padding for fixed state */
    padding-bottom: 10px; /* Slimmer padding for fixed state */
    animation: slideDown 0.5s ease forwards;
  }
  
  .header.scrolled .ebl-hero-pattern-and-header-bg {
    display: none;
  }
  
  @keyframes slideDown {
    from {
      transform: translateY(-100%);
    }
    to {
      transform: translateY(0);
    }
  }
  
  .logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--light-color);
  }
  
  .logo-circle {
    color: var(--primary-color);
    position: relative;
  }
  
  .logo-circle::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    top: -2px;
    right: -5px;
    z-index: -1;
  }
  
  .navbar {
    padding: 0;
  }
  
  .navbar-dark .navbar-nav .nav-link {
    color: var(--light-color);
    font-weight: 500;
    padding: 0 15px;
    font-size: 16px;
    position: relative;
    transition: color 0.3s ease;
  }
  
  .navbar-dark .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    opacity: 0;
  }
  
  .navbar-dark .navbar-nav .nav-link:hover {
    color: var(--primary-color);
  }
  
  .navbar-dark .navbar-nav .nav-link:hover::after {
    width: calc(100% - 30px);
    opacity: 1;
  }
  
  .navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary-color);
  }
  
  .navbar-dark .navbar-nav .nav-link.active::after {
    width: 100%
    opacity: 1;
  }
  
  /* Add a subtle glow effect on hover */
  .navbar-dark .navbar-nav .nav-link:hover {
    text-shadow: 0 0 10px rgba(var(--primary-rgb), 0.3);
  }
  
  /* Add scale effect for active page */
  .navbar-dark .navbar-nav .nav-item {
    transform: translateY(0);
    transition: transform 0.3s ease;
  }
  
  .navbar-dark .navbar-nav .nav-item:hover {
    transform: translateY(-2px);
  }
  
  .btn-start {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    border-radius: 30px;
    padding: 8px 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .btn-start:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
  }
  
  /* Hero Section */
  .hero-section {
    min-height: 776px;
    height: 100vh;
    background-size: cover !important;
    background-position: center !important;
    background-color: var(--secondary-color); /* Fallback if image is missing */
    color: var(--light-color);
    position: relative;
    display: flex;
    align-items: center;
    padding-bottom: 70px; /* Add padding to accommodate the wave */
  }
  
  .hero-content {
    padding-top: 120px;
    padding-bottom: 50px;
  }
  
  .tagline {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 30px;
    margin-bottom: 30px;
    position: relative;
  }
  
  .hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
  }
  
  .hero-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
  }
  
  .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .hero-btn {
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .btn-primary.hero-btn {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
  }
  
  .btn-primary.hero-btn:hover {
    background-color: #ca6d22;
    border-color: #ca6d22;
  }
  
  .btn-outline-secondary.hero-btn {
    color: var(--light-color);
    border-color: rgba(255, 255, 255, 0.3);
    background-color: transparent;
  }
  
  .btn-outline-secondary.hero-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
  }
  
  /* Animated wave at the bottom */
  .shape-image-animation {
    position: absolute;
    bottom: -1px;
    left: 0;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
  }
  
  .shape-image-animation svg {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
  }
  
  /* Welcome Section - Καινοτόμο ΠΜΣ */
  .welcome-section {
    background-color: var(--light-color);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
  }
  
  /* Badge Image Holder */
  .welcome-badge {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    position: relative;
  }
  
  .welcome-badge-holder {
    position: relative;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    padding: 15px;
    /* Updated gradient to use primary color and a slightly darker shade or secondary if appropriate */
    background: linear-gradient(135deg, var(--primary-color) 0%, color-mix(in srgb, var(--primary-color) 70%, black) 100%); 
    box-shadow: 0 15px 35px rgba(var(--primary-rgb, 106, 44, 49), 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulseGlow 2s infinite;
  }
  
  .welcome-badge-holder::before {
    content: '';
    position: absolute;
    inset: 8px;
    background: white; /* Or var(--light-color) if white is too stark */
    border-radius: 50%;
    z-index: 0;
  }
  
  .welcome-badge-holder img {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: contain;
    z-index: 1;
    transition: transform 0.3s ease;
  }
  
  .welcome-badge-holder:hover img {
    transform: scale(1.05);
  }
  
  .welcome-badge-holder::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    /* Updated gradient for the glow effect */
    background: linear-gradient(135deg, rgba(var(--primary-rgb, 106, 44, 49), 0.5) 0%, rgba(var(--primary-rgb, 106, 44, 49), 0.3) 100%);
    filter: blur(15px);
    z-index: -1;
    opacity: 0.5;
    transform: translateY(10px) scale(0.9);
  }
  
  @keyframes pulseGlow {
    0% {
      box-shadow: 0 15px 35px rgba(var(--primary-rgb, 106, 44, 49), 0.2);
    }
    50% {
      box-shadow: 0 15px 35px rgba(var(--primary-rgb, 106, 44, 49), 0.4);
    }
    100% {
      box-shadow: 0 15px 35px rgba(var(--primary-rgb, 106, 44, 49), 0.2);
    }
  }
  
  /* Responsive styles for badge */
  @media (max-width: 992px) {
    .welcome-badge-holder {
      width: 160px;
      height: 160px;
    }
    
    .welcome-badge-holder img {
      width: 130px;
      height: 130px;
    }
  }
  
  @media (max-width: 768px) {
    .welcome-badge {
      margin-top: 30px;
    }
    
    .welcome-badge-holder {
      width: 140px;
      height: 140px;
    }
    
    .welcome-badge-holder img {
      width: 110px;
      height: 110px;
    }
  }
  
  .welcome-image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .welcome-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    border-radius: 10px;
  }
  
  .welcome-image-wrapper:hover .welcome-image {
    transform: scale(1.05);
  }
  
  .image-shape-decoration {
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: var(--primary-color);
    opacity: 0.1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    bottom: -40px;
    left: -40px;
    z-index: -1;
    animation: morphShape 8s ease-in-out infinite;
  }
  
  @keyframes morphShape {
    0% {
      border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    50% {
      border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
    100% {
      border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
  }
  
  .welcome-content {
    padding-left: 20px;
  }
  
  .welcome-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    background-color: rgba(var(--primary-rgb), 0.1);
    padding: 8px 15px;
    border-radius: 30px;
    margin-bottom: 30px;
    color: var(--primary-color);
    position: relative;
  }
  
  .welcome-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
  }
  
  .title-separator {
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin-bottom: 25px;
  }
  
  .welcome-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-color);
    margin-bottom: 20px;
  }
  
  .welcome-btn {
    margin-top: 10px;
    padding: 12px 28px;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 500;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
  }
  
  .welcome-btn:hover {
    background-color: #ca6d22;
    border-color: #ca6d22;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(62, 102, 251, 0.2);
  }
  
  /* Responsive styles */
  @media (max-width: 992px) {
    .hero-title {
      font-size: 42px;
    }
  
    .navbar-dark .navbar-nav .nav-link {
      padding: 10px 0;
    }
  
    .btn-start {
      margin-top: 15px;
      display: inline-block;
    }
  
    .shape-image-animation svg {
      height: auto;
      width: 200%;
    }
  
    .welcome-section {
      padding: 70px 0;
    }
  
    .welcome-content {
      padding-left: 0;
      margin-top: 30px;
    }
  
    .welcome-title {
      font-size: 34px;
    }
  
    .accordion-tabs .nav-link {
      padding: 20px 15px;
    }
  }
  
  @media (max-width: 768px) {
    .hero-title {
      font-size: 36px;
    }
  
    .hero-buttons {
      flex-direction: column;
    }
  
    .hero-btn {
      width: 100%;
    }
  
    .shape-image-animation svg {
      width: 300%;
      transform: translateX(-30%);
    }
  
    .welcome-title {
      font-size: 30px;
    }
  
    .welcome-btn {
      width: 100%;
    }
  
    .accordion-tabs .nav-tabs {
      flex-wrap: wrap;
    }
  
    .accordion-tabs .nav-link {
      padding: 15px 10px;
      flex: 0 0 50%; /* On mobile, make tabs take half width each */
    }
  }
  
  @media (max-width: 576px) {
    .shape-image-animation svg {
      width: 400%;
      transform: translateX(-40%);
    }
  
    .welcome-section {
      padding: 50px 0;
    }
  
    .welcome-subtitle {
      font-size: 14px;
    }
  
    .welcome-title {
      font-size: 28px;
    }
  
    .accordion-tabs .nav-link {
      flex: 0 0 100%; /* On very small screens, make tabs full width */
    }
  }
  
  /* Footer */
  .footer {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 80px 0 0;
    position: relative;
  }
  
  .footer-content {
    padding-bottom: 50px;
  }
  
  .footer-logo {
    display: block;
    margin-bottom: 30px;
  }
  
  .footer-logo-img {
    max-height: 80px;
    width: auto;
    transition: opacity 0.3s ease;
  }
  
  .footer-logo:hover .footer-logo-img {
    opacity: 0.9;
  }
  
  .footer-info {
    margin-bottom: 25px;
  }
  
  .footer-text {
    color: rgba(248, 249, 250, 0.7);
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 15px;
  }
  
  .social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 25px;
  }
  
  .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    font-size: 16px;
    transition: all 0.3s ease;
  }
  
  .social-icon:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-3px);
  }
  
  .footer-heading {
    color: var(--light-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
  }
  
  .footer-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
  }
  
  .footer-links,
  .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links li,
  .footer-contact li {
    margin-bottom: 15px;
    display: flex;
  }
  
  .footer-links a {
    color: rgba(248, 249, 250, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    display: flex;
    align-items: center;
  }
  
  .footer-links a i {
    margin-right: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
  }
  
  .footer-links a:hover {
    color: var(--primary-color);
  }
  
  .footer-links a:hover i {
    transform: translateX(3px);
  }
  
  .footer-contact li {
    display: flex;
    align-items: flex-start;
    color: rgba(248, 249, 250, 0.7);
    font-size: 15px;
  }
  
  .footer-contact li i {
    margin-right: 15px;
    color: #fff;
    font-size: 18px;
    margin-top: 5px;
  }
  
  .footer-contact li div {
    flex: 1;
  }
  
  .footer-contact li p {
    margin-bottom: 5px;
  }
  
  .footer-contact li p:last-child {
    margin-bottom: 0;
  }
  
  .footer-subscribe .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--light-color);
    padding: 12px 15px;
    border-radius: 30px 0 0 30px;
  }
  
  .footer-subscribe .form-control::placeholder {
    color: rgba(248, 249, 250, 0.5);
  }
  
  .footer-subscribe .form-control:focus {
    box-shadow: none;
    background-color: rgba(255, 255, 255, 0.15);
  }
  
  .footer-subscribe .btn {
    border-radius: 0 30px 30px 0;
    padding: 0 20px;
  }
  
  .footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
  }
  
  .copyright {
    color: rgba(248, 249, 250, 0.6);
    font-size: 14px;
  }
  
  .footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
  }
  
  .footer-bottom-links a {
    color: rgba(248, 249, 250, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
  }
  
  .footer-bottom-links a:hover {
    color: var(--light-color);
  }
  
  @media (max-width: 991px) {
    .footer {
      padding: 60px 0 0;
    }
  
    .footer-content {
      padding-bottom: 30px;
    }
  }
  
  @media (max-width: 767px) {
    .footer-bottom-links {
      justify-content: flex-start;
      margin-top: 15px;
    }
  
    .footer-heading {
      margin-top: 30px;
    }
  
    .col-md-6:first-child .footer-heading {
      margin-top: 0;
    }
  }
  
  /* Accordion Section */
  .accordion-section {
    position: relative;
    background-color: var(--light-color);
    overflow: hidden;
  }
  
  .nav-pills {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
  }
  
  .nav-pills .nav-link {
    display: flex;
    align-items: center;
    padding: 1.25rem;
    margin-bottom: 0.75rem;
    border-radius: 8px;
    color: var(--secondary-color);
    transition: all 0.3s ease;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
  }
  
  .nav-pills .nav-link:last-child {
    margin-bottom: 0;
  }
  
  .nav-pills .nav-link .tab-icon {
    min-width: 45px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 8px;
    margin-right: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left:0;
  }
  
  .nav-pills .nav-link .tab-icon i {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-pills .nav-link span {
    font-weight: 500;
    font-size: 0.95rem;
    white-space: normal;
    line-height: 1.3;
  }
  
  .nav-pills .nav-link:hover {
    background: rgba(var(--primary-rgb), 0.05);
    transform: translateX(5px);
  }
  
  .nav-pills .nav-link.active {
    background: var(--primary-color);
    color: #fff;
  }
  
  .nav-pills .nav-link.active .tab-icon {
    background: rgba(255, 255, 255, 0.2);
  }
  
  .nav-pills .nav-link.active .tab-icon i {
    color: #fff;
  }
  
  .content-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
    height: 100%;
  }
  
  .content-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
  }
  
  .content-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
  }
  
  .content-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
  }
  
  .content-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16/9;
    transition: transform 0.3s ease;
  }
  
  .content-image-wrapper:hover img {
    transform: scale(1.02);
  }
  
  .content-body {
    color: #666;
  }
  
  .content-body h4 {
    color: var(--secondary-color);
    margin-top: 0.5rem;
  }
  
  @media (max-width: 991px) {
    .content-image-wrapper {
      margin-bottom: 0.75rem;
    }
  }
  
  @media (max-width: 767px) {
    .content-image-wrapper {
      margin-bottom: 0.5rem;
    }
    
    .content-image-wrapper img {
      aspect-ratio: 4/3;
    }
  }
  
  /* News Section - Τα Νέα του Μεταπτυχιακού */
  .news-section {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
  }
  
  .news-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    background-color: rgba(var(--primary-rgb), 0.1);
    padding: 8px 15px;
    border-radius: 30px;
    margin-bottom: 30px;
    color: var(--primary-color);
    position: relative;
  }
  
  .news-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    position: relative;
  }
  
  .news-slider-container {
    position: relative;
    margin-top: 30px;
  }
  
  .news-slider-nav {
    position: absolute;
    top: -70px;
    right: 15px;
    display: flex;
    gap: 10px;
    z-index: 10;
  }
  
  .slider-nav-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    background-color: #fff;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .slider-nav-button:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
  }
  
  .news-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 10px 5px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
  
  .news-item {
    flex: 0 0 auto;
    width: calc(33.333% - 20px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .news-card {
    background-color: var(--light-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  }
  
  .news-img-container {
    position: relative;
    overflow: hidden;
  }
  
  .news-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: all 0.5s ease;
  }
  
  .news-card:hover .news-img {
    transform: scale(1.08);
  }
  
  .news-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(62, 102, 251, 0.2);
  }
  
  .news-date {
    position: absolute;
    bottom: 0;
    right: 20px;
    background-color: var(--light-color);
    border-radius: 8px 8px 0 0;
    padding: 8px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(0);
    transition: all 0.3s ease;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.1);
  }
  
  .news-card:hover .news-date {
    transform: translateY(-5px);
  }
  
  .news-day {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
  }
  
  .news-month {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-color);
    text-transform: uppercase;
  }
  
  .news-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  
  .news-item-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1.4;
    transition: all 0.3s ease;
  }
  
  .news-card:hover .news-item-title {
    color: var(--primary-color);
  }
  
  .news-excerpt {
    color: var(--gray-color);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
  }
  
  .news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
  }
  
  .news-read-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  
  .news-read-more i {
    font-size: 12px;
    transition: all 0.3s ease;
  }
  
  .news-read-more:hover {
    color: var(--secondary-color);
  }
  
  .news-read-more:hover i {
    transform: translateX(3px);
  }
  
  .news-author {
    color: var(--gray-color);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  
  .news-author i {
    color: var(--primary-color);
    font-size: 13px;
  }
  
  .slider-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
  }
  
  .slider-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .slider-pagination-bullet.active {
    background-color: var(--primary-color);
    transform: scale(1.3);
  }
  
  /* Responsive Styles */
  @media (max-width: 1200px) {
    .news-item {
      width: calc(50% - 15px);
    }
  }
  
  @media (max-width: 992px) {
    .news-section {
      padding: 80px 0;
    }
  
    .news-title {
      font-size: 32px;
    }
  
    .news-slider-nav {
      top: -60px;
    }
  }
  
  @media (max-width: 767px) {
    .news-section {
      padding: 60px 0;
    }
  
    .news-title {
      font-size: 28px;
    }
  
    .news-item {
      width: calc(100% - 10px);
    }
  
    .news-slider-nav {
      position: relative;
      top: 0;
      right: 0;
      justify-content: center;
      margin-top: 20px;
    }
  
    .news-img {
      height: 200px;
    }
  
    .slider-nav-buttons {
      margin-bottom: 20px;
    }
  
    .news-section .section-title {
      font-size: 28px;
    }
  
    .news-slider-container {
      padding: 0 20px;
    }
  }
  
  /* Gallery Section */
  .gallery-section {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
  }
  
  .gallery-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    background-color: rgba(var(--primary-rgb), 0.1);
    padding: 8px 15px;
    border-radius: 30px;
    margin-bottom: 30px;
    color: var(--primary-color);
    position: relative;
  }
  
  .gallery-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    position: relative;
  }
  
  .gallery-description {
    color: var(--gray-color);
    font-size: 16px;
    line-height: 1.7;
    margin-top: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .gallery-container {
    position: relative;
    z-index: 1;
  }
  
  .gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    background-color: var(--light-color);
  }
  
  .gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  }
  
  .gallery-img-container {
    position: relative;
    overflow: hidden;
  }
  
  .gallery-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .gallery-item:hover .gallery-img {
    transform: scale(1.08);
  }
  
  .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(47, 46, 60, 0.5);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
  }
  
  .gallery-item:hover .gallery-overlay {
    opacity: 1;
  }
  
  .gallery-zoom {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--light-color);
    font-size: 18px;
    transform: scale(0.5);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  
  .gallery-item:hover .gallery-zoom {
    transform: scale(1);
    opacity: 1;
  }
  
  .gallery-zoom:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
  }
  
  .gallery-caption {
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    text-align: center;
    transition: all 0.3s ease;
  }
  
  .gallery-item:hover .gallery-caption {
    color: var(--primary-color);
  }
  
  /* Responsive styles for gallery */
  @media (max-width: 1200px) {
    .gallery-img {
      height: 180px;
    }
  }
  
  @media (max-width: 992px) {
    .gallery-section {
      padding: 80px 0;
    }
  
    .gallery-title {
      font-size: 32px;
    }
  }
  
  @media (max-width: 767px) {
    .gallery-section {
      padding: 60px 0;
    }
  
    .gallery-title {
      font-size: 28px;
    }
  
    .gallery-img {
      height: 200px;
    }
  }
  
  @media (max-width: 576px) {
    .gallery-section {
      padding: 50px 0;
    }
  
    .gallery-description {
      font-size: 15px;
    }
  }
  
  /* Gallery Modal */
  .gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(5px);
  }
  
  .gallery-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: zoomIn 0.3s ease;
  }
  
  @keyframes zoomIn {
    from {
      transform: scale(0.8);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }
  
  .gallery-modal-img {
    display: block;
    max-width: 100%;
    max-height: 85vh;
    border-radius: 5px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
  }
  
  .gallery-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
  }
  
  .gallery-modal-close:hover {
    color: var(--primary-color);
  }
  
  /* CTA Section */
  .cta-section {
    position: relative;
    padding: 120px 0 0;  /* Reduced bottom padding to account for wave */
    background-size: cover;
    background-attachment: fixed;
    color: var(--light-color);
    overflow: hidden;
  }
  
  .cta-section .shape-image-animation {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
  }
  
  .cta-section .shape-image-animation svg {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
  }
  
  .cta-section .cta-wave-path {
    fill: var(--secondary-color);  /* Match the background color of the next section */
  }
  
  .cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(47, 46, 60, 0.55) 0%, rgba(62, 102, 251, 0.05) 100%);
    z-index: 1;
  }
  
  .cta-content {
    position: relative;
    z-index: 2;
    padding: 40px;
  }
  
  .cta-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    background-color: rgba(var(--primary-rgb), 0.1);
    padding: 8px 15px;
    border-radius: 30px;
    margin-bottom: 30px;
    color: var(--primary-color);
    position: relative;
  }
  
  .cta-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    position: relative;
    padding-bottom: 25px;
  }
  
  .cta-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
  }
  
  .cta-text {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
  }
  
  .cta-btn {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    min-width: 200px;
  }
  
  .cta-btn i {
    transition: transform 0.3s ease;
  }
  
  .cta-btn:hover i {
    transform: translateX(5px);
  }
  
  .cta-btn-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
  }
  
  .cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
  }
  
  .btn-primary.cta-btn {
    background: var(--primary-color);
    border: none;
    box-shadow: 0 10px 20px rgba(62, 102, 251, 0.3);
  }
  
  .btn-primary.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(62, 102, 251, 0.4);
  }
  
  /* Responsive styles for CTA section */
  @media (max-width: 992px) {
    .cta-section {
      padding: 100px 0;
    }
  
    .cta-title {
      font-size: 42px;
    }
  
    .cta-text {
      font-size: 17px;
    }
  }
  
  @media (max-width: 768px) {
    .cta-section {
      padding: 80px 0;
    }
  
    .cta-title {
      font-size: 36px;
    }
  
    .cta-text {
      font-size: 16px;
    }
  
    .cta-buttons {
      flex-direction: column;
      gap: 15px;
    }
  
    .cta-btn {
      width: 100%;
      min-width: auto;
    }
  }
  
  @media (max-width: 576px) {
    .cta-section {
      padding: 60px 0;
    }
  
    .cta-title {
      font-size: 30px;
    }
  
    .cta-content {
      padding: 30px 20px;
    }
  }
  
  /* Mission Section */
  .mission-section {
    position: relative;
    padding: 120px 0; /* Keep padding and position */
    background-color: var(--light-color); /* Base cream color from new branding */
    overflow: hidden; /* Keep overflow, important for pseudo-elements */
    color: #fff; /* Ensure text color is white, as content is on dark overlay */
  }
  
  /* This ::before is styled by the widget for the main overlay (e.g., maroon tint) */
  /* The global style for it was mostly cleared in a previous step. */
  /* We ensure it has content and basic positioning if the widget relies on it generally. */
  .mission-section::before {
    content: ''; 
    position: absolute; 
    top: 0; left: 0; right: 0; bottom: 0; 
    /* z-index needs to be lower than content, but potentially above ::after if it's the main overlay */
    /* The widget's inline style will set its background-color for the overlay. */
    /* Let widget styles handle z-index for this one or assume it's 0/auto and content is 1+ */
  }
  

  
  .mission-content {
    position: relative; /* This is already in the widget's style block */
    z-index: 1; /* This is already in the widget's style block, ensuring it's above pseudo-elements */
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
  }
  
  .mission-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    background-color: rgba(var(--primary-rgb), 0.1);
    padding: 8px 15px;
    border-radius: 30px;
    margin-bottom: 30px;
    color: var(--primary-color);
    position: relative;
  }
  
  .mission-subtitle::after {
    display: none !important;
  }
  
  .mission-text {
    position: relative;
    max-width: 800px;
  }
  
  .mission-text p {
    font-size: 24px;
    line-height: 1.8;
    color: white;
    margin-bottom: 30px;
    font-weight: 300;
  }
  
  .mission-text p:first-child {
    font-size: 32px;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 40px;
  }
  
  .mission-text p:last-child {
    margin-bottom: 0;
    font-size: 20px;
    opacity: 0.9;
  }
  
  @media (max-width: 992px) {
    .mission-section {
      padding: 80px 0;
    }
    
    .mission-text p:first-child {
      font-size: 28px;
    }
    
    .mission-text p {
      font-size: 20px;
    }
  }
  
  @media (max-width: 768px) {
    .mission-section {
      padding: 60px 0;
    }
    
    .mission-text p:first-child {
      font-size: 24px;
    }
    
    .mission-text p {
      font-size: 18px;
    }
    
    .mission-subtitle {
      margin-bottom: 30px;
    }
  }
  
  /* Modern Tabs Styling */
  .modern-tabs {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-top: 30px;
    position: relative;
  }
  
  .tab-navigation {
    display: flex;
    flex-wrap: wrap;
    background: linear-gradient(135deg, #f5f7fa 0%, #f8f9fa 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0;
  }
  
  .tab-btn {
    background: none;
    border: none;
    outline: none;
    padding: 20px 15px;
    flex: 1;
    min-width: 150px;
    position: relative;
    transition: all 0.3s ease;
    color: var(--secondary-color);
    text-align: center;
    font-weight: 500;
    cursor: pointer;
    border-right: 1px solid rgba(0, 0, 0, 0.03);
  }
  
  .tab-btn:last-child {
    border-right: none;
  }
  
  .tab-btn:hover {
    background-color: rgba(var(--primary-rgb), 0.05);
  }
  
  .tab-btn.active {
    color: var(--primary-color);
    background-color: #fff;
    font-weight: 600;
  }
  
  .tab-btn.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
  }
  
  .tab-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(var(--primary-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    transition: all 0.3s ease;
  }
  
  .tab-btn.active .tab-icon {
    background-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.2);
  }
  
  .tab-btn.active .tab-icon i {
    color: #fff;
  }
  
  .tab-btn span {
    display: block;
    font-size: 15px;
    line-height: 1.3;
    transition: all 0.3s ease;
  }
  
  .tab-content-wrapper {
    position: relative;
    padding: 0;
    background-color: #fff;
  }
  
  .tab-content-inner {
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
  }
  
  /* Update panel title styling for the modern design */
  .tab-content-inner .panel-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .tab-content-inner .panel-title::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
  }
  
  /* Responsive styles for the modern tabs */
  @media (max-width: 992px) {
    .tab-navigation {
      flex-wrap: wrap;
    }
  
    .tab-btn {
      min-width: 40%;
      flex: 1 0 40%;
      margin-bottom: 1px;
      border-right: 1px solid rgba(0, 0, 0, 0.03);
    }
  
    .tab-btn:nth-child(2n) {
      border-right: none;
    }
  
    .tab-content-inner {
      padding: 30px;
    }
  }
  
  @media (max-width: 576px) {
    .tab-btn {
      min-width: 100%;
      flex: 1 0 100%;
      border-right: none;
      border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    }
  
    .tab-icon {
      width: 40px;
      height: 40px;
      font-size: 18px;
      margin-bottom: 8px;
    }
  
    .tab-content-inner {
      padding: 25px 20px;
    }
  }
  
  /* Update existing accordion section styles */
  .accordion-section {
    background-color: var(--light-color);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
  }
  
  .accordion-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    background-color: rgba(var(--primary-rgb), 0.1);
    padding: 8px 15px;
    border-radius: 30px;
    margin-bottom: 30px;
    color: var(--primary-color);
    position: relative;
  }
  
  .accordion-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    position: relative;
  }
  
  .accordion-section .title-separator {
    margin-bottom: 0;
    position: relative;
    z-index: 1;
  }
  
  /* Tab content styling fixes */
  .tab-pane {
    display: none;
  }
  
  .tab-pane.show.active {
    display: block;
  }
  
  /* Curriculum Table Styling */
  .curriculum-table-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    padding: 5px;
    margin-top: 20px;
  }
  
  .curriculum-table-container h5 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 4px solid var(--primary-color);
  }
  
  .curriculum-table {
    margin-bottom: 0;
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
  }
  
  .curriculum-table th {
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .curriculum-table th:first-child {
    border-top-left-radius: 6px;
  }
  
  .curriculum-table th:last-child {
    border-top-right-radius: 6px;
  }
  
  .curriculum-table td {
    padding: 12px 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 14px;
    vertical-align: middle;
  }
  
  .curriculum-table tr:nth-child(even) {
    background-color: rgba(var(--primary-rgb), 0.05);
  }
  
  .curriculum-table tr.table-primary {
    background-color: rgba(var(--primary-rgb), 0.1);
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
  }
  
  .curriculum-table tr.table-primary td {
    border-top: 1px solid rgba(var(--primary-rgb), 0.2);
    color: var(--primary-color);
  }
  
  .curriculum-table .table-dark {
    background-color: #2f2e3c;
    color: #fff;
  }
  
  .curriculum-table .table-dark td {
    border: none;
    padding: 1.2rem 1rem;
  }
  
  @media (max-width: 767px) {
    .curriculum-table-container {
      padding: 0;
    }
  
    .curriculum-table td,
    .curriculum-table th {
      padding: 10px;
      font-size: 13px;
    }
  }
  
  /* Application Process Styling */
  .application-process {
    position: relative;
    margin: 20px 0;
  }
  
  .process-step {
    display: flex;
    margin-bottom: 25px;
    position: relative;
  }
  
  .process-step:last-child {
    margin-bottom: 0;
  }
  
  .process-step::after {
    content: "";
    position: absolute;
    top: 45px;
    left: 20px;
    bottom: -20px;
    width: 2px;
    background-color: rgba(var(--primary-rgb), 0.15);
    z-index: 1;
  }
  
  .process-step:last-child::after {
    display: none;
  }
  
  .step-number {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin-right: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 3px 8px rgba(var(--primary-rgb), 0.25);
  }
  
  .step-content {
    flex: 1;
    padding-top: 5px;
  }
  
  .step-content p {
    margin-bottom: 0;
    color: var(--text-color);
    line-height: 1.6;
  }
  
  @media (max-width: 767px) {
    .process-step {
      flex-direction: column;
    }
  
    .step-number {
      margin-bottom: 15px;
    }
  
    .process-step::after {
      left: 20px;
      top: 40px;
    }
  }
  
  /* Top Bar */
  .top-bar {
    background-color: #ae3f00;
    font-size: 0.9rem;
    z-index: 999;
      position: relative;
  }
  
  .top-bar-contact {
    color: #fff;
  }
  
  .top-bar-contact span {
    display: inline-flex;
    align-items: center;
  }
  
  .top-bar-contact i {
    color: #fff;
  }
  
  .language-selector img {
    transition: transform 0.2s;
  }
  
  .language-selector a:hover img {
    transform: scale(1.1);
  }
  
  .navbar img {
    max-height: 110px;
	  max-width:113px;
    width: 100%;
    transition: all 0.5s ease;
  }
  
  
  .white-sub {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  .tab-navigation-vertical {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    padding-right: 30px;
  }
  
  .tab-navigation-vertical::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.1) 0%, rgba(var(--primary-rgb), 0.05) 100%);
    border-radius: 3px;
  }
  
  .tab-btn-vertical {
    background: none;
    border: none;
    padding: 20px;
    border-radius: 12px;
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--secondary-color);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
    background: #fff;
  }
  
  .tab-btn-vertical::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -30px;
    width: 3px;
    height: 0;
    background: var(--primary-color);
    transform: translateY(-50%);
    transition: height 0.3s ease;
    border-radius: 3px;
  }
  
  .tab-btn-vertical:hover {
    transform: translateX(5px);
    background: linear-gradient(45deg, rgba(var(--primary-rgb), 0.03) 0%, rgba(var(--primary-rgb), 0.05) 100%);
  }
  
  .tab-btn-vertical.active {
    background: linear-gradient(45deg, rgba(var(--primary-rgb), 0.1) 0%, rgba(var(--primary-rgb), 0.15) 100%);
    color: var(--primary-color);
    transform: translateX(5px);
  }
  
  .tab-btn-vertical.active::after {
    height: 100%;
  }
  
  .tab-btn-vertical .tab-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--primary-rgb), 0.1);
    transition: all 0.3s ease;
  }
  
  .tab-btn-vertical.active .tab-icon {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
  }
  
  .tab-btn-vertical .tab-icon i {
    font-size: 20px;
    transition: all 0.3s ease;
  }
  
  .tab-btn-vertical span {
    font-weight: 500;
    font-size: 16px;
  }
  
  .tab-content-wrapper {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
  }
  
  .tab-content-inner {
    padding: 40px;
  }
  
  @media (max-width: 991px) {
    .tab-navigation-vertical {
      margin-bottom: 30px;
      padding-right: 0;
    }
    
    .tab-navigation-vertical::after {
      display: none;
    }
    
    .tab-btn-vertical::after {
      display: none;
    }
    
    .tab-btn-vertical:hover,
    .tab-btn-vertical.active {
      transform: none;
    }
  }
  
  
  .tab-pane img{
    max-height:300px;
    width: auto;
    object-fit: cover;
  }
  
  
  .news-slider{
    overflow: hidden;
  }
  
  
  .footer-bottom a{
    color: inherit;
    text-decoration: none;
  }
  
  .footer-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-link:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
  }
  
  .footer a{
    text-decoration: none;
  }
  
  /* Breadcrumb Styles */
  .breadcrumb-section {
    background-color: #2f2e3c;
    background-image: linear-gradient(to right, rgba(47, 46, 60, 0.95), rgba(47, 46, 60, 0.8)), url('/images/SAM_02911-1024x734.jpg');
    background-size: cover;
    background-position: center;
    padding: 7rem 0 3rem;
    position: relative;
    overflow: hidden;
    margin-top: -2rem;
  }
  
  .breadcrumb-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
  }
  
  .breadcrumb-content {
    position: relative;
    z-index: 2;
    padding: 0.5rem 0;
  }
  
  .breadcrumb {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    padding: 0;
    background: transparent;
    justify-content: center;
  }
  
  .breadcrumb-item + .breadcrumb-item::before {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 1rem;
  }
  
  .breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.9;
    letter-spacing: 0.5px;
  }
  
  .breadcrumb-item a:hover {
    color: var(--primary-color);
    opacity: 1;
  }
  
  .breadcrumb-item.active {
    color: var(--primary-color);
    letter-spacing: 0.5px;
  }
  
  .breadcrumb-item i {
    font-size: 1rem;
  }
  
  @media (max-width: 768px) {
    .breadcrumb-section {
      padding: 6rem 0 2rem;
    }
    
    .breadcrumb {
      font-size: 0.95rem;
    }
    
    .breadcrumb-item + .breadcrumb-item::before {
      margin: 0 0.5rem;
    }
  }
  
  /* Page Title Section */
  .page-title-section {
    background-color: #2f2e3c;
    /* background-image: linear-gradient(to right, rgba(47, 46, 60, 0.92), rgba(47, 46, 60, 0.92)), 
                      url('/images/SAM_02911-1024x734.jpg'); */
    background-size: cover;
    background-position: center;
    padding: 13rem 0 13rem;
    padding-top:308px;
    margin-top:150px;
    position: relative;
    /* margin-top: -2rem; */
    overflow: hidden;
  }
  
  .page-title-section .shape-image-animation {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 2;
  }
  
  .page-title-section .shape-image-animation svg {
    width: 102%;
    height: auto;
    display: block;
    margin-left: -1%;
  }
  
  .page-title-content {
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
  }
  
  .page-subtitle {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    display: inline-block;
    background: rgba(var(--primary-color-rgb), 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
  }
  
  .page-title {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
  }
  
  .page-title-section .breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .page-title-section .breadcrumb-item {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    line-height: 1;
    padding: 0;
  }
  
  .page-title-section .breadcrumb-item + .breadcrumb-item {
    padding-left: 0;
  }
  
  .page-title-section .breadcrumb-item + .breadcrumb-item::before {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 1rem;
    padding: 0;
    display: flex;
    align-items: center;
    line-height: 1;
    float: none;
  }
  
  .page-title-section .breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1;
  }
  
  .page-title-section .breadcrumb-item a i {
    font-size: 0.9rem;
    position: relative;
    top: 0;
  }
  
  .page-title-section .breadcrumb-item.active {
    color: #fff;
    line-height: 1;
  }
  
  @media (max-width: 991px) {
    .page-title-section {
      padding: 7rem 0 3rem;
    }
    
    .page-title {
      font-size: 2.8rem;
    }
  }
  
  @media (max-width: 768px) {
    .page-title-section {
      padding: 8rem 0 2.5rem;
    }
    
    .page-title {
      font-size: 2.2rem;
    }
    
    .page-subtitle {
      font-size: 0.9rem;
    }
    
    .page-title-section .breadcrumb-item {
      font-size: 1rem;
    }
    
    .page-title-section .breadcrumb-item + .breadcrumb-item::before {
      margin: 0 0.75rem;
      font-size: 0.7rem;
    }
    
    .page-title-section .breadcrumb-item a {
      gap: 0.4rem;
    }
  }
  
  .program-section {
    background-color: #f8f9fa;
    padding: 5rem 0;
  }
  
  .program-section .section-title {
    color: #2f2e3c;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
  }
  
  .program-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
  }
  
  .semester-title {
    color: #2f2e3c;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 4px solid var(--primary-color);
  }
  
  .curriculum-table {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  }
  
  .curriculum-table thead th {
    background-color: #2f2e3c;
    color: #fff;
    font-weight: 600;
    padding: 1rem;
    border: none;
  }
  
  .curriculum-table tbody td {
    padding: 1rem;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    vertical-align: middle;
  }
  
  .curriculum-table .table-primary {
    background-color: rgba(var(--primary-color-rgb), 0.1);
  }
  
  .curriculum-table .table-primary td {
    color: var(--primary-color);
    font-weight: 600;
  }
  
  .curriculum-table .table-dark {
    background-color: #2f2e3c;
    color: #fff;
  }
  
  .curriculum-table .table-dark td {
    border: none;
    padding: 1.2rem 1rem;
  }
  
  @media (max-width: 768px) {
    .program-section .section-title {
      font-size: 2rem;
    }
    
    .semester-title {
      font-size: 1.5rem;
    }
    
    .curriculum-table td {
      font-size: 0.9rem;
    }
  }
  
  .program-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin: 0 auto 4rem;
    max-width: 900px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .program-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(47, 46, 60, 0.2), rgba(47, 46, 60, 0));
    z-index: 1;
    transition: background 0.3s ease;
  }
  
  .program-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  }
  
  .program-image-wrapper:hover::before {
    background: linear-gradient(to bottom, rgba(47, 46, 60, 0.1), rgba(47, 46, 60, 0));
  }
  
  .program-image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
  }
  
  .program-image-wrapper:hover img {
    transform: scale(1.02);
  }
  
  @media (max-width: 768px) {
    .program-image-wrapper {
      margin-bottom: 3rem;
    }
    
    .program-image-wrapper img {
      height: 300px;
    }
  }
  
  /* Application Form Styling */
  .application-form-wrapper {
    background-color: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }
  
  .form-section {
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.03);
  }
  
  .form-floating {
    position: relative;
    margin-bottom: 0.5rem;
  }
  
  .form-floating > .form-control,
  .form-floating > .form-select {
    height: calc(3.5rem + 2px);
    padding: 1rem 0.75rem;
  }
  
  .form-floating > textarea.form-control {
    height: auto;
  }
  
  .form-floating > label {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 1rem 0.75rem;
    pointer-events: none;
    border: 1px solid transparent;
    transform-origin: 0 0;
    transition: opacity .1s ease-in-out, transform .1s ease-in-out;
    color: var(--gray-color);
  }
  
  .form-floating > .form-control:focus,
  .form-floating > .form-control:not(:placeholder-shown) {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
  }
  
  .form-floating > .form-control:focus ~ label,
  .form-floating > .form-control:not(:placeholder-shown) ~ label {
    opacity: .65;
    transform: scale(.85) translateY(-0.5rem) translateX(0.15rem);
    color: var(--gray-color);
  }
  
  .form-control:focus {
    border-color: rgba(var(--primary-rgb), 0.5);
    box-shadow: 0 0 0 0.25rem rgba(var(--primary-rgb), 0.1);
  }
  
  .custom-file-upload {
    position: relative;
    padding: 1rem;
    background-color: rgba(var(--primary-rgb), 0.02);
    border: 2px dashed rgba(var(--primary-rgb), 0.2);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
  }
  
  .custom-file-upload:hover {
    background-color: rgba(var(--primary-rgb), 0.05);
    border-color: rgba(var(--primary-rgb), 0.3);
  }
  
  .custom-file-upload input[type="file"] {
    display: block;
    width: 100%;
    padding: 0.5rem;
    background-color: transparent;
    border: none;
    cursor: pointer;
  }
  
  .custom-file-upload small {
    display: block;
    margin-top: 0.5rem;
    color: var(--gray-color);
  }
  
  .alert-info {
    background-color: rgba(var(--primary-rgb), 0.1);
    border: none;
    color: var(--secondary-color);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
  }
  
  .alert-info i {
    color: var(--primary-color);
  }
  
  /* Form validation styles */
  .form-control.is-invalid {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  }
  
  .form-control.is-valid {
    border-color: #198754;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  }
  
  @media (max-width: 768px) {
    .application-form-wrapper {
      padding: 1rem;
    }
  
    .form-section {
      padding: 1.5rem;
    }
  }
  
  /* Contact Section Styles */
  .contact-section {
    background-color: var(--light-color);
    padding: 5rem 0;
  }
  
  .contact-info-wrapper {
    position: relative;
  }
  
  .contact-info-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  }
  
  .card-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(var(--primary-rgb), 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
  }
  
  .contact-info-card:hover .card-icon {
    background-color: var(--primary-color);
    transform: scale(1.1);
  }
  
  .card-icon i {
    font-size: 24px;
    color: var(--primary-color);
    transition: all 0.3s ease;
  }
  
  .contact-info-card:hover .card-icon i {
    color: #fff;
  }
  
  .info-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.75rem;
  }
  
  .info-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
  }
  
  .info-content p {
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .info-content p:last-child {
    margin-bottom: 0;
  }
  
  .info-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .info-content a:hover {
    color: var(--secondary-color);
  }
  
  .contact-form-wrapper {
    background-color: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }
  
  .contact-form-wrapper .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
  }
  
  .contact-form-wrapper .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
  }
  
  .map-section {
    position: relative;
    z-index: 1;
  }
  
  .map-wrapper {
    position: relative;
    height: 450px;
    overflow: hidden;
  }
  
  .map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(1);
    transition: all 0.3s ease;
  }
  
  .map-wrapper:hover iframe {
    filter: grayscale(0);
  }
  
  @media (max-width: 991px) {
    .contact-info-wrapper {
      margin-bottom: 3rem;
    }
    
    .contact-form-wrapper {
      padding: 2rem;
    }
    
    .contact-form-wrapper .section-title {
      font-size: 1.75rem;
    }
  }
  
  @media (max-width: 767px) {
    .contact-section {
      padding: 4rem 0;
    }
    
    .contact-info-card {
      padding: 1.5rem;
    }
    
    .contact-form-wrapper {
      padding: 1.5rem;
    }
    
    .map-wrapper {
      height: 350px;
    }
  }
  
  /* Staff Section Styles */
  .section-header {
    margin-bottom: 3rem;
  }
  
  .section-divider {
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    margin-top: 1rem;
  }
  
  .staff-card {
    background: linear-gradient(135deg, var(--light-color) 80%, var(--secondary-color) 100%);
    border-radius: 20px;
    border: 2px solid var(--secondary-color);
    box-shadow: 0 8px 32px rgba(var(--primary-rgb), 0.13), 0 1.5px 8px rgba(0,0,0,0.04);
    transition: transform 0.3s cubic-bezier(.4,2,.6,1), box-shadow 0.3s cubic-bezier(.4,2,.6,1), border-color 0.3s;
    overflow: hidden;
    margin-bottom: 2.5rem;
    padding: 0;
    position: relative;
  }
  
  .staff-card:hover {
    transform: translateY(-10px) scale(1.035);
    box-shadow: 0 16px 40px rgba(var(--primary-rgb), 0.18), 0 2px 12px rgba(0,0,0,0.07);
    border-color: var(--primary-color);
  }
  
  .staff-image {
    position: relative;
    overflow: hidden;
    border-radius: 18px 18px 0 0;
    border-bottom: none;
    background: #fff;
  }
  
  .staff-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
    border-bottom: none;
    box-shadow: 0 2px 12px rgba(var(--primary-rgb), 0.10);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .staff-card:hover .staff-image img {
    transform: scale(1.045);
    box-shadow: 0 8px 32px rgba(var(--primary-rgb), 0.18);
  }
  
  .staff-info {
    padding: 2rem 1.2rem 1.2rem 1.2rem;
    text-align: center;
    background: transparent;
    position: relative;
  }
  
  .staff-info::before {
    content: '';
    display: block;
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    opacity: 0.18;
    border-radius: 2px;
    margin: 0 auto 1.2rem auto;
  }
  
  .staff-name {
    font-size: 1.28rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--primary-color);
    letter-spacing: 0.01em;
  }
  
  .staff-position {
    font-size: 1.08rem;
    color: var(--secondary-color);
    margin-bottom: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.01em;
  }
  
  .staff-contact {
    font-size: 1.01rem;
    color: var(--gray-color);
    margin-bottom: 0.7rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.7em;
    justify-content: start;
  }
  
  .staff-contact:last-child {
    margin-bottom: 0;
  }
  
  .staff-contact i {
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    width: 2em;
    height: 2em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1em;
    margin-right: 0.3em;
    box-shadow: 0 1px 4px rgba(var(--primary-rgb), 0.10);
    transition: background 0.3s, color 0.3s;
  }
  
  .staff-contact a {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
  }
  
  .staff-contact a:hover {
    color: var(--secondary-color);
  }
  
  @media (max-width: 768px) {
    .staff-image img {
      height: 140px;
    }
    .staff-info {
      padding: 1.2rem 0.5rem 0.7rem 0.5rem;
    }
    .staff-name {
      font-size: 1.08rem;
    }
    .staff-position {
      font-size: 0.95rem;
    }
  }
  
  /* Degree Categories Styles */
  .degree-category-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  
  .degree-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
  }
  
  .degree-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }
  
  .degree-category-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }
  
  .category-icon {
    width: 80px;
    height: 80px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
  }
  
  .category-icon i {
    font-size: 32px;
    color: var(--primary-color);
    transition: all 0.3s ease;
  }
  
  .degree-category-card:hover .category-icon {
    background: var(--primary-color);
    transform: scale(1.1) rotate(5deg);
  }
  
  .degree-category-card:hover .category-icon i {
    color: #fff;
    transform: rotate(-5deg);
  }
  
  .degree-category-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
    transition: all 0.3s ease;
  }
  
  .degree-category-card:hover h3 {
    color: var(--primary-color);
  }
  
  .lead.text-muted {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .additional-info .alert-info {
    background-color: rgba(var(--primary-rgb), 0.05);
    border: none;
    border-radius: 12px;
    padding: 1.5rem;
    color: var(--secondary-color);
    font-size: 1rem;
    line-height: 1.6;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
  }
  
  .additional-info .alert-info i {
    color: var(--primary-color);
    font-size: 1.2rem;
  }
  
  @media (max-width: 768px) {
    .degree-category-card {
      padding: 1.5rem;
    }
  
    .category-icon {
      width: 60px;
      height: 60px;
    }
  
    .category-icon i {
      font-size: 24px;
    }
  
    .degree-category-card h3 {
      font-size: 1rem;
    }
  
    .lead.text-muted {
      font-size: 1rem;
    }
  }
  
  /* Duration Page Styles */
  .content-card {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 2rem;
  }
  
  .content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }
  
  .content-title {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
  }
  
  .content-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
  }
  
  .schedule-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
  }
  
  .schedule-card h4 {
    color: var(--primary-color);
    margin: 1rem 0;
    font-weight: 600;
  }
  
  .schedule-time {
    font-size: 1.25rem;
    color: #666;
    margin: 0;
    font-weight: 500;
  }
  
  .schedule-card .category-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
  }
  
  .schedule-card:hover .category-icon {
    background: var(--primary-color);
    color: #fff;
  }

  .e-con-inner{
	margin:0 !important;
	padding:0 !important;
  max-width:none !important;
  
  }
  .elementor-element{
	padding:0 !important;
  }
  
  .hero-slider-item, .hero-slider-active{
	height:100%;
  }
  
  .elementor-widget-custom_booking p{
	display:inline;
  }
  
  .elementor a{
	box-shadow:unset;
  }
  

  
  .news-section.py-5{
    display:none;
  }

  .menu-item-has-children:hover > .dropdown-menu{
	display:block;
  }

  .dropdown-menu{
    background: var(--secondary-color);
    color: #fff;
  }

  .dropdown-menu .dropdown-item{
    color: #fff;
    padding: 10px 20px;
  }

  .dropdown-item:hover{
    background: var(--secondary-color);
  }

  .menu-item-has-children {
    z-index: 1000;
  }


  /* Multi-level dropdown menu CSS for Bootstrap 5 */
.dropdown-submenu {
  position: absolute;
  left: 100%;
  top: 0;
  margin-top: 0;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.2s, opacity 0.2s;
}

.dropdown-submenu-item {
  position: relative;
}

/* Show the submenu on hover */
.dropdown-submenu-item:hover > .dropdown-submenu {
  visibility: visible;
  opacity: 1;
}

/* Add a right-pointing caret for items with submenus */
.dropdown-submenu-item > a.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
  float: right;
  margin-top: 0.5em;
}

/* For mobile devices */
@media (max-width: 991.98px) {
  .dropdown-submenu {
      position: static;
      left: auto;
      top: auto;
      margin-left: 1rem;
      visibility: visible;
      opacity: 1;
      box-shadow: none;
      border: none;
  }

  .navbar-dark .navbar-nav .nav-link:hover::after{
    content:none;
  }
}

.shape-image-animation {
  bottom:-56px !important;
}


.mobile-menu-open .header{
  z-index: 9999;
}


@media (max-width: 991.98px) {
  .content-card{
    padding:10px !important;
  }
  .navbar img{
    max-height: 90px;
  }
  .ebl-hero-section-new{
    padding-top:145px !important;
  }
}


.cta-section{
  background-size:cover !important;
  background-position: center;
 display:block;
}

/* Hero Section New Design */
.ebl-hero-section-new {
    /* min-height: 100vh; Is now inline style */
    /* display: flex; flex-direction: column; Is now inline style */
    background-color: #FDFBF8; /* Fallback, though middle image should cover */
    overflow: hidden;
}

.ebl-hero-pattern-and-header-bg {
    position: relative; /* For SVG positioning and header overlay */
    z-index: 1;
    line-height: 0;
    min-height: 70px; /* UPDATED - Match new SVG height */
    /* flex-shrink: 0; Is now inline style */
}

.ebl-hero-top-pattern-svg {
    display: block;
    width: 100%;
    height: 100%; 
    position: absolute;
    top: 0;
    left: 0;
}

/* Site Header Adjustments (ensure it's above .ebl-hero-pattern-and-header-bg) */
.header {
    position: absolute !important; 
    top: 38px; /* CRITICAL: Adjust based on actual .top-bar height */
    left: 0;
    width: 100%;
    z-index: 10; 
    background-color: transparent !important;
    padding-top: 15px; 
    padding-bottom: 15px;
    transition: top 0.3s ease, background-color 0.3s ease, padding 0.3s ease;
}

.header.scrolled {
    /* Styles for scrolled header remain the same */
    background-color: rgba(47, 46, 60, 0.7) !important;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    top: 0 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header .navbar-brand img {
    max-height: 60px; /* Adjusted for potentially less vertical space */
}

.header .navbar-nav .nav-link {
    color: #A18C79 !important; /* Or #fff if pattern is dark enough */
    font-weight: 500;
}

/* Middle Image and Content Overlay */
.ebl-hero-middle-image-content-area {
    /* flex-grow: 1; Is inline */
    /* background-image: url(...); Is inline */
    /* width: 100%; Is inline */
    /* background-size: cover; Is inline */
    /* background-position: center center; Is inline */
    /* display: flex; align-items: center; justify-content: center; Is inline */
    /* position: relative; Is inline */
    padding: 0; /* REMOVED top/bottom padding to eliminate white space */
}

.ebl-hero-text-overlay {
    /* position: relative; z-index: 2; text-align: center; Is inline */
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.15); /* Light panel for text if full overlay is too much */
    border-radius: 8px;
    max-width: 900px; /* Constrain width of text block */
    margin: 0 auto; /* Center the block */
}

.ebl-hero-image-overlay {
    /* position: absolute; top: 0; left: 0; width: 100%; height: 100%; Is inline */
    /* background-color: rgba(0,0,0,0.3); Is inline - Adjust this opacity as needed */
    /* z-index: 1; Is inline */
}

.ebl-hero-university-details-on-image {
    color: #fff; /* Assuming white text on dark overlay/image */
    font-weight: 600;
    font-size: 1.3em;
    line-height: 1.5;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.ebl-program-tagline-on-image {
    color: #f0f0f0; /* Light grey */
    font-size: 1.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.ebl-program-title-on-image {
    color: #ffffff; /* White */
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.ebl-program-description-on-image {
    color: #e9e9e9; /* Off-white */
    line-height: 1.7;
    font-size: 1.05em;
    max-width: 800px; /* Consistent with overlay max-width */
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Bottom Pattern Area */
.ebl-hero-bottom-pattern-bg {
    position: relative; /* For SVG positioning */
    z-index: 1;
    line-height: 0;
    min-height: 105px; /* Adjust based on SVG and desired visual height */
    /* flex-shrink: 0; Is inline */
}

.ebl-hero-bottom-pattern-svg {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* Remove/cleanup old styles that are no longer needed or conflict */
.ebl-hero-over-pattern-content, .ebl-hero-university-details {
    /* These were for the old layout where university details were directly over the top pattern */
    /* Review if any part of these are still needed or if they should be fully removed */
    position: static; /* Reset if they had absolute positioning */
    color: inherit; /* Reset color */
    text-align: left; /* Reset text-align */
    padding:0;
    margin:0;
    bottom: unset;
}

.ebl-hero-main-content-area {
   /* This class was for content *below* the pattern, now content is overlaid */
   /* Review and remove if all its styles are superseded by ebl-hero-text-overlay */
   padding:0;
   background-color: transparent;
}
.ebl-program-tagline, .ebl-program-title, .ebl-program-description {
    /* These were for the old non-overlayed text */
    /* Styles are now in ...-on-image classes. Remove or repurpose. */
    color: inherit;
    font-size: inherit;
    margin:0;
}


/* Responsive Adjustments */
@media (max-width: 991px) {
    .ebl-hero-pattern-and-header-bg {
        min-height: 120px; /* UPDATED - Responsive adjustment */ 
    }
    .header .navbar-brand img {
        max-height: 50px;
    }
    .ebl-hero-university-details-on-image {
        font-size: 1.15em;
        margin-bottom: 15px;
    }
    .ebl-program-title-on-image {
        font-size: 2.2em;
        margin-bottom: 15px;
    }
    .ebl-hero-text-overlay {
        padding: 20px;
    }
    .ebl-hero-bottom-pattern-bg {
        min-height: 120px;
    }
}

@media (max-width: 767px) {
    .ebl-hero-pattern-and-header-bg {
        min-height: 100px; /* UPDATED - Responsive adjustment */
    }
    .header .navbar-brand img {
        max-height: 45px;
    }
    .ebl-hero-university-details-on-image {
        font-size: 1em;
        margin-bottom: 10px;
    }
    .ebl-program-title-on-image {
        font-size: 1.8em;
    }
    .ebl-program-tagline-on-image {
        font-size: 0.9em;
    }
    .ebl-program-description-on-image {
        font-size: 0.9em;
    }
    .ebl-hero-text-overlay {
        padding: 15px;
        background-color: rgba(0,0,0,0.3); /* Slightly more opaque panel on mobile */
    }
    .ebl-hero-bottom-pattern-bg {
        min-height: 100px;
    }
}

/* Ensure Elementor Full Width Section is truly full width if needed */
.elementor-section.elementor-section-stretched {
    width: 100vw !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}

.ebl-hero-pattern-and-header-bg{
  width: 100%;
  position: absolute;
  top:0;
  
}

.header{
  padding-top:0 !important;
  padding-bottom:0 !important;
}

.navbar{
  background: #fff;
}

.navbar>.container{
  padding-top:40px;
  padding-bottom:15px;
}

.header.scrolled .navbar .container{
  padding-top:15px;
}

.ebl-hero-section-new{
  padding-top:165px;
}

/* SVG Wave Animation for Hero Bottom Pattern */
@keyframes subtleWaveAnimation {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-7px); /* Adjust this value for more/less movement */
  }
  100% {
    transform: translateY(0px);
  }
}

#ebl-hero-path-1 {
  animation: subtleWaveAnimation 8s ease-in-out infinite;
}

#ebl-hero-path-2 {
  animation: subtleWaveAnimation 8s ease-in-out infinite 0.3s; /* Delay for staggered effect */
}

#ebl-hero-path-3 {
  animation: subtleWaveAnimation 8s ease-in-out infinite 0.6s; /* Further delay */
}

/* Ensure parent container clips if necessary, though translateY should be fine */
.ebl-hero-bottom-pattern-bg {
    overflow: hidden; /* Add if paths ever move outside bounds, good practice */
}

/* Modern Welcome Section Styles */
.ebl-welcome-section-modern {
    background-color: #FDFBF8; /* Light greyish background from image */
    padding: 60px 0;
}

.modern-image-column .modern-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.modern-image-column .modern-image-wrapper img {
    display: block;
    width: 100%;
    height: auto;
}

.modern-content-column .modern-content-inner {
    padding-left: 20px; /* Spacing between image and text column */
}

.modern-content-column .modern-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-color); /* Using theme gray, adjust if a specific blue/gray is needed */
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-left: 20px; /* Space for the line */
}

.modern-content-column .modern-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px; /* Length of the small line */
    height: 2px;
    background-color: var(--primary-color); /* Theme primary color for the line */
}

.modern-content-column .modern-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-color); /* Using theme dark color */
    margin-bottom: 20px;
    line-height: 1.3;
}

.modern-content-column .modern-description {
    font-size: 16px;
    color: var(--text-color); /* Using theme text color */
    margin-bottom: 30px;
    line-height: 1.7;
}

.modern-content-column .modern-button {
    background-color: #ffffff; /* White background */
    color: var(--dark-color); /* Dark text, adjust as needed */
    border: 1px solid #dee2e6; /* Light border, similar to image */
    padding: 12px 25px;
    border-radius: 30px; /* Fully rounded */
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.modern-content-column .modern-button:hover {
    background-color: var(--light-gray); /* Slightly darker on hover */
    color: var(--dark-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.modern-content-column .modern-button i {
    background-color: var(--dark-color); /* Dark circle for icon */
    color: #ffffff; /* White icon */
    border-radius: 50%;
    padding: 5px;
    font-size: 10px; /* Smaller icon */
    margin-left: 8px;
    transition: background-color 0.3s ease;
}

.modern-content-column .modern-button:hover i {
    background-color: var(--primary-color); /* Primary color on button hover */
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .modern-content-column .modern-content-inner {
        padding-left: 0;
        margin-top: 30px;
    }
    .modern-content-column .modern-title {
        font-size: 28px;
    }
}


.elementor-7 .elementor-element.elementor-element-b9b2604 .mission-section::before{
  background-color: #ae3f00 !important;
}

.staff-card{
  padding:0;
}

.dropdown-item.active, .dropdown-item:active{
  background-color: #ae3f00 !important;
  color: #fff !important;
}

.dropdown-item:hover{
  background-color: #ae3f00 !important;
  color: #fff !important;
}

.elementor-91 .elementor-element.elementor-element-74b4d59 .hero-btn{
  background-color: #ae3f00 !important;
  color: #fff !important;
  border: 1px solid #ae3f00 !important;
}

.elementor-91 .elementor-element.elementor-element-74b4d59 .hero-btn:hover{
  background-color: #ae3f00 !important;
  color: #fff !important;
}

.btn-check:active+.btn-primary, .btn-check:checked+.btn-primary, .btn-primary.active, .btn-primary:active, .show>.btn-primary.dropdown-toggle{
  background-color: #ae3f00 !important;
  color: #fff !important;
}

.btn-check:active+.btn-outline-secondary, .btn-check:checked+.btn-outline-secondary, .btn-outline-secondary.active, .btn-outline-secondary:active, .show>.btn-outline-secondary.dropdown-toggle{
  background-color: #ae3f00 !important;
  color: #fff !important;
}


.btn-check:active+.btn-primary, .btn-check:checked+.btn-primary, .btn-primary.active, .btn-primary:active, .show>.btn-primary.dropdown-toggle{
  background-color: #ae3f00 !important;
  color: #fff !important;
}

.btn-check:focus+.btn-primary, .btn-primary:focus{
  background-color: #ae3f00 !important;
  color: #fff !important;
  border: 1px solid #ae3f00 !important;
  box-shadow: 0 0 0 0.25rem rgba(106, 44, 49, 0.25) !important;
}


.gallery-img {
  width: auto;
  min-width: 100%;
  height: 100% !important;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-img-container {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  height: 100%;
}

.gallery-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: #ae3f00;
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  opacity: 1;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.elementor-7 .elementor-element.elementor-element-990aac9 .gallery-icon{
  background-color: #ae3f00 !important;
}



.footer-contact li p{
  color: #fff;
}

.footer-links a{
  color: #fff;
}

.shape-image-animation svg {
  fill: #FDFBF8 !important;
}

.badge{
  background-color: #ae3f00 !important;
  color: #fff !important;
}

.dropdown-menu{
  padding:0 !important;
}

.text-primary{
  color: #ae3f00 !important;
}

.text-primary:hover{
  color: #ae3f00 !important;
}

.curriculum-table tr.table-primary{
  background-color: #ae3f00 !important;
  color: #fff !important;
}


.curriculum-table tr.table-primary td{
  background-color: #ae3f00 !important;

  color: #fff !important;
}

.curriculum-table tr.table-primary td:hover{
  color: #fff !important;
}

.curriculum-table thead th{
  background-color: #aa9d49 !important;
  color: #fff !important;
}

.curriculum-table-container{
  padding: 10px  !important;
}

@media (max-width: 991.98px) {
  .mobile-gap {
      gap: 10px !important;
      justify-content: center;
  }

  .navbar>.container{
    padding-top:70px;
  }
}

@media (max-width: 991.98px) {
  .mobile-center {
      text-align: center !important;
      display: flex;
      justify-content: center;
  }



}

.navbar-toggler {
  background: #ae3f00 !important;
}

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}



.dropdown-menu{
  background-color: #ae3f00 !important;
}

.mobile-submenu-container.active{
  z-index: 9999
}

.mobile-submenu-container{
  background-color: #ae3f00 !important;
}

@media (max-width: 991.98px) {
  .navbar-collapse{
    background-color: #ae3f00 !important;
  }
  
  
  .navbar-collapse .navbar-nav .nav-link{
    color: #fff !important;
  }
  
  .navbar-collapse .header .navbar-nav .nav-link:hover{
    color: #fff !important;
  }
  .shape-image-animation{
    display:none;
  }
  /* Prevent dropdowns from opening on hover in mobile */
  .navbar-nav .dropdown:hover > .dropdown-menu,
  .navbar-nav .dropdown-submenu-item:hover > .dropdown-menu,
  .navbar-nav .dropdown-item.dropdown-toggle:hover + .dropdown-menu {
    display: none !important;
    pointer-events: none !important;
  }
  /* Only show dropdowns when JS adds .show or .active */
  .navbar-nav .dropdown-menu.show,
  .navbar-nav .dropdown-menu.active {
    display: block !important;
    pointer-events: auto !important;
  }
}

.main-content a{
  color: #aa9d49 !important;
  color: #b7946c !important;
}

.main-content a:hover{
  color: #aa9d49 !important;
}
.elementor-130 .elementor-element.elementor-element-65a126e .staff-section{
 background-color:unset !important;
}

@media (max-width: 991.98px) {
    .footer-bottom .col-md-6 {
        text-align: center !important;
    }
}

.staff-image img {
    width: 100% !important;
    height: 350px !important;
    object-fit: cover;
    transition: transform 0.5s ease;
}


.footer-links a:hover{
color: rgba(248, 249, 250, 0.7) !important;
}


