  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: #ffffff;
      color: #222222;
      min-height: 100vh;
     
    }


    header {
      background: #ff3366;
      color: white;
      padding: 14px 24px;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0,0,0,0.12);
    }

    .header-container {
      max-width: 1440px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

   .logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 100px;   
    height: auto;
    object-fit: contain;
    cursor: pointer;
}

/* Hover Effect */
.logo img:hover {
    transform: scale(1.05);
    transition: 0.3s ease;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .logo img {
        width: 70px;
    }
}

  

    /* ─── Navigation ──────────────────────────────────────── */
    nav {
      display: flex;
      align-items: center;
    }

    .nav-list {
      list-style: none;
      display: flex;
      gap: 32px;
      align-items: center;
    }

    .nav-link {
      color: white;
      text-decoration: none;
      font-weight: 500;
      font-size: 15.5px;
      transition: all 0.2s ease;
      position: relative;
    }

    .nav-link:hover,
    .nav-link.active {
      opacity: 0.9;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: -6px;
      left: 0;
      background: white;
      transition: width 0.25s ease;
    }

    .nav-link:hover::after {
      width: 100%;
    }

    /* ─── Dropdown ────────────────────────────────────────── */
    .dropdown {
      position: relative;
    }

    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      background: #fff;
      color: #333;
      min-width: 180px;
      border-radius: 8px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.15);
      padding: 12px 0;
      display: none;
      opacity: 0;
      transform: translateY(8px);
      transition: all 0.18s ease;
      z-index: 10;
    }

    .dropdown:hover .dropdown-menu,
    .dropdown.active .dropdown-menu {
      display: block;
      opacity: 1;
      transform: translateY(0);
    }

    .dropdown-item {
      display: block;
      padding: 10px 20px;
      color: #333;
      text-decoration: none;
      font-size: 15px;
      transition: background 0.15s;
    }

    .dropdown-item:hover {
      background: #f5f5f5;
      color: #ff3366;
    }

    /* ─── Auth Buttons ────────────────────────────────────── */
    .auth-buttons {
      display: flex;
      gap: 14px;
      align-items: center;
    }

    .auth-btn {
      padding: 9px 22px;
      border-radius: 999px;
      font-weight: 500;
      font-size: 14.5px;
      text-decoration: none;
      transition: all 0.22s;
      border: 2px solid white;
      white-space: nowrap;
    }

    .login {
      color: white;
      background: transparent;
    }

    .login:hover {
      background: rgba(255,255,255,0.18);
    }

    .register {
      background: white;
      color: #ff3366;
      border: none;
    }

    .register:hover {
      background: #ffeef2;
      transform: translateY(-1px);
    }

    /* ─── Mobile Menu Button ──────────────────────────────── */
    .menu-toggle {
      display: none;
      font-size: 32px;
      background: none;
      border: none;
      color: white;
      cursor: pointer;
      padding: 8px;
    }

    /* ─── Mobile ──────────────────────────────────────────── */
    @media (max-width: 860px) {
      .menu-toggle {
        display: block;
        order: 3;
      }

      .auth-buttons {
        order: 2;
      }

      nav {
        display: none;
        position: fixed;
        inset: 0 0 0 auto;
        width: 280px;
        max-width: 85vw;
        background: #ff3366;
        padding: 80px 24px 40px;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
      }

      nav.active {
        display: block;
        transform: translateX(0);
      }

      .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
      }

      .nav-link {
        font-size: 18px;
        padding: 8px 0;
      }

      .dropdown-menu {
        position: static;
        box-shadow: none;
        background: rgba(0,0,0,0.12);
        border-radius: 6px;
        margin-top: 8px;
        transform: none;
        opacity: 1;
        display: none;
        color: #f5f5f5;
      }

      .dropdown-item{
         color: #f5f5f5;
      }

      .dropdown.active .dropdown-menu {
        display: block;
      }

      .auth-buttons {
        flex-direction: column;
        width: 50%;
        gap: 16px;
        margin-top: 32px;
      }

      .auth-btn {
        width: 100%;
        text-align: center;
        padding: 14px;
        font-size: 16px;
      }

      /* Overlay when menu is open */
      body.menu-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 998;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.35s;
      }

      body.menu-open::before {
        opacity: 1;
        pointer-events: all;
      }
    }

    @media (max-width: 480px) {
      header {
        padding: 12px 16px;
      }
      .logo::before {
        font-size: 36px;
      }
    }

    .close-menu {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
}

