body {
  font-family: 'Inter Tight', sans-serif;
  background: #fff;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
}
p{
  font-size: 16px;
}
@media (max-width: 768px) {
  p{
    font-size: 14px;
  }
}
/* NAVBAR */
.navbar {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 999;
}
.custom-navbar {
  padding: 15px 30px;
  background: #fff;
}

/* LOGO IMAGE FIX */
.logo img {
  height: 60px;
}

/* NAV LINKS */
.navbar-nav {
  gap: 30px;
}

.navbar-nav .nav-link {
  color: #333;
  font-size: 16px;
  position: relative;
}

/* underline animation */
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background: #ed1c24;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}
.navbar-collapse {
  transition: all 0.3s ease;
}

.navbar .register-btn { background: #ed1c24; color: #fff; padding: 8px 18px; border-radius: 10px; transition: 0.3s; } 
.navbar .register-btn:hover { background: #ed1c24; transform: translateY(-2px); color: #fff; }

/* MOBILE MENU STYLE */
@media (max-width: 768px) {

  .logo img {
    height: 45px;
  }

  .navbar {
    padding: 10px 15px;
  }
  .navbar-collapse {
    position: absolute;
    top: 70px; /* adjust based on navbar height */
    left: 0;
    width: 100%;
     background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    z-index: 1000;
  }

  .navbar-nav {
    align-items: center;
    gap: 18px;
  }

  .navbar-nav .nav-link {
    font-size: 14px;
    padding: 8px 0;
  }
  
}

/* ========================= */
/* HERO */
/* ========================= */
.hero {
  margin: 0px 30px;
  border-radius: 25px;
  overflow: hidden;
  min-height: 85vh;
  height: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

/* BACKGROUND IMAGE */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  z-index: 1;
}

.hero-content,
.hero-footer {
  position: relative;
  z-index: 2;
}

/* CONTENT */
.hero-content {
  position: relative;
  color: #fff;
  max-width: 1200px;
  animation: fadeUp 1s ease;
}

.tag {
  font-family: 'Syne Mono', monospace;
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  background: #212121;
  font-size: 16px;
  margin-bottom: 20px;
  backdrop-filter: blur(6px);
}

.hero h1 {
  font-size: 44px;
  font-weight: normal;
  margin-bottom: 15px;
}

.hero p {
  opacity: 0.85;
  margin-bottom: 25px;
}

/* CTA */
.cta {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.primary-btn {
  background: #ed1c24;
  color: #fff;
  padding: 12px 22px;
  border-radius: 10px;
  transition: 0.3s;
}

.Request-btn {
  background: #212121;
  color: #fff;
  padding: 12px 22px;
  border-radius: 10px;
  transition: 0.3s;
}

.primary-btn:hover {
  background: #ed1c24; transform: translateY(-2px);
}

/* FOOTER TEXT */
.hero-footer {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
  color: #ccc;
  font-size: 16px;
  padding: 20px;
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .hero {
    height: auto;
    padding: 80px 20px;
    margin: 20px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 14px;
  }
  .hero-footer {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 60px 15px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .tag {
    font-size: 12px;
  }

  .cta {
    flex-direction: column;
    gap: 10px;
  }
 

  .primary-btn,
  .Request-btn {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 376px) {
 .hero-footer{
  padding: 0;
}
}

/* ========================= */
/* FEATURE SECTION */
/* ========================= */
.feature-section {
  padding: 60px 20px;
}

/* TITLE */
.feature-section .main-title {
  font-size: 42px;
  font-weight: normal;
}
.feature-section .main-title img{
    width: 50px;
    height: 50px;
}
.feature-section .main-title span {
  color: #ed1c24;
}

/* DESCRIPTION */
.desc {
  color: #666;
  font-size: 16px;
}

/* BUTTON */
.feature-section .register-btn {
  background: #ed1c24;
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  transition: 0.3s;
}

.feature-section .register-btn:hover {
  background: #ed1c24; transform: translateY(-2px);
}

/* CARDS */
.feature-card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  transition: 0.3s ease;
  border: 1px solid #eee;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
   border-bottom: 4px solid #ed1c24;
}
.feature-card p{
  color: #6c6c6c;
}

/* ICON */
.icon {
  width: 56px;
  height: 56px;
  margin-bottom: 35px;
}
.icon img{
    width: 100%;
    height: 100%;
}
@media (max-width: 992px) {
  .feature-section {
    padding: 30px 20px;
  }
  .feature-section .main-title {
    font-size: 30px;
    text-align: center;
  }

  .desc {
    text-align: center;
  }
  .feature-section .descDiv{
  justify-content: center;
  display: grid;
}
}
/* ===================== */
/* SCROLL STRIP */
/* ===================== */

.scroll-strip {
  background: #111;
  overflow: hidden;
  padding: 20px 0;
}

/* TRACK */
.scroll-track {
  display: flex;
  width: max-content;
  animation: scrollLoop 25s linear infinite;
  will-change: transform;
}

/* CONTENT GROUP */
.scroll-content {
  display: flex;
  white-space: nowrap;
}

/* TEXT */
.scroll-content span {
  color: #fff;
  font-size: 22px;
  margin-right: 60px;
}

/* PERFECT LOOP */
@keyframes scrollLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* PAUSE ON HOVER */
.scroll-strip:hover .scroll-track {
  animation-play-state: paused;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .main-title {
    font-size: 28px;
  }

  .scroll-track span {
    font-size: 14px;
    margin-right: 40px;
  }
}

/* ========================= */
/* PROCESS SECTION */
/* ========================= */
.process-container{
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding-top: 45px;
}
.main-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    min-height: 900px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Background Circles */
.circle-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-overlay svg {
    width: 900px;
    height: 900px;
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Grid Layout */
.content-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 150px;
    width: 100%;
    padding: 20px;
}

/* Perfect Center Text Positioning */
.center-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 3;
    padding: 20px;
}

.center-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #000;
    font-weight: normal;
}

.red-text { color: #ed1c24; }

.center-content p {
    font-size: 16px;
    color: #6c6c6c;
    line-height: 1.6;
}

/* Card Styling */
.card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 400px;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.card h3 {
    margin-bottom: 25px;
    font-size: 24px;
    color: #000;
}

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

.card li {
    padding-left: 30px;
    margin-bottom: 15px;
    position: relative;
    font-size: 16px;
    color: #6c6c6c;
}

/* Red Sparkle Bullet */
.card li::before {
    content: '✱';
    position: absolute;
    left: 0;
    color: #ed1c24;
    font-size: 18px;
    top: -2px;
}

/* Specific Card Alignments to match Image */
.tl { justify-self: end; align-self: end; }
.tr { justify-self: start; align-self: end; }
.bl { justify-self: end; align-self: start; }
.br { justify-self: start; align-self: start; }

@media (max-width: 1024px) {
  .process-container {
     min-height: auto;   /* REMOVE full screen forcing */
    display: block;     /* STOP vertical centering */
    padding: 30px 15px;
  }
  .main-container {
    min-height: auto;
    height: auto;
  }

  .circle-overlay {
    display: none;
  }

    .content-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .center-content {
    position: relative; top: 100px; width: 100%; text-align: center;
  }
   .center-content h2 {
    font-size: 28px;
  }

  .center-content p {
    font-size: 14px;
  }
  .card {
    width: 100%;
    max-width: 900px;
    position: relative;
    top: 0; /* REMOVE negative shift */
    padding: 25px;
  }
  .card li{
    font-size: 14px;
  }
  .card h3 {
    font-size: 18px;
  }
}

/* ========================= */
/* TRUSTED SECTION */
/* ========================= */
.trusted-section {
    background-color: #1c1919;
    padding: 80px 40px;
    margin: 20px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.trusted-section  .container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Left Content */
.content-side {
    flex: 1;
    text-align: right;
}

.title {
    color: #fff;
    font-size: 3rem;
    line-height: 1.1;
    font-weight: normal;
    margin-bottom: 20px;
}

.title span {
    font-weight: 400;
}

.highlight {
    color: #ed1c24;
    font-size: 3.5rem;
    display: block;
    margin-top: 5px;
}

.description {
    color: #f3f3f3;
    font-size: 16px;
    max-width: 400px;
    margin-left: auto;
    line-height: 1.5;
}

/* Divider */
.divider {
    width: 1px;
    height: 200px;
    background-color: #838383;
}

/* Logo Grid */
.logo-grid {
    flex: 1.5;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 30px;
    align-items: center;
}

.logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0; /* For JS animation */
    transform: translateY(20px);
    transition: all 0.5s ease-out;
}

.logo-item img {
    max-width: 120px;
    max-height: 50px;
    filter: brightness(0) invert(1); /* Makes colored logos white for sleek look */
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo-item:hover img {
    opacity: 1;
    transform: scale(1.1);
    filter: none; /* Shows original colors on hover */
}

@media (max-width: 1200px) {
  .logo-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .trusted-section {
    padding: 30px 20px;
  }
  .trusted-section  .container {
    display: block;

  }
  .divider {
    display: none;
  }
  .content-side {
    text-align: center;
  }
  .title {
    font-size: 2rem;
  }

  .highlight {
    font-size: 2.2rem;
  }

  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .logo-item img {
    max-width: 90px;
  }
  .description {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================= */
/* FAQ SECTION */
/* ========================= */
.faq-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.faq-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 60px;
    color: #000;
}

/* 2-Column Grid */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 40px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: fit-content;
}

/* Header Styling */
.faq-header {
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: transparent;
    transition: background 0.3s ease;
}

.question {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.4;
}

/* The Arrow Icon */
.arrow {
    width: 0; 
    height: 0; 
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #ed1c24; /* Dark red/brown color */
    transition: transform 0.3s ease;
}

/* Content (Hidden by default) */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    padding: 0 40px;
}

.faq-content p {
    padding-bottom: 25px;
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

/* Active State Styles */
.faq-item.active {
    background-color: #f8f8f8;
    border-color: transparent;
}

.faq-item.active .faq-content {
    max-height: 300px; /* High enough to contain text */
    transition: max-height 0.4s ease-in;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
    border-top-color: #000; /* Turns black when open like the design */
}

/* Responsive */
@media (max-width: 992px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .faq-title {
        font-size: 2.2rem;
    }
}
@media (max-width: 768px) {
  .faq-header {
    padding: 20px;
  }

  .faq-content {
    padding: 0 20px;
  }

  .question {
    font-size: 14px;
  }
  .faq-content p {
    font-size: 14px;
  }
}

/* ========================= */
/* FOOTER CTA*/
/* ========================= */
.footer-cta-section {
    width: 100%;
    padding: 30px 20px;
}

.pill-container {
    position: relative;
    background: #fff;
    border: 1px solid #e0e0e0;
    /* This creates the exact "pill" or "oval" shape from the image */
    border-radius: 500px; 
    padding: 20px 50px 60px 50px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
    border-bottom: 5px solid #ed1c24;
}

.inner-content h2 {
    font-size: 40px; /* Scaled for desktop impact */
    font-weight: 500;
    color: #000;
    line-height: 1.1;
    margin-bottom: 30px;
}

.red-highlight {
    color: #ed1c24; /* The specific earthy-red from your image */
}

.inner-content p {
    color: #777;
    font-size: 16px;
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.6;
}

/* The Horizontal Red Line */
.accent-line {
    position: absolute;
    bottom: 0; /* Positioned precisely to match the image's curve */
    left: 5%;
    right: 5%;
    height: 2px;
    background-color: #ed1c24;
    z-index: 1;
}

/* The Button */
.footer-cta-section .register-button {
    position: absolute;
    bottom: -30px; /* Offset so the center of the button aligns with the line */
    left: 50%;
    transform: translateX(-50%);
    background-color: #ed1c24;
    color: #fff;
    text-decoration: none;
    padding: 18px 45px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 18px;
    z-index: 2;
    transition: transform 0.2s ease, background-color 0.2s ease;
    box-shadow: 0 4px 15px rgba(200, 67, 51, 0.2);
}

.footer-cta-section .register-button:hover {
    background-color: #ed1c24;
    transform: translateX(-50%) scale(1.05);
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .inner-content h2 { font-size: 48px; }
    .pill-container { border-radius: 200px; padding: 80px 40px 120px 40px; }
    .accent-line { display: none; }
   .footer-cta-section .register-button { bottom: 25px; padding: 12px 25px; transition: none; font-size: 14px; color: #fff;}
}

@media (max-width: 768px) {
    .pill-container {
        border-radius: 50px; /* Switch to rounded rect for mobile so text fits */
        padding: 60px 20px 100px 20px;
    }
    .inner-content h2 { font-size: 26px; }
    .inner-content p{ font-size: 14px; }
    .accent-line { display: none; }
   .footer-cta-section .register-button { bottom: 25px; padding: 12px 25px; transition: none; font-size: 14px; color: #fff;}
}

/* ========================= */
/* FOOTER */
/* ========================= */
.footer-section {
  background: #000;
  color: #fff;
  padding: 50px 30px 20px;
  border-radius: 25px;
  margin: 20px;
}

/* MAIN LAYOUT */
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

/* LEFT */
.footer-left img {
  width: 120px;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border: 1px solid #444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s;
}

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

/* CENTER LINKS */
.footer-links {
  display: flex;
  gap: 60px;
}

.footer-links .col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

.footer-links a:hover {
   color: #ed1c24;
}

/* RIGHT */
.footer-right h4 {
  margin-bottom: 15px;
  font-size: 16px;
    font-weight: 800;
}

.footer-right a {
  display: block;
  color: #fff;
  margin-bottom: 10px;
  text-decoration: none;
}

.footer-right a:hover {
 color: #ed1c24;
}

/* DIVIDER */
.footer-divider {
  height: 1px;
  background: #333;
  margin: 30px 0 15px;
}

/* COPYRIGHT */
.footer-bottom {
  text-align: center;
  color: #fff;
  font-size: 16px;
}
.footer-bottom a{
    color: #fff;
  margin-bottom: 10px;
  text-decoration: none;
}
.footer-bottom a:hover {
 color: #ed1c24;
}
@media (max-width: 992px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }
  .footer-links a {
    font-size: 14px;
  }
  .footer-right {
    margin-top: 20px;
  }
  .footer-right a{
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .footer-section {
    padding: 40px 20px;
  }

  .footer-links {
    flex-direction: column;
    gap: 20px;
  }

  .social-icons {
    justify-content: center;
  }
}

/* ========================= */
/* MODAL DESIGN */
/* ========================= */
body.modal-open {
  padding-right: 0 !important;
}
html, body {
  overflow-x: hidden;
}
.custom-modal {
  border-radius: 20px;
  padding: 10px;
  animation: fadeUp 0.4s ease;
}

.custom-modal .form-control {
  border-radius: 10px;
  padding: 12px;
  font-size: 16px;
}

.custom-modal .form-control:focus {
  border-color: #ed1c24;
  box-shadow: 0 0 0 0.2rem rgba(237, 28, 36, 0.1);
}
.custom-modal .register-btn{
  background-color: #ed1c24;
  color: #fff;
}
.custom-modal .register-btn:hover {
  background: #ed1c24; transform: translateY(-2px);
}
.modal-title {
  font-weight: 500;
}

/* MOBILE */
@media (max-width: 576px) {
  .custom-modal {
    margin: 15px;
  }
}

/* Scroll to top button */
#scrollTopBtn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  background: #ed1c24;
  color: #fff;
  border: none;
  outline: none;
  padding: 12px 16px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;

  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

/* Show button */
#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Hover */
#scrollTopBtn:hover {
  transform: translateY(-3px);
}

/* Request MODAL */
.request-modal {
  border-radius: 25px;
  padding: 30px;
}

.request-modal h2 {
  font-size: 28px;
  margin-bottom: 10px;
}
.request-modal .sub-text {
  color: #6c6c6c;
  margin-bottom: 25px;
}

.request-modal label {
  font-weight: 500;
  margin-bottom: 6px;
}

.request-modal .form-control {
  border-radius: 15px;
  padding: 14px;
  font-size: 15px;
  border: 1px solid #ddd;
}

.request-modal .form-control:focus {
  border-color: #ed1c24;
  box-shadow: 0 0 0 0.2rem rgba(237,28,36,0.1);
}

.submit-btn {
  background-color: #ed1c24;
  color: #fff;
  padding: 14px;
  border-radius: 12px;
  font-size: 16px;
}

.submit-btn:hover {
  background: #ed1c24; transform: translateY(-2px);
  color: #fff;

}
.request-modal .form-check-label a {
    color:#d6422b;
    font-weight:600;
    text-decoration:none;
    margin-left:6px;
    transition:0.3s ease;
  }

/* Mobile */
@media (max-width: 768px) {
  .request-modal {
    padding: 20px;
  }
}

.desktop-floating-contact{
  position: fixed;
  right: 18px;
  bottom: 120px;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.desktop-floating-contact a{
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: all .3s ease;
}

/* WhatsApp */

.floating-whatsapp{
  background:#25D366;
}

.floating-whatsapp:hover{
  transform:scale(1.1);
}




  .terms-link:hover{
    color:#b92f1b;
    text-decoration:underline;
  }


  /* Popup Design */
  .terms-popup{
    border:none;
    border-radius:28px;
    padding:10px;
    background:#fff;
  }

  .terms-title{
    font-size:34px;
    font-weight:500;
    color:#111827;
    margin:0;
    letter-spacing:-1px;
  }

  .terms-subtitle{
    font-size:17px;
    color:#6b7280;
    margin-bottom:30px;
    line-height:1.7;
  }

  /* Terms Box */
  .important-terms{
    display:flex;
    flex-direction:column;
    gap:18px;
  }

  .term-box{
    display:flex;
    gap:20px;
    align-items:flex-start;
    padding:24px;
    border:1px solid #ececec;
    border-radius:22px;
    transition:0.3s ease;
  }

  .term-box:hover{
    border-color:#d6422b30;
    transform:translateY(-2px);
  }

  .term-number{
    min-width:58px;
    height:58px;
    border-radius:50%;
    background:#fff4f1;
    color:#d6422b;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    font-weight:700;
  }

  .term-content h4{
    font-size:22px;
    margin-bottom:8px;
    color:#111827;
    font-weight:500;
  }

  .term-content p{
    margin:0;
    color:#6b7280;
    line-height:1.7;
    font-size:16px;
  }

  /* Bottom Section */
  .full-terms-wrap{
    margin-top:35px;
    text-align:center;
    padding-top:25px;
    border-top:1px solid #ececec;
  }

  .full-terms-wrap p{
    color:#6b7280;
    margin-bottom:16px;
    font-size:16px;
  }

  .full-terms-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 28px;
    background:#d6422b;
    color:#fff;
    border-radius:14px;
    text-decoration:none;
    font-weight:500;
    transition:0.3s ease;
  }

  .full-terms-btn:hover{
    background:#bb331f;
    color:#fff;
    transform:translateY(-2px);
  }


  /* Responsive */
  @media(max-width:767px){

    .terms-popup{
      border-radius:22px;
      padding:0;
    }

    .terms-title{
      font-size:26px;
      line-height:1.3;
    }

    .terms-subtitle{
      font-size:15px;
      margin-bottom:22px;
    }

    .term-box{
      flex-direction:column;
      padding:20px;
      gap:15px;
      border-radius:18px;
    }

    .term-number{
      width:50px;
      height:50px;
      min-width:50px;
      font-size:16px;
    }

    .term-content h4{
      font-size:20px;
    }

    .term-content p{
      font-size:15px;
    }

    .full-terms-btn{
      width:100%;
    }

    .terms-link{
      display:block;
      margin-top:10px;
      margin-left:0;
    }

  }