
    :root {
      --primary: #1f7fe5;
      --dark: #444;
      --text: #222;
      --muted: #666;
      --bg: #ffffff;
      --section: #f7f7f7;
      --footer: #4a4a4a;
      --border: #e5e5e5;
      --shadow: 0 2px 10px rgba(0, 0, 0, .12);
      --radius: 14px;
      --max: 1180px;
    }

    * {
      box-sizing: border-box
    }

  html,
body {
  margin: 0;
  padding: 0;
    font-family: "Roboto", sans-serif;
  color:#fff;
  background: #fff;
  line-height: 1.5
}


h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto Condensed", sans-serif;
}
 h1 {
    font-size: 32px;
    font-weight: 900;
    color: #d7900d;
    text-align: center;
}
 h2 {
    font-size: 26px;
    font-weight: 900;
    color: #d7900d;
}
    img {
      max-width: 100%;
      display: block
    }

    a {
      text-decoration: none;
      color: inherit
    }

    .container {
      width: min(var(--max), calc(100% - 32px));
      margin: 0 auto;
    }

    /* Top header */
   
.topbar {
    background: #15181F;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 999;
}
    .topbar-inner {
      min-height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 10px 0;
    }

    .logo img {
      width: 40%;
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 800;
      font-size: 28px;
      color: #111;
      line-height: 1;
    }

    .logo small {
      display: block;
      font-size: 11px;
      font-weight: 700;
      margin-top: 2px;
      letter-spacing: .2px;
    }


    /* Nav */
.nav {
    background: linear-gradient(90deg, #3e9975, #3e9975, #3e9975, #ce1126, #ffd700);
    background-size: 300% 300%;
    animation: navGradient 6s ease infinite;
    color: #fff;
    overflow: auto;
}
@keyframes navGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
    .nav ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      gap: 0;
      justify-content: center;
      flex-wrap: wrap;
    }

    .nav a {
      display: block;
      padding: 14px 16px;
      font-size: 20px;
      font-weight: 700;
      color: #f4f4f4;
      border-right: 1px solid rgba(255, 255, 255, .08);
    }
img.\37 8win {
    margin: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}
    .nav a:hover {
      background: rgba(255, 255, 255, .08)
    }
.topbar-actions .btn-outline, .topbar-actions .btn-solid {
    background: linear-gradient(to bottom, #bddecd 0%, #3e9975 47%, #3e9975 100%) !important;
    border: 2px solid #fff !important;
    color: #fff !important;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    animation: tada 1.2s infinite, glow 1.5s infinite alternate;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8),
                0 0 20px rgba(255, 215, 0, 0.6);
    transition: all 0.3s ease;
    padding: 10px 20px;
    margin: 0 5px;
}
.topbar-actions .btn-outline:hover,
.topbar-actions .btn-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(255, 215, 0, 1),
                0 0 30px rgba(255, 215, 0, 0.8);
}

/* Glow Animation */
@keyframes glow {
    from {
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.7),
                    0 0 20px rgba(255, 215, 0, 0.5);
    }
    to {
        box-shadow: 0 0 20px rgba(255, 215, 0, 1),
                    0 0 35px rgba(255, 215, 0, 0.8);
    }
}

