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

        body {
          height: 100%;
          min-height: 100vh;
          width: 100vw;
          margin: 0;
          padding: 0;
        }

        body {
          background-image: url('../img/02About.png');
          /* or your desired image */
          background-size: cover;
          /* background-position: center center; */
          background-repeat: no-repeat;
          min-height: 100vh;
          width: 100vw;
          overflow-x: hidden;
        }

        * {
          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: 20px;
          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: #b96329;
          transform: translateY(-3px);
        }

        .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;
          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 */
        .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 */
        }

        /* 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(calc(-50% - 15px));
            /* Half width for seamless loop */
          }
        }

        /* 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: 50px;
          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;
        }

        .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;
          }
        }

        * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
          font-family: 'Arial', sans-serif;
        }

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

        .two-column {
          display: flex;
          align-items: center;
          gap: 50px;
        }

        .image-column {
          flex: 1;
          display: flex;
          flex-direction: column;
          align-items: flex-end;
        }

        .image-column img {
          max-width: 450px;
          height: auto;
          border-radius: 8px;
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          margin-bottom: 20px;

        }

        .image-column .btn {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          padding: 12px 24px;
          background-color: #FF6B00;
          /* Orange color */
          color: white;
          border: none;
          border-radius: 10px;
          font-size: 16px;
          font-weight: 600;
          cursor: pointer;
          transition: all 0.3s ease;
          box-shadow: 0 2px 8px rgba(255, 107, 0, 0.3);

        }

        .image-column .btn:hover {
          background-color: #d96918;
        }

        .text-column {
          flex: 1;
          padding-top: 20px;
        }

        .text-column h1 {
          font-size: 50px;
          font-family: 'Roboto', sans-serif;
          font-weight: 1;
          /* Thin weight */
          color: #E78600;
          margin-bottom: 20px;
        }

        .text-column h2 {
          font-size: 24px;
          color: #475569;
          margin-bottom: 15px;
        }

        .text-column p {
          font-size: 18px;
          color: #555;
          line-height: 1.6;
          margin-bottom: 15px;
        }

        @media (max-width: 768px) {
          .two-column {
            flex-direction: column;
            gap: 30px;
          }

          .image-column,
          .text-column {
            width: 100%;
            margin-top: 20px;
          }

          .text-column {
            padding-top: 0;
          }
        }


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

        body {
          font-family: 'Roboto', sans-serif;
          color: #333;
        }

        .va-hero-section {
          position: relative;
          width: 100%;
          min-height: 100vh;
          display: flex;
          align-items: center;
          justify-content: center;
          padding: 40px;
        }

        .va-content-container {
          position: relative;
          max-width: 800px;
          width: 100%;
          display: flex;
          justify-content: center;
        }

        .va-text-card {
          width: 100%;
          max-width: 600px;
          padding: 60px 40px;
          text-align: center;
          display: flex;
          flex-direction: column;
          align-items: center;
          background-image: url('../img/Frame-5.png');
          background-size: cover !important;
          background-position: center !important;
          background-repeat: no-repeat !important;
          border-radius: 8px;
          position: relative;
          overflow: visible;
          z-index: 2;
          background-color: transparent !important;
        }

        .va-text-card h1 {
          font-size: 55px;
          font-weight: 100;
          color: #E78600;
          margin-bottom: 30px;
          line-height: 1.2;
        }

        .va-text-card p {
          font-size: 20px;
          font-weight: 300;
          margin-bottom: 25px;
          line-height: 1.5;
          color: #333;
          max-width: 500px;
        }

        .va-features-list {
          margin: 30px 0;
          list-style: none;
          display: flex;
          flex-wrap: wrap;
          justify-content: center;
          gap: 15px;
          max-width: 500px;
        }

        .va-features-list li {
          display: flex;
          align-items: center;
          font-size: 18px;
          font-weight: 300;
          color: #333;
        }

        .va-feature-icon {
          width: 36px;
          height: 36px;
          background-color: #E78600;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          margin-right: 12px;
          color: white;
        }

        .va-action-buttons {
          display: center;
          gap: 20px;
          margin-top: 40px;
          justify-content: center;
        }

        .va-action-btn {
          padding: 12px 15px;
          font-size: 16px;
          border-radius: 50px;
          text-decoration: none;
          font-weight: 400;
          transition: all 0.3s ease;
          display: inline-flex;
          align-items: center;
          margin-top: 10px;
        }

        .va-primary-btn {
          background-color: #E78600;
          color: white;
        }

        .va-secondary-btn {
          border: 1px solid #E78600;
          color: #E78600;
        }

        .va-btn-icon {
          margin-left: 8px;
        }

        @media (max-width: 768px) {
          .va-hero-section {
            padding: 20px;
          }

          .va-text-card {
            padding: 40px 30px;
          }

          .va-text-card h1 {
            font-size: 48px;
          }

          .va-text-card p {
            font-size: 18px;
          }

          .va-features-list {
            flex-direction: column;
            align-items: center;
            gap: 12px;
          }

          .va-action-buttons {
            flex-direction: column;
            gap: 12px;
            width: 50%;
          }

          .va-action-btn {
            width: 100%;
            justify-content: center;
          }
        }

        @media (max-width: 480px) {
          .va-text-card h1 {
            font-size: 36px;
          }

          .va-text-card p {
            font-size: 16px;
          }

          .va-features-list li {
            font-size: 16px;
          }

          .va-feature-icon {
            width: 30px;
            height: 30px;
            font-size: 14px;
          }
        }