  /* Add this at the very top of the file, before :root */
  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

  /* Then modify the body font-family property */
  body {
      /* background-color: #E5E7EB; */
      font-family: "Poppins", sans-serif !important;
      color: var(--dark-text);
      /* font-size: 16px; */
      line-height: 1.6;
      overflow-x: hidden;
  }

  h1,
  h2,
  h3,
  h4,
  h5 {
      font-family: "Raleway", sans-serif;
  }

  .margin-bottom-zero {
      margin-bottom: 5px !important;
  }

  p.country-uppar {
      text-transform: uppercase;
      font-size: 12px;
      font-weight: 600;
  }


  :root {
      --primary-color: #0a2463;
      --secondary-color: #FF671E;
      --accent-color: #3e92cc;
      --light-bg: #f8f9fa;
      --dark-text: #1F2937;
  }

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

  .accordion-body {
      color: #414651;
      font-family: Inter;
      font-weight: 400;
      font-style: Regular;
      font-size: 13px;
  }

  .bg-graylight {
      background-color: #F9FAFB;
  }

  .accordion {
      display: flex;
      flex-direction: column;
      gap: 23px;
  }

  .accordion-button {
      background-color: white !important;
      color: var(--primary-color) !important;
  }

  /* Header Styles */
  .header {
      background-color: white;
      padding: 15px 0;
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .navbar-brand {
      font-weight: 700;
      /* font-size: 1.5rem; */
      color: var(--primary-color) !important;
  }

  .navbar-nav .nav-link {
      color: var(--primary-color) !important;
      font-weight: 400;
      margin: 0 10px;
      transition: color 0.3s;
      font-family: "Poppins", sans-serif;
  }

  .navbar-nav .nav-link:hover {
      color: var(--secondary-color) !important;
  }

  .register-btn-header {
      background-color: var(--secondary-color);
      color: white;
      padding: 8px 18px;
      font-weight: 400;
      border: none;
      border-radius: 8px;
      transition: all 0.3s;
      font-family: "Poppins", sans-serif;
  }

  .nav-item .btn {
      font-family: "Poppins", sans-serif;
      font-weight: 400;
      border: 1px solid #D1D5DB;
  }

  .register-btn-header:hover {
      background-color: #e55a00;
  }

  /* Hero Section */
  .hero-section {
      color: white;
      position: relative;
      overflow: hidden;
      background-image: url('../images/banner.jpg');
      /*    background-position: center;*/
      background-repeat: no-repeat;
      background-size: cover;
  }

  #home.hero-section {
      height: 100%;
      padding: 148px 0 148px 0;
      margin-top: 85px;
  }

  .banner-btn {
      margin-top: 30px;
  }

  .breakmobile {
      display: inline;
  }

  .banner-text h1 {
/*      font-size: 36px;*/
      font-size: 32px;
      font-weight: 700;
  }

  .conference-title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 10px;
  }

  .banner-text {
      max-width: 920px;
      width: 100%;
      margin: 0 auto;
      z-index: 1;
      position: relative;
  }

  .hero-section:before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      width: 100%;
      height: 100%;
      background: #00000070;
      top: 0;
  }

  .banner-btn a {
      background: #FF671E;
      border-radius: 8px;
      padding: 15px 37px;
      font-size: 16px;
      font-weight: 600;
      font-family: "Raleway", sans-serif;
      transition: 0.3s;
      display: block;
      max-width: fit-content;
      margin: 0 auto;
      color: #fff;
      text-decoration: none;
  }

  .banner-btn a:hover {
      background-color: #e55a00;
      transform: translateY(-3px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  }

  .conference-subtitle {
      font-size: 1.2rem;
      font-weight: 400;
      margin-bottom: 20px;
      color: #e0e0e0;
  }

  .conference-theme {
      font-size: 1.1rem;
      margin-bottom: 30px;
      max-width: 600px;
  }

  .register-btn {
      background-color: var(--secondary-color);
      color: white;
      padding: 12px 30px;
      font-size: 1rem;
      font-weight: 400;
      border: none;
      border-radius: 8px;
      transition: all 0.3s;
  }

  .register-btn:hover {
      background-color: #e55a00;
      transform: translateY(-3px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  }

  /* Stats Section - Fixed with WHITE background and shadow */
  .stats-section {
      /* background-color: white; */
      padding: 40px 0;
      color: var(--dark-text);
      /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
      position: relative;
      z-index: 10;
      width: 100%;
      margin: auto;
      /* top: -80px; */
      /* border-radius: 20px; */
      /* max-width: 1120px; */
  }

  .stats-container {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      border-radius: 20px;
      background-color: white;
      padding: 10px 0;
      margin-top: -100px;
      max-width: 1050px;
      margin-left: auto;
      margin-right: auto;
      box-shadow: 0px 1px 2px rgba(10, 13, 18, 0.05);
  }

  .stat-item {
      text-align: center;
      padding: 15px;
      min-width: 120px;
      transition: transform 0.3s ease;
  }

  .stat-item:hover {
      transform: translateY(-5px);
  }

  .stat-number {
      font-size: 22px;
      font-weight: 700;
      color: var(--secondary-color);
      margin-bottom: 5px;
  }

  .stat-item:nth-child(1) .stat-icon {
      background-color: #DBEAFE;
      /* Blue */
      color: #3B82F6;
  }

  .stat-item:nth-child(1) .stat-number {
      color: #3B82F6;
  }

  .stat-item:nth-child(2) .stat-icon {
      background-color: #DCFCE7;
      color: #16A34A;
  }

  .stat-item:nth-child(2) .stat-number {
      color: #16A34A;
  }

  .stat-item:nth-child(3) .stat-icon {
      background-color: #FEF9C3;
      color: #F59E0B;
  }

  .stat-item:nth-child(3) .stat-number {
      color: #F59E0B;
  }

  .stat-item:nth-child(4) .stat-icon {
      background-color: #F3E8FF;
      color: #9333EA;
  }

  .stat-item:nth-child(4) .stat-number {
      color: #9333EA;
  }


  .stat-label {
      font-size: 15px;
      text-transform: capitalize;
      color: #4B5563;
      font-family: 'Roboto', sans-serif;
  }

  /*.stat-number {
    font-family: "Raleway", sans-serif;
}*/
  .stat-icon {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      margin: 0 auto 10px;
  }

  /* Content Sections */
  .content-section {
      padding: 60px 0;
      position: relative;
  }

  .section-title {
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--primary-color);
      margin-bottom: 30px;
      position: relative;
  }



  /* Important Dates - Individual Cards */
  .important-dates-container {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
  }

  .date-card {
      padding: 13px;
      width: 220px;
      text-align: center;
      transition: transform 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;

  }

  .date-card:hover {
      transform: translateY(-5px);
  }

  .date-icon {
      font-size: 1.5rem;
      margin-bottom: 10px;
      width: 64px;
      height: 64px;
      width: 64px;
      height: 64px;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50px;
  }


  .date-card:nth-child(1) .date-icon {
      background-color: #DBEAFE;
      /* Blue */
      color: #3B82F6;
  }

  .date-card:nth-child(2) .date-icon {
      background-color: #FEF9C3;
      color: #F59E0B;
  }

  .date-card:nth-child(3) .date-icon {
      background-color: #DCFCE7;
      color: #16A34A;
  }

  .date-card:nth-child(4) .date-icon {
      background-color: #FEE2E2;
      color: #DC2626;
  }


  .date-label {
      font-weight: 600;
      font-size: 16px;
      margin-bottom: 5px;
      font-family: "Raleway", sans-serif;
      color: #000;
  }

  .date-value {
      font-weight: 400;
      font-size: 15px;
      color: #4B5563;
  }

  /* Delegate Fee Section - aligned with theme-card & date-card */
  .delegate-fee-section .delegate-fee-card {
      background-color: white;
      border-radius: 8px;
      padding: 25px;
      text-align: center;
      box-shadow: 0px 7px 5px rgb(0 0 0 / 10%);
      transition: transform 0.3s ease;
      height: 100%;
  }

  .delegate-fee-section .delegate-fee-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }

  .delegate-fee-section .delegate-fee-icon {
      width: 55px;
      height: 55px;
      margin: 0 auto 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      font-size: 1.5rem;
  }

  .delegate-fee-section .row > [class*="col-"]:nth-child(1) .delegate-fee-icon {
      background-color: #DBEAFE;
      color: #3B82F6;
  }

  .delegate-fee-section .row > [class*="col-"]:nth-child(2) .delegate-fee-icon {
      background-color: #DCFCE7;
      color: #16A34A;
  }

  .delegate-fee-section .row > [class*="col-"]:nth-child(3) .delegate-fee-icon {
      background-color: #FEF3C7;
      color: #D97706;
  }

  .delegate-fee-section .delegate-fee-label {
      font-weight: 600;
      font-size: 16px;
      margin-bottom: 5px;
      font-family: "Raleway", sans-serif;
      color: #000;
      line-height: 1.3;
  }

  .delegate-fee-section .delegate-fee-value {
      font-weight: 600;
      font-size: 1.25rem;
      color: var(--primary-color, #16A34A);
  }

  /* About Section with Image */
  .about-section {
      border-radius: 8px;
      height: 100%;
  }

  .about-section p {
      color: #4B5563
  }

  .about-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 20px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  /* Conference Themes */
  .theme-card {
      background-color: white;
      border-radius: 8px;
      padding: 25px;
      height: 100%;
      box-shadow: 0px 7px 5px rgb(0 0 0 / 10%);
      transition: transform 0.3s ease;
  }

  .theme-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }

  .theme-card p {
      /*    font-family: Inter;*/
      font-weight: 400;
      font-style: Regular;
      font-size: 13px;
      leading-trim: NONE;
      line-height: 160%;
      letter-spacing: 0%;
      margin-bottom: 0;
  }

  .theme-icon {
      color: var(--accent-color);
      margin-bottom: 5px;
  }

  .theme-title {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 15px;
      color: var(--primary-color);
  }

  /* Speakers */
  .speaker-card {
      border-radius: 8px;
      padding: 20px;
      text-align: center;
      transition: transform 0.3s ease;
      height: 100%;
  }

  .speaker-card:hover {
      transform: translateY(-5px);
  }

  .speaker-img {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 15px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .speaker-name {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 5px;
  }

  .speaker-title {
      color: #666;
      font-size: 0.9rem;
  }

  /* Testimonials */
  .testimonial-card {
      background-color: white;
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0px 7px 5px rgb(0 0 0 / 10%);
      position: relative;
      height: 100%;
      transition: all 0.3s ease;
  }

  .testimonial-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }

  .testimonial-card::before {
      content: "";
      position: absolute;
      top: 10px;
      left: 15px;
      font-size: 3rem;
      color: var(--accent-color);
      opacity: 0.2;
  }

  .testimonial-text {
      margin-bottom: 15px;
      font-size: 15px;
      color: #4B5563;
  }

  .user-info {
      margin-left: 10px;
      text-align: left;
  }

  .testimonial-author {
      font-weight: 600;
      font-size: 0.95rem;
      margin: 0;
      font-family: "Raleway", sans-serif;
  }

  .testimonial-text.para {
      margin-bottom: 0;
  }

  /* Partners */
  .partner-logo {
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 15px 0;
      filter: grayscale(100%);
      transition: filter 0.3s ease;
  }

  .partner-logo:hover {
      filter: grayscale(0%);
  }

  /* CTA Section */
  .cta-section {
      background: linear-gradient(178deg, #ff671f 30%, #ffffff 90%);
      color: #212529;
      padding: 50px 0;
      text-align: center;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      /*    position: relative;*/
  }

  .mobile-btn {
      display: none;
  }

  /*.cta-section:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #0000004d;
  top: 0;
}*/
  .cta-title,
  .cta-text,
  .cta-btn {
      z-index: 1;
      position: relative;
  }

  .cta-title {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 15px;
  }

  .cta-text {
      font-size: 1.1rem;
      margin-bottom: 25px;
  }

  .cta-btn {
      background-color: rgb(238, 75, 10);
      color: var(--secondary-color);
      padding: 12px 30px;
      font-size: 1rem;
      font-weight: 400;
      border: none;
      border-radius: 8px;
      transition: all 0.3s;
      text-decoration: none;
  }

  .cta-btn:hover {
      background-color: #f0f0f0;
      transform: translateY(-3px);
  }

  /* FAQ Section - WHITE BACKGROUND */
  .faq-section {
      padding: 50px 0;
      background-color: white !important;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .accordion-button {
      background-color: var(--primary-color);
      color: white;
      font-weight: 600;
      font-size: 0.95rem;
  }

  .accordion-button:not(.collapsed) {
      background-color: var(--accent-color);
      color: white;
  }

  .accordion-body {
      font-size: 0.95rem;
  }

  /* Footer */
  .footer {
      background-color: #111827;
      color: white;
      padding: 40px 0 20px;
  }

  .footer-title {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 5px;
  }

  .footer-primary {
      color: #9CA3AF;

  }

  .footer-link {
      color: #9CA3AF;
      text-decoration: none;
      margin-bottom: 10px;
      display: block;
      transition: color 0.3s ease;
      font-size: 0.95rem;
      font-weight: 400;
  }

  .footer-link:hover {
      color: var(--secondary-color);
  }

  .social-icon {
      font-size: 1.3rem;
      margin-right: 15px;
      color: #9CA3AF;
      transition: color 0.3s ease;
  }

  .social-icon:hover {
      color: var(--secondary-color);
  }

  .copyright {
      text-align: center;
      margin-top: 30px;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      font-size: 0.9rem;
  }

  .copyright p {
      color: #9CA3AF;

  }

  /* Modal Overlay Styles */
  .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(4px);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
  }

  /* Modal Content Box */
  .modal-content {
      background-color: white;
      border-radius: 12px;
      padding: 30px;
      max-width: 500px;
      width: 90%;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
      position: relative;
      animation: modalFadeIn 0.3s ease-out;
  }

  @keyframes modalFadeIn {
      from {
          opacity: 0;
          transform: translateY(-20px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  /* Close Button */
  .modal-close {
      position: absolute;
      top: 15px;
      right: 15px;
      background: none;
      border: none;
      font-size: 28px;
      color: #999;
      cursor: pointer;
      padding: 0;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: color 0.2s;
  }

  .modal-close:hover {
      color: #333;
  }

  /* Modal Title */
  .modal-title {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 15px;
      color: #333;
      line-height: 1.4;
  }

  /* Modal Message */
  .modal-message {
      font-size: 14px;
      color: #666;
      margin-bottom: 30px;
      line-height: 1.6;
      margin-top: 10px;
  }

  /* Modal Buttons Container */
  .modal-buttons {
      display: flex;
      justify-content: center;
      gap: 12px;
  }

  /* Yes Button */
  .btn-yes {
      background-color: var(--secondary-color);
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 10px 24px;
      font-size: 14px;
      font-weight: 500;
      color: #fff;
      cursor: pointer;
      transition: all 0.2s;
  }

  .btn-yes:hover {
      border-color: #bbb;
      background-color: #f8f8f8;
  }

  /* Cancel Button */
  .btn-cancel {
      background-color: #0066cc;
      border: none;
      border-radius: 8px;
      padding: 10px 24px;
      font-size: 14px;
      font-weight: 500;
      color: white;
      cursor: pointer;
      transition: background-color 0.2s;
  }

  .btn-cancel:hover {
      background-color: #0052a3;
  }

  /*  footer css      */
  .footer {
      background-color: #0b0d17;
      color: #fff;
      padding: 40px 0 20px;
      font-family: Arial, sans-serif;
  }

  .footer {
      color: var(--default-color);
      background-color: var(--background-color);
      background: url("../images/footer-bg.jpg") center center no-repeat;
      background-size: cover;
      font-size: 14px;
      text-align: center;
      padding: 60px 0 30px 0;
      position: relative;
  }

  .dark-background {
      --background-color: #223b51;
      --default-color: #ffffff;
      --heading-color: #ffffff;
      --surface-color: #315575;
      --contrast-color: #ffffff;
  }

  .footer:before {
      content: "";
      background: color-mix(in srgb, var(--background-color), transparent 20%);
      position: absolute;
      inset: 0;
  }

  .footer .container {
      position: relative;
  }

  .footer-grid {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
      text-align: left;
      gap: 30px;
  }

  .footer-left,
  .footer-center,
  .footer-right {
      /* flex: 1; */
      min-width: 250px;
  }

  .footer-right h4,
  .footer-center h4,
  .footer-left h4 {
      margin-bottom: 10px;
      font-size: 18px;
      font-weight: bold;
      font-weight: bold;
  }

  footer#footer .container.footer-grid p {
      margin: 0 !important;
  }

  .footer-center {
      text-align: center;
  }

  .footer-right p,
  .footer-center p,
  .footer-left p {
      font-style: italic;
  }

  .sponsors-track .partner-card.text-center.p-5 {
      padding: 30px !important;
      border: 1px solid #ff671f;
  }

  .sponsors-track .partner-card.text-center.p-5 h5 {
      text-transform: uppercase;
  }

  /*--------------------------------------------------------------
    # Global Footer
    --------------------------------------------------------------*/

  .footer .social-links {
      margin: 0 0 30px 0;
  }

  .footer .social-links a {
      font-size: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #ff671e;
      color: var(--contrast-color);
      line-height: 1;
      margin: 0 4px;
      border-radius: 50%;
      text-align: center;
      width: 36px;
      height: 36px;
      transition: 0.3s;
  }


  .footer .social-links a:hover {
      background: #e55d00;
      text-decoration: none;
  }

  .footer .copyright {
      padding-top: 25px;
      border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .footer .credits {
      font-size: 13px;
      padding-top: 5px;
  }

  /* Responsive Styles */
  @media (max-width: 1200px) {
      .hero-section {
          height: 520px;
      }
  }

  @media (max-width: 992px) {
      .conference-title {
          font-size: 2.2rem;
      }

      .conference-subtitle {
          font-size: 1.1rem;
      }

      .hero-section {
          height: 475px;
      }
  }

  @media (max-width:991px) {
      .about-section {
          margin-bottom: 30px;
      }

      .partner-card h5 {
          font-size: 16px;
      }

      .partner-card {
          padding: 10px !important;
      }

      .register-btn-header {
          margin-bottom: 12px;
      }
  }

  @media (max-width: 870px) {

      .hero-section {
          height: 435px;
      }

  }

  @media (max-width: 990px) {
      h2.section-title.mobilemargin {
          margin-top: 30px;
      }

      .desktop-btn {
          display: none;
      }

      .mobile-inline {
          text-align: center;
      }

      .mobile-btn {
          display: block;
          display: inline-block;
          margin-top: 10px;
      }
  }

  @media (max-width: 768px) {
      .conference-title {
          font-size: 1.8rem;
      }

      /*.desktop-btn{
        display: none;
      }
      .mobile-btn{
        display: block;
      }*/
      h2.section-title.mobilemargin {
          margin-top: 30px;
      }

      .hero-section {
          height: 400px;
      }

      .conference-subtitle {
          font-size: 1rem;
      }

      .stats-container {
          flex-wrap: wrap;
      }

      .stat-item {
          width: 50%;
          margin-bottom: 15px;
      }

      .section-title {
          font-size: 1.5rem;
          text-align: center;
      }

      .date-card {
          width: 46%;
          max-width: 300px;
      }
  }

  @media (max-width:600px) {
      #home.hero-section {
          padding: 50px 0 50px 0;
      }

      .banner-text h1 {
          font-size: 24px;
      }

      .banner-text {
          max-width: 100%;
      }

      .banner-btn {
          margin-top: 30px;
          margin-bottom: 60px;
      }

      .about-section {
          text-align: left;
          /*      padding-bottom: 30px;*/
      }

      .content-section {
          padding: 30px 0;
      }

      .theme-card {
          text-align: center;
      }

      .testimonial-card .d-flex {
          justify-content: left;
      }

      .testimonial-text.para,
      .testimonial-text {
          text-align: left;
      }

      .footer .container {
          justify-content: center;
      }

      .footer-left,
      .footer-center,
      .footer-right {
          text-align: center;
      }

      .footer .social-links {
          margin: 0 0 0px 0;
      }

      #speakers .col-md-3 {
          width: 50%;
          max-width: 100%;
      }

      #registrationModal .modal-content {
          width: 100%;
          max-width: 90%;
      }

      .hero-section .banner-text h5 {
          font-size: 18px !important;
      }

      .hero-section .banner-text p {
          font-size: 18px;
          padding: 0px 48px;
      }

      span.breakmobile {
          display: none;
      }

      .hero-section {
          background-position: center;
      }
  }

  @media (max-width: 576px) {
      .hero-section {
          padding: 100px 0 0;
          height: 360px;
      }

      .hero-section .banner-text p {
          font-size: 18px;
          padding: 0px 48px;
      }

      .conference-title {
          font-size: 1.6rem;
      }

      .stat-item {
          width: 50%;
          max-width: 35%;
      }

      .stats-container {
          justify-content: space-evenly;
          max-width: 100%;
          gap: 5px;
      }
  }

  @media (max-width: 450px) {
      .hero-section {
          height: 310px;
      }

      .date-card {
          padding: 6px;
      }

      .hero-section .banner-text p {
          font-size: 18px;
          padding: 0px 32px;
      }

      .speaker-card {
          padding: 5px 5px;
      }

      .stats-section {
          padding-left: 10px;
          padding-right: 10px;
      }

      body .countdown {
          gap: 5px;
      }

      body .circle {
          width: 70px;
      }

      .date-card {
          justify-content: start;
      }
  }

  @media (max-width:380px) {
      .banner-text h1 {
          font-size: 24px;
      }

      .date-card {
          padding: 4px;
      }
  }

  .partner-card {
      background-color: #fff;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      transition: all 0.3s ease;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  }

  .partner-card:hover {
      border: 2px solid #ff671e !important;
      border-color: var(--secondary-color);
      transform: translateY(-8px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  }

  .partner-card h5 {
      color: var(--primary-color);
      font-weight: 600;
      margin: 0;
      cursor: pointer;
  }

  #registrationModal .modal-content {
      border-radius: 8px;
      background-color: #fff;
  }

  #registrationModal .modal-title {
      margin: 20px 0;
      text-align: center;
  }

  button.btn-cancel {
      background: red;
      border-radius: 8px;
      display: none;
  }

  button.btn-cancel:hover {
      background: #e90606;
  }

  .banner-text h5 {
       font-size: 20px;
      font-weight: 600;
      margin-bottom: 14px;
  }

  .banner-text h1 {
      margin-bottom: 12px;
  }

  .banner-text p {
      margin-top: 20px;
      font-weight: 600;
      font-size: 24px;
  }

  .countdown {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
      flex-wrap: nowrap;
      margin: 30px 0;
  }

  .countdown .box {
      text-align: center;
  }

  .circle {
      position: relative;
      width: 80px;
      aspect-ratio: 1/1;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto;
  }

  .countdown .label {
      margin-top: 8px;
      font-size: 12px;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: bold;
  }

  .circle svg {
      transform: rotate(-90deg);
      width: 100%;
      height: 100%;
  }

  .circle span {
      position: absolute;
      font-size: 18px;
      font-weight: bold;
      z-index: 2;
  }

  .circle .bg {
      stroke: color-mix(in srgb, #ffffff, #ffffff 60%);
  }

  .circle {
      fill: none;
      stroke-width: 6;
      stroke-linecap: round;
  }

  .circle .progress {
      stroke: #ff671e;
      stroke-dasharray: 0;
      stroke-dashoffset: 0;
      transition: stroke-dashoffset 0.3s linear;
  }

  .register-btn-header:hover {
      color: white;
  }
