
       :root {
            --primary: #2C3E50;
            --secondary: #1A56DB;
            --accent: #1A56DB;
            --light: #F1FAEE;
            --text: #111827;
            --text-light: #6B7280;
            --background: #FFFFFF;
            --background-alt: #F9FAFB;
            --border: #E5E7EB;
            --shadow: rgba(0, 0, 0, 0.08);
            --overlay: rgba(0, 0, 0, 0.7);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
              * {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
}
    body {
  font-family: "Roboto", sans-serif;
            line-height: 1.7;
            color: var(--text);
            background-color: var(--background);
            background-image: 
                radial-gradient(circle at 15% 50%, rgba(241, 250, 238, 0.2) 0%, transparent 25%),
                radial-gradient(circle at 85% 30%, rgba(230, 57, 70, 0.1) 0%, transparent 25%);
            background-attachment: fixed;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 1rem;
            color: var(--primary);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        
        .section {
            padding: 5rem 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            padding-bottom: 1rem;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(130deg, var(--secondary), var(--secondary));
            border-radius: 2px;
        }
    
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
            z-index: 1000;
            padding: 0.8rem 0;
            backdrop-filter: blur(10px);
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }
        
        .logo {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            z-index: 1001;
            margin-right: 2rem;
        }
        
        .logo span {
            color: var(--accent);
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.8rem;
            align-items: center;
        }
        
        .nav-links a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s;
            position: relative;
            white-space: nowrap;
            display: block;
        }
        
        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--accent);
        }
        
        .nav-links a:hover:after {
            width: 100%;
        }
        
        .has-submenu {
            position: relative;
        }
        
        .dropdown {
            position: absolute;
            top: 0;
            left: 100%;
            margin-left: 5px;
            background: var(--background);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
            border-radius: 8px;
            min-width: 240px;
            opacity: 0;
            visibility: hidden;
            transform: translateX(-10px);
            transition: all 0.3s;
            padding: 0.5rem 0;
            z-index: 1000;
        }
        
        .has-submenu:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
        }
        
        .dropdown a {
            display: block;
            padding: 0.8rem 1.5rem;
            white-space: nowrap;
            font-size: 0.9rem;
            transition: all 0.2s;
        }
        
        .dropdown a:hover {
            background-color: var(--background-alt);
            color: var(--accent);
        }
        
        .burger-menu {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1001;
            position: relative;
        }
        
        .burger-menu span {
            height: 3px;
            width: 100%;
            background-color: var(--primary);
            border-radius: 3px;
            transition: all 0.3s ease;
        }
        
        .burger-menu.active span:nth-child(1) {
            transform: translateY(9px) rotate(45deg);
        }
        
        .burger-menu.active span:nth-child(2) {
            opacity: 0;
        }
        
        .burger-menu.active span:nth-child(3) {
            transform: translateY(-9px) rotate(-45deg);
        }
        
        .lang-switcher-container {
            position: relative;
            margin-left: 1.5rem;
        }
        
        .lang-switcher-btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.6rem 1rem;
            border-radius: 6px;
            background: transparent;
            border: 1px solid var(--border);
            cursor: pointer;
            font-size: 0.95rem;
            color: var(--text);
            transition: all 0.3s;
        }
        
        .lang-switcher-btn:hover {
            border-color: var(--accent);
            color: var(--accent);
            box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
        }
        
        .lang-switcher-btn i {
            transition: transform 0.3s;
        }
        
        .lang-switcher-btn.active i {
            transform: rotate(180deg);
        }
        
        .lang-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            background: var(--background);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
            border-radius: 8px;
            min-width: 140px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(12px);
            transition: all 0.3s;
            padding: 0.5rem 0;
            z-index: 1000;
            margin-top: 0.5rem;
        }
        
        .lang-dropdown.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .lang-option {
            display: flex;
            align-items: center;
            padding: 0.8rem 1.2rem;
            color: var(--text);
            text-decoration: none;
            transition: all 0.3s;
            font-size: 0.9rem;
        }
        
        .lang-option:hover {
            background-color: var(--background-alt);
            color: var(--accent);
        }
        
        .lang-option.active {
            color: var(--accent);
            font-weight: 500;
            background-color: var(--background-alt);
        }
    

        .hero {
            position: relative;
            min-height: 600px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }
        
        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 900px;
            padding: 3rem;
            border-radius: 50px;
        }
        
        .hero-content h1 {
            font-size: 3.2rem;
            margin-bottom: 1rem;
            color: #fff;
    text-shadow: 2px 3px 14px rgba(0, 0, 0, 0.5);
        }
        
        .hero-content h2 {
            font-size: 1.5rem;
            font-weight: 400;
            margin-bottom: 2rem;
            color: #fff;
         
        }
        
        .hero-text {
            max-width: 700px;
            margin: 0 auto 2rem;
            font-size: 1.2rem;
            color: #fff;
        }
        
        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        .loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    grid-column: 1 / -1; 
    padding: 80px 0;
    font-size: 1.2rem;
    color: #888;
    gap: 15px;
}
.loading-spinner i {
    font-size: 3rem;
    color: var(--primary, #2C3E50);
}
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(26, 86, 219, 0.25);
        }
    
        .btn-primary {
            background: var(--secondary);
            color: white;
        }
        
        .btn-outline {
            background: transparent;
            color: #ffffff;
            border: 2px solid var(--secondary);
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(26, 86, 219, 0.35);
        }
        
        .content-card {
            background-color: var(--background);
            border-radius: 12px;
            padding: 3rem;
            margin-bottom: 2rem;
            box-shadow: 0 10px 25px var(--shadow);
            border: 1px solid var(--border);
            transition: transform 0.3s ease;
        }
 
        
        .welcome-list {
            list-style: none;
            margin: 1.5rem 0;
        }
        
        .welcome-list li {
            padding: 1rem 0 1rem 2.5rem;
            position: relative;
            border-bottom: 1px solid var(--border);
            transition: all 0.3s;
        }
        
        .welcome-list li:hover {
            background-color: var(--background-alt);
            padding-left: 3rem;
        }
        
        .welcome-list li:before {
            content: "→";
            color: var(--secondary);
            position: absolute;
            left: 1rem;
            font-weight: bold;
            transition: all 0.3s;
        }
        
        .message-content {
            background: linear-gradient(135deg, var(--background-alt) 0%, var(--background) 100%);
            padding: 2.5rem;
            font-style: italic;
            border-radius: 8px;
            text-align: justify;
        }
        
        .hero-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .slider-viewport {
            width: 100%;
            height: 100%;
            overflow: hidden;
            position: relative;
        }

        .slides {
            display: flex;
            height: 100%;
            transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.2, 1);
        }
        
        .slide {
            min-width: 100%;
            height: 100%;
            position: relative;
            background-size: cover;
            background-position: center;
        }

        .slide::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
        }
        
        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            border: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 5;
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s;
        }
        
        .nav-btn:hover {
            background: var(--secondary);
        }
        
        .nav-prev {
            left: 30px;
        }
        
        .nav-next {
            right: 30px;
        }
        
        .scroll-down {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            color: white;
            font-size: 2rem;
            animation: bounce 2s infinite;
        }
        
        footer {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            padding: 3rem 0;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-column h3 {
            color: white;
            margin-bottom: 1rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.5rem;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background: rgba(255, 255, 255, 0.3);
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
            40% { transform: translateY(-20px) translateX(-50%); }
            60% { transform: translateY(-10px) translateX(-50%); }
        }
        
        @media (max-width: 768px) {
            .section {
                padding: 3rem 0;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .content-card {
                padding: 2rem 1.5rem;
            }
            
            .hero-content {
                padding: 2rem 1.5rem;
            }
            
            .hero-content h1 {
                font-size: 2.2rem;
            }
            
            .hero-content h2 {
                font-size: 1.2rem;
            }
            
            .hero-text {
                font-size: 1rem;
            }
            
            .nav-btn {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            
            .nav-prev {
                left: 15px;
            }
            
            .nav-next {
                right: 15px;
            }
            
            .logo {
                font-size: 1.4rem;
                margin-right: 1rem;
            }
            
            .message-content {
                padding: 1.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero {
                min-height: 500px;
            }
            
            .hero-content h1 {
                font-size: 1.8rem;
            }
            
            .hero-content h2 {
                font-size: 1rem;
            }
            
            .hero-buttons {
                flex-direction: column;
            }
            
            .btn {
                width: 100%;
                justify-content: center;
            }
            
            .container {
                padding: 0 1rem;
            }
            
            .content-card {
                padding: 1.5rem 1rem;
            }
        }
        .image-title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-weight: 800;
  font-size: clamp(28px, 6.5vw, 64px);
  line-height: 1.02;
  text-align: center;
  letter-spacing: -0.01em;
  z-index: 20;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-transform: none;
  padding: 0 1rem;
  white-space: pre-wrap;
  word-break: break-word;
  text-shadow:
    0 1px 0 rgba(0,0,0,0.5),
    0 6px 18px rgba(0,0,0,0.45),
    0 18px 40px rgba(0,0,0,0.5);
}

.image-title::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  z-index: 10;
  color: rgba(0,0,0,0.5);
  transform: translateY(10px);
  filter: blur(14px);
  opacity: 0.95;
  pointer-events: none;
  mix-blend-mode: normal;
}

.slide .image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 60%);
  z-index: 8;
}
.spotlight-sub {
  text-align: center;
  color: var(--text-light);
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.98rem;
}
.spotlight-carousel {
  position: relative;
}
.spotlight-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 1rem 6px 2.4rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.spot-card {
  flex: 0 0 auto;
  scroll-snap-align: center;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(2,6,23,0.06);
  overflow: hidden;
  min-height: 260px;
  display: flex;
  align-items: stretch;
}
.spot-card--image {
  width: 110px;
  min-width: 110px;
  max-width: 140px;
  background: #fff;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.spot-card--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.spot-card--article {
  width: 420px;
  min-width: 320px;
  max-width: 520px;
  background: linear-gradient(180deg, #0e4fa8 0%, #083b86 100%);
  color: #fff;
  padding: 28px 28px 22px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.spot-flag {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-bottom: 10px;
  margin-bottom: 16px;
}
.spot-title {
  font-size: 1.35rem;
  line-height: 1.18;
  font-weight: 700;
  margin: 0;
  color: #fff;
  letter-spacing: -0.01em;
}
.spot-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
}
.spot-badge {
  display: inline-block;
  background: #e63946;
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 6px 10px;
  border-radius: 8px;
}
.spot-open {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.95);
  font-size: 1.05rem;
  cursor: pointer;
  padding: 6px;
}
.spotlight-controls {
  display: flex;
  gap: 28px;
  justify-content: center;
  margin-top: 18px;
}
.spot-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.06);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.05rem;
  color: var(--primary);
}
.spot-btn:hover {
  background: rgba(26,86,219,0.08);
  transform: translateY(-3px);
}
@media (max-width: 1100px) {
  .spot-card--article { width: 360px; min-width: 300px; padding: 20px; }
  .spot-title { font-size: 1.12rem; }
  .spot-card--image { width: 100px; min-width: 100px; }
}
@media (max-width: 760px) {
  .spotlight-track { gap: 14px; padding-bottom: 1.6rem; }
  .spot-card--article { width: 300px; min-width: 260px; }
  .spot-card--image { width: 92px; min-width: 92px; }
  .spotlight-controls { gap: 16px; margin-top: 12px; }
  .spot-btn { width: 46px; height: 46px; }
}
@media (max-width: 480px) {
  .spot-card--article { width: 240px; min-width: 220px; padding: 16px; }
  .spot-title { font-size: 1rem; }
  .section-title { font-size: 1.6rem; }
}
::-webkit-scrollbar { height: 8px; }
::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.08); border-radius: 8px; }

