

    body {
      margin: 0;
      font-family: 'Open Sans', sans-serif;
    }

    
   header {
  background: white;
  padding: 20px 80px;
  border-bottom: 1px solid #eee;
  position: relative;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 160px;
  margin-right: 10px;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  color: #1b1bd2;
}

.top-info i {
  margin-right: 6px;
  font-size: 24px;
}

.top-info a i {
  font-size: 24px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  position: relative;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  color: #1b1bd2;
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  color: #1b1bd2;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
}

.dropdown {
  display: none;
  position: absolute;
  top: 35px;
  left: 0;
  background-color: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  min-width: 220px;
  z-index: 999;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.dropdown a {
  display: block;
  padding: 12px 20px;
  color: #1b1bd2;
  text-decoration: none;
  font-size: 15px;
  transition: background 0.3s ease;
}

.dropdown a:hover {
  background-color: #f0f4ff;
}

.nav-item.show .dropdown {
  display: block;
}

.register-btn {
  background-color: #1b1bd2;
  color: white;
  padding: 20px 30px;
  text-decoration: none;
  font-weight: bold;
  border: none;
  cursor: pointer;
  font-size: 14px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  header {
    padding: 20px;
  }

  .top-bar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 100%;
  }

  .logo img {
    height: 100px;
    text-align: center;
  }

  .menu-toggle {
    display: inline-block;
  }

  nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 30px;
    margin-top: 0;
    padding: 20px 2px;
    border-top: 1px solid #ddd;
    background-color: #e6e6fa;
    font-weight: 300;
    font-size: 16px;
    position: absolute;
    top: 100%; /* Position just below the nav */
    left: 0;
    z-index: 1000; /* Ensure it stays above other content */
  }

  nav.active .nav-links {
    display: flex;
  }

  .nav-item > a {
    padding: 14px 20px;
    border-bottom: 1px solid #eee;
  }

  .dropdown {
    position: static;
    box-shadow: none;
    border-radius: 0;
    background: #f9f9f9;
  }

  .dropdown a {
    padding-left: 40px;
  }

  .register-btn {
    padding: 10px 20px;
    font-size: 14px;
    display: inline-block;
  }
}

     .container {
      position: relative;
      max-width: 1200px;
      margin: 40px auto;
      box-shadow: 0 0 30px rgba(0, 0, 0, 0.60);
      overflow: hidden;
      border-radius: 5px;
      background: #fff;
      margin-bottom: 80px;
    }

     .slider-container {
      position: relative;
      max-width: 1100px;
      margin: 40px auto;
      box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
      overflow: hidden;
      border-radius: 5px;
      background: #fff;
    }

    .slides {
      display: flex;
      transition: transform 0.5s ease-in-out;
      width: 100%;
    }

    .slide {
      width: 100%;
      flex-shrink: 0;
    }

    .slide img {
      width: 100%;
      display: block;
    }

    .arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: #4d4de3;
      border-radius: 50%;
      color: #fff;
      font-size: 24px;
      width: 40px;
      height: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      z-index: 10;
      transition: background 0.3s;
    }

    .arrow:hover {
      background-color: #3535c4;
    }

    .arrow.left {
      left: 15px;
    }

    .arrow.right {
      right: 15px;
    }

    .dots {
      text-align: center;
      padding: 15px 0;
      background: #fff;
    }

    .dot {
      display: inline-block;
      width: 10px;
      height: 10px;
      margin: 0 5px;
      background: #ccc;
      border-radius: 50%;
      cursor: pointer;
    }

    .dot.active {
      background: #4d4de3;
    }

    .info-sections {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding: 20px;
  background: #fff;
}

.info-box {
  flex: 1;
  min-width: 300px;
  max-width: 32%;
  text-align: center;
  border: 1px solid #eee;
  padding: 15px;
}

.info-box img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
  margin-top: 20px;
}