@media (max-width: 860px) {
  .close-menu {
    display: block;
  }
}


    .container {
      max-width: 1200px;
      margin: 20px auto;
    
      background: white;
      border-radius: 20px;
      padding: 50px 35px;
      box-shadow: 0 20px 70px rgba(0, 0, 0, 0.08);
      position: relative;
      overflow: hidden;
    }

    .container::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 8px;
      background: linear-gradient(90deg, #ff3366, #ff6b6b, #ff8e53);
    }

.center{
  display: block;
  max-width: 300px;
  width: 100%;
  height: auto;
  margin: 25px auto;   /* center */
  border-radius: 10px;
}

    .main-section {
      text-align: center;
      padding: 40px 0 25px;
    }

    .main-section h1 {
      font-size: 2.4rem;
      font-weight: 800;
      color: #ff0000;
      margin-bottom: 12px;
      line-height: 1.2;
    }

    .main-section h2 {
      font-size: 2.2rem;
      font-weight: 800;
      color: #ff0000;
      margin-bottom: 12px;
      line-height: 1.2;
    }

    .main-section p {
      font-size: 1.1rem;
      color: #444444;
      max-width: 1100px;
      margin: 0 auto;
      line-height: 1.6;
    }

    .features {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
      margin: 30px 0;
    }

    .feature-item {
      background: #fff8f8;
      border: 1px solid #ffcccc;
      border-radius: 12px;
      padding: 18px 22px;
      transition: all 0.25s ease;
    }

    .feature-item:hover {
      transform: translateY(-4px);
      border-color: #ff0000;
      box-shadow: 0 10px 25px rgba(255,0,0,0.12);
    }

    .feature-item strong {
      color: #ff0000;
      display: block;
      font-size: 1.15rem;
      margin-bottom: 8px;
    }

    .cta-section {
      text-align: center;
      margin: 40px 0 30px;
    }

    .cta-buttons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 16px;
      margin: 25px 0 15px;
    }

    .btn {
      font-size: 1.1rem;
      font-weight: 700;
      padding: 14px 36px;
      border-radius: 50px;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    }

    .btn-primary {
      background: #ff0000;
      color: white;
      border: none;
    }

    .btn-primary:hover {
      background: #cc0000;
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(255,0,0,0.3);
    }

    .btn-secondary {
      background: #d90000;
      color: white;
      border: none;
    }

    .btn-secondary:hover {
      background: #b30000;
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(217,0,0,0.25);
    }

    .btn-outline {
      background: transparent;
      border: 2px solid #ff0000;
      color: #ff0000;
    }

    .btn-outline:hover {
      background: #fff0f0;
      transform: translateY(-3px);
    }

    .gift-code-box {
      background: #fff5f5;
      border: 2px dashed #ff0000;
      border-radius: 14px;
      padding: 25px 20px;
      text-align: center;
      margin: 35px 0;
    }

    .gift-code-box h3 {
      color: #ff0000;
      margin-bottom: 12px;
      font-size: 1.4rem;
    }

    .code {
      font-family: 'Courier New', Courier, monospace;
      font-size: 1.5rem;
      font-weight: bold;
      color: #222;
      background: #ffecec;
      padding: 14px 24px;
      border-radius: 10px;
      display: inline-block;
      margin: 12px 0;
      letter-spacing: 2px;
      border: 1px solid #ff9999;
    }

    .warning {
      font-size: 0.95rem;
      color: #d00000;
      margin-top: 18px;
      line-height: 1.5;
    }

    .about-section {
      background: #fffafa;
      border-radius: 16px;
      padding: 30px 22px;
      margin: 40px 0 60px;
      border: 1px solid #ffe6e6;
    }

    .about-section h2 {
      color: #ff0000;
      font-size: 1.9rem;
      margin-bottom: 20px;
      text-align: center;
    }

    .about-section p {
      line-height: 1.7;
      color: #333333;
      margin-bottom: 16px;
    }

    @media (min-width: 480px) {
      .features {
        grid-template-columns: 1fr 1fr;
      }
      .header h1 {
        font-size: 2.8rem;
      }
      .btn {
        padding: 15px 42px;
      }
    }

    .download-btn {
      display: block;
      width: fit-content;
      margin: 35px auto;
      font-size: 1.2rem;
      font-weight: 700;
      padding: 16px 70px;
      border-radius: 50px;
      text-decoration: none;
      background: #ff0000;
      color: white;
      transition: all 0.3s ease;
      box-shadow: 0 8px 25px rgba(255,0,0,0.25);
      text-align: center;
    }

    .download-btn:hover {
      background: #cc0000;
      transform: translateY(-4px);
      box-shadow: 0 14px 35px rgba(255,0,0,0.4);
    }

    .section-title {
      font-size: 1.9rem;
      font-weight: 700;
      color: #ff0000;
      text-align: center;
      margin: 40px 0 25px;
    }

    .steps {
      counter-reset: step;
      list-style: none;
      margin: 20px 0 30px;
    }

    .steps li {
      position: relative;
      padding-left: 55px;
      margin-bottom: 22px;
      font-size: 1.05rem;
      color: #333;
    }

    .steps li::before {
      content: counter(step);
      counter-increment: step;
      position: absolute;
      left: 0;
      top: 0;
      width: 25px;
      height: 25px;
      background: #ff0000;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 1rem;
    }

    .tip-box {
      background: #fff5f5;
      border-left: 6px solid #ff0000;
      padding: 18px 22px;
      margin: 30px 0;
      font-size: 1rem;
      color: #444;
      border-radius: 8px;
    }

    .tip-box strong {
      color: #ff0000;
    }

    .specs-table {
      width: 100%;
      border-collapse: collapse;
      background: #fffafa;
      border: 1px solid #ffe6e6;
      border-radius: 12px;
      overflow: hidden;
      margin: 30px 0;
    }

    .specs-table th,
    .specs-table td {
      padding: 14px 18px;
      text-align: left;
      border-bottom: 1px solid #ffe6e6;
    }

    .specs-table th {
      background: #ff0000;
      color: white;
      font-weight: 600;
      width: 40%;
    }

    .specs-table td {
      color: #333;
    }

    .specs-table tr:last-child th,
    .specs-table tr:last-child td {
      border-bottom: none;
    }

    @media (max-width: 480px) {
    
      .download-btn { padding: 15px 50px; font-size: 1.1rem; }
      .steps li { padding-left: 50px; }
      .steps li::before { width: 34px; height: 34px; font-size: 1.1rem; }
    }