.dots { position:absolute; left:50%; transform:translateX(-50%); bottom:18px; display:flex; gap:.5rem; z-index:7 }
.dot { width:10px; height:10px; border-radius:50%; background:rgba(255,255,255,.35); cursor:pointer; border:0 }
.dot[aria-current="true"]{ width:28px; border-radius:999px; background:var(--secondary) }
.focus-ring:focus{ outline:3px solid rgba(26,86,219,.18); outline-offset:3px; border-radius:8px }
.spot-card.active{ transform:scale(1.02); box-shadow:0 18px 40px rgba(2,6,23,0.12) }
.visually-hidden{ position:absolute!important; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden }


.slider-viewport,
.hero-slider,
.slides {
  height: 100%;
}

.slide {
  position: relative;
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 6;
}
a{
text-wrap: nowrap;
}
        p{
            
            font-weight: 400;
            font-size: large;
        }

       .rector-photo-float {
    float: left;
    max-width: 250px;
    margin-right: 2rem;
    margin-bottom: 20rem;
}

.rector-photo-float img {
    width: 100%;
    height: auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.message-content::after {
    content: "";
    display: table;
    clear: both;
}

@media (max-width: 768px) {
    .rector-photo-float {
        float: none;
        margin-right: auto;
        margin-left: auto;
        margin-bottom: 2rem;
        max-width: 290px;
    }
}

.submenu-toggle[aria-expanded="true"] i,
.has-submenu.active .submenu-toggle i {
    transform: rotate(180deg);
}
.submenu-toggle:focus {
    box-shadow: 0 0 0 3px rgba(26,86,219,0.12);
}
.submenu-toggle:hover {
    background: rgba(0,0,0,0.03);
}
.nav-links .fas {
    background: none !important;
    color: inherit !important;
    border: 0;
}
.has-submenu > .parent-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--text);
}
@media (min-width: 1356px) {
    .nav-links li {
        display: inline-flex;
        align-items: center;
    }
    .has-submenu {
        display: inline-flex;
        align-items: center;
        gap: .4rem;
    }
    .has-submenu > .parent-link {
        display: inline-flex;
        align-items: center;
        gap: .35rem;
        line-height: 1;
        white-space: nowrap;
        vertical-align: middle;
    }
    .has-submenu > .parent-link span,
    .has-submenu > .parent-link i {
        display: inline-block;
        vertical-align: middle;
    }
    .submenu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: auto;
        height: auto;
        padding: 4px;
        margin-left: 6px;
        background: transparent !important;
        border: none;
        vertical-align: middle;
    }
    .submenu-toggle i {
        font-size: 0.9rem;
        line-height: 1;
        transform-origin: center;
        transition: transform .25s ease, color .15s ease;
        color: currentColor;
    }
    .has-submenu:hover .submenu-toggle i {
        transform: rotate(180deg);
    }
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 0.8rem 0;
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    z-index: 1001;
    margin-right: 50px;
}

