       :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);
        }
    
        @media (max-width: 900px) {
            .burger-menu {
                display: flex;
            }
            
            .nav-links {
                position: fixed;
                left: 0;
                right: 0;
                width: 100%;
                background-color: var(--background);
                flex-direction: column;
                padding: 1.5rem;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                transform: translateX(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                z-index: 999;
                overflow-y: auto;
                gap: 0;
                align-items: stretch;
            }
            
            .nav-links.active {
                transform: translateX(0);
                opacity: 1;
                visibility: visible;
            }
            
            .nav-links li {
                margin: 0;
                padding: 0;
                width: 100%;
                border-bottom: 1px solid var(--border);
            }

            .nav-links li:last-of-type {
                border-bottom: none;
            }
            
            .nav-links > li > a {
                display: block;
                padding: 1rem;
             
            }

         
            .nav-links li.has-submenu {
                display: flex;
                align-items: center;
                justify-content: space-between;
                flex-wrap: wrap;
            }
            .nav-links li.has-submenu > a {
                flex-grow: 1; 
            }
            .nav-links li.has-submenu .submenu-toggle {
                padding: 1rem;
            }
            
            .has-submenu {
                position: relative;
            }
            
            .has-submenu .dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background-color: var(--background-alt);
                margin: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
                border-radius: 0;
                flex-basis: 100%;
            }
            
            .has-submenu.active .dropdown {
                max-height: 500px;
            }
            
            .dropdown a {
                padding: 0.8rem 1.5rem 0.8rem 2rem;
            }
            
            .lang-switcher-container {
                margin-left: 0;
                margin-top: 1rem;
                width: 100%;
            }
            
            .lang-switcher-btn {
                width: 100%;
                justify-content: space-between;
            }
            
            .lang-dropdown {
                right: auto;
                left: 0;
                width: 100%;
            }
            
            .parent-link {
                width: auto; 
                position: relative;
            }
        }
        
   
        
        .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;
        }
        
        .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 }
.hero {
  overflow: hidden;
  position: relative;
  padding-top: 0;
  align-items: center;
    display: flex;
    justify-content: center;
}

.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 {
    background: transparent !important;
    border: none !important;
    padding: 0;
    margin-left: 8px;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 6px;
    transition: transform .25s ease, background .15s ease;
    outline: none;
    box-shadow: none;
}
.submenu-toggle i {
    display: inline-block;
    transition: transform .25s ease;
    font-size: 0.9rem;
    line-height: 1;
}
.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: 901px) {
    .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 {
    background: transparent !important;
    border: none !important;
    padding: 0;
    margin-left: 8px;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 6px;
    transition: transform .25s ease, background .15s ease;
    outline: none;
    box-shadow: none;
}

.submenu-toggle i {
    display: inline-block;
    transition: transform .25s ease, color .15s ease;
    font-size: .9rem;
    line-height: 1;
    color: var(--text);
}

.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);
}



@media (max-width: 900px) {
  
    .burger-menu {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
top: 44px;        left: 0;
        
        width: 100%;
        background-color: var(--background);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
height: calc(100vh - 44px);        overflow-y: auto;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links li {
        margin: 0.7rem 0;
    }
    
    .has-submenu .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: var(--background-alt);
        margin: 0.7rem 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .has-submenu.active .dropdown {
        max-height: 500px;
    }
    
    .dropdown a {
        padding: 0.8rem 1.2rem;
    }
    
    .lang-switcher-container {
        margin-left: 0;
        margin-top: 1.5rem;
        align-self: center;
    }
    
    .lang-dropdown {
        right: auto;
        left: 0;
    }
}

@media (min-width: 901px) {
    .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);
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: flex !important;
        flex-direction: column;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
    }
    .nav-links.active {
        transform: translateY(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    .mobile-menu-btn { 
        display: block;
    }
    .nav-btn{
        display: none;
    }
    .fa-chevron-down2{
        display: none;
    }
}


.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;

    }
        }
        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: 140px;
    width: auto;
    object-fit: contain;
}
footer a{
    text-decoration: none;
}

.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  padding: 2rem 0;
  margin-top: 2rem; 
  border-top: 1px solid rgba(255, 255, 255, 0.1); 
}

.footer-logo-link {
  display: inline-block;
  transition: opacity 0.3s ease;
}

.footer-logo-link:hover {
  opacity: 0.8;
}

.footer-logo {
  height: 260px; 
  max-width: 200px; 
  object-fit: contain;


}