.section {
      margin: 40px 0;
    }

    .section h2 {
      font-size: 1.9rem;
      font-weight: 700;
      color: #ff0000;
      text-align: center;
      margin: 35px 0 20px;
    }

    .section h3 {
      font-size: 1.5rem;
      font-weight: 600;
      color: #cc0000;
      margin: 25px 0 15px;
    }

    .section ol {
      counter-reset: step;
      list-style: none;
      margin: 20px 0 30px;
    }

    .section ol li {
      position: relative;
      padding-left: 55px;
      margin-bottom: 18px;
      font-size: 1.05rem;
      color: #333;
    }

    .section ol li::before {
      content: counter(step);
      counter-increment: step;
      position: absolute;
      left: 0;
      top: 0;
      width: 25px;
      height: 25px;
      background: #ff0000;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 1rem;
    }

    .games-list {
      margin: 20px 0;
    }

    .games-list h3 {
      margin-bottom: 15px;
    }

    .games-list p {
      margin-bottom: 18px;
      padding-left: 20px;
      border-left: 4px solid #ffcccc;
    }

    @media (max-width: 480px) {
      .header h1 { font-size: 2rem; }
      h2 { font-size: 1.7rem; }
      h3 { font-size: 1.4rem; }
      ol li { padding-left: 50px; }
      ol li::before { width: 34px; height: 34px; font-size: 1.1rem; }
    }

    .trust-list {
      margin: 25px 0 35px;
    }

    .trust-list ul {
      list-style: none;
      margin: 0;
    }

    .trust-list li {
      font-size: 1.05rem;
      margin-bottom: 14px;
      padding-left: 30px;
      position: relative;
      color: #333;
    }

    .trust-list li::before {
      content: "✔";
      color: #ff0000;
      position: absolute;
      left: 0;
      font-weight: bold;
      font-size: 1.3rem;
    }

 
  

    .review {
      background: #fffafa;
      border-left: 5px solid #ff0000;
      padding: 18px 20px;
      margin: 25px 0;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }

    .review strong {
      color: #ff0000;
      display: block;
      margin-bottom: 10px;
      font-size: 1.15rem;
    }

    .review p {
      color: #444;
      font-size: 1.02rem;
    }

    .comparison-section {
      margin: 40px 0;
    }

    .comparison-table {
      width: 100%;
      border-collapse: collapse;
      background: #fffafa;
      border: 1px solid #ffe6e6;
      border-radius: 12px;
      overflow: hidden;
      margin: 25px 0;
    }

    .comparison-table th,
    .comparison-table td {
      padding: 14px 16px;
      text-align: left;
      border-bottom: 1px solid #ffe6e6;
    }

    .comparison-table th {
      background: #ff0000;
      color: white;
      font-weight: 600;
      width: 33%;
    }

    .comparison-table td {
      color: #333;
    }

    .comparison-table .highlight {
      background: #fff0f0;
      font-weight: 500;
    }

    .comparison-table tr:last-child th,
    .comparison-table tr:last-child td {
      border-bottom: none;
    }

    @media (max-width: 480px) {
      .header h1 { font-size: 2rem; }
      h2 { font-size: 1.7rem; }
      h3 { font-size: 1.4rem; }
      .comparison-table th, .comparison-table td { font-size: 0.95rem; padding: 12px 14px; }
    }

    .carousel-container {
      position: relative;
      overflow: hidden;
      margin: 20px 0;
      padding: 20px 0;
    }

    .carousel-track {
      display: flex;
      transition: transform 0.5s ease-in-out;
      animation: scroll 30s linear infinite;
    }

    .carousel-item {
      flex: 0 0 auto;
      width: 120px;
      height: 120px;
      margin: 0 15px;
      background: #fffafa;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      border: 1px solid #ffe6e6;
    }

    .carousel-item img {
      max-width: 80%;
      max-height: 80%;
      object-fit: contain;
    }

    @keyframes scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    .carousel-track:hover {
      animation-play-state: paused;
    }

    .payment-title {
      text-align: center;
      font-size: 1.4rem;
      font-weight: 600;
      color: #444;
      margin-bottom: 15px;
    }

    @media (max-width: 480px) {
      .carousel-item {
        width: 100px;
        height: 100px;
        margin: 0 10px;
      }
      h2 {
        font-size: 1.7rem;
      }
    }

    .faq-header {
      text-align: center;
      padding-bottom: 50px;
    }

    .faq-header h2 {
      font-size: 2.4rem;
      font-weight: 800;
      background: linear-gradient(90deg, #ff3366, #ff6b6b);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 12px;
    }

    .faq-header p {
      font-size: 1.15rem;
      color: #555;
      max-width: 580px;
      margin: 0 auto;
    }

    .faq-item {
      margin-bottom: 24px;
      padding: 24px 28px;
      background: #fafbff;
      border-radius: 16px;
      border: 1px solid #e9efff;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    }

    .faq-item:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 35px rgba(255, 51, 102, 0.12);
      border-color: #ff3366;
    }

    .faq-item h3 {
      font-size: 1.28rem;
      font-weight: 600;
      color: #ff3366;
      margin-bottom: 14px;
      position: relative;
      padding-left: 28px;
    }

    .faq-item h3::before {
      content: "Q.";
      position: absolute;
      left: 0;
      color: #ff3366;
      font-weight: 700;
      font-size: 1.1rem;
    }

    .answer {
      font-size: 1.03rem;
      color: #444;
      line-height: 1.8;
      padding-left: 28px;
    }

    .answer strong {
      color: #ff3366;
    }

    @media (max-width: 480px) {
      .container {
        padding: 30px 20px;
      }
      .faq-header h1 {
        font-size: 2.3rem;
      }
      .faq-item {
        padding: 20px 22px;
      }
      h3 {
        font-size: 1.18rem;
      }
      .answer {
        font-size: 0.98rem;
      }
    }


    /* ess page */

        .main-wrapper {
      max-width: 1200px;
      margin: 0 auto;
      background: white;
      border-radius: 20px;
      padding: 50px 35px;
      box-shadow: 0 20px 70px rgba(0, 0, 0, 0.08);
      position: relative;
      overflow: hidden;
    }

    .main-wrapper::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 8px;
      background: linear-gradient(90deg, #ff3366, #ff6b6b, #ff8e53);
    }

    .main-wrapper h1 {
      font-size: 2.8rem;
      font-weight: 800;
      color: #ff3366;
      text-align: center;
      margin-bottom: 20px;
      letter-spacing: -0.5px;
    }

    .main-wrapper h2, h3 {
      color: #ff3366;
      font-weight: 700;
      margin: 45px 0 20px;
    }

    .main-wrapper h2 {
      font-size: 2.1rem;
      border-left: 6px solid #ff3366;
      padding-left: 18px;
    }

    .main-wrapper h3 {
      font-size: 1.55rem;
      margin-top: 35px;
    }

    .main-wrapper p {
      font-size: 1.05rem;
      color: #444;
      margin-bottom: 18px;
    }

    .main-wrapper ul {
      list-style: none;
      margin: 20px 0;
    }

    .main-wrapper ul li {
      font-size: 1.05rem;
      margin-bottom: 14px;
      padding-left: 30px;
      position: relative;
    }

    .main-wrapper ul li::before {
      content: "✔";
      color: #ff3366;
      position: absolute;
      left: 0;
      font-size: 1.3rem;
      line-height: 1.6;
    }

   .main-wrapper  ol {
      counter-reset: step;
      list-style: none;
      margin: 25px 0;
    }

   .main-wrapper  ol li {
      position: relative;
      padding-left: 50px;
      margin-bottom: 18px;
      font-size: 1.05rem;
      color: #333;
    }

    .main-wrapper ol li::before {
      content: counter(step);
      counter-increment: step;
      position: absolute;
      left: 0;
      top: 2px;
      width: 38px;
      height: 38px;
      background: #ff3366;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 1.2rem;
    }

    .highlight {
      color: #ff3366;
      font-weight: 600;
    }

    .email {
      color: #ff3366;
      font-weight: 600;
    }

    .section {
      margin-bottom: 40px;
    }

    .final-note {
      background: #fff5f8;
      border-left: 6px solid #ff3366;
      padding: 25px 30px;
      border-radius: 12px;
      margin-top: 50px;
      font-style: italic;
      color: #333;
    }

    @media (max-width: 480px) {
      .main-wrapper {
        padding: 35px 20px;
      }
      h1 {
        font-size: 2.3rem;
      }
      h2 {
        font-size: 1.8rem;
      }
      h3 {
        font-size: 1.4rem;
      }
      p, li {
        font-size: 1rem;
      }
    }


    /* author */


     :root {
            --white: #ffffff;
            --light: #f9fafb;
            --text: #111827;
            --red: #dc2626;
            --red-dark: #b91c1c;
            --gray: #4b5563;
            --border: #e5e7eb;
            --shadow: rgba(220, 38, 38, 0.12);
        }


    .header-author {
            text-align: center;
            margin-bottom: 70px;
        }
        .profile {
            width: 240px;
            height: 240px;
            border-radius: 50%;
            object-fit: cover;
            border: 6px solid var(--white);
            box-shadow: 0 12px 40px var(--shadow);
            transition: all 0.4s ease;
            margin-bottom: 30px;
        }
        .profile:hover {
            transform: scale(1.07);
            box-shadow: 0 20px 60px var(--shadow);
        }
        .header-author h1 {
            font-family: 'Poppins', sans-serif;
            font-size: 3.2rem;
            color: var(--text);
            margin-bottom: 12px;
        }
        .url, .name {
            font-size: 1.15rem;
            color: var(--gray);
            margin: 8px 0;
        }
        .role {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--red);
            margin: 12px 0;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .exp {
            font-size: 1.2rem;
            font-weight: 600;
            color: #374151;
            margin-bottom: 50px;
        }
        .bio-section {
            background: var(--light);
            border-radius: 20px;
            padding: 50px;
            border: 1px solid var(--border);
            box-shadow: 0 8px 30px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        .bio-section:hover {
            box-shadow: 0 12px 40px var(--shadow);
        }
        .bio p {
            font-size: 1rem;
            margin: 24px 0;
            color: #3a3b3b;
        }
        .highlight {
            color: var(--red);
            font-weight: 700;
            background: rgba(220, 38, 38, 0.08);
            padding: 3px 8px;
            border-radius: 5px;
        }
        @media (max-width: 768px) {
            .profile { width: 200px; height: 200px; }
            h1 { font-size: 2.6rem; }
            .bio-section { padding: 40px 25px; }
        }





/* Base (mobile-first) styles */
.carousel-wrapper {
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 1000 / 450;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: white;

  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.05);

  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;

  margin: 40px auto;   /* ⭐ Center slider */
}

.carousel-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* Caption (title overlay) */
.caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px 28px 20px;
  color: white;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, transparent 60%);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.6s ease 0.1s;
}

