        /* Global Styles */
        :root {
          --primary: #2c3e50;
          --secondary: #3498db;
          --accent: #e74c3c;
          --light: #ecf0f1;
          --dark: #1a252f;
          --gray: #95a5a6;
          --light-gray: #f8f9fa;
          --border: #e0e0e0;
        }

        * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
          font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }



        .container {
          width: 100%;
          max-width: 1200px;
          margin: 0 auto;
          padding: 0 20px;
        }

        .btn {
          display: inline-block;
          background: var(--secondary);
          color: white;
          padding: 15px 35px;
          border-radius: 50px;
          text-transform: uppercase;
          font-weight: 600;
          letter-spacing: 1px;
          text-decoration: none;
          transition: all 0.3s ease;
          border: none;
          cursor: pointer;
          font-size: 16px;
          box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
        }

        .btn:hover {
          background: #2980b9;
          transform: translateY(-3px);
          box-shadow: 0 8px 20px rgba(52, 152, 219, 0.6);
        }

        .btn-accent {
          background: var(--accent);
          box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
        }

        .btn-accent:hover {
          background: #c0392b;
          box-shadow: 0 8px 20px rgba(231, 76, 60, 0.6);
        }

        .section-title {
          font-size: 36px;
          color: var(--primary);
          margin-bottom: 40px;
          position: relative;
        }

        .section-title:after {
          content: '';
          display: block;
          width: 80px;
          height: 4px;
          background: var(--secondary);
          margin-top: 15px;
        }

        /* Partners Section */
        .partners {
          padding: 60px 0;
          background-color: #f5f5f5;
          overflow: hidden;
          /* Prevent horizontal scrollbar */
        }

        .partners h2 {
          text-align: center;
          font-size: 36px;
          margin-bottom: 40px;
          color: #2c3e50;
        }

        /* Logo Container */
        .partner-logos-wrapper {
          position: relative;
          width: 100%;
          overflow: hidden;
        }

        /* Gradient fade effects on sides */
        .partner-logos-wrapper::before,
        .partner-logos-wrapper::after {
          content: '';
          position: absolute;
          top: 0;
          bottom: 0;
          width: 100px;
          z-index: 2;
          pointer-events: none;
        }

        .partner-logos-wrapper::before {
          left: 0;
          background: linear-gradient(to right, #f5f5f5 0%, rgba(245, 245, 245, 0) 100%);
        }

        .partner-logos-wrapper::after {
          right: 0;
          background: linear-gradient(to left, #f5f5f5 0%, rgba(245, 245, 245, 0) 100%);
        }

        /* Animation Container */
        /* Animation Container */
        .partner-logos {
          display: flex;
          gap: 30px;
          width: max-content;
          /* Allow container to expand beyond viewport */
          animation: scrollLogos 30s linear infinite;
          padding: 10px 0;
          will-change: transform;
          /* Optimize for animation */
        }

        /* For infinite loop, duplicate the logos in HTML (template) so the logos repeat seamlessly. Adjust keyframes for full width scroll. */

        /* Individual Logo Items */
        .partner-logo {
          flex: 0 0 auto;
          width: 150px;
          height: 80px;
          display: flex;
          align-items: center;
          justify-content: center;
          background-color: #fff;
          border-radius: 5px;
          padding: 10px;
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
          transition: transform 0.3s ease;
        }

        /* Logo Image Styling */
        .partner-logo img {
          max-width: 100%;
          max-height: 100%;
          filter: grayscale(100%);
          opacity: 0.8;
          transition: filter 0.3s, opacity 0.3s;
        }

        /* Hover Effects */
        .partner-logo:hover {
          transform: translateY(-5px);
        }

        .partner-logo:hover img {
          filter: grayscale(0);
          opacity: 1;
        }

        /* Animation Keyframes */
        @keyframes scrollLogos {
          0% {
            transform: translateX(0);
          }

          100% {
            transform: translateX(-50%);
          }
        }

        /* Pause animation on hover */
        .partner-logos-wrapper:hover .partner-logos {
          animation-play-state: paused;
        }

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

          .partner-logos-wrapper::before,
          .partner-logos-wrapper::after {
            width: 50px;
          }

          .partner-logo {
            width: 120px;
            height: 60px;
          }
        }

        /* image card */

        .image-card {
          max-width: 1157px;
          width: 100%;
          margin: 60px auto;
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          border-radius: 8px;
          overflow: hidden;
          background: #fff;
        }

        .image-container {
          position: relative;
          padding-top: 50.65%;
          /* 586/1157 = 0.5065 (maintain aspect ratio) */
          overflow: hidden;
        }

        .responsive-image {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: transform 0.3s ease;
        }

        .card-content {
          padding: 20px;
          background-color: #FFF6EB;
        }

        .card-title {
          font-size: 1.5rem;
          margin-bottom: 10px;
          color: #333;
        }

        .card-description {
          color: #666;
          margin-bottom: 15px;
          line-height: 1.5;
        }

        .card-button {
          display: inline-block;
          padding: 8px 16px;
          background-color: #e9521d;
          color: white;
          text-decoration: none;
          border-radius: 4px;
          transition: background-color 0.3s;
        }

        .card-button:hover {
          background-color: #c44116;
        }

        /* Responsive Adjustments */
        @media (max-width: 1200px) {
          .image-card {
            max-width: 90%;
          }
        }

        @media (max-width: 768px) {
          .card-content {
            padding: 15px;
          }

          .card-title {
            font-size: 1.3rem;
          }
        }

        @media (max-width: 480px) {
          .image-container {
            padding-top: 75%;
            /* More square on mobile */
          }

          .card-content {
            padding: 12px;
          }
        }

        /* Event Info Section */
        .event-info {
          padding: 60px 0;
          background-color: #fff;
        }

        .event-info h2 {
          text-align: center;
          font-size: 36px;
          margin-bottom: 40px;
          color: #2c3e50;
        }

        .event-details {
          display: flex;
          flex-wrap: wrap;
          justify-content: center;
          gap: 30px;
        }

        .event-card {
          background-color: #f9f9f9;
          border-radius: 10px;
          padding: 30px;
          flex: 1 1 300px;
          max-width: 400px;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          transition: transform 0.3s, box-shadow 0.3s;
        }

        .event-card:hover {
          transform: translateY(-10px);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .event-card h3 {
          color: #3498db;
          margin-bottom: 15px;
          font-size: 24px;
        }

        .event-card p {
          margin-bottom: 20px;
          color: #555;
        }

        .booth-highlight {
          font-weight: bold;
          color: #e74c3c;
          font-size: 18px;
          display: inline-block;
          animation: pulse 2s infinite;
        }

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

          50% {
            transform: scale(1.05);
          }

          100% {
            transform: scale(1);
          }
        }


        /* form section  */

        .contact-section {
          display: flex;
          justify-content: space-between;
          align-items: flex-start;
          gap: 40px;
          max-width: 1200px;
          margin: 0 auto;
          padding: 60px 20px;
        }

        .contact-content {
          flex: 1;
          max-width: 500px;
        }

        .contact-content h2 {
          font-size: 2.5rem;
          color: #2c3e50;
          margin-bottom: 20px;
        }

        .contact-content p {
          font-size: 1.1rem;
          line-height: 1.6;
          color: #555;
        }

        .contact-form {
          width: 405px;
          /* Fixed width */
          height: 477px;
          /* Fixed height */
          background: #F9FAFB;
          /* Your requested background color */
          padding: 30px;
          border-radius: 20px;
          /* Rounded corners */
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          display: flex;
          flex-direction: column;
          justify-content: space-between;
        }

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

        .form-group input,
        .form-group textarea {
          width: 100%;
          padding: 12px 15px;
          border: 1px solid #E5E7EB;
          border-radius: 10px;
          font-size: 1rem;
          transition: all 0.3s;
          background: #FFFFFF;
        }

        .form-group input:focus,
        .form-group textarea:focus {
          border-color: #e9521d;
          outline: none;
          box-shadow: 0 0 0 3px rgba(233, 82, 29, 0.1);
        }

        .submit-btn {
          background-color: #e9521d;
          color: white;
          border: none;
          padding: 14px 25px;
          font-size: 1rem;
          border-radius: 10px;
          cursor: pointer;
          transition: all 0.3s;
          width: 50%;
        }

        .submit-btn:hover {
          background-color: #c44116;
          transform: translateY(-2px);
        }

        /* Responsive Design */
        @media (max-width: 900px) {
          .contact-section {
            flex-direction: column;
            align-items: center;
          }

          .contact-content {
            text-align: center;
            max-width: 100%;
            margin-bottom: 30px;
          }

          .contact-form {
            width: 100%;
            max-width: 405px;
            height: auto;
            min-height: 477px;
          }
        }

        main {
          background-image: url('../img/04Events.png');
          background-size: cover;
          background-position: center;
          background-attachment: fixed;
          background-repeat: no-repeat;
        }



        .event-details {
          font-size: 1.1rem;
          color: #e9521d;
          margin-bottom: 20px;
          font-size: 1.1rem;
          margin-bottom: 20px;
        }


        .contact-form2 {
          width: 405px;
          /* Fixed width */
          height: 477px;
          /* Fixed height */
          background: #F9FAFB;
          /* Your requested background color */
          padding: 30px;
          border-radius: 20px;
          /* Rounded corners */
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          display: flex;
          flex-direction: column;
          justify-content: space-between;
        }

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

        .form-group input,
        .form-group textarea {
          width: 100%;
          padding: 12px 15px;
          border: 1px solid #E5E7EB;
          border-radius: 10px;
          font-size: 1rem;
          transition: all 0.3s;
          background: #FFFFFF;
        }

        .form-group input:focus,
        .form-group textarea:focus {
          border-color: #e9521d;
          outline: none;
          box-shadow: 0 0 0 3px rgba(233, 82, 29, 0.1);
        }

        .submit-btn {
          background-color: #e9521d;
          color: white;
          border: none;
          padding: 14px 25px;
          font-size: 1rem;
          border-radius: 10px;
          cursor: pointer;
          transition: all 0.3s;
          width: 50%;
        }

        .submit-btn:hover {
          background-color: #c44116;
          transform: translateY(-2px);
        }

        /* Responsive Design */
        @media (max-width: 900px) {
          .contact-section {
            flex-direction: column;
            align-items: center;
          }

          .contact-content {
            text-align: center;
            max-width: 100%;
            margin-bottom: 30px;

          }

          .contact-form {
            width: 100%;
            max-width: 405px;
            height: auto;
            min-height: 477px;
          }
        }