  /* Header Styles */
        header {
           width: 100%;
      
            padding: 0 0px;
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 32px;
        }

        .logo-icon{
            display: flex;
            align-items: center;
            gap: 36px;
        }
        .logo-icon img:nth-child(1n){
            width: 70px;
        }
        
        .logo-icon img:nth-child(3n){
            width: 130px;
        }

        .nav-links {
             font-size: 2.4rem;
             font-family: 'Inter', sans-serif;
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .nav-link {
            color: var(--gray-700);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s ease;
            position: relative;
        }

        .nav-link:hover {
            color: var(--emerald-600);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--emerald-500);
            transition: width 0.2s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-contact-btn {
              font-size: 2rem;
             font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, var(--emerald-500), var(--primary-green-dark));
            color: var(--white);
            padding: 12px;
            text-align: center;
            width: 200px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.2s ease;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        .nav-contact-btn:hover {
            background: linear-gradient(135deg, var(--emerald-600), var(--primary-green-darker));
            transform: scale(1.05);
        }

        .mobile-menu-btn {
            display: none;
        }

        .menu-toggle {
            background: none;
            border: none;
            color: var(--gray-700);
            cursor: pointer;
            transition: color 0.2s ease;
        }

        .menu-toggle:hover {
            color: var(--emerald-600);
        }

        .mobile-menu {
            display: none;
            margin-top: 16px;
            padding-bottom: 16px;
            border-top: 1px solid var(--gray-200);
            padding-top: 16px;
        }

        .mobile-menu-content {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .mobile-nav-link {
                         font-family: 'Inter', sans-serif;
            color: var(--gray-700);
            text-decoration: none;
            font-weight: 500;
            padding: 8px 0;
            transition: color 0.2s ease;
            font-size: 2.4rem;
        }

        .mobile-nav-link:hover {
            color: var(--emerald-600);
        }

        .mobile-contact-btn {
            background: linear-gradient(135deg, var(--emerald-500), var(--primary-green-dark));
            color: var(--white);
            padding: 12px 16px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            text-align: center;
            font-size: 2.4rem;

        }   
        
   .header {
           
            color: white;
            display: flex;
            align-items: center;
            flex-direction: column;
            overflow: hidden;
        }

        .header-content {
            width: 100%;
            margin: 0 auto;
            padding: 0 1.25rem;
            
            z-index: 2;
           
            gap: 4rem;
            align-items: center;
        }

        .header-text {
             
             color: #000;
            text-align: left;
        }

        .institution-info {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .institution-logo {
          display: flex;
          width: 100%;
          align-items: center;
          justify-content: center;
          flex-wrap: wrap;
            gap: 25px;
          padding: 10px;
          margin: 10px 0;
background: rgba(255, 255, 255, 0.56);
border-radius: 6px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .institution-logo img{
            width: 100px;
        }
        .institution-info img:nth-child(odd){
            width: 200px;
        }

        .institution-details h4 {
            font-size: 0.9rem;
            font-weight: 600;
            opacity: 0.9;
            margin-bottom: 0.25rem;
        }

        .institution-details p {
            font-size: 0.8rem;
            opacity: 0.7;
            font-weight: 500;
        }

        .partner-name {
           font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
    font-style: normal;
    font-size: 3.2rem;
            margin-bottom: 1rem;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

      

        .partner-description {
            font-family: 'Inter', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            opacity: 0.95;
            line-height: 1.7;
          text-align: justify;
            margin-bottom: 1rem;
        }

        .header-visual {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .header-info {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 1rem;
            padding: 2rem;
        }

        .info-item {
            margin-bottom: 1.5rem;
        }

        .info-item:last-child {
            margin-bottom: 0;
        }

        .info-item h3 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            opacity: 0.9;
            color: #bfdbfe;
        }

        .info-item p {
            font-size: 1.1rem;
            font-weight: 600;
            color: white;
        }

        .contact-info {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.1);
            padding: 0.75rem 1.5rem;
            border-radius: 2rem;
            font-size: 0.9rem;
            font-weight: 600;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .website-contact {
            background: white;
            color: #667eea;
            text-decoration: none;
            cursor: pointer;
        }

        .website-contact:hover {
            transform: translateY(-0.125rem);
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
        }

        /* Content Section */
        .content-section {
            background: white;
            padding: 5rem 0;
            font-family: 'Inter', sans-serif;
            font-size: 1.5rem;
        }

        .content-container {

            margin: 0 auto;
            padding: 0 1.25rem;
        }

        .section-title {
            font-size: 2rem;
             font-family: 'Inter', sans-serif;
            font-weight: 700;
            text-align: center;
            margin: 1.5rem 0;
            color: #1f2937;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .content-card {
            background: #f8fafc;
            border-radius: 1.5rem;
            padding: 3rem;
            border-left: 0.5rem solid #667eea;
            transition: all 0.3s ease;
        }

        .content-card:hover {
            transform: translateY(-0.25rem);
            box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
        }

        .card-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .card-icon {
            font-size: 2rem;
        }

        .card-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #4b5563;
        }

        /* Mission Section */
        .mission-content {
           
            margin: 0 auto;
            text-align: center;
        }

        .mission-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #4b5563;
            margin-bottom: 1.5rem;
            text-align: justify;
        }

        /* About Section */
        .about-section {
            background: #f8fafc;
            padding: 4rem 0;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;

            margin: 0 auto;
        }

        .about-text h3 {
                  font-family: 'Inter', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 1rem;
        }

        .about-text p {
               font-family: 'Inter', sans-serif;
            font-size: 1.6rem;
            line-height: 1.7;
            color: #4b5563;
            margin-bottom: 1rem;
            text-align: justify;
        }

        .back-btn {
            position: fixed;
            top: 1.25rem;
            left: 1.25rem;
            background: rgba(255, 255, 255, 0.9);
            color: #374151;
            border: none;
            padding: 0.75rem;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.2s ease;
            z-index: 1000;
            box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
            width: 3rem;
            height: 3rem;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
        }

        .back-btn:hover {
            background: white;
            transform: translateY(-0.125rem);
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
        }

        /* History Section */
        .history-section {
            background: #f8fafc;
            padding: 4rem 0;
        }

        .history-card {
            background: white;
            border-radius: 1.5rem;
            padding: 3rem;
            text-align: center;
            box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
            border-top: 0.5rem solid #fbbf24;
        }

        .history-icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
        }

        .history-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 0.5rem;
        }

        .history-subtitle {
            font-size: 1.1rem;
            color: #667eea;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .history-text {
            font-size: 1rem;
            line-height: 1.7;
            color: #4b5563;
        }
        /* Schools Section */
        .schools-section {
            background: white;
            padding: 4rem 0;
        }

        .schools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .school-card {
            background: #f8fafc;
            border-radius: 1rem;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            border: 0.125rem solid #e2e8f0;
            font-family: 'Inter', sans-serif;
            font-size: 1.6rem;
        }

        .school-card:hover {
            transform: translateY(-0.25rem);
            box-shadow: 0 0.5rem 1.5rem rgba(102, 126, 234, 0.1);
            border-color: #667eea;
        }

        .school-icon {
            font-size: 2.5rem;
           
        }

        .school-name {
           font-family: 'Inter', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: #1f2937;
            line-height: 1.3;
        }

        .school-location {
             font-family: 'Inter', sans-serif;
            font-size: 1.2rem;
            color: #6b7280;
            font-weight: 500;
        }

        /* Gallery Section */
       /* Gallery Section */
        .gallery-section {
            background: #f8fafc;
            padding: 4rem 0;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 1.5rem;
        }

        .media-card {
            height: 200px; 
            position: relative;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            background: white;
        }

        .media-card:hover {
            transform: translateY(-0.5rem);
            box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
        }

        .media-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .media-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
            color: white;
            
            transform: translateY(100%);
            transition: all 0.3s ease;
        }

        .media-card:hover .media-overlay {
            transform: translateY(0);
        }

        .media-icon {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .media-overlay h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .media-overlay p {
            font-size: 0.9rem;
            opacity: 0.9;
            line-height: 1.4;
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(0, 0, 0, 0.7);
            color: white;
            width: 3.5rem;
            height: 3.5rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            
        }

        .video-card:hover .play-button {
            background: rgba(102, 126, 234, 0.9);
            transform: translate(-50%, -50%) scale(1.1);
        }

        /* Card Slider Styles */
        .slider-card {
            position: relative;
        }

        .card-slider {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .slider-images {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slider-img, .slider-item {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .slider-img.active, .slider-item.active {
            opacity: 1;
        }

        .slider-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slider-nav {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 0.5rem;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .slider-card:hover .slider-nav {
            opacity: 1;
        }

        .slider-btn {
            background: rgba(0, 0, 0, 0.6);
            color: white;
            border: none;
            width: 2rem;
            height: 2rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 0.8rem;
            transition: all 0.3s ease;
        }

        .slider-btn:hover {
            background: rgba(102, 126, 234, 0.8);
            transform: scale(1.1);
        }

        .slider-dots {
            position: absolute;
            bottom: 0.5rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0.25rem;
        }

        .slider-dot {
            width: 0.5rem;
            height: 0.5rem;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slider-dot.active {
            background: white;
            transform: scale(1.2);
        }

        .slider-dot:hover {
            background: rgba(255, 255, 255, 0.8);
        }
        /* Team Section */
        .team-section {
            background: white;
            font-family: 'Inter', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
        }

        .team-grid {
            display: grid;
            margin-bottom: 20px;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .team-card {
            background: #f8fafc;
            border-radius: 1rem;
            display: flex;
            flex-direction: column;
            padding: 10px;
            align-items: center;
            justify-content: center;
            gap: 1px;
            text-align: center;
            transition: all 0.3s ease;
            border: 0.125rem solid #e2e8f0;
            cursor: pointer;
        }

        .team-card:hover {
            transform: translateY(-0.25rem);
            box-shadow: 0 0.5rem 1.5rem rgba(102, 126, 234, 0.1);
            border-color: #667eea;
        }
         .team-avatar {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 10px;
         }
        .team-avatar img{
            border-radius: 4px;
            width: 100px;
            height: 133px;
        }

        .team-name {
            font-family: 'Inter', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: #1f2937;
            margin-top: 5px;

        }

        .team-role {
            font-family: 'Inter', sans-serif;
            font-size: 1.3rem;
            color: #667eea;
            font-weight: 600;
      
        }

        .team-department {
       font-family: 'Inter', sans-serif;
            font-size: 1.11rem;
            color: #6b7280;
            margin-top: 10px;
        }

        /* Footer */
       

       /* .footerCMEA .footer-container {
            margin: 0 auto;
            padding: 0 1.25rem;
            
        }

        .footerCMEA .footer-section{
            background-color:#1f293790;
            padding: 32px;
            margin: 0 10px;
            border-radius: 6px;
            box-shadow: 0 15px 30px -12px rgba(0, 0, 0, 0.25);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: start;
            gap: 16px;
            flex: 1;
            min-width: 280px;
        }

       .footerCMEA .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
            
        }

       .footerCMEA .footer-title {
             font-family: 'Inter', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: #667eea;
        }

       .footerCMEA .footer-subtitle {
           font-family: 'Inter', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

       .footerCMEA .footer-description {
            font-size: 0.9rem;
            line-height: 1.6;
            color: #9ca3af;
        }

       .footerCMEA .footer-contact p, .footerCMEA .footer-address p {
            font-size: 0.9rem;
            color: #d1d5db;
            margin-bottom: 0.5rem;
        }

       .footerCMEA .footer-bottom {
            border-top: 0.0625rem solid #374151;
            padding-top: 1.5rem;
            text-align: center;
        }

        .footerCMEA .footer-bottom p {
            font-size: 0.8rem;
            color: #9ca3af;
        } */

         /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            backdrop-filter: blur(10px);
        }

        .modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            background: white;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.3);
        }

        .modal-header {
            background: #66ea94;
            color: black;
            padding: 1rem 2px;
            display: flex;
            align-items: center;
            justify-content: space-between;
             
        }

        .modal-title {
        
            display: flex;
            align-items: center;
        }

        .modal-close {
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.25rem;
            border-radius: 0.25rem;
            transition: all 0.2s ease;
        }

        .modal-close:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .modal-body {
            padding: 0;
        }

        .modal-image {
            width: 100%;
            height: auto;
            max-height: 70vh;
            object-fit: contain;
            display: block;
        }

     

        .modal-video-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
            opacity: 0.8;
        }

        .modal-video-text {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .modal-video-subtitle {
               
            opacity: 0.8;
        }

        .modal-info {
            padding: 1.5rem 2rem;

            background: #f8fafc;
        }

        .modal-description {
            font-size: 1.7rem;
             font-family: 'Inter', sans-serif;
            font-weight: 400;
            color: #4b5563;
            line-height: 1.3;
            margin-bottom: 1rem;
        }

        .modal-meta {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
.media-overlay h4, .media-overlay p{
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
     font-size: 1.2rem;
             font-family: 'Inter', sans-serif;
             z-index: 9000;
}
        .modal-tag {
              font-size: 1.4rem;
             font-family: 'Inter', sans-serif;
            background: #e0e7ff;
            color: #3730a3;
            padding: 0.25rem 0.75rem;
            border-radius: 5px;
         
        }

        /* Modal Slider */
        .modal-slider {
            position: relative;
        }

        .modal-slider-container {
            position: relative;
            width: 100%;
            height: 70vh;
            overflow: hidden;
        }

        .modal-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .modal-slide.active {
            opacity: 1;
        }

        .modal-slide img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .modal-slide-video {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            
        }


        .modal-slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.7);
            color: white;
            border: none;
            width: 3rem;
            height: 3rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .modal-slider-nav:hover {
            background: rgba(102, 126, 234, 0.8);
            transform: translateY(-50%) scale(1.1);
        }

        .modal-slider-nav.prev {
            left: 1rem;
        }

        .modal-slider-nav.next {
            right: 1rem;
        }

        .modal-slider-dots {
            position: absolute;
            bottom: 1rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0.5rem;
        }

        .modal-slider-dot {
            width: 0.75rem;
            height: 0.75rem;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .modal-slider-dot.active {
            background: white;
            transform: scale(1.2);
        }

        .modal-slider-counter {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 1rem;
            font-size: 0.9rem;
            font-weight: 600;
        }


        /* Responsive */
        @media (max-width: 48rem) {

         
            .content-card {
                padding: 2rem;
            }

            .card-title {
                font-size: 1.5rem;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .schools-grid {
                grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
            }

            .team-grid {
                grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
            }

            .gallery-tabs {
                flex-direction: column;
                align-items: center;
            }

            .video-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .back-btn {
                top: 1rem;
                left: 1rem;
            }
        }

        @media (max-width: 30rem) {
            .partner-name {
                font-size: 2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .visual-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .schools-grid {
                grid-template-columns: 1fr;
            }

            .team-grid {
                grid-template-columns: 1fr;
            }

            .slide img {
                height: 18rem;
            }
        }
        
        .footer {
            background-color: var(--gray-800);
            color: var(--white);
            padding: 24px 0;
        }

        .footer-content {
       display: flex;
       justify-content: space-between;
       padding: 0 20px;
       flex-wrap: wrap;
       align-items: center;
            font-family: 'Inter', sans-serif;
            font-size: 1.6rem;
            font-weight: 600;
            
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .footer-icon {
            width: 70px;
        }

        .footer-title {
             font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
    font-style: normal;
    font-size: 2.5rem;
        }

        .footer-subtitle {
            font-size: 14px;
            opacity: 0.75;
        }


        .footer-copyright,
        .footer-location {
            font-size: 14px;
            opacity: 0.75;
        }

 .modal-video-placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  background: #000;          /* fundo preto */
  
  overflow: hidden;
  padding: 0;
}

.modal-video-placeholder video {
  width: 100%;               /* ocupa toda a largura */
  height: auto;              /* mantém proporção */
  max-height: 60vh;          /* limita altura */
  object-fit: contain;       /* não corta nem estica */
  
  background: #000;
}