.slide.active .caption {
  transform: translateY(0);
  opacity: 1;
}

.caption h2 {
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin: 0;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

/* Navigation buttons */
.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.94);
  border: none;
  border-radius: 50%;
  font-size: 1.4rem;
  color: #222;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.25s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation; /* better touch */
}

.nav-button:hover,
.nav-button:active {
  background: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 20px rgba(0,0,0,0.22);
}

.prev { left: 12px; }
.next { right: 12px; }

/* Number indicators */
.indicators {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.indicator {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.indicator.active {
  background: white;
  color: #0f172a;
  transform: scale(1.2);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.4);
}

/* ────────────────────────────────────────
   Breakpoints (mobile-first → larger screens)
───────────────────────────────────────── */

/* Small mobile → larger phones (≈ ≥ 480px) */
@media (min-width: 480px) {
  .caption {
    padding: 28px 36px 24px;
  }
  .caption h2 {
    font-size: 1.75rem;
  }
  .nav-button {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }
  .prev { left: 16px; }
  .next { right: 16px; }
}

/* Tablet portrait / larger mobile (≈ ≥ 680px) */
@media (min-width: 680px) {
  .carousel-wrapper {
    border-radius: 20px;
  }
  .slide {
    transform: translateX(30px); /* original shift */
  }
  .caption {
    padding: 32px 42px 28px;
  }
  .caption h2 {
    font-size: 2rem;
  }
  .nav-button {
    width: 52px;
    height: 52px;
    font-size: 1.6rem;
  }
  .indicator {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }
}

/* Tablet landscape / small desktop (≈ ≥ 920px) */
@media (min-width: 920px) {
  .caption {
    padding: 38px 48px 32px;
  }
  .caption h2 {
    font-size: 2.25rem;
  }
  .nav-button {
    width: 56px;
    height: 56px;
    font-size: 1.7rem;
  }
  .prev { left: 20px; }
  .next { right: 20px; }
  .indicator {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
    gap: 14px; /* in .indicators */
  }
}

/* Large desktop / original design (≥ 1080px approx) */
@media (min-width: 1080px) {
  .carousel-wrapper {
    max-width: 1000px;
    border-radius: 20px;
  }
  .caption h2 {
    font-size: 2.3rem;
  }
}


.slider-wrapper {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      position: relative;
    }

    .slider-track {
      display: flex;
      transition: transform 0.6s ease;
      gap: 20px; /* images ke beech space */
    }

    .slide-item {
      flex: 0 0 calc(20% - 16px); /* 5 items → 20% each + gap adjust */
      aspect-ratio: 1 / 1; /* square rakha for logos */
      background: white;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .slide-item img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }

    /* Navigation buttons */
    .slider-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0, 0, 0, 0.6);
      color: white;
      border: none;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      font-size: 24px;
      cursor: pointer;
      z-index: 10;
      transition: 0.3s;
    }

    .slider-btn:hover {
      background: rgba(0, 0, 0, 0.9);
    }

    .prev {
      left: 0;
    }

    .next {
      right: 0;
    }

    /* Dots */
    .dots {
      text-align: center;
      margin-top: 20px;
    }

    .dot {
      height: 10px;
      width: 10px;
      margin: 0 6px;
      background: #ccc;
      border-radius: 50%;
      display: inline-block;
      cursor: pointer;
    }

    .dot.active {
      background: #333;
    }

    @media (max-width: 992px) {
      .slide-item { flex: 0 0 calc(33.33% - 14px); } /* 3 per row tablet */
    }

    @media (max-width: 600px) {
      .slide-item { flex: 0 0 calc(50% - 10px); } /* 2 per row mobile */
    }

   
   .site-footer {
  background: #ff3366;
  color: white;
  padding: 24px 0;
  text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.footer-links {
  margin-bottom: 14px;
  font-size: 14px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  margin: 0 12px;
  display: inline-block;
}

.footer-links span {
  color: rgba(255,255,255,0.6);
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin: 16px auto;
  max-width: 900px;
}

.copyright {
  font-size: 13px;
  opacity: 0.9;
}


/* ========================= */
/* 📱 Mobile Responsive CSS  */
/* ========================= */

@media (max-width: 768px) {

  .site-footer {
    padding: 20px 10px;
  }

  .footer-links {
    font-size: 13px;
    line-height: 1.8;
  }

  .footer-links a {
    margin: 6px 8px;
  }

  .footer-divider {
    max-width: 100%;
  }

  .copyright {
    font-size: 12px;
    padding: 0 10px;
  }
}


/* Extra Small Devices */

@media (max-width: 480px) {

  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .footer-links a {
    margin: 0;
  }

  .footer-links span {
    display: none; /* Hide separator on mobile */
  }
}