/*
Theme Name: Log 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: log-theme
*/

/* Import your existing CSS files here */ 

/* Global styles */
:root {
    --primary-color: #00aeef !important; /* Lighter blue accent color */
    --primary-rgb: 77, 123, 255;
    --secondary-color: #00aeef; /* Main background color */
    --dark-color: #1d1d1f; /* Dark text color */
    --light-color: #f8f9fa; /* Light background color */
    --gray-color: #6c757d; /* Secondary text color */
    --footer-color: #353739; /* Footer background color */
    --text-color: #55545e;
    --light-gray: #e9ecef;
    --font-primary: "Roboto", sans-serif;
    --font-secondary: "Open Sans", sans-serif;
  }

  .elementor-edit-area-active .e-con {
    --primary-color: #94C7E9 !important; /* Your primary color */
    --secondary-color: #6c757d !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: #fff;
  }
  
  .header.scrolled {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    animation: slideDown 0.5s ease forwards;
  }
  
  .header.scrolled .navbar img {
    max-height: 90px !important;
	  max-width:100px;
    width: 100% !important;
  }
  
  @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-nav.ms-auto li.menu-item:not(ul.dropdown-menu li){
  padding:0 15px;
 }
  
  .navbar-dark .navbar-nav .nav-link {
    color: #2c3e50;
    font-weight: 500;
    padding: 0 0;
    font-size: 16px;
    position: relative;
    transition: color 0.3s ease;
    display:inline-block;
  }
  
  .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: #00aeef;
    font-weight: 600;
  }
  
  .navbar-dark .navbar-nav .nav-link.active::after {
    width: 100%
    opacity: 1;
  }
  

  
  /* Add scale effect for active page */
  .navbar-dark .navbar-nav .nav-item {
    transform: translateY(0);
    transition: transform 0.3s ease;
  }
  
 
  .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 */
    overflow: hidden;
    margin-top: 100px;
  }
  
  .hero-content {
    padding-top: 120px;
    padding-bottom: 50px;
    position: relative;
    z-index: 5;
  }
  
  .tagline {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 30px;
    margin-bottom: 30px;
    position: relative;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.3s;
  }
  
  .hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.5s;
  }
  
  .hero-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.7s;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
  }
  
  .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.9s;
  }
  
  /* Floating elements */
  .hero-floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1;
  }
  
  .hero-floating-element-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    right: 10%;
    animation: float 8s ease-in-out infinite;
  }
  
  .hero-floating-element-2 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    right: 20%;
    animation: float 12s ease-in-out infinite 1s;
  }
  
  .hero-floating-element-3 {
    width: 50px;
    height: 50px;
    top: 30%;
    left: 10%;
    animation: float 9s ease-in-out infinite 0.5s;
  }
  
  .hero-floating-shape {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .floating-circle {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 50%;
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: pulse 4s ease-in-out infinite;
    overflow: hidden;
  }
  
  .floating-circle::before,
  .floating-circle::after {
    content: '';
    position: absolute;
    background: linear-gradient(135deg, #94C7E9, #00aeef);
    border-radius: 40%;
  }
  
  .floating-circle::before {
    width: 120%;
    height: 120%;
    top: -60%;
    left: -20%;
    opacity: 0.5;
    animation: rotate 12s linear infinite;
  }
  
  .floating-circle::after {
    width: 100%;
    height: 100%;
    top: -40%;
    left: -30%;
    opacity: 0.3;
    animation: rotate 8s linear infinite reverse;
  }
  
  /* Animations */
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-20px);
    }
  }
  
  @keyframes pulse {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
  }
  
  @keyframes rotate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  /* Hero buttons */
  .hero-btn {
    padding: 12px 20px; /* Base padding: text part */
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    text-decoration: none; /* Ensure no underline */
    border: 1px solid transparent; /* Default border, can be overridden */
  }

  .hero-btn-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #006266; /* Dark teal icon circle */
    color: #fff; /* White icon color */
    margin-left: 15px;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }

  .hero-btn:hover .hero-btn-icon-wrap {
    background-color: #004c4f; /* Darker teal on hover */
    transform: scale(1.05); /* Slight grow effect on icon */
  }

  .hero-btn-icon-wrap i {
    font-size: 16px;
  }
  
  .btn-primary.hero-btn {
    background-image: linear-gradient(to right, #94C7E9, #00aeef);
    color: var(--light-color); /* Light text for gradient button */
    border-color: transparent; /* Ensure no border if not needed */
    box-shadow: 0 10px 20px rgba(21, 95, 170, 0.3);
  }
  
  .btn-primary{ /* General .btn-primary, ensure it doesn't conflict or set border if not wanted for hero */
    border:none; /* This was present, keeping it if it's a global reset for primary buttons */
  }
  
  .btn-primary.hero-btn:hover {
    background-image: linear-gradient(to right, #00aeef, #94C7E9); /* Darker gradient */
    color: var(--light-color);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(21, 95, 170, 0.4);
  }

  
  
  .btn-outline-secondary.hero-btn {
    background-image: linear-gradient(to right, #d71921, #e75c61); /* Darker gradient */

    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); /* Subtle shadow */
  }
  
  .btn-outline-secondary.hero-btn:hover {
    background-image: linear-gradient(to right, #e75c61, #d71921); /* Darker gradient */
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
  
  /* Responsive adjustments */
  @media (max-width: 992px) {
    .hero-title {
      font-size: 42px;
    }
    
    .hero-text {
      font-size: 16px;
    }
    
    .hero-floating-element-1 {
      width: 80px;
      height: 80px;
    }
    
    .hero-floating-element-2 {
      display: none;
    }
  }
  
  @media (max-width: 768px) {
    .hero-title {
      font-size: 36px;
    }
    
    .hero-buttons {
      flex-direction: column;
    }
    
    /* .hero-btn {
      width: 100%;
    } */
    
    .hero-floating-element-1,
    .hero-floating-element-3 {
      display: none;
    }
  }
  
  /* 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;
  }
  
  /* Modern Media Container */
  .welcome-media-container {
    position: relative;
    z-index: 2;
  }
  
  .welcome-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
  }
  
  .welcome-image-wrapper:hover {
    transform: perspective(1000px) rotateY(-2deg) translateY(-10px);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.2);
  }
  
  .welcome-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    filter: contrast(1.05);
  }
  
  .welcome-image-wrapper:hover .welcome-image {
    transform: scale(1.05);
  }
  
  .welcome-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(21, 95, 170, 0.2) 0%, rgba(21, 95, 170, 0) 60%);
    z-index: 1;
  }
  
  /* Badge */
  .welcome-badge {
    display: flex;
    justify-content: center;
    margin-top: -70px;
    position: relative;
    z-index: 3;
  }
  
  .welcome-badge-holder {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    padding: 10px;
    background: linear-gradient(135deg, #94C7E9 0%, #00aeef 100%);
    box-shadow: 0 15px 35px rgba(21, 95, 170, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulseGlow 2s infinite, floatBadge 6s ease-in-out infinite;
  }
  
  @keyframes floatBadge {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  
  .welcome-badge-holder::before {
    content: '';
    position: absolute;
    inset: 8px;
    background: white;
    border-radius: 50%;
    z-index: 0;
  }
  
  .welcome-badge-holder img {
    position: relative;
    width: 125px;
    height: 125px;
    border-radius: 50%;
    object-fit: contain;
    z-index: 1;
    transition: transform 0.3s ease;
  }
  
  .welcome-badge-holder:hover img {
    transform: scale(1.05) rotate(5deg);
  }
  
  /* Decorative Shapes */
  .welcome-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(148, 199, 233, 0.3), rgba(21, 95, 170, 0.2));
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }
  
  .welcome-shape.shape-1 {
    width: 120px;
    height: 120px;
    top: 20px;
    left: -60px;
    animation: float 8s ease-in-out infinite;
    z-index: 1;
  }
  
  .welcome-shape.shape-2 {
    width: 80px;
    height: 80px;
    bottom: 40px;
    right: 20px;
    animation: float 12s ease-in-out infinite 1s;
    z-index: 1;
  }
  
  .welcome-bg-shape {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(148, 199, 233, 0.15), rgba(21, 95, 170, 0.05));
    top: -0;
    right: -200px;
    z-index: 0;
  }
  
  /* Content Card */
  .welcome-content-card {
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
  }
  
  .welcome-content-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  }
  
  .welcome-content {
    position: relative;
  }
  
  .welcome-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    background-color: rgba(var(--primary-rgb), 0.1);
    padding: 10px 20px;
    border-radius: 30px;
    margin-bottom: 25px;
    color: var(--primary-color);
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.3s;
  }
  
  .welcome-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.5s;
  }
  
  .title-separator {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #94C7E9, #00aeef);
    margin-bottom: 25px;
    border-radius: 2px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.6s;
  }
  
  .welcome-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-color);
    margin-bottom: 30px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.7s;
  }
  
  .welcome-btn {
    margin-top: 10px;
    padding: 12px 28px;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 500;
    background-image: linear-gradient(to right, #94C7E9, #00aeef);
    background-color: transparent; /* Fallback */
    border: none;
    box-shadow: 0 10px 20px rgba(21, 95, 170, 0.2);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.8s;
  }
  
  .welcome-btn:hover {
    background-image: linear-gradient(to right, #82b8d9, #124c8a); /* Darker gradient */
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(21, 95, 170, 0.3);
  }
  
  .welcome-btn i {
    transition: transform 0.3s ease;
  }
  
  .welcome-btn:hover i {
    transform: translateX(5px);
  }
  
  /* Responsive styles */
  @media (max-width: 992px) {
    .welcome-section {
      padding: 70px 0;
    }
  
    .welcome-content-card {
      padding: 30px;
      margin-top: 30px;
    }
  
    .welcome-title {
      font-size: 30px;
    }
    
    .welcome-badge-holder {
      width: 130px;
      height: 130px;
    }
    
    .welcome-badge-holder img {
      width: 110px;
      height: 110px;
    }
  }
  
  @media (max-width: 768px) {
    .welcome-section {
      padding: 50px 0;
    }
  
    .welcome-title {
      font-size: 28px;
    }
    
    .welcome-badge {
      margin-top: -50px;
    }
    
    .welcome-badge-holder {
      width: 120px;
      height: 120px;
    }
    
    .welcome-badge-holder img {
      width: 100px;
      height: 100px;
    }
    
    .welcome-shape.shape-1,
    .welcome-shape.shape-2 {
      display: none;
    }
  }
  
  @media (max-width: 576px) {
    .welcome-content-card {
      padding: 25px 20px;
    }
    
    .welcome-title {
      font-size: 24px;
    }
    
    .welcome-subtitle {
      font-size: 13px;
      padding: 8px 15px;
    }
  }
  
  /* Badge Image Holder */
  .welcome-badge-holder {
    position: relative;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    padding: 15px;
    background: #d71921;
    box-shadow: 0 15px 35px rgba(190, 39, 45, 0.2) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulseGlow 2s infinite;
  }
  
  .welcome-badge-holder::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(62, 102, 251, 0.5) 0%, rgba(39, 69, 199, 0.5) 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(62, 102, 251, 0.2);
    }
    50% {
      box-shadow: 0 15px 35px rgba(62, 102, 251, 0.4);
    }
    100% {
      box-shadow: 0 15px 35px rgba(62, 102, 251, 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: #2c3e50;
    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: #2953e3;
    border-color: #2953e3;
    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 {
      display:inline-block !important
    }
  
    .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: 13px;
      padding: 8px 15px;
    }
  
    .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.2);
    color: var(--light-color);
    font-size: 16px;
    transition: all 0.3s ease;
  }
  
  .social-icon:hover {
    background-color: #94C7E9;
    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;
    display: inline-block;
  }
  
  .footer-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #d71921;
    transition: opacity 0.3s ease;
  }
  
  .footer-heading:hover::after {
    opacity: 0.8;
  }
  
  .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.8);
    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: #94C7E9 !important;
  }

  .footer-link:hover{
    color: #94C7E9 !important;
  }
  
  .footer-links a:hover i {
    transform: translateX(3px);
  }
  
  .footer-contact li {
    display: flex;
    align-items: flex-start;
    color: rgba(248, 249, 250, 0.8);
    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: #f0f5f8 !important;
    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: #00aeef;  /* 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-image: linear-gradient(to right, #94C7E9, #00aeef);
    background-color: transparent; /* Fallback */
    border: none;
    box-shadow: 0 10px 20px rgba(21, 95, 170, 0.3); /* Adjusted shadow color */
  }
  
  .btn-primary.cta-btn:hover {
    background-image: linear-gradient(to right, #82b8d9, #124c8a); /* Darker gradient */
    background-color: transparent; /* Fallback */
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(18, 76, 138, 0.4); /* Adjusted shadow color */
  }
  
  /* 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;
    background: linear-gradient(135deg, #d71921 0%, #ff6b6b 100%);
    color: #fff;
    overflow: hidden;
  }
  

  .mission-content {
    position: relative;
    z-index: 1;
    padding: 3rem 2rem;
    border-left: 4px solid rgba(255, 255, 255, 0.3);
    margin-left: 2rem;
  }
  
  .mission-content::before {
    content: '"';
    position: absolute;
    left: -2rem;
    top: -3rem;
    font-size: 8rem;
    font-family: Georgia, serif;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
  }
  
  .mission-content::after {
    content: '"';
    position: absolute;
    right: 0;
    bottom: -5rem;
    font-size: 8rem;
    font-family: Georgia, serif;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
  }
  
  .mission-text {
    font-size: 2rem;
    line-height: 1.6;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.5px;
  }
  
  .mission-text p {
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  }
  
  .mission-text p:first-child {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
  }
  
  .mission-text p:last-child {
    margin-bottom: 0;
    font-size: 1.8rem;
    opacity: 0.9;
  }
  
  @media (max-width: 991px) {
    .mission-section {
        padding: 100px 0;
    }
    
    .mission-text {
        font-size: 1.8rem;
    }
    
    .mission-text p:first-child {
        font-size: 2.2rem;
    }
    
    .mission-text p:last-child {
        font-size: 1.6rem;
    }
  }
  
  @media (max-width: 768px) {
    .mission-section {
        padding: 80px 0;
    }
    
    .mission-content {
        margin-left: 1rem;
        padding: 2rem 1.5rem;
    }
    
    .mission-content::before {
        font-size: 6rem;
        left: -1.5rem;
        top: -2rem;
    }
    
    .mission-content::after {
        font-size: 6rem;
        bottom: -4rem;
    }
    
    .mission-text {
        font-size: 1.5rem;
    }
    
    .mission-text p:first-child {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .mission-text p:last-child {
        font-size: 1.4rem;
    }
  }
  
  /* 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: #2c3e50;
    margin-bottom: 20px;
    position: relative;
  }

  .content-title, .semester-title {

    color: #2c3e50 !important;

  }
  
  .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); */
    color: #00aeef !important;
  }
  
  .curriculum-table .table-dark {
    background-color: #00aeef;
    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: #00aeef;
    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: 100px;
	  max-width:100px;
    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: #00aeef;
    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: #00aeef;
    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;
    position: relative;
    /* margin-top: -2rem; */
    overflow: hidden;
    margin-top: 120px;
  }
  
  .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;
    font-weight: 600;
    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: #2c3e50;
    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: #00aeef;
    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: #00aeef;
    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: #00aeef;
    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 {
    transform: scale(.85) translateY(-0.5rem) translateX(0.15rem);
    color: #6C757D;

  }
  
  .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: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.75rem;
  }
  
  .info-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), #00aeef);
    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: #00aeef;
  }
  
  .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: #2c3e50;
    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: linear-gradient(to right, var(--primary-color), #00aeef);
    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: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    margin-bottom: 2rem;
    position: relative;
    border-bottom: 3px solid #94C7E9;
    padding: 0;
  }
  
  .staff-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(21, 95, 170, 0.15);
    border-bottom-color: #00aeef;
  }
  
  .staff-image {
    position: relative;
    overflow: hidden;
    height: auto;
  }
  
  .staff-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .staff-card:hover .staff-image img {
    transform: scale(1.08);
  }
  
  .social-links {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
    transition: bottom 0.3s ease;
  }
  
  .staff-card:hover .social-links {
    bottom: 0;
  }
  
  .social-link {
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    color: #fff;
  }
  
  .staff-info {
    padding: 1.5rem;
    text-align: center;
    background: #fff;
    position: relative;
  }
  
  .staff-card:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(148, 199, 233, 0.1), rgba(21, 95, 170, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }
  
  .staff-card:hover:after {
    opacity: 1;
  }
  
  .staff-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #00aeef;
    transition: color 0.3s ease;
  }
  
  .staff-card:hover .staff-name {
    color: #00aeef;
  }
  
  .staff-position {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .staff-specialty,
  .staff-contact-info {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
    transition: color 0.3s ease;
  }
  
  .staff-contact-info {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .staff-contact-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
  }
  
  .staff-phone, .staff-fax, .staff-email, .staff-cv {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
  }
  
  .staff-phone i, .staff-fax i, .staff-email i, .staff-cv i {
    margin-right: 10px;
    min-width: 16px;
    display: inline-block;
  }
  
  .staff-contact-info p:last-child {
    margin-bottom: 0;
  }
  
  .staff-contact-info i {
    font-size: 0.9rem;
    color: #00aeef;
    transition: transform 0.3s ease;
  }
  
  .staff-contact-info a {
    color: #00aeef;
    transition: color 0.3s ease;
    text-decoration: none;
    overflow-wrap: break-word;
    word-break: break-word;
  }
  
  .staff-contact-info a:hover {
    color: #94C7E9;
  }
  
  @media (max-width: 768px) {
    .staff-image {
      height: auto;
    }
    
    .staff-name {
      font-size: 1.1rem;
    }
    
    .staff-position {
      font-size: 0.9rem;
    }
  }
  
  /* 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: #00aeef;
    color: #fff;
  }

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

  .dropdown-item:hover{
    background: #94C7E9;
  }

  .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 {
  content: "";
  display: inline-block;
  margin-left: 0;
  vertical-align: middle;
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
  /* Remove float and margin-top */
}

