* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Arial', sans-serif;
      color: #fff;
      background: url('https://multiverseentertainments.com/wp-content/uploads/2025/07/background-image.jpg') no-repeat center center fixed;
      background-size: cover;
      font-size: 0.9em;
    }

    .container {
        width: 90%;
        margin: auto;
    }

    /* Navigation */
    .navbar {
      position: fixed;
      top: 20px;
      left: 20px;
      z-index: 10;
      display: flex;
      align-items: center;
      transition: transform 0.3s ease;
    }

    .navbar:hover {
      transform: scale(1.05);
    }

    .menu-toggle {
      font-size: 24px;
      color: #fff;
      cursor: pointer;
      margin-right: 20px;
      position: relative;
      width: 24px;
      height: 24px;
      transition: transform 0.3s ease;
    }

    .menu-toggle span,
    .menu-toggle::before,
    .menu-toggle::after {
      content: '';
      position: absolute;
      left: 0;
      width: 100%;
      height: 2px;
      background: #fff;
      transition: transform 0.3s ease, top 0.3s ease 0.3s;
    }

    .menu-toggle span {
      top: 50%;
      transform: translateY(-50%);
    }

    .menu-toggle::before {
      top: 2px;
    }

    .menu-toggle::after {
      bottom: 2px;
    }

    .navbar:hover .menu-toggle::before {
      top: 50%;
      transform: translateY(-50%) rotate(45deg);
      transition: transform 0.3s ease, top 0.3s ease;
    }

    .navbar:hover .menu-toggle span {
      opacity: 0;
    }

    .navbar:hover .menu-toggle::after {
      bottom: 50%;
      transform: translateY(50%) rotate(-45deg);
      transition: transform 0.3s ease, bottom 0.3s ease;
    }

    .navbar:hover .menu-toggle {
      transform: scale(1.2);
    }

    .logo {
      display: flex;
      align-items: center;
    }

    .logo a {
      display: inline-block;
    }

    .logo img {
      height: 60px;
      transition: transform 0.3s ease;
    }

    .navbar:hover .logo img {
      transform: scale(1.1);
    }

    .nav-menu {
      display: none;
      position: fixed;
      top: 50px;
      left: 10px;
      width: 250px;
      background: rgba(0, 0, 0, 0.7);
      padding: 20px;
      list-style: none;
      z-index: 10;
      transform: translateX(-100%);
      opacity: 0;
      transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    }

    .navbar:hover .nav-menu {
      display: block;
      transform: translateX(0);
      opacity: 1;
    }

    .nav-menu li {
      margin: 15px 0;
      transition: color 0.3s ease;
    }

    .nav-menu li a {
      color: #fff;
      text-decoration: none;
      font-size: 1.1rem;
    }

    .nav-menu li a:hover {
      color: #e12929;
    }

    /* About Content */
    .about-content {
      padding: 70px 20px 20px 20px;
      display: flex;
      justify-content: center;
      align-items: flex-start;
      z-index: 2;
    }

    .content-images {
      flex: 0 0 30%;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .content-text {
      flex: 0 0 40%;
      opacity: 0;
      animation: fadeIn 1s ease-in-out forwards;
    }

    .about-content h1 {
      font-size: 2rem;
      font-weight: bold;
      text-transform: uppercase;
      margin-bottom: 10px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .about-content h2 {
      font-size: 1.5rem;
      margin-bottom: 8px;
    }

    .about-content h3 {
      font-size: 1.2rem;
      margin-top: 12px;
      margin-bottom: 8px;
    }

    .about-content p {
      font-size: 1rem;
      text-align: justify;
      line-height: 1.6;
      margin-bottom: 12px;
    }

    .about-content ul {
      list-style-type: disc;
      margin-left: 20px;
      margin-bottom: 12px;
    }

    .about-content ul li {
      margin-bottom: 8px;
    }

    .about-content ul li strong {
      color: #e12929;
    }

    /* Content Images */
    .content-image {
      width: 100%;
      height: auto;
      transform: translateX(-20px);
    }

    .content-image.left {
      order: 1;
      animation: slideInLeft 1s ease-in-out forwards 0.5s;
    }

    .content-image.right {
      order: 2;
      animation: slideInRight 1s ease-in-out forwards 0.5s;
    }
	.content-images img {
		width: 100%; 
		padding: 0px 20px;
    }

/* Slider Section */
    .slider-section {
      position: relative;
      width: 100%;
		padding-bottom: 20px;
      overflow-x: auto;
      overflow-y: hidden;
      scrollbar-width: thin;
      scrollbar-color: rgba(225, 41, 41, 0.7) rgba(0, 0, 0, 0.3);
      animation: slideUp 1s ease-in-out;
      cursor: grab;
      margin-bottom: 40px;
    }

    .slider-section::-webkit-scrollbar {
      height: 6px;
    }

    .slider-section::-webkit-scrollbar-track {
      background: rgba(0, 0, 0, 0.3);
      border-radius: 3px;
    }

    .slider-section::-webkit-scrollbar-thumb {
      background: rgba(225, 41, 41, 0.7);
      border-radius: 3px;
    }

    .slider-section::-webkit-scrollbar-thumb:hover {
      background: rgba(181, 32, 32, 0.7);
    }

    .slider-section::-webkit-scrollbar-button {
      display: none;
    }

    .slider {
      display: flex;
      width: max-content;
      gap: 0;
      margin: 0;
      padding: 0;
    }

    .slide {
      flex: 0 0 auto;
      width: calc(100vw / 6);
      text-align: center;
      position: relative;
      margin: 0;
      padding: 0;
      animation: slideIn 0.6s ease-in-out;
    }

    .slide img {
      width: 100%;
      height: 400px;
      object-fit: cover;
/*       border-radius: 10px; */
      display: block;
      margin: 0;
      padding: 0;
      animation: scaleIn 1s ease-in-out;
    }

    .slide-content {
      position: absolute;
      bottom: 10px;
      left: 0;
      right: 0;
      background: rgba(0, 0, 0, 0.8);
      padding: 0;
      margin: 0;
      transform: translateY(10px);
      transition: transform 0.3s ease;
    }

    .slide:hover .slide-content {
      transform: translateY(0);
      animation: textSlideUp 0.3s ease-in-out;
    }

    .slide-content h3 {
      font-size: 1.2rem;
      margin: 0;
    }

    .slide-content h3 a {
      color: #fff;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .slide-content h3 a:hover {
      color: #e12929;
    }

    .slide-content p {
      font-size: 0.9rem;
      color: #ccc;
      margin: 0;
    }

    /* Masonry Gallery */
    .masonry-section {
      margin-bottom: 40px;
      animation: slideUp 1s ease-in-out 0.2s;
    }

    .masonry-section h2 {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 30px;
      animation: bounceIn 1s ease-in-out;
    }

    .masonry-grid {
      column-count: 4;
      column-gap: 10px;
      padding: 0 20px;
    }

    .masonry-item {
      break-inside: avoid;
      margin-bottom: 10px;
      overflow: hidden;
      border-radius: 10px;
      transition: transform 0.3s ease;
      transform: rotateX(90deg);
      animation: flipInX 0.5s ease-in-out forwards;
    }

    .masonry-item:nth-child(1) { animation-delay: 0.1s; }
    .masonry-item:nth-child(2) { animation-delay: 0.2s; }
    .masonry-item:nth-child(3) { animation-delay: 0.3s; }
    .masonry-item:nth-child(4) { animation-delay: 0.4s; }
    .masonry-item:nth-child(5) { animation-delay: 0.5s; }
    .masonry-item:nth-child(6) { animation-delay: 0.6s; }

    .masonry-item img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.3s ease;
      animation: scaleIn 1s ease-in-out;
    }

    .masonry-item:hover {
      transform: scale(1.05) rotate(2deg);
      animation: rotateScale 0.3s ease-in-out;
    }

    .masonry-item:hover img {
      transform: scale(1.1);
    }

    /* Video Slider */
    .video-section {
      margin-bottom: 40px;
      animation: slideUp 1s ease-in-out 0.4s;
    }

    .video-section h2 {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 30px;
      animation: bounceIn 1s ease-in-out;
    }

    .video-slider {
      position: relative;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      height: 300px;
      overflow: hidden;
      display: flex;
      align-items: center;
      background: rgba(0, 0, 0, 0.8);
      border-radius: 15px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
      cursor: grab;
    }

    .video-slider-container {
      display: flex;
      width: max-content;
      transition: transform 0.5s ease-in-out;
    }

    .video-slide {
      flex: 0 0 auto;
      width: calc(100% / 3);
      height: 250px;
      margin: 0 10px;
      position: relative;
      animation: slideIn 0.5s ease-in-out;
    }

    .video-slide iframe {
      width: 100%;
      height: 100%;
      border: none;
      border-radius: 10px;
    }

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

    .video-slide:hover .overlay {
      transform: scale(1.05);
    }

    .video-slide .overlay i {
      color: #e12929;
      font-size: 2.5rem;
      transition: transform 0.3s ease;
      filter: drop-shadow(0 0 10px #e12929);
    }

    .video-slide:hover .overlay i {
      transform: scale(1.2);
      animation: pulse 0.5s ease-in-out;
    }

    .video-nav {
      position: absolute;
      top: 50%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      transform: translateY(-50%);
      z-index: 1;
    }

    .video-nav button {
      background: rgba(0, 0, 0, 0.7);
      border: none;
      color: #fff;
      font-size: 1.5rem;
      padding: 12px;
      cursor: pointer;
      border-radius: 50%;
      transition: background 0.3s ease, transform 0.3s ease;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .video-slider:hover .video-nav button {
      transform: translateX(0);
    }

    .video-nav button.prev {
      transform: translateX(-20px);
      animation: slideInLeft 0.3s ease-in-out forwards;
    }

    .video-nav button.next {
      transform: translateX(20px);
      animation: slideInRight 0.3s ease-in-out forwards;
    }

    .video-nav button:hover {
      background: #e12929;
      transform: scale(1.1);
    }

    /* Content Section */
    main {
      padding: 100px 0 50px;
      min-height: calc(100vh - 150px);
    }

    .hero-section {
      text-align: center;
      background: rgba(0, 0, 0, 0.7);
      padding: 40px 20px;
      border-radius: 10px;
      margin-bottom: 40px;
      animation: slideUp 1s ease-in-out 0.6s;
    }

    .hero-section h1 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      animation: bounceIn 1s ease-in-out;
    }

    .hero-section p {
      font-size: 1.1rem;
      line-height: 1.6;
      max-width: 800px;
      margin: 0 auto 20px;
    }

    .hero-section .cta-button {
      display: inline-block;
      padding: 10px 20px;
      background: #e12929;
      color: #fff;
      text-decoration: none;
      border-radius: 5px;
      transition: transform 0.3s ease, background 0.3s ease;
    }

    .hero-section .cta-button:hover {
      background: #b52020;
      transform: scale(1.1);
      animation: pulse 0.5s ease-in-out;
    }

    .leadership-section {
      margin-bottom: 40px;
      animation: slideUp 1s ease-in-out 0.8s;
    }

    .leadership-section h2 {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 30px;
      animation: bounceIn 1s ease-in-out;
    }

    .leadership-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

    .leadership-card {
      background: rgba(0, 0, 0, 0.7);
      border-radius: 10px;
      width: 250px;
      text-align: center;
      padding: 20px;
      transition: transform 0.3s ease;
      transform: translateY(20px);
      animation: slideUp 0.5s ease-in-out forwards;
    }

    .leadership-card:nth-child(1) { animation-delay: 0.1s; }
    .leadership-card:nth-child(2) { animation-delay: 0.2s; }
    .leadership-card:nth-child(3) { animation-delay: 0.3s; }

    .leadership-card:hover {
      transform: scale(1.05);
      animation: pulse 0.5s ease-in-out;
    }

    .leadership-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 10px;
      margin-bottom: 15px;
      animation: scaleIn 1s ease-in-out;
    }

    .leadership-card h3 {
      font-size: 1.3rem;
      margin-bottom: 10px;
    }

    .leadership-card p {
      font-size: 0.95rem;
      color: #ccc;
    }

    .achievements-section {
      text-align: center;
      animation: slideUp 1s ease-in-out 1s;
    }

    .achievements-section h2 {
      font-size: 2rem;
      margin-bottom: 30px;
      animation: bounceIn 1s ease-in-out;
    }

    .achievements-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

    .achievement-card {
      background: rgba(0, 0, 0, 0.7);
      border-radius: 10px;
      width: 300px;
      padding: 20px;
      transition: transform 0.3s ease;
      transform: translateY(20px);
      animation: slideUp 0.5s ease-in-out forwards;
    }

    .achievement-card:nth-child(1) { animation-delay: 0.1s; }
    .achievement-card:nth-child(2) { animation-delay: 0.2s; }
    .achievement-card:nth-child(3) { animation-delay: 0.3s; }

    .achievement-card:hover {
      transform: scale(1.05);
      animation: pulse 0.5s ease-in-out;
    }

    .achievement-card h3 {
      font-size: 1.2rem;
      margin-bottom: 10px;
    }

    .achievement-card p {
      font-size: 0.95rem;
      line-height: 1.5;
    }

    /* Footer */
    .footer {
      background: rgba(0, 0, 0, 0.7);
      padding: 20px 0;
      text-align: center;
      z-index: 1;
      opacity: 0;
      animation: fadeIn 1.5s ease-in-out forwards 1s;
    }

    .footer-content {
      display: flex;
      justify-content: center;
      gap: 40px;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }

    .footer-nav, .footer-social, .footer-legal {
      flex: 1;
      min-width: 200px;
    }

    .footer-nav h3, .footer-social h3, .footer-legal h3 {
      font-size: 1.1rem;
      margin-bottom: 10px;
    }

    .horizontal-list {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
    }

    .horizontal-list-1 {
        justify-content: left;
        margin-left: 20px;
    }

    .horizontal-list-2 {
        justify-content: center;
    }

    .horizontal-list-3 {
        justify-content: right;
        margin-right: 20px;
    }

    .horizontal-list li {
      margin: 0;
      transition: transform 0.3s ease;
    }

    .horizontal-list li:hover {
      transform: scale(1.1);
    }

    .footer-nav ul li a, .footer-legal ul li a {
      color: #fff;
      text-decoration: none;
    }

    .footer-nav ul li a:hover, .footer-legal ul li a:hover {
      color: #e12929;
    }

    .social-icons {
      display: flex;
      justify-content: center;
      gap: 15px;
    }

    .social-icons a {
      color: #fff;
      font-size: 1.3rem;
      text-decoration: none;
      transition: color 0.3s ease, transform 0.3s ease;
    }

    .social-icons a:hover {
      color: #e12929;
      transform: scale(1.2);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      padding-top: 10px;
      font-size: 0.8rem;
    }

    .footer-bottom p {
      margin: 5px 0;
    }

    .footer-bottom a {
      color: #fff;
      text-decoration: none;
    }

    .footer-bottom a:hover {
      color: #e12929;
    }

    /* Animations */
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes slideInLeft {
      from { opacity: 0; transform: translateX(-20px); }
      to { opacity: 1; transform: translateX(0); }
    }

    @keyframes slideInRight {
      from { opacity: 0; transform: translateX(20px); }
      to { opacity: 1; transform: translateX(0); }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .about-content h1 { font-size: 1.4rem; }
      .about-content h2 { font-size: 1.2rem; }
      .about-content h3 { font-size: 1rem; }
      .about-content p { font-size: 0.9rem; }
      .navbar { top: 10px; left: 10px; }
      .nav-menu { width: 200px; top: 60px; left: 10px; padding: 15px; }
      .nav-menu li a { font-size: 0.9rem; }
      .logo img { height: 40px; }
      .about-content { padding: 50px 10px 10px 10px; flex-direction: column; }
      .content-images { flex: 0 0 100%; margin-bottom: 20px; }
      .content-text { flex: 0 0 100%; }
      .content-image { width: 100px; }
      .footer-content { flex-direction: column; text-align: center; gap: 0px; }
      .footer-nav, .footer-social, .footer-legal { min-width: 100%; margin-bottom: 20px; }
      .horizontal-list { gap: 10px; justify-content: center; margin: 0px;}
      .social-icons { gap: 10px; }
      .social-icons a { font-size: 1.1rem; }
      .footer-bottom { font-size: 0.7rem; }
	  .content-image.left {margin-bottom: 20px;}
	  .content-image.right {margin-top: 20px;}
	  .content-images img {padding: 0px 0px;}
    }

    @media (min-width: 769px) and (max-width: 1024px) {
      .about-content h1 { font-size: 1.8rem; }
      .about-content h2 { font-size: 1.4rem; }
      .about-content h3 { font-size: 1.1rem; }
      .about-content p { font-size: 0.95rem; }
      .navbar { top: 15px; left: 15px; }
      .nav-menu { width: 220px; top: 70px; left: 15px; padding: 18px; }
      .nav-menu li a { font-size: 0.95rem; }
      .logo img { height: 50px; }
      .about-content { padding: 90px 15px 15px 15px; }
      .content-image { width: 120px; }
      .footer-content { gap: 30px; }
      .footer-nav, .footer-social, .footer-legal { min-width: 180px; }
      .horizontal-list { gap: 12px; }
      .social-icons { gap: 12px; }
      .social-icons a { font-size: 1.2rem; }
      .footer-bottom { font-size: 0.75rem; }
    }

    @media (min-width: 1025px) {
      .about-content h1 { font-size: 2rem; }
      .about-content h2 { font-size: 1.5rem; }
      .about-content h3 { font-size: 1.2rem; }
      .about-content p { font-size: 1rem; }
      .about-content { padding: 100px 20px 20px 20px; }
      .content-image { width: 150px; }
    }

/* Animations */
    @keyframes slideUp {
      from { transform: translateY(20px); }
      to { transform: translateY(0); }
    }

    @keyframes textSlideUp {
      from { transform: translateY(10px); }
      to { transform: translateY(0); }
    }

    @keyframes slideIn {
      from { transform: translateX(-20px) rotateY(10deg); }
      to { transform: translateX(0) rotateY(0); }
    }

    @keyframes flipInX {
      from { transform: rotateX(90deg); }
      to { transform: rotateX(0); }
    }

    @keyframes rotateScale {
      from { transform: scale(1) rotate(0); }
      to { transform: scale(1.05) rotate(2deg); }
    }

    @keyframes slideInLeft {
      from { transform: translateX(-20px); }
      to { transform: translateX(0); }
    }

    @keyframes slideInRight {
      from { transform: translateX(20px); }
      to { transform: translateX(0); }
    }

    @keyframes bounceIn {
      0% { transform: scale(0.3); }
      50% { transform: scale(1.2); }
      70% { transform: scale(0.9); }
      100% { transform: scale(1); }
    }

    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.1); }
      100% { transform: scale(1); }
    }

    @keyframes slideInDown {
      from { transform: translateY(-10px); }
      to { transform: translateY(0); }
    }

    @keyframes scaleIn {
      from { transform: scale(0.8); }
      to { transform: scale(1); }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .slider-section { padding: 0; }
      .slide { width: calc(100vw / 2); }
      .slide img { height: 300px; }
      .slide-content h3 { font-size: 1rem; }
      .slide-content p { font-size: 0.8rem; }
      .masonry-grid { column-count: 1; }
      .video-slider { height: 250px; max-width: 100%; }
      .video-slide { width: 100%; margin: 0 5px; height: 200px; }
      .video-nav button { font-size: 1.2rem; padding: 8px; }
      .hero-section h1 { font-size: 1.8rem; }
      .hero-section p { font-size: 0.95rem; }
      .hero-section .cta-button { padding: 8px 16px; font-size: 0.9rem; }
      .leadership-section h2, .achievements-section h2, .masonry-section h2, .video-section h2 { font-size: 1.5rem; }
      .leadership-card { width: 100%; max-width: 300px; }
      .leadership-card img { height: 150px; }
      .achievement-card { width: 100%; max-width: 300px; }
    }

    @media (min-width: 769px) and (max-width: 1024px) {
      .slider-section { padding: 0; }
      .slide { width: calc(100vw / 4); }
      .slide img { height: 320px; }
      .slide-content h3 { font-size: 1.1rem; }
      .slide-content p { font-size: 0.85rem; }
      .masonry-grid { column-count: 2; }
      .video-slider { height: 250px; max-width: 800px; }
      .video-slide { width: calc(100% / 2); margin: 0 8px; height: 200px; }
      .video-nav button { font-size: 1.3rem; padding: 9px; }
      .hero-section h1 { font-size: 2rem; }
      .hero-section p { font-size: 1rem; }
      .leadership-section h2, .achievements-section h2, .masonry-section h2, .video-section h2 { font-size: 1.7rem; }
      .leadership-card { width: 220px; }
      .leadership-card img { height: 180px; }
      .achievement-card { width: 280px; }
    }