.info-box h3 {
  font-size: 20px;
  color: #444;
  margin-bottom: 10px;
}

.info-box p {
  font-size: 14px;
  color: #333;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  background-color: #1205e3;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn:hover {
  background: linear-gradient(45deg, #0a049c, #1205e3);
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(10, 4, 156, 0.5);
}

.about-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
  background: repeating-linear-gradient(
    45deg,
    #f0f0f0,
    #f0f0f0 10px,
    #eaeaea 10px,
    #eaeaea 20px
  );
  opacity: 0;
  transform: translateY(-100px);
  transition: all 1s ease;
}

.about-section.show {
  opacity: 1;
  transform: translateY(0);
}

.about-content {
  max-width: 65%;
}

.about-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.about-button .btn {
  display: inline-block;
  padding: 15px 25px;
  background: linear-gradient(135deg, #0a049c, #3d3dcf);
  color: white;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.about-button .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    text-align: center;
  }

  .about-content, .about-button {
    max-width: 100%;
  }

  .about-button {
    margin-top: 20px;
  }
}
.post-show-section {
  opacity: 0;
  transform: translateY(-100px);
  transition: all 1s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
  background: repeating-linear-gradient(
    45deg,
    #f0f0f0,
    #f0f0f0 10px,
    #eaeaea 10px,
    #eaeaea 20px
  );
}

.post-show-section.show {
  opacity: 1;
  transform: translateY(0);
}


.post-show-content {
  max-width: 65%;
}

.post-show-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.post-show-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.post-show-button .btn {
  display: inline-block;
  padding: 15px 25px;
  background: linear-gradient(135deg, #0a049c, #3d3dcf);
  color: white;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.post-show-button .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .post-show-section {
    flex-direction: column;
    text-align: center;
  }

  .post-show-content,
  .post-show-button {
    max-width: 100%;
  }

  .post-show-button {
    margin-top: 20px;
  }
}

.sponsor-section {
  text-align: center;
  padding: 60px 20px;
  background: white;
}

.sponsor-section h2 {
  font-size: 32px;
  color: #444;
  margin-bottom: 40px;
}

.sponsor-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 400px; 
  flex-wrap: wrap;
  margin-bottom: 40px;
   margin: 0 50px; 
  text-align: center;
}

.sponsor-logo img {
  max-height: 250px;
  margin-bottom: 10px;
}

.sponsor-logo p {
  font-size: 14px;
  color: #333;
  margin: 0;
}

.sponsor-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 400px;
}

.btn {
  background: linear-gradient(135deg, #0a049c, #3d3dcf);
  color: white;
  padding: 17px 30px;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .sponsor-logos {
    flex-direction: column;
    gap: 30px;
  }
  .sponsor-buttons {
    flex-direction: column;
    gap: 15px;
  }
}



.footer-section {
  display: flex;
  justify-content: space-around;
  text-align: left;
  background-color: #f8f8f8;
  padding: 50px 20px;
  color: #777;
 
}

hr{
 margin-top: 80px;
 margin-bottom: 0;

}

.column {
  max-width: 300px;
}

.column h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #999;
  text-transform: uppercase;
}

.column p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.column p strong {
  color: #555;
}


/* ✅ Responsive for tablets and phones */
@media (max-width: 768px) {
  .footer-section {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 15px;
  }

  .column {
    max-width: 100%;
    margin-bottom: 30px;
  }
}

/* 2018 page */
.review-section {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: center;
}

.review-section h1 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #444;
}

.buttons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
  justify-content: left;
}

.review-button {
  min-width: 280px;
  padding: 14px 28px;
  background-color: #1409dc;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 2px;
  text-align: center;
  transition: all 0.3s ease;
}

.review-button:hover {
  background-color: #0e07b5;
  transform: scale(1.03);
}

.review-text {
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  color: #524f4f;
}