/* For mobile devices */
@media (max-width: 991.98px) {

  
  .shape-image-animation{
    display:none;
  }

  .tagline{
    font-size:13px;
  }

  .mobile-center{
    text-align:center !important;
    display:flex;
    justify-content:center;

  }

  .mobile-gap{
    gap:10px !important;
  }

  .header:not(.scrolled){
    padding-top:82px !important;
  }



  .footer-bottom .dby{
    display:block !important;
    text-align:center !important;
  }


  .footer-bottom .footer-text{
    font-size:13px !important;
  }

  .footer-bottom .col-md-6{
    text-align:center !important;
  }

}



  .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:-35px !important;
}


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


@media (max-width: 991.98px) {
  .navbar img{
    max-height: 90px;
	  max-width:100px;
  }
}


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


.e-con-inner{
  gap:0 !important;
}

.content-title {
  color: var(--secondary-color);
}

.welcome-subtitle, .accordion-subtitle{
  color: #00aeef;
}


.content-title::after{
  background: linear-gradient(to right, #94C7E9, #00aeef);
}

.curriculum-table tr.table-primary td{
  background: #b9def7;
  color: var(--secondary-color);

}

.curriculum-table tbody td{
  text-transform: uppercase;
}

.page-title-section {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.shape-image-animation svg{
  fill: var(--light-color);
}

.dropdown-item.active, .dropdown-item:active{
  background: #94C7E9 !important;
}

.menu-item-has-children:hover > .dropdown-menu{
  padding:0;
}

/* Fix caret alignment for long dropdown items */
.dropdown-submenu-item > a.dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  white-space: normal; /* allow text to wrap if needed */
  gap: 8px; /* space between text and caret */
}

.dropdown-submenu-item > a.dropdown-toggle::after {
  content: "";
  display: inline-block;
  margin-left: 0;
  vertical-align: middle;
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
  /* Remove float and margin-top */
}


.language-selector a{
  text-decoration: none;
}

.nav-pills .nav-link.active
{
  background-image: linear-gradient(to right, #94C7E9, #00aeef);
}

.nav-pills .nav-link .tab-icon{
  background: #E9EDFB;
}

.nav-pills .nav-link .tab-icon i{
  color: #00aeef;
}

/* Welcome Section - Καινοτόμο ΠΜΣ */
.welcome-section {
    background-color: var(--light-color);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Add new styles for welcome text truncation */
.welcome-text-content {
    position: relative;
}

.welcome-text-truncated,
.welcome-text-full {
    transition: all 0.3s ease-in-out;
}

.welcome-text-toggle {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.welcome-text-toggle:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

.welcome-text-toggle:focus {
    box-shadow: none;
    outline: none;
}

.welcome-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.welcome-buttons .welcome-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    color: #fff !important;
}

.welcome-buttons .welcome-btn:hover,
.welcome-buttons .welcome-btn:focus,
.welcome-buttons .welcome-btn:active {
    color: #fff !important;
}

.welcome-text-toggle i {
    color: #fff;
    transition: transform 0.3s ease;
}



.welcome-text-toggle:hover i.fa-arrow-up {
    transform: translateY(-5px);
}

@media (max-width: 576px) {
    .welcome-buttons {
        flex-direction: column;
    }
    
    .welcome-buttons .welcome-btn {
        width: 100%;
    }
}

.step-number{
  background: linear-gradient(to right, #94C7E9, #00aeef);

  
}


.elementor-91 .elementor-element.elementor-element-74b4d59 .program-section, .elementor-130 .elementor-element.elementor-element-65a126e .staff-section{
  background: inherit !important;
}


.main-content-wrapper{
  padding-bottom:48px;
}

.staff-card i {
  color: #00aeef;
}

.elementor-130 .elementor-element.elementor-element-65a126e .section-divider{
  background: linear-gradient(to right, #94C7E9, #00aeef);
}

.staff-contact-info {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.staff-card i {
    color: #00aeef;
  }

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

  .staff-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #00aeef;
    transition: color 0.3s ease;
  }

  .staff-contact-info {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }

  .staff-card{
    position: relative;
  }

  .staff-card:after
 {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(148, 199, 233, 0.1), rgba(21, 95, 170, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.section-title {

    font-size: 38px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    position: relative;

}

.contact-form-wrapper .section-title::after, .info-title::after {
   background: linear-gradient(to right, #94C7E9, #00aeef);
}

.contact-info-wrapper a {
  color: #00aeef;
}

.contact-info-wrapper a:hover {
  color: #94C7E9;;
}


.card-icon i{
  color: #00aeef;
}

.card-icon{
background: #E9EDFB;
}

.card-icon i:hover{
  color: #fff;
}

.card-icon:hover{
background: #94C0E2;
}

/* EBL Image Gallery Styles */
.ebl-gallery-container {
  position: relative;
  margin-bottom: 3rem;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  background-color: #fff;
}

.gallery-item:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

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

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

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

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

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

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

.gallery-item:hover .gallery-icon {
  transform: scale(1);
  opacity: 1;
}

.gallery-icon:hover {
  background-color: #00aeef;
  color: #fff;
  transform: scale(1.1);
}

.gallery-caption {
  padding: 15px;
  text-align: center;
}

.show-more-btn {
  display: inline-block;
  color: #00aeef;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 30px;
  border: 2px solid #00aeef;
  border-radius: 30px;
  transition: all 0.3s ease;
  font-size: 16px;
}

.show-more-btn:hover {
  background-color: #00aeef;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(21, 95, 170, 0.2);
}

@media (max-width: 991px) {
  .gallery-img-container {
    aspect-ratio: 1/1;
  }
}

@media (max-width: 767px) {
  .gallery-item {
    margin-bottom: 15px;
  }
  
  .gallery-img-container {
    aspect-ratio: 4/3;
  }
  
  .gallery-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

.accordion-section .curriculum-table-container{
  padding:0 !important;

}


.accordion-section .curriculum-table-container .container{
  padding:0 !important;
}


.section-title::after{
  background: linear-gradient(to right, #94C7E9, #00aeef) !important;
}

/*--------------------------------------------------------------
# Single Course Page
--------------------------------------------------------------*/
.single-course-page .page-title-section {
  padding: 8rem 0 8rem;
  text-align: center;
}

.single-course-page .course-semester-banner {
  display: inline-block;
  background-color: rgba(var(--primary-rgb), 0.1);
  color: var(--primary-color);
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.single-course-page .course-main-title {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 0;
}



.course-main-content .course-featured-image img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
}

.course-section-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #2c3e50 !important;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(var(--primary-rgb), 0.2);
}

.course-details-title{
  color: #2c3e50 !important;
}

.course-section-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 70px;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), #00aeef);
  border-radius: 3px;
}

.course-section-content p,
.course-section-content div {
  color: var(--text-color);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.course-section-content strong {
  color: var(--secondary-color);
  font-weight: 600;
}

.course-meta-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0; /* Remove default ul margin */
}

.course-meta-list li {
  color: var(--text-color);
  line-height: 1.8;
  font-size: 1rem;
  padding: 0.5rem 0 0.5rem 1.75rem; /* Increased padding for icon */
  position: relative;
  border-bottom: 1px dashed var(--light-gray);
}

.course-meta-list li:last-child {
  border-bottom: none;
}

.course-meta-list li::before {
  content: "\f058"; 
  font-family: "Font Awesome 6 Free";
  font-weight: 900; 
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 24px; /* Adjusted for better vertical alignment */
  transform: translateY(-50%);
  font-size: 1em; /* Icon size relative to text */
}

.bibliography-list li::before {
 content: "\f02d"; 
}

.assessment-content ul,
.assessment-content ol {
    padding-left: 1.5rem; /* Indent lists within assessment content */
    margin-bottom: 1rem;
}

.assessment-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.assessment-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.course-sidebar .course-details-card {
  background-color: #f8f9fa;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 120px;
}

.course-details-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary-color);
  position: relative;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(var(--primary-rgb), 0.2);
}

.course-details-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), #00aeef);
  border-radius: 3px;
}

.course-meta-details li {
  padding: 0.7rem 0; /* Increased padding */
  border-bottom: 1px solid #e9ecef;
  font-size: 0.95rem;
  color: var(--text-color);
  display: flex;
  flex-wrap: wrap; /* Allow wrapping for long content */
  justify-content: space-between;
  align-items: flex-start; /* Align items to the top */
}

.course-meta-details li:last-child {
  border-bottom: none;
}

.course-meta-details li strong {
  color: var(--secondary-color);
  margin-right: 0.5rem;
  font-weight: 600;
  flex-shrink: 0; /* Prevent strong tag from shrinking */
}

.course-meta-details li span {
  text-align: right; /* Align the value to the right */
  flex-grow: 1; /* Allow span to take remaining space */
}

.course-meta-details li.course-website-link span, 
.course-meta-details li.course-website-link a {
  text-align: left; /* Keep website link left-aligned if it wraps */
}

.course-meta-details li a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  display: inline-flex; /* For icon alignment */
  align-items: center;
}

.course-meta-details li a:hover {
  color: #00aeef;
  text-decoration: underline;
}

.course-meta-details li a i {
    font-size: 0.85em; /* Slightly smaller icon */
}


@media (max-width: 991px) {
  .single-course-page .course-main-title {
    font-size: 2.5rem;
  }
  .single-course-page .page-title-section {
    padding: 6rem 0 6rem;
  }
  .course-sidebar .course-details-card {
    position: static;
    margin-top: 2rem;
  }
}

@media (max-width: 767px) {
  .single-course-page .course-main-title {
    font-size: 2rem;
  }
   .single-course-page .page-title-section {
    padding: 5rem 0 5rem;
  }
  .course-section-title {
    font-size: 1.5rem;
  }
  .course-details-title {
    font-size: 1.3rem;
  }
  .course-meta-details li {
    flex-direction: column; /* Stack label and value vertically */
    align-items: flex-start;
  }
  .course-meta-details li strong {
    margin-bottom: 0.25rem; /* Space between label and value */
  }
  .course-meta-details li span,
  .course-meta-details li a {
    text-align: left; /* Align value to the left on mobile */
  }
}

/*--------------------------------------------------------------
# Single Course Page Improvements
--------------------------------------------------------------*/


.single-course-page .page-title-section {
  padding: 8rem 0 8rem;
  text-align: center;
  background-size: cover; /* Ensure background image covers the area */
  background-position: center; /* Center the background image */
  position: relative; /* For overlay and wave */
}

.single-course-page .course-semester-banner {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.15); /* Adjusted for dark bg */
  color: #fff; /* Adjusted for dark bg */
  padding: 0.6rem 1.75rem;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(3px);
}

.single-course-page .course-main-title {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 0;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.course-content-wrapper.container {
    padding-top: 3rem; /* Reduced top padding as title section is large */
    padding-bottom: 3rem;
}

.course-main-content article,
.course-sidebar .course-details-card {
  background-color: #fff; /* White background for content and sidebar card */
  border-radius: 12px;
  padding: 2rem; /* Consistent padding */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07); /* Softer shadow */
  margin-bottom: 2rem; /* Spacing for mobile */
}

.course-sidebar .course-details-card {
    padding: 1.75rem; /* Slightly less padding for sidebar card if preferred */
}

.course-main-content .course-featured-image {
  border-radius: 8px; /* Match card radius */
  margin-bottom: 2rem; /* Increased spacing */
}

.course-main-content .course-featured-image img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 8px; /* Consistent rounding */
}

