{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#0b1d3a;
    margin: 0;
    padding-top: 55px; /* same as navbar height */
}

/* ===== Fixed Header ===== */
/*.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 55px;
    background: hsl(224deg 51.63% 6.23% / 99%);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 28px;
    box-sizing: border-box;
}*/

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 40px;
    background: hsl(224deg 51.63% 6.23% / 99%);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    box-sizing: border-box;
}

/* ===== Logo ===== */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 48px;        /* adjust if needed */
    width: auto;
    display: block;
}

/* Gold Gradient "25" */
.text-gradient-gold {
    background: linear-gradient(90deg, #d4af37, #f6d365);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== Register Button ===== */
.nav-btn {
    background: linear-gradient(90deg, #d4af37, #f6d365);
    color: #081a44;
    padding: 7px 20px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;   /* stops text from breaking */
    transition: all 0.3s ease;
}

.nav-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(212,175,55,0.35);
}


/* Badge */
.badge{
    display:inline-block;
    padding:10px 24px;
    border:1px solid rgba(255,255,255,.25);
    border-radius:30px;
    /*margin-bottom:30px;*/
    font-size:14px;
    letter-spacing:2px;
    color:#e3b23c;
}

/* Heading */
.hero h1{
    font-size:64px;
    font-weight:700;
    line-height:1;
    margin-bottom: 12px;
}

.hero h1 span{
    color:#e3b23c;
}

/* Subtitle */
.hero p{
    max-width:720px;
    margin:30px auto;
    font-size: 1.25rem;
    line-height:1.7;
    color:#d1d9e6;
    margin-top: 0;
}

/* Buttons */
.btn-group{
    margin-top:25px;
}

.btn{
    padding:16px 30px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    margin:10px;
    display:inline-block;
}

.btn-primary{
    background:#e3b23c;
    color:#000;
}

.btn-outline{
    border:1px solid rgba(255,255,255,.4);
    color:#fff;
    background: #0e1837e0;
}

.hero{
  position: relative;
  color: #fff;
  padding: 30px 0px 120px;
  text-align: center;
  overflow: hidden;

  /* Banner Image + Overlay */
  background:
    linear-gradient(rgba(11,22,48,0.75), rgba(11,22,48,0.85)),
    url("../img/hero-bg-Bh1S_J7C.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-wave{
  position:absolute;
  left:0;
  right:0;
  bottom:-2px;            /* removes hairline gap */
  height:250px;           /* taller so it covers fully */
  line-height:0;
}

.hero-wave svg{
  width:100%;
  height:100%;
  display:block;
}

/* Prevent decorative layers from blocking clicks */
.hero-wave,
.hero-wave svg {
    pointer-events: none;
}

.btn-group {
    position: relative;
    z-index: 5;
}

.hero-section {
    position: relative;
    z-index: 2;
}

.mwt-stats{
    background:#f3f4f6;
    padding:20px 20px;
    text-align:center;
}

.mwt-container{
    max-width:1100px;
    margin:auto;
}

/* ===== TITLE ===== */
.mwt-title{
    font-size:36px;
    font-weight:700;
    color:#0b1d3a;
    margin-bottom:10px;
}

.mwt-title span{
    color:#d4a63a;
}

.mwt-desc{
    color:#6b7280;
    font-size:18px;
    margin-bottom:45px;
}

/* ===== GRID ===== */
.mwt-stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(200px,1fr));
    gap:25px;
}

/* ===== STAT BOX ===== */
.mwt-stat-box{
    background:#ffffff;
    padding:30px 20px;
    border-radius:12px;
    border:1px solid #e5e7eb;
    transition:.3s ease;
}

.mwt-stat-box:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.mwt-stat-box .icon{
    font-size:28px;
    margin-bottom:10px;
}

.mwt-stat-box h3{
    font-size:28px;
    color:#1f3b73;
    margin-bottom:5px;
}

.mwt-stat-box p{
    color:#6b7280;
    font-size:14px;
}

/* ===== TRUST SECTION ===== */
.mwt-trust{
    background:#e7eaef;
    padding:70px 20px;
    text-align:center;
}

.mwt-container{
    max-width:1100px;
    margin:auto;
}

/* ===== HEADING ===== */
.mwt-heading{
    font-size:28px;
    font-weight:700;
    color:#0b1d3a;
    margin-bottom:10px;
}

.mwt-subheading{
    color:#6b7280;
    font-size:18px;
    margin-bottom:40px;
}

/* ===== GRID ===== */
.mwt-trust-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(240px,1fr));
    gap:25px;
}

