* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: #0b0017;
            color: #fff;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
        }

        .hero-section {
            position: relative;
            min-height: 100vh;
            background:
                linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.82)),
                url('/images/web-banner.JPG') center/cover no-repeat;
            padding: 30px 0 60px;
        }

        .overlay-glow {
            position: absolute;
            width: 500px;
            height: 500px;
            background: rgba(153, 0, 255, 0.3);
            filter: blur(120px);
            border-radius: 50%;
            top: -100px;
            right: -100px;
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .top-logo img {
            max-height: 90px;
            width: auto;
            object-fit: contain;
        }

        .main-banner {
            width: 100%;
            margin-top: 15px;
        }

        .main-banner img {
            width: 100%;
            max-width: 100%;
            border-radius: 25px;
            object-fit: cover;
            filter: drop-shadow(0 10px 30px rgba(255, 191, 0, 0.45));
        }

        .participants-box {
            background: linear-gradient(90deg, #7b00ff, #d400ff);
            padding: 18px 40px;
            border-radius: 20px;
            border: 3px solid #ffcf40;
            display: inline-block;
            margin-top: 30px;
            box-shadow: 0 0 25px rgba(255, 208, 0, 0.4);
        }

        .participants-box h2 {
            margin: 0;
            font-size: 36px;
            font-weight: 800;
        }

        .info-card {
            background: rgba(255, 255, 255, 0.06);
            border: 2px solid rgba(255, 196, 0, 0.4);
            border-radius: 25px;
            padding: 35px 25px;
            backdrop-filter: blur(10px);
            text-align: center;
            transition: 0.3s ease;
            height: 100%;
        }

        .info-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 25px rgba(255, 196, 0, 0.25);
        }

        .info-card h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .price {
            font-size: 52px;
            font-weight: 800;
            color: #ffd54f;
            line-height: 1.1;
        }

        .section-title {
            font-size: 60px;
            font-weight: 800;
            text-transform: uppercase;
            margin-bottom: 15px;
            background: linear-gradient(to bottom, #ffe89a, #ffbf00, #b96a00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .gift-card {
            background: linear-gradient(135deg, #7400ff, #d100ff);
            border-radius: 20px;
            overflow: hidden;
            border: 2px solid rgba(255, 255, 255, 0.15);
            transition: 0.3s;
            height: 100%;
            text-align: center;
            padding: 25px 15px;
        }

        .gift-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(212, 0, 255, 0.35);
        }

        .gift-card img {
            width: 100%;
            height: 180px;
            object-fit: contain;
            margin-bottom: 15px;
        }

        .gift-card h4 {
            font-size: 24px;
            font-weight: 700;
        }

        .cta-box {
            background: rgba(255, 255, 255, 0.08);
            border: 2px solid rgba(255, 196, 0, 0.4);
            border-radius: 30px;
            padding: 50px 30px;
            margin-top: 70px;
            backdrop-filter: blur(10px);
        }

        .cta-box h2 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .form-control {
            height: 55px;
            border-radius: 12px;
            border: none;
            padding-left: 15px;
        }

        .btn-register {
            height: 55px;
            border-radius: 12px;
            font-size: 18px;
            font-weight: 700;
            background: linear-gradient(90deg, #ffb300, #ffde59);
            border: none;
            color: #000;
            transition: 0.3s;
        }

        .btn-register:hover {
            transform: scale(1.03);
            box-shadow: 0 8px 25px rgba(255, 196, 0, 0.4);
        }

        .footer-contact {
            margin-top: 60px;
            padding-top: 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.12);
        }

        .phone-number a{
            font-size: 42px;
            font-weight: 800;
            color: #ffd54f;
        }

        .footer-links a {
            color: #fff;
            margin-left: 20px;
            font-weight: 500;
            transition: 0.3s;
        }

        .footer-links a:hover {
            color: #ffd54f;
        }

        @media(max-width:768px) {

            .top-logo img {
                max-height: 60px;
            }

            .main-banner img {
                border-radius: 15px;
            }

            .participants-box {
                padding: 15px 25px;
            }

            .participants-box h2 {
                font-size: 22px;
            }

            .section-title {
                font-size: 38px;
            }

            .price {
                font-size: 36px;
            }

            .cta-box h2 {
                font-size: 32px;
            }

            .phone-number a{
                font-size: 28px;
            }

            .footer-links {
                margin-top: 20px;
                text-align: center !important;
            }

            .footer-left {
                text-align: center;
            }

        } 

        .main-section {
            position: relative;
            min-height: 100vh;
            background:
                linear-gradient(rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.88)),
                url('/images/web-banner.JPG') center/cover no-repeat;
            padding: 30px 0 60px;
        }

        .overlay-glow {
            position: absolute;
            width: 500px;
            height: 500px;
            background: rgba(153, 0, 255, 0.25);
            filter: blur(120px);
            border-radius: 50%;
            top: -100px;
            right: -100px;
            z-index: 0;
        }

        .content-wrapper {
            position: relative;
            z-index: 2;
        }

        /* LOGOS */

        .top-logo img {
            max-height: 90px;
            width: auto;
            object-fit: contain;
        }

        /* PAGE TITLE */

        .page-title {
            text-align: center;
            margin-top: 30px;
            margin-bottom: 50px;
        }

        .page-title h1 {
            font-size: 60px;
            font-weight: 800;
            text-transform: uppercase;
            background: linear-gradient(to bottom, #ffe89a, #ffbf00, #b96a00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
        }

        .page-title p {
            color: #ddd;
            font-size: 18px;
        }

        /* CONTENT BOX */

        .terms-box {
            background: rgba(255, 255, 255, 0.06);
            border: 2px solid rgba(255, 196, 0, 0.25);
            border-radius: 30px;
            padding: 50px 40px;
            backdrop-filter: blur(10px);
        }

        .terms-box h3 {
            color: #ffd54f;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
            margin-top: 35px;
        }

        .terms-box p,
        .terms-box li {
            color: #e6e6e6;
            line-height: 1.9;
            font-size: 16px;
        }

        .terms-box ul {
            padding-left: 20px;
        }

        
        /* MOBILE */

        @media(max-width:768px) {

            .top-logo img {
                max-height: 60px;
            }

            .page-title h1 {
                font-size: 38px;
            }

            .terms-box {
                padding: 30px 20px;
            }
 
.page-title h1{
        font-size:38px;
      }

      .policy-box{
        padding:30px 20px;
      }
        } 
        
    /* PAGE TITLE */

    .page-title{
      text-align:center;
      margin-top:30px;
      margin-bottom:50px;
    }

    .page-title h1{
      font-size:60px;
      font-weight:800;
      text-transform:uppercase;
      background:linear-gradient(to bottom,#ffe89a,#ffbf00,#b96a00);
      -webkit-background-clip:text;
      -webkit-text-fill-color:transparent;
      margin-bottom:10px;
    }

    .page-title p{
      color:#ddd;
      font-size:18px;
    }

    /* CONTENT BOX */

    .policy-box{
      background:rgba(255,255,255,0.06);
      border:2px solid rgba(255,196,0,0.25);
      border-radius:30px;
      padding:50px 40px;
      backdrop-filter:blur(10px);
    }

    .policy-box h3{
      color:#ffd54f;
      font-size:24px;
      font-weight:700;
      margin-bottom:15px;
      margin-top:35px;
    }

    .policy-box p,
    .policy-box li{
      color:#e6e6e6;
      line-height:1.9;
      font-size:16px;
    }

    .policy-box ul{
      padding-left:20px;
    }
     .thankyou-section{
      position:relative;
      min-height:100vh;
      display:flex;
      align-items:center;
      justify-content:center;
      padding:20px;
      background:
      linear-gradient(rgba(0,0,0,0.78), rgba(0,0,0,0.88)),
      url('/images/web-banner.JPG') center/cover no-repeat;
    }

    .overlay-glow{
      position:absolute;
      width:500px;
      height:500px;
      background:rgba(153,0,255,0.25);
      filter:blur(120px);
      border-radius:50%;
      top:-100px;
      right:-100px;
    }

    .thankyou-box{
      position:relative;
      z-index:2;
      width:100%;
      max-width:750px;
      background:rgba(255,255,255,0.06);
      border:2px solid rgba(255,196,0,0.25);
      border-radius:35px;
      padding:60px 40px;
      text-align:center;
      backdrop-filter:blur(12px);
      box-shadow:0 10px 40px rgba(0,0,0,0.35);
    }

    .success-icon{
      width:110px;
      height:110px;
      margin:auto;
      border-radius:50%;
      background:linear-gradient(135deg,#ffb300,#ffde59);
      display:flex;
      align-items:center;
      justify-content:center;
      margin-bottom:30px;
      box-shadow:0 0 30px rgba(255,196,0,0.4);
    }

    .success-icon i{
      font-size:50px;
      color:#000;
    }

    .thankyou-box h1{
      font-size:60px;
      font-weight:800;
      text-transform:uppercase;
      margin-bottom:20px;
      background:linear-gradient(to bottom,#ffe89a,#ffbf00,#b96a00);
      -webkit-background-clip:text;
      -webkit-text-fill-color:transparent;
    }

    .thankyou-box p{
      color:#e6e6e6;
      font-size:20px;
      line-height:1.8;
      margin-bottom:0;
    }

    .btn-home{
      margin-top:35px;
      height:55px;
      padding:0 35px;
      border:none;
      border-radius:12px;
      font-size:18px;
      font-weight:700;
      background:linear-gradient(90deg,#ffb300,#ffde59);
      color:#000;
      transition:0.3s;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      text-decoration:none;
    }

    .btn-home:hover{
      transform:translateY(-3px);
      box-shadow:0 10px 25px rgba(255,196,0,0.4);
      color:#000;
    }

    @media(max-width:768px){

      body{
        overflow:auto;
      }

      .thankyou-box{
        padding:40px 20px;
      }

      .thankyou-box h1{
        font-size:38px;
      }

      .thankyou-box p{
        font-size:16px;
      }

      .success-icon{
        width:90px;
        height:90px;
      }

      .success-icon i{
        font-size:40px;
      }

    }
 