.course-section {
  margin-bottom: 2.5rem; /* Consistent bottom margin for sections */
}
.course-section:last-child {
  margin-bottom: 0;
}

.course-section-title {
  font-size: 1.6rem; /* Slightly adjusted size */
  font-weight: 700; /* Bolder */
  color: var(--secondary-color);
  margin-bottom: 1.25rem; /* Adjusted margin */
  position: relative;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--light-gray); /* Softer border */
}

.course-section-title::after {
  content: '';
  position: absolute;
  bottom: -1px; /* Sits on top of the border */
  left: 0;
  width: 70px;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), #00aeef);
  border-radius: 3px;
}

.course-section-content p,
.course-section-content div:not(.assessment-content ul):not(.assessment-content ol) { /* Be more specific */
  color: var(--text-color);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.course-section-content div > *:last-child {
    margin-bottom: 0;
}

.course-section-content strong {
  color: var(--secondary-color);
  font-weight: 600;
}

.course-meta-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.course-meta-list li {
  color: var(--text-color);
  line-height: 1.7;
  font-size: 0.95rem; /* Slightly smaller for lists */
  padding: 0.6rem 0 0.6rem 2rem; /* Icon spacing */
  position: relative;
  border-bottom: 1px dashed #e0e0e0; /* Lighter dash */
}

.course-meta-list li:last-child {
  border-bottom: none;
}

.course-meta-list li::before {
  content: "\f058"; 
  font-family: "Font Awesome 6 Free";
  font-weight: 900; 
  color: var(--primary-color);
  position: absolute;
  left: 0.25rem; /* Adjusted left position */
  top: 24px; 
  transform: translateY(-50%);
  font-size: 0.9em; 
}

.bibliography-list li::before {
 content: "\f02d"; 
}

.assessment-content ul,
.assessment-content ol {
    padding-left: 1.5rem; 
    margin-bottom: 1rem;
}

.assessment-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: var(--text-color);
}