.logo span {
    color: var(--accent);
}


.nav-links {
    display: flex;
    list-style: none;
    gap: 1.8rem;
    transition: transform 0.3s ease;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s;
    position: relative;
    white-space: nowrap;
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a:hover:after {
    width: 100%;
}


.has-submenu {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--background);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.3s;
    padding: 0.5rem 0;
    z-index: 1000;
}

.has-submenu:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    padding: 0;
}

.dropdown a {
    display: block;
    padding: 0.8rem 1.5rem;
    white-space: nowrap;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.dropdown a:hover {
    background-color: var(--background-alt);
    color: var(--accent);
    padding-left: 1.8rem;
}




.submenu-toggle[aria-expanded="true"] i,
.has-submenu.active .submenu-toggle i {
    transform: rotate(180deg);
    color: #111827;
}

.submenu-toggle:focus {
    box-shadow: 0 0 0 3px rgba(26,86,219,0.12);
}

.submenu-toggle:hover {
    background: rgba(0,0,0,0.03);
}

.nav-links .fas {
    background: none !important;
    color: inherit !important;
    border: 0;
}

.has-submenu > .parent-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--text);
}


.burger-menu {
    display: none; 
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-menu span {
    height: 3px;
    width: 100%;
    background-color: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}


.lang-switcher-container {
    position: relative;
    margin-left: 1.5rem;
}

.lang-switcher-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    background: transparent;
    border: 1px solid var(--border);
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text);
    transition: all 0.3s;
}