@media (max-width: 576px) {
  .footer-logos {
    flex-direction: column; 
    gap: 2rem;
  }
 
  .footer-logo {
    height: 150px; 
  }
}

   :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;
        }
        
        body {
            font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--text);
            background-color: var(--background);
            font-weight: 300;
        }
        
        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 {
position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    margin-right: 2rem;
     max-height: 80px;
    width: auto;
    object-fit: contain;
}
        
        .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;
        }
        
        .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;
            display: flex;
            align-items: center;
        }
        
        .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);
        }
        
        @media (max-width: 900px) {
            .burger-menu {
                display: flex;
            }
            
            .nav-links {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--background);
                flex-direction: column;
                padding: 2rem;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                z-index: 999;
                height: calc(100vh - 70px);
                overflow-y: auto;
            }
            
            .nav-links.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            .nav-links li {
                margin: 0.7rem 0;
            }
            
            .has-submenu .dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background-color: var(--background-alt);
                margin: 0.7rem 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }
            
            .has-submenu.active .dropdown {
                max-height: 500px;
            }
            
            .dropdown a {
                padding: 0.8rem 1.2rem;
            }
            
            .lang-switcher-container {
                margin-left: 0;
                margin-top: 1.5rem;
                align-self: center;
            }
            
            .lang-dropdown {
                right: auto;
                left: 0;
            }
        }
        
        .hero {
            padding-top: 10rem;
            padding-bottom: 5rem;
            background: linear-gradient(120deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.1' d='M0,128L48,117.3C96,107,192,85,288,112C384,139,480,213,576,218.7C672,224,768,160,864,138.7C960,117,1056,139,1152,149.3C1248,160,1344,160,1392,160L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
            background-size: cover;
            background-position: center;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-content h1 {
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            color: white;
        }
        
        .hero-content h2 {
            font-size: 1.4rem;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
        }
        
        .hero-text {
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.8;
        }
        
        .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;
        }
        
    
        
        .partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .partner-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid var(--border);
        }
        
  
        
        .partner-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--secondary);
        }
        
        .partner-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }
        
        .partner-card p {
            color: var(--text-light);
            line-height: 1.6;
        }
        
        .partner-link {
            display: inline-block;
            margin-top: 1rem;
            color: var(--secondary);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .partner-link:hover {
            color: var(--accent);
            text-decoration: underline;
        }
        
        footer {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            padding: 5rem 0;
            text-align: center;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .footer-column h3 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .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: 1.5rem;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .social-links a:hover {
            background: var(--secondary);
            transform: translateY(-3px);
        }
        
        @media (max-width: 768px) {
            .hero {
                padding-top: 8rem;
                padding-bottom: 4rem;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .section {
                padding: 4rem 0;
            }
            
            .content-card {
                padding: 2rem;
            }
            
            .partners-grid {
                grid-template-columns: 1fr;
            }
        }    .logo{
            margin-right: 50px;
        }
        @media (max-width:900px) {
  .has-submenu .dropdown {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height .28s ease;
    background-color: var(--background-alt);
    box-shadow: none;
    margin: 0.6rem 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .has-submenu .dropdown a {
    display: block;
    padding: 0.8rem 1.2rem;
  }
}      .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            transition: all 0.3s;
            text-decoration: none;
        }
        
 
        .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);
            will-change: transform;
        }
        
        .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);
            pointer-events: none;
        }
        
        .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;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            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;
        }
        
        @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%); }
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary);
        }
        
        @media (max-width: 992px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-content {
                padding: 2rem;
            }
            
            .hero-buttons {
                flex-direction: column;
            }
        }
        
        @media (max-width: 768px) {
            .section {
                padding: 3rem 0;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .content-card {
                padding: 2rem;
            }
            
            .feature-card {
                padding: 1.5rem;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
            
            .nav-btn {
                width: 40px;
                height: 40px;
            }
            
            .nav-prev {
                left: 15px;
            }
            
            .nav-next {
                right: 15px;
            }
        }
        
        @media (max-width: 576px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .hero-content h2 {
                font-size: 1.2rem;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
        }
        .logo{
            margin-right: 50px;
        }
        @media (max-width: 992px) {
  .nav-links {
    display: flex !important;
    flex-direction: column;
  }

  .nav-links {
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
  }

  .nav-links.active {
    transform: translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
}

.submenu-toggle {
    background: transparent !important;
    border: none !important;
    padding: 0;
    margin-left: 8px;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 6px;
    transition: transform .25s ease, background .15s ease;
    outline: none;
    box-shadow: none;
}

.submenu-toggle i {
    display: inline-block;
    transition: transform .25s ease;
    font-size: 0.9rem;
    line-height: 1;
}

.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);
}

.submenu-toggle {
  background: transparent !important;
  border: none !important;
  padding: 0;
  margin-left: 8px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 6px;
  transition: transform .25s ease, background .15s ease;
  outline: none;
  box-shadow: none;
}

.submenu-toggle i {
  display: inline-block;
  transition: transform .25s ease, color .15s ease;
  font-size: .9rem;
  line-height: 1;
  color: var(--text);
}

@media (min-width: 901px) {
  .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);
  }
}

.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);
}
.burger-menu {
  z-index: 2200;
  position: relative;
}
@media (max-width: 992px) {
  .nav-links {
    display: flex !important;
  }
}
   .hero {
    position: relative; 
    background-image: url('../assets/deal.jpg'); 
    background-size: cover; 
    background-position: center; 
    color: white;
    padding: 12rem 0;
    text-align: center;
    overflow: hidden;
}
p{
    font-weight: 400;
}
.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; 
} 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;
        }