.assessment-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Sidebar Card Enhancements */
.course-sidebar .course-details-card {
  position: sticky;
  top: 100px; /* Adjust if scrolled header height changes */
  /* padding already set above */
}

.course-details-title {
  font-size: 1.4rem; /* Adjusted size */
  font-weight: 700;
  color: var(--secondary-color);
  position: relative;
  padding-bottom: 0.75rem;
  margin-bottom: 1.25rem; /* Adjusted margin */
  border-bottom: 1px solid var(--light-gray);
}

.course-details-title::after {
  content: '';
  position: absolute;
  bottom: -1px; 
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), #00aeef);
  border-radius: 3px;
}

.course-meta-details li {
  padding: 0.75rem 0; 
  border-bottom: 1px solid #e9ecef;
  font-size: 0.9rem;
  color: var(--text-color);
  display: flex;
  flex-wrap: nowrap; /* Prevent wrapping unless necessary */
  justify-content: space-between;
  align-items: center; /* Center align items vertically */
  gap: 0.5rem; /* Add gap between strong and span */
}

.course-meta-details li:last-child {
  border-bottom: none;
}

.course-meta-details li strong {
  color: var(--secondary-color);
  font-weight: 600;
  flex-shrink: 0; 
  white-space: nowrap;
}

.course-meta-details li span {
  text-align: right; 
  flex-grow: 1; 
  color: var(--gray-color); /* Slightly lighter text for values */
}