/* Main Content */
    .contact-section {
      padding: 100px 0 50px;
      min-height: calc(100vh - 200px);
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      justify-content: center;
      animation: slideUp 1s ease-in-out;
    }

    .contact-form, .contact-map, .contact-list {
      flex: 1;
      min-width: 300px;
      background: rgba(0, 0, 0, 0.7);
      padding: 30px;
      border-radius: 10px;
      transition: transform 0.3s ease;
    }

    .contact-form:hover, .contact-map:hover, .contact-list:hover {
      transform: translateY(-10px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .contact-form h2, .contact-list h2 {
      font-size: 1.5rem;
      margin-bottom: 20px;
      animation: bounceIn 1s ease-in-out;
    }

    .contact-form label {
      display: block;
      margin-bottom: 5px;
      font-size: 1rem;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 10px;
      margin-bottom: 15px;
      border: none;
      border-radius: 5px;
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
      font-size: 1rem;
      transition: background 0.3s ease;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      background: rgba(255, 255, 255, 0.2);
      outline: none;
    }

    .contact-form button {
      background: #e12929;
      color: #fff;
      padding: 10px 20px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-size: 1rem;
      transition: background 0.3s ease, transform 0.3s ease;
    }

    .contact-form button:hover {
      background: #b52020;
      transform: scale(1.05);
      animation: pulse 0.5s ease-in-out;
    }

    .contact-map iframe {
      width: 100%;
      height: 300px;
      border: none;
      border-radius: 10px;
      animation: scaleIn 1s ease-in-out;
    }

    .contact-list ul {
      list-style: none;
    }

    .contact-list ul li {
      margin: 15px 0;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: transform 0.3s ease;
    }

    .contact-list ul li:hover {
      transform: scale(1.05);
      animation: pulse 0.5s ease-in-out;
    }

    .contact-list ul li i {
      font-size: 1.2rem;
      color: #e12929;
    }

    .contact-list ul li a {
      color: #fff;
      text-decoration: none;
    }

    .contact-list ul li a:hover {
      color: #e12929;
    }

/* Main Content */
    .contact-section {
      padding: 100px 0 50px;
      min-height: calc(100vh - 200px);
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      justify-content: center;
      animation: slideUp 1s ease-in-out;
    }

    .contact-form, .contact-map, .contact-list {
      flex: 1;
      min-width: 300px;
      background: rgba(0, 0, 0, 0.7);
      padding: 30px;
      border-radius: 10px;
      transition: transform 0.3s ease;
    }

    .contact-form:hover, .contact-map:hover, .contact-list:hover {
      transform: translateY(-10px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .contact-form h2, .contact-list h2 {
      font-size: 1.5rem;
      margin-bottom: 20px;
      animation: bounceIn 1s ease-in-out;
    }

    .contact-form label {
      display: block;
      margin-bottom: 5px;
      font-size: 1rem;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 10px;
      margin-bottom: 15px;
      border: none;
      border-radius: 5px;
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
      font-size: 1rem;
      transition: background 0.3s ease;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      background: rgba(255, 255, 255, 0.2);
      outline: none;
    }

    .contact-form button {
      background: #e12929;
      color: #fff;
      padding: 10px 20px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-size: 1rem;
      transition: background 0.3s ease, transform 0.3s ease;
    }

    .contact-form button:hover {
      background: #b52020;
      transform: scale(1.05);
      animation: pulse 0.5s ease-in-out;
    }

    .contact-map iframe {
      width: 100%;
      height: 400px;
      border: none;
      border-radius: 10px;
      animation: scaleIn 1s ease-in-out;
    }

    .contact-list ul {
      list-style: none;
    }

    .contact-list ul li {
      margin: 15px 0;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: transform 0.3s ease;
    }

    .contact-list ul li:hover {
      transform: scale(1.05);
      animation: pulse 0.5s ease-in-out;
    }

    .contact-list ul li i {
      font-size: 1.2rem;
      color: #e12929;
    }

    .contact-list ul li a {
      color: #fff;
      text-decoration: none;
    }

    .contact-list ul li a:hover {
      color: #e12929;
    }

/* Responsive Design */
    @media (max-width: 768px) {
      .contact-section { flex-direction: column; padding: 80px 0 30px; }
      .contact-form, .contact-map, .contact-list { min-width: 100%; }
      .contact-map iframe { height: 200px; }
    }

    @media (min-width: 769px) and (max-width: 1024px) {
      .contact-section { gap: 30px; }
      .contact-form, .contact-map, .contact-list { min-width: 250px; }
      .contact-map iframe { height: 250px; }
    }

 /* Animations */
    @keyframes slideUp {
      from { transform: translateY(50px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

    @keyframes scaleIn {
      from { transform: scale(0.8); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }

    @keyframes bounceIn {
      0% { transform: scale(0.8); opacity: 0; }
      50% { transform: scale(1.1); opacity: 1; }
      100% { transform: scale(1); }
    }

    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.1); }
      100% { transform: scale(1); }
    }

    @keyframes slideInDown {
      from { transform: translateY(-10px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

    /* Application Section */
    .application-section {
      padding: 100px 0 60px;
      text-align: center;
      animation: slideUp 1s ease-in-out;
    }

    .application-section h1 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: #fff;
      animation: bounceIn 1s ease-in-out;
    }

    .application-section p {
      font-size: 1.1rem;
      margin-bottom: 30px;
      color: #ddd;
    }

    .application-form {
      background: rgba(0, 0, 0, 0.7);
      padding: 40px;
      border-radius: 10px;
      max-width: 600px;
      margin: 0 auto;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
      animation: slideUp 1s ease-in-out 0.2s;
    }

    .form-group {
      margin-bottom: 20px;
      text-align: left;
    }

    .form-group label {
      display: block;
      font-size: 1rem;
      margin-bottom: 8px;
      color: #fff;
      font-weight: bold;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 12px;
      border: none;
      border-radius: 5px;
      font-size: 1rem;
      background: #333;
      color: #fff;
      transition: border 0.3s ease, transform 0.3s ease;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border: 2px solid #e12929;
      transform: scale(1.02);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 120px;
    }

    .form-group input[type="file"] {
      padding: 5px;
    }

    .form-group input[type="file"]::-webkit-file-upload-button {
      background: #e12929;
      color: #fff;
      border: none;
      padding: 8px 15px;
      border-radius: 5px;
      cursor: pointer;
      transition: backgroundgono 0.3s ease;
    }

    .form-group input[type="file"]::-webkit-file-upload-button:hover {
      background: #b52020;
    }

    .submit-btn {
      background: #e12929;
      color: #fff;
      padding: 12px 30px;
      border: none;
      border-radius: 5px;
      font-size: 1.1rem;
      cursor: pointer;
      display: block;
      margin: 20px auto 0;
      transition: background 0.3s ease, transform 0.3s ease;
    }

    .submit-btn:hover {
      background: #b52020;
      transform: scale(1.05);
      animation: pulse 0.5s ease-in-out;
    }

 /* Responsive Design */
    @media (max-width: 768px) {
      .application-section { padding: 80px 0 40px; }
      .application-section h1 { font-size: 2rem; }
      .application-form { padding: 20px; }
      .form-group input,
      .form-group select,
      .form-group textarea { font-size: 0.9rem; }
      .submit-btn { font-size: 1rem; padding: 10px 20px; }
    }

    @media (min-width: 769px) and (max-width: 1024px) {
      .application-section h1 { font-size: 2.2rem; }
      .application-form { padding: 30px; }
    }
/* Collaboration Section */
    .collaboration-section {
      padding: 100px 0 60px;
      text-align: center;
      animation: slideUp 1s ease-in-out;
    }

    .collaboration-section h1 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: #fff;
      animation: bounceIn 1s ease-in-out;
    }

    .collaboration-section p {
      font-size: 1.1rem;
      margin-bottom: 30px;
      color: #ddd;
    }

    .collaboration-form {
      background: rgba(0, 0, 0, 0.7);
      padding: 40px;
      border-radius: 10px;
      max-width: 600px;
      margin: 0 auto;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
      animation: slideUp 1s ease-in-out 0.2s;
    }

@keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
/* Logo Line Section */
    .logo-line-section {
      padding: 40px 0;
      text-align: center;
      background: rgba(0, 0, 0, 0.7);
      margin: 40px 0;
      width: 100vw;
      position: relative;
      left: 50%;
      right: 50%;
      margin-left: -50vw;
      margin-right: -50vw;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
      animation: slideUp 1s ease-in-out 0.4s;
      overflow: hidden;
    }

    .logo-line-section h2 {
      font-size: 2rem;
      margin-bottom: 20px;
      color: #fff;
      animation: bounceIn 1s ease-in-out;
      padding: 0 20px;
    }

    .logo-line-wrapper {
      overflow: hidden;
      width: 100%;
    }

    .logo-line {
      display: flex;
      align-items: center;
      gap: 40px;
      width: fit-content;
      animation: scroll 20s linear infinite;
    }

    .logo-line img {
      height: 80px;
      object-fit: contain;
      transition: transform 0.3s ease, opacity 0.3s ease;
      animation: scaleIn 1s ease-in-out;
    }

    .logo-line img:hover {
      transform: scale(1.1);
      opacity: 0.8;
      animation: pulse 0.5s ease-in Juno-in-out;
    }

/* Responsive Design */
    @media (max-width: 768px) {
      .logo-line-section { padding: 20px 0; }
      .logo-line-section h2 { font-size: 1.5rem; }
      .logo-line img { height: 50px; }
      .logo-line { gap: 20px; }
		.application-section .container, .collaboration-section .container{
			width: 100%;
		}
		.footer-bottom {
    padding-left: 10px;
    padding-right: 10px;
}
    }

    @media (min-width: 769px) and (max-width: 1024px) {
		.logo-line-section h2 { font-size: 1.8px}
        .logo-line img { height: 60px; }
        .logo-line { gap: 30px; }
      }
    }

/* YouTube Section Styles */
    .youtube-section {
      text-align: center;
      padding: clamp(1.5rem, 5vw, 2.5rem) 1rem;
      background-color: #f5f5f5;
    }

    .youtube-section h2 {
      font-size: clamp(1.8rem, 5vw, 2.5rem);
      margin-bottom: 1.5rem;
      color: #fff;
    }

    .youtube-section .grid-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
      gap: clamp(1rem, 3vw, 1.5rem);
    }

    .youtube-section .grid-item {
/*       background-color: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      opacity: 0; */
      transform: translateY(20px);
      animation: fadeInUp 0.6s ease forwards;
      animation-delay: calc(var(--index) * 0.2s);
    }

    .youtube-section .grid-item:hover {
      transform: scale(1.05);
      transition: transform 0.3s ease;
    }

    .youtube-section .grid-item img {
      width: 100%;
      height: auto;
      display: block;
    }

    .youtube-section .grid-item h3 {
      font-size: clamp(1.2rem, 3vw, 1.5rem);
      margin: 0.75rem 0.5rem;
      color: #222;
    }

    .youtube-section .grid-item p {
      font-size: clamp(0.9rem, 2.5vw, 1rem);
      margin: 0 0.5rem 1rem;
      color: #666;
    }

    /* Animation Keyframes */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }


    /* Responsive Adjustments */
    @media (max-width: 600px) {

      .youtube-section {
        padding: 1rem;
      }

      .youtube-section .grid-container {
        grid-template-columns: 1fr;
      }
    }

    @media (min-width: 601px) and (max-width: 900px) {
      .youtube-section .grid-container {
        grid-template-columns: repeat(2, 1fr);
      }
    }