/* ===== CARD ===== */
.mwt-card{
    background:#ffffff;
    padding:25px;
    border-radius:10px;
    border:1px solid #e5e7eb;
    text-align:left;
    transition:.3s ease;
    box-shadow:0 4px 10px rgba(0,0,0,0.04);
}

.mwt-card:hover{
    transform:translateY(-6px);
    box-shadow:0 14px 30px rgba(0,0,0,0.08);
}

.mwt-icon{
    font-size:26px;
    margin-bottom:12px;
}

.mwt-card h3{
    font-size:16px;
    color:#0b1d3a;
    margin-bottom:8px;
}

.mwt-card p{
    font-size:16px;
    color:#6b7280;
    line-height:1.6;
}

/* ===== CTA ===== */
.mwt-cta{
    margin-top:40px;
}

.mwt-cta p{
    color:#6b7280;
    margin-bottom:15px;
    font-size: 18px;
}

.mwt-btn{
    background:#1f3b73;
    color:#fff;
    padding:12px 22px;
    border-radius:6px;
    text-decoration:none;
    font-size:14px;
    transition:.3s;
}

.mwt-btn:hover{
    background:#162c57;
}

/* ===== OFFERS SECTION ===== */
.mwt-offers{
    background:#1c2f5a;
    padding:80px 20px;
    text-align:center;
    color:#fff;
}

.mwt-container{
    max-width:1100px;
    margin:auto;
}

/* ===== BADGE ===== */
.mwt-badge{
    display:inline-block;
    background:#2e4373;
    color:#f4c542;
    padding:6px 14px;
    border-radius:20px;
    font-size:13px;
    margin-bottom:15px;
}

/* ===== TITLE ===== */
.mwt-offer-title{
    font-size:34px;
    font-weight:700;
    margin-bottom:10px;
}

.mwt-offer-title span{
    color:#f4c542;
}

.mwt-offer-sub{
    color:#cbd5e1;
    margin-bottom:40px;
    font-size: 16px;
}

/* ===== GRID ===== */
.mwt-offer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(260px,1fr));
    gap:25px;
    margin-bottom:30px;
}

/* ===== CARD ===== */
.mwt-offer-card{
    background:#2a3f6e;
    padding:28px;
    border-radius:12px;
    border:1px solid rgba(255,255,255,0.1);
    text-align:left;
    transition:.3s ease;
}

.mwt-offer-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(0,0,0,0.25);
}

.mwt-offer-card .icon{
    font-size:26px;
    color:#f4c542;
    margin-bottom:10px;
}

.mwt-offer-card h3{
    margin:0;
    font-size:22px;
}

.mwt-offer-card h4{
    color:#f4c542;
    font-size:14px;
    margin:8px 0;
}

.mwt-offer-card p{
    color:#cbd5e1;
    font-size:16px;
    line-height:1.6;
}

/* ===== TAGS ===== */
.mwt-tags{
    margin:20px 0 35px;
}

.mwt-tags span{
    display:inline-block;
    background:#2e4373;
    padding:8px 14px;
    margin:6px;
    border-radius:20px;
    font-size:13px;
}

/* ===== BUTTON ===== */
.mwt-offer-btn{
    background:#f4c542;
    color:#000;
    padding:16px 30px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    display:inline-block;
    transition:.3s;
}

.mwt-offer-btn:hover{
    background:#e0b233;
}

/* ===== SERVICES SECTION ===== */
.mwt-services{
    background:#f5f7fa;
    padding:70px 20px;
}

.mwt-services h2{
    text-align: center;
}

.mwt-container{
    max-width:1100px;
    margin:auto;
}

/* ===== GRID ===== */
.mwt-services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(300px,1fr));
    gap:25px;
}

/* ===== CARD ===== */
.mwt-service-card{
    background:#ffffff;
    padding:25px;
    border-radius:10px;
    border:1px solid #e5e7eb;
    transition:.3s ease;
}

.mwt-service-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

.mwt-service-card .icon{
    width:44px;
    height:44px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#eef2f7;
    border-radius:8px;
    font-size:20px;
    margin-bottom:12px;
    color:#1f3b73;
}