.course-meta-details li.course-website-link {
    align-items: flex-start; /* Allow link to wrap if very long */
}

.course-meta-details li.course-website-link strong {
    padding-top: 0.15em; /* Align with link text if it wraps */
}

.course-meta-details li a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  display: inline-flex; 
  align-items: center;
  text-align: right; /* Ensure link text also aligns right */
}

.course-meta-details li a:hover {
  color: #00aeef;
  text-decoration: underline;
}

.course-meta-details li a i {
    font-size: 0.85em; 
    margin-left: 0.3rem;
}


/* Responsive adjustments for the improved design */
@media (max-width: 991px) {
  .single-course-page .course-main-title {
    font-size: 2.5rem;
  }
  .single-course-page .page-title-section {
    padding: 7rem 0 7rem; /* Adjusted padding */
  }
  .course-sidebar .course-details-card {
    position: static;
    margin-top: 0; /* Already has margin-bottom from article */
  }
  .course-main-content article {
    padding: 1.5rem;
  }
  .course-sidebar .course-details-card {
    padding: 1.5rem;
  }
}

@media (max-width: 767px) {
  .single-course-page .course-main-title {
    font-size: 2rem;
  }
   .single-course-page .page-title-section {
    padding: 6rem 0 6rem; /* Adjusted padding */
  }
  .course-section-title {
    font-size: 1.4rem;
  }
  .course-details-title {
    font-size: 1.25rem;
  }
  .course-meta-details li {
    flex-wrap: wrap; /* Allow wrapping on small screens */
  }
  .course-meta-details li strong {
    margin-bottom: 0.15rem; 
    min-width: 100%; /* Make label take full width initially */
  }
  .course-meta-details li span,
  .course-meta-details li a {
    text-align: left; 
    min-width: 100%; /* Make value take full width */
  }
  .course-main-content article,
  .course-sidebar .course-details-card {
    padding: 1.25rem;
  }
}

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

