    body {
      font-family: "Poppins", sans-serif;
      scroll-behavior: smooth;
      background-color: #f8f9fa;
    }

    /* Base navbar */
.navbar {
  background: #000;
  padding: 12px 0;
  box-shadow: 0 4px 12px rgba(255, 203, 9, 0.15);
  z-index: 1000;
}

.navbar-brand img {
  filter: brightness(110%);
}

.navbar-nav .nav-link {
  color: #fff !important;
  margin: 0 12px;
  font-weight: 500;
  position: relative;
  transition: 0.3s ease;
  text-decoration: none;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: #ff6f28 !important;
}

/* Hover underline effect */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: 0;
  background-color: #ff6f28;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* Dropdown */
.custom-dropdown {
  background: #111;
  border: 1px solid rgba(255, 203, 9, 0.3);
  border-radius: 10px;
  padding: 8px 0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}

.custom-dropdown .dropdown-item {
  color: #fff;
  font-weight: 500;
  padding: 10px 20px;
  transition: all 0.3s;
  text-decoration: none;
}

.custom-dropdown .dropdown-item:hover {
  background: #ff6f28;
  color: #000;
  border-radius: 5px;
  transform: translateX(5px);
}

/* Hover open dropdown (desktop only) */
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    opacity: 1;
    visibility: visible;
  }
}