.mwt-service-card h3{
    font-size:18px;
    color:#0b1d3a;
    margin-bottom:8px;
}

.mwt-service-card p{
    font-size:16px;
    color:#6b7280;
    line-height:1.6;
}

/* ===== PARTNER SECTION ===== */
.mwt-partner{
    background:#e3e6eb;
    padding:70px 20px;
    text-align:center;
}

.mwt-container{
    max-width:1100px;
    margin:auto;
}

.mwt-partner-subtitle{
    color:#6b7280;
    font-size:18px;
    margin-bottom:40px;
}

/* ===== GRID ===== */
.mwt-partner-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(220px,1fr));
    gap:25px;
    margin-bottom:35px;
}

/* ===== CARD ===== */
.mwt-partner-card{
    background:#ffffff;
    padding:25px 15px;
    border-radius:10px;
    border:1px solid #e5e7eb;
    transition:.3s ease;
}

.mwt-partner-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

.mwt-partner-card .icon{
    font-size:26px;
    margin-bottom:10px;
    color:#1f3b73;
}

.mwt-partner-card h3{
    font-size:16px;
    color:#0b1d3a;
    font-weight:600;
}

/* ===== CTA BUTTON ===== */
.mwt-partner-btn{
    display:inline-block;
    background:#1f3b73;
    color:#ffffff;
    padding:14px 30px;
    border-radius:8px;
    font-weight:600;
    text-decoration:none;
    transition:.3s ease;
}

.mwt-partner-btn:hover{
    background:#152c59;
}

/* ===== SUCCESS STORIES ===== */
.mwt-success{
    background:#f5f7fa;
    padding:70px 20px;
    text-align:center;
}

.mwt-container{
    max-width:1100px;
    margin:auto;
}

/* Title */
.mwt-success-title{
    font-size:32px;
    font-weight:700;
    color:#0b1d3a;
    margin-bottom:10px;
}

.mwt-success-title span{
    color:#d4a437;
}

/* Subtitle */
.mwt-success-subtitle{
    color:#6b7280;
    font-size:18px;
    margin-bottom:40px;
}

/* Grid */
.mwt-success-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(320px,1fr));
    gap:30px;
    margin-bottom:30px;
}

/* Card */
.mwt-success-card{
    background:#ffffff;
    padding:30px;
    border-radius:10px;
    border:1px solid #e5e7eb;
    text-align:left;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
    transition:.3s ease;
}

.mwt-success-card:hover{
    transform:translateY(-6px);
}

/* Text */
.mwt-success-text{
    font-size:16px;
    color:#374151;
    line-height:1.6;
    margin-bottom:20px;
    font-style:italic;
}

/* User */
.mwt-success-user strong{
    display:block;
    color:#0b1d3a;
    font-size:15px;
}

.mwt-success-user span{
    color:#6b7280;
    font-size:13px;
}

/* Footer */
.mwt-success-footer{
    color:#6b7280;
    margin:20px 0;
    font-size: 20px;
}

/* Button */
.mwt-success-btn{
    display:inline-block;
    background:#d4a437;
    color:#000;
    padding:14px 28px;
    border-radius:8px;
    font-weight:600;
    text-decoration:none;
    transition:.3s ease;
}

.mwt-success-btn:hover{
    background:#c3932e;
}

/* ===== SLIDER VIEWPORT ===== */
.mwt-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* ===== TRACK ===== */
.mwt-slider-track {
    display: flex;
    transition: transform 0.6s ease;
}

/* ===== EACH CARD (SHOW 2 ONLY) ===== */
.mwt-slider-track .mwt-success-card {
    width: 50%;
    flex: 0 0 50%;
    padding-right: 30px;
    box-sizing: border-box;
}

/* MOBILE = 1 CARD */
@media (max-width: 767px) {
    .mwt-slider-track .mwt-success-card {
        width: 100%;
        flex: 0 0 100%;
        padding-right: 0;
    }
}


/* ===== REGISTER SECTION ===== */
.mwt-register{
    background:#162a5c;
    padding:80px 20px;
    color:#fff;
}

.mwt-container{
    max-width:1150px;
    margin:auto;
}

.mwt-register-wrap{
    display:flex;
    gap:60px;
    align-items:center;
    flex-wrap:wrap;
}