.dropdown-item:focus, .dropdown-item:hover{
  background-color:inherit;
}

.cta-title::after{
  background: linear-gradient(to right, #94C7E9, #00aeef) !important;
}


a, .course-meta-details li a{
  color: #00aeef;
}

a:hover, .course-meta-details li a{
  color: #94C7E9
}

.main-content p{
  color: var(--gray-color);
}

p strong{
  color: #2c3e50
}

body{
  color:#2c3e50
}


.main-content-wrapper table{
  width:100%;
}

.btn-primary .hero-btn-icon-wrap{
  background: #fff;
}

.btn-primary .hero-btn-icon-wrap i{
  color: #00aeef;
}


.btn-primary .hero-btn-icon-wrap:hover{
  background: #fff;
}


.btn-primary:hover > .hero-btn-icon-wrap{
  background: #fff;
}



.btn-outline-secondary .hero-btn-icon-wrap{
  background: #fff;
}

.btn-outline-secondary .hero-btn-icon-wrap i{
  color: #d71921;
}

.btn-outline-secondary:hover > .hero-btn-icon-wrap{ 
  background: #fff;
}

.btn-outline-secondary:hover > .hero-btn-icon-wrap i{
  color: #d71921;
}

.btn-outline-secondary:hover{
  background: #fff;
  border-color:transparent;
}

.navbar-toggler{
  background: #00aeef;
}
.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");
}