.review-text a {
  color: #2b33d1;
  text-decoration: underline;
}



        @media (max-width: 768px) {
            .review-section {
                margin: 20px auto;
                padding: 0 15px;
            }

            .review-section h1 {
                font-size: 28px;
                margin-bottom: 30px;
            }

            .buttons-grid {
                flex-direction: column;
                gap: 15px;
                margin-bottom: 30px;
                align-items: center;
            }

            .review-button {
                min-width: 80%;
                max-width: 90%;
                padding: 16px 20px;
                font-size: 14px;
            }

            .review-text {
                font-size: 14px;
                font-weight: 500;
                line-height: 1.5;
                padding: 0 10px;
            }

        }


 .main-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
        
        .content-card {
            background: white;
            border-radius: 8px;
            padding: 40px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            height: fit-content;
        }
        
        .card-title {
            color: #333;
            font-size: 24px;
            font-weight: 600;
            margin: 0 0 20px 0;
            line-height: 1.3;
        }
        
        .card-text {
            color: #666;
            line-height: 1.5;
            margin: 0 0 15px 0;
            font-size: 16px;
        }
        
        a {
            color: #4F46E5;
            text-decoration: none;
        }
        
        a:hover {
            text-decoration: underline;
        }
        
        .cta-button {
            display: block;
            width: 90%;
            background: #4F46E5;
            color: white;
            text-align: center;
            padding: 15px 20px;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            margin-top: 30px;
            transition: background-color 0.2s;
            cursor: pointer;
        }
        
        .cta-button:hover {
            background: #4338CA;
            color: white;
            text-decoration: none;
        }
        
        .media-button {
            background: #7C3AED;
        }
        
        .media-button:hover {
            background: #6D28D9;
        }
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .main-wrapper {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 0 10px;
            }
            
            .content-card {
                padding: 25px 20px;
                margin-bottom: 0;
            }
            
            .card-title {
                font-size: 20px;
                margin-bottom: 15px;
            }
            
            .card-text {
                font-size: 16px;
            }
            
            .cta-button {
                padding: 12px 20px;
                font-size: 15px;
                margin-top: 20px;
            }
        }
        
        /* Extra small devices */
        @media (max-width: 480px) {
            body {
                padding: 15px;
            }
            
            .main-wrapper {
                gap: 15px;
                padding: 0;
            }
            
            .content-card {
                padding: 20px 15px;
            }
            
            .card-title {
                font-size: 18px;
            }
        }


        .wrapper {
            max-width: 1100px;
            margin: 0 auto;
            padding: 60px 20px;
        }
        
        
        
        .heading-primary {
            font-size: 34px;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }
        
        .text-content {
            font-size: 18px;
            color: #666;
            line-height: 1.7;
            max-width: 900px;
        }
        
        .styled-link {
            color: #4F46E5;
            text-decoration: none;
            font-weight: 600;
        }
        
        .styled-link:hover {
            text-decoration: underline;
        }
        
        /* Events Grid */
        .event-layout {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 50px;
        }
        
        .card-item {
            background: white;
            border-radius: 12px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #e2e8f0;
        }
        
        .card-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }
        
        .icon-calendar {
            width: 90px;
            height: 90px;
            margin: 0 auto 30px;
            background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
            transition: all 0.3s ease;
        }
        
        .icon-calendar:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 35px rgba(79, 70, 229, 0.4);
        }
        
        .icon-calendar::before {
            content: '';
            width: 60px;
            height: 60px;
            background: white;
            border-radius: 12px;
            position: absolute;
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        
        /* Calendar header */
        .icon-calendar::after {
            content: '';
            width: 60px;
            height: 18px;
            background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
            position: absolute;
            top: 15px;
            border-radius: 12px 12px 0 0;
            z-index: 2;
        }
        
        /* Calendar rings */
        .icon-calendar .binding-left,
        .icon-calendar .binding-right {
            position: absolute;
            width: 4px;
            height: 12px;
            background: white;
            border-radius: 2px;
            top: 9px;
            z-index: 3;
        }
        
        .icon-calendar .binding-left {
            left: 23px;
        }
        
        .icon-calendar .binding-right {
            right: 23px;
        }
        
        /* Calendar date lines */
        .icon-calendar .text-line-one,
        .icon-calendar .text-line-two,
        .icon-calendar .text-line-three {
            position: absolute;
            height: 2px;
            background: #4F46E5;
            border-radius: 1px;
            z-index: 1;
        }
        
        .icon-calendar .text-line-one {
            width: 40px;
            top: 40px;
            left: 25px;
        }
        
        .icon-calendar .text-line-two {
            width: 30px;
            top: 48px;
            left: 25px;
        }
        
        .icon-calendar .text-line-three {
            width: 35px;
            top: 56px;
            left: 25px;
        }
        
        .date-info {
            font-size: 18px;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 8px;
        }
        
        .location-info {
            font-size: 16px;
            color: #718096;
            font-weight: 500;
        }
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .wrapper {
                padding: 40px 15px;
            }
            
            .content-block {
                margin-bottom: 50px;
            }
            
            .heading-primary {
                font-size: 28px;
                margin-bottom: 20px;
            }
            
            .text-content {
                font-size: 16px;
            }
            
            .event-layout {
                grid-template-columns: 1fr;
                gap: 25px;
                margin-top: 30px;
            }
            
            .card-item {
                padding: 30px 20px;
            }
            
            .icon-calendar {
                width: 80px;
                height: 80px;
                margin-bottom: 25px;
            }
            
            .icon-calendar::before {
                width: 50px;
                height: 50px;
            }
            
            .icon-calendar::after {
                width: 50px;
                height: 15px;
                top: 12px;
            }
            
            .icon-calendar .binding-left,
            .icon-calendar .binding-right {
                height: 10px;
                top: 7px;
            }
            
            .icon-calendar .binding-left {
                left: 19px;
            }
            
            .icon-calendar .binding-right {
                right: 19px;
            }
            
            .icon-calendar .text-line-one {
                width: 32px;
                top: 33px;
                left: 21px;
            }
            
            .icon-calendar .text-line-two {
                width: 25px;
                top: 40px;
                left: 21px;
            }
            
            .icon-calendar .text-line-three {
                width: 28px;
                top: 47px;
                left: 21px;
            }
        }
        
        /* Extra small devices */
        @media (max-width: 480px) {
            .wrapper {
                padding: 30px 10px;
            }
            
            .heading-primary {
                font-size: 24px;
            }
            
            .text-content {
                font-size: 15px;
            }
            
            .event-layout {
                gap: 20px;
            }
        }
        
        /* Tablet */
        @media (max-width: 1024px) and (min-width: 769px) {
            .event-layout {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
            
            .card-item:last-child {
                grid-column: 1 / -1;
                max-width: 400px;
                margin: 0 auto;
            }
        }

        /* contact page */


         .contact-section {
      max-width: 1100px;
      margin: 0 auto;
      padding: 60px 20px;
      text-align: center;
    }

    .contact-section h2 {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 30px;
      color: #444;
    }

    .contact-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 40px;
      text-align: left;
      border-top: 1px solid #ddd;
      padding-top: 30px;
      flex-wrap: wrap;
    }

    .contact-text {
      flex: 1;
      font-size: 18px;
      font-weight: 600;
      color: #444;
    }

    .contact-buttons {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .contact-buttons a {
      display: inline-block;
      text-align: center;
      background: #1f1ef7;
      color: white;
      padding: 18px 20px;
      font-weight: bold;
      text-decoration: none;
      text-transform: uppercase;
      border: none;
      transition: background 0.3s ease;
    }

    .contact-buttons a:hover {
      background: #0000cc;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .contact-container {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
      }

      .contact-text,
      .contact-buttons {
        flex: 100%;
      }

      .contact-buttons a {
        width: 90%;
      }
    }

    /* post page */