.lang-switcher-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}

.lang-switcher-btn i {
    transition: transform 0.3s;
}

.lang-switcher-btn.active i {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--background);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.3s;
    padding: 0.5rem 0;
    z-index: 1000;
    margin-top: 0.5rem;
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    padding: 0.8rem 1.2rem;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.lang-option:hover {
    background-color: var(--background-alt);
    color: var(--accent);
}

.lang-option.active {
    color: var(--accent);
    font-weight: 500;
    background-color: var(--background-alt);
}









.spotlight-section {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 998;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 250, 251, 0.98) 100%);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(26, 86, 219, 0.1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 1rem 0;
    
}

.spotlight-section.collapsed {
    transform: translateY(0);
}

.spotlight-toggle {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 30px;
    background: linear-gradient(135deg, var(--secondary) 0%, #0e4fa8 100%);
    border: none;
    border-radius: 20px 20px 0 0;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 -5px 20px rgba(26, 86, 219, 0.3);
}

.spotlight-toggle:hover {
    background: linear-gradient(135deg, #0e4fa8 0%, var(--secondary) 100%);
    transform: translateX(-50%) scale(1.05);
}

.spotlight-toggle i {
    transition: transform 0.3s ease;
}

.spotlight-section.collapsed .spotlight-toggle i {
    transform: rotate(180deg);
}

.spotlight-container {

    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.spotlight-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(26, 86, 219, 0.1);
}

.spotlight-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.spotlight-title i {
    color: var(--secondary);
}

.spotlight-nav {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.spotlight-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(26, 86, 219, 0.2);
    background: white;
    color: var(--secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.spotlight-nav-btn:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 86, 219, 0.3);
}

.spotlight-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 1rem 6px 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary) transparent;
}