.navbar-dark .navbar-nav .nav-link{
  color: #2c3e50;
}

.navbar-dark .navbar-nav .nav-link:hover{
  color: #2c3e50;
}

.navbar-dark .navbar-nav .nav-link.active{
  color: #2c3e50;
}

.collapse.show .nav-link{
  color: #fff !important;
}

.navbar-collapse .dropdown-menu{
  background-color: #00aeef !important;
}

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

.footer, .cta-section{
  overflow: hidden;
}

.page-title-section{
  overflow: hidden;
}

.elementor-element-6d9e7ec.elementor-widget{
  overflow: hidden;
}

.accordion-header{
  font-size:1.4rem;
  font-weight: 600;
  border-left: 4px solid var(--primary-color);
  margin-bottom:0 !important;
  background: #fff !important;
}

.ebl-calendar-accordion{
  padding: 5rem 0;
}


.accordion-item{
  /* background:transparent; */
  border:none;
  margin-bottom:15px;
}

.ebl-calendar-accordion .accordion-body{
  border:none !important;
  padding-top:1rem !important;
}

.ebl-calendar-accordion .accordion-header::after{
  font-size:15px;
}


.accordion-body h4{
  font-size:20px;
  font-weight: 600;
}


.ebl-calendar-accordion .accordion-header.active{
  background:unset !important;
}

.footer-links  p{
  color: rgba(248, 249, 250, 0.8);
  font-size: 15px;
  margin-bottom:0;
}
.navbar-dark .navbar-nav .nav-link {
  position: relative;
  /* make sure the link is the positioning “anchor” */
}

/* our red bar, hidden at first */
.navbar-dark .navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: red;
  transition: width 0.3s ease;
}

/* hover state */
.navbar-dark .navbar-nav .nav-link:hover::before {
  width: 100%;
}

/* active state if you’re manually adding .active to the <a> */
.navbar-dark .navbar-nav .nav-link.active::before {
  width: 100%;
}

/* ———————————————— */
/* OR, if WP is marking the <li> instead: */
/* make the “current” item’s link stay underlined */
.navbar-dark .navbar-nav .current-menu-item > .nav-link::before {
  width: 100%;
}

.menu-cta{
  padding:6px 15px;
}


  .staff-image img {
    width: 100%;
    height: 350px !important;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .welcome-buttons, .welcome-badge{
   display:none;
  }
  
  .welcome-media-container {
  transform: scale(0.7) !important;
}