/* Base styles */
.contact-form {
  position: relative;
  max-width: 1100px;
  padding: 40px;
  margin-bottom: 80px;
  font-family: 'Poppins', sans-serif;
 
}

h1 {
  color: #454547;
  font-size: 38px;
  text-transform: uppercase;
  margin-bottom: 35px;
}

p {
  font-size: 16px;
  margin-bottom: 50px;
  line-height: 1.6;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

label {
  font-weight: bold;
  font-size: 14px; /* increased for mobile readability */
}

input[type="text"],
input[type="email"],
input[type="tel"],
select {
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 12px;
  font-size: 16px;
  width: 100%;
}

input[type="radio"],
input[type="checkbox"] {
  transform: scale(1.2); /* increase size for mobile tap targets */
  margin-right: 10px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus {
  outline: none;
  border-color: #333;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.half {
  flex: 1 1 48%;
}

.checkbox-group, 
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 5px;
}

.submit-button {
  margin-top: 20px;
}

button {
  background-color: #2e2eaa;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: #1f1f99;
}

/* ✅ Mobile responsiveness */
@media screen and (max-width: 768px) {
  .contact-form {
    padding: 20px;
  }

  h1 {
    font-size: 26px;
    margin-bottom: 20px;
  }

  p {
    font-size: 14px;
    margin-bottom: 30px;
  }

  label {
    font-size: 13px;
    font-weight: 600;
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  select {
    font-size: 15px;
    padding: 10px;
  }

  .row {
    flex-direction: column;
    gap: 20px;
  }

  .half {
    flex: 1 1 100%;
  }

  input[type="radio"],
  input[type="checkbox"] {
    transform: scale(1.3); /* even larger for mobile touch */
  }

  button {
    width: 100%;
  }
}
/* sponsor page */

 .section-header {
  color: #000;
  padding: 20px 0;
  margin-bottom: 30px;
  width: 100%;
}

.section-title {
  font-size: 38px;
  font-weight: 700;
  color: #444242;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  text-align: left;
  margin: 30px;
}


    .sponsor-card {
      background: #fff;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
      overflow: hidden;
      margin: auto;
      max-width: 1100px;
    }

    .sponsor-tier {
      background-color: #180fc8;
      color: #fff;
      font-weight: bold;
      padding: 20px 25px;
      font-size: 20px;
    }

    .sponsor-content {
      display: flex;
      flex-wrap: wrap;
      padding: 25px;
      gap: 45px;
      align-items: flex-start;
      font-family: 'Poppins', sans-serif;
    }

    .sponsor-logo {
      flex: 0 0 140px;
      max-width: 340px;
    }

    .sponsor-logo img {
      width: 100%;
      height: auto;
      display: block;
    }

    .sponsor-details {
      flex: 1;
    }

    .sponsor-details h3 {
      margin: 0 0 12px;
      color: #4b3fd3;
      font-size: 20px;
    }

    .sponsor-details p {
      line-height: 1.6;
      margin-bottom: 15px;
    }

    .sponsor-details p strong {
      color: #000;
    }

    .sponsor-details a {
      color: #180fc8;
      text-decoration: none;
      font-weight: bold;
      position: relative;
    }

    .sponsor-details a::after {
      content: "";
      position: absolute;
      bottom: -2px;
      left: 0;
      height: 2px;
      width: 100%;
      background-color: #180fc8;
      transition: 0.3s;
    }

    .sponsor-details a:hover::after {
      width: 0%;
    }

    @media (max-width: 768px) {
      .sponsor-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
      }

      .sponsor-details {
        text-align: left;
      }
    }

    hr {
  border: 1px;
  height: 1px;
  width: 100%;
  background: #aaaab3; /* Or any brand color */
  margin: 30px auto;
  
}


/* why sponsor */

.sponsor-exhibit-wrap {
  background: #fff;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.sponsor-exhibit-container {
  max-width: 1100px;
  margin: auto;
}

.sponsor-exhibit-heading {
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  color: #333;
}

.sponsor-exhibit-divider {
  height: 4px;
  width: 100px;
  background-color: #180fc8;
  margin: 20px auto 40px;
  border: none;
  border-radius: 2px;
}

.sponsor-exhibit-tabs {
  display: flex;
  justify-content: space-around;
  text-align: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
  
}

.sponsor-exhibit-tabs div {
  font-size: 20px;
  color: #180fc8;
  font-weight: bold;
  padding: 10px;
}

.sponsor-exhibit-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .sponsor-exhibit-tabs {
    flex-direction: column;
    gap: 10px;
  }

  .sponsor-exhibit-heading {
    font-size: 26px;
  }

  .sponsor-exhibit-content p {
    font-size: 15px;
  }
}
/* press */