/* Tada Animation */
@keyframes tada {
    0% { transform: scale3d(1,1,1); }
    10%,20% { transform: scale3d(.95,.95,.95) rotate(-3deg); }
    30%,50%,70%,90% { transform: scale3d(1.05,1.05,1.05) rotate(3deg); }
    40%,60%,80% { transform: scale3d(1.05,1.05,1.05) rotate(-3deg); }
    100% { transform: scale3d(1,1,1); }
}
    /* Hero */
    .hero {
      background: linear-gradient(180deg, #fdfdfd, #eef6ff);
    }

    .hero-inner {
     
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 24px 0;
      background:
        radial-gradient(circle at 10% 30%, rgba(98, 145, 255, .10), transparent 25%),
        radial-gradient(circle at 85% 35%, rgba(255, 196, 66, .16), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f4fbff 100%);
      border-bottom: 1px solid #edf0f5;
    }

    .hero-content {
      flex: 1 1 52%;
      padding: 10px 0;
    }
section.section {
    background: #1c1c1c;
}
    .hero-brand {
      font-size: 40px;
      font-weight: 900;
      color: #111;
      line-height: 1;
      margin-bottom: 14px;
    }

    .hero-tag {
      display: inline-block;
      font-size: clamp(28px, 4vw, 54px);
      font-weight: 900;
      line-height: 1.1;
      color: #1253c4;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .hero-sub {
      display: inline-block;
      font-size: clamp(34px, 4.6vw, 60px);
      font-weight: 900;
      color: #2a2554;
      text-transform: uppercase;
      line-height: 1;
      margin-bottom: 16px;
    }

    .hero-cta {
      display: inline-block;
      background: linear-gradient(180deg, #ff8a00, #ff3d00);
      color: #fff;
      padding: 14px 22px;
      border-radius: 999px;
      font-weight: 900;
      font-size: clamp(18px, 2.2vw, 28px);
      box-shadow: 0 8px 18px rgba(255, 90, 0, .25);
    }

    .hero-visual {
      flex: 1 1 48%;
      min-height: 280px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      border-radius: 20px;
      background:
        radial-gradient(circle at 70% 30%, rgba(255, 214, 102, .65), rgba(255, 214, 102, .1) 22%, transparent 24%),
        linear-gradient(135deg, #fff 0%, #eaf6ff 100%);
      overflow: hidden;
    }

    .hero-visual::before,
    .hero-visual::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 255, 255, .35);
      filter: blur(2px);
    }

    .hero-visual::before {
      width: 120px;
      height: 120px;
      top: 20px;
      right: 40px
    }

    .hero-visual::after {
      width: 90px;
      height: 90px;
      bottom: 24px;
      left: 32px
    }

    .hero-illustration {
      width: min(440px, 92%);
      aspect-ratio: 1/0.75;
      border-radius: 18px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .7)),
        url('https://images.unsplash.com/photo-1518546305927-5a555bb7020d?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
      box-shadow: var(--shadow);
      border: 4px solid rgba(255, 255, 255, .65);
    }

    /* Sections */
    .section {
      padding: 40px 0;
    }

    .panel {
    background: #1c1c1c;
    border-radius: 16px;
    box-shadow: 0px 0px 4px 4px rgba(255, 215, 0, 0.6);
    padding: 26px;
}

    .section-title {
      text-align: center;
      font-size: clamp(24px, 3vw, 36px);
      font-weight: 900;
      color: var(--primary);
      margin: 0 0 18px;
    }

   .section p {
    margin: 15px 0 14px;
    color: #fff;
}
    /* Latest posts */
    .heading-bar {
      border-left: 4px solid var(--primary);
      border-bottom: 1px solid var(--border);
      padding: 0 0 10px 12px;
      margin-bottom: 18px;
      font-size: 26px;
      font-weight: 800;
      color: #2a8ae4;
    }

    .posts-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .card {
      border: 1px solid #d8d8d8;
      border-radius: 10px;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 1px 0 rgba(0, 0, 0, .03);
    }

    
.thumb {
    overflow: hidden;
    border-radius: 10px;
}

.thumb img {
    width: 100%;
    border-radius: 10px;
    transition: all 0.4s ease;
    display: block;
}

.thumb img:hover {
    transform: scale(1.08);
    filter: brightness(1.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
    .card-body {
      padding: 10px;
    }

    .card-title {
      color: #1867c7;
      font-weight: 700;
      font-size: 14px;
      line-height: 1.35;
      min-height: 58px;
    }

    /* FAQ */
.faq-title {
    text-align: center;
    color: #d7900d;
    font-size: clamp(22px, 2.8vw, 30px);
    font-weight: 900;
    margin: 25px 0 18px;
}
.footer li {
    padding: 7px 0;
     list-style: none;
}
.footer ul {
    padding:0;
    
}
    .faq {
      max-width: 980px;
      margin: 0 auto;
      border-top: 1px solid var(--border);
    }

    .faq-item {
      border-bottom: 1px solid var(--border);
    }

 .faq-q {
    width: 100%;
    text-align: left;
    background: #1c1c1c;
    border: 0;
    padding: 14px 8px;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

    .faq-a {
      display: none;
      padding: 0 8px 14px;
      color:#fff;
      font-size: 14px;
    }

    .faq-item.open .faq-a {
      display: block
    }

    .faq-item.open .chev {
      transform: rotate(180deg)
    }

    .chev {
      transition: .2s
    }

.footer {
    background: #242424;
    color: #fff;
}

    .footer-inner {
      padding: 36px 0 18px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 30px;
    }

    .footer h4 {
      margin: 0 0 14px;
      font-size: 18px;
      font-weight: 800;
    }

    .footer p,
    .footer li {
      color: #eee;
      font-size: 14px;
    }

    .footer ul {
      list-style: disc;
     
      margin: 0;
    }

    .badges {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      align-items: center;
      margin-top: 18px;
    }

    .badge {
      width: 86px;
      height: 44px;
      border-radius: 8px;
      background: #efefef;
      opacity: .9;
    }

    .copyright {
      text-align: center;
      padding: 12px 0 0;
      margin-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, .12);
      font-size: 13px;
      color: #eee;
    }
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.info-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    border: 1px solid #ddd;
    background: #fff;
}

.info-table th, .info-table td {
    padding: 14px 16px;
    border: 1px solid #ddd;
    text-align: left;
    vertical-align: top;
    color: #000;
}

.info-table th {
    background: linear-gradient(90deg, #3e9975, #f9e660);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}
.info-table tbody tr:nth-child(even) {
    background: #f8fafc;
}

.info-table tbody tr:hover {
    background: #eef8ff;
    transition: 0.3s;
}
.faq-item h3 {
    margin: 0;
}





@media (max-width: 768px) {
    .info-table {
        min-width: 500px;
    }

    .info-table th,
    .info-table td {
        padding: 12px;
        font-size: 14px;
    }
    .topbar-actions {
    display: flex;
    gap: 0px;
    width: 100%;
    margin: auto;
    align-items: center;
    justify-content: flex-end;
}
.logo img {
    width: 90%;
    margin: inherit;
}

}
    /* Responsive */
    @media (max-width: 1024px) {
      .posts-grid {
        grid-template-columns: repeat(2, 1fr)
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr
      }

     

      .hero-content,
      .hero-visual {
        flex: 1 1 auto;
        width: 100%
      }
    }

    @media (max-width: 768px) {
       .topbar-inner {
        flex-direction: row;
        align-items: center;
          gap: 5px;
          padding: 5px 0;
      }

      .nav ul {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto
      }

      .nav a {
        white-space: nowrap
      }

      .hero-inner {
        padding: 20px 0
      }

      .hero-brand {
        font-size: 30px
      }

      .panel {
        padding: 10px
      }

     

      .footer-grid {
        grid-template-columns: 1fr
      }

      .section {
        padding: 10px 0
      }

      .logo {
        width: 50%;
      }

    
    }

    @media (max-width: 480px) {
      .container {
        width: min(var(--max), calc(100% - 20px))
      }

      .hero-cta {
        width: 100%;
        text-align: center
      }

      .heading-bar {
        font-size: 22px
      }

      .faq-q {
        font-size: 14px
      }
    }
 .mc-carousel{
    position:relative;
    width:100%;
    max-width:1200px;
    margin:auto;
    overflow:hidden;
    border-radius:16px;
}

.mc-slides{
    display:flex;
    transition:transform .6s ease;
}


.mc-track{
    display:flex;
    width:max-content;
    animation: mcScroll 20s linear infinite;
}

.mc-slide{
    min-width:16%;   /* 100 / 5 = 20% */
    padding:8px;
}


.mc-slide img {
    width: 100%;
    height: fit-content;
    object-fit: contain;
    border-radius: 12px;
    display: block;
}


.mc-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:45px;
    height:45px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(8px);
    color:#fff;
    font-size:22px;
    cursor:pointer;
    z-index:99;
}

.mc-prev{
    left:15px;
}

.mc-next{
    right:15px;
}

.mc-dots{
    position:absolute;
    bottom:10px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:8px;
    z-index:99;
}

.mc-dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#000;
    opacity:.5;
    cursor:pointer;
    transition:.3s;
}

.mc-dot.active{
    width:30px;
    border-radius:20px;
    background:#FFD700;
    opacity:1;
}

@media(max-width:768px){

.mc-slide img{
    aspect-ratio:auto;
}
.mc-slide {
    min-width: 40%;
    padding: 8px;
    overflow: hidden;
}
.mc-btn{
    width:38px;
    height:38px;
    font-size:18px;
}
h1 {
    font-size: 30px;
}
h2 {
    font-size: 26px;
}
.topbar-actions .btn-outline, .topbar-actions .btn-solid {
   
    font-size: 14px;
    padding: 10px 15px;
    margin: 0 5px;
}
}
span.slide {
    margin: auto;
    display: block;
    text-align: center;
    font-size: 25px;
    font-weight: 800;
}

