        * {
            margin: 0;
            padding: 0;
        }

        body {
            background: #0a0a0a;
            color: #fff;
            font-family: Arial;
        }

        h1, h2, h3, h4 {
            color: goldenrod;
            font-weight: bold;
            font-size: 30px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            text-align: center;
            margin-top: 20px;
            margin-bottom: 20px;
        }

        .post {
            width: 100%;
        }
        /* Header */
        .track {
            background-color: #000;
            padding-top: 10px;
            padding-bottom: 10px;
            border-bottom: 1px solid #fff;
        }

        .logo {
            width: 150px;
            height: 50px;
        }

        .register {
            position: relative;
            overflow: hidden;
            padding: 10px 20px;
            font-size: 15px;
            font-weight: 600;
            color: #fff;
            border: none;
            border-radius: 50px;
            background: #d4af37;
        }

        /* Shine Effect Always Running */
        .register::before {
            content: "";
            position: absolute;
            top: 0;
            left: -80%;
            width: 40%;
            height: 100%;
            background: rgba(255, 255, 255, 0.35);
            transform: skewX(-25deg);
            animation: shine 2s linear infinite;
        }

        /* Glow Pulse */
        .register::after {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 50px;
            box-shadow: 0 0 20px rgba(255, 80, 0, 0.6);
            animation: pulse 1.8s ease-in-out infinite;
        }

        @keyframes gradientMove {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        @keyframes shine {
            0% {
                left: -80%;
            }

            100% {
                left: 140%;
            }
        }

        @keyframes pulse {
            0% {
                opacity: 0.4;
                transform: scale(1);
            }

            50% {
                opacity: 1;
                transform: scale(1.05);
            }

            100% {
                opacity: 0.4;
                transform: scale(1);
            }
        }
        /* header */

        /* Wrapper */
        .slider-wrapper {
            overflow: hidden;
            width: 100%;
        }

        /* Container - smooth infinite scroll */
        .slide-icon-container {
            display: flex;
            gap: 10px;
            width: max-content;
            animation: smooth-slide 10s linear infinite;
        }

        /* Each Icon + Text */
        .slide-icon {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 18px;
            color: goldenrod;
            padding: 5px 10px;
            border-radius: 50px;
            flex-shrink: 0;
            background: transparent;
            transition: transform 0.3s ease;
        }

        .slide-icon img {
            width: 28px;
            height: 28px;
            object-fit: contain;
            display: block;
        }

        .slide-icon:hover {
            transform: scale(1.1);
        }

        /* Smooth continuous sliding animation */
        @keyframes smooth-slide {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }

            /* move only half width (because we duplicated items) */
        }

        /* ✅ Responsive */
        @media (max-width: 768px) {
            .slide-icon-container {
                gap: 6px;
                animation-duration: 25s;
                /* slower for tablets */
            }

            .slide-icon {
                font-size: 14px;
                padding: 4px 6px;
            }

            .slide-icon img {
                width: 24px;
                height: 24px;
            }
        }

        @media (max-width: 480px) {
            .slide-icon-container {
                gap: 4px;
                animation-duration: 30s;
                /* slower for small screens */
            }

            .slide-icon {
                font-size: 12px;
                padding: 3px 5px;
            }

            .slide-icon img {
                width: 20px;
                height: 20px;
            }
        }

        

        .content {
            padding: 30px;
        }

        .box {
            background: linear-gradient(145deg, #111, #1a1a1a);
            padding: 10px;
            border-radius: 18px;
            border: 1px solid rgba(255, 215, 0, 0.25);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.08);
            transition: 0.4s ease;
        }

        .box:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 25px rgba(255, 215, 0, 0.30);
            border-color: #ffd700;
        }

        .box h1,
        h2 {
            color: #ffd700;
            font-size: 28px;
            margin-bottom: 18px;
            position: relative;
        }


        /* footer */
     /* ======= Footer Main ======= */
    footer {
      background: #000; 
      color: #fff;
      padding: 50px 8%;
    }

    .footer-container {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr 1fr;
      gap: 40px;
    }
    .footer-container ul{
        list-style: none;
    }
    /* ======= Logo Section ======= */
    .footer-logo h4 {
      color: #ffcc00;
      font-weight: 800;
      font-size: 32px;
      text-align: start !important;
    }
    .footer-container h4{
        text-align: start !important;
        margin-left: 30px;
    }
    .footer-logo h4 span {
      color: #fff;
      background-color: transparent;
    }

    .footer-logo p {
      margin-top: 15px;
      line-height: 1.7;
      font-size: 15px;
    }

    .footer-logo p span {
      color: #ffcc00;
      font-weight: 600;
    }

    /* ======= Links ======= */
    h4 {
      margin-bottom: 15px;
      font-size: 18px;
      font-weight: 600;
    }

    /* ul {
      list-style: none;
    } */

    ul li {
      margin-bottom: 10px;
    }

    ul li a {
      color: #fff;
      text-decoration: none;
      transition: 0.3s;
    }

    ul li a:hover {
      color: #ffcc00;
    }

    /* ======= Social Icons ======= */
    .social-icons {
      display: flex;
      gap: 10px;
      margin-top: 10px;
    }

    .social-icons a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 35px;
      height: 35px;
      border-radius: 5px;
      background: goldenrod;
      color: #fff;
      transition: 0.3s;
      font-size: 18px;
    }

    .social-icons a:hover {
      background: #ffcc00;
      color: #000;
    }

    /* ======= Bottom Bar ======= */
    .footer-bottom {
      background: #000;
      color: #fff;
      text-align: center;
      padding: 15px;
      font-size: 14px;
    }

    .footer-bottom a {
      color: #ffcc00;
      text-decoration: none;
      font-weight: 600;
    }

    .footer-bottom a:hover {
      text-decoration: underline;
    }

    /* ======= Responsive ======= */
    @media (max-width: 992px) {
      .footer-container {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 576px) {
      .footer-container {
        grid-template-columns: 1fr;
      }

    

      .social-icons {
        justify-content: center;
      }
    }

    /* footer */
  
         /*whatsaap*/
 .float {
    position: fixed;
    width: 50px;
    height: 50px;
    /* bottom: 20px; */
    right: 35px;
    background: linear-gradient(
      90deg,
      rgb(55, 223, 97) 0%,
      rgb(9, 187, 3) 100%
    );    
    color: #fff !important;
    bottom: 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 18px;
    /* box-shadow: 2px 2px 3px #999; */
    z-index: 100;
  }
  .bb{
    color: #fff;
  }
  .my-float {
    margin-bottom: 8px;
    margin-top: 1px;
    margin-left: 1px;
    font-size: 30px;
  }
        @media only screen and (max-width: 476px) {
            .logo {
                width: 150px;
                height: 50px;
            }

            footer {
                padding: 15px;
            }
            .content-box p, ul {
                text-align: start;
            }
        }

        .choose-section {
            background: linear-gradient(135deg, #000, #111, #000);
            padding: 70px 8%;
            overflow: hidden;
        }

        /* Image Box */
        .img-box {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 0 25px rgba(255, 215, 0, 0.20);
            animation: slideLeft 1.5s ease;
        }

        .post {
            width: 100%;
            border-radius: 20px;
            transition: 0.5s;
        }

        .img-box:hover .post {
            transform: scale(1.08);
        }

        /* Content */
        .content-box {
            color: #fff;
            animation: slideRight 1.5s ease;
        }

        .content-box h1,
        h2,
        h3 {
            font-size: 30px;
            color: #ffd700;
            margin: 15px 0;
            text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
            text-align: start;
        }

        .content-box p {
            font-size: 17px;
            color: #ddd;
            line-height: 1.9;
            margin-bottom: 30px;
        }

        /* Button */
        .gold-btn {
            display: inline-block;
            padding: 14px 35px;
            background: linear-gradient(135deg, #ffd700, #c9a000);
            color: #000;
            text-decoration: none;
            font-weight: bold;
            border-radius: 40px;
            transition: 0.4s;
        }

        .gold-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255, 215, 0, 0.35);
        }

        /* Animations */
        @keyframes slideLeft {
            from {
                opacity: 0;
                transform: translateX(-80px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideRight {
            from {
                opacity: 0;
                transform: translateX(80px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Mobile */
        @media(max-width:768px) {
            .content-box {
                text-align: center;
                margin-top: 20px;
            }

            .content-box h1,
            h2,
            h3 {
                font-size: 25px;
            }

            .content-box p {
                font-size: 15px;
            }
        }

        .faq-section {
            background: linear-gradient(135deg, #000, #111, #000);
            /* padding:80px 20px; */
        }

        .faq-heading {
            text-align: center;
            margin-bottom: 45px;
            animation: fadeDown 1.2s ease;
        }

        .faq-heading h3{
            color: #ffd700;
            font-size: 42px;
            margin: 12px 0;
            text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
            padding-top: 30px;
            text-align: center;
        }

        .faq-box {
            max-width: 900px;
            margin: auto;
        }

        .faq-box details {
            background: linear-gradient(145deg, #111, #1b1b1b);
            margin-bottom: 18px;
            border-radius: 14px;
            border: 1px solid rgba(255, 215, 0, 0.20);
            overflow: hidden;
            transition: 0.4s;
            animation: fadeUp 1s ease;
        }

        .faq-box details:hover {
            border-color: #ffd700;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.18);
            transform: translateY(-4px);
        }

        .faq-box summary {
            padding: 18px 22px;
            color: #fff;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            list-style: none;
            position: relative;
        }

        .faq-box summary::-webkit-details-marker {
            display: none;
        }

        .faq-box summary::after {
            content: "+";
            position: absolute;
            right: 22px;
            top: 15px;
            font-size: 28px;
            color: #ffd700;
            transition: 0.3s;
        }

        .faq-box details[open] summary::after {
            content: "−";
            transform: rotate(180deg);
        }

        .faq-box details p {
            padding: 0 22px 20px;
            color: #ccc;
            line-height: 1.8;
            font-size: 15px;
        }

        @keyframes fadeDown {
            from {
                opacity: 0;
                transform: translateY(-40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media(max-width:768px) {
            .faq-heading h3{
                font-size: 30px;
            }

            .faq-box summary {
                font-size: 16px;
                padding: 16px;
            }

            .faq-box details p {
                padding: 0 16px 18px;
            }
        }