/* Mobile dropdown */
@media (max-width: 991px) {
  .navbar-collapse {
    background: #000;
    padding: 15px;
    border-radius: 10px;
  }

  .navbar-nav .nav-link {
    text-align: center;
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .custom-dropdown {
    background: #000;
    border: none;
    box-shadow: none;
  }

  .custom-dropdown .dropdown-item {
    text-align: center;
    color: #ff6f28;
  }
}

    /* Hero Section */
    .hero {
      background: url('https://weekline.in/assets/images/bg1.png') center/cover no-repeat;
      color: white;
      position: relative;
    }

    .hero-overlay {
      background: rgba(0, 0, 0, 0.7);
      padding: 120px 0;
    }

    .loan-calculator {
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 15px;
      padding: 25px;
      backdrop-filter: blur(10px);
      
    }

    .loan-calculator input {
      background: rgba(255, 255, 255, 0.8);
      border: none;
    }

    .btn-gold {
      background-color: #ff6f28;
      color: #000;
      font-weight: 600;
    }

    .btn-gold:hover {
      background-color: #ff6f28;
    }

    section {
      padding: 100px 0;
      position: relative;
    }

    section h2 {
      font-weight: 700;
      color: #000;
      margin-bottom: 40px;
    }

    .highlight {
      color: #ff6f28;
    }

    .divider {
      height: 100px;
      background: #ff6f28;
      clip-path: polygon(0 0, 100% 100%, 0 100%);
    }

    .divider-alt {
      height: 100px;
      background: #ff6f28;
      clip-path: polygon(100% 0, 100% 100%, 0 100%);
    }

    .card-custom {
      background: rgba(255, 255, 255, 0.95);
      border-radius: 15px;
      border: none;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
    }

    .card-custom:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    }

    .icon-box {
      color: #ff6f28 !important;
      font-size: 2.5rem;
      margin-bottom: 15px;
    }

    .footer {
      background: #000;
      color: #fff;
      padding: 60px 0;
      text-align: left;
    }

    .footer h5 {
      color: #ff6f28;
      font-weight: 600;
      margin-bottom: 20px;
    }

    .footer a {
      color: #ccc;
      text-decoration: none;
      line-height: 35px;
      text-align: left !important;
    }

    .footer a:hover {
      color: #ff6f28;
    }

    #backToTop {
      position: fixed;
      bottom: 25px;
      right: 25px;
      background: #ff6f28;
      color: #000;
      border: none;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      cursor: pointer;
      transition: all 0.3s;
      z-index: 999;
    }

    #backToTop:hover {
      transform: scale(1.1);
      background: #ff6f28;
    }
     .about-content p {
      font-size: 1rem;
      color: #333;
      line-height: 1.8;
      margin-bottom: 1.2rem;
    }

    .vision-box, .mission-box {
      background: #fff;
      border-radius: 15px;
      padding: 40px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
    }

    .vision-box:hover, .mission-box:hover {
      transform: translateY(-6px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    }

    .vision-box h4, .mission-box h4 {
      color: #ff6f28;
      font-weight: 700;
      margin-bottom: 20px;
    }
        h2 {
      color: #000;
      font-weight: 700;
      margin-bottom: 40px;
      position: relative;
      display: inline-block;
    }

    h2 span {
      color: #ff6f28;
    }

    .highlight {
      color: #ff6f28;
      font-weight: 600;
    }

    .card-custom {
      border: none;
      border-radius: 20px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      transition: all 0.5s ease;
      background: #fff;
      overflow: hidden;
      position: relative;
    }

    .card-custom:hover {
      transform: translateY(-10px) scale(1.03);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .card-custom::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(120deg, transparent, rgba(255, 203, 9, 0.2), transparent);
      transition: all 0.6s;
    }

    .card-custom:hover::before {
      left: 100%;
    }

    .icon-box {
      font-size: 2rem;
      color: #ff6f28;
      margin-bottom: 15px;
      transition: all 0.3s;
    }

    .card-custom:hover .icon-box {
      transform: rotate(10deg) scale(1.2);
    }

    .gold-divider {
      width: 100%;
      height: 100px;
      background: linear-gradient(90deg, #ff6f28, #ffd84f);
      transform: skewY(-3deg);
      margin: 60px 0;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
      animation: glow 4s infinite alternate;
    }

    .gold-divider.reverse {
      transform: skewY(3deg);
    }

    @keyframes glow {
      from { filter: brightness(1); }
      to { filter: brightness(1.3); }
    }

    ul.features {
      list-style: none;
      padding: 0;
    }

    ul.features li {
      margin-bottom: 10px;
      font-size: 1.05rem;
    }

    ul.features li i {
      color: #ff6f28;
      margin-right: 10px;
    }

    .advantage-section {
      background: linear-gradient(135deg, #000, #1a1a1a);
      color: #fff;
      border-radius: 20px;
      padding: 60px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
      margin-top: 100px !important;
    }

    .advantage-section h3 {
      color: #ff6f28;
    }

    .advantage-section p, .advantage-section li {
      color: #ddd;
    }

    .img-shadow {
      box-shadow: 0 10px 25px rgba(0,0,0,0.3);
      border-radius: 15px;
      transition: transform 0.5s ease;
    }

    .img-shadow:hover {
      transform: scale(1.03);
    }
    
    /* HEADER */
    .weekline-header {
      background: linear-gradient(120deg, #000 70%, #111);
      color: #fff;
      padding: 120px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .weekline-header::after {
      content: "";
      position: absolute;
      bottom: -50px;
      left: 0;
      width: 100%;
      height: 100px;
      background: #ff6f28;
      clip-path: polygon(0 70%, 100% 0, 100% 100%, 0 100%);
    }
    .weekline-header h1 {
      font-weight: 700;
      font-size: 2.8rem;
      color: #ff6f28;
    }
    .weekline-header p {
      font-size: 1.1rem;
      color: #e0e0e0;
      max-width: 800px;
      margin: 15px auto 0;
    }

    /* WHY INTRO */
    .weekline-intro {
      background: #fff;
      padding: 100px 0;
      text-align: center;
    }
    .weekline-intro h2 {
      font-weight: 700;
      color: #000;
      margin-bottom: 25px;
    }
    .weekline-intro p {
      max-width: 850px;
      margin: 0 auto;
      font-size: 17px;
      color: #555;
    }

    /* REASONS SECTION */
    .weekline-reasons {
      background: #f8f8f8;
      padding: 100px 0;
    }
    .weekline-reasons h2 {
      text-align: center;
      margin-bottom: 60px;
      font-weight: 700;
      color: #000;
    }

    .weekline-card {
      background: #fff;
      border: none;
      border-radius: 18px;
      padding: 40px 25px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.06);
      transition: all 0.3s ease;
      height: 100%;
    }
    .weekline-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    }
    .weekline-icon {
      background: rgba(255,203,9,0.15);
      color: #ff6f28;
      border-radius: 50%;
      width: 80px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 32px;
      margin: 0 auto 20px;
    }
    .weekline-card h5 {
      font-weight: 600;
      margin-bottom: 10px;
      color: #000;
    }
    .weekline-card p {
      font-size: 15px;
      color: #555;
    }

    /* CTA */
    .weekline-cta {
      background: linear-gradient(120deg, #000 70%, #111);
      color: #fff;
      padding: 100px 0;
      text-align: center;
      position: relative;
    }
    .weekline-cta h2 {
      font-weight: 700;
      color: #ff6f28;
      margin-bottom: 20px;
    }
    .weekline-cta p {
      color: #ddd;
      font-size: 17px;
      max-width: 700px;
      margin: 0 auto 30px;
    }
    .weekline-cta .btn {
      background: #ff6f28;
      color: #000;
      font-weight: 600;
      border-radius: 30px;
      padding: 12px 40px;
      transition: all 0.3s ease;
    }
    .weekline-cta .btn:hover {
      background: #ff6f28;
      transform: scale(1.05);
    }

    /* FOOTER */
    .weekline-footer {
      background: #000;
      color: #ccc;
      text-align: center;
      padding: 30px 0;
      font-size: 15px;
    }
    .weekline-footer a {
      color: #ff6f28;
      text-decoration: none;
    }
    .weekline-footer a:hover {
      text-decoration: underline;
    }
       /* HEADER */
    .weekline-faq-header {
      background: linear-gradient(135deg, #000 60%, #1a1a1a);
      color: #fff;
      text-align: center;
      padding: 120px 0;
      position: relative;
    }
    .weekline-faq-header h1 {
      font-weight: 700;
      color: #ff6f28;
      font-size: 2.8rem;
      text-transform: uppercase;
    }
    .weekline-faq-header p {
      font-size: 1.1rem;
      color: #e0e0e0;
      max-width: 750px;
      margin: 15px auto 0;
    }
    .weekline-faq-header::after {
      content: "";
      position: absolute;
      bottom: -50px;
      left: 0;
      width: 100%;
      height: 80px;
      background: #ff6f28;
      clip-path: polygon(0 70%, 100% 0, 100% 100%, 0 100%);
    }

    /* FAQ Section */
    .weekline-faq-section {
      padding: 100px 0;
      background: #fff;
    }
    .weekline-faq-section h2 {
      text-align: center;
      font-weight: 700;
      color: #000;
      margin-bottom: 60px;
      text-transform: uppercase;
    }

    .weekline-faq-card {
      background: #fff;
      border-left: 5px solid #ff6f28;
      border-radius: 12px;
      padding: 25px 20px;
      margin-bottom: 20px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.05);
      transition: all 0.3s ease;
      position: relative;
    }
    .weekline-faq-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    .weekline-faq-card h5 {
      font-weight: 600;
      color: #000;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .weekline-faq-card h5 i {
      color: #ff6f28;
      font-size: 1.1rem;
    }
    .weekline-faq-card p {
      margin: 0;
      color: #555;
      font-size: 15px;
      line-height: 1.6;
    }

    /* CTA */
    .weekline-faq-cta {
      background: linear-gradient(135deg, #000 60%, #1a1a1a);
      color: #fff;
      padding: 100px 0;
      text-align: center;
    }
    .weekline-faq-cta h2 {
      color: #ff6f28;
      font-weight: 700;
      margin-bottom: 15px;
    }
    .weekline-faq-cta p {
      color: #ddd;
      max-width: 700px;
      margin: 0 auto 25px;
      font-size: 16px;
    }
    .weekline-faq-cta .btn {
      background: #ff6f28;
      color: #000;
      border-radius: 30px;
      padding: 12px 40px;
      font-weight: 600;
      transition: 0.3s;
    }
    .weekline-faq-cta .btn:hover {
      background: #e6b707;
      transform: scale(1.05);
    }

    /* Footer */
    .weekline-footer {
      background: #000;
      color: #ccc;
      text-align: center;
      padding: 30px 0;
      font-size: 15px;
    }
    .weekline-footer a {
      color: #ff6f28;
      text-decoration: none;
    }
    .weekline-footer a:hover {
      text-decoration: underline;
    }

    /* Responsive */
    @media (max-width: 767px) {
      .weekline-faq-header h1 { font-size: 2rem; }
      .weekline-faq-card { margin-bottom: 25px; }
    }
      /* HERO SECTION */
    .wk-hero {
      background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), 
                  url('https://weekline.in/assets/images/bg2.png') center/cover no-repeat;
      color: #fff;
      text-align: center;
      padding: 150px 0;
      position: relative;
      overflow: hidden;
    }
    .wk-hero::after {
      content: "";
      position: absolute;
      bottom: -80px;
      left: 0;
      width: 100%;
      height: 120px;
      background: #ff6f28;
      clip-path: polygon(0 70%, 100% 0, 100% 100%, 0 100%);
    }
    .wk-hero h1 {
      font-weight: 700;
      font-size: 3rem;
      color: #ff6f28;
      text-transform: uppercase;
      letter-spacing: 2px;
      animation: fadeUp 1s ease-in-out;
    }
    .wk-hero p {
      color: #ddd;
      font-size: 1.1rem;
      max-width: 700px;
      margin: 20px auto 0;
      animation: fadeUp 1.4s ease-in-out;
    }

    /* CONTENT SECTION */
    .wk-content {
      padding: 100px 0;
      background: #fff;
    }
    .wk-content h2 {
      font-size: 1.6rem;
      font-weight: 700;
      color: #000;
      margin-bottom: 15px;
      position: relative;
    }
    .wk-content h2::after {
      content: "";
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 50px;
      height: 3px;
      background: linear-gradient(90deg, #ff6f28, #e6b707);
      border-radius: 2px;
    }
    .wk-content p {
      font-size: 16px;
      color: #555;
      line-height: 1.8;
      margin-bottom: 25px;
      animation: fadeUp 1s ease;
    }

    /* HIGHLIGHT BOXES */
    .wk-highlight-box {
      background: linear-gradient(145deg, #fff9e6, #fff);
      border-left: 5px solid #ff6f28;
      border-radius: 15px;
      padding: 30px;
      margin: 40px 0;
      box-shadow: 0 6px 25px rgba(0,0,0,0.07);
      transition: 0.3s;
    }
    .wk-highlight-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(255,203,9,0.3);
    }
    .wk-highlight-box h5 {
      color: #000;
      font-weight: 600;
      margin-bottom: 10px;
    }

    /* GOLD DIVIDER */
    .wk-divider {
      height: 80px;
      background: linear-gradient(135deg, #ff6f28 0%, #e6b707 100%);
      clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 80%);
    }

    /* CTA SECTION */
    .wk-cta {
      background: linear-gradient(120deg, #000, #1a1a1a);
      color: #fff;
      text-align: center;
      padding: 100px 0;
      position: relative;
    }
    .wk-cta h2 {
      color: #ff6f28;
      font-weight: 700;
      margin-bottom: 15px;
      text-transform: uppercase;
    }
    .wk-cta p {
      color: #ddd;
      font-size: 16px;
      max-width: 700px;
      margin: 0 auto 25px;
    }
    .wk-cta .btn {
      background: linear-gradient(90deg, #ff6f28, #e6b707);
      color: #000;
      border-radius: 30px;
      padding: 12px 40px;
      font-weight: 600;
      border: none;
      transition: 0.3s;
    }
    .wk-cta .btn:hover {
      background: #ff6f28;
      transform: scale(1.08);
    }

    /* FOOTER */
    .wk-footer {
      background: #000;
      color: #ccc;
      text-align: center;
      padding: 30px 0;
      font-size: 15px;
    }
    .wk-footer a {
      color: #ff6f28;
      text-decoration: none;
    }
    .wk-footer a:hover {
      text-decoration: underline;
    }

    /* ANIMATIONS */
    @keyframes fadeUp {
      0% { opacity: 0; transform: translateY(30px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 768px) {
      .wk-hero h1 { font-size: 2.2rem; }
      .wk-content h2::after { width: 40px; }
    }
    .terms-section {
    background: #f9fafc;
    color: #333;
    font-family: "Poppins", sans-serif;
  }

  .tc-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
  }
  .tc-main-title span {
    color: #ff6f28;
  }
  .tc-intro {
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.05rem;
  }

  .tc-block {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 25px 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
  }
  .tc-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  }

  .tc-heading {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ff6f28;
    border-bottom: 2px solid #ff6f2820;
    padding-bottom: 8px;
    margin-bottom: 15px;
  }

  .tc-list {
    padding-left: 20px;
    color: #555;
  }
  .tc-list li {
    margin-bottom: 8px;
  } 
  /* === HERO SECTION === */
.tc-hero-section {
  position: relative;
  height: 70vh;
  background: linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0.6)),
              url('https://weekline.in/assets/images/bg2.png') center/cover no-repeat;
  overflow: hidden;
}
.tc-hero-title {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.tc-hero-title span {
  color: #ff6f28;
}
.tc-hero-subtitle {
  font-size: 1.1rem;
  color: #ddd;
  margin-top: 10px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.tc-breadcrumb {
  margin-top: 20px;
}
.tc-breadcrumb .breadcrumb-item a {
  color: #ff6f28;
  text-decoration: none;
}
.tc-breadcrumb .breadcrumb-item.active {
  color: #fff;
}
.scroll-down {
  display: inline-block;
  margin-top: 40px;
  font-size: 1.5rem;
  color: #ff6f28;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}
.wk-privacy-hero {
    background: linear-gradient(135deg, #ff6f28 0%, #004C8C 100%);
    color: #fff;
    padding: 100px 0 80px;
    position: relative;
  }
  .wk-privacy-title {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 1px;
  }
  .wk-privacy-subtitle {
    font-size: 18px;
    margin-top: 15px;
    max-width: 700px;
    margin-inline: auto;
    opacity: 0.9;
  }

  .wk-privacy-section {
    background-color: #f8f9fb;
    padding: 80px 0;
  }
  .wk-privacy-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    padding: 35px;
    margin-bottom: 35px;
    transition: all 0.3s ease;
  }
  .wk-privacy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  }
  .wk-privacy-heading {
    font-size: 24px;
    color: #ff6f28;
    font-weight: 600;
    border-left: 5px solid #ff6f28;
    padding-left: 12px;
    margin-bottom: 15px;
  }
  .wk-privacy-text {
    font-size: 16px;
    color: #333;
    line-height: 1.7;
  }
  .wk-privacy-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
  }
  .wk-privacy-list li {
    padding: 6px 0;
    position: relative;
    padding-left: 25px;
  }
  .wk-privacy-list li::before {
    content: "✔";
    color: #ff6f28;
    position: absolute;
    left: 0;
    font-weight: bold;
  }
/* Hero Section */
  .wk-contact-hero {
    background: linear-gradient(135deg, #002B5B 0%, #004C8C 100%);
    color: #fff;
    padding: 100px 0 80px;
    text-align: center;
  }
  .wk-contact-title {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 1px;
  }
  .wk-contact-subtitle {
    font-size: 18px;
    margin-top: 15px;
    max-width: 700px;
    margin-inline: auto;
    opacity: 0.9;
  }

  /* Contact Section */
  .wk-contact-section {
    background: #f8f9fb;
    padding: 80px 0;
  }

  .wk-contact-form-card, .wk-contact-info-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    padding: 35px;
    transition: 0.3s;
  }

  .wk-contact-form-card:hover,
  .wk-contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }

  .wk-contact-heading {
    font-size: 24px;
    color: #002B5B;
    font-weight: 600;
    border-left: 5px solid #ff6f28;
    padding-left: 12px;
    margin-bottom: 20px;
  }

  .wk-input {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px 15px;
    font-size: 15px;
    transition: all 0.3s ease;
  }
  .wk-input:focus {
    border-color: #ff6f28;
    box-shadow: 0 0 6px rgba(241,196,15,0.4);
    outline: none;
  }

  .wk-btn-submit {
    background: #002B5B;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  .wk-btn-submit:hover {
    background: #ff6f28;
    color: #002B5B;
    transform: translateY(-2px);
  }

  /* Contact Info */
  .wk-contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
  }
  .wk-icon {
    font-size: 24px;
    color: #ff6f28;
    margin-top: 5px;
  }
  .wk-contact-text {
    color: #444;
    font-size: 16px;
    line-height: 1.7;
  }

  /* Map Section */
  .wk-contact-map iframe {
    filter: grayscale(20%) contrast(110%);
  }

  @media (max-width: 767px) {
    .wk-contact-hero { padding: 80px 0 60px; }
    .wk-contact-title { font-size: 36px; }
    .wk-contact-subtitle { font-size: 16px; }
    .wk-contact-section { padding: 60px 0; }
  }
   /* Hero Section */
  .wk-refund-hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #fff;
    padding: 100px 0 80px;
  }
  .wk-refund-title {
    font-size: 48px;
    font-weight: 700;
    color: #ff6f28;
  }
  .wk-refund-subtitle {
    font-size: 18px;
    margin-top: 15px;
    opacity: 0.85;
    max-width: 700px;
    margin-inline: auto;
  }

  /* Content Section */
  .wk-refund-section {
    background: #f8f9fb;
    padding: 80px 0;
  }
  .wk-refund-content {
    background: #fff;
    border-radius: 16px;
    padding: 40px 50px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    line-height: 1.8;
    color: #333;
  }

  .wk-refund-heading {
    font-size: 22px;
    color: #000000;
    border-left: 5px solid #ff6f28;
    padding-left: 12px;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 600;
  }

  .wk-refund-list {
    margin-left: 20px;
    list-style: none;
  }
  .wk-refund-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
  }
  .wk-refund-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ff6f28;
    font-weight: bold;
  }

  a {
    color: #ff6f28;
    text-decoration: none;
  }
  a:hover {
    text-decoration: underline;
  }

  @media (max-width: 767px) {
    .wk-refund-title { font-size: 36px; }
    .wk-refund-content { padding: 30px; }
  }
    /* ==========================
       HERO SECTION
    ===========================*/
    .wkln-hero-section {
      background: url('https://weekline.in/assets/images/bg2.png') center/cover no-repeat;
      position: relative;
      color: #fff;
      height: 65vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .wkln-hero-overlay {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.7);
    }

    .wkln-hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
    }

    .wkln-hero-content h1 {
      font-size: 3rem;
      font-weight: 700;
      color: #ff6f28;
    }

    .wkln-hero-content p {
      font-size: 1.1rem;
      color: #ddd;
    }

    /* ==========================
       SECTION TITLE
    ===========================*/
    .wkln-section-title {
      text-align: center;
      margin-bottom: 50px;
    }

    .wkln-section-title h2 {
      color: #000;
      font-weight: 700;
    }

    .wkln-section-title span {
      color: #ff6f28;
    }

    /* ==========================
       ABOUT SECTION
    ===========================*/
    .wkln-about-section {
      background: #fff;
      padding: 80px 0;
    }

    .wkln-about-section p {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #555;
    }

    /* ==========================
       INVESTOR SECTION
    ===========================*/
    .wkln-info-section {
      background: #000;
      color: #fff;
      padding: 80px 0;
    }

    .wkln-info-section h3 {
      color: #ff6f28;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .wkln-info-section p {
      color: #ddd;
      line-height: 1.7;
    }

    /* Benefit Card */
    .wkln-benefit-card {
      background: #111;
      color: #fff;
      border: 1px solid rgba(255,203,9,0.3);
      border-radius: 12px;
      padding: 25px;
      transition: all 0.3s ease;
      height: 100%;
    }

    .wkln-benefit-card:hover {
      background: #ff6f28;
      color: #000;
      transform: translateY(-6px);
    }

    .wkln-benefit-card i {
      color: #ff6f28;
      font-size: 2rem;
      margin-bottom: 15px;
    }

    .wkln-benefit-card:hover i {
      color: #000;
    }

    /* ==========================
       INTERNAL CHARTER SECTION
    ===========================*/
    .wkln-charter-section {
      background: #fff;
      padding: 80px 0;
    }

    .wkln-charter-section h3 {
      color: #000;
      font-weight: 700;
      margin-bottom: 30px;
    }

    .wkln-charter-list li {
      background: #f2f2f2;
      padding: 15px 20px;
      border-left: 5px solid #ff6f28;
      border-radius: 5px;
      margin-bottom: 15px;
      font-weight: 500;
    }

    /* ==========================
       CTA SECTION
    ===========================*/
    .wkln-cta-section {
      position: relative;
      color: #fff;
      text-align: center;
      padding: 80px 20px;
      background: url('https://weekline.in/assets/images/bg2.png') center/cover no-repeat;
    }

    .wkln-cta-overlay {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.75);
      z-index: 1;
    }

    .wkln-cta-content {
      position: relative;
      z-index: 2;
    }

    .wkln-cta-section h2 {
      color: #ff6f28;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .wkln-cta-section p {
      color: #ddd;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .wkln-cta-btn {
      background: #ff6f28;
      color: #000;
      border-radius: 30px;
      padding: 12px 35px;
      font-weight: 600;
      text-decoration: none;
      transition: 0.3s;
    }

    .wkln-cta-btn:hover {
      background: #fff;
      color: #000;
    }
    .team-section {
      padding: 100px 0;
    }

    .team-heading {
      text-align: center;
      margin-bottom: 70px;
    }

    .team-heading h2 {
      font-weight: 700;
      color: #000;
    }

    .team-heading span {
      color: #ff6f28;
    }

    .team-member {
      background: #fff;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
      transition: all 0.4s ease;
      margin-bottom: 50px;
    }

    .team-member:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 30px rgba(255, 203, 9, 0.25);
    }

    .team-member img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-right: 5px solid #ff6f28;
    }

    .team-content {
      padding: 40px;
    }

    .team-content h4 {
      color: #000;
      font-weight: 600;
    }

    .team-content h6 {
      color: #ff6f28;
      margin-bottom: 15px;
      font-weight: 500;
    }

    .team-content p {
      color: #555;
      font-size: 15px;
      line-height: 1.8;
    }

    .social-icons a {
      color: #000;
      font-size: 18px;
      margin-right: 12px;
      transition: all 0.3s ease;
    }

    .social-icons a:hover {
      color: #ff6f28;
    }

    footer {
      background: #000;
      text-align: center;
      padding: 40px 0;
      color: #fff;
      border-top: 3px solid #ff6f28;
    }

    @media (max-width: 768px) {
      .team-member {
        flex-direction: column !important;
      }
      .team-member img {
        border-right: none;
        border-bottom: 5px solid #ff6f28;
      }
      .team-content {
        padding: 25px;
      }
    }