@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
* { margin: 0; padding: 0; box-sizing: border-box; }

    body, html {
       font-family: "Roboto", sans-serif;
      background: #fff;
      color: #fff;
      overflow-x: hidden;
    }

    .banner {
      background: url('https://img.tradeindia.com/new_website1/tradeshowslandingpage/beautysumindia/main_visual-bg-1.png') no-repeat center center;
      background-size: cover;
      min-height: 100vh;
      padding: 20px;
      display: flex;
      flex-direction: column;
    }

    .container {
      max-width: 1300px;
      margin: 0 auto;
      flex: 1;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    /* Header */
    .header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      opacity: 0;
      transform: translateY(-20px);
      transition: all 0.8s ease;
    }

    .header.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .header-logo {
      max-width: 220px;
      transition: transform 0.4s ease;
    }

    .header-logo:hover {
      transform: scale(1.05);
    }

    .cta-buttons {
      display: flex;
      gap: 15px;
    }

    .cta-buttons a {
      padding: 10px 35px;
      border-radius: 25px;
      font-weight: bold;
      font-size: 24px;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .btn-white {
      background: #d94251;
      color: #fff;
    }

    .btn-white:hover {
      background: #eee;
      transform: translateY(-2px);
      color: #222;
    }

    .btn-red {
      background: #d91f2b;
      color: #fff;
    }

    .btn-red:hover {
      background: #b11a24;
      transform: translateY(-2px);
    }

    /* Main content layout */
    .main-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex: 1;
      margin-top: 60px;
      flex-wrap: wrap;
      gap: 30px;
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.9s ease;
    }

    .main-content.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .left {
      max-width: 65%;
      display: flex;
      flex-direction: column;
      gap: 20px;
      text-align: left;
    }

    .main-title {
      max-width: 850px;
  
 font-size: 2.2rem;
  font-weight: 900;
  animation: fadeInUp 1s ease 0.7s both;

  /* Text Shadow */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);

  /* Text Stroke */

  color: #ffffff; /* Fill color */


    }

  .subtitle {
  font-size: 4.2rem;
  font-weight: 700;
  animation: fadeInUp 1s ease 0.7s both;

  /* Text Shadow */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);

  /* Text Stroke */

  color: #ffffff; /* Fill color */
}

    .event-details {
      font-size: 1.6rem;
      font-weight: 600;
      line-height: 1.6;
      animation: fadeInUp 1s ease 0.9s both;
      /* Text Shadow */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);

    }

    .supported-logo {
      max-width: 330px;
      margin-top: 10px;
      animation: fadeInUp 1s ease 1.1s both;
          /* Text Shadow */
shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    }

    .right {
      max-width: 45%;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 30px;
    }

    .circle-btn {
      width: 220px;
      height: 220px;
      border-radius: 50%;
     background: rgb(228, 116, 84,  0.7);
      color: #fff;
      font-weight: bold;
      font-size: 28px;
      text-align: center;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      cursor: pointer;
      opacity: 0;
      transform: scale(0.9);
      transition: all 0.5s ease;
      
    }



    .circle-btn::after {
      content: '→';
      position: absolute;
      bottom: 35px;
      font-size: 42px;
    }

    .circle-btn.orange {
      background:#d94251;
    }

     .circle-btn a {
    color: #fff;
    text-decoration: none;
    }

    .circle-btn.visible {
      opacity: 1;
      transform: scale(1);
        transition: all 0.5s ease;
    }


      .circle-btn.visible:hover{
     transform: translateY(-10px);
    }


    .bottom-group {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      gap: 40px;
    }

    .organizer-info {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      opacity: 0;
      transition: opacity 1s ease 1s;
    }

    .organizer-info.visible {
      opacity: 1;
    }

    .organizer-label {
      font-size: 14px;
      font-weight: bold;
      margin-bottom: 5px;
    }

    .organizer-logo {
      max-height: 60px;
      transition: transform 0.4s ease;
    }

    .organizer-logo:hover {
      transform: scale(1.05);
    }

    @keyframes fadeInUp {
      0% {
        opacity: 0;
        transform: translateY(30px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 768px) {
      .main-content {
        flex-direction: column;
        align-items: flex-start;
      }

      .left, .right {
        max-width: 100%;
      }

      .header-logo {
        max-width: 160px;
      }

      .circle-btn {
        width: 120px;
        height: 120px;
        font-size: 14px;
      }

      .organizer-logo {
        max-height: 45px;
      }

      .bottom-group {
        flex-direction: column;
        align-items: center;
      }
.main-title {max-width: 350px;}


    }





    .container {
      max-width: 1300px;
      margin: 0 auto;
      padding: 40px 20px;
      text-align: center;
    }

    h1 {
      font-size: 2.8rem;
      margin-bottom: 10px;
      color: black;
    }

    h2 {
      font-size: 1.8rem;
      margin-bottom: 20px;
      color: #d32358;
    }

    p.description {
      font-size: 1rem;
      max-width: 800px;
      margin: 0 auto 40px;
      color: #444;
      line-height: 1.6;
    }



    .wrapper {
      max-width: 1300px;
      margin: 0 auto;
      padding:0 20px 80px 20px;
    }

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

    .card {
      width: 105px;
      height: 330px;
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      cursor: pointer;
      transition: all 0.4s ease;
    }

    .card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.0);
      color: #fff;
      padding: 20px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      transition: background 0.4s ease;
    }

    .overlay h3 {
      margin: 0 0 10px;
      font-size: 1.5rem;
      font-weight: 700;
    }

    .overlay ul {
      margin: 0;
      padding: 0;
      list-style: none;
      font-size: 1rem;
      line-height: 1.6;
      display: none;
    }

    .card.active {
      width: 320px;
    }

    .card.active .overlay {
      background: rgba(0,0,0,0.6);
    }

    .card.active .overlay ul {
      display: block;
    }

    @media (max-width: 768px) {
      .card {
        width: 100%;
        height: auto;
      }

      .card.active {
        width: 100%;
      }
    }

 .box-outer {
      font-family: 'Segoe UI', sans-serif;
      margin: 0;
      padding: 60px 20px;
      background: #f5f5f5;
      color: #222;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 25px;
    }

  .box {
      flex: 1 1 600px;
      max-width: 600px;
      background: #fff;
      padding: 25px;
      border-radius: 16px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .box:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    }

    .title {
      font-size: 24px;
      font-weight: 700;
      color: #D91F2B;
      margin-bottom: 18px;
    }

    p {
      font-size: 15px;
      margin: 10px 0;
      line-height: 1.5;
    }

    .check::before {
      content: "✓";
      color: #ED9828;
      margin-right: 8px;
      font-weight: bold;
    }

    @media (max-width: 768px) {
      body {
        padding: 20px 10px;
      }
      .box {
        flex: 1 1 100%;
        max-width: 100%;
      }
    }
#footer-outer {
    background-color: #2D2D2D;
    padding: 40px 20px;
    text-align: center;
  }

  .cta-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  .cta-button {
    background-color: #FF5B43;
    color: #fff;
    padding:15px 60px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;

  }

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

  @media (min-width: 600px) {
    .cta-container {
      flex-direction: row;
    }
  }