.press-container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

.press-title {
    font-size: 38px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.press-desc {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    color: #696767;
}

.press-desc a {
    color: #3366cc;
    text-decoration: none;
}

.press-table-wrapper {
    overflow-x: auto; /* Enables horizontal scrolling */
}

.press-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-family: 'Poppins', sans-serif;
    min-width: 600px; /* Prevents table from squishing too much */
}

.press-table thead {
    text-align: left;
}

.press-table th, 
.press-table td {
    padding: 12px;
    font-size: 15px;
    vertical-align: top;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #696767;
}

.press-table tbody tr:nth-child(even) {
    background-color: #f5f5f5;
}

.press-table a {
    color: #1a0dab;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.press-table-wrapper {
    width: 100%;
    overflow-x: auto;   
    -webkit-overflow-scrolling: touch; 
}

.press-table {
    border-collapse: collapse;
    min-width: 800px;   
    width: 100%;
}



/* Mobile Styles */
@media (max-width: 768px) {
    .press-title {
        font-size: 26px;
    }
    .press-desc {
        font-size: 14px;
    }
    .press-table th,
    .press-table td {
        font-size: 14px;
        padding: 8px;
    }
}


.banner {
  width: 100%;
  height: auto;
}

.banner img {
  width: 90%;
  height: auto;
  display: block;
  margin: 20px auto;
}

.buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  padding: 20px;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.buttons a {
  display: block;
  background-color: #1a1aff;
  color: white;
  text-align: center;
  padding: 15px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.buttons a:hover {
  background-color: #0000cc;
}

/* ✅ Optional: Improve spacing on smaller screens */
@media (max-width: 480px) {
  .banner img {
    width: 95%;
    margin: 10px auto;
  }

  .banner img {
    width: 95%;
    margin: 10px auto;
    display: block;
  }

  .buttons {
    display: grid;
    grid-template-columns: 1fr; /* single column for mobile */
    gap: 15px;
    padding: 15px 10px;
    width: 90%;
    margin: 0 auto;
    text-align: center;
  }

  .buttons a {
    display: block;
    padding: 12px;
    font-size: 14px;
    background-color: #1a1aff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
  }

  .buttons a:hover {
    background-color: #0000cc;
  }

}


.launchpad-container {
  max-width: 1100px;
  margin: 30px auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.launchpad-container h1, h2, h3 {
  color: #1a1a1a;
  margin-top: 25px;
}

.launchpad-container ul {
  padding-left: 20px;
  margin: 20px;
  line-height: 1.8;
}

.launchpad-containerul li {
  margin: 20px;
}

.launchpad-container p{
    margin: 20px;
}

@media (max-width: 600px) {
  .launchpad-container {
    padding: 15px;
  }

  h1 {
    font-size: 22px;
  }

  h2 {
    font-size: 18px;
  }

  h3 {
    font-size: 16px;
  }
}

span.highlight {
      color: #0026ff;
      font-weight: bold;
    }