.spotlight-track::-webkit-scrollbar {
    height: 6px;
}

.spotlight-track::-webkit-scrollbar-track {
    background: rgba(26, 86, 219, 0.1);
    border-radius: 3px;
}

.spotlight-track::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 3px;
}

.spot-card {
    flex: 0 0 auto;
    scroll-snap-align: start;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(2, 6, 23, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 86, 219, 0.1);
    width: 320px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
}

.spot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(2, 6, 23, 0.15);
    border-color: rgba(26, 86, 219, 0.3);
}

.spot-card-header {
    background: linear-gradient(135deg, var(--secondary) 0%, #0e4fa8 100%);
    color: white;
    padding: 1rem;
    position: relative;
}

.spot-flag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 0.25rem;
}

.spot-card-body {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.spot-title {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary);
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.spot-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.spot-badge {
    background: linear-gradient(135deg, #e63946 0%, #d62839 100%);
    color: white;
    font-weight: 600;
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(230, 57, 70, 0.3);
}

.spot-open {
    background: transparent;
    border: none;
    color: var(--secondary);
    font-size: 1rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.spot-open:hover {
    background: rgba(26, 86, 219, 0.1);
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .spotlight-section {
        padding: 0.5rem 0;
    }
    
    .spotlight-toggle {
        top: -35px;
        width: 50px;
        height: 25px;
    }
    
    .spotlight-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .spotlight-title {
        font-size: 1.2rem;
        justify-content: center;
    }
    
    .spotlight-nav {
        justify-content: center;
    }
    
    .spot-card {
        width: 280px;
        min-height: 160px;
    }
    
    .spot-card-body {
        padding: 1rem;
    }
    
    .spot-title {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .spotlight-section {
        padding: 0.25rem 0;
    }
    
    .spot-card {
        width: 260px;
        min-height: 150px;
    }
    
    .spot-card-header {
        padding: 0.75rem;
    }
    
    .spot-card-body {
        padding: 0.75rem;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.spotlight-section {
    animation: slideUp 0.5s ease-out;
}

.spotlight-counter {
    background: var(--secondary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-left: 0.5rem;
}
.image-title{
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 20;
}
.image-title::before{
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: rgba(0,0,0,0.45);
  transform: translateY(10px);
  filter: blur(14px);
  z-index: 10;
  pointer-events: none;
}

.hero-content{
    text-shadow: 0 4px 12px rgba(0,0,0,0.45);
}
             * {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
}
.text-center{
    text-align: justify;
}
  body {
  font-family: "Roboto", sans-serif;            line-height: 1.6;
            color: var(--text);
            background-color: var(--background);
            font-weight: 400;
        }
        strong{
            font-weight: 600;
        }
          @media (max-width: 1344px) {
      .nav-links{
gap: 1.0rem;

    }
        }
        @media (max-width: 1162px) {
        .nav-links{
gap: 0.5rem;

    }
        }
        .news-page-main {
        padding-top: 120px; 
        padding-bottom: 5rem;
    }

    .news-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
        gap: 2rem;
    }

    .news-card {
        width: 360px;
        text-decoration: none;
        color: var(--text);
        background-color: var(--background);
        border-radius: 12px;
        box-shadow: 0 8px 25px var(--shadow);
        border: 1px solid var(--border);
        overflow: hidden;
        display: flex;

        flex-direction: column;
    }

    .news-card:hover {
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    }

    .news-card-image {
        position: relative;
        height: 220px;
        background-color: var(--background-alt);
    }

    .news-card-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;  
    }

    .news-card-badge {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: linear-gradient(135deg, #e63946 0%, #d62839 100%);
        color: white;
        font-weight: 600;
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        border-radius: 20px;
        box-shadow: 0 2px 8px rgba(230, 57, 70, 0.3);
    }

    .news-card-content {
        padding: 1.5rem;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .news-card-date {
        font-size: 0.85rem;
        color: var(--text-light);
        margin-bottom: 0.5rem;
    }

    .news-card-title {
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--primary);
        line-height: 1.3;
        margin-bottom: 0.75rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .news-card-excerpt {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        flex-grow: 1;
    }

    .news-card-readmore {
        display: inline-block;
        margin-top: auto; 
        color: var(--secondary);
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s;
    }

    .news-card-readmore:hover {
        color: var(--primary);
        transform: translateX(4px);
    }
    .news-card-readmore i {
        margin-left: 0.25rem;
    }
     .news-filters {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 3rem;
            padding: 1.5rem;
            background: var(--background-alt);
            border-radius: 12px;
            border: 1px solid var(--border);
        }

        .filter-btn {
            padding: 0.8rem 1.5rem;
            border: 2px solid var(--border);
            background: white;
            color: var(--text);
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            white-space: nowrap;
        }

        .filter-btn:hover {
            border-color: var(--secondary);
            color: var(--secondary);
            transform: translateY(-2px);
        }

        .filter-btn.active {
            background: var(--secondary);
            color: white;
            border-color: var(--secondary);
        }

        .filter-btn .count {
            background: rgba(255, 255, 255, 0.2);
            padding: 0.2rem 0.6rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .filter-btn:not(.active) .count {
            background: var(--background-alt);
            color: var(--text-light);
        }

        .news-search {
            position: relative;
            max-width: 400px;
            margin: 0 auto 3rem;
        }

        .news-search input {
            width: 100%;
            padding: 1rem 1rem 1rem 3rem;
            border: 2px solid var(--border);
            border-radius: 50px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: white;
        }

        .news-search input:focus {
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
        }

        .news-search i {
            position: absolute;
            left: 1.2rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-light);
        }

        .news-results-info {
            text-align: center;
            margin-bottom: 2rem;
            color: var(--text-light);
            font-size: 1.1rem;
        }

        .no-results {
            text-align: center;
            padding: 3rem;
            color: var(--text-light);
        }

        .no-results i {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--border);
        }

        .news-card {
            transition: all 0.3s ease;
        }
.hidden{
    display: none;
}
        .news-card.hidden {
            display: none;
        }

        .news-card.visible {
            animation: fadeInUp 0.5s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .filter-mobile-toggle {
            display: none;
            width: 100%;
            padding: 1rem;
            background: var(--secondary);
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        @media (max-width: 768px) {
            .filter-mobile-toggle {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 0.5rem;
            }

            .news-filters {
                flex-direction: column;
                display: none;
                margin-bottom: 2rem;
            }

            .news-filters.mobile-open {
                display: flex;
            }

            .filter-btn {
                justify-content: center;
            }

            .news-search {
                margin-bottom: 2rem;
            }
        }

        @media (max-width: 480px) {
            .news-filters {
                padding: 1rem;
            }

            .filter-btn {
                padding: 0.7rem 1.2rem;
                font-size: 0.9rem;
            }
        }

        .news-card[data-category="culture"] .news-card-badge {
            background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
        }

        .news-card[data-category="business"] .news-card-badge {
            background: linear-gradient(135deg, #059669 0%, #047857 100%);
        }

        .news-card[data-category="education"] .news-card-badge {
            background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
        }

        .news-card[data-category="science"] .news-card-badge {
            background: linear-gradient(135deg, #EA580C 0%, #C2410C 100%);
        }

        .news-card[data-category="diplomacy"] .news-card-badge {
            background: linear-gradient(135deg, #0369A1 0%, #075985 100%);
        }

        .news-card[data-category="events"] .news-card-badge {
            background: linear-gradient(135deg, #7C2D12 0%, #9A3412 100%);
        }
             .hero {
    position: relative; 
    background-image: url('../assets/news.jpg'); 
    background-size: cover; 
    background-position: center; 
    color: white;
    padding: 12rem 0;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); 
}

.hero-content {
    position: relative; 
}
        header {
    height: 88px;
    padding: 0;
}

nav {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    margin-right: 2rem;
     max-height: 80px;
    width: auto;
    object-fit: contain;
}
footer a{
    text-decoration: none;
}

  .submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    padding: 4px;
    margin-left: 6px;
    background: transparent !important;
    border: none;
    vertical-align: middle;
  }

  .submenu-toggle i {
    font-size: 0.9rem;
    line-height: 1;
    transform-origin: center;
    transition: transform .25s ease, color .15s ease;
    color: currentColor;
  }



  .has-submenu:hover .submenu-toggle i {
    transform: rotate(180deg);
  }

.submenu-toggle[aria-expanded="true"] i,
.has-submenu.active .submenu-toggle i {
  transform: rotate(180deg);
  color: #111827;
}

.submenu-toggle:focus {
  box-shadow: 0 0 0 3px rgba(26,86,219,0.12);
}

.submenu-toggle:hover {
  background: rgba(0,0,0,0.03);
}
@media (max-width: 1356px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100dvh; 
        background: var(--background);
        flex-direction: column;
        padding: 100px 20px 40px;
        overflow-y: auto;
        overscroll-behavior: contain; 
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.35s ease;
        z-index: 2000;
        box-sizing: border-box;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }


    body.menu-open {
        height: 100dvh;
        overflow: hidden;
        touch-action: none;
    }
}
@media (max-width: 400px) {

    html {
        font-size: 15px; 
    }

    .section {
        padding: 2.5rem 0; 
    }

    .container {
        padding: 0 0.75rem; 
    }

    .section-title {
        font-size: 1.5rem; 
        margin-bottom: 2rem;
    }


    .logo {
        font-size: 1.2rem; 
        margin-right: 0.5rem;
    }

    .lang-switcher-container {
        margin-left: 0.5rem;
    }
    
    .lang-switcher-btn {
        padding: 0.5rem 0.75rem; 
        font-size: 0.85rem;
    }


    .hero {
        min-height: 400px; 
    }

    .hero-content h1 {
        font-size: 1.6rem; 
    }

    .hero-content h2 {
        font-size: 0.9rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }


    .news-grid {
  
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .news-card {
      
        width: 100%; 
    }

    .news-search input {
        padding: 0.8rem 0.8rem 0.8rem 2.5rem;
        font-size: 0.9rem;
    }

    .news-search i {
        left: 0.9rem;
    }

    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    

    .spot-card--article {
        width: 220px;
        min-width: 200px;
        padding: 14px;
    }

    .spot-title {
        font-size: 0.9rem;
    }

    .spot-card--image {
        width: 80px; 
        min-width: 80px;
    }

  
    .spot-card {
     
        width: 240px; 
    }

    .spot-card-body {
        padding: 0.75rem;
    }

    .spot-title {
        font-size: 0.95rem;
    }


    .rector-photo-float {
        max-width: 200px; 
        margin-bottom: 1.5rem;
    }

    .message-content {
        padding: 1.2rem;
    }
}