/* LEFT SIDE */
.mwt-register-left{
    flex:1;
}

.mwt-register-left h2{
    font-size:34px;
    margin-bottom:15px;
    font-weight:700;
}

.mwt-register-left h2 span{
    color:#d4a437;
}

.mwt-register-left p{
    color:#d1d5db;
    margin-bottom:25px;
    font-size: 18px;
}

/* Benefits */
.mwt-benefits{
    list-style:none;
    padding:0;
}

.mwt-benefits li{
    margin-bottom:12px;
    padding-left:26px;
    position:relative;
    font-size: 17px;
}

.mwt-benefits li:before{
    content:"✔";
    color:#d4a437;
    position:absolute;
    left:0;
}

/* FORM BOX */
.mwt-form-box{
    flex:1;
    background:#f3f4f6;
    padding:30px;
    border-radius:12px;
    color:#111;
    box-shadow:0 20px 40px rgba(0,0,0,0.2);
}

/* Fields */
.mwt-field{
    margin-bottom:18px;
}

.mwt-field label,
.mwt-field-row label{
    font-size:13px;
    font-weight:600;
    display:block;
    margin-bottom:6px;
}

.mwt-field input,
.mwt-field select{
    width:100%;
    padding:12px;
    border-radius:6px;
    border:1px solid #d1d5db;
    background:#e5e7eb;
}

/* Row */
.mwt-field-row{
    display:flex;
    gap:15px;
    margin-bottom:18px;
}

.mwt-field-row input,
.mwt-field-row select{
    width:99%;
    padding:12px;
    border-radius:6px;
    border:1px solid #d1d5db;
    background:#e5e7eb;
}

.mwt-field-row > div{
    flex:1;
}

/* Button */
.mwt-submit-btn{
    width:100%;
    background:#d4a437;
    color:#000;
    padding:14px;
    border:none;
    border-radius:8px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.mwt-submit-btn:hover{
    background:#c3932e;
}

/* ===== Footer Styling ===== */
.mwt-footer {
    background-color: hsl(224 50% 12%);
    color: #ffffff;
    text-align: center;
    padding: 10px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.mwt-footer h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.mwt-footer .tagline {
    font-size: 18px;
    color: #cfd6e4;
    margin-bottom: 25px;
}

.mwt-footer .divider {
    width: 60px;
    height: 2px;
    background-color: #d4a437; /* Gold accent */
    margin: 0 auto 25px auto;
}

.mwt-footer .copyright {
    font-size: 16px;
    color: #aab3c5;
    margin: 0;
}

/* Optional container (if not using Bootstrap) */
.mwt-footer .container {
    max-width: 900px;
    margin: auto;
}

/* Floating Silver Jubilee Badge */
.mwt-floating-jubilee {
    position: fixed;
    right: 25px;
    bottom: 90px;              /* keeps it above WhatsApp/chat if any */
    z-index: 9999;
    pointer-events: none;      /* prevents blocking clicks */
    animation: floatBadge 3s ease-in-out infinite;
}

.mwt-floating-jubilee img {
    width: 110px;              /* adjust size if needed */
    height: auto;
    filter: drop-shadow(0 10px 25px rgba(0,0,0,0.25));
}

/* Subtle floating animation */
@keyframes floatBadge {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}


/* Responsive */
@media(max-width:768px){
    .navbar {
        padding: 0 16px;
        height: 64px;
    }
    body {
        padding-top: 64px;
    }
    .logo {
        font-size: 18px;
    }
    .nav-btn {
        padding: 8px 14px;
        font-size: 14px;
    }
    .hero h1{
        font-size:38px;
    }
    .header{
        padding:20px;
    }
    .mwt-title{
        font-size:26px;
    }
    .mwt-heading{
        font-size:22px;
    }
    .mwt-offer-title{
        font-size:26px;
    }
    .mwt-partner-title{
        font-size:24px;
    }
    .mwt-success-title{
        font-size:24px;
    }
    .mwt-register-wrap{
        flex-direction:column;
    }
    .mwt-field-row{
        flex-direction:column;
    }
}

/* Mobile → 1 card */
@media (max-width: 600px) {
    .mwt-success-card {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .mwt-floating-jubilee {
        right: 15px;
        bottom: 70px;
    }

    .mwt-floating-jubilee img {
        width: 80px;
    }
}