body {
  background: linear-gradient(135deg, #fdf2f4, #f6dde3);
  font-family: 'Segoe UI', sans-serif;
}

/* HEADER BACKGROUND */
.navbar {
  position: relative;
}

.navbar-custom {
  background-color: #6b1201;
  padding: 12px 0;

  position: fixed;
  /* main */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  /* always top */
  transition: 0.3s;
}


.navbar-custom.scrolled {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* LOGO */
.navbar-brand img {
  height: 55px;
}

/* MENU LINKS */
.navbar-nav .nav-link {
  padding: 10px 0;
  flex-direction: column;
  color: #fff !important;
  font-weight: 600;
  margin: 0 5px;
}

/* HOVER */
.navbar-nav .nav-link:hover {
  color: #ffd700 !important;
}

/* DROPDOWN */
/* DROPDOWN BACKGROUND */
.custom-dropdown {
  background-color: #6b1201;
  border: none;
  padding: 0;
  min-width: 200px;
}

/* DROPDOWN ITEMS */
.custom-dropdown .dropdown-item {
  color: #fff;
  padding: 10px 20px;
  font-size: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* REMOVE LAST BORDER */
.custom-dropdown .dropdown-item:last-child {
  border-bottom: 1px solid white;
}

/* HOVER EFFECT */
.custom-dropdown .dropdown-item:hover {
  background-color: #5a0501;
  color: #fff;
}

/* BUTTONS */
.header-btns .btn {
  background-color: #ffffff;
  border: none;
  color: #000;
  font-weight: 600;
  padding: 6px 18px;
  margin-left: 10px;
}

.header-btns .btn:hover {
  background-color: #d4d4d4;
}




/* ===== FIX MOBILE ONE LINE ===== */
@media (max-width: 991px) {

  /* keep everything in one row */
  .navbar>.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  /* logo size */
  .navbar-brand img {
    height: 40px;
  }

  /* buttons inline */
  .header-btns {
    display: flex;
    align-items: center;
    margin-top: 0 !important;
    margin-left: 100px;
  }

  .header-btns .btn {
    padding: 4px 8px;
    font-size: 12px;
    margin-left: 5px;
    white-space: nowrap;
  }

  /* toggle spacing */
  .navbar-toggler {
    margin-left: 6px;
  }

  /* prevent wrapping */
  .navbar-brand,
  .header-btns,
  .navbar-toggler {
    flex-shrink: 0;
  }

  /* dropdown menu style */
  .navbar-collapse {
    position: absolute;
    background: #6b1201;
    top: 100%;
    left: 50%;
    width: 50%;
    padding: 15px;
    margin-top: 10px;
    border-radius: 10px;
    z-index: 999;
  }
}


/* ===== CUSTOM TOGGLER DESIGN ===== */
.navbar-toggler {
  border: none;
  box-shadow: none;
  outline: none;
}

/* box */
.custom-toggler {
  width: 34px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 4px;
}

/* bars */
.custom-toggler .bar {
  display: block;
  width: 100%;
  height: 3px;
  background: #fff;
  margin: 4px 0;
  transition: 0.3s ease;
  border-radius: 2px;
}

/* animation */
.custom-toggler:not(.collapsed) .top-bar {
  transform: rotate(45deg) translate(5px, 5px);
}

.custom-toggler:not(.collapsed) .middle-bar {
  opacity: 0;
}

.custom-toggler:not(.collapsed) .bottom-bar {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* hover */
.custom-toggler:hover .bar {
  background: #ffd700;
}



/*-----------LOGIN PAGE---------- */
/* PAGE BACKGROUND */
.login-page {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 60px;
}

/* CARD (Glass Effect) */
.login-card {
  background: rgba(128, 0, 32, 0.85);
  backdrop-filter: blur(12px);
  padding: 40px 30px;
  border-radius: 20px;
  width: 100%;
  max-width: 400px;
  color: #fff;
  box-shadow: 0 20px 50px rgba(128, 0, 32, 0.4);
  animation: fadeInUp 0.8s ease;
  transition: 0.4s;
}

.login-card:hover {
  transform: translateY(-5px);
}

/* LOGO */
.login-logo {
  text-align: center;
  margin-bottom: 20px;
}

.login-logo img {
  height: 65px;
  animation: zoomIn 1s ease;
}

/* TITLE */
.login-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 30px;
}

/* FLOATING INPUT */
.login-group {
  position: relative;
  margin-bottom: 25px;
}

.login-group input {
  width: 100%;
  padding: 12px;
  border: none;
  border-bottom: 2px solid #fff;
  background: transparent;
  color: #fff;
  outline: none;
}

.login-group label {
  position: absolute;
  left: 0;
  top: 12px;
  color: #ddd;
  font-size: 14px;
  transition: 0.3s;
}

/* FLOAT EFFECT */
.login-group input:focus+label,
.login-group input:valid+label {
  top: -10px;
  font-size: 12px;
  color: #ffccd5;
}

/* BUTTON */
.login-btn {
  background: linear-gradient(135deg, #ff4d6d, #c9184a);
  border: none;
  width: 100%;
  padding: 12px;
  font-weight: bold;
  color: #fff;
  border-radius: 30px;
  margin-top: 10px;
  transition: 0.3s;
  box-shadow: 0 8px 20px rgba(255, 0, 70, 0.4);
}

.login-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(255, 0, 70, 0.6);
}

/* FOOTER */
.login-footer {
  text-align: center;
  font-size: 13px;
  margin-top: 25px;
}

.login-link {
  color: #ffd6dc;
  text-decoration: none;
}

.login-link:hover {
  text-decoration: underline;
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}


/*image Carousel*/
.carousel-item {
  margin-top: 50px;
  /* same height for all */
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* full image दिसेल (NO crop) */
}

/* Optional: better arrow visibility */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: black;
  border-radius: 50%;
  padding: 15px;

}

.carousel-control-prev {
  bottom: 30%;
  left: 2%;
}

.carousel-control-next {
  bottom: 30%;
  right: 2%;
}


/* 4 slide */
.swiper {
  width: 100%;
  overflow: hidden;
}

.swiper-slide {
  padding: 5px;
}

.swiper-slide img {
  width: 100%;
  height: 47px;
  object-fit: cover;
  border-radius: 7px;
}

/*7 images third-carousel*/
.thirdSwiper {
  width: 100%;
}

.thirdSwiper .swiper-slide {
  padding: 5px;
}

.thirdSwiper .swiper-slide img {
  border: none;
  border-radius: 10px;
  box-shadow: none;
  height: auto;
  max-width: 100%;
}


/*third-banner*/
.third-banner {
  width: 100%;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.third-banner:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}



/*table*/





/* HEADER */
.cricket-header {
  background: #c8102e;
  color: #fff;
  padding: 12px 15px;
  border-radius: 10px 10px 0 0;
}

/* Header */
.header-bar {
  background: #c8102e;
  color: #fff;
  padding: 10px 15px;
  font-weight: bold;
}

.header-football {
  background: #208038;
  color: #fff;
  padding: 10px 15px;
  font-weight: bold;
}

.header-football svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.badge-btn {
  border: 1px solid #fff;
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 12px;
  margin-left: 5px;
}

/* Table */
.table-responsive {
  border-radius: 10px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);

}

.match-table {
  width: 100%;
  border-collapse: collapse;

}

.match-table th {
  background: black;
  color: #ccc;
  font-size: 12px;
  padding: 5px;
  text-align: center;
}

.match-table td {
  padding: 8px;
  border-bottom: 1px solid #1e3a5c;
}

/* Match column */
.match-info {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ra-text-dark);
  letter-spacing: 0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 500px;
}

.sub-text {
  font-size: 0.62rem;
  color: #888;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* LIVE column */
.live-col {
  text-align: center;
  width: 120px;
}

.live-badge {
  background: #00a651;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 9px;
  display: inline-block;
}

.live-icon {
  display: inline-block;
  width: 6px;
  height: 18px;
  background: #f5a623;
  border-radius: 6px;
  margin: 0 6px;
  vertical-align: middle;
}

.reddy-anna-live-badge {
  background: var(--ra-live-green);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 2px 6px;
  border-radius: 3px;
  text-transform: uppercase;
  position: relative;
  white-space: nowrap;
}

.live-badge-soon {
  background: #f5a623;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 9px;
  display: inline-block;
}

.reddy-anna-live-badge-soon {
  background: var(--ra-live-green);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 2px 6px;
  border-radius: 3px;
  text-transform: uppercase;
  position: relative;
  white-space: nowrap;
}

.live-badge-path {
  background: #d1ab30;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 9px;
  display: inline-block;
}

.reddy-anna-live-badge-path {
  background: var(--ra-live-green);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 2px 6px;
  border-radius: 3px;
  text-transform: uppercase;
  position: relative;
  white-space: nowrap;
}


.time-text {
  font-size: 0.62rem;
  color: #888;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
}

/* Odds */
.back {
  background: #5aa9ff;
  text-align: center;
  font-weight: 600;
}

.lay {
  background: #ff9aa9;
  text-align: center;
  font-weight: 600;
}

/* Price */
.reddy-anna-odd-price {
  font-size: 0.95rem;
  font-weight: 600;
  color: #000;
}

/* Stake */
.reddy-anna-odd-stake {
  font-size: 0.58rem;
  margin-top: 2px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.6);
}

/* Hover */
.match-table tr:hover {
  background: #f6f9fd
}


/*rowlive*/


.row-live th {
  background: #252545;
  text-align: start;
  padding: 8px 15px;
  border-top: 2px solid #c8102e;

}

.bluefisrt {
  background-color: #f6f9fd;
}

.live-white-dot {
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;

  /* blink effect */
  animation: liveBlink 1s infinite;
}

@keyframes liveBlink {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.2;
    transform: scale(0.8);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.row-live-dot {
  width: 10px;
  height: 10px;
  background: red;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  animation: row-live-blink 1s infinite;
}

@keyframes row-live-blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }

  100% {
    opacity: 1;
  }
}





/*section 1 reddy-anna*/
.reddy-Anna-india-section {
  padding: 70px 0;
  color: #4a1f1f;
  font-family: 'Segoe UI', sans-serif;
}

/* Title */
.reddy-Anna-india-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #7a1e1e;
  /* main maroon */
  margin-bottom: 15px;
}

.reddy-Anna-india-subtitle {
  font-size: 1.1rem;
  color: #a35a5a;
  /* soft maroon */
}

/* Content */
.reddy-Anna-india-content p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.reddy-Anna-india-highlight {
  color: #a94442;
  font-weight: 600;
}

/* Stats Box */
.reddy-Anna-india-stats {
  display: flex;
  flex-direction: column;
}

.reddy-Anna-india-stat-box {
  background: #ffe6e6;
  /* light maroon card */
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(122, 30, 30, 0.1);
  transition: transform 0.3s ease;
}

.reddy-Anna-india-stat-box:hover {
  transform: translateY(-5px);
}

.reddy-Anna-india-stat-box h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #7a1e1e;
}

.reddy-Anna-india-stat-box p {
  margin-top: 5px;
  color: #6b2c2c;
}

/* CTA */
.reddy-Anna-india-cta {
  text-align: center;
  margin-top: 50px;
}

.reddy-Anna-india-btn {
  display: inline-block;
  background: #7a1e1e;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.reddy-Anna-india-btn:hover {
  background: #a94442;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .reddy-Anna-india-title {
    font-size: 2rem;
  }

  .reddy-Anna-india-stat-box {
    margin-bottom: 15px;
  }
}

/*section 2 platform*/



.reddy-Anna-platform-section {
  padding: 60px;
  font-family: 'Segoe UI', sans-serif;
  color: #3b0a0a;
}

.reddy-Anna-platform-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: #800000;
  margin-bottom: 15px;
}

.reddy-Anna-platform-subtitle {
  font-size: 1.1rem;
  color: #a94444;
  margin-bottom: 25px;
}

.reddy-Anna-platform-content {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  line-height: 1.8;
  box-shadow: 0 8px 20px rgba(128, 0, 0, 0.08);
  border: 1px solid #f3d6d6;
}

.reddy-Anna-platform-highlight {
  color: #b30000;
  font-weight: 600;
}

.reddy-Anna-platform-stats {
  margin-top: 30px;
}

.reddy-Anna-platform-stat-box {
  background: #fff0f0;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #f1cccc;
  transition: 0.3s;
}

.reddy-Anna-platform-stat-box:hover {
  transform: translateY(-5px);
}

.reddy-Anna-platform-stat-box h3 {
  color: #800000;
  font-weight: 800;
}

.reddy-Anna-platform-stat-box p {
  font-size: 0.9rem;
  color: #7a3b3b;
}

@media (max-width: 576px) {
  .reddy-Anna-platform-title {
    font-size: 1.6rem;
  }
}

/*section 3 numbers*/


.reddy-numbers-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #800000;
  margin-bottom: 10px;
}

.reddy-numbers-subtitle {
  color: #a94444;
  margin-bottom: 30px;
}

.reddy-numbers-card {
  background: #ffffff;
  border: 1px solid #f1cccc;
  border-radius: 12px;
  padding: 20px;
  height: 100%;
  box-shadow: 0 6px 15px rgba(128, 0, 0, 0.08);
  transition: 0.3s;
}

.reddy-numbers-card:hover {
  transform: translateY(-5px);
}

.reddy-numbers-card h4 {
  color: #800000;
  font-weight: 700;
  margin-bottom: 10px;
}

.reddy-numbers-box {
  background: #fff0f0;
  border: 1px solid #f1cccc;
  border-radius: 12px;
  padding: 25px;
}

.reddy-numbers-box h5 {
  color: #800000;
  font-weight: 700;
  margin-bottom: 15px;
}

.reddy-numbers-highlight {
  color: #b30000;
  font-weight: 600;
}

ul {
  padding-left: 18px;
}

ul li {
  margin-bottom: 10px;
}

@media (max-width: 576px) {
  .reddy-numbers-title {
    font-size: 1.5rem;
  }
}

/*section 4 why*/


.why-section {
  background: linear-gradient(135deg, #fff7f5, #ffeae6);
  color: #2b2b2b;
  border-radius: 12px;
  padding: 60px 0;
}

/* Heading */
.why-heading {
  font-size: 2.4rem;
  font-weight: 700;
  color: #6b1201;
  /* brand maroon */
}

/* Cards */
.why-card {
  background: linear-gradient(135deg, #3a0d05, #6b1201);
  border: none;
  padding: 25px;
  border-radius: 15px;
  transition: 0.3s;
  height: 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Hover */
.why-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

/* Card Heading */
.why-card h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #ffd166;
  /* gold */
}

/* Card Text */
.why-card p {
  font-size: 0.95rem;
  color: #ffe4dc;
}

/* Contact */
.why-contact {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  font-size: 1rem;
  color: #ffffff;
}

/* Responsive */
@media(max-width:768px) {
  .why-heading {
    font-size: 1.8rem;
  }
}

/*section 5 steps*/


/* Heading */
.steps-heading {
  font-size: 2.3rem;
  font-weight: 700;
  color: #6b1201;
}

/* Cards */
.steps-card {
  background: #ffffff;
  padding: 25px 20px;
  border-radius: 15px;
  border-top: 4px solid #6b1201;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  height: 100%;
  text-align: left;
}

/* Hover */
.steps-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Number */
.steps-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffd166;
  margin-bottom: 10px;
}

/* Title */
.steps-card h4 {
  color: #6b1201;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

/* Text */
.steps-card p {
  color: #444;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Button */
.steps-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #6b1201;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.steps-btn:hover {
  background: #a52a1a;
}

/* Responsive */
@media(max-width:768px) {
  .steps-heading {
    font-size: 1.8rem;
  }
}

/*section 6 choose*/

/*.feature-section {
  background: #fff7ed;
}

.feature-heading {
  font-size: 2.3rem;
  font-weight: 700;
  color: #6b1201;
}

.feature-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  border: 1px solid #fed7aa;
  transition: 0.3s;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(107, 18, 1, 0.2);
  border-color: #6b1201;
}

.feature-card h4 {
  color: #6b1201;
  margin-bottom: 10px;
}

.feature-card p {
  color: #4b2e2e;
  font-size: 0.95rem;
}*/

/* Section */
.reddy-choose-section {
  background: #fff5f5;
  /* light maroon background */
  padding: 70px 0;
  color: #4a1f1f;
}

/* Title */
.reddy-choose-title {
  font-weight: 800;
  color: #7a1e1e;
}

.reddy-choose-subtitle {
  color: #a35a5a;
  font-size: 1.05rem;
}

/* Card */
.reddy-choose-card {
  background: #ffe6e6;
  /* soft maroon card */
  border: none;
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(122, 30, 30, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

.reddy-choose-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(122, 30, 30, 0.15);
}

/* Card Title */
.reddy-choose-card h5 {
  font-weight: 700;
  color: #7a1e1e;
}

/* Card Text */
.reddy-choose-card p {
  font-size: 0.95rem;
  color: #5c2a2a;
}

/* Footer */
.reddy-choose-card .card-footer {
  background: transparent;
  border: none;
}

/* Buttons */
.reddy-choose-btn {
  background: #7a1e1e;
  color: #fff;
  border-radius: 30px;
  padding: 10px 18px;
  font-weight: 600;
  transition: 0.3s ease;
  border: none;
}

.reddy-choose-btn:hover {
  background: #a94442;
  transform: scale(1.05);
}

/* Demo button special */
.reddy-choose-btn-success {
  background: #b85c5c;
}

.reddy-choose-btn-success:hover {
  background: #944444;
}

/* VIP highlight */
.reddy-choose-vip {
  border: 2px solid #a94442;
  background: #fff0f0;
}

.reddy-choose-vip h5 {
  color: #a94442;
}

/* Responsive */
@media (max-width: 768px) {
  .reddy-choose-title {
    font-size: 1.8rem;
  }
}

/*section 7 glance*/

.glance-section {
  background: #fff7ed;
}

/* Heading */
.glance-heading {
  font-size: 2.3rem;
  font-weight: 700;
  color: #6b1201;
}

/* Table */
.glance-table {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(107, 18, 1, 0.1);
}

/* Rows */
.glance-table tr {
  border-bottom: 1px solid #fed7aa;
}

.glance-table tr:last-child {
  border-bottom: none;
}

/* Cells */
.glance-table td {
  padding: 15px 20px;
  font-size: 0.95rem;
}

/* Left Column */
.glance-table td:first-child {
  font-weight: 600;
  color: #6b1201;
  width: 35%;
}

/* Right Column */
.glance-table td:last-child {
  color: #4b2e2e;
}

/* Hover Effect */
.glance-table tr:hover {
  background: #fff1e6;
}

/* Responsive */
@media(max-width:768px) {
  .glance-heading {
    font-size: 1.6rem;
  }

  .glance-table td {
    display: block;
    width: 100%;
  }

  .glance-table tr {
    margin-bottom: 10px;
    display: block;
    border: 1px solid #fed7aa;
    border-radius: 10px;
  }
}

/*section 8 edge*/
.edge-section {
  background: #fff7ed;
}

/* Heading */
.edge-heading {
  font-size: 2.4rem;
  font-weight: 700;
  color: #6b1201;
}

.edge-intro {
  max-width: 800px;
  margin: auto;
  color: #4b2e2e;
  text-align: center;
}

/* Cards (Windows) */
.edge-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #fed7aa;
  transition: 0.3s;
}

.edge-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(107, 18, 1, 0.15);
}

.edge-card h4 {
  color: #6b1201;
  margin-bottom: 8px;
}

/* Exchange Boxes */
.edge-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid #6b1201;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.edge-box h5 {
  margin-bottom: 5px;
  color: #6b1201;
}

.edge-box p {
  font-size: 0.9rem;
  color: #4b2e2e;
}

/* Table */
.edge-table {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.edge-table th {
  background: #6b1201;
  color: #fff;
}

.edge-table td {
  padding: 12px;
  border-bottom: 1px solid #fed7aa;
}

.edge-table tr:hover {
  background: #fff1e6;
}

/* Responsive */
@media(max-width:768px) {
  .edge-heading {
    font-size: 1.7rem;
  }
}

/*section 9 live*/
.live-section {
  background: #ffffff;
}

/* Heading */
.live-heading {
  font-size: 2.3rem;
  font-weight: 700;
  color: #6b1201;
}

/* Intro */
.live-intro {
  max-width: 800px;
  margin: auto;
  text-align: center;
  color: #4b2e2e;
}

/* Table */
.live-table {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #fed7aa;
}

.live-table th {
  background: #6b1201;
  color: #fff;
  padding: 12px;
}

.live-table td {
  padding: 12px;
  border-bottom: 1px solid #f3d2b3;
  font-size: 0.95rem;
}

/* Hover */
.live-table tr:hover {
  background: #fff7ed;
}

/* Bottom */
.live-bottom p {
  color: #4b2e2e;
  margin-bottom: 15px;
}

/* Button */
.live-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #6b1201;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.live-btn:hover {
  background: #d97706;
}

/* Responsive */
@media(max-width:768px) {
  .live-heading {
    font-size: 1.7rem;
  }
}

/*section 10 tips*/
.tips-section {
  background: #fff7ed;
}

/* Heading */
.tips-heading {
  font-size: 2.4rem;
  font-weight: 700;
  color: #6b1201;
}

.tips-subtext {
  color: #4b2e2e;
}

/* Card */
.tips-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #fed7aa;
  padding: 25px 25px 25px 70px;
  border-radius: 14px;
  margin-bottom: 20px;
  transition: 0.3s;
}

.tips-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(107, 18, 1, 0.15);
}

/* Number */
.tips-number {
  position: absolute;
  left: 20px;
  top: 25px;
  background: #6b1201;
  color: #fff;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 50px;
}

/* Text */
.tips-card h4 {
  margin-bottom: 8px;
  color: #6b1201;
}

.tips-card p {
  font-size: 0.95rem;
  color: #4b2e2e;
}

/*section 11 app*/
.app-section {
  background: #ffffff;
}

/* Heading */
.app-heading {
  font-size: 2.3rem;
  font-weight: 700;
  color: #6b1201;
}

/* Intro */
.app-intro {
  text-align: center;
  color: #4b2e2e;
  max-width: 750px;
  margin: auto;
}

/* Warning */
.app-warning {
  background: #fff1e6;
  color: #6b1201;
  padding: 15px;
  border-left: 5px solid #6b1201;
  border-radius: 8px;
  font-weight: 500;
}

/* Table */
.app-table th {
  background: #6b1201;
  color: #fff;
}

.app-table td {
  padding: 12px;
  border-bottom: 1px solid #fed7aa;
}

.app-table tr:hover {
  background: #fff7ed;
}

/* Cards */
.app-card {
  background: #fff7ed;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #fed7aa;
}

.app-card h4 {
  color: #6b1201;
  margin-bottom: 10px;
}

.app-card ul {
  padding-left: 18px;
}

.app-card li {
  margin-bottom: 6px;
  color: #4b2e2e;
}

/* Button */
.app-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #6b1201;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.app-btn:hover {
  background: #d97706;
}

/* Responsive */
@media(max-width:768px) {
  .app-heading {
    font-size: 1.7rem;
  }
}

/*section 12 bonus card*/
.bonus-section {

  color: #3b2a2d;
  border-radius: 10px;
}

/* Heading */
.bonus-heading {
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(90deg, #7f1d1d, #c2412d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Paragraph */
.bonus-section p {
  color: #5c4448;
}

/* Image */
.bonus-img {
  max-width: 100%;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Card */
.bonus-card {
  background: #ffffff;
  border: 1px solid #f3d6da;
  padding: 22px;
  border-radius: 16px;
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(127, 29, 29, 0.15);
  border-color: #c2412d;
}

/* Card Heading */
.bonus-card h4 {
  color: #7f1d1d;
  margin-bottom: 10px;
  font-weight: 700;
}

/* Text */
.bonus-card p {
  color: #5c4448;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Button */
.bonus-btn {
  display: inline-block;
  padding: 14px 34px;
  background: linear-gradient(90deg, #c2412d, #f97316);
  color: #fff;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(194, 65, 45, 0.25);
  transition: 0.3s ease;
}

.bonus-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(194, 65, 45, 0.35);
}

/* Responsive */
@media(max-width:768px) {
  .bonus-heading {
    font-size: 1.7rem;
  }
}

/*section 13 pay*/
.pay-section {
  background: linear-gradient(135deg, #fff5f6, #ffecee);
}

/* Heading */
.pay-heading {
  font-size: 2.3rem;
  font-weight: 800;
  background: linear-gradient(90deg, #7f1d1d, #c2412d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Intro */
.pay-intro {
  text-align: center;
  color: #5c4448;
  max-width: 750px;
  margin: auto;
}

/* Card */
.pay-card {
  background: #ffffff;
  border: 1px solid #f3d6da;
  padding: 25px;
  border-radius: 16px;
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.pay-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(127, 29, 29, 0.15);
  border-color: #c2412d;
}

/* Card Text */
.pay-card p {
  color: #5c4448;
  font-size: 0.95rem;
}

/* Card Heading */
.pay-card h4 {
  color: #7f1d1d;
  margin-bottom: 10px;
  font-weight: 700;
}

/* Steps */
.pay-steps h6 {
  margin-top: 15px;
  color: #3b2a2d;
  font-weight: 700;
}

.pay-steps ul {
  padding-left: 18px;
}

.pay-steps li {
  margin-bottom: 6px;
  color: #5c4448;
}

/* Note */
.pay-note {
  background: #ffffff;
  border-left: 4px solid #c2412d;
  padding: 15px;
  border-radius: 10px;
  color: #5c4448;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

/* Responsive */
@media(max-width:768px) {
  .pay-heading {
    font-size: 1.7rem;
  }
}

/*section 14 secure*/
.secure-section {
  background: #ffffff;
  /* card-like section background */
}

/* Heading */
.secure-heading {
  font-size: 2.3rem;
  font-weight: 800;
  background: linear-gradient(90deg, #7f1d1d, #c2412d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.secure-subtext {
  color: #5c4448;
}

/* Card (NOW LIGHT MAROON BACKGROUND) */
.secure-card {
  background: linear-gradient(135deg, #fff5f6, #ffecee);
  border: 1px solid #f3d6da;
  padding: 25px 20px;
  border-radius: 16px;
  text-align: center;
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.secure-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(127, 29, 29, 0.12);
  border-color: #c2412d;
}

/* Icon */
.secure-icon {
  font-size: 34px;
  margin-bottom: 10px;
  color: #c2412d;
}

/* Title */
.secure-card h5 {
  color: #7f1d1d;
  margin-bottom: 8px;
  font-weight: 700;
}

/* Text */
.secure-card p {
  font-size: 0.9rem;
  color: #5c4448;
}

/* Responsive */
@media(max-width:768px) {
  .secure-heading {
    font-size: 1.7rem;
  }
}

/*section 15*/
.support-section {
  background: linear-gradient(135deg, #fff5f6, #ffecee);
}

/* Heading */
.support-heading {
  font-size: 2.3rem;
  font-weight: 800;
  background: linear-gradient(90deg, #7f1d1d, #c2412d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.support-subtext {
  color: #5c4448;
}

/* Cards */
.support-card {
  background: #ffffff;
  padding: 22px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid #f3d6da;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: 0.3s ease;
}

.support-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(127, 29, 29, 0.15);
  border-color: #c2412d;
}

/* Card Text */
.support-card h5 {
  color: #7f1d1d;
  margin-bottom: 8px;
  font-weight: 700;
}

.support-card p {
  font-size: 0.9rem;
  color: #5c4448;
}

/* Guide */
.support-guide {
  background: #ffffff;
  border-left: 4px solid #c2412d;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.support-guide h4 {
  color: #7f1d1d;
  margin-bottom: 10px;
}

.support-guide ul {
  padding-left: 18px;
}

.support-guide li {
  margin-bottom: 6px;
  color: #5c4448;
}

/* Button */
.support-btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(90deg, #c2412d, #f97316);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(194, 65, 45, 0.25);
  transition: 0.3s ease;
}

.support-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(194, 65, 45, 0.35);
}

/* Responsive */
@media(max-width:768px) {
  .support-heading {
    font-size: 1.7rem;
  }
}

/*section 16 review*/


/* Heading */
.review-heading {
  font-size: 2.3rem;
  font-weight: 800;
  background: linear-gradient(90deg, #7f1d1d, #c2412d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.review-subtext {
  color: #5c4448;
}

/* Card */
.review-card {
  background: #ffffff;
  border: 1px solid #f3d6da;
  padding: 22px;
  border-radius: 16px;
  transition: 0.3s ease;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(127, 29, 29, 0.15);
  border-color: #c2412d;
}


/* Stars */
.stars {
  font-size: 18px;
  margin-bottom: 6px;
  color: #f97316;
}

/* Title */
.review-card h5 {
  color: #7f1d1d;
  margin-bottom: 8px;
  font-weight: 700;
}

/* Text */
.review-card p {
  font-size: 0.95rem;
  color: #5c4448;
  line-height: 1.6;
}

/* Responsive */
@media(max-width:768px) {
  .review-heading {
    font-size: 1.7rem;
  }
}

/*section 17 faq*/
.faq-section {
  background: linear-gradient(135deg, #fff5f6, #ffecee);
  border-radius: 10px;
}

/* Heading */
.faq-heading {
  font-size: 2.3rem;
  font-weight: 800;
  background: linear-gradient(90deg, #7f1d1d, #c2412d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Accordion Item */
.accordion-item {
  border: none;
  margin-bottom: 12px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

/* Button */
.accordion-button {
  background: #ffffff;
  color: #3b2a2d;
  font-weight: 700;
  border: 1px solid #f3d6da;
  padding: 16px;
  transition: 0.3s ease;
}

/* Hover */
.accordion-button:hover {
  background: #fff5f6;
}

/* Active/Open state */
.accordion-button:not(.collapsed) {
  background: linear-gradient(90deg, #c2412d, #f97316);
  color: #ffffff;
  box-shadow: none;
}

/* Body */
.accordion-body {
  background: #ffffff;
  color: #5c4448;
  border-top: 1px solid #f3d6da;
  padding: 18px;
  line-height: 1.6;
}

/* Focus fix */
.accordion-button:focus {
  box-shadow: none;
  border-color: #c2412d;
}

/* Responsive */
@media(max-width:768px) {
  .faq-heading {
    font-size: 1.7rem;
  }
}

/*section 18 disclaimer*/


/* Box */
.disclaimer-box {
  background: #fff;
  border-left: 5px solid #f59e0b;
  /* warning orange */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

/* Heading */
.disclaimer-heading {
  color: #b45309;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Text */
.disclaimer-box p {
  color: #333;
  font-size: 0.95rem;
}

/* Link */
.disclaimer-box a {
  color: #7c3aed;
  font-weight: 600;
  text-decoration: none;
}

.disclaimer-box a:hover {
  text-decoration: underline;
}


/* Responsive */
@media(max-width:768px) {
  .disclaimer-heading {
    font-size: 1.2rem;
  }
}





/*footer*/
/* FOOTER BACKGROUND */
.footer-section {
  background: linear-gradient(135deg, #6b1201, #2b0a05);
  color: #fff;
}

/* LOGO */
.footer-logo {
  width: 140px;
}

/* TEXT */
.footer-text {
  font-size: 0.95rem;
  color: #ddd;
  line-height: 1.6;
}

/* HEADINGS */
.footer-heading {
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffd700;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.footer-links a {
  color: #eee;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ffd700;
  padding-left: 5px;
}


/* MOBILE */
@media(max-width:768px) {
  .footer-heading {
    margin-top: 15px;
  }
}


/*footer copiright*/
.below-footer {
  background: linear-gradient(135deg, #6b1201, #2b0a05);
  /* darker than footer */
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* TEXT */
.copyright-text {
  font-size: 15px;
  color: #ccc;
  margin: 0;
}

/* LINK */
.copyright-text a {
  color: #ffd700;
  /* yellow highlight */
  font-weight: 600;
  text-decoration: none;
}

.copyright-text a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .copyright-text {
    font-size: 0.8rem;
    line-height: 1.5;
  }
}

















/*-------------------reddy anna page second--------------------------------------------------------------------*/


/*section 1 reddy-one-*/



/* ===== HERO ===== */
.reddy-hero {
  text-align: center;
  margin-top: 120px;
}

.reddy-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #800020;
}

.reddy-hero p {
  font-size: 1.1rem;
  margin-top: 15px;
}

.reddy-cta {
  margin-top: 25px;
}

.reddy-btn {
  background: linear-gradient(90deg, #800020, #ff4d6d);
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  margin: 5px;
  display: inline-block;
}

/* ===== CARD SECTION ===== */
.reddy-card {
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(128, 0, 32, 0.25);
  overflow: hidden;
  margin-top: 50px;
}

.reddy-card-header {
  background: linear-gradient(90deg, #800020, #b03050);
  color: #fff;
  padding: 25px;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
}

.reddy-card-body {
  padding: 30px;
  line-height: 1.9;
}

/* ===== STATS ===== */
.reddy-stats {
  padding: 80px 0;
  text-align: center;
}

.reddy-stat-box {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(128, 0, 32, 0.15);
}

.reddy-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #800020;
}



/*section 2*/
.reddy-two-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #fdf2f4, #f7e3e8);
}

/* main card */
.reddy-two-card {
  position: relative;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 60px rgba(128, 0, 32, 0.2);
  overflow: hidden;
  display: flex;
}

/* left gradient strip */
.reddy-two-side-bar {
  width: 8px;
  background: linear-gradient(180deg, #800020, #ff4d6d);
}

/* inner content */
.reddy-two-inner {
  padding: 40px;
  width: 100%;
}

/* header */
.reddy-two-header {
  font-size: 1.8rem;
  font-weight: 700;
  color: #800020;
  text-align: left;
  margin-bottom: 10px;
}

/* divider */
.reddy-two-divider {
  height: 3px;
  width: 70px;
  background: linear-gradient(90deg, #800020, #ff4d6d);
  border-radius: 3px;
  margin-bottom: 25px;
}

/* content */
.reddy-two-body-content {
  color: #4a0d1a;
  font-size: 16px;
  line-height: 1.9;
}

.reddy-two-body-content p {
  margin-bottom: 20px;
}

/* highlight */
.reddy-two-highlight {
  color: #800020;
  font-weight: 700;
  background: rgba(128, 0, 32, 0.08);
  padding: 2px 6px;
  border-radius: 5px;
}

/* hover effect */
.reddy-two-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 70px rgba(128, 0, 32, 0.28);
  transition: 0.4s;
}

/* mobile */
@media (max-width: 768px) {
  .reddy-two-card {
    flex-direction: column;
  }

  .reddy-two-side-bar {
    width: 100%;
    height: 6px;
  }

  .reddy-two-inner {
    padding: 25px;
  }

  .reddy-two-header {
    font-size: 1.4rem;
  }
}

/*section 3*/

.reddy-three-section {
  padding: 70px 0;
}

.reddy-three-card {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 12px 40px rgba(128, 0, 32, 0.18);
  transition: 0.3s ease;
}

.reddy-three-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 50px rgba(128, 0, 32, 0.28);
}

.reddy-three-header {
  background: linear-gradient(90deg, #800020, #b03050);
  color: #fff;
  padding: 30px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
}

.reddy-three-content {
  padding: 35px;
  color: #4a0d1a;
  font-size: 15.8px;
  line-height: 1.9;
}

.reddy-three-content p {
  margin-bottom: 18px;
}

.reddy-three-highlight {
  color: #800020;
  font-weight: 700;
}

.reddy-three-accent-line {
  width: 70px;
  height: 3px;
  background-color: #800020;
  margin: 20px auto 25px;
  border-radius: 2px;
}

.reddy-three-quote {
  background-color: #f9e9ed;
  border-left: 5px solid #800020;
  padding: 15px 20px;
  border-radius: 10px;
  font-style: italic;
  color: #5a1a28;
  margin: 20px 0;
}

@media (max-width: 768px) {
  .reddy-three-header {
    font-size: 1.3rem;
    padding: 20px;
  }

  .reddy-three-content {
    padding: 25px;
  }
}


/*section 4*/

.reddy-four-section {
  padding: 70px 0;
}

.reddy-four-card {
  border: none;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 15px 45px rgba(128, 0, 32, 0.2);
  overflow: hidden;
}

.reddy-four-header {
  background: linear-gradient(90deg, #800020, #b03050);
  color: #fff;
  padding: 28px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
}

.reddy-four-content {
  padding: 35px;
  color: #4a0d1a;
  font-size: 15.8px;
  line-height: 1.9;
}

.reddy-four-item {
  background: #f9e9ed;
  border-left: 5px solid #800020;
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 18px;
  transition: 0.3s;
}

.reddy-four-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(128, 0, 32, 0.15);
}

.reddy-four-title {
  font-weight: 700;
  color: #800020;
  margin-bottom: 6px;
}

.reddy-four-security {
  background: #fff3f6;
  border-radius: 12px;
  padding: 20px;
  margin-top: 25px;
  border: 1px solid #f0cfd6;
}

.reddy-four-security span {
  display: block;
  margin-bottom: 8px;
}

.reddy-four-footer {
  margin-top: 30px;
  font-size: 14px;
  color: #5a1a28;
  background: #fdf0f3;
  padding: 20px;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .reddy-four-content {
    padding: 25px;
  }

  .reddy-four-header {
    font-size: 1.3rem;
  }
}

/*section 5*/

.reddy-four-section {
  padding: 80px 0;
}

.reddy-four-main {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(128, 0, 32, 0.18);
  overflow: hidden;
}

.reddy-four-top {
  background: linear-gradient(120deg, #800020, #b03050);
  color: #fff;
  padding: 35px;
  text-align: center;
}

.reddy-four-top h2 {
  font-weight: 600;
  margin-bottom: 10px;
}

.reddy-four-content {
  padding: 40px;
  color: #4a0d1a;
  line-height: 1.9;
  font-size: 15.8px;
}

.reddy-four-window {
  background: #fff5f7;
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 20px;
  border: 1px solid #f1ccd4;
  transition: 0.3s;
}

.reddy-four-window:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(128, 0, 32, 0.15);
}

.reddy-four-window-title {
  font-weight: 700;
  color: #800020;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.reddy-four-timeline {
  border-left: 3px solid #800020;
  padding-left: 20px;
  margin-top: 30px;
}

.reddy-four-step {
  position: relative;
  margin-bottom: 25px;
}

.reddy-four-step::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 5px;
  width: 14px;
  height: 14px;
  background: #800020;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .reddy-four-content {
    padding: 25px;
  }
}

/*section 6*/

.reddy-six-section {
  padding: 90px 0;
}

/* title */
.reddy-six-title {
  font-weight: 800;
  color: #800020;
  font-size: 2rem;
}

/* boxes */
.reddy-six-box {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  padding: 25px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(128, 0, 32, 0.15);
  height: 100%;
  transition: 0.3s;
}

.reddy-six-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(128, 0, 32, 0.25);
}

/* headings */
.reddy-six-box h5 {
  color: #800020;
  font-weight: 700;
  margin-bottom: 10px;
}

/* text */
.reddy-six-box p {
  font-size: 15px;
  line-height: 1.8;
  color: #4a0d1a;
}

/* subtitle */
.reddy-six-subtitle {
  color: #800020;
  font-weight: 700;
}

/* table */
.reddy-six-table {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.reddy-six-table thead {
  background: linear-gradient(90deg, #800020, #b03050);
  color: #fff;
}

.reddy-six-table th,
.reddy-six-table td {
  padding: 14px;
  border: none;
}

.reddy-six-table tbody tr {
  border-bottom: 1px solid #f0d3da;
}

.reddy-six-table tbody tr:hover {
  background: #fdf0f3;
}

/* responsive */
@media (max-width: 768px) {
  .reddy-six-title {
    font-size: 1.5rem;
  }
}

/*section 7*/

.reddy-seven-section {
  padding: 90px 0;
}

/* title */
.reddy-seven-title {
  font-size: 2rem;
  font-weight: 800;
  color: #800020;
}

/* blocks */
.reddy-seven-block {
  margin-bottom: 60px;
}

/* images */
.reddy-seven-img {
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(128, 0, 32, 0.2);
  transition: 0.3s;
}

.reddy-seven-img:hover {
  transform: scale(1.03);
}

/* text */
.reddy-seven-block h4 {
  color: #800020;
  font-weight: 700;
  margin-bottom: 15px;
}

.reddy-seven-block p {
  color: #4a0d1a;
  font-size: 15.5px;
  line-height: 1.85;
}

/* mobile */
@media (max-width: 768px) {
  .reddy-seven-title {
    font-size: 1.5rem;
  }

  .reddy-seven-block {
    text-align: center;
  }

  .reddy-seven-block h4 {
    margin-top: 15px;
  }
}

/*section 8*/
.reddy-eight-section {
  padding: 90px 0;
}

/* title */
.reddy-eight-title {
  font-size: 2rem;
  font-weight: 800;
  color: #800020;
}

/* card */
.reddy-eight-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 30px 25px 25px 25px;
  box-shadow: 0 10px 30px rgba(128, 0, 32, 0.15);
  height: 100%;
  transition: 0.3s;
}

.reddy-eight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(128, 0, 32, 0.25);
}

/* number badge */
.reddy-eight-number {
  position: absolute;
  top: -15px;
  left: 20px;
  background: linear-gradient(90deg, #800020, #ff4d6d);
  color: #fff;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 14px;
}

/* headings */
.reddy-eight-card h5 {
  margin-top: 10px;
  color: #800020;
  font-weight: 700;
}

/* text */
.reddy-eight-card p {
  font-size: 15.5px;
  line-height: 1.85;
  color: #4a0d1a;
  margin-top: 10px;
}

/* mobile */
@media (max-width: 768px) {
  .reddy-eight-title {
    font-size: 1.5rem;
  }
}

/*section 9*/
.reddy-nine-section {
  padding: 100px 0;
}

/* title */
.reddy-nine-title {
  font-size: 2rem;
  font-weight: 800;
  color: #800020;
}

/* timeline wrapper */
.reddy-nine-timeline {
  position: relative;
  max-width: 800px;
  margin: auto;
}

/* vertical line */
.reddy-nine-timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  width: 3px;
  height: 100%;
  background: #800020;
  opacity: 0.3;
}

/* step */
.reddy-nine-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}

/* number */
.reddy-nine-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(90deg, #800020, #ff4d6d);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  font-weight: 700;
  font-size: 18px;
  margin-right: 20px;
  z-index: 1;
}

/* content */
.reddy-nine-content {
  background: #fff;
  padding: 20px 25px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(128, 0, 32, 0.15);
  width: 100%;
  transition: 0.3s;
}

.reddy-nine-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 35px rgba(128, 0, 32, 0.25);
}

/* heading */
.reddy-nine-content h5 {
  color: #800020;
  font-weight: 700;
  margin-bottom: 8px;
}

/* text */
.reddy-nine-content p {
  color: #4a0d1a;
  font-size: 15.5px;
  line-height: 1.8;
}

/* button */
.reddy-nine-btn {
  background: linear-gradient(90deg, #800020, #ff4d6d);
  color: #fff;
  padding: 14px 30px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.reddy-nine-btn:hover {
  transform: scale(1.05);
  color: #fff;
}

/* mobile */
@media (max-width: 768px) {

  .reddy-nine-timeline::before {
    left: 20px;
  }

  .reddy-nine-number {
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 14px;
  }

  .reddy-nine-content {
    padding: 15px;
  }

  .reddy-nine-title {
    font-size: 1.5rem;
  }
}

/*section 10*/
.reddy-ten-section {
  padding: 50px 0;
}

/* content */
.reddy-ten-content {
  padding-right: 25px;
}

/* title */
.reddy-ten-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: #800020;
  margin-bottom: 20px;
}

/* text */
.reddy-ten-content p {
  font-size: 15.5px;
  color: #4a0d1a;
  line-height: 1.9;
  margin-bottom: 15px;
}

/* highlight box */
.reddy-ten-highlight-box {
  background: linear-gradient(135deg, rgba(128, 0, 32, 0.08), rgba(255, 77, 109, 0.08));
  border-left: 5px solid #800020;
  padding: 22px;
  border-radius: 12px;
  margin: 25px 0;
}

/* button */
.reddy-ten-btn {
  display: inline-block;
  background: linear-gradient(90deg, #800020, #ff4d6d);
  color: #fff;
  padding: 15px 32px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.reddy-ten-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(128, 0, 32, 0.3);
  color: #fff;
}

/* image */
.reddy-ten-image-box {
  position: relative;
}

.reddy-ten-image-box img {
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(128, 0, 32, 0.25);
  transition: 0.4s ease;
}

.reddy-ten-image-box:hover img {
  transform: scale(1.05);
}

/* optional glow */
.reddy-ten-image-box::after {
  content: '';
  position: absolute;
  top: 10%;
  left: 10%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(128, 0, 32, 0.15), transparent);
  z-index: -1;
}

/* mobile */
@media (max-width: 768px) {
  .reddy-ten-title {
    font-size: 1.5rem;
  }

  .reddy-ten-content {
    padding-right: 0;
    text-align: center;
    margin-bottom: 30px;
  }
}

/*section 11*/


.reddy-eleven-section {
  padding: 100px 0;
}

/* title */
.reddy-eleven-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #800020;
}

.reddy-eleven-subtitle {
  max-width: 700px;
  margin: auto;
  color: #4a0d1a;
  font-size: 15.5px;
  margin-top: 10px;
}

/* card */
.reddy-eleven-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 15px 40px rgba(128, 0, 32, 0.15);
  height: 100%;
  transition: 0.3s;
  position: relative;
}

/* hover */
.reddy-eleven-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(128, 0, 32, 0.25);
}

/* rating */
.reddy-eleven-rating {
  color: #ffb400;
  font-size: 18px;
  margin-bottom: 10px;
}

/* name */
.reddy-eleven-card h6 {
  color: #800020;
  font-weight: 700;
  margin-bottom: 10px;
}

/* text */
.reddy-eleven-card p {
  font-size: 15.5px;
  line-height: 1.85;
  color: #4a0d1a;
}

/* full width last card */
.reddy-eleven-full {
  padding: 35px;
}

/* mobile */
@media (max-width: 768px) {
  .reddy-eleven-title {
    font-size: 1.6rem;
  }

  .reddy-eleven-card {
    text-align: center;
  }
}


/*section 12*/



.reddy-twelve-section {
  padding: 50px 0;
}

.reddy-twelve-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: #800020;
}

/* card style accordion */
.reddy-twelve-item {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: 0 12px 35px rgba(128, 0, 32, 0.12);
  transition: 0.3s;
}

.reddy-twelve-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(128, 0, 32, 0.2);
}

/* question */
.reddy-twelve-accordion .accordion-button {
  background: #fff;
  color: #800020;
  font-weight: 700;
  padding: 20px;
  font-size: 15.8px;
  border: none;
}

/* active question */
.reddy-twelve-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(90deg, #800020, #ff4d6d);
  color: #fff;
}

/* answer */
.reddy-twelve-accordion .accordion-body {
  background: #fff;
  color: #4a0d1a;
  padding: 22px;
  line-height: 1.9;
  font-size: 15.5px;
}

/* smooth animation */
.accordion-collapse {
  transition: all 0.4s ease;
}

/* mobile */
@media (max-width: 768px) {
  .reddy-twelve-title {
    font-size: 1.6rem;
  }
}










/*--------------reddy-id section------------------*/

/*section 1*/

.reddy-id-one-section {
  padding: 50px 0;
  margin-top: 50px;
}

/* main card */
.reddy-id-one-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(128, 0, 32, 0.15);
  transition: 0.3s;
}

.reddy-id-one-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(128, 0, 32, 0.25);
}

/* header */
.reddy-id-one-header {
  background: linear-gradient(90deg, #800020, #b03050);
  color: #fff;
  padding: 25px;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}

/* content */
.reddy-id-one-content {
  padding: 35px;
  color: #4a0d1a;
  font-size: 15.8px;
  line-height: 1.9;
}

.reddy-id-one-content p {
  margin-bottom: 18px;
}

/* highlight */
.reddy-id-one-highlight {
  color: #800020;
  font-weight: 700;
}

/* CTA button */
.reddy-id-one-btn {
  display: inline-block;
  background: linear-gradient(90deg, #800020, #ff4d6d);
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.reddy-id-one-btn:hover {
  transform: scale(1.05);
  color: #fff;
}

/* footer */
.reddy-id-one-footer {
  text-align: center;
  margin-top: 20px;
}

/* stats */
.reddy-id-one-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.reddy-id-one-stat-box {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(128, 0, 32, 0.15);
  transition: 0.3s;
}

.reddy-id-one-stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(128, 0, 32, 0.25);
}

.reddy-id-one-stat-box h3 {
  color: #800020;
  font-size: 1.8rem;
  font-weight: 800;
}

.reddy-id-one-stat-box p {
  margin: 0;
  color: #4a0d1a;
  font-size: 14px;
}

/* mobile */
@media (max-width: 768px) {
  .reddy-id-one-content {
    padding: 25px;
    text-align: center;
  }

  .reddy-id-one-header {
    font-size: 1.2rem;
  }
}

/*section 2*/
.reddy-id-two-section {
  padding: 50px 0;
}

/* main card */
.reddy-id-two-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(128, 0, 32, 0.15);
  transition: 0.3s;
}

.reddy-id-two-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(128, 0, 32, 0.25);
}

/* header */
.reddy-id-two-header {
  background: linear-gradient(90deg, #800020, #b03050);
  color: #fff;
  padding: 28px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
}

/* content */
.reddy-id-two-content {
  padding: 35px;
  color: #4a0d1a;
  font-size: 15.8px;
  line-height: 1.9;
}

.reddy-id-two-content p {
  margin-bottom: 18px;
}

/* subtitle */
.reddy-id-two-subtitle {
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 1.2rem;
  color: #800020;
}

/* features grid */
.reddy-id-two-features {
  margin-top: 20px;
  display: grid;
  gap: 20px;
}

/* feature card */
.reddy-id-two-feature {
  background: #fff5f7;
  border-left: 5px solid #800020;
  padding: 18px 20px;
  border-radius: 10px;
  transition: 0.3s;
}

.reddy-id-two-feature:hover {
  background: #ffe9ee;
  transform: translateX(5px);
}

/* feature title */
.reddy-id-two-feature h5 {
  margin-bottom: 6px;
  color: #800020;
  font-weight: 700;
}

/* mobile */
@media (max-width: 768px) {
  .reddy-id-two-content {
    padding: 25px;
    text-align: center;
  }

  .reddy-id-two-header {
    font-size: 1.3rem;
  }
}

/*section 3*/

.reddy-id-three-section {
  padding: 50px 0;
}

/* title */
.reddy-id-three-title {
  font-size: 2rem;
  font-weight: 800;
  color: #800020;
  margin-bottom: 50px;
  position: relative;
}

.reddy-id-three-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #800020;
  display: block;
  margin: 12px auto 0;
}

/* wrapper */
.reddy-id-three-wrapper {
  position: relative;
  margin-left: 20px;
}

/* vertical line */
.reddy-id-three-wrapper::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  width: 3px;
  height: 100%;
  background: #80002020;
}

/* step */
.reddy-id-three-step {
  display: flex;
  gap: 25px;
  margin-bottom: 40px;
  position: relative;
}

/* step number */
.reddy-id-three-number {
  min-width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #800020, #b03050);
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(128, 0, 32, 0.3);
}

/* content */
.reddy-id-three-content {
  background: #ffffff;
  padding: 22px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(128, 0, 32, 0.12);
  transition: 0.3s;
}

.reddy-id-three-content:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(128, 0, 32, 0.2);
}

/* heading */
.reddy-id-three-content h5 {
  color: #800020;
  font-weight: 700;
  margin-bottom: 10px;
}

/* text */
.reddy-id-three-content p {
  color: #4a0d1a;
  font-size: 15.5px;
  line-height: 1.8;
  margin-bottom: 10px;
}

/* button */
.reddy-id-three-btn {
  background: linear-gradient(90deg, #800020, #ff4d6d);
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.reddy-id-three-btn:hover {
  transform: scale(1.05);
  color: #fff;
}

/* footer */
.reddy-id-three-footer {
  margin-top: 40px;
}

/* mobile */
@media (max-width: 768px) {
  .reddy-id-three-step {
    flex-direction: column;
  }

  .reddy-id-three-wrapper::before {
    display: none;
  }

  .reddy-id-three-number {
    margin-bottom: 10px;
  }

  .reddy-id-three-title {
    font-size: 1.5rem;
  }
}

/*section 4*/
.reddy-id-four-section {
  padding: 50px 0;
}

/* title */
.reddy-id-four-title {
  font-size: 2rem;
  font-weight: 800;
  color: #800020;
  margin-bottom: 50px;
}

/* card */
.reddy-id-four-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(128, 0, 32, 0.15);
  transition: 0.3s;
  height: 100%;
}

.reddy-id-four-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(128, 0, 32, 0.25);
}

/* image */
.reddy-id-four-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* body */
.reddy-id-four-body {
  padding: 22px;
}

/* heading */
.reddy-id-four-body h5 {
  color: #800020;
  font-weight: 700;
  margin-bottom: 10px;
}

/* text */
.reddy-id-four-body p {
  font-size: 15.3px;
  color: #4a0d1a;
  line-height: 1.8;
  margin-bottom: 10px;
}

/* button */
.reddy-id-four-btn {
  display: inline-block;
  margin-top: 10px;
  background: linear-gradient(90deg, #800020, #ff4d6d);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.reddy-id-four-btn:hover {
  transform: scale(1.05);
  color: #fff;
}

/* mobile */
@media (max-width: 768px) {
  .reddy-id-four-title {
    font-size: 1.5rem;
  }

  .reddy-id-four-img {
    height: 180px;
  }
}

/*section 5*/
.reddy-id-five-section {
  padding: 50px 0;
}

/* title */
.reddy-id-five-title {
  font-size: 2rem;
  font-weight: 800;
  color: #800020;
  margin-bottom: 45px;
  position: relative;
}

.reddy-id-five-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #800020;
  display: block;
  margin: 12px auto 0;
}

/* card */
.reddy-id-five-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 35px;
  box-shadow: 0 12px 35px rgba(128, 0, 32, 0.12);
  transition: 0.3s;
}

.reddy-id-five-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(128, 0, 32, 0.2);
}

/* content */
.reddy-id-five-content {
  color: #4a0d1a;
  font-size: 15.8px;
  line-height: 1.9;
}

.reddy-id-five-content p {
  margin-bottom: 15px;
}

/* normal blocks */
.reddy-id-five-block {
  margin-top: 25px;
}

.reddy-id-five-block h4 {
  color: #800020;
  font-weight: 700;
  margin-bottom: 10px;
}

/* highlight block (important section) */
.reddy-id-five-highlight {
  margin-top: 30px;
  padding: 25px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff0f3, #ffe3e8);
  border-left: 5px solid #800020;
  box-shadow: 0 10px 30px rgba(128, 0, 32, 0.1);
}

.reddy-id-five-highlight h4 {
  color: #800020;
  font-weight: 800;
  margin-bottom: 10px;
}

/* mobile */
@media (max-width: 768px) {
  .reddy-id-five-title {
    font-size: 1.5rem;
  }

  .reddy-id-five-card {
    padding: 25px;
  }

  .reddy-id-five-content {
    text-align: center;
  }
}

/*section 6*/
.reddy-id-six-section {
  padding: 50px 0;
}

/* title */
.reddy-id-six-title {
  font-size: 2rem;
  font-weight: 800;
  color: #800020;
  margin-bottom: 50px;
  position: relative;
}

.reddy-id-six-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #800020;
  display: block;
  margin: 12px auto 0;
}

/* card */
.reddy-id-six-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 12px 35px rgba(128, 0, 32, 0.12);
  transition: 0.3s;
  height: 100%;
  position: relative;
}

.reddy-id-six-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(128, 0, 32, 0.2);
}

/* highlight (withdrawal card) */
.reddy-id-six-highlight {
  background: linear-gradient(135deg, #fff0f3, #ffe3e8);
  border: 1px solid #f2c5cf;
}

/* icon */
.reddy-id-six-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

/* heading */
.reddy-id-six-card h4 {
  color: #800020;
  font-weight: 700;
  margin-bottom: 12px;
}

/* text */
.reddy-id-six-card p {
  color: #4a0d1a;
  font-size: 15.6px;
  line-height: 1.85;
  margin-bottom: 12px;
}

/* mobile */
@media (max-width: 768px) {
  .reddy-id-six-title {
    font-size: 1.5rem;
  }

  .reddy-id-six-card {
    padding: 22px;
    text-align: center;
  }
}

/*section 7*/

.reddy-id-seven-section {
  padding: 50px 0;
}

/* title */
.reddy-id-seven-title {
  font-size: 2rem;
  font-weight: 800;
  color: #800020;
  margin-bottom: 50px;
  position: relative;
}

.reddy-id-seven-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #800020;
  display: block;
  margin: 12px auto 0;
}

/* image */
.reddy-id-seven-image img {
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(128, 0, 32, 0.2);
  transition: 0.3s;
}

.reddy-id-seven-image img:hover {
  transform: scale(1.03);
}

/* intro */
.reddy-id-seven-intro {
  font-size: 16px;
  font-weight: 600;
  color: #4a0d1a;
  margin-bottom: 25px;
}

/* list */
.reddy-id-seven-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* item */
.reddy-id-seven-item {
  display: flex;
  gap: 15px;
  background: #ffffff;
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(128, 0, 32, 0.12);
  transition: 0.3s;
}

.reddy-id-seven-item:hover {
  transform: translateX(6px);
  background: #fff0f3;
}

/* icon */
.reddy-id-seven-icon {
  font-size: 22px;
  min-width: 35px;
}

/* text */
.reddy-id-seven-item div {
  font-size: 15.5px;
  color: #4a0d1a;
  line-height: 1.8;
}

/* mobile */
@media (max-width: 768px) {
  .reddy-id-seven-title {
    font-size: 1.5rem;
  }

  .reddy-id-seven-intro {
    text-align: center;
  }

  .reddy-id-seven-item {
    flex-direction: column;
    text-align: center;
  }
}

/*section 8*/
.reddy-id-eight-section {
  padding: 50px 0;
}

/* title */
.reddy-id-eight-title {
  font-size: 2rem;
  font-weight: 800;
  color: #800020;
  margin-bottom: 50px;
  position: relative;
}

.reddy-id-eight-title::after {
  content: "";
  width: 70px;
  height: 3px;
  background: #800020;
  display: block;
  margin: 12px auto 0;
}

/* card */
.reddy-id-eight-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 12px 35px rgba(128, 0, 32, 0.15);
  transition: 0.3s;
  height: 100%;
  position: relative;
}

.reddy-id-eight-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 50px rgba(128, 0, 32, 0.25);
}

/* wide card */
.reddy-id-eight-wide {
  padding: 35px;
}

/* stars */
.reddy-id-eight-stars {
  font-size: 18px;
  margin-bottom: 10px;
}

/* heading */
.reddy-id-eight-card h6 {
  font-weight: 700;
  color: #800020;
  margin-bottom: 12px;
}

/* text */
.reddy-id-eight-card p {
  color: #4a0d1a;
  font-size: 15.6px;
  line-height: 1.85;
}

/* quote effect */
.reddy-id-eight-card::before {
  content: "“";
  font-size: 60px;
  color: rgba(128, 0, 32, 0.1);
  position: absolute;
  top: 10px;
  left: 15px;
}

/* mobile */
@media (max-width: 768px) {
  .reddy-id-eight-title {
    font-size: 1.5rem;
  }

  .reddy-id-eight-card {
    text-align: center;
    padding: 22px;
  }
}

/*section 9*/
.reddy-id-nine-section {
  padding: 50px 0;
}

/* title */
.reddy-id-nine-title {
  font-size: 2rem;
  font-weight: 800;
  color: #800020;
  margin-bottom: 50px;
}

/* accordion item */
.reddy-id-nine-accordion .accordion-item {
  border: none;
  margin-bottom: 12px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(128, 0, 32, 0.12);
}

/* button */
.reddy-id-nine-accordion .accordion-button {
  background: #ffffff;
  color: #800020;
  font-weight: 600;
  font-size: 15.5px;
  padding: 18px 20px;
}

/* active */
.reddy-id-nine-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(90deg, #800020, #a8324a);
  color: #fff;
}

/* remove default arrow */
.reddy-id-nine-accordion .accordion-button::after {
  filter: invert(20%);
}

/* body */
.reddy-id-nine-accordion .accordion-body {
  background: #fff;
  color: #4a0d1a;
  font-size: 15.5px;
  line-height: 1.8;
  padding: 20px;
}

/* hover */
.reddy-id-nine-accordion .accordion-button:hover {
  background: #fff0f3;
}

/* mobile */
@media (max-width: 768px) {
  .reddy-id-nine-title {
    font-size: 1.5rem;
    text-align: center;
  }
}

/*section 10*/
.reddy-id-ten-section {
  padding: 60px 0;
  font-family: 'Segoe UI', sans-serif;
}

/* Author Card */
.reddy-author-card {
  background: #ffffff;
  border-left: 5px solid #800000;
  border-radius: 12px;
  padding: 25px 20px;
  max-width: 750px;
  box-shadow: 0 8px 20px rgba(128, 0, 0, 0.08);
  color: #3b0a0a;
  line-height: 1.6;
}

.reddy-author-card strong {
  color: #800000;
  font-size: 1.2rem;
}

.reddy-author-card small {
  display: block;
  margin-top: 10px;
  color: #777;
}

/* Badges */
.reddy-badges {
  margin-top: 25px;
}

.badge-pill {
  background: linear-gradient(135deg, #800000, #a52a2a);
  color: #fff;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(128, 0, 0, 0.15);
}

/* Hover effect */
.badge-pill:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #a52a2a, #800000);
}

/*-----------------login section ---------------------------*/


/* section 1*/


.reddy-login-one-card {
  border: none;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 15px 45px rgba(128, 0, 32, 0.15);
  transition: all 0.3s ease;
}

.reddy-login-one-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(128, 0, 32, 0.25);
}

.reddy-login-one-header {
  padding: 30px;
  background: linear-gradient(120deg, #800020, #b03050);
  color: #fff;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.4;
}

.reddy-login-one-body {
  padding: 40px;
  color: #4a0d1a;
  font-size: 16px;
  line-height: 1.9;
  text-align: center;
}

.reddy-login-one-body p {
  margin-bottom: 18px;
}

.reddy-login-one-time {
  font-size: 2.2rem;
  font-weight: 800;
  color: #800020;
  margin-bottom: 15px;
}

.reddy-login-one-icon {
  font-size: 40px;
  color: #800020;
  margin-bottom: 15px;
}

.reddy-login-one-btn-wrap {
  margin-top: 25px;
}

.reddy-login-one-btn {
  background: linear-gradient(90deg, #800020, #c94f6d);
  color: #fff;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: inline-block;
  transition: all 0.3s ease;
}

.reddy-login-one-btn:hover {
  background: linear-gradient(90deg, #c94f6d, #800020);
  transform: scale(1.05);
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .reddy-login-one-body {
    padding: 25px;
  }

  .reddy-login-one-header {
    font-size: 1.3rem;
  }

  .reddy-login-one-time {
    font-size: 1.6rem;
  }
}

/* section 2*/



.reddy-login-two-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 15px 50px rgba(128, 0, 32, 0.15);
  overflow: hidden;
}

.reddy-login-two-top {
  background: linear-gradient(90deg, #800020, #b03050);
  color: #fff;
  padding: 30px;
  text-align: center;
}

.reddy-login-two-top h2 {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
}

.reddy-login-two-content {
  padding: 40px;
  color: #4a0d1a;
  font-size: 15.8px;
  line-height: 1.9;
}

.reddy-login-two-highlight {
  color: #800020;
  font-weight: 700;
}

.reddy-login-two-steps {
  margin-top: 30px;
}

.reddy-login-two-step {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.reddy-login-two-step-number {
  min-width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #800020, #c94f6d);
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.reddy-login-two-step-content h5 {
  margin-bottom: 8px;
  font-weight: 700;
  color: #800020;
}

.reddy-login-two-btn-wrap {
  text-align: center;
  margin-top: 30px;
}

.reddy-login-two-btn {
  background: linear-gradient(90deg, #800020, #c94f6d);
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.reddy-login-two-btn:hover {
  background: linear-gradient(90deg, #c94f6d, #800020);
  transform: scale(1.05);
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .reddy-login-two-content {
    padding: 25px;
  }

  .reddy-login-two-step {
    flex-direction: column;
    gap: 10px;
  }
}

/* section 3*/

.reddy-login-three-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(128, 0, 32, 0.15);
  transition: 0.3s;
}

.reddy-login-three-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(128, 0, 32, 0.25);
}

.reddy-login-three-header {
  background: linear-gradient(90deg, #800020, #b03050);
  color: #fff;
  padding: 28px;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
}

.reddy-login-three-body {
  padding: 40px;
  color: #4a0d1a;
  font-size: 15.8px;
  line-height: 1.9;
}

.reddy-login-three-subtitle {
  color: #800020;
  font-weight: 700;
  margin-top: 25px;
  margin-bottom: 10px;
}

.reddy-login-three-table-wrap {
  margin: 30px 0;
}

.reddy-login-three-table {
  border-radius: 12px;
  overflow: hidden;
}

.reddy-login-three-table thead {
  background: #800020;
  color: #fff;
}

.reddy-login-three-table th,
.reddy-login-three-table td {
  padding: 14px;
  text-align: center;
  vertical-align: middle;
}

.reddy-login-three-table tbody tr:nth-child(even) {
  background: #fff3f6;
}

.reddy-login-three-table tbody tr:hover {
  background: #ffe3ea;
}

/* Responsive */
@media (max-width: 768px) {
  .reddy-login-three-body {
    padding: 25px;
  }

  .reddy-login-three-header {
    font-size: 1.3rem;
  }

  .reddy-login-three-table th,
  .reddy-login-three-table td {
    font-size: 13px;
    padding: 10px;
  }
}

/* section 4*/



.reddy-login-four-header-box h2 {
  color: #800020;
  font-weight: 700;
  margin-bottom: 10px;
}

.reddy-login-four-line {
  width: 70px;
  height: 4px;
  background: #800020;
  margin: 0 auto 40px;
  border-radius: 10px;
}

/* Problem Cards */
.reddy-login-four-problem {
  background: #ffffff;
  padding: 25px;
  border-radius: 15px;
  border-left: 5px solid #800020;
  box-shadow: 0 8px 25px rgba(128, 0, 32, 0.12);
  transition: all 0.3s ease;
  height: 100%;
}

.reddy-login-four-problem:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(128, 0, 32, 0.25);
}

.reddy-login-four-problem h5 {
  color: #800020;
  font-weight: 600;
  margin-bottom: 15px;
}

.reddy-login-four-problem p {
  font-size: 14.8px;
  line-height: 1.7;
  color: #4a0d1a;
}

/* Mobile */
@media (max-width: 768px) {
  .reddy-login-four-section {
    padding: 50px 15px;
  }
}

/* section 5*/



/* Content */
.reddy-login-five-content h2 {
  color: #800020;
  font-weight: 700;
  margin-bottom: 20px;
}

.reddy-login-five-content p {
  color: #4a0d1a;
  font-size: 15px;
  line-height: 1.8;
}

/* Content blocks */
.reddy-login-five-block {
  margin-top: 25px;
  padding: 20px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(128, 0, 32, 0.12);
  border-left: 4px solid #800020;
  transition: 0.3s;
}

.reddy-login-five-block:hover {
  transform: translateX(6px);
  box-shadow: 0 10px 30px rgba(128, 0, 32, 0.25);
}

.reddy-login-five-block h5 {
  color: #800020;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Right side visual cards */
.reddy-login-five-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.reddy-login-five-card {
  background: linear-gradient(135deg, #800020, #b03050);
  color: #fff;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(128, 0, 32, 0.25);
  transition: 0.3s;
}

.reddy-login-five-card:hover {
  transform: scale(1.05);
}

.reddy-login-five-card h4 {
  margin-bottom: 10px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .reddy-login-five-section {
    padding: 50px 15px;
  }

  .reddy-login-five-visual {
    margin-top: 30px;
  }
}

/* section 6*/
.reddy-login-six-section {
  padding: 90px 0;
}

/* Main container */
.reddy-login-six-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(128, 0, 32, 0.15);
  position: relative;
  overflow: hidden;
}

/* soft glow */


/* Content */
.reddy-login-six-content h2 {
  color: #800020;
  font-weight: 700;
  margin-bottom: 18px;
  font-size: 26px;
}

.reddy-login-six-content p {
  color: #4a0d1a;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 14px;
}

/* Button */
.reddy-login-six-btn {
  display: inline-block;
  margin-top: 10px;
  background: linear-gradient(90deg, #800020, #b03050);
  color: #fff;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(128, 0, 32, 0.25);
}

.reddy-login-six-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(90deg, #b03050, #800020);
}

/* Steps container */
.reddy-login-six-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Step box */
.reddy-login-six-step {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff5f6;
  padding: 14px 16px;
  border-radius: 12px;
  border-left: 4px solid #800020;
  transition: 0.25s ease;
}

.reddy-login-six-step:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 25px rgba(128, 0, 32, 0.15);
}

/* step number */
.reddy-login-six-step span {
  background: #800020;
  color: #fff;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 600;
}

/* step text */
.reddy-login-six-step p {
  margin: 0;
  font-size: 14.5px;
  color: #4a0d1a;
}

/* Responsive */
@media (max-width: 768px) {

  .reddy-login-six-box {
    padding: 25px;
  }

  .reddy-login-six-content h2 {
    font-size: 22px;
  }

  .reddy-login-six-steps {
    margin-top: 20px;
  }
}

/* section 7*/
.reddy-login-seven-section {
  padding: 80px 0;
}

/* Header */
.reddy-login-seven-header h2 {
  color: #800020;
  font-weight: 700;
  margin-bottom: 10px;
}

.reddy-login-seven-line {
  width: 80px;
  height: 4px;
  background: #800020;
  margin: 0 auto 40px;
  border-radius: 10px;
}

/* Card */
.reddy-login-seven-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px;
  height: 100%;
  border-left: 5px solid #800020;
  box-shadow: 0 10px 25px rgba(128, 0, 32, 0.12);
  transition: 0.3s ease;
}

.reddy-login-seven-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(128, 0, 32, 0.25);
}

/* Title */
.reddy-login-seven-card h5 {
  color: #800020;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Text */
.reddy-login-seven-card p {
  color: #4a0d1a;
  font-size: 14.8px;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
  .reddy-login-seven-section {
    padding: 50px 15px;
  }
}

/* section 8*/



.reddy-login-eight-title {
  background: linear-gradient(135deg, #800020, #a52a2a);
  color: #fff;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(128, 0, 32, 0.25);
}

.reddy-login-eight-accordion .accordion-item {
  border: none;
  margin-bottom: 12px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.reddy-login-eight-accordion .accordion-button {
  background: #fff0f2;
  color: #4a1f24;
  font-weight: 600;
}

.reddy-login-eight-accordion .accordion-button:not(.collapsed) {
  background: #a52a2a;
  color: #fff;
}

.reddy-login-eight-accordion .accordion-body {
  background: #fff;
  color: #3a2b2b;
  font-size: 14px;
  line-height: 1.7;
}

/* section 9*/


/* Main card */
.reddy-login-nine-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(128, 0, 32, 0.12);
  overflow: hidden;
}

/* Header */
.reddy-login-nine-header {
  background: linear-gradient(135deg, #800020, #a52a2a);
  color: #fff;
  padding: 18px;
  font-size: 20px;
  font-weight: 700;
  border-radius: 12px;
}

/* Section spacing */
.reddy-login-nine-section {
  padding: 20px;
}

/* Text */
.reddy-login-nine-text {
  color: #3a2b2b;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* Title */
.reddy-login-nine-title {
  color: #800020;
  font-weight: 700;
  margin-bottom: 12px;
}

/* Badges */
.reddy-login-nine-badge {
  background: #a52a2a;
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  margin-right: 5px;
  display: inline-block;
}

/* Highlight box */
.reddy-login-nine-highlight {
  background: #fff3f4;
  border-left: 5px solid #a52a2a;
  padding: 10px 14px;
  font-weight: 600;
  margin-top: 10px;
}

/* Meta box */
.reddy-login-nine-meta {
  background: #fff6f7;
  border: 1px solid #f1d7db;
  padding: 12px;
  border-radius: 10px;
  font-size: 13px;
}



/*---------------------reddy book ------------------*/

/*section 1*/

.reddy-book-one-section {

  margin-top: 128px;
}

/* Card */
.reddy-book-one-card {
  background: #fff;
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(128, 0, 32, 0.15);
  position: relative;
  overflow: hidden;
}

/* glow background */
.reddy-book-one-card::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(128, 0, 32, 0.18), transparent 70%);
  filter: blur(28px);
  z-index: 0;
}

/* header */
.reddy-book-one-header {
  font-size: 22px;
  font-weight: 700;
  color: #800020;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

/* body text */
.reddy-book-one-body p {
  font-size: 15px;
  line-height: 1.8;
  color: #4a0d1a;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

/* button */
.reddy-book-one-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 14px 26px;
  border-radius: 12px;
  background: linear-gradient(90deg, #800020, #b03050);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 25px rgba(128, 0, 32, 0.25);
}

.reddy-book-one-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(90deg, #b03050, #800020);
}

/*section 2*/


/* Card */
.reddy-book-two-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(128, 0, 32, 0.14);
  position: relative;
  overflow: hidden;
}

/* glow effect */
.reddy-book-two-card::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(128, 0, 32, 0.16), transparent 70%);
  filter: blur(30px);
  z-index: 0;
}

/* header */
.reddy-book-two-header {
  font-size: 22px;
  font-weight: 700;
  color: #800020;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

/* text */
.reddy-book-two-body p {
  font-size: 15px;
  line-height: 1.85;
  color: #4a0d1a;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

/* optional hover depth */
.reddy-book-two-card:hover {
  transform: translateY(-2px);
  transition: 0.3s ease;
}

/*section 3*/



/* Main card */
.reddy-book-three-card {
  background: #fff;
  border-radius: 18px;
  padding: 35px;
  box-shadow: 0 15px 40px rgba(128, 0, 32, 0.15);
  position: relative;
  overflow: hidden;
}

/* glow */
.reddy-book-three-card::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(128, 0, 32, 0.18), transparent 70%);
  filter: blur(30px);
  z-index: 0;
}

/* keep content above glow */
.reddy-book-three-card * {
  position: relative;
  z-index: 2;
}

/* header */
.reddy-book-three-header {
  font-size: 24px;
  font-weight: 700;
  color: #800020;
  margin-bottom: 20px;
}

/* text */
.reddy-book-three-body p {
  font-size: 15px;
  line-height: 1.8;
  color: #4a0d1a;
  margin-bottom: 15px;
}

/* headings */
.reddy-book-three-body h5 {
  color: #800020;
  font-weight: 700;
  margin-top: 20px;
}

/* images */
.reddy-book-three-img {
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.reddy-book-three-inner-img {
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(128, 0, 32, 0.15);
}

/* table */
.reddy-book-three-table {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.reddy-book-three-table thead {
  background: #800020;
  color: #fff;
}

.reddy-book-three-table td,
.reddy-book-three-table th {
  font-size: 14px;
  padding: 12px;
}

/*section 4*/



/* Header */
.reddy-book-four-header {
  font-size: 26px;
  font-weight: 800;
  color: #800020;
}

/* Card */
.reddy-book-four-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 12px 30px rgba(128, 0, 32, 0.12);
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
}

/* glow effect */
.reddy-book-four-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(128, 0, 32, 0.15), transparent 70%);
  filter: blur(25px);
}

/* hover */
.reddy-book-four-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(128, 0, 32, 0.18);
}

/* number */
.reddy-book-four-card h2 {
  color: #800020;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 10px;
}

/* title */
.reddy-book-four-card h5 {
  font-weight: 700;
  color: #4a0d1a;
  margin-bottom: 12px;
}

/* text */
.reddy-book-four-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #4a0d1a;
}

/*section 5*/


/* Header */
.reddy-book-five-header {
  font-size: 26px;
  font-weight: 800;
  color: #800020;
}

/* Timeline container */
.reddy-book-five-timeline {
  position: relative;
  margin-top: 30px;
}

/* vertical line */
.reddy-book-five-timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  width: 3px;
  height: 100%;
  background: #800020;
  opacity: 0.2;
}

/* step */
.reddy-book-five-step {
  display: flex;
  gap: 18px;
  margin-bottom: 25px;
  position: relative;
}

/* circle number */
.reddy-book-five-circle {
  width: 42px;
  height: 42px;
  background: #800020;
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(128, 0, 32, 0.25);
}

/* content box */
.reddy-book-five-content {
  background: #fff;
  padding: 18px 20px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(128, 0, 32, 0.12);
  width: 100%;
  position: relative;
}

/* headings */
.reddy-book-five-content h5 {
  color: #800020;
  font-weight: 700;
  margin-bottom: 10px;
}

/* text */
.reddy-book-five-content p {
  font-size: 14.5px;
  line-height: 1.8;
  color: #4a0d1a;
  margin: 0;
}

/* button */
.reddy-book-five-btn {
  display: inline-block;
  background: linear-gradient(90deg, #800020, #b03050);
  color: #fff;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(128, 0, 32, 0.25);
  transition: 0.3s;
}

.reddy-book-five-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(90deg, #b03050, #800020);
}

/*section 6*/
/* Header */
.reddy-book-six-header {
  font-size: 26px;
  font-weight: 800;
  color: #800020;
}

/* Card */
.reddy-book-six-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(128, 0, 32, 0.12);
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
}

/* glow */
.reddy-book-six-card::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(128, 0, 32, 0.14), transparent 70%);
  filter: blur(28px);
}

/* hover */
.reddy-book-six-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(128, 0, 32, 0.18);
}

/* text */
.reddy-book-six-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #4a0d1a;
  margin-bottom: 12px;
}

/* headings */
.reddy-book-six-card h5 {
  color: #800020;
  font-weight: 700;
  margin-bottom: 12px;
}

/*section 7*/

/* header */
.reddy-book-seven-header {
  font-size: 26px;
  font-weight: 800;
  color: #800020;
}

/* card */
.reddy-book-seven-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(128, 0, 32, 0.12);
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
}

/* glow */
.reddy-book-seven-card::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(128, 0, 32, 0.14), transparent 70%);
  filter: blur(28px);
}

/* hover */
.reddy-book-seven-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(128, 0, 32, 0.18);
}

/* title */
.reddy-book-seven-card h5 {
  color: #800020;
  font-weight: 700;
  margin-bottom: 12px;
}

/* text */
.reddy-book-seven-card p {
  font-size: 14.5px;
  line-height: 1.8;
  color: #4a0d1a;
}

/* button link */
.reddy-book-seven-card a {
  display: inline-block;
  margin-top: 10px;
  color: #fff;
  background: linear-gradient(90deg, #800020, #b03050);
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
}


/*section 8*/

/* header */
.reddy-book-eight-header {
  font-size: 26px;
  font-weight: 800;
  color: #800020;
}

/* card */
.reddy-book-eight-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(128, 0, 32, 0.12);
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
}

/* glow */
.reddy-book-eight-card::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(128, 0, 32, 0.14), transparent 70%);
  filter: blur(28px);
}

/* hover effect */
.reddy-book-eight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(128, 0, 32, 0.18);
}

/* title */
.reddy-book-eight-card h5 {
  color: #800020;
  font-weight: 700;
  margin-bottom: 12px;
}

/* text */
.reddy-book-eight-card p {
  font-size: 14.5px;
  line-height: 1.8;
  color: #4a0d1a;
}

/*section 9*/

/* header */
.reddy-book-nine-header {
  font-size: 26px;
  font-weight: 800;
  color: #800020;
}

/* hero image */
.reddy-book-nine-hero-img {
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* card */
.reddy-book-nine-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(128, 0, 32, 0.12);
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
}

/* glow */
.reddy-book-nine-card::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(128, 0, 32, 0.15), transparent 70%);
  filter: blur(25px);
}

/* hover */
.reddy-book-nine-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(128, 0, 32, 0.18);
}

/* image inside card */
.reddy-book-nine-img {
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* text */
.reddy-book-nine-card p {
  font-size: 14.5px;
  line-height: 1.8;
  color: #4a0d1a;
  margin: 0;
}


/*section 10*/


/* header */
.reddy-book-ten-header {
  font-size: 26px;
  font-weight: 800;
  color: #800020;
}

/* card */
.reddy-book-ten-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(128, 0, 32, 0.12);
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
}

/* glow */
.reddy-book-ten-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(128, 0, 32, 0.14), transparent 70%);
  filter: blur(28px);
}

/* hover */
.reddy-book-ten-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(128, 0, 32, 0.18);
}

/* stars */
.reddy-book-ten-stars {
  font-size: 16px;
  margin-bottom: 8px;
}

/* title */
.reddy-book-ten-card h6 {
  font-weight: 700;
  color: #800020;
  margin-bottom: 10px;
}

/* text */
.reddy-book-ten-card p {
  font-size: 14.5px;
  line-height: 1.8;
  color: #4a0d1a;
  margin: 0;
}

/*section 11*/



/* header */
.reddy-book-eleven-header {
  font-size: 26px;
  font-weight: 800;
  color: #800020;
}

/* accordion item */
.reddy-book-eleven-item {
  border: none;
  margin-bottom: 12px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(128, 0, 32, 0.10);
}

/* button */
.reddy-book-eleven-accordion .accordion-button {
  background: #fff;
  color: #800020;
  font-weight: 700;
}

.reddy-book-eleven-accordion .accordion-button:not(.collapsed) {
  background: #800020;
  color: #fff;
}

/* body */
.reddy-book-eleven-accordion .accordion-body {
  background: #ffffff;
  color: #4a0d1a;
  font-size: 14.5px;
  line-height: 1.8;
}

/*section 12*/


/* main card */
.reddy-book-twelve-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(128, 0, 32, 0.12);
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
}

/* glow effect */
.reddy-book-twelve-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(128, 0, 32, 0.12), transparent 70%);
  filter: blur(30px);
}

/* hover */
.reddy-book-twelve-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(128, 0, 32, 0.18);
}

/* text */
.reddy-book-twelve-card p {
  font-size: 14.5px;
  line-height: 1.8;
  color: #4a0d1a;
  margin-bottom: 12px;
}

/* heading */
.reddy-book-twelve-card h5 {
  color: #800020;
  font-weight: 800;
  margin-bottom: 12px;
}

/* link style */
.reddy-book-twelve-link {
  color: #800020;
  font-weight: 700;
  text-decoration: underline;
}


.card {
  border-radius: 15px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.btn {
  border-radius: 8px;
}

.wa-cta-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #22c55e;
  color: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: 0.3s;
}

.wa-cta-btn i {
  font-size: 20px;
}

.wa-cta-btn:hover {
  background: #16a34a;
  transform: translateY(-2px);
}



/*register page */

/*------SIGN-UP SECTION --------*/

/* PAGE */
/* PAGE */
.signup-page {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #fff0f0, #ffe6e6);
  overflow: hidden;
  margin-top: 70px;
}

/* CARD */
.signup-card {
  background: rgba(128, 0, 32, 0.88);
  backdrop-filter: blur(14px);
  padding: 40px 30px;
  border-radius: 20px;
  width: 100%;
  max-width: 420px;
  color: #fff;
  box-shadow: 0 20px 60px rgba(128, 0, 32, 0.4);
  animation: fadeUp 0.8s ease;
}

/* LOGO */
.signup-logo {
  text-align: center;
  margin-bottom: 15px;
}

.signup-logo img {
  height: 65px;
  animation: zoomIn 1s ease;
}

/* TITLE */
.signup-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 25px;
}

/* GROUP */
.signup-group {
  position: relative;
  margin-bottom: 22px;
}

/* INPUT */
.signup-group input {
  width: 100%;
  padding: 12px;
  border: none;
  border-bottom: 2px solid #fff;
  background: transparent;
  color: #fff;
  outline: none;
}

/* FLOAT LABEL */
.signup-group label {
  position: absolute;
  left: 0;
  top: 12px;
  color: #ddd;
  font-size: 14px;
  transition: 0.3s;
}

.signup-group input:focus+label,
.signup-group input:valid+label {
  top: -10px;
  font-size: 12px;
  color: #ffd6dc;
}

/* PHONE GROUP */
.signup-phone {
  display: flex;
  align-items: center;
  border-bottom: 2px solid #fff;
}

.signup-phone input {
  border: none;
  flex: 1;
  background: transparent;
  padding: 12px;
  color: #fff;
}

.signup-country {
  padding: 10px;
  font-size: 14px;
  color: #ffd6dc;
}

/* NOTE */
.signup-note {
  font-size: 12px;
  color: #ffccd5;
}

/* INFO */
.signup-info {
  font-size: 13px;
  color: #f5c2c7;
  margin-bottom: 15px;
}

/* BUTTON */
.signup-btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(135deg, #ff4d6d, #c9184a);
  color: #fff;
  font-weight: bold;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(255, 0, 70, 0.4);
}

.signup-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(255, 0, 70, 0.6);
}

/* FOOTER */
.signup-footer {
  text-align: center;
  font-size: 13px;
  margin-top: 20px;
}

.signup-link {
  color: #ffd6dc;
  text-decoration: none;
}

.signup-link:hover {
  text-decoration: underline;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}



/* ================================= */
/* PREMIUM LIGHT MAROON UI */
/* ================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #fdf8f8;
  color: #2b1d1d;
  overflow-x: hidden;
  position: relative;
}

/* MOVING GRADIENT BACKGROUND */

body::before {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background:
    linear-gradient(-45deg,
      #fff7f7,
      #fbe9ec,
      #f8dfe5,
      #f6e3e8,
      #fff5f5);
  background-size: 400% 400%;
  animation: gradientMove 14s ease infinite;
  z-index: -3;
}

@keyframes gradientMove {

  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }

}

/* GLOW EFFECT */

body::after {
  content: "";
  position: fixed;
  width: 700px;
  height: 700px;
  background: rgba(170, 52, 78, 0.08);
  border-radius: 50%;
  top: -250px;
  right: -250px;
  filter: blur(120px);
  z-index: -2;
}

/* ================================= */
/* HERO SECTION */
/* ================================= */

.register-section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background:
    linear-gradient(rgba(94, 27, 45, 0.78), rgba(94, 27, 45, 0.82)),
    url('https://images.unsplash.com/photo-1511512578047-dfb367046420?q=80&w=1400&auto=format&fit=crop') center/cover no-repeat;
}

/* GLASS EFFECT */

.register-content {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 32px;
  padding: 60px;
  box-shadow: 0 18px 50px rgba(90, 30, 45, 0.22);
  overflow: hidden;
}

/* LIGHT EFFECT */

.register-content::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -100px;
  right: -100px;
}

/* BADGE */

.register-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* TITLE */

.register-title {
  font-size: 58px;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 28px;
}

.register-title span {
  color: #ffd6df;
}

/* DESCRIPTION */

.register-description {
  font-size: 18px;
  line-height: 2;
  color: #f8e9ec;
  margin-bottom: 35px;
}

/* BUTTON */

.register-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #b14464, #8e2d4d);
  color: #fff;
  text-decoration: none;
  padding: 18px 38px;
  border-radius: 60px;
  font-size: 18px;
  font-weight: 700;
  transition: 0.4s;
  box-shadow: 0 12px 30px rgba(177, 68, 100, 0.30);
  position: relative;
  overflow: hidden;
}

/* SHINE EFFECT */

.register-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  top: 0;
  left: -140px;
  transform: skewX(-25deg);
  transition: 0.7s;
}

.register-btn:hover::before {
  left: 130%;
}

.register-btn:hover {
  transform: translateY(-5px) scale(1.02);
  color: #fff;
  background: linear-gradient(135deg, #c14c70, #972f52);
}

/* ================================= */
/* HIGHLIGHT BOX */
/* ================================= */

.highlight-box {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(177, 68, 100, 0.10);
  backdrop-filter: blur(14px);
  border-radius: 28px;
  padding: 35px;
  margin-top: 40px;
  box-shadow: 0 14px 40px rgba(90, 30, 45, 0.10);
  border-left: 5px solid #b14464;
}

.highlight-box h4 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #7b2642;
}

.highlight-box p {
  font-size: 17px;
  line-height: 2;
  color: #5c4650;
  margin-bottom: 0;
}

/* ================================= */
/* INFO CARD */
/* ================================= */

.info-card {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(177, 68, 100, 0.10);
  backdrop-filter: blur(16px);
  padding: 35px;
  border-radius: 28px;
  height: 100%;
  box-shadow: 0 15px 35px rgba(90, 30, 45, 0.08);
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

/* GLOW */

.info-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(177, 68, 100, 0.05);
  border-radius: 50%;
  top: -80px;
  right: -80px;
}

.info-card:hover {
  transform: translateY(-10px);
  border-color: rgba(177, 68, 100, 0.28);
}

/* NUMBER */

.info-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #b14464, #8e2d4d);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 25px;
  box-shadow: 0 10px 25px rgba(177, 68, 100, 0.20);
}

/* TITLE */

.info-card h5 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #6f1f3e;
}

/* TEXT */

.info-card p {
  color: #5f4d55;
  line-height: 2;
  margin-bottom: 0;
  font-size: 16px;
}

/* ================================= */
/* RESPONSIVE */
/* ================================= */

@media(max-width:768px) {

  .register-section {
    padding: 75px 0;
  }

  .register-content {
    padding: 35px 24px;
    border-radius: 24px;
  }

  .register-title {
    font-size: 38px;
  }

  .register-description {
    font-size: 16px;
    line-height: 1.9;
  }

  .register-btn {
    width: 100%;
  }

  .highlight-box {
    padding: 24px;
  }

  .highlight-box h4 {
    font-size: 24px;
  }

  .info-card {
    padding: 28px;
  }

  .info-card h5 {
    font-size: 22px;
  }

}

/* section 2*/
/* ============================= */
/* WHY REGISTER SECTION */
/* ============================= */

/* ================================= */
/* WHY REGISTER SECTION */
/* PREMIUM LIGHT MAROON UI */
/* ================================= */

.why-register-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background:
    linear-gradient(135deg,
      #fff8f9,
      #fdecef,
      #fff5f6);
}

/* GLOW EFFECT */

.why-register-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(177, 68, 100, 0.06);
  border-radius: 50%;
  top: -180px;
  left: -180px;
  filter: blur(100px);
}

.why-register-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  bottom: -150px;
  right: -120px;
  filter: blur(90px);
}

/* ================================= */
/* SECTION TITLE */
/* ================================= */

.section-title {
  position: relative;
  z-index: 2;
}

.section-badge {
  display: inline-block;
  background: rgba(177, 68, 100, 0.10);
  color: #a13658;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(177, 68, 100, 0.12);
  backdrop-filter: blur(10px);
}

/* TITLE */

.section-title h2 {
  font-size: 52px;
  font-weight: 800;
  color: #6e1f3e;
  margin-bottom: 22px;
  line-height: 1.3;
}

/* DESCRIPTION */

.section-title p {
  color: #6b5a61;
  font-size: 18px;
  max-width: 780px;
  margin: auto;
  line-height: 2;
}

/* ================================= */
/* CONTENT BOX */
/* ================================= */

.why-register-box {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 50px;
  border-radius: 30px;
  box-shadow: 0 18px 45px rgba(120, 40, 60, 0.08);
  border: 1px solid rgba(177, 68, 100, 0.10);
  overflow: hidden;
}

/* INNER GLOW */

.why-register-box::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(177, 68, 100, 0.05);
  border-radius: 50%;
  top: -80px;
  right: -80px;
}

/* PARAGRAPH */

.why-register-box p {
  font-size: 17px;
  line-height: 2.1;
  color: #5f4d55;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

/* STRONG */

.why-register-box strong {
  color: #8e2d4d;
  font-weight: 700;
}

/* ================================= */
/* STATS CARD */
/* ================================= */

.stats-card {
  position: relative;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  padding: 38px 28px;
  border-radius: 26px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(120, 40, 60, 0.08);
  transition: 0.4s;
  height: 100%;
  border: 1px solid rgba(177, 68, 100, 0.10);
  overflow: hidden;
}

/* CARD GLOW */

.stats-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(177, 68, 100, 0.05);
  border-radius: 50%;
  top: -80px;
  right: -80px;
}

.stats-card:hover {
  transform: translateY(-10px);
  border-color: rgba(177, 68, 100, 0.28);
  box-shadow: 0 20px 45px rgba(120, 40, 60, 0.14);
}

/* NUMBER */

.stats-card h3 {
  font-size: 48px;
  font-weight: 800;
  color: #8e2d4d;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

/* TEXT */

.stats-card p {
  color: #66545b;
  line-height: 2;
  margin-bottom: 0;
  font-size: 16px;
  position: relative;
  z-index: 2;
}

/* ================================= */
/* BOTTOM HIGHLIGHT */
/* ================================= */

.bottom-highlight {
  position: relative;
  background:
    linear-gradient(135deg,
      #9b3556,
      #7b2642,
      #5d1830);
  color: #fff;
  padding: 38px;
  border-radius: 28px;
  font-size: 18px;
  line-height: 2.1;
  font-weight: 500;
  box-shadow: 0 18px 40px rgba(120, 40, 60, 0.20);
  overflow: hidden;
}

/* SHINY EFFECT */

.bottom-highlight::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -120px;
  right: -100px;
}

/* ================================= */
/* RESPONSIVE */
/* ================================= */

@media(max-width:768px) {

  .why-register-section {
    padding: 70px 0;
  }

  .section-title h2 {
    font-size: 34px;
  }

  .section-title p {
    font-size: 16px;
    line-height: 1.9;
  }

  .why-register-box {
    padding: 30px 24px;
    border-radius: 24px;
  }

  .why-register-box p {
    font-size: 16px;
    line-height: 2;
  }

  .stats-card {
    padding: 30px 24px;
  }

  .stats-card h3 {
    font-size: 38px;
  }

  .bottom-highlight {
    padding: 28px 24px;
    font-size: 16px;
    line-height: 2;
  }

}

/* section 3*/
/* ================================= */
/* REGISTER THREE SECTION */
/* ================================= */

/* ================================= */
/* REGISTER THREE SECTION */
/* PREMIUM LIGHT MAROON UI */
/* ================================= */

.register-three-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background:
    linear-gradient(135deg,
      #fff7f8,
      #fdecee,
      #fff5f6);
}

/* BACKGROUND GLOW */

.register-three-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(177, 68, 100, 0.06);
  border-radius: 50%;
  top: -200px;
  left: -180px;
  filter: blur(100px);
}

.register-three-section::after {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  bottom: -180px;
  right: -150px;
  filter: blur(90px);
}

/* ================================= */
/* TITLE */
/* ================================= */

.register-three-badge {
  display: inline-block;
  background: rgba(177, 68, 100, 0.10);
  color: #a13658;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(177, 68, 100, 0.12);
  backdrop-filter: blur(10px);
}

.register-three-title {
  font-size: 50px;
  font-weight: 800;
  color: #6e1f3e;
  margin-bottom: 22px;
  line-height: 1.3;
}

.register-three-subtitle {
  font-size: 18px;
  color: #6b5a61;
  line-height: 2;
  max-width: 850px;
  margin: auto;
}

/* ================================= */
/* CARD */
/* ================================= */

.register-three-card {
  position: relative;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 38px;
  border-radius: 28px;
  height: 100%;
  box-shadow: 0 15px 35px rgba(120, 40, 60, 0.08);
  transition: 0.4s;
  border: 1px solid rgba(177, 68, 100, 0.10);
  overflow: hidden;
}

/* CARD GLOW */

.register-three-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(177, 68, 100, 0.05);
  border-radius: 50%;
  top: -70px;
  right: -70px;
}

.register-three-card:hover {
  transform: translateY(-10px);
  border-color: rgba(177, 68, 100, 0.28);
  box-shadow: 0 20px 45px rgba(120, 40, 60, 0.14);
}

/* ================================= */
/* ICON */
/* ================================= */

.register-three-icon {
  width: 72px;
  height: 72px;
  background:
    linear-gradient(135deg,
      #b14464,
      #8e2d4d);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 24px;
  box-shadow: 0 10px 25px rgba(177, 68, 100, 0.20);
  position: relative;
  z-index: 2;
}

/* ================================= */
/* CONTENT */
/* ================================= */

.register-three-card h4 {
  font-size: 26px;
  font-weight: 700;
  color: #6f1f3e;
  margin-bottom: 18px;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

.register-three-card p {
  font-size: 16px;
  color: #5f4d55;
  line-height: 2;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

.register-three-card strong {
  color: #8e2d4d;
  font-weight: 700;
}

/* ================================= */
/* SUPPORT BOX */
/* ================================= */

.register-three-support {
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 18px;
  font-size: 15px;
  line-height: 2;
  color: #5f4d55;
  border-left: 4px solid #b14464;
  border: 1px solid rgba(177, 68, 100, 0.10);
  position: relative;
  z-index: 2;
}

/* LINKS */

.register-three-support a {
  color: #a13658;
  font-weight: 700;
  text-decoration: none;
}

.register-three-support a:hover {
  text-decoration: underline;
}

/* ================================= */
/* RESPONSIVE */
/* ================================= */

@media(max-width:768px) {

  .register-three-section {
    padding: 70px 0;
  }

  .register-three-title {
    font-size: 34px;
  }

  .register-three-subtitle {
    font-size: 16px;
    line-height: 1.9;
  }

  .register-three-card {
    padding: 30px 24px;
    border-radius: 24px;
  }

  .register-three-card h4 {
    font-size: 22px;
  }

  .register-three-card p {
    font-size: 15px;
    line-height: 1.9;
  }

  .register-three-icon {
    width: 62px;
    height: 62px;
    font-size: 22px;
  }

  .register-three-support {
    padding: 18px;
    font-size: 14px;
  }

}

/* section 4*/
/* ================================= */
/* REGISTER FOUR SECTION */
/* ================================= */

/* ================================= */
/* REGISTER FOUR SECTION */
/* PREMIUM LIGHT MAROON UI */
/* ================================= */

.register-four-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background:
    linear-gradient(135deg,
      #fff7f8,
      #fdecef,
      #fff5f6);
}

/* BACKGROUND GLOW */

.register-four-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(177, 68, 100, 0.06);
  border-radius: 50%;
  top: -180px;
  left: -180px;
  filter: blur(100px);
}

.register-four-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  bottom: -150px;
  right: -120px;
  filter: blur(90px);
}

/* ================================= */
/* TITLE */
/* ================================= */

.register-four-badge {
  display: inline-block;
  background: rgba(177, 68, 100, 0.10);
  color: #a13658;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(177, 68, 100, 0.12);
  backdrop-filter: blur(10px);
}

.register-four-title {
  font-size: 52px;
  font-weight: 800;
  color: #6e1f3e;
  margin-bottom: 22px;
  line-height: 1.3;
}

.register-four-subtitle {
  font-size: 18px;
  color: #6b5a61;
  line-height: 2;
  max-width: 850px;
  margin: auto;
}

/* ================================= */
/* STEP CARD */
/* ================================= */

.register-four-step {
  position: relative;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 30px;
  padding: 42px;
  display: flex;
  gap: 32px;
  transition: 0.4s;
  border: 1px solid rgba(177, 68, 100, 0.10);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(120, 40, 60, 0.08);
}

/* CARD GLOW */

.register-four-step::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(177, 68, 100, 0.05);
  border-radius: 50%;
  top: -80px;
  right: -80px;
}

.register-four-step:hover {
  transform: translateY(-10px);
  border-color: rgba(177, 68, 100, 0.28);
  box-shadow: 0 20px 45px rgba(120, 40, 60, 0.14);
}

/* ================================= */
/* NUMBER */
/* ================================= */

.register-four-number {
  min-width: 78px;
  height: 78px;
  background:
    linear-gradient(135deg,
      #b14464,
      #8e2d4d);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  box-shadow: 0 10px 25px rgba(177, 68, 100, 0.20);
  position: relative;
  z-index: 2;
}

/* ================================= */
/* CONTENT */
/* ================================= */

.register-four-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.register-four-content h3 {
  font-size: 30px;
  font-weight: 700;
  color: #6f1f3e;
  margin-bottom: 20px;
  line-height: 1.5;
}

.register-four-content p {
  font-size: 16px;
  line-height: 2;
  color: #5f4d55;
  margin-bottom: 18px;
}

.register-four-content a {
  color: #a13658;
  text-decoration: none;
  font-weight: 700;
}

.register-four-content a:hover {
  text-decoration: underline;
}

/* ================================= */
/* HIGHLIGHT */
/* ================================= */

.register-four-highlight {
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(10px);
  padding: 22px;
  border-radius: 18px;
  line-height: 2;
  color: #5f4d55;
  border-left: 4px solid #b14464;
  font-size: 16px;
  border: 1px solid rgba(177, 68, 100, 0.08);
}

/* DARK HIGHLIGHT */

.register-four-highlight.dark {
  background:
    linear-gradient(135deg,
      #9b3556,
      #7b2642,
      #5d1830);
  color: #fff;
  border-left: 4px solid #ffd6df;
  box-shadow: 0 15px 35px rgba(120, 40, 60, 0.18);
}

/* ================================= */
/* PAYMENT TAGS */
/* ================================= */

.register-four-payment {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.register-four-payment span {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  padding: 11px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  color: #7b2642;
  box-shadow: 0 5px 15px rgba(120, 40, 60, 0.06);
  border: 1px solid rgba(177, 68, 100, 0.10);
  transition: 0.3s;
}

.register-four-payment span:hover {
  transform: translateY(-3px);
  background: #b14464;
  color: #fff;
}

/* ================================= */
/* CTA */
/* ================================= */

.register-four-cta {
  position: relative;
  background:
    linear-gradient(135deg,
      #9b3556,
      #7b2642,
      #5d1830);
  padding: 55px 35px;
  border-radius: 32px;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(120, 40, 60, 0.20);
}

/* SHINY EFFECT */

.register-four-cta::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -120px;
  right: -100px;
}

.register-four-cta p {
  font-size: 18px;
  line-height: 2;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

.register-four-cta a {
  color: #ffd6df;
  text-decoration: none;
  font-weight: 700;
}

/* BUTTON */

.register-four-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg,
      #b14464,
      #8e2d4d);
  color: #fff !important;
  padding: 18px 38px;
  border-radius: 60px;
  font-size: 18px;
  font-weight: 700;
  transition: 0.4s;
  text-decoration: none !important;
  box-shadow: 0 12px 30px rgba(177, 68, 100, 0.25);
  position: relative;
  overflow: hidden;
}

/* SHINE */

.register-four-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  top: 0;
  left: -140px;
  transform: skewX(-25deg);
  transition: 0.7s;
}

.register-four-btn:hover::before {
  left: 130%;
}

.register-four-btn:hover {
  transform: translateY(-5px);
  background:
    linear-gradient(135deg,
      #c14c70,
      #972f52);
}

/* ================================= */
/* RESPONSIVE */
/* ================================= */

@media(max-width:768px) {

  .register-four-section {
    padding: 70px 0;
  }

  .register-four-title {
    font-size: 34px;
  }

  .register-four-subtitle {
    font-size: 16px;
    line-height: 1.9;
  }

  .register-four-step {
    flex-direction: column;
    padding: 30px 24px;
    gap: 22px;
    border-radius: 24px;
  }

  .register-four-number {
    width: 68px;
    height: 68px;
    font-size: 24px;
  }

  .register-four-content h3 {
    font-size: 24px;
  }

  .register-four-content p {
    font-size: 15px;
    line-height: 1.9;
  }

  .register-four-highlight {
    padding: 18px;
    font-size: 15px;
  }

  .register-four-cta {
    padding: 35px 24px;
    border-radius: 24px;
  }

  .register-four-cta p {
    font-size: 16px;
  }

  .register-four-btn {
    width: 100%;
  }

}

/* section 5*/

/* ================================= */
/* REGISTER FIVE SECTION */
/* ================================= */
/* ================================= */
/* REGISTER FIVE SECTION */
/* PREMIUM LIGHT MAROON UI */
/* ================================= */

.register-five-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background:
    linear-gradient(135deg,
      #fff8f9,
      #fdecef,
      #fff5f6);
}

/* BACKGROUND EFFECT */

.register-five-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  background: rgba(177, 68, 100, 0.06);
  border-radius: 50%;
  top: -220px;
  left: -180px;
  filter: blur(100px);
}

.register-five-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  bottom: -160px;
  right: -140px;
  filter: blur(90px);
}

/* ================================= */
/* TITLE */
/* ================================= */

.register-five-badge {
  display: inline-block;
  background: rgba(177, 68, 100, 0.10);
  color: #a13658;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(177, 68, 100, 0.12);
  backdrop-filter: blur(10px);
}

.register-five-title {
  font-size: 52px;
  font-weight: 800;
  color: #6e1f3e;
  margin-bottom: 22px;
  line-height: 1.3;
}

.register-five-subtitle {
  font-size: 18px;
  color: #6b5a61;
  line-height: 2;
  max-width: 850px;
  margin: auto;
}

/* ================================= */
/* CARD */
/* ================================= */

.register-five-card {
  position: relative;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 38px;
  border-radius: 30px;
  height: 100%;
  box-shadow: 0 15px 35px rgba(120, 40, 60, 0.08);
  transition: 0.4s;
  border: 1px solid rgba(177, 68, 100, 0.10);
  overflow: hidden;
}

/* CARD GLOW */

.register-five-card::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  background: rgba(177, 68, 100, 0.05);
  border-radius: 50%;
  top: -70px;
  right: -70px;
}

.register-five-card:hover {
  transform: translateY(-10px);
  border-color: rgba(177, 68, 100, 0.28);
  box-shadow: 0 22px 45px rgba(120, 40, 60, 0.14);
}

/* ================================= */
/* ICON */
/* ================================= */

.register-five-icon {
  width: 74px;
  height: 74px;
  background:
    linear-gradient(135deg,
      #b14464,
      #8e2d4d);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 26px;
  box-shadow: 0 10px 25px rgba(177, 68, 100, 0.20);
  position: relative;
  z-index: 2;
}

/* ================================= */
/* CONTENT */
/* ================================= */

.register-five-card h3 {
  font-size: 30px;
  font-weight: 700;
  color: #6f1f3e;
  margin-bottom: 22px;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

.register-five-card p {
  font-size: 16px;
  line-height: 2;
  color: #5f4d55;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}

/* ================================= */
/* HIGHLIGHT */
/* ================================= */

.register-five-highlight {
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(10px);
  border-left: 4px solid #b14464;
  padding: 20px;
  border-radius: 18px;
  font-size: 15px;
  line-height: 2;
  color: #5f4d55;
  border: 1px solid rgba(177, 68, 100, 0.08);
  position: relative;
  z-index: 2;
}

/* ================================= */
/* RESPONSIVE */
/* ================================= */

@media(max-width:768px) {

  .register-five-section {
    padding: 70px 0;
  }

  .register-five-title {
    font-size: 34px;
  }

  .register-five-subtitle {
    font-size: 16px;
    line-height: 1.9;
  }

  .register-five-card {
    padding: 30px 24px;
    border-radius: 24px;
  }

  .register-five-card h3 {
    font-size: 24px;
  }

  .register-five-card p {
    font-size: 15px;
    line-height: 1.9;
  }

  .register-five-icon {
    width: 64px;
    height: 64px;
    font-size: 22px;
  }

  .register-five-highlight {
    padding: 18px;
    font-size: 14px;
  }

}

/* section 6*/

/* ================================= */
/* REGISTER SIX SECTION */
/* ================================= */
/* ================================= */
/* REGISTER SIX SECTION */
/* PREMIUM LIGHT MAROON UI */
/* ================================= */

.register-six-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background:
    linear-gradient(135deg,
      #fff7f8,
      #fdecef,
      #fff5f6);
}

/* BACKGROUND GLOW */

.register-six-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  background: rgba(177, 68, 100, 0.06);
  border-radius: 50%;
  top: -220px;
  left: -180px;
  filter: blur(100px);
}

.register-six-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  bottom: -160px;
  right: -140px;
  filter: blur(90px);
}

/* ================================= */
/* TITLE */
/* ================================= */

.register-six-badge {
  display: inline-block;
  background: rgba(177, 68, 100, 0.10);
  color: #a13658;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(177, 68, 100, 0.12);
  backdrop-filter: blur(10px);
}

.register-six-title {
  font-size: 52px;
  font-weight: 800;
  color: #6e1f3e;
  margin-bottom: 22px;
  line-height: 1.3;
}

.register-six-subtitle {
  font-size: 18px;
  color: #6b5a61;
  line-height: 2;
  max-width: 850px;
  margin: auto;
}

/* ================================= */
/* CARD */
/* ================================= */

.register-six-card {
  position: relative;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 38px;
  border-radius: 30px;
  height: 100%;
  box-shadow: 0 15px 35px rgba(120, 40, 60, 0.08);
  transition: 0.4s;
  border: 1px solid rgba(177, 68, 100, 0.10);
  overflow: hidden;
}

/* CARD GLOW */

.register-six-card::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  background: rgba(177, 68, 100, 0.05);
  border-radius: 50%;
  top: -70px;
  right: -70px;
}

.register-six-card:hover {
  transform: translateY(-10px);
  border-color: rgba(177, 68, 100, 0.28);
  box-shadow: 0 22px 45px rgba(120, 40, 60, 0.14);
}

/* ================================= */
/* ICON */
/* ================================= */

.register-six-icon {
  width: 74px;
  height: 74px;
  background:
    linear-gradient(135deg,
      #b14464,
      #8e2d4d);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 26px;
  box-shadow: 0 10px 25px rgba(177, 68, 100, 0.20);
  position: relative;
  z-index: 2;
}

/* ================================= */
/* CONTENT */
/* ================================= */

.register-six-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: #6f1f3e;
  margin-bottom: 20px;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

.register-six-card p {
  font-size: 16px;
  line-height: 2;
  color: #5f4d55;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}

/* ================================= */
/* HIGHLIGHT */
/* ================================= */

.register-six-highlight {
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 18px;
  font-size: 15px;
  line-height: 2;
  color: #5f4d55;
  border-left: 4px solid #b14464;
  border: 1px solid rgba(177, 68, 100, 0.08);
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

/* ================================= */
/* BUTTON */
/* ================================= */

.register-six-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  background:
    linear-gradient(135deg,
      #b14464,
      #8e2d4d);
  color: #fff;
  padding: 16px 22px;
  border-radius: 60px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.4s;
  box-shadow: 0 10px 25px rgba(177, 68, 100, 0.20);
  position: relative;
  overflow: hidden;
}

/* SHINE EFFECT */

.register-six-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  top: 0;
  left: -140px;
  transform: skewX(-25deg);
  transition: 0.7s;
}

.register-six-btn:hover::before {
  left: 130%;
}

.register-six-btn:hover {
  background:
    linear-gradient(135deg,
      #c14c70,
      #972f52);
  color: #fff;
  transform: translateY(-4px);
}

/* ================================= */
/* RESPONSIVE */
/* ================================= */

@media(max-width:768px) {

  .register-six-section {
    padding: 70px 0;
  }

  .register-six-title {
    font-size: 34px;
  }

  .register-six-subtitle {
    font-size: 16px;
    line-height: 1.9;
  }

  .register-six-card {
    padding: 30px 24px;
    border-radius: 24px;
  }

  .register-six-card h3 {
    font-size: 24px;
  }

  .register-six-card p {
    font-size: 15px;
    line-height: 1.9;
  }

  .register-six-icon {
    width: 64px;
    height: 64px;
    font-size: 24px;
  }

  .register-six-highlight {
    padding: 18px;
    font-size: 14px;
  }

}

/* section FAQ*/
/* ================================= */
/* REGISTER FAQ SECTION */
/* ================================= */
/* ================================= */
/* REGISTER FAQ SECTION */
/* PREMIUM LIGHT MAROON UI */
/* ================================= */

.register-faq-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background:
    linear-gradient(135deg,
      #fff8f9,
      #fdecef,
      #fff5f6);
}

/* BACKGROUND GLOW */

.register-faq-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  background: rgba(177, 68, 100, 0.06);
  border-radius: 50%;
  top: -220px;
  left: -180px;
  filter: blur(100px);
}

.register-faq-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  bottom: -160px;
  right: -140px;
  filter: blur(90px);
}

/* ================================= */
/* TITLE */
/* ================================= */

.register-faq-badge {
  display: inline-block;
  background: rgba(177, 68, 100, 0.10);
  color: #a13658;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(177, 68, 100, 0.12);
  backdrop-filter: blur(10px);
}

.register-faq-title {
  font-size: 52px;
  font-weight: 800;
  color: #6e1f3e;
  margin-bottom: 22px;
  line-height: 1.4;
}

.register-faq-subtitle {
  font-size: 18px;
  color: #6b5a61;
  line-height: 2;
  max-width: 850px;
  margin: auto;
}

/* ================================= */
/* ACCORDION */
/* ================================= */

.register-faq-accordion .accordion-item {
  border: none;
  border-radius: 28px !important;
  overflow: hidden;
  margin-bottom: 24px;
  background: transparent;
  box-shadow: none;
}

/* BUTTON */

.register-faq-accordion .accordion-button {
  position: relative;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: #6f1f3e;
  font-size: 20px;
  font-weight: 700;
  padding: 26px 30px;
  border: none;
  border-radius: 28px !important;
  box-shadow: 0 15px 35px rgba(120, 40, 60, 0.08) !important;
  transition: 0.4s;
  overflow: hidden;
}

/* GLOW EFFECT */

.register-faq-accordion .accordion-button::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(177, 68, 100, 0.05);
  border-radius: 50%;
  top: -70px;
  right: -70px;
}

/* ACTIVE */

.register-faq-accordion .accordion-button:not(.collapsed) {
  background:
    linear-gradient(135deg,
      #b14464,
      #8e2d4d);
  color: #fff;
}

/* REMOVE BOOTSTRAP SHADOW */

.register-faq-accordion .accordion-button:focus {
  box-shadow: none !important;
}

/* ICON */

.register-faq-accordion .accordion-button::after {
  filter: brightness(0.4);
}

.register-faq-accordion .accordion-button:not(.collapsed)::after {
  filter: brightness(10);
}

/* BODY */

.register-faq-accordion .accordion-body {
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(14px);
  padding: 30px;
  font-size: 16px;
  line-height: 2;
  color: #5f4d55;
  border-radius: 0 0 28px 28px;
  border: 1px solid rgba(177, 68, 100, 0.08);
  border-top: none;
}

/* LINK */

.register-faq-accordion .accordion-body a {
  color: #a13658;
  font-weight: 700;
  text-decoration: none;
}

.register-faq-accordion .accordion-body a:hover {
  text-decoration: underline;
}

/* ================================= */
/* RESPONSIVE */
/* ================================= */

@media(max-width:768px) {

  .register-faq-section {
    padding: 70px 0;
  }

  .register-faq-title {
    font-size: 34px;
  }

  .register-faq-subtitle {
    font-size: 16px;
    line-height: 1.9;
  }

  .register-faq-accordion .accordion-button {
    font-size: 17px;
    padding: 22px;
    line-height: 1.7;
    border-radius: 22px !important;
  }

  .register-faq-accordion .accordion-body {
    padding: 24px;
    font-size: 15px;
    line-height: 1.9;
    border-radius: 0 0 22px 22px;
  }

}

/* section 7*/
/* ================================= */
/* REGISTER SEVEN SECTION */
/* ================================= */
/* ================================= */
/* REGISTER SEVEN SECTION */
/* PREMIUM LIGHT MAROON UI */
/* ================================= */

.register-seven-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background:
    linear-gradient(135deg,
      #fff8f9,
      #fdecef,
      #fff5f6);
}

/* BACKGROUND GLOW */

.register-seven-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  background: rgba(177, 68, 100, 0.06);
  border-radius: 50%;
  top: -220px;
  left: -180px;
  filter: blur(100px);
}

.register-seven-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  bottom: -160px;
  right: -140px;
  filter: blur(90px);
}

/* ================================= */
/* TITLE */
/* ================================= */

.register-seven-badge {
  display: inline-block;
  background: rgba(177, 68, 100, 0.10);
  color: #a13658;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(177, 68, 100, 0.12);
  backdrop-filter: blur(10px);
}

.register-seven-title {
  font-size: 52px;
  font-weight: 800;
  color: #6e1f3e;
  margin-bottom: 22px;
  line-height: 1.4;
}

.register-seven-subtitle {
  font-size: 18px;
  color: #6b5a61;
  line-height: 2;
  max-width: 850px;
  margin: auto;
}

/* ================================= */
/* INTRO BOX */
/* ================================= */

.register-seven-intro {
  position: relative;
  background:
    linear-gradient(135deg,
      #9b3556,
      #7b2642,
      #5d1830);
  padding: 40px;
  border-radius: 32px;
  color: #fff;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(120, 40, 60, 0.18);
}

/* SHINY EFFECT */

.register-seven-intro::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -120px;
  right: -100px;
}

/* TEXT */

.register-seven-intro p {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 2.1;
  position: relative;
  z-index: 2;
}

/* ================================= */
/* CARD */
/* ================================= */

.register-seven-card {
  position: relative;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 38px;
  border-radius: 30px;
  height: 100%;
  box-shadow: 0 15px 35px rgba(120, 40, 60, 0.08);
  transition: 0.4s;
  border: 1px solid rgba(177, 68, 100, 0.10);
  overflow: hidden;
}

/* CARD GLOW */

.register-seven-card::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  background: rgba(177, 68, 100, 0.05);
  border-radius: 50%;
  top: -70px;
  right: -70px;
}

.register-seven-card:hover {
  transform: translateY(-10px);
  border-color: rgba(177, 68, 100, 0.28);
  box-shadow: 0 22px 45px rgba(120, 40, 60, 0.14);
}

/* ================================= */
/* NUMBER */
/* ================================= */

.register-seven-number {
  width: 74px;
  height: 74px;
  background:
    linear-gradient(135deg,
      #b14464,
      #8e2d4d);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 26px;
  box-shadow: 0 10px 25px rgba(177, 68, 100, 0.20);
  position: relative;
  z-index: 2;
}

/* ================================= */
/* CONTENT */
/* ================================= */

.register-seven-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: #6f1f3e;
  line-height: 1.6;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}

.register-seven-card p {
  font-size: 16px;
  line-height: 2;
  color: #5f4d55;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

/* ================================= */
/* HIGHLIGHT */
/* ================================= */

.register-seven-highlight {
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(10px);
  border-left: 4px solid #b14464;
  padding: 20px;
  border-radius: 18px;
  font-size: 15px;
  line-height: 2;
  color: #5f4d55;
  margin-top: 12px;
  border: 1px solid rgba(177, 68, 100, 0.08);
  position: relative;
  z-index: 2;
}

/* ================================= */
/* RESPONSIVE */
/* ================================= */

@media(max-width:768px) {

  .register-seven-section {
    padding: 70px 0;
  }

  .register-seven-title {
    font-size: 34px;
  }

  .register-seven-subtitle {
    font-size: 16px;
    line-height: 1.9;
  }

  .register-seven-intro {
    padding: 30px 24px;
    border-radius: 24px;
  }

  .register-seven-intro p {
    font-size: 16px;
    line-height: 2;
  }

  .register-seven-card {
    padding: 30px 24px;
    border-radius: 24px;
  }

  .register-seven-card h3 {
    font-size: 24px;
  }

  .register-seven-card p {
    font-size: 15px;
    line-height: 1.9;
  }

  .register-seven-number {
    width: 64px;
    height: 64px;
    font-size: 22px;
  }

  .register-seven-highlight {
    padding: 18px;
    font-size: 14px;
  }

}

/* section 8*/
/* ================================= */
/* REGISTER REVIEW SECTION */
/* ================================= */
/* ================================= */
/* REGISTER REVIEW SECTION */
/* PREMIUM LIGHT MAROON UI */
/* ================================= */

.register-review-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background:
    linear-gradient(135deg,
      #fff8f9,
      #fdecef,
      #fff5f6);
}

/* BACKGROUND EFFECTS */

.register-review-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  background: rgba(177, 68, 100, 0.06);
  border-radius: 50%;
  top: -220px;
  left: -180px;
  filter: blur(100px);
}

.register-review-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  bottom: -160px;
  right: -140px;
  filter: blur(90px);
}

/* ================================= */
/* TITLE */
/* ================================= */

.register-review-badge {
  display: inline-block;
  background: rgba(177, 68, 100, 0.10);
  color: #a13658;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(177, 68, 100, 0.12);
  backdrop-filter: blur(10px);
}

.register-review-title {
  font-size: 52px;
  font-weight: 800;
  color: #6e1f3e;
  margin-bottom: 22px;
  line-height: 1.4;
}

.register-review-subtitle {
  font-size: 18px;
  color: #6b5a61;
  line-height: 2;
  max-width: 850px;
  margin: auto;
}

/* ================================= */
/* REVIEW CARD */
/* ================================= */

.register-review-card {
  position: relative;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 38px;
  border-radius: 30px;
  height: 100%;
  box-shadow: 0 15px 35px rgba(120, 40, 60, 0.08);
  transition: 0.4s;
  border: 1px solid rgba(177, 68, 100, 0.10);
  overflow: hidden;
}

/* CARD GLOW */

.register-review-card::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(177, 68, 100, 0.05);
  border-radius: 50%;
  top: -80px;
  right: -80px;
}

/* HOVER */

.register-review-card:hover {
  transform: translateY(-10px);
  border-color: rgba(177, 68, 100, 0.28);
  box-shadow: 0 22px 45px rgba(120, 40, 60, 0.14);
}



/* ================================= */
/* STARS */
/* ================================= */

.register-review-stars {
  font-size: 24px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  letter-spacing: 3px;
}

/* ================================= */
/* CONTENT */
/* ================================= */

.register-review-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: #6f1f3e;
  line-height: 1.6;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}

.register-review-card p {
  font-size: 16px;
  line-height: 2;
  color: #5f4d55;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

/* ================================= */
/* LINKS */
/* ================================= */

.register-review-card a {
  color: #a13658;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.register-review-card a:hover {
  text-decoration: underline;
}

/* ================================= */
/* RESPONSIVE */
/* ================================= */

@media(max-width:768px) {

  .register-review-section {
    padding: 70px 0;
  }

  .register-review-title {
    font-size: 34px;
  }

  .register-review-subtitle {
    font-size: 16px;
    line-height: 1.9;
  }

  .register-review-card {
    padding: 30px 24px;
    border-radius: 24px;
  }

  .register-review-card h3 {
    font-size: 24px;
  }

  .register-review-card p {
    font-size: 15px;
    line-height: 1.9;
  }

  .register-review-stars {
    font-size: 21px;
  }

}

/* section 9*/
/* ================================= */
/* REGISTER FAQ TWO SECTION */
/* ================================= */
/* ================================= */
/* REGISTER FAQ TWO SECTION */
/* PREMIUM LIGHT MAROON UI */
/* ================================= */

.register-faq-two-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background:
    linear-gradient(135deg,
      #fff8f9,
      #fdecef,
      #fff5f6);
}

/* BACKGROUND EFFECTS */

.register-faq-two-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  background: rgba(177, 68, 100, 0.06);
  border-radius: 50%;
  top: -220px;
  left: -180px;
  filter: blur(100px);
}

.register-faq-two-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  bottom: -160px;
  right: -140px;
  filter: blur(90px);
}

/* ================================= */
/* TITLE */
/* ================================= */

.register-faq-two-badge {
  display: inline-block;
  background: rgba(177, 68, 100, 0.10);
  color: #a13658;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(177, 68, 100, 0.12);
  backdrop-filter: blur(10px);
}

.register-faq-two-title {
  font-size: 52px;
  font-weight: 800;
  color: #6e1f3e;
  margin-bottom: 22px;
  line-height: 1.4;
}

.register-faq-two-subtitle {
  font-size: 18px;
  color: #6b5a61;
  line-height: 2;
  max-width: 850px;
  margin: auto;
}

/* ================================= */
/* CARD */
/* ================================= */

.register-faq-two-card {
  position: relative;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 38px;
  border-radius: 30px;
  height: 100%;
  box-shadow: 0 15px 35px rgba(120, 40, 60, 0.08);
  transition: 0.4s;
  border: 1px solid rgba(177, 68, 100, 0.10);
  overflow: hidden;
}

/* GLOW EFFECT */

.register-faq-two-card::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(177, 68, 100, 0.05);
  border-radius: 50%;
  top: -80px;
  right: -80px;
}

/* HOVER */

.register-faq-two-card:hover {
  transform: translateY(-10px);
  border-color: rgba(177, 68, 100, 0.28);
  box-shadow: 0 22px 45px rgba(120, 40, 60, 0.14);
}

/* ================================= */
/* HIGHLIGHT CARD */
/* ================================= */

.register-faq-two-card.highlight {
  background:
    linear-gradient(135deg,
      #a13658,
      #842c4a,
      #651d35);
  border: none;
  box-shadow: 0 22px 45px rgba(120, 40, 60, 0.20);
}

.register-faq-two-card.highlight::before {
  background: rgba(255, 255, 255, 0.08);
}

.register-faq-two-card.highlight h3,
.register-faq-two-card.highlight p {
  color: #fff;
}

.register-faq-two-card.highlight a {
  color: #ffe2eb;
}

/* ================================= */
/* CONTENT */
/* ================================= */

.register-faq-two-card h3 {
  font-size: 27px;
  font-weight: 700;
  color: #6f1f3e;
  margin-bottom: 22px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.register-faq-two-card p {
  font-size: 16px;
  color: #5f4d55;
  line-height: 2;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

/* ================================= */
/* LINK */
/* ================================= */

.register-faq-two-card a {
  color: #a13658;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.register-faq-two-card a:hover {
  text-decoration: underline;
}

/* ================================= */
/* EXTRA HIGHLIGHT */
/* ================================= */

.register-faq-two-highlight {
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 18px;
  border-left: 4px solid #ffd4df;
  font-size: 15px;
  line-height: 2;
  color: #fff;
  margin-top: 14px;
  position: relative;
  z-index: 2;
}

/* ================================= */
/* RESPONSIVE */
/* ================================= */

@media(max-width:768px) {

  .register-faq-two-section {
    padding: 70px 0;
  }

  .register-faq-two-title {
    font-size: 34px;
  }

  .register-faq-two-subtitle {
    font-size: 16px;
    line-height: 1.9;
  }

  .register-faq-two-card {
    padding: 30px 24px;
    border-radius: 24px;
  }

  .register-faq-two-card h3 {
    font-size: 23px;
  }

  .register-faq-two-card p {
    font-size: 15px;
    line-height: 1.9;
  }

  .register-faq-two-highlight {
    padding: 18px;
    font-size: 14px;
  }

}

/* section 10*/
/* ================================= */
/* REGISTER AUTHOR SECTION */
/* ================================= */
/* ================================= */
/* REGISTER AUTHOR SECTION */
/* PREMIUM LIGHT MAROON UI */
/* ================================= */

.register-author-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background:
    linear-gradient(135deg,
      #fff8f9,
      #fdecef,
      #fff5f6);
}

/* BACKGROUND EFFECT */

.register-author-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  background: rgba(177, 68, 100, 0.06);
  border-radius: 50%;
  top: -220px;
  left: -180px;
  filter: blur(100px);
}

.register-author-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  bottom: -160px;
  right: -140px;
  filter: blur(90px);
}

/* ================================= */
/* MAIN BOX */
/* ================================= */

.register-author-box {
  position: relative;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 34px;
  padding: 50px;
  box-shadow: 0 18px 40px rgba(120, 40, 60, 0.10);
  border: 1px solid rgba(177, 68, 100, 0.10);
  overflow: hidden;
}

/* GLOW */

.register-author-box::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background: rgba(177, 68, 100, 0.05);
  border-radius: 50%;
  top: -120px;
  right: -120px;
}

/* ================================= */
/* TOP */
/* ================================= */

.register-author-top {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 38px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* ================================= */
/* ICON */
/* ================================= */

.register-author-icon {
  width: 90px;
  height: 90px;
  background:
    linear-gradient(135deg,
      #b14464,
      #8e2d4d);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  flex-shrink: 0;
  box-shadow: 0 12px 28px rgba(177, 68, 100, 0.22);
}

/* ================================= */
/* TAG */
/* ================================= */

.register-author-tag {
  display: inline-block;
  background: rgba(177, 68, 100, 0.10);
  color: #a13658;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(177, 68, 100, 0.10);
}

/* ================================= */
/* TITLE */
/* ================================= */

.register-author-title {
  font-size: 42px;
  font-weight: 800;
  color: #6e1f3e;
  margin-bottom: 0;
  line-height: 1.4;
}

/* ================================= */
/* CONTENT */
/* ================================= */

.register-author-content {
  position: relative;
  z-index: 2;
}

.register-author-content p {
  font-size: 17px;
  line-height: 2.1;
  color: #5f4d55;
  margin-bottom: 22px;
}

/* ================================= */
/* REVIEW BOX */
/* ================================= */

.register-author-review {
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(10px);
  border-left: 4px solid #b14464;
  padding: 22px;
  border-radius: 18px;
  font-size: 16px;
  color: #5f4d55;
  margin-top: 14px;
  line-height: 2;
  border: 1px solid rgba(177, 68, 100, 0.08);
}

/* ================================= */
/* BADGES */
/* ================================= */

.register-author-info {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
  position: relative;
  z-index: 2;
}

.register-author-badge {
  background:
    linear-gradient(135deg,
      #a13658,
      #842c4a);
  color: #fff;
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(177, 68, 100, 0.14);
  transition: 0.3s;
}

.register-author-badge:hover {
  transform: translateY(-3px);
}

/* ================================= */
/* FOOTER */
/* ================================= */

.register-author-footer {
  margin-top: 40px;
  font-size: 20px;
  font-weight: 700;
  color: #6e1f3e;
  text-align: center;
  border-top: 1px solid rgba(177, 68, 100, 0.10);
  padding-top: 28px;
  position: relative;
  z-index: 2;
}

/* ================================= */
/* RESPONSIVE */
/* ================================= */

@media(max-width:768px) {

  .register-author-section {
    padding: 70px 0;
  }

  .register-author-box {
    padding: 32px 24px;
    border-radius: 26px;
  }

  .register-author-title {
    font-size: 30px;
  }

  .register-author-content p {
    font-size: 15px;
    line-height: 1.95;
  }

  .register-author-review {
    font-size: 15px;
    padding: 18px;
  }

  .register-author-badge {
    width: 100%;
    text-align: center;
  }

  .register-author-icon {
    width: 74px;
    height: 74px;
    font-size: 30px;
  }

  .register-author-footer {
    font-size: 17px;
  }

}

/* section 11*/
/* ================================= */
/* REGISTER RESPONSIBLE SECTION */
/* ================================= */

/* ================================= */
/* RESPONSIBLE SECTION */
/* PREMIUM LIGHT MAROON UI */
/* ================================= */

.register-responsible-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background:
    linear-gradient(135deg,
      #fff8f9,
      #fdecef,
      #fff5f6);
}

/* BACKGROUND EFFECTS */

.register-responsible-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  background: rgba(177, 68, 100, 0.06);
  border-radius: 50%;
  top: -220px;
  left: -180px;
  filter: blur(100px);
}

.register-responsible-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  bottom: -160px;
  right: -140px;
  filter: blur(90px);
}

/* ================================= */
/* MAIN BOX */
/* ================================= */

.register-responsible-box {
  position: relative;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 34px;
  padding: 50px;
  border: 1px solid rgba(177, 68, 100, 0.10);
  box-shadow: 0 18px 40px rgba(120, 40, 60, 0.10);
  overflow: hidden;
}

/* GLOW EFFECT */

.register-responsible-box::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background: rgba(177, 68, 100, 0.05);
  border-radius: 50%;
  top: -120px;
  right: -120px;
}

/* ================================= */
/* HEADER */
/* ================================= */

.register-responsible-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 42px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* ================================= */
/* ICON */
/* ================================= */

.register-responsible-icon {
  width: 90px;
  height: 90px;
  background:
    linear-gradient(135deg,
      #b14464,
      #8e2d4d);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  flex-shrink: 0;
  box-shadow: 0 12px 28px rgba(177, 68, 100, 0.22);
}

/* ================================= */
/* TAG */
/* ================================= */

.register-responsible-tag {
  display: inline-block;
  background: rgba(177, 68, 100, 0.10);
  color: #a13658;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(177, 68, 100, 0.10);
}

/* ================================= */
/* TITLE */
/* ================================= */

.register-responsible-title {
  font-size: 32px;
  font-weight: 800;
  color: #6e1f3e;
  margin-bottom: 0;
  line-height: 1.4;
}

/* ================================= */
/* CONTENT */
/* ================================= */

.register-responsible-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  z-index: 2;
}

/* ================================= */
/* CARD */
/* ================================= */

.register-responsible-card {
  position: relative;
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(14px);
  padding: 34px;
  border-radius: 26px;
  border-left: 5px solid #b14464;
  border: 1px solid rgba(177, 68, 100, 0.08);
  transition: 0.4s;
  overflow: hidden;
}

/* CARD GLOW */

.register-responsible-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(177, 68, 100, 0.05);
  border-radius: 50%;
  top: -70px;
  right: -70px;
}

.register-responsible-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(120, 40, 60, 0.12);
  border-color: rgba(177, 68, 100, 0.20);
}

/* ================================= */
/* CARD TITLE */
/* ================================= */

.register-responsible-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: #6f1f3e;
  margin-bottom: 20px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* ================================= */
/* PARAGRAPH */
/* ================================= */

.register-responsible-card p {
  font-size: 16px;
  line-height: 2;
  color: #5f4d55;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

/* ================================= */
/* HELP BOX */
/* ================================= */

.register-responsible-help {
  background: rgba(177, 68, 100, 0.06);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 18px;
  font-size: 15px;
  line-height: 2;
  color: #5f4d55;
  border: 1px solid rgba(177, 68, 100, 0.08);
  position: relative;
  z-index: 2;
}

/* ================================= */
/* LINKS */
/* ================================= */

.register-responsible-help a {
  color: #a13658;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.register-responsible-help a:hover {
  text-decoration: underline;
}

/* ================================= */
/* RESPONSIVE */
/* ================================= */

@media(max-width:768px) {

  .register-responsible-section {
    padding: 70px 0;
  }

  .register-responsible-box {
    padding: 32px 24px;
    border-radius: 26px;
  }

  .register-responsible-title {
    font-size: 30px;
  }

  .register-responsible-card {
    padding: 28px 22px;
    border-radius: 22px;
  }

  .register-responsible-card h3 {
    font-size: 23px;
  }

  .register-responsible-card p {
    font-size: 15px;
    line-height: 1.9;
  }

  .register-responsible-help {
    font-size: 14px;
    padding: 18px;
  }

  .register-responsible-icon {
    width: 74px;
    height: 74px;
    font-size: 30px;
  }

}











/*reddy-anna-whatsapp-number page*/

/*section 1*/
/* ================================= */
/* WHATSAPP ONE HERO SECTION */
/* ================================= */
.whatsapp-one-section {
  position: relative;
  padding: 60px 0;
  margin-top: 50px;
  overflow: hidden;
  background: linear-gradient(135deg, #fff8f9, #fdecef, #fff5f6);
}

/* soft animated glow background */
.whatsapp-one-section::before,
.whatsapp-one-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 0;
  animation: waGlow 10s ease-in-out infinite alternate;
}

.whatsapp-one-section::before {
  width: 520px;
  height: 520px;
  background: rgba(177, 68, 100, 0.07);
  top: -200px;
  left: -160px;
}

.whatsapp-one-section::after {
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, 0.5);
  bottom: -160px;
  right: -140px;
}

@keyframes waGlow {
  0% {
    transform: translateY(0px) scale(1);
  }

  100% {
    transform: translateY(35px) scale(1.08);
  }
}

/* ========================= */
/* MAIN CARD */
/* ========================= */

.whatsapp-one-card {
  position: relative;
  z-index: 2;

  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  padding: 50px;
  border-radius: 32px;

  box-shadow: 0 25px 60px rgba(120, 40, 60, 0.12);
  border: 1px solid rgba(177, 68, 100, 0.12);
}

/* ========================= */
/* BADGE */
/* ========================= */

.whatsapp-one-badge {
  display: inline-block;
  background: rgba(177, 68, 100, 0.10);
  color: #a13658;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(177, 68, 100, 0.12);
}

/* ========================= */
/* TITLE */
/* ========================= */

.whatsapp-one-title {
  font-size: 46px;
  font-weight: 800;
  color: #6e1f3e;
  line-height: 1.3;
  margin-bottom: 25px;
}

.whatsapp-one-title span {
  color: #b14464;
}

/* ========================= */
/* DESCRIPTION */
/* ========================= */

.whatsapp-one-description {
  font-size: 16px;
  line-height: 2;
  color: #5f4d55;
  margin-bottom: 35px;
}

/* ========================= */
/* BUTTON */
/* ========================= */

.whatsapp-one-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  background: linear-gradient(135deg, #b14464, #8e2d4d);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 60px;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(177, 68, 100, 0.25);
  transition: 0.4s;
}

.whatsapp-one-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 55px rgba(177, 68, 100, 0.35);
  color: #fff;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:768px) {

  .whatsapp-one-card {
    padding: 28px;
    border-radius: 24px;
  }

  .whatsapp-one-title {
    font-size: 30px;
  }

  .whatsapp-one-description {
    font-size: 15px;
    line-height: 1.9;
  }

  .whatsapp-one-btn {
    width: 100%;
    padding: 14px 20px;
  }
}

/*section 2*/
/* ================================= */
/* WHATSAPP TWO SECTION */
/* PREMIUM LIGHT MAROON UI */
/* ================================= */

.whatsapp-two-section {
  background:
    linear-gradient(135deg,
      #fff8f9,
      #fdecef,
      #fff6f7);
  position: relative;
  overflow: hidden;
}

/* BACKGROUND EFFECT */

.whatsapp-two-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(177, 68, 100, 0.05);
  border-radius: 50%;
  top: -220px;
  left: -180px;
  filter: blur(120px);
}

.whatsapp-two-section::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  bottom: -140px;
  right: -120px;
  filter: blur(90px);
}

/* TITLE */

.whatsapp-two-badge {
  display: inline-block;
  background: rgba(177, 68, 100, 0.10);
  color: #a13658;
  padding: 11px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: 1px;
  border: 1px solid rgba(177, 68, 100, 0.10);
}

.whatsapp-two-title {
  font-size: 48px;
  font-weight: 800;
  color: #6f1f3e;
  line-height: 1.3;
  margin-bottom: 20px;
}

.whatsapp-two-subtitle {
  font-size: 17px;
  color: #6a5860;
  line-height: 2;
  max-width: 900px;
  margin: auto;
}

/* CARD */

.whatsapp-two-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  padding: 35px;
  border-radius: 28px;
  height: 100%;
  box-shadow: 0 15px 35px rgba(120, 40, 60, 0.08);
  border: 1px solid rgba(177, 68, 100, 0.10);
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

.whatsapp-two-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(120, 40, 60, 0.14);
}

/* GLOW */

.whatsapp-two-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(177, 68, 100, 0.05);
  border-radius: 50%;
  top: -80px;
  right: -80px;
}

/* ICON */

.whatsapp-two-icon {
  width: 72px;
  height: 72px;
  background:
    linear-gradient(135deg,
      #b14464,
      #8e2d4d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 24px;
  color: #fff;
  box-shadow: 0 12px 28px rgba(177, 68, 100, 0.20);
  position: relative;
  z-index: 2;
}

/* CONTENT */

.whatsapp-two-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: #6f1f3e;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.whatsapp-two-card p {
  font-size: 16px;
  line-height: 2;
  color: #5f4d55;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

/* HIGHLIGHT */

.whatsapp-two-highlight {
  background: rgba(177, 68, 100, 0.06);
  border-left: 4px solid #b14464;
  padding: 18px;
  border-radius: 18px;
  font-size: 15px;
  line-height: 1.9;
  color: #6b4c57;
  position: relative;
  z-index: 2;
}

/* RESPONSIVE */

@media(max-width:768px) {

  .whatsapp-two-title {
    font-size: 34px;
  }

  .whatsapp-two-subtitle {
    font-size: 15px;
    line-height: 1.9;
  }

  .whatsapp-two-card {
    padding: 28px;
    border-radius: 24px;
  }

  .whatsapp-two-card h3 {
    font-size: 23px;
  }

  .whatsapp-two-card p {
    font-size: 15px;
  }

  .whatsapp-two-highlight {
    font-size: 14px;
  }

  .whatsapp-two-icon {
    width: 62px;
    height: 62px;
    font-size: 26px;
  }

}

/*section 3*/
/* ================================= */
/* WHATSAPP THREE SECTION */
/* PREMIUM LIGHT MAROON UI */
/* ================================= */

/* ================================= */
/* WHATSAPP THREE SECTION */
/* PREMIUM LIGHT MAROON UI */
/* ================================= */

.whatsapp-three-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg,
      #fff8f9,
      #fdecef,
      #fff6f7);
}

/* BACKGROUND EFFECT */

.whatsapp-three-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  background: rgba(177, 68, 100, 0.05);
  border-radius: 50%;
  top: -220px;
  left: -180px;
  filter: blur(120px);
}

.whatsapp-three-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  bottom: -160px;
  right: -140px;
  filter: blur(100px);
}

/* TITLE */

.whatsapp-three-badge {
  display: inline-block;
  background: rgba(177, 68, 100, 0.10);
  color: #a13658;
  padding: 11px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: 1px;
  border: 1px solid rgba(177, 68, 100, 0.10);
}

.whatsapp-three-title {
  font-size: 48px;
  font-weight: 800;
  color: #6f1f3e;
  line-height: 1.3;
  margin-bottom: 20px;
}

.whatsapp-three-subtitle {
  font-size: 17px;
  line-height: 2;
  color: #67535b;
  max-width: 920px;
  margin: auto;
}

/* CARD */

.whatsapp-three-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  padding: 35px;
  border-radius: 28px;
  height: 100%;
  box-shadow: 0 15px 35px rgba(120, 40, 60, 0.08);
  border: 1px solid rgba(177, 68, 100, 0.10);
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

.whatsapp-three-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(120, 40, 60, 0.14);
}

/* GLOW */

.whatsapp-three-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(177, 68, 100, 0.05);
  border-radius: 50%;
  top: -80px;
  right: -80px;
}

/* NUMBER */

.whatsapp-three-number {
  width: 72px;
  height: 72px;
  background:
    linear-gradient(135deg,
      #b14464,
      #8e2d4d);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  box-shadow: 0 12px 28px rgba(177, 68, 100, 0.20);
  position: relative;
  z-index: 2;
}

/* CONTENT */

.whatsapp-three-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: #6f1f3e;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.whatsapp-three-card p {
  font-size: 16px;
  line-height: 2;
  color: #5f4d55;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

/* HIGHLIGHT */

.whatsapp-three-highlight {
  background: rgba(177, 68, 100, 0.06);
  border-left: 4px solid #b14464;
  padding: 18px;
  border-radius: 18px;
  font-size: 15px;
  line-height: 1.9;
  color: #6b4c57;
  position: relative;
  z-index: 2;
}

/* RESPONSIVE */

@media(max-width:768px) {

  .whatsapp-three-title {
    font-size: 34px;
  }

  .whatsapp-three-subtitle {
    font-size: 15px;
    line-height: 1.9;
  }

  .whatsapp-three-card {
    padding: 28px;
    border-radius: 24px;
  }

  .whatsapp-three-card h3 {
    font-size: 23px;
  }

  .whatsapp-three-card p {
    font-size: 15px;
  }

  .whatsapp-three-highlight {
    font-size: 14px;
  }

  .whatsapp-three-number {
    width: 62px;
    height: 62px;
    font-size: 22px;
  }

}

/*section 4*/

/* ================================= */
/* WHATSAPP FOUR SECTION */
/* PREMIUM LIGHT MAROON UI */
/* ================================= */

.whatsapp-four-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg,
      #fff8f9,
      #fdecef,
      #fff6f7);
}

/* BACKGROUND EFFECT */

.whatsapp-four-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  background: rgba(177, 68, 100, 0.05);
  border-radius: 50%;
  top: -220px;
  left: -180px;
  filter: blur(120px);
}

.whatsapp-four-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  bottom: -160px;
  right: -140px;
  filter: blur(100px);
}

/* TITLE */

.whatsapp-four-badge {
  display: inline-block;
  background: rgba(177, 68, 100, 0.10);
  color: #a13658;
  padding: 11px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: 1px;
  border: 1px solid rgba(177, 68, 100, 0.10);
}

.whatsapp-four-title {
  font-size: 46px;
  font-weight: 800;
  color: #6f1f3e;
  line-height: 1.35;
  margin-bottom: 20px;
}

.whatsapp-four-subtitle {
  font-size: 17px;
  line-height: 2;
  color: #67535b;
  max-width: 900px;
  margin: auto;
}

/* CARD */

.whatsapp-four-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  padding: 35px;
  border-radius: 28px;
  height: 100%;
  box-shadow: 0 15px 35px rgba(120, 40, 60, 0.08);
  border: 1px solid rgba(177, 68, 100, 0.10);
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

.whatsapp-four-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(120, 40, 60, 0.14);
}

/* GLOW */

.whatsapp-four-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(177, 68, 100, 0.05);
  border-radius: 50%;
  top: -80px;
  right: -80px;
}

/* ICON */

.whatsapp-four-icon {
  width: 72px;
  height: 72px;
  background:
    linear-gradient(135deg,
      #b14464,
      #8e2d4d);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 24px;
  box-shadow: 0 12px 28px rgba(177, 68, 100, 0.20);
  position: relative;
  z-index: 2;
}

/* CONTENT */

.whatsapp-four-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: #6f1f3e;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.whatsapp-four-card p {
  font-size: 16px;
  line-height: 2;
  color: #5f4d55;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

/* HIGHLIGHT */

.whatsapp-four-highlight {
  background: rgba(177, 68, 100, 0.06);
  border-left: 4px solid #b14464;
  padding: 18px;
  border-radius: 18px;
  font-size: 15px;
  line-height: 1.9;
  color: #6b4c57;
  position: relative;
  z-index: 2;
}

/* ALERT BOX */

.whatsapp-four-alert {
  background:
    linear-gradient(135deg,
      #b14464,
      #8e2d4d);
  padding: 35px;
  border-radius: 30px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  box-shadow: 0 18px 40px rgba(120, 40, 60, 0.18);
  position: relative;
  overflow: hidden;
}

.whatsapp-four-alert::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -100px;
  right: -100px;
}

.whatsapp-four-alert-icon {
  min-width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: #fff;
  position: relative;
  z-index: 2;
}

.whatsapp-four-alert h4 {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.whatsapp-four-alert p {
  font-size: 16px;
  line-height: 2;
  color: #fff;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

/* RESPONSIVE */

@media(max-width:768px) {

  .whatsapp-four-title {
    font-size: 34px;
  }

  .whatsapp-four-subtitle {
    font-size: 15px;
    line-height: 1.9;
  }

  .whatsapp-four-card {
    padding: 28px;
    border-radius: 24px;
  }

  .whatsapp-four-card h3 {
    font-size: 23px;
  }

  .whatsapp-four-card p {
    font-size: 15px;
  }

  .whatsapp-four-highlight {
    font-size: 14px;
  }

  .whatsapp-four-icon {
    width: 62px;
    height: 62px;
    font-size: 26px;
  }

  .whatsapp-four-alert {
    flex-direction: column;
    padding: 28px 22px;
    border-radius: 24px;
  }

  .whatsapp-four-alert h4 {
    font-size: 24px;
  }

  .whatsapp-four-alert p {
    font-size: 15px;
    line-height: 1.9;
  }

  .whatsapp-four-alert-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }

}

/*section 5*/
/* ================================= */
/* WHATSAPP FIVE SECTION */
/* PREMIUM LIGHT MAROON UI */
/* ================================= */

.whatsapp-five-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg,
      #fff8f9,
      #fdecef,
      #fff6f7);
}

/* BACKGROUND EFFECT */

.whatsapp-five-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  background: rgba(177, 68, 100, 0.05);
  border-radius: 50%;
  top: -220px;
  left: -180px;
  filter: blur(120px);
}

.whatsapp-five-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  bottom: -160px;
  right: -140px;
  filter: blur(100px);
}

/* TITLE */

.whatsapp-five-badge {
  display: inline-block;
  background: rgba(177, 68, 100, 0.10);
  color: #a13658;
  padding: 11px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: 1px;
  border: 1px solid rgba(177, 68, 100, 0.10);
}

.whatsapp-five-title {
  font-size: 46px;
  font-weight: 800;
  color: #6f1f3e;
  line-height: 1.35;
  margin-bottom: 20px;
}

.whatsapp-five-subtitle {
  font-size: 17px;
  line-height: 2;
  color: #67535b;
  max-width: 900px;
  margin: auto;
}

/* TABLE BOX */

.whatsapp-five-table-box {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(120, 40, 60, 0.08);
  border: 1px solid rgba(177, 68, 100, 0.10);
  position: relative;
  z-index: 2;
}

/* TABLE */

.whatsapp-five-table {
  margin: 0;
}

.whatsapp-five-table thead {
  background:
    linear-gradient(135deg,
      #b14464,
      #8e2d4d);
}

.whatsapp-five-table thead th {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 24px 28px;
  border: none;
}

.whatsapp-five-table tbody tr {
  transition: 0.3s;
}

.whatsapp-five-table tbody tr:hover {
  background: rgba(177, 68, 100, 0.04);
}

.whatsapp-five-table tbody td {
  padding: 24px 28px;
  border-color: rgba(177, 68, 100, 0.08);
  font-size: 16px;
  color: #5f4d55;
  vertical-align: middle;
}

/* TIME TAG */

.whatsapp-five-time {
  display: inline-block;
  background: rgba(177, 68, 100, 0.08);
  color: #8e2d4d;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
}

/* INFO BOX */

.whatsapp-five-info {
  background:
    linear-gradient(135deg,
      #b14464,
      #8e2d4d);
  padding: 35px;
  border-radius: 30px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  box-shadow: 0 18px 40px rgba(120, 40, 60, 0.18);
  position: relative;
  overflow: hidden;
}

.whatsapp-five-info::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -100px;
  right: -100px;
}

.whatsapp-five-info-icon {
  min-width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: #fff;
  position: relative;
  z-index: 2;
}

.whatsapp-five-info p {
  font-size: 16px;
  line-height: 2;
  color: #fff;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

/* RESPONSIVE */

@media(max-width:768px) {

  .whatsapp-five-title {
    font-size: 34px;
  }

  .whatsapp-five-subtitle {
    font-size: 15px;
    line-height: 1.9;
  }

  .whatsapp-five-table thead th {
    font-size: 16px;
    padding: 18px;
  }

  .whatsapp-five-table tbody td {
    padding: 18px;
    font-size: 14px;
  }

  .whatsapp-five-time {
    font-size: 13px;
    padding: 8px 14px;
  }

  .whatsapp-five-info {
    flex-direction: column;
    padding: 28px 22px;
    border-radius: 24px;
  }

  .whatsapp-five-info p {
    font-size: 15px;
    line-height: 1.9;
  }

  .whatsapp-five-info-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }

}

/*section 6*/

/* ================================= */
/* WHATSAPP SIX SECTION */
/* ================================= */

.whatsapp-six-section {
  background: #fff8f9;
  position: relative;
  overflow: hidden;
}

/* TITLE */

.whatsapp-six-badge {
  display: inline-block;
  background: rgba(177, 68, 100, 0.10);
  color: #a13658;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.whatsapp-six-title {
  font-size: 44px;
  font-weight: 800;
  color: #6e1f3e;
  line-height: 1.4;
  margin-bottom: 18px;
}

.whatsapp-six-subtitle {
  font-size: 17px;
  color: #5f4d55;
  line-height: 2;
}

/* STEP */

.whatsapp-six-step {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  border-radius: 28px;
  padding: 35px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  border: 1px solid rgba(177, 68, 100, 0.10);
  box-shadow: 0 12px 35px rgba(120, 40, 60, 0.08);
  transition: 0.4s;
}

.whatsapp-six-step:hover {
  transform: translateY(-6px);
}

/* NUMBER */

.whatsapp-six-number {
  min-width: 78px;
  height: 78px;
  background: linear-gradient(135deg, #b14464, #8e2d4d);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(177, 68, 100, 0.25);
}

/* CONTENT */

.whatsapp-six-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: #6f1f3e;
  margin-bottom: 18px;
  line-height: 1.5;
}

.whatsapp-six-content p {
  font-size: 16px;
  color: #5f4d55;
  line-height: 2;
  margin-bottom: 0;
}

/* HIGHLIGHT */

.whatsapp-six-highlight {
  background: linear-gradient(135deg, #b14464, #8e2d4d);
  padding: 35px;
  border-radius: 28px;
  color: #fff;
  box-shadow: 0 15px 40px rgba(177, 68, 100, 0.20);
}

.whatsapp-six-highlight p {
  font-size: 17px;
  line-height: 2;
  margin-bottom: 18px;
}

.whatsapp-six-highlight a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.whatsapp-six-highlight a:hover {
  text-decoration: underline;
}

/* BUTTON */

.whatsapp-six-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #b14464, #8e2d4d);
  color: #fff;
  text-decoration: none;
  border-radius: 70px;
  font-size: 18px;
  font-weight: 700;
  transition: 0.4s;
  box-shadow: 0 15px 35px rgba(177, 68, 100, 0.22);
}

.whatsapp-six-btn:hover {
  transform: translateY(-5px);
  color: #fff;
  box-shadow: 0 22px 45px rgba(177, 68, 100, 0.30);
}

/* RESPONSIVE */

@media(max-width:768px) {

  .whatsapp-six-title {
    font-size: 32px;
  }

  .whatsapp-six-subtitle {
    font-size: 15px;
  }

  .whatsapp-six-step {
    flex-direction: column;
    padding: 28px 22px;
    gap: 20px;
  }

  .whatsapp-six-number {
    width: 70px;
    height: 70px;
    font-size: 24px;
  }

  .whatsapp-six-content h3 {
    font-size: 22px;
  }

  .whatsapp-six-content p {
    font-size: 15px;
    line-height: 1.9;
  }

  .whatsapp-six-highlight {
    padding: 28px 22px;
  }

  .whatsapp-six-highlight p {
    font-size: 15px;
  }

  .whatsapp-six-btn {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
  }

}

/*section 7*/
/* ================================= */
/* WHATSAPP SEVEN SECTION */
/* ================================= */

.whatsapp-seven-section {
  background: #fff8f9;
  position: relative;
  overflow: hidden;
}

/* TITLE */

.whatsapp-seven-badge {
  display: inline-block;
  background: rgba(177, 68, 100, 0.10);
  color: #a13658;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.whatsapp-seven-title {
  font-size: 44px;
  font-weight: 800;
  color: #6e1f3e;
  line-height: 1.4;
  margin-bottom: 18px;
}

.whatsapp-seven-subtitle {
  font-size: 17px;
  color: #5f4d55;
  line-height: 2;
}

/* CARD */

.whatsapp-seven-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  padding: 35px;
  border-radius: 30px;
  height: 100%;
  border: 1px solid rgba(177, 68, 100, 0.10);
  box-shadow: 0 12px 35px rgba(120, 40, 60, 0.08);
  transition: 0.4s;
}

.whatsapp-seven-card:hover {
  transform: translateY(-8px);
}

/* FEATURED */

.whatsapp-seven-card.featured {
  background: linear-gradient(135deg, #b14464, #8e2d4d);
}

.whatsapp-seven-card.featured h3,
.whatsapp-seven-card.featured p {
  color: #fff;
}

.whatsapp-seven-card.featured .whatsapp-seven-highlight {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-left: 4px solid #fff;
}

/* STARS */

.whatsapp-seven-stars {
  font-size: 24px;
  margin-bottom: 22px;
}

/* CONTENT */

.whatsapp-seven-card h3 {
  font-size: 27px;
  font-weight: 700;
  color: #6f1f3e;
  line-height: 1.5;
  margin-bottom: 20px;
}

.whatsapp-seven-card p {
  font-size: 16px;
  line-height: 2;
  color: #5f4d55;
  margin-bottom: 18px;
}

/* HIGHLIGHT */

.whatsapp-seven-highlight {
  background: rgba(177, 68, 100, 0.08);
  border-left: 4px solid #b14464;
  padding: 18px;
  border-radius: 16px;
  font-size: 15px;
  line-height: 1.9;
  color: #7a3550;
  margin-top: 10px;
  font-weight: 600;
}

/* RESPONSIVE */

@media(max-width:768px) {

  .whatsapp-seven-title {
    font-size: 32px;
  }

  .whatsapp-seven-subtitle {
    font-size: 15px;
  }

  .whatsapp-seven-card {
    padding: 28px 22px;
  }

  .whatsapp-seven-card h3 {
    font-size: 22px;
  }

  .whatsapp-seven-card p {
    font-size: 15px;
    line-height: 1.9;
  }

  .whatsapp-seven-stars {
    font-size: 20px;
  }

  .whatsapp-seven-highlight {
    font-size: 14px;
  }

}

/*section 8*/
/* ================================= */
/* WHATSAPP EIGHT SECTION */
/* ================================= */

.whatsapp-eight-section {
  background: #fff8f9;
  position: relative;
  overflow: hidden;
}

/* BACKGROUND EFFECT */

.whatsapp-eight-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(177, 68, 100, 0.05);
  border-radius: 50%;
  top: -220px;
  left: -180px;
  filter: blur(100px);
}

/* BADGE */

.whatsapp-eight-badge {
  display: inline-block;
  background: rgba(177, 68, 100, 0.10);
  color: #a13658;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  border: 1px solid rgba(177, 68, 100, 0.10);
}

/* TITLE */

.whatsapp-eight-title {
  font-size: 48px;
  font-weight: 800;
  color: #6e1f3e;
  margin-bottom: 20px;
  line-height: 1.3;
}

/* SUBTITLE */

.whatsapp-eight-subtitle {
  font-size: 17px;
  color: #6b5960;
  line-height: 2;
  max-width: 850px;
  margin: auto;
}

/* ACCORDION */

.whatsapp-eight-accordion .accordion-item {
  border: none;
  margin-bottom: 22px;
  border-radius: 24px !important;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 35px rgba(120, 40, 60, 0.08);
}

/* BUTTON */

.whatsapp-eight-accordion .accordion-button {
  background: transparent;
  color: #6e1f3e;
  font-size: 19px;
  font-weight: 700;
  padding: 28px 30px;
  box-shadow: none !important;
  border: none;
}

.whatsapp-eight-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #b14464, #8e2d4d);
  color: #fff;
}

.whatsapp-eight-accordion .accordion-button:focus {
  box-shadow: none;
}

/* BODY */

.whatsapp-eight-accordion .accordion-body {
  padding: 30px;
  font-size: 16px;
  line-height: 2;
  color: #5f4d55;
  background: #fff;
}

/* RESPONSIVE */

@media(max-width:768px) {

  .whatsapp-eight-section {
    padding: 70px 0;
  }

  .whatsapp-eight-title {
    font-size: 34px;
  }

  .whatsapp-eight-subtitle {
    font-size: 15px;
    line-height: 1.9;
  }

  .whatsapp-eight-accordion .accordion-button {
    font-size: 17px;
    padding: 22px;
    line-height: 1.6;
  }

  .whatsapp-eight-accordion .accordion-body {
    padding: 22px;
    font-size: 15px;
  }

}

/*section 9*/
/* AUTHOR SECTION */
.whatsapp-author-section {
  background: #fff8f9;
}

/* BOX */
.whatsapp-author-box {
  background: #ffffff;
  border-radius: 28px;
  padding: 45px;
  box-shadow: 0 18px 40px rgba(120, 40, 60, 0.10);
  border: 1px solid rgba(177, 68, 100, 0.12);
}

/* TOP */
.whatsapp-author-top {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 30px;
}

/* ICON */
.whatsapp-author-icon {
  width: 85px;
  height: 85px;
  background: linear-gradient(135deg, #b14464, #8e2d4d);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  box-shadow: 0 15px 30px rgba(177, 68, 100, 0.25);
}

/* TAG */
.whatsapp-author-tag {
  display: inline-block;
  background: rgba(177, 68, 100, 0.10);
  color: #a13658;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

/* TITLE */
.whatsapp-author-title {
  font-size: 36px;
  font-weight: 800;
  color: #6e1f3e;
  margin: 0;
}

/* CONTENT */
.whatsapp-author-content p {
  font-size: 17px;
  line-height: 2;
  color: #5f4d55;
  margin-bottom: 20px;
}

/* REVIEW BOX */
.whatsapp-author-review {
  background: #fff8f9;
  border-left: 4px solid #b14464;
  padding: 18px;
  border-radius: 16px;
  font-size: 15px;
  color: #5f4d55;
  line-height: 1.9;
}

/* BADGES */
.whatsapp-author-info {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.whatsapp-author-badge {
  background: #111;
  color: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
}

/* FOOTER */
.whatsapp-author-footer {
  margin-top: 30px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #6e1f3e;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

/* RESPONSIVE */
@media(max-width:768px) {

  .whatsapp-author-box {
    padding: 28px;
  }

  .whatsapp-author-title {
    font-size: 26px;
  }

  .whatsapp-author-content p {
    font-size: 15px;
  }

  .whatsapp-author-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }

  .whatsapp-author-badge {
    width: 100%;
    text-align: center;
  }
}

/*section 10*/
/* RESPONSIBLE SECTION */
.whatsapp-responsible-section {
  background: #fff8f9;
}

/* BOX */
.whatsapp-responsible-box {
  background: #ffffff;
  border-radius: 28px;
  padding: 45px;
  border: 1px solid rgba(177, 68, 100, 0.12);
  box-shadow: 0 18px 40px rgba(120, 40, 60, 0.10);
}

/* HEADER */
.whatsapp-responsible-header {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 35px;
}

/* ICON */
.whatsapp-responsible-icon {
  width: 85px;
  height: 85px;
  background: linear-gradient(135deg, #b14464, #8e2d4d);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  box-shadow: 0 15px 30px rgba(177, 68, 100, 0.25);
}

/* TAG */
.whatsapp-responsible-tag {
  display: inline-block;
  background: rgba(177, 68, 100, 0.10);
  color: #a13658;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* TITLE */
.whatsapp-responsible-title {
  font-size: 34px;
  font-weight: 800;
  color: #6e1f3e;
  margin: 0;
  line-height: 1.3;
}

/* CARDS */
.whatsapp-responsible-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.whatsapp-responsible-card {
  background: #fff8f9;
  padding: 28px;
  border-radius: 22px;
  border-left: 5px solid #b14464;
  transition: 0.3s;
}

.whatsapp-responsible-card:hover {
  transform: translateY(-5px);
}

/* TEXT */
.whatsapp-responsible-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #6e1f3e;
  margin-bottom: 12px;
}

.whatsapp-responsible-card p {
  font-size: 16px;
  line-height: 2;
  color: #5f4d55;
  margin-bottom: 15px;
}

/* HELP BOX */
.whatsapp-responsible-help {
  background: #fff;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(177, 68, 100, 0.12);
  font-size: 15px;
  color: #5f4d55;
  line-height: 1.8;
}

/* LINK */
.whatsapp-responsible-help a {
  color: #b14464;
  font-weight: 600;
  text-decoration: none;
}

.whatsapp-responsible-help a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media(max-width:768px) {

  .whatsapp-responsible-box {
    padding: 28px;
  }

  .whatsapp-responsible-title {
    font-size: 24px;
  }

  .whatsapp-responsible-card {
    padding: 20px;
  }

  .whatsapp-responsible-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
}

/*reddy-app*/

/*section 1*/



/* MAIN SECTION */
.reddy-app-one-section {
  position: relative;
  margin-top: 50px;
  padding: 50px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #fff8f9, #fdecef, #fff6f7);
}

/* FLOATING BACKGROUND */
.reddy-app-one-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(177, 68, 100, 0.05);
  border-radius: 50%;
  top: -240px;
  left: -200px;
  filter: blur(120px);
}

.reddy-app-one-section::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  bottom: -200px;
  right: -180px;
  filter: blur(120px);
}

/* HERO */
.reddy-app-one-hero {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.reddy-app-one-badge {
  display: inline-block;
  background: rgba(177, 68, 100, 0.10);
  color: #a13658;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.reddy-app-one-title {
  font-size: 46px;
  font-weight: 800;
  color: #6f1f3e;
  margin-bottom: 12px;
}

.reddy-app-one-title span {
  color: #b14464;
}

.reddy-app-one-subtitle {
  font-size: 17px;
  color: #6b4c57;
}

/* GRID */
.reddy-app-one-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  position: relative;
  z-index: 2;
}

/* CARD */
.reddy-app-one-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
  padding: 28px;
  border-radius: 22px;
  border: 1px solid rgba(177, 68, 100, 0.10);
  box-shadow: 0 12px 30px rgba(120, 40, 60, 0.08);
  transition: 0.35s;
}

.reddy-app-one-card:hover {
  transform: translateY(-6px);
}

.reddy-app-one-card h3 {
  font-size: 20px;
  color: #6f1f3e;
  margin-bottom: 10px;
}

.reddy-app-one-card p {
  font-size: 15px;
  line-height: 1.9;
  color: #5f4d55;
}

/* HIGHLIGHT CARD */
.reddy-app-one-card.highlight {
  background: linear-gradient(135deg, #b14464, #8e2d4d);
  color: #fff;
}

.reddy-app-one-card.highlight h3,
.reddy-app-one-card.highlight p {
  color: #fff;
}

/* WARNING BOX */
.reddy-app-one-warning {
  margin-top: 45px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 30px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(177, 68, 100, 0.10);
  position: relative;
  z-index: 2;
}

.reddy-app-one-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b14464, #8e2d4d);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.reddy-app-one-warning h4 {
  font-size: 22px;
  color: #6f1f3e;
  margin-bottom: 8px;
}

.reddy-app-one-warning p {
  font-size: 15px;
  color: #5f4d55;
  line-height: 1.9;
}

/* BUTTON */
.reddy-app-one-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #b14464, #8e2d4d);
  color: #fff;
  border-radius: 60px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.4s;
}

.reddy-app-one-btn:hover {
  transform: translateY(-5px);
}

/* RESPONSIVE */
@media(max-width:768px) {

  .reddy-app-one-grid {
    grid-template-columns: 1fr;
  }

  .reddy-app-one-title {
    font-size: 30px;
  }

  .reddy-app-one-warning {
    flex-direction: column;
  }

}



/*section 2*/
/* SECTION */
.reddy-app-two-section {
  padding: 50px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fff8f9, #fdecef, #fff6f7);
}

/* GLOW BACKGROUND */
.reddy-app-two-section::before {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  background: rgba(177, 68, 100, 0.05);
  border-radius: 50%;
  top: -250px;
  left: -220px;
  filter: blur(120px);
}

.reddy-app-two-section::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  bottom: -220px;
  right: -180px;
  filter: blur(120px);
}

/* HEADER */
.reddy-app-two-header {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.reddy-app-two-badge {
  display: inline-block;
  background: rgba(177, 68, 100, 0.10);
  color: #a13658;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

.reddy-app-two-title {
  font-size: 44px;
  font-weight: 800;
  color: #6f1f3e;
  line-height: 1.3;
}

/* GRID */
.reddy-app-two-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

/* CARD */
.reddy-app-two-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
  padding: 30px;
  border-radius: 24px;
  border: 1px solid rgba(177, 68, 100, 0.10);
  box-shadow: 0 15px 35px rgba(120, 40, 60, 0.08);
  transition: 0.35s;
}

.reddy-app-two-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 45px rgba(120, 40, 60, 0.15);
}

/* TEXT */
.reddy-app-two-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #6f1f3e;
  margin-bottom: 12px;
}

.reddy-app-two-card p {
  font-size: 15px;
  line-height: 2;
  color: #5f4d55;
  margin-bottom: 12px;
}

/* HIGHLIGHT */
.reddy-app-two-highlight {
  background: rgba(177, 68, 100, 0.06);
  border-left: 4px solid #b14464;
  padding: 16px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.9;
  color: #6b4c57;
}

/* RESPONSIVE */
@media(max-width:768px) {

  .reddy-app-two-grid {
    grid-template-columns: 1fr;
  }

  .reddy-app-two-title {
    font-size: 28px;
  }

}

/*section 3*/
/* ========================= */
/* REDDY APP THREE SECTION */
/* PREMIUM ANIMATED DESIGN */
/* ========================= */

.reddy-app-three-section {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #fff8f9, #fdecef, #fff6f7);
}

/* ANIMATED BACKGROUND BLOBS */

.reddy-app-three-section::before,
.reddy-app-three-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  animation: floatGlow 8s infinite alternate ease-in-out;
}

.reddy-app-three-section::before {
  width: 500px;
  height: 500px;
  background: rgba(177, 68, 100, 0.08);
  top: -200px;
  left: -150px;
}

.reddy-app-three-section::after {
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, 0.6);
  bottom: -180px;
  right: -140px;
}

/* ANIMATION */

@keyframes floatGlow {
  0% {
    transform: translateY(0px) scale(1);
  }

  100% {
    transform: translateY(40px) scale(1.1);
  }
}

/* BADGE */

.reddy-app-three-badge {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #a13658;
  background: rgba(177, 68, 100, 0.10);
  border: 1px solid rgba(177, 68, 100, 0.15);
  backdrop-filter: blur(12px);
}

/* TITLE */

.reddy-app-three-title {
  font-size: 44px;
  font-weight: 800;
  color: #6f1f3e;
  margin-top: 18px;
}

/* TABLE WRAPPER */

.reddy-app-three-table-wrapper {
  margin-top: 40px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 18px 40px rgba(120, 40, 60, 0.08);
  border: 1px solid rgba(177, 68, 100, 0.12);
}

/* TABLE */

.reddy-app-three-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 12px;
}

/* HEAD */

.reddy-app-three-table thead th {
  background: #b14464;
  color: #fff;
  padding: 16px;
  font-size: 15px;
  text-transform: uppercase;
}

/* ROW */

.reddy-app-three-table tbody tr {
  background: #fff;
  transition: 0.3s;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.reddy-app-three-table tbody tr:hover {
  transform: scale(1.01);
}

/* CELL */

.reddy-app-three-table td {
  padding: 16px;
  font-size: 15px;
  color: #5f4d55;
}

/*section 4*/

/* ========================= */
/* REDDY APP FOUR - REGISTER THEME */
/* ========================= */
/* ========================= */
/* REDDY APP FOUR SECTION */
/* PREMIUM INSTALL GUIDE UI */
/* ========================= */

.reddy-app-four-section {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #fff8f9, #fdecef, #fff6f7);
}

/* ANIMATED BACKGROUND */

.reddy-app-four-section::before,
.reddy-app-four-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  animation: floatGlowApp4 9s infinite alternate ease-in-out;
}

.reddy-app-four-section::before {
  width: 520px;
  height: 520px;
  background: rgba(177, 68, 100, 0.07);
  top: -200px;
  left: -160px;
}

.reddy-app-four-section::after {
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, 0.55);
  bottom: -160px;
  right: -120px;
}

/* ANIMATION */

@keyframes floatGlowApp4 {
  0% {
    transform: translateY(0px) scale(1);
  }

  100% {
    transform: translateY(35px) scale(1.08);
  }
}

/* BADGE */

.reddy-app-four-badge {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(177, 68, 100, 0.10);
  color: #a13658;
  border: 1px solid rgba(177, 68, 100, 0.15);
}

/* TITLE */

.reddy-app-four-title {
  font-size: 44px;
  font-weight: 800;
  color: #6f1f3e;
  margin-top: 18px;
}

/* CARD */

.reddy-app-four-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
  padding: 30px;
  border-radius: 26px;
  box-shadow: 0 15px 35px rgba(120, 40, 60, 0.08);
  border: 1px solid rgba(177, 68, 100, 0.12);
  transition: 0.4s;
  height: 100%;
}

.reddy-app-four-card:hover {
  transform: translateY(-6px);
}

/* STEP NUMBER */

.reddy-app-four-step {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #b14464, #8e2d4d);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
  box-shadow: 0 12px 28px rgba(177, 68, 100, 0.2);
}

/* TEXT */

.reddy-app-four-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #6f1f3e;
  margin-bottom: 12px;
}

.reddy-app-four-card p {
  font-size: 15px;
  line-height: 2;
  color: #5f4d55;
}

/* FINAL HIGHLIGHT */

.reddy-app-four-card.highlight {
  background: linear-gradient(135deg, #b14464, #8e2d4d);
  color: #fff;
}

.reddy-app-four-card.highlight h3,
.reddy-app-four-card.highlight p {
  color: #fff;
}

.reddy-app-four-highlight {
  margin-top: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  font-weight: 600;
}

/* RESPONSIVE */

@media(max-width:768px) {

  .reddy-app-four-title {
    font-size: 32px;
  }

  .reddy-app-four-card {
    padding: 24px;
  }

  .reddy-app-four-step {
    width: 55px;
    height: 55px;
    font-size: 18px;
  }
}

/*section 5*/

/* ========================= */
/* REDDY APP FIVE - IOS (REGISTER STYLE) */
/* ========================= */
/* ========================= */
/* REDDY APP FIVE - IOS (LIGHT MAROON PREMIUM REGISTER STYLE) */
/* ========================= */

.reddy-app-five-section {
  background: linear-gradient(135deg, #fff8f9, #fdecef, #fff5f6);
  position: relative;
  padding: 50px 0;
  overflow: hidden;
}

/* SOFT GLOW BACKGROUND */
.reddy-app-five-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  background: rgba(177, 68, 100, 0.06);
  border-radius: 50%;
  top: -200px;
  left: -150px;
  filter: blur(110px);
}

.reddy-app-five-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  bottom: -150px;
  right: -120px;
  filter: blur(100px);
}

/* BADGE */
.reddy-app-five-badge {
  display: inline-block;
  background: rgba(177, 68, 100, 0.10);
  color: #a13658;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
  border: 1px solid rgba(177, 68, 100, 0.12);
}

/* TITLE */
.reddy-app-five-title {
  font-size: 42px;
  font-weight: 800;
  color: #6e1f3e;
  margin-bottom: 18px;
  line-height: 1.4;
}

/* CARD */
.reddy-app-five-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  padding: 35px;
  border-radius: 28px;
  height: 100%;
  box-shadow: 0 15px 35px rgba(120, 40, 60, 0.10);
  border: 1px solid rgba(177, 68, 100, 0.12);
  border-top: 5px solid #b14464;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

.reddy-app-five-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(120, 40, 60, 0.15);
}

/* STEP CIRCLE */
.reddy-app-five-step {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #b14464, #8e2d4d);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  box-shadow: 0 12px 28px rgba(177, 68, 100, 0.22);
}

/* TEXT */
.reddy-app-five-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: #6f1f3e;
  margin-bottom: 16px;
}

.reddy-app-five-card p {
  font-size: 16px;
  line-height: 2;
  color: #5f4d55;
}

/* DARK FINAL CARD */
.reddy-app-five-card.highlight {
  background: #1b1b1b;
  color: #fff;
  border-top: 5px solid #ffcc00;
}

.reddy-app-five-card.highlight h3,
.reddy-app-five-card.highlight p {
  color: #fff;
}

/* CTA BOX */
.reddy-app-five-highlight {
  margin-top: 15px;
  padding: 16px;
  background: linear-gradient(135deg, #b14464, #8e2d4d);
  color: #fff;
  border-radius: 18px;
  font-weight: 700;
  box-shadow: 0 12px 25px rgba(177, 68, 100, 0.20);
}

/* RESPONSIVE */
@media(max-width:768px) {

  .reddy-app-five-title {
    font-size: 30px;
  }

  .reddy-app-five-card {
    padding: 26px;
    border-radius: 24px;
  }

  .reddy-app-five-step {
    width: 62px;
    height: 62px;
    font-size: 20px;
  }
}

/*section 6*/

/* REDDY APP SIX SECTION - LIGHT MAROON PREMIUM */
.reddy-app-six-section {
  position: relative;
  padding: 50px 0;
  overflow: hidden;

  /* LIGHT MAROON GRADIENT BACKGROUND */
  background: linear-gradient(135deg, #fff8f9, #fdecef, #fff5f6);
}

/* ANIMATED GLOW BACKGROUNDS */
.reddy-app-six-section::before,
.reddy-app-six-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  animation: floatGlow 9s ease-in-out infinite alternate;
}

.reddy-app-six-section::before {
  width: 520px;
  height: 520px;
  background: rgba(177, 68, 100, 0.08);
  top: -200px;
  left: -150px;
}

.reddy-app-six-section::after {
  width: 420px;
  height: 420px;
  background: rgba(142, 45, 77, 0.06);
  bottom: -160px;
  right: -120px;
}

/* ANIMATION */
@keyframes floatGlow {
  0% {
    transform: translateY(0px) scale(1);
  }

  100% {
    transform: translateY(30px) scale(1.12);
  }
}

/* BADGE */
.reddy-app-six-badge {
  display: inline-block;
  background: rgba(177, 68, 100, 0.10);
  color: #a13658;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
  border: 1px solid rgba(177, 68, 100, 0.15);
}

/* TITLE */
.reddy-app-six-title {
  font-size: 42px;
  font-weight: 800;
  color: #6e1f3e;
  margin-bottom: 15px;
}

.reddy-app-six-title span {
  color: #b14464;
}

/* SUBTITLE */
.reddy-app-six-subtitle {
  font-size: 16px;
  color: #5f4d55;
  max-width: 750px;
  margin: auto;
  line-height: 1.8;
}

/* CARD (GLASS MAROON STYLE) */
.reddy-app-six-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  border-radius: 28px;
  padding: 35px;
  box-shadow: 0 18px 45px rgba(120, 40, 60, 0.10);
  border: 1px solid rgba(177, 68, 100, 0.12);
  border-top: 5px solid #b14464;
}

/* TABLE ROW */
.reddy-app-six-table .row-item {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(177, 68, 100, 0.08);
  font-size: 15px;
  color: #5f4d55;
}

/* HEADER ROW */
.reddy-app-six-table .row-item.head {
  font-weight: 800;
  color: #6e1f3e;
  border-bottom: 2px solid #b14464;
}

/* NOTE BOX */
.reddy-app-six-note {
  margin-top: 25px;
  padding: 18px;
  background: rgba(177, 68, 100, 0.08);
  border-left: 4px solid #b14464;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.9;
  color: #5f4d55;
}

/* RESPONSIVE */
@media(max-width:768px) {

  .reddy-app-six-title {
    font-size: 28px;
  }

  .reddy-app-six-card {
    padding: 22px;
    border-radius: 24px;
  }

  .reddy-app-six-table .row-item {
    flex-direction: column;
    gap: 5px;
  }
}

/*section 7*/

/* REDDY APP SEVEN SECTION - SECURITY PREMIUM */
.reddy-app-seven-section {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #fff8f9, #fdecef, #fff5f6);
}

/* SOFT FLOATING GLOW */
.reddy-app-seven-section::before,
.reddy-app-seven-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  animation: floatGlow 10s ease-in-out infinite alternate;
}

.reddy-app-seven-section::before {
  width: 520px;
  height: 520px;
  background: rgba(177, 68, 100, 0.08);
  top: -200px;
  left: -150px;
}

.reddy-app-seven-section::after {
  width: 420px;
  height: 420px;
  background: rgba(142, 45, 77, 0.06);
  bottom: -160px;
  right: -120px;
}

/* ANIMATION */
@keyframes floatGlow {
  0% {
    transform: translateY(0px) scale(1);
  }

  100% {
    transform: translateY(35px) scale(1.1);
  }
}

/* BADGE */
.reddy-app-seven-badge {
  display: inline-block;
  background: rgba(177, 68, 100, 0.10);
  color: #a13658;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
  border: 1px solid rgba(177, 68, 100, 0.15);
}

/* TITLE */
.reddy-app-seven-title {
  font-size: 42px;
  font-weight: 800;
  color: #6e1f3e;
  margin-bottom: 15px;
}

.reddy-app-seven-title span {
  color: #b14464;
}

.reddy-app-seven-subtitle {
  font-size: 16px;
  color: #5f4d55;
  max-width: 750px;
  margin: auto;
  line-height: 1.8;
}

/* CARD (GLASS PREMIUM) */
.reddy-app-seven-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  padding: 30px;
  border-radius: 26px;
  box-shadow: 0 18px 45px rgba(120, 40, 60, 0.10);
  border: 1px solid rgba(177, 68, 100, 0.12);
  border-left: 5px solid #b14464;
  transition: 0.4s;
  height: 100%;
}

.reddy-app-seven-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(120, 40, 60, 0.15);
}

/* TEXT */
.reddy-app-seven-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: #6e1f3e;
  margin-bottom: 12px;
}

.reddy-app-seven-card p {
  font-size: 15px;
  line-height: 1.9;
  color: #5f4d55;
}

/* RESPONSIVE */
@media(max-width:768px) {

  .reddy-app-seven-title {
    font-size: 28px;
  }

  .reddy-app-seven-card {
    padding: 22px;
    border-radius: 22px;
  }

  .reddy-app-seven-card h3 {
    font-size: 20px;
  }
}

/*section 8*/

/* ========================= */
/* REDDY APP EIGHT - CARD DESIGN */
/* ========================= */

.reddy-app-eight-section {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #fff8f9, #fdecef, #fff5f6);
}

/* BACKGROUND GLOW */
.reddy-app-eight-section::before,
.reddy-app-eight-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  animation: reddyFloat 10s ease-in-out infinite alternate;
}

.reddy-app-eight-section::before {
  width: 500px;
  height: 500px;
  background: rgba(177, 68, 100, 0.07);
  top: -200px;
  left: -160px;
}

.reddy-app-eight-section::after {
  width: 420px;
  height: 420px;
  background: rgba(255, 204, 0, 0.05);
  bottom: -180px;
  right: -140px;
}

@keyframes reddyFloat {
  0% {
    transform: translateY(0px) scale(1);
  }

  100% {
    transform: translateY(30px) scale(1.1);
  }
}

/* BADGE */
.reddy-app-eight-badge {
  display: inline-block;
  background: rgba(177, 68, 100, 0.10);
  color: #a13658;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  border: 1px solid rgba(177, 68, 100, 0.12);
}

/* TITLE */
.reddy-app-eight-title {
  font-size: 46px;
  font-weight: 800;
  color: #6f1f3e;
  margin-bottom: 15px;
}

.reddy-app-eight-title span {
  color: #b14464;
}

.reddy-app-eight-subtitle {
  font-size: 16px;
  color: #6b5960;
  line-height: 2;
  max-width: 850px;
  margin: auto;
}

/* CARD */
.reddy-app-eight-card {
  position: relative;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 18px 45px rgba(120, 40, 60, 0.10);
  border: 1px solid rgba(177, 68, 100, 0.12);
  transition: 0.4s;
  overflow: hidden;
}

.reddy-app-eight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(120, 40, 60, 0.18);
}

/* GLOW DOT */
.reddy-app-eight-card::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  background: rgba(177, 68, 100, 0.05);
  border-radius: 50%;
  top: -60px;
  right: -60px;
}

/* NUMBER ICON */
.reddy-app-eight-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b14464, #8e2d4d);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 18px;
  box-shadow: 0 10px 25px rgba(177, 68, 100, 0.25);
}

/* TEXT */
.reddy-app-eight-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #6f1f3e;
  margin-bottom: 12px;
}

.reddy-app-eight-card p {
  font-size: 15px;
  line-height: 1.9;
  color: #5f4d55;
}

/* FOOTER NOTE */
.reddy-app-eight-highlight {
  background: rgba(177, 68, 100, 0.08);
  border-left: 5px solid #b14464;
  padding: 20px;
  border-radius: 18px;
  font-size: 15px;
  color: #6b4c57;
  line-height: 2;
}

/* RESPONSIVE */
@media(max-width:768px) {

  .reddy-app-eight-title {
    font-size: 30px;
  }

  .reddy-app-eight-card {
    padding: 22px;
  }

  .reddy-app-eight-card h3 {
    font-size: 18px;
  }

  .reddy-app-eight-card p {
    font-size: 14px;
  }
}

/*section 9*/
/* ========================= */
/* REDDY APP NINE SECTION */
/* PREMIUM REGISTER STYLE */
/* ========================= */
/* ========================= */
/* REDDY APP NINE SECTION */
/* ========================= */

.reddy-app-nine-section {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #fff8f9, #fdecef, #fff5f6);
}

/* soft glow */
.reddy-app-nine-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  background: rgba(177, 68, 100, 0.06);
  border-radius: 50%;
  top: -220px;
  left: -180px;
  filter: blur(100px);
}

.reddy-app-nine-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  bottom: -160px;
  right: -140px;
  filter: blur(90px);
}

/* badge */
.reddy-app-nine-badge {
  display: inline-block;
  background: rgba(177, 68, 100, 0.10);
  color: #a13658;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(177, 68, 100, 0.12);
  margin-bottom: 15px;
}

/* title */
.reddy-app-nine-title {
  font-size: 42px;
  font-weight: 800;
  color: #6e1f3e;
  margin-bottom: 10px;
}

/* subtitle */
.reddy-app-nine-subtitle {
  font-size: 16px;
  color: #6b5960;
  line-height: 1.9;
}

/* card */
.reddy-app-nine-card {
  background: #fff;
  border-radius: 26px;
  padding: 35px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
  border-left: 5px solid #b14464;
  position: relative;
}

/* text */
.reddy-app-nine-card p {
  font-size: 16px;
  line-height: 2;
  color: #5f4d55;
  margin-bottom: 18px;
}

/* highlight box */
.reddy-app-nine-highlight {
  background: rgba(177, 68, 100, 0.08);
  border-left: 4px solid #b14464;
  padding: 18px;
  border-radius: 16px;
  font-weight: 600;
  color: #6e1f3e;
  margin: 20px 0;
}

/* button */
.reddy-app-nine-btn {
  display: inline-block;
  padding: 16px 34px;
  background: linear-gradient(135deg, #b14464, #8e2d4d);
  color: #fff;
  text-decoration: none;
  border-radius: 60px;
  font-weight: 700;
  font-size: 16px;
  transition: 0.3s;
  box-shadow: 0 12px 30px rgba(177, 68, 100, 0.25);
}

.reddy-app-nine-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(177, 68, 100, 0.35);
}

/* responsive */
@media(max-width:768px) {

  .reddy-app-nine-title {
    font-size: 28px;
  }

  .reddy-app-nine-card {
    padding: 24px;
  }

  .reddy-app-nine-btn {
    width: 100%;
    text-align: center;
  }
}

/*section 10*/

/* ========================= */
/* REDDY APP TEN SECTION */
/* ========================= */

/* ========================= */
/* REDDY APP TEN - USING EIGHT DESIGN SYSTEM */
/* ========================= */

.reddy-app-ten-section {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #fff8f9, #fdecef, #fff5f6);
}

/* SAME EIGHT STYLE BACKGROUND GLOW */
.reddy-app-ten-section::before,
.reddy-app-ten-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  animation: reddyFloat 10s ease-in-out infinite alternate;
}

.reddy-app-ten-section::before {
  width: 500px;
  height: 500px;
  background: rgba(177, 68, 100, 0.07);
  top: -200px;
  left: -160px;
}

.reddy-app-ten-section::after {
  width: 420px;
  height: 420px;
  background: rgba(255, 204, 0, 0.05);
  bottom: -180px;
  right: -140px;
}

@keyframes reddyFloat {
  0% {
    transform: translateY(0px) scale(1);
  }

  100% {
    transform: translateY(30px) scale(1.1);
  }
}

/* BADGE (same as eight) */
.reddy-app-ten-badge {
  display: inline-block;
  background: rgba(177, 68, 100, 0.10);
  color: #a13658;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  border: 1px solid rgba(177, 68, 100, 0.12);
}

/* TITLE (same as eight) */
.reddy-app-ten-title {
  font-size: 46px;
  font-weight: 800;
  color: #6f1f3e;
  margin-bottom: 15px;
}

.reddy-app-ten-title span {
  color: #b14464;
}

/* CARD (NOW SAME AS EIGHT) */
.reddy-app-ten-card {
  position: relative;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 18px 45px rgba(120, 40, 60, 0.10);
  border: 1px solid rgba(177, 68, 100, 0.12);
  transition: 0.4s;
  overflow: hidden;
  height: 100%;
}

.reddy-app-ten-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(120, 40, 60, 0.18);
}

/* GLOW DOT (same as eight cards) */
.reddy-app-ten-card::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  background: rgba(177, 68, 100, 0.05);
  border-radius: 50%;
  top: -60px;
  right: -60px;
}

/* STARS */
.reddy-app-ten-card .stars {
  font-size: 16px;
  margin-bottom: 14px;
  color: #ffb400;
}

/* NAME */
.reddy-app-ten-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #6f1f3e;
  margin-bottom: 12px;
}

/* TEXT */
.reddy-app-ten-card p {
  font-size: 15px;
  line-height: 1.9;
  color: #5f4d55;
}

/* HIGHLIGHT CARD */
.reddy-app-ten-card.highlight {
  background: linear-gradient(135deg, #b14464, #8e2d4d);
  color: #fff;
}

.reddy-app-ten-card.highlight h3,
.reddy-app-ten-card.highlight p {
  color: #fff;
}

/* RESPONSIVE */
@media(max-width:768px) {

  .reddy-app-ten-title {
    font-size: 30px;
  }

  .reddy-app-ten-card {
    padding: 22px;
  }

  .reddy-app-ten-card h3 {
    font-size: 18px;
  }

  .reddy-app-ten-card p {
    font-size: 14px;
  }
}

/*section 11*/

/* ========================= */
/* REDDY APP FAQ SECTION */
/* ========================= */

.reddy-app-faq-section {
  position: relative;
  padding: 50px 0;
  overflow: hidden;

  /* register style background */
  background: linear-gradient(135deg, #fff8f9, #fdecef, #fff5f6);
}

/* soft glow background */
.reddy-app-faq-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  background: rgba(177, 68, 100, 0.06);
  border-radius: 50%;
  top: -220px;
  left: -180px;
  filter: blur(100px);
}

.reddy-app-faq-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  bottom: -160px;
  right: -140px;
  filter: blur(90px);
}

/* badge */
.reddy-app-faq-badge {
  display: inline-block;
  background: rgba(177, 68, 100, 0.10);
  color: #a13658;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(177, 68, 100, 0.12);
  backdrop-filter: blur(10px);
}

/* title */
.reddy-app-faq-title {
  font-size: 52px;
  font-weight: 800;
  color: #6e1f3e;
  margin-bottom: 20px;
  line-height: 1.4;
}

/* subtitle (optional) */
.reddy-app-faq-subtitle {
  font-size: 18px;
  color: #6b5a61;
  line-height: 2;
  max-width: 850px;
  margin: auto;
}

/* FAQ wrapper */
.reddy-app-faq {
  max-width: 900px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* FAQ CARD STYLE (REGISTER STYLE) */
.reddy-app-faq details {
  background: #fff;
  border-radius: 22px;
  padding: 22px 26px;
  margin-bottom: 16px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border-left: 4px solid #b14464;

  transition: 0.3s;
}

/* hover effect */
.reddy-app-faq details:hover {
  transform: translateY(-5px);
}

/* question */
.reddy-app-faq summary {
  font-size: 17px;
  font-weight: 700;
  color: #6e1f3e;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 25px;
}

/* remove default arrow */
.reddy-app-faq summary::-webkit-details-marker {
  display: none;
}

/* custom icon */
.reddy-app-faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: #b14464;
  font-size: 20px;
  font-weight: 800;
}

/* open state */
.reddy-app-faq details[open] summary::after {
  content: "−";
}

/* answer */
.reddy-app-faq p {
  margin-top: 12px;
  font-size: 15px;
  line-height: 2;
  color: #5f4d55;
}

/* responsive */
@media(max-width:768px) {

  .reddy-app-faq-title {
    font-size: 32px;
  }

  .reddy-app-faq details {
    padding: 18px;
  }
}

/*--about-us-contact page --*/


/*section 1*/
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: Arial, sans-serif;
  background: #fff;
}

/* ================= HERO ================= */
.hero-one-section {
  height: 90vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(139, 47, 60, 0.6)),
    url("images/cricket-img.jpeg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-one-content {
  color: #fff;
}

.hero-one-content h1 {
  font-size: 50px;
  margin-bottom: 10px;
}

.hero-one-content p {
  font-size: 18px;
  margin-bottom: 25px;
}

/* HERO BUTTONS */
.hero-one-btns {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn-one {
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-one.primary {
  background: #8b2f3c;
  color: #fff;
}

.btn-one.secondary {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-one:hover {
  transform: translateY(-3px);
}

/* ================= ABOUT SECTION ================= */
.contact-one-section {
  padding: 80px 20px;
  background: #fff7f7;
}

.contact-one-container {
  max-width: 1100px;
  margin: auto;
  background: #ffffff;
  border-left: 6px solid #8b2f3c;
  border-radius: 14px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(139, 47, 60, 0.08);
}

.contact-one-title {
  font-size: 28px;
  font-weight: 700;
  color: #8b2f3c;
  margin-bottom: 20px;
}

.contact-one-text {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 18px;
}

.contact-one-highlight {
  background: #fff0f2;
  border: 1px solid #f2c6cc;
  padding: 15px 18px;
  border-radius: 10px;
  margin: 15px 0;
  font-weight: 500;
  color: #5a1f28;
}

/* CTA BUTTONS */
.contact-one-cta {
  margin-top: 25px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 12px 18px;
  background: #8b2f3c;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}

.cta-btn.alt {
  background: #2c2c2c;
}

.cta-btn:hover {
  opacity: 0.85;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-one-content h1 {
    font-size: 32px;
  }

  .contact-one-container {
    padding: 25px;
  }

  .contact-one-title {
    font-size: 22px;
  }
}

/*section 2*/

/* SECTION */
.contact-two-section {
  padding: 70px 20px;
  position: relative;
  overflow: hidden;
  font-family: Arial, sans-serif;
  background: #fff1f3;
}

/* BACKGROUND IMAGE LAYER */
.contact-two-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: url("images/background1-img.avif") center/cover no-repeat;
  filter: blur(6px) brightness(0.6);
  transform: scale(1.1);
  z-index: 0;
}

/* MOVING MAROON GRADIENT OVERLAY */
.contact-two-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(139, 47, 60, 0.35);
  filter: blur(120px);
  border-radius: 50%;
  top: -120px;
  left: -120px;
  animation: floatGlow 8s infinite alternate ease-in-out;
  z-index: 1;
}

.contact-two-section::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 120, 150, 0.25);
  filter: blur(120px);
  border-radius: 50%;
  bottom: -120px;
  right: -120px;
  animation: floatGlow 10s infinite alternate ease-in-out;
  z-index: 1;
}

@keyframes floatGlow {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(60px, 40px) scale(1.2);
  }

  100% {
    transform: translate(-40px, 60px) scale(1);
  }
}

/* MAIN CONTAINER */
.contact-two-container {
  position: relative;
  z-index: 2;

  max-width: 1100px;
  margin: auto;
  padding: 45px;
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);

  border: 1px solid rgba(139, 47, 60, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* TITLE */
.contact-two-title {
  font-size: 30px;
  font-weight: 800;
  color: #8b2f3c;
  margin-bottom: 18px;
}

/* TEXT */
.contact-two-text {
  font-size: 16px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 16px;
}

/* HIGHLIGHT */
.contact-two-highlight {
  background: linear-gradient(135deg, #fff0f2, #ffe4e9);
  border-left: 4px solid #8b2f3c;
  padding: 16px 18px;
  border-radius: 12px;
  margin: 18px 0;
  color: #5a1f28;
  font-weight: 500;
}

/* GRID */
.contact-two-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
}

/* CARD */
.contact-two-card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(14px);

  border-radius: 16px;
  padding: 18px;

  border: 1px solid rgba(139, 47, 60, 0.15);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

  transition: 0.4s;
  overflow: hidden;
}

/* IMAGE INSIDE CARD */
.contact-two-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
  transition: 0.4s;
}

/* HOVER EFFECT */
.contact-two-card:hover {
  transform: translateY(-10px);
}

.contact-two-card:hover img {
  transform: scale(1.1);
}

/* TEXT */
.contact-two-card h3 {
  color: #8b2f3c;
  margin-bottom: 8px;
}

.contact-two-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-two-container {
    padding: 25px;
  }

  .contact-two-grid {
    grid-template-columns: 1fr;
  }
}

/*section 3*/
/* ================= PREMIUM MAROON GLOW BACKGROUND ================= */

.contact-three-section {
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #fff1f3, #ffe6ea);
}

/* GLOW ORBS */
.contact-three-section::before,
.contact-three-section::after {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.55;
  animation: glowMove 12s infinite alternate ease-in-out;
}

/* DARK MAROON GLOW */
.contact-three-section::before {
  background: radial-gradient(circle, rgba(139, 47, 60, 0.55), transparent 70%);
  top: -220px;
  left: -220px;
}

/* LIGHT PINK MAROON GLOW */
.contact-three-section::after {
  background: radial-gradient(circle, rgba(255, 90, 120, 0.3), transparent 70%);
  bottom: -220px;
  right: -220px;
  animation-delay: 4s;
}

/* ANIMATION */
@keyframes glowMove {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(80px, 60px) scale(1.25);
  }

  100% {
    transform: translate(-60px, 80px) scale(1);
  }
}

/* MAIN CONTAINER */
.contact-three-container {
  position: relative;
  z-index: 2;

  max-width: 1000px;
  margin: auto;
  padding: 55px;
  border-radius: 22px;

  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);

  border: 1px solid rgba(139, 47, 60, 0.15);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

/* TITLE */
.contact-three-title {
  font-size: 34px;
  font-weight: 900;
  color: #8b2f3c;
  margin-bottom: 22px;
}

/* TEXT */
.contact-three-text {
  font-size: 16px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 18px;
}

/* HIGHLIGHT */
.contact-three-highlight {
  background: linear-gradient(135deg, #fff0f2, #ffe4e9);
  border-left: 5px solid #8b2f3c;
  padding: 18px;
  border-radius: 14px;
  margin: 22px 0;
  font-weight: 600;
  color: #5a1f28;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-three-container {
    padding: 28px;
  }

  .contact-three-title {
    font-size: 24px;
  }
}


/*section 4*/
/* ================= PREMIUM TRUST SECTION ================= */
/* ========================================= */
/* CONTACT FOUR - LICENCES & CERTIFICATIONS  */
/* PREMIUM MAROON GLASSMORPHIC GRID DESIGN   */
/* ========================================= */

.contact-four-section {
  position: relative;
  padding: 40px 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #fff8f9, #fdecef, #fff5f6);
  font-family: Arial, sans-serif;
}

/* ================= BACKGROUND GLOW ================= */

.contact-four-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(177, 68, 100, 0.07);
  border-radius: 50%;
  top: -250px;
  left: -220px;
  filter: blur(120px);
  animation: floatGlow 10s ease-in-out infinite alternate;
}

.contact-four-section::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  bottom: -200px;
  right: -180px;
  filter: blur(110px);
  animation: floatGlow 12s ease-in-out infinite alternate;
}

@keyframes floatGlow {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(60px, 40px) scale(1.2);
  }
}

/* ================= MAIN CONTAINER ================= */

.contact-four-container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: auto;
  padding: 55px;
  border-radius: 34px;

  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(177, 68, 100, 0.10);
  box-shadow: 0 20px 45px rgba(120, 40, 60, 0.12);
}

/* ================= TITLE ================= */

.contact-four-title {
  font-size: 42px;
  font-weight: 800;
  color: #6e1f3e;
  text-align: center;
  margin-bottom: 10px;
}

.contact-four-text {
  text-align: center;
  font-size: 16px;
  color: #5f4d55;
  margin-bottom: 40px;
  line-height: 1.8;
}

/* ================= GRID LAYOUT ================= */

.contact-four-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

/* ================= CARD STYLE ================= */

.contact-four-card {
  position: relative;
  padding: 26px;
  border-radius: 22px;

  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(14px);

  border: 1px solid rgba(177, 68, 100, 0.12);
  box-shadow: 0 10px 25px rgba(120, 40, 60, 0.08);

  transition: 0.35s ease;
  overflow: hidden;
}

/* CARD GLOW EFFECT */
.contact-four-card::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(177, 68, 100, 0.08);
  border-radius: 50%;
  top: -50px;
  right: -50px;
  filter: blur(40px);
}

/* HOVER EFFECT */
.contact-four-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(120, 40, 60, 0.18);
}

/* CARD TITLE */
.contact-four-card h3 {
  font-size: 18px;
  color: #8b2f3c;
  margin-bottom: 10px;
  font-weight: 700;
}

/* CARD TEXT */
.contact-four-card p {
  font-size: 14px;
  color: #5f4d55;
  line-height: 1.7;
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px) {

  .contact-four-container {
    padding: 30px 22px;
    border-radius: 26px;
  }

  .contact-four-title {
    font-size: 28px;
  }

  .contact-four-grid {
    grid-template-columns: 1fr;
  }

}

/*section 5*/

/* ================= CONTACT FIVE PREMIUM SECTION ================= */

.contact-five-section {
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #fff1f3, #ffe6ea);
}

/* ANIMATED MAROON GLOW */
.contact-five-section::before,
.contact-five-section::after {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  filter: blur(160px);
  opacity: 0.45;
  animation: glowMove5 14s infinite alternate ease-in-out;
}

.contact-five-section::before {
  background: radial-gradient(circle, rgba(139, 47, 60, 0.55), transparent 70%);
  top: -250px;
  left: -250px;
}

.contact-five-section::after {
  background: radial-gradient(circle, rgba(255, 110, 140, 0.3), transparent 70%);
  bottom: -250px;
  right: -250px;
  animation-delay: 4s;
}

@keyframes glowMove5 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(80px, 60px) scale(1.25);
  }

  100% {
    transform: translate(-60px, 80px) scale(1);
  }
}

/* MAIN CONTAINER */
.contact-five-container {
  position: relative;
  z-index: 2;

  max-width: 1100px;
  margin: auto;
  padding: 60px;
  border-radius: 24px;

  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);

  border: 1px solid rgba(139, 47, 60, 0.15);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.12);
}

/* HEADER */
.contact-five-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-five-header h2 {
  font-size: 36px;
  color: #8b2f3c;
  font-weight: 900;
}

.contact-five-header p {
  margin-top: 10px;
  color: #555;
}

/* GRID CARDS */
.contact-five-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.contact-five-card {
  padding: 22px;
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(14px);

  border: 1px solid rgba(139, 47, 60, 0.15);
  transition: 0.3s;
}

.contact-five-card:hover {
  transform: translateY(-8px);
}

.contact-five-card h3 {
  color: #8b2f3c;
  margin-bottom: 8px;
}

.contact-five-card p {
  font-size: 14px;
  color: #555;
}

.contact-five-card span {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  color: #8b2f3c;
  font-weight: bold;
}

/* TABLE */
.contact-five-table {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(139, 47, 60, 0.15);
}

.contact-five-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(139, 47, 60, 0.08);
}

.contact-five-row.head {
  background: #fff0f2;
  font-weight: bold;
  color: #8b2f3c;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-five-container {
    padding: 28px;
  }

  .contact-five-grid {
    grid-template-columns: 1fr;
  }

  .contact-five-header h2 {
    font-size: 24px;
  }
}

/*section 6*/

/* ================= OFFICE SECTION PREMIUM DESIGN ================= */

.contact-six-section {
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #fff1f3, #ffe6ea);
}

/* ANIMATED MAROON GLOW BACKGROUND */
.contact-six-section::before,
.contact-six-section::after {
  content: "";
  position: absolute;
  width: 750px;
  height: 750px;
  border-radius: 50%;
  filter: blur(170px);
  opacity: 0.5;
  animation: glowFloat6 15s infinite alternate ease-in-out;
}

.contact-six-section::before {
  background: radial-gradient(circle, rgba(139, 47, 60, 0.55), transparent 70%);
  top: -280px;
  left: -280px;
}

.contact-six-section::after {
  background: radial-gradient(circle, rgba(255, 120, 150, 0.3), transparent 70%);
  bottom: -280px;
  right: -280px;
  animation-delay: 5s;
}

@keyframes glowFloat6 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(90px, 70px) scale(1.3);
  }

  100% {
    transform: translate(-70px, 90px) scale(1);
  }
}

/* MAIN CONTAINER */
.contact-six-container {
  position: relative;
  z-index: 2;

  max-width: 900px;
  margin: auto;
  text-align: center;
}

/* HEADER */
.contact-six-header h2 {
  font-size: 36px;
  font-weight: 900;
  color: #8b2f3c;
}

.contact-six-header p {
  margin-top: 10px;
  color: #555;
  font-size: 16px;
}

/* CARD */
.contact-six-card {
  margin-top: 40px;
  padding: 35px;
  border-radius: 22px;

  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);

  border: 1px solid rgba(139, 47, 60, 0.15);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);

  display: flex;
  gap: 20px;
  align-items: flex-start;
  text-align: left;

  transition: 0.3s;
}

.contact-six-card:hover {
  transform: translateY(-8px);
}

/* ICON */
.contact-six-icon {
  font-size: 28px;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;

  background: #fff0f2;
  border-radius: 14px;
  border: 1px solid #f2c6cc;
}

/* TEXT */
.contact-six-content h3 {
  color: #8b2f3c;
  font-size: 20px;
  margin-bottom: 8px;
}

.contact-six-content p {
  color: #444;
  font-size: 15px;
  line-height: 1.6;
}

.contact-six-content span {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  color: #8b2f3c;
  font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-six-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .contact-six-header h2 {
    font-size: 24px;
  }
}

/*section 7*/
/* ================= SECURITY REPORT SECTION ================= */

.contact-seven-section {
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #fff1f3, #ffe6ea);
}

/* ANIMATED MAROON GLOW */
.contact-seven-section::before,
.contact-seven-section::after {
  content: "";
  position: absolute;
  width: 750px;
  height: 750px;
  border-radius: 50%;
  filter: blur(170px);
  opacity: 0.5;
  animation: glowFloat7 15s infinite alternate ease-in-out;
}

.contact-seven-section::before {
  background: radial-gradient(circle, rgba(139, 47, 60, 0.55), transparent 70%);
  top: -280px;
  left: -280px;
}

.contact-seven-section::after {
  background: radial-gradient(circle, rgba(255, 110, 140, 0.3), transparent 70%);
  bottom: -280px;
  right: -280px;
  animation-delay: 4s;
}

@keyframes glowFloat7 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(90px, 70px) scale(1.25);
  }

  100% {
    transform: translate(-70px, 90px) scale(1);
  }
}

/* MAIN CONTAINER */
.contact-seven-container {
  position: relative;
  z-index: 2;

  max-width: 900px;
  margin: auto;
  padding: 60px;
  border-radius: 24px;

  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);

  border: 1px solid rgba(139, 47, 60, 0.15);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.12);

  text-align: center;
}

/* HEADER */
.contact-seven-header h2 {
  font-size: 36px;
  font-weight: 900;
  color: #8b2f3c;
}

.contact-seven-header p {
  margin-top: 10px;
  color: #555;
}

/* ALERT BADGE */
.contact-seven-alert {
  display: inline-block;
  margin: 25px 0;
  padding: 10px 18px;

  background: #fff0f2;
  border: 1px solid #f2c6cc;
  border-radius: 30px;

  color: #8b2f3c;
  font-weight: bold;
}

/* TEXT */
.contact-seven-text {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 18px;
}

/* HIGHLIGHT */
.contact-seven-highlight {
  background: linear-gradient(135deg, #fff0f2, #ffe4e9);
  border-left: 5px solid #8b2f3c;
  padding: 18px;
  border-radius: 14px;
  margin: 22px 0;
  font-weight: 600;
  color: #5a1f28;
  text-align: left;
}

/* CARD */
.contact-seven-card {
  margin-top: 25px;
  padding: 25px;
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(14px);

  border: 1px solid rgba(139, 47, 60, 0.15);
  transition: 0.3s;
}

.contact-seven-card:hover {
  transform: translateY(-8px);
}

.contact-seven-card h3 {
  color: #8b2f3c;
  margin-bottom: 8px;
}

.contact-seven-card p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

.contact-seven-card span {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  color: #8b2f3c;
  font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-seven-container {
    padding: 28px;
  }

  .contact-seven-header h2 {
    font-size: 24px;
  }
}



/*privacy and policy section*/


/*section 1*/
/* ================================= */
/* POLICY ONE - REGISTER SIX STYLE */
/* ================================= */

.policy-one.register-six-section {
  position: relative;
  padding: 80px 0;
  margin-top: 50px;
  overflow: hidden;
  background:
    linear-gradient(135deg,
      #fff7f8,
      #fdecef,
      #fff5f6);
}

/* BACKGROUND GLOW */
.policy-one.register-six-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  background: rgba(177, 68, 100, 0.06);
  border-radius: 50%;
  top: -220px;
  left: -180px;
  filter: blur(100px);
}

.policy-one.register-six-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  bottom: -160px;
  right: -140px;
  filter: blur(90px);
}

/* ================================= */
/* CARD OVERRIDE FOR POLICY */
/* ================================= */

.policy-one .register-six-card {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 45px;
  border-radius: 30px;
  box-shadow: 0 18px 45px rgba(120, 40, 60, 0.10);
  border: 1px solid rgba(177, 68, 100, 0.10);
  transition: 0.4s;
  text-align: center;
}

/* hover effect */
.policy-one .register-six-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(120, 40, 60, 0.15);
}

/* ================================= */
/* ICON */
/* ================================= */

.policy-one .register-six-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #b14464, #8e2d4d);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 12px 28px rgba(177, 68, 100, 0.25);
}

/* ================================= */
/* TITLE */
/* ================================= */

.policy-one .register-six-card h3 {
  font-size: 30px;
  font-weight: 800;
  color: #6f1f3e;
  margin-bottom: 20px;
}

/* ================================= */
/* TEXT */
/* ================================= */

.policy-one .register-six-card p {
  font-size: 16px;
  line-height: 2;
  color: #5f4d55;
  margin-bottom: 18px;
}

/* ================================= */
/* BADGE OPTIONAL (if used) */
/* ================================= */

.policy-one .register-six-badge {
  display: inline-block;
  background: rgba(177, 68, 100, 0.10);
  color: #a13658;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
  border: 1px solid rgba(177, 68, 100, 0.12);
}

/* ================================= */
/* RESPONSIVE */
/* ================================= */

@media(max-width:768px) {

  .policy-one.register-six-section {
    padding: 70px 0;
  }

  .policy-one .register-six-card {
    padding: 28px;
    border-radius: 24px;
  }

  .policy-one .register-six-card h3 {
    font-size: 24px;
  }

  .policy-one .register-six-card p {
    font-size: 15px;
    line-height: 1.9;
  }

  .policy-one .register-six-icon {
    width: 65px;
    height: 65px;
    font-size: 24px;
  }
}

/*section 2*/

/* ================================= */
/* POLICY TWO - REGISTER SIX STYLE */
/* ================================= */

.policy-two-section {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #fff7f8, #fdecef, #fff5f6);
}

/* BACKGROUND GLOW */
.policy-two-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  background: rgba(177, 68, 100, 0.06);
  border-radius: 50%;
  top: -220px;
  left: -180px;
  filter: blur(100px);
}

.policy-two-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  bottom: -160px;
  right: -140px;
  filter: blur(90px);
}

/* CARD */
.policy-two-card {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 42px;
  border-radius: 30px;
  box-shadow: 0 18px 45px rgba(120, 40, 60, 0.10);
  border: 1px solid rgba(177, 68, 100, 0.10);
  text-align: center;
  transition: 0.4s;
}

.policy-two-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(120, 40, 60, 0.15);
}

/* ICON */
.policy-two-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #b14464, #8e2d4d);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 12px 28px rgba(177, 68, 100, 0.25);
}

/* TITLE */
.policy-two-title {
  font-size: 30px;
  font-weight: 800;
  color: #6f1f3e;
  margin-bottom: 20px;
}

/* TEXT */
.policy-two-text {
  font-size: 16px;
  line-height: 2;
  color: #5f4d55;
  margin-bottom: 16px;
}

/* RESPONSIVE */
@media(max-width:768px) {

  .policy-two-section {
    padding: 70px 0;
  }

  .policy-two-card {
    padding: 28px;
    border-radius: 24px;
  }

  .policy-two-title {
    font-size: 24px;
  }

  .policy-two-text {
    font-size: 15px;
    line-height: 1.9;
  }

  .policy-two-icon {
    width: 65px;
    height: 65px;
    font-size: 24px;
  }
}

/*section 3*/
/* ================================= */
/* POLICY THREE - REGISTER SIX STYLE */
/* ================================= */

.policy-three-section {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #fff7f8, #fdecef, #fff5f6);
}

/* BACKGROUND GLOW */
.policy-three-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  background: rgba(177, 68, 100, 0.06);
  border-radius: 50%;
  top: -220px;
  left: -180px;
  filter: blur(100px);
}

.policy-three-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  bottom: -160px;
  right: -140px;
  filter: blur(90px);
}

/* BADGE */
.policy-three-badge {
  display: inline-block;
  background: rgba(177, 68, 100, 0.10);
  color: #a13658;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 1px;
  border: 1px solid rgba(177, 68, 100, 0.12);
}

/* TITLE */
.policy-three-title {
  font-size: 42px;
  font-weight: 800;
  color: #6e1f3e;
}

/* CARD */
.policy-three-card {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 38px;
  border-radius: 30px;
  box-shadow: 0 18px 45px rgba(120, 40, 60, 0.10);
  border: 1px solid rgba(177, 68, 100, 0.10);
  transition: 0.4s;
  height: 100%;
}

/* hover */
.policy-three-card:hover {
  transform: translateY(-8px);
}

/* ICON */
.policy-three-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #b14464, #8e2d4d);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  box-shadow: 0 12px 25px rgba(177, 68, 100, 0.25);
}

/* TEXT */
.policy-three-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: #6f1f3e;
  margin-bottom: 15px;
}

.policy-three-card p {
  font-size: 15px;
  color: #5f4d55;
  line-height: 1.9;
  margin-bottom: 12px;
}

.policy-three-card ul {
  padding-left: 18px;
}

.policy-three-card ul li {
  font-size: 15px;
  line-height: 1.9;
  color: #5f4d55;
  margin-bottom: 8px;
}

/* IMAGE STYLE CARD */
.policy-three-card.image-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(255, 245, 247, 0.7));
}



/* RESPONSIVE */
@media(max-width:768px) {

  .policy-three-title {
    font-size: 28px;
  }

  .policy-three-card {
    padding: 26px;
    border-radius: 22px;
  }

  .policy-three-icon {
    width: 60px;
    height: 60px;
    font-size: 22px;
  }
}

/*section 4*/
/* ================================= */
/* POLICY FOUR - REGISTER SIX STYLE */
/* ================================= */

.policy-four-section {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #fff7f8, #fdecef, #fff5f6);
}

/* BACKGROUND GLOW */
.policy-four-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  background: rgba(177, 68, 100, 0.06);
  border-radius: 50%;
  top: -220px;
  left: -180px;
  filter: blur(100px);
}

.policy-four-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  bottom: -160px;
  right: -140px;
  filter: blur(90px);
}

/* BADGE */
.policy-four-badge {
  display: inline-block;
  background: rgba(177, 68, 100, 0.10);
  color: #a13658;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 1px;
  border: 1px solid rgba(177, 68, 100, 0.12);
}

/* TITLE */
.policy-four-title {
  font-size: 42px;
  font-weight: 800;
  color: #6e1f3e;
}

/* CARD */
.policy-four-card {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 34px;
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(120, 40, 60, 0.10);
  border: 1px solid rgba(177, 68, 100, 0.10);
  transition: 0.4s;
  height: 100%;
}

/* hover */
.policy-four-card:hover {
  transform: translateY(-8px);
}

/* ICON */
.policy-four-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, #b14464, #8e2d4d);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  box-shadow: 0 12px 25px rgba(177, 68, 100, 0.25);
}

/* TEXT */
.policy-four-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: #6f1f3e;
  margin-bottom: 12px;
}

.policy-four-card p {
  font-size: 15px;
  line-height: 1.9;
  color: #5f4d55;
}



/* RESPONSIVE */
@media(max-width:768px) {

  .policy-four-title {
    font-size: 28px;
  }

  .policy-four-card {
    padding: 24px;
    border-radius: 22px;
  }

  .policy-four-icon {
    width: 58px;
    height: 58px;
    font-size: 20px;
  }
}

/*section 5*/
/* ================================= */
/* POLICY FIVE - REGISTER SIX STYLE */
/* ================================= */
/* ========================= */
/* POLICY FIVE SECTION */
/* ========================= */

.policy-five-section {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #fff7f8, #fdecef, #fff5f6);
}

/* BACKGROUND GLOW */
.policy-five-section::before,
.policy-five-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.policy-five-section::before {
  width: 520px;
  height: 520px;
  background: rgba(177, 68, 100, 0.06);
  top: -220px;
  left: -180px;
}

.policy-five-section::after {
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, 0.45);
  bottom: -160px;
  right: -140px;
}

/* BADGE */
.policy-five-badge {
  display: inline-block;
  background: rgba(177, 68, 100, 0.10);
  color: #a13658;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
  border: 1px solid rgba(177, 68, 100, 0.12);
}

/* TITLE */
.policy-five-title {
  font-size: 48px;
  font-weight: 800;
  color: #6e1f3e;
  margin-bottom: 15px;
  line-height: 1.3;
}

/* CARD */
.policy-five-card {
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
  padding: 38px;
  border-radius: 30px;
  box-shadow: 0 15px 40px rgba(120, 40, 60, 0.10);
  border: 1px solid rgba(177, 68, 100, 0.10);
}

/* TEXT */
.policy-five-card p {
  font-size: 16px;
  color: #5f4d55;
  line-height: 2;
  margin-bottom: 18px;
}

/* ITEM BOX */
.policy-five-item {
  margin-bottom: 22px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(177, 68, 100, 0.08);
}

.policy-five-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: #6f1f3e;
  margin-bottom: 8px;
}

.policy-five-item p {
  font-size: 15px;
  line-height: 1.9;
  color: #5f4d55;
}

/* HIGHLIGHT */
.policy-five-highlight {
  margin-top: 20px;
  padding: 18px;
  background: rgba(177, 68, 100, 0.08);
  border-left: 4px solid #b14464;
  border-radius: 14px;
  font-size: 15px;
  color: #5f4d55;
}

/* RESPONSIVE */
@media(max-width:768px) {

  .policy-five-title {
    font-size: 32px;
  }

  .policy-five-card {
    padding: 25px;
  }
}

/*section 6*/
/* ========================= */
/* POLICY SIX SECTION */
/* ========================= */

.policy-six-section {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #fff7f8, #fdecef, #fff5f6);
}

/* BACKGROUND GLOW */
.policy-six-section::before,
.policy-six-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.policy-six-section::before {
  width: 520px;
  height: 520px;
  background: rgba(177, 68, 100, 0.06);
  top: -220px;
  left: -180px;
}

.policy-six-section::after {
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, 0.45);
  bottom: -160px;
  right: -140px;
}

/* BADGE */
.policy-six-badge {
  display: inline-block;
  background: rgba(177, 68, 100, 0.10);
  color: #a13658;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
  border: 1px solid rgba(177, 68, 100, 0.12);
}

/* TITLE */
.policy-six-title {
  font-size: 48px;
  font-weight: 800;
  color: #6e1f3e;
  margin-bottom: 15px;
}

.policy-six-subtitle {
  font-size: 16px;
  color: #6b5a61;
  max-width: 800px;
  margin: auto;
  line-height: 1.9;
}

/* CARD */
.policy-six-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
  padding: 35px;
  border-radius: 30px;
  box-shadow: 0 15px 40px rgba(120, 40, 60, 0.10);
  border: 1px solid rgba(177, 68, 100, 0.10);
}

/* IMAGE */
.policy-six-image img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

/* CONTENT */
.policy-six-item {
  margin-bottom: 20px;
}

.policy-six-item h3 {
  font-size: 20px;
  color: #6f1f3e;
  font-weight: 700;
  margin-bottom: 8px;
}

.policy-six-item p {
  font-size: 15px;
  color: #5f4d55;
  line-height: 1.8;
}

/* HIGHLIGHT */
.policy-six-highlight {
  margin-top: 20px;
  padding: 18px;
  background: rgba(177, 68, 100, 0.08);
  border-left: 4px solid #b14464;
  border-radius: 14px;
  font-size: 14px;
  color: #5f4d55;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .policy-six-card {
    grid-template-columns: 1fr;
    padding: 25px;
  }

  .policy-six-title {
    font-size: 32px;
  }
}

/*section 7*/
/* ========================= */
/* POLICY SEVEN SECTION */
/* ========================= */

.policy-seven-section {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #fff7f8, #fdecef, #fff5f6);
}

/* BACKGROUND GLOW */
.policy-seven-section::before,
.policy-seven-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.policy-seven-section::before {
  width: 520px;
  height: 520px;
  background: rgba(177, 68, 100, 0.06);
  top: -220px;
  left: -180px;
}

.policy-seven-section::after {
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, 0.45);
  bottom: -160px;
  right: -140px;
}

/* BADGE */
.policy-seven-badge {
  display: inline-block;
  background: rgba(177, 68, 100, 0.10);
  color: #a13658;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
  border: 1px solid rgba(177, 68, 100, 0.12);
}

/* TITLE */
.policy-seven-title {
  font-size: 48px;
  font-weight: 800;
  color: #6e1f3e;
  margin-bottom: 15px;
}

.policy-seven-subtitle {
  font-size: 16px;
  color: #6b5a61;
  max-width: 800px;
  margin: auto;
  line-height: 1.9;
}

/* CARD */
.policy-seven-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
  padding: 35px;
  border-radius: 30px;
  box-shadow: 0 15px 40px rgba(120, 40, 60, 0.10);
  border: 1px solid rgba(177, 68, 100, 0.10);
}

/* IMAGE */
.policy-seven-image img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

/* CONTENT */
.policy-seven-item {
  margin-bottom: 20px;
}

.policy-seven-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: #6f1f3e;
  margin-bottom: 8px;
}

.policy-seven-item p {
  font-size: 15px;
  color: #5f4d55;
  line-height: 1.8;
}

/* HIGHLIGHT */
.policy-seven-highlight {
  margin-top: 20px;
  padding: 18px;
  background: rgba(177, 68, 100, 0.08);
  border-left: 4px solid #b14464;
  border-radius: 14px;
  font-size: 14px;
  color: #5f4d55;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .policy-seven-card {
    grid-template-columns: 1fr;
    padding: 25px;
  }

  .policy-seven-title {
    font-size: 32px;
  }
}

/*section 8*/
/* ========================= */
/* POLICY EIGHT SECTION */
/* ========================= */

.policy-eight-section {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #fff7f8, #fdecef, #fff5f6);
}

/* BACKGROUND GLOW */
.policy-eight-section::before,
.policy-eight-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.policy-eight-section::before {
  width: 520px;
  height: 520px;
  background: rgba(177, 68, 100, 0.06);
  top: -220px;
  left: -180px;
}

.policy-eight-section::after {
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, 0.45);
  bottom: -160px;
  right: -140px;
}

/* BADGE */
.policy-eight-badge {
  display: inline-block;
  background: rgba(177, 68, 100, 0.10);
  color: #a13658;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
  border: 1px solid rgba(177, 68, 100, 0.12);
}

/* TITLE */
.policy-eight-title {
  font-size: 48px;
  font-weight: 800;
  color: #6e1f3e;
  margin-bottom: 15px;
}

.policy-eight-subtitle {
  font-size: 16px;
  color: #6b5a61;
  max-width: 800px;
  margin: auto;
  line-height: 1.9;
}

/* CARD */
.policy-eight-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
  padding: 35px;
  border-radius: 30px;
  box-shadow: 0 15px 40px rgba(120, 40, 60, 0.10);
  border: 1px solid rgba(177, 68, 100, 0.10);
}

/* IMAGE */
.policy-eight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

/* CONTENT */
.policy-eight-item {
  margin-bottom: 18px;
}

.policy-eight-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: #6f1f3e;
  margin-bottom: 6px;
}

.policy-eight-item p {
  font-size: 15px;
  color: #5f4d55;
  line-height: 1.8;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .policy-eight-card {
    grid-template-columns: 1fr;
    padding: 25px;
  }

  .policy-eight-title {
    font-size: 32px;
  }
}

/*section 9*/
/* ========================= */
/* POLICY NINE SECTION */
/* ========================= */

.policy-nine-section {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #fff7f8, #fdecef, #fff5f6);
}

/* BACKGROUND GLOW */
.policy-nine-section::before,
.policy-nine-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.policy-nine-section::before {
  width: 520px;
  height: 520px;
  background: rgba(177, 68, 100, 0.06);
  top: -220px;
  left: -180px;
}

.policy-nine-section::after {
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, 0.45);
  bottom: -160px;
  right: -140px;
}

/* BADGE */
.policy-nine-badge {
  display: inline-block;
  background: rgba(177, 68, 100, 0.10);
  color: #a13658;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
  border: 1px solid rgba(177, 68, 100, 0.12);
}

/* TITLE */
.policy-nine-title {
  font-size: 48px;
  font-weight: 800;
  color: #6e1f3e;
  margin-bottom: 15px;
}

.policy-nine-subtitle {
  font-size: 16px;
  color: #6b5a61;
  max-width: 800px;
  margin: auto;
  line-height: 1.9;
}

/* CARD */
.policy-nine-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
  padding: 35px;
  border-radius: 30px;
  box-shadow: 0 15px 40px rgba(120, 40, 60, 0.10);
  border: 1px solid rgba(177, 68, 100, 0.10);
}

/* IMAGE */
.policy-nine-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

/* CONTENT */
.policy-nine-item {
  margin-bottom: 18px;
}

.policy-nine-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: #6f1f3e;
  margin-bottom: 6px;
}

.policy-nine-item p {
  font-size: 15px;
  color: #5f4d55;
  line-height: 1.8;
}

/* HIGHLIGHT */
.policy-nine-highlight {
  margin-top: 20px;
  padding: 18px;
  background: rgba(177, 68, 100, 0.08);
  border-left: 4px solid #b14464;
  border-radius: 14px;
  font-size: 14px;
  color: #5f4d55;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .policy-nine-card {
    grid-template-columns: 1fr;
    padding: 25px;
  }

  .policy-nine-title {
    font-size: 32px;
  }
}

/*section 10*/

/* ========================= */
/* POLICY TEN SECTION */
/* ========================= */

.policy-ten-section {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #fff7f8, #fdecef, #fff5f6);
}

/* BACKGROUND GLOW */
.policy-ten-section::before,
.policy-ten-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.policy-ten-section::before {
  width: 520px;
  height: 520px;
  background: rgba(177, 68, 100, 0.06);
  top: -220px;
  left: -180px;
}

.policy-ten-section::after {
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, 0.45);
  bottom: -160px;
  right: -140px;
}

/* BADGE */
.policy-ten-badge {
  display: inline-block;
  background: rgba(177, 68, 100, 0.10);
  color: #a13658;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
  border: 1px solid rgba(177, 68, 100, 0.12);
}

/* TITLE */
.policy-ten-title {
  font-size: 48px;
  font-weight: 800;
  color: #6e1f3e;
  margin-bottom: 15px;
}

.policy-ten-subtitle {
  font-size: 16px;
  color: #6b5a61;
  max-width: 800px;
  margin: auto;
  line-height: 1.9;
}

/* CARD */
.policy-ten-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
  padding: 35px;
  border-radius: 30px;
  box-shadow: 0 15px 40px rgba(120, 40, 60, 0.10);
  border: 1px solid rgba(177, 68, 100, 0.10);
}

/* IMAGE */
.policy-ten-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

/* CONTENT */
.policy-ten-item {
  margin-bottom: 18px;
}

.policy-ten-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: #6f1f3e;
  margin-bottom: 6px;
}

.policy-ten-item p {
  font-size: 15px;
  color: #5f4d55;
  line-height: 1.8;
}

/* HIGHLIGHT */
.policy-ten-highlight {
  margin-top: 20px;
  padding: 18px;
  background: rgba(177, 68, 100, 0.08);
  border-left: 4px solid #b14464;
  border-radius: 14px;
  font-size: 14px;
  color: #5f4d55;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .policy-ten-card {
    grid-template-columns: 1fr;
    padding: 25px;
  }

  .policy-ten-title {
    font-size: 32px;
  }
}

/*section 11*/
/* ========================= */
/* POLICY ELEVEN SECTION */
/* ========================= */

.policy-eleven-section {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #fff7f8, #fdecef, #fff5f6);
}

/* BACKGROUND GLOW */
.policy-eleven-section::before,
.policy-eleven-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.policy-eleven-section::before {
  width: 520px;
  height: 520px;
  background: rgba(177, 68, 100, 0.06);
  top: -220px;
  left: -180px;
}

.policy-eleven-section::after {
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, 0.45);
  bottom: -160px;
  right: -140px;
}

/* BADGE */
.policy-eleven-badge {
  display: inline-block;
  background: rgba(177, 68, 100, 0.10);
  color: #a13658;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
  border: 1px solid rgba(177, 68, 100, 0.12);
}

/* TITLE */
.policy-eleven-title {
  font-size: 48px;
  font-weight: 800;
  color: #6e1f3e;
  margin-bottom: 15px;
}

.policy-eleven-subtitle {
  font-size: 16px;
  color: #6b5a61;
  max-width: 800px;
  margin: auto;
  line-height: 1.9;
}

/* CARD */
.policy-eleven-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
  padding: 35px;
  border-radius: 30px;
  box-shadow: 0 15px 40px rgba(120, 40, 60, 0.10);
  border: 1px solid rgba(177, 68, 100, 0.10);
}

/* IMAGE */
.policy-eleven-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

/* CONTENT */
.policy-eleven-item {
  margin-bottom: 18px;
}

.policy-eleven-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: #6f1f3e;
  margin-bottom: 6px;
}

.policy-eleven-item p {
  font-size: 15px;
  color: #5f4d55;
  line-height: 1.8;
}

/* HIGHLIGHT */
.policy-eleven-highlight {
  margin-top: 20px;
  padding: 18px;
  background: rgba(177, 68, 100, 0.08);
  border-left: 4px solid #b14464;
  border-radius: 14px;
  font-size: 14px;
  color: #5f4d55;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .policy-eleven-card {
    grid-template-columns: 1fr;
    padding: 25px;
  }

  .policy-eleven-title {
    font-size: 32px;
  }
}

/*section 12*/
/* ========================= */
/* POLICY TWELVE SECTION */
/* ========================= */

.policy-twelve-section {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #fff7f8, #fdecef, #fff5f6);
}

/* BACKGROUND GLOW */
.policy-twelve-section::before,
.policy-twelve-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.policy-twelve-section::before {
  width: 520px;
  height: 520px;
  background: rgba(177, 68, 100, 0.06);
  top: -220px;
  left: -180px;
}

.policy-twelve-section::after {
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, 0.45);
  bottom: -160px;
  right: -140px;
}

/* BADGE */
.policy-twelve-badge {
  display: inline-block;
  background: rgba(177, 68, 100, 0.10);
  color: #a13658;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
  border: 1px solid rgba(177, 68, 100, 0.12);
}

/* TITLE */
.policy-twelve-title {
  font-size: 48px;
  font-weight: 800;
  color: #6e1f3e;
  margin-bottom: 15px;
}

.policy-twelve-subtitle {
  font-size: 16px;
  color: #6b5a61;
  max-width: 800px;
  margin: auto;
  line-height: 1.9;
}

/* CARD */
.policy-twelve-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
  padding: 35px;
  border-radius: 30px;
  box-shadow: 0 15px 40px rgba(120, 40, 60, 0.10);
  border: 1px solid rgba(177, 68, 100, 0.10);
}

/* IMAGE */
.policy-twelve-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

/* CONTENT */
.policy-twelve-item {
  margin-bottom: 18px;
}

.policy-twelve-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: #6f1f3e;
  margin-bottom: 6px;
}

.policy-twelve-item p {
  font-size: 15px;
  color: #5f4d55;
  line-height: 1.8;
}

/* HIGHLIGHT */
.policy-twelve-highlight {
  margin-top: 20px;
  padding: 18px;
  background: rgba(177, 68, 100, 0.08);
  border-left: 4px solid #b14464;
  border-radius: 14px;
  font-size: 14px;
  color: #5f4d55;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .policy-twelve-card {
    grid-template-columns: 1fr;
    padding: 25px;
  }

  .policy-twelve-title {
    font-size: 32px;
  }
}


/* section 13 */
/* ========================= */
/* POLICY THIRTEEN SECTION */
/* ========================= */

.policy-thirteen-section {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #fff7f8, #fdecef, #fff5f6);
}

/* BACKGROUND GLOW */
.policy-thirteen-section::before,
.policy-thirteen-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.policy-thirteen-section::before {
  width: 520px;
  height: 520px;
  background: rgba(177, 68, 100, 0.06);
  top: -220px;
  left: -180px;
}

.policy-thirteen-section::after {
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, 0.45);
  bottom: -160px;
  right: -140px;
}

/* BADGE */
.policy-thirteen-badge {
  display: inline-block;
  background: rgba(177, 68, 100, 0.10);
  color: #a13658;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
  border: 1px solid rgba(177, 68, 100, 0.12);
}

/* TITLE */
.policy-thirteen-title {
  font-size: 48px;
  font-weight: 800;
  color: #6e1f3e;
  margin-bottom: 15px;
}

.policy-thirteen-subtitle {
  font-size: 16px;
  color: #6b5a61;
  max-width: 800px;
  margin: auto;
  line-height: 1.9;
}

/* CARD */
.policy-thirteen-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
  padding: 35px;
  border-radius: 30px;
  box-shadow: 0 15px 40px rgba(120, 40, 60, 0.10);
  border: 1px solid rgba(177, 68, 100, 0.10);
}

/* IMAGE */
.policy-thirteen-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

/* CONTENT */
.policy-thirteen-item {
  margin-bottom: 18px;
}

.policy-thirteen-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: #6f1f3e;
  margin-bottom: 6px;
}

.policy-thirteen-item p {
  font-size: 15px;
  color: #5f4d55;
  line-height: 1.8;
}

/* HIGHLIGHT */
.policy-thirteen-highlight {
  margin-top: 20px;
  padding: 18px;
  background: rgba(177, 68, 100, 0.08);
  border-left: 4px solid #b14464;
  border-radius: 14px;
  font-size: 14px;
  color: #5f4d55;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .policy-thirteen-card {
    grid-template-columns: 1fr;
    padding: 25px;
  }

  .policy-thirteen-title {
    font-size: 32px;
  }
}


/*terms and responsible gaming*/


/*section 1*/
/* ============================= */
/* TERMS SECTION - LIGHT MAROON  */
/* ============================= */

.terms-one-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #fff5f7, #fdecef);
  font-family: Arial, sans-serif;
  color: #3a1f25;
}

/* Main container */
.terms-one-container {
  max-width: 1000px;
  margin: auto;
  background: #ffffff;
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(120, 40, 60, 0.12);
  border-left: 6px solid #b76e79;
}

/* Title */
.terms-one-title {
  font-size: 28px;
  font-weight: 700;
  color: #7a2e3a;
  margin-bottom: 10px;
}

/* Date */
.terms-one-date {
  font-size: 14px;
  color: #a05a67;
  margin-bottom: 25px;
}

/* Content text */
.terms-one-content {
  font-size: 16px;
  line-height: 1.8;
  color: #4a2a32;
}

/* Highlight box */
.terms-one-highlight {
  margin-top: 25px;
  padding: 20px;
  background: #fde7eb;
  border-left: 4px solid #b76e79;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .terms-one-container {
    padding: 25px;
  }

  .terms-one-title {
    font-size: 22px;
  }
}

/*section 2*/

/* ============================= */
/* TERMS PART 1 - LIGHT MAROON   */
/* ============================= */

.terms-two-section {
  padding: 70px 20px;
  background: linear-gradient(135deg, #fff5f7, #fdecef);
  font-family: Arial, sans-serif;
  color: #3a1f25;
}

/* Container */
.terms-two-container {
  max-width: 1000px;
  margin: auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 10px 28px rgba(120, 40, 60, 0.12);
  border-left: 6px solid #b76e79;
}

/* Main heading */
.terms-two-heading {
  font-size: 24px;
  font-weight: 700;
  color: #7a2e3a;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

/* Sub title */
.terms-two-title {
  font-size: 18px;
  font-weight: 600;
  color: #8b3a47;
  margin-bottom: 10px;
}

/* Paragraph text */
.terms-two-text {
  font-size: 15.5px;
  line-height: 1.8;
  color: #4a2a32;
  margin-bottom: 15px;
}

/* Block spacing */
.terms-two-block {
  padding: 10px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .terms-two-container {
    padding: 22px;
  }

  .terms-two-heading {
    font-size: 20px;
  }

  .terms-two-title {
    font-size: 16px;
  }
}

/*section 3*/

/* ============================= */
/* TERMS PART 2 - ELIGIBILITY    */
/* ============================= */

.terms-three-section {
  padding: 70px 20px;
  background: linear-gradient(135deg, #fff5f7, #fdecef);
  font-family: Arial, sans-serif;
  color: #3a1f25;
}

/* Container */
.terms-three-container {
  max-width: 1000px;
  margin: auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 10px 28px rgba(120, 40, 60, 0.12);
  border-left: 6px solid #b76e79;
}

/* Main heading */
.terms-three-heading {
  font-size: 24px;
  font-weight: 700;
  color: #7a2e3a;
  margin-bottom: 25px;
}

/* Section block */
.terms-three-block {
  margin-bottom: 25px;
}

/* Sub headings */
.terms-three-title {
  font-size: 18px;
  font-weight: 600;
  color: #8b3a47;
  margin-bottom: 10px;
}

/* Text */
.terms-three-text {
  font-size: 15.5px;
  line-height: 1.8;
  color: #4a2a32;
  margin-bottom: 10px;
}

/* List styling */
.terms-three-list {
  margin: 10px 0 15px 20px;
  padding: 0;
  color: #4a2a32;
}

.terms-three-list li {
  margin-bottom: 6px;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .terms-three-container {
    padding: 22px;
  }

  .terms-three-heading {
    font-size: 20px;
  }

  .terms-three-title {
    font-size: 16px;
  }
}

/*section 4*/

/* ============================= */
/* TERMS PART 3 - REGISTRATION   */
/* ============================= */

.terms-four-section {
  padding: 70px 20px;
  background: linear-gradient(135deg, #fff5f7, #fdecef);
  font-family: Arial, sans-serif;
  color: #3a1f25;
}

/* Container */
.terms-four-container {
  max-width: 1000px;
  margin: auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 10px 28px rgba(120, 40, 60, 0.12);
  border-left: 6px solid #b76e79;
}

/* Heading */
.terms-four-heading {
  font-size: 24px;
  font-weight: 700;
  color: #7a2e3a;
  margin-bottom: 25px;
}

/* Blocks */
.terms-four-block {
  margin-bottom: 25px;
}

/* Sub titles */
.terms-four-title {
  font-size: 18px;
  font-weight: 600;
  color: #8b3a47;
  margin-bottom: 10px;
}

/* Text */
.terms-four-text {
  font-size: 15.5px;
  line-height: 1.8;
  color: #4a2a32;
}

/* Responsive */
@media (max-width: 768px) {
  .terms-four-container {
    padding: 22px;
  }

  .terms-four-heading {
    font-size: 20px;
  }

  .terms-four-title {
    font-size: 16px;
  }
}

/*section 5*/
/* ============================= */
/* TERMS PART 4 - DEPOSITS       */
/* ============================= */

.terms-five-section {
  padding: 70px 20px;
  background: linear-gradient(135deg, #fff5f7, #fdecef);
  font-family: Arial, sans-serif;
  color: #3a1f25;
}

/* Container */
.terms-five-container {
  max-width: 1000px;
  margin: auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 10px 28px rgba(120, 40, 60, 0.12);
  border-left: 6px solid #b76e79;
}

/* Heading */
.terms-five-heading {
  font-size: 24px;
  font-weight: 700;
  color: #7a2e3a;
  margin-bottom: 25px;
}

/* Blocks */
.terms-five-block {
  margin-bottom: 25px;
}

/* Sub headings */
.terms-five-title {
  font-size: 18px;
  font-weight: 600;
  color: #8b3a47;
  margin-bottom: 10px;
}

/* Text */
.terms-five-text {
  font-size: 15.5px;
  line-height: 1.8;
  color: #4a2a32;
}

/* Responsive */
@media (max-width: 768px) {
  .terms-five-container {
    padding: 22px;
  }

  .terms-five-heading {
    font-size: 20px;
  }

  .terms-five-title {
    font-size: 16px;
  }
}

/*section 6*/
/* ============================= */
/* TERMS PART 5 - BETTING RULES  */
/* ============================= */

.terms-six-section {
  padding: 70px 20px;
  background: linear-gradient(135deg, #fff5f7, #fdecef);
  font-family: Arial, sans-serif;
  color: #3a1f25;
}

/* Container */
.terms-six-container {
  max-width: 1000px;
  margin: auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 10px 28px rgba(120, 40, 60, 0.12);
  border-left: 6px solid #b76e79;
}

/* Heading */
.terms-six-heading {
  font-size: 24px;
  font-weight: 700;
  color: #7a2e3a;
  margin-bottom: 25px;
}

/* Blocks */
.terms-six-block {
  margin-bottom: 25px;
}

/* Titles */
.terms-six-title {
  font-size: 18px;
  font-weight: 600;
  color: #8b3a47;
  margin-bottom: 10px;
}

/* Text */
.terms-six-text {
  font-size: 15.5px;
  line-height: 1.8;
  color: #4a2a32;
}

/* Responsive */
@media (max-width: 768px) {
  .terms-six-container {
    padding: 22px;
  }

  .terms-six-heading {
    font-size: 20px;
  }

  .terms-six-title {
    font-size: 16px;
  }
}


/*section 7*/
/* ============================= */
/* TERMS PART 6 - PROHIBITED     */
/* ============================= */

.terms-seven-section {
  padding: 70px 20px;
  background: linear-gradient(135deg, #fff5f7, #fdecef);
  font-family: Arial, sans-serif;
  color: #3a1f25;
}

/* Container */
.terms-seven-container {
  max-width: 1000px;
  margin: auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 10px 28px rgba(120, 40, 60, 0.12);
  border-left: 6px solid #b76e79;
}

/* Heading */
.terms-seven-heading {
  font-size: 24px;
  font-weight: 700;
  color: #7a2e3a;
  margin-bottom: 15px;
}

/* Intro text */
.terms-seven-intro {
  font-size: 15.5px;
  line-height: 1.8;
  color: #4a2a32;
  margin-bottom: 15px;
}

/* List styling */
.terms-seven-list {
  margin: 0;
  padding-left: 20px;
}

.terms-seven-list li {
  font-size: 15.5px;
  line-height: 1.7;
  color: #4a2a32;
  margin-bottom: 10px;
  position: relative;
}

/* Bullet accent */
.terms-seven-list li::marker {
  color: #b76e79;
}

/* Responsive */
@media (max-width: 768px) {
  .terms-seven-container {
    padding: 22px;
  }

  .terms-seven-heading {
    font-size: 20px;
  }
}

/*section 8*/

/* ============================= */
/* TERMS PART 7 - TERMINATION    */
/* ============================= */

.terms-eight-section {
  padding: 70px 20px;
  background: linear-gradient(135deg, #fff5f7, #fdecef);
  font-family: Arial, sans-serif;
  color: #3a1f25;
}

/* Container */
.terms-eight-container {
  max-width: 1000px;
  margin: auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 10px 28px rgba(120, 40, 60, 0.12);
  border-left: 6px solid #b76e79;
}

/* Heading */
.terms-eight-heading {
  font-size: 24px;
  font-weight: 700;
  color: #7a2e3a;
  margin-bottom: 25px;
}

/* Blocks */
.terms-eight-block {
  margin-bottom: 25px;
}

/* Titles */
.terms-eight-title {
  font-size: 18px;
  font-weight: 600;
  color: #8b3a47;
  margin-bottom: 10px;
}

/* Text */
.terms-eight-text {
  font-size: 15.5px;
  line-height: 1.8;
  color: #4a2a32;
}

/* Responsive */
@media (max-width: 768px) {
  .terms-eight-container {
    padding: 22px;
  }

  .terms-eight-heading {
    font-size: 20px;
  }

  .terms-eight-title {
    font-size: 16px;
  }
}

/*section 9*/

/* ============================= */
/* TERMS PART 8 - IP RIGHTS      */
/* ============================= */

.terms-nine-section {
  padding: 70px 20px;
  background: linear-gradient(135deg, #fff5f7, #fdecef);
  font-family: Arial, sans-serif;
  color: #3a1f25;
}

/* Container */
.terms-nine-container {
  max-width: 1000px;
  margin: auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 10px 28px rgba(120, 40, 60, 0.12);
  border-left: 6px solid #b76e79;
}

/* Heading */
.terms-nine-heading {
  font-size: 24px;
  font-weight: 700;
  color: #7a2e3a;
  margin-bottom: 20px;
}

/* Text */
.terms-nine-text {
  font-size: 15.5px;
  line-height: 1.8;
  color: #4a2a32;
  margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .terms-nine-container {
    padding: 22px;
  }

  .terms-nine-heading {
    font-size: 20px;
  }
}

/*section 10*/

/* ============================= */
/* TERMS PART 9 - LIABILITY      */
/* ============================= */

.terms-ten-section {
  padding: 70px 20px;
  background: linear-gradient(135deg, #fff5f7, #fdecef);
  font-family: Arial, sans-serif;
  color: #3a1f25;
}

/* Container */
.terms-ten-container {
  max-width: 1000px;
  margin: auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 10px 28px rgba(120, 40, 60, 0.12);
  border-left: 6px solid #b76e79;
}

/* Heading */
.terms-ten-heading {
  font-size: 24px;
  font-weight: 700;
  color: #7a2e3a;
  margin-bottom: 20px;
}

/* Text */
.terms-ten-text {
  font-size: 15.5px;
  line-height: 1.8;
  color: #4a2a32;
  margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .terms-ten-container {
    padding: 22px;
  }

  .terms-ten-heading {
    font-size: 20px;
  }
}

/*section 11*/
/* ============================= */
/* TERMS PART 10 - GOVERNING LAW */
/* ============================= */

.terms-eleven-section {
  padding: 70px 20px;
  background: linear-gradient(135deg, #fff5f7, #fdecef);
  font-family: Arial, sans-serif;
  color: #3a1f25;
}

/* Container */
.terms-eleven-container {
  max-width: 1000px;
  margin: auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 10px 28px rgba(120, 40, 60, 0.12);
  border-left: 6px solid #b76e79;
}

/* Heading */
.terms-eleven-heading {
  font-size: 24px;
  font-weight: 700;
  color: #7a2e3a;
  margin-bottom: 20px;
}

/* Text */
.terms-eleven-text {
  font-size: 15.5px;
  line-height: 1.8;
  color: #4a2a32;
  margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .terms-eleven-container {
    padding: 22px;
  }

  .terms-eleven-heading {
    font-size: 20px;
  }
}

/*section 12*/
/* =================================== */
/* TERMS PART 11 - TERMS UPDATES       */
/* =================================== */

.terms-twelve-section {
  padding: 70px 20px;
  background: linear-gradient(135deg, #fff5f7, #fdecef);
  font-family: Arial, sans-serif;
  color: #3a1f25;
}

/* Container */
.terms-twelve-container {
  max-width: 1000px;
  margin: auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 10px 28px rgba(120, 40, 60, 0.12);
  border-left: 6px solid #b76e79;
}

/* Heading */
.terms-twelve-heading {
  font-size: 24px;
  font-weight: 700;
  color: #7a2e3a;
  margin-bottom: 20px;
}

/* Text */
.terms-twelve-text {
  font-size: 15.5px;
  line-height: 1.8;
  color: #4a2a32;
  margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .terms-twelve-container {
    padding: 22px;
  }

  .terms-twelve-heading {
    font-size: 20px;
  }
}


/*section 13*/

/* =================================== */
/* RESPONSIBLE GAMING - PART 12        */
/* =================================== */

.terms-thirteen-section {
  padding: 70px 20px;
  background: linear-gradient(135deg, #fff5f7, #fdecef);
  font-family: Arial, sans-serif;
  color: #3a1f25;
}

/* Container */
.terms-thirteen-container {
  max-width: 1000px;
  margin: auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 10px 28px rgba(120, 40, 60, 0.12);
  border-left: 6px solid #b76e79;
}

/* Heading */
.terms-thirteen-heading {
  font-size: 24px;
  font-weight: 700;
  color: #7a2e3a;
  margin-bottom: 20px;
}

/* Block */
.terms-thirteen-block {
  margin-top: 10px;
}

/* Titles */
.terms-thirteen-title {
  font-size: 18px;
  font-weight: 600;
  color: #8b3a47;
  margin-bottom: 10px;
}

/* Text */
.terms-thirteen-text {
  font-size: 15.5px;
  line-height: 1.8;
  color: #4a2a32;
  margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .terms-thirteen-container {
    padding: 22px;
  }

  .terms-thirteen-heading {
    font-size: 20px;
  }

  .terms-thirteen-title {
    font-size: 16px;
  }
}


/*section 14*/

/* ===================================== */
/* RESPONSIBLE GAMING - PART 13          */
/* ===================================== */

.terms-fourteen-section {
  padding: 70px 20px;
  background: linear-gradient(135deg, #fff5f7, #fdecef);
  font-family: Arial, sans-serif;
  color: #3a1f25;
}

/* Container */
.terms-fourteen-container {
  max-width: 1000px;
  margin: auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 10px 28px rgba(120, 40, 60, 0.12);
  border-left: 6px solid #b76e79;
}

/* Heading */
.terms-fourteen-heading {
  font-size: 24px;
  font-weight: 700;
  color: #7a2e3a;
  margin-bottom: 25px;
}

/* Blocks */
.terms-fourteen-block {
  margin-bottom: 28px;
}

/* Titles */
.terms-fourteen-title {
  font-size: 18px;
  font-weight: 600;
  color: #8b3a47;
  margin-bottom: 10px;
}

/* Main text */
.terms-fourteen-text {
  font-size: 15.5px;
  line-height: 1.8;
  color: #4a2a32;
  margin-bottom: 10px;
}

/* Activation note */
.terms-fourteen-note {
  font-size: 14.5px;
  line-height: 1.7;
  color: #6a3a44;
  background: #fde7eb;
  padding: 12px;
  border-left: 4px solid #b76e79;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .terms-fourteen-container {
    padding: 22px;
  }

  .terms-fourteen-heading {
    font-size: 20px;
  }

  .terms-fourteen-title {
    font-size: 16px;
  }
}

/*section 15*/
/* ======================================= */
/* RESPONSIBLE GAMBLING - PART 14          */
/* ======================================= */

.terms-fifteen-section {
  padding: 70px 20px;
  background: linear-gradient(135deg, #fff5f7, #fdecef);
  font-family: Arial, sans-serif;
  color: #3a1f25;
}

/* Container */
.terms-fifteen-container {
  max-width: 1000px;
  margin: auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 10px 28px rgba(120, 40, 60, 0.12);
  border-left: 6px solid #b76e79;
}

/* Heading */
.terms-fifteen-heading {
  font-size: 24px;
  font-weight: 700;
  color: #7a2e3a;
  margin-bottom: 20px;
}

/* Main text */
.terms-fifteen-text {
  font-size: 15.5px;
  line-height: 1.8;
  color: #4a2a32;
  margin-bottom: 15px;
}

/* List */
.terms-fifteen-list {
  margin: 10px 0 20px 20px;
  padding: 0;
}

.terms-fifteen-list li {
  font-size: 15.5px;
  line-height: 1.7;
  color: #4a2a32;
  margin-bottom: 8px;
}

/* Highlight box */
.terms-fifteen-highlight {
  background: #fde7eb;
  padding: 14px;
  border-left: 4px solid #b76e79;
  border-radius: 8px;
  font-size: 15px;
  color: #5a2f38;
  margin-bottom: 10px;
}

/* Contact emphasis */
.terms-fifteen-contact {
  font-size: 15.5px;
  font-weight: 600;
  color: #7a2e3a;
}

/* Responsive */
@media (max-width: 768px) {
  .terms-fifteen-container {
    padding: 22px;
  }

  .terms-fifteen-heading {
    font-size: 20px;
  }
}

/*section 16*/
/* ===================================== */
/* RESPONSIBLE GAMBLING - PART 15        */
/* SUPPORT RESOURCES                     */
/* ===================================== */

.terms-sixteen-section {
  padding: 70px 20px;
  background: linear-gradient(135deg, #fff5f7, #fdecef);
  font-family: Arial, sans-serif;
  color: #3a1f25;
}

/* Container */
.terms-sixteen-container {
  max-width: 1000px;
  margin: auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 10px 28px rgba(120, 40, 60, 0.12);
  border-left: 6px solid #b76e79;
}

/* Heading */
.terms-sixteen-heading {
  font-size: 24px;
  font-weight: 700;
  color: #7a2e3a;
  margin-bottom: 20px;
}

/* Blocks */
.terms-sixteen-block {
  margin-bottom: 20px;
}

/* Titles */
.terms-sixteen-title {
  font-size: 18px;
  font-weight: 600;
  color: #8b3a47;
  margin-bottom: 8px;
}

/* Text */
.terms-sixteen-text {
  font-size: 15.5px;
  line-height: 1.8;
  color: #4a2a32;
  margin-bottom: 10px;
}

/* Highlight support box */
.terms-sixteen-highlight {
  font-size: 15.5px;
  font-weight: 600;
  color: #7a2e3a;
  background: #fde7eb;
  padding: 15px;
  border-left: 4px solid #b76e79;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .terms-sixteen-container {
    padding: 22px;
  }

  .terms-sixteen-heading {
    font-size: 20px;
  }

  .terms-sixteen-title {
    font-size: 16px;
  }
}

/*section 17*/
/* ===================================== */
/* RESPONSIBLE GAMBLING - PART 16        */
/* UNDERAGE PROTECTION                   */
/* ===================================== */

.terms-seventeen-section {
  padding: 70px 20px;
  background: linear-gradient(135deg, #fff5f7, #fdecef);
  font-family: Arial, sans-serif;
  color: #3a1f25;
}

/* Container */
.terms-seventeen-container {
  max-width: 1000px;
  margin: auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 10px 28px rgba(120, 40, 60, 0.12);
  border-left: 6px solid #b76e79;
}

/* Heading */
.terms-seventeen-heading {
  font-size: 24px;
  font-weight: 700;
  color: #7a2e3a;
  margin-bottom: 20px;
}

/* Main text */
.terms-seventeen-text {
  font-size: 15.5px;
  line-height: 1.8;
  color: #4a2a32;
  margin-bottom: 15px;
}

/* Block */
.terms-seventeen-block {
  margin-bottom: 20px;
}

/* Title */
.terms-seventeen-title {
  font-size: 18px;
  font-weight: 600;
  color: #8b3a47;
  margin-bottom: 10px;
}

/* List */
.terms-seventeen-list {
  padding-left: 20px;
  margin: 0;
}

.terms-seventeen-list li {
  font-size: 15.5px;
  line-height: 1.7;
  color: #4a2a32;
  margin-bottom: 8px;
}

/* Highlight box */
.terms-seventeen-highlight {
  font-size: 15.5px;
  font-weight: 600;
  color: #7a2e3a;
  background: #fde7eb;
  padding: 15px;
  border-left: 4px solid #b76e79;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .terms-seventeen-container {
    padding: 22px;
  }

  .terms-seventeen-heading {
    font-size: 20px;
  }

  .terms-seventeen-title {
    font-size: 16px;
  }
}

/*section 18*/

/* ===================================== */
/* RESPONSIBLE GAMING - PART 17          */
/* CONTACT & SUPPORT                     */
/* ===================================== */

.terms-eighteen-section {
  padding: 70px 20px;
  background: linear-gradient(135deg, #fff5f7, #fdecef);
  font-family: Arial, sans-serif;
  color: #3a1f25;
}

/* Container */
.terms-eighteen-container {
  max-width: 1000px;
  margin: auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 10px 28px rgba(120, 40, 60, 0.12);
  border-left: 6px solid #b76e79;
}

/* Heading */
.terms-eighteen-heading {
  font-size: 24px;
  font-weight: 700;
  color: #7a2e3a;
  margin-bottom: 20px;
}

/* Text */
.terms-eighteen-text {
  font-size: 15.5px;
  line-height: 1.8;
  color: #4a2a32;
  margin-bottom: 15px;
}

/* Highlight contact box */
.terms-eighteen-highlight {
  font-size: 15.5px;
  font-weight: 600;
  color: #7a2e3a;
  background: #fde7eb;
  padding: 15px;
  border-left: 4px solid #b76e79;
  border-radius: 8px;
  line-height: 1.7;
}

/* Block spacing */
.terms-eighteen-block {
  margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .terms-eighteen-container {
    padding: 22px;
  }

  .terms-eighteen-heading {
    font-size: 20px;
  }
}

/*section 19*/

/* ===================================== */
/* LEGAL DISCLAIMER - FINAL SECTION      */
/* ===================================== */

.terms-nineteen-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #fff5f7, #fdecef);
  font-family: Arial, sans-serif;
  color: #3a1f25;
}

/* Container */
.terms-nineteen-container {
  max-width: 1000px;
  margin: auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(120, 40, 60, 0.14);
  border-left: 6px solid #b76e79;
}

/* Heading */
.terms-nineteen-heading {
  font-size: 26px;
  font-weight: 800;
  color: #7a2e3a;
  margin-bottom: 20px;
}

/* Text */
.terms-nineteen-text {
  font-size: 15.5px;
  line-height: 1.8;
  color: #4a2a32;
  margin-bottom: 15px;
}

/* Highlight box */
.terms-nineteen-highlight {
  font-size: 15.5px;
  font-weight: 600;
  color: #7a2e3a;
  background: #fde7eb;
  padding: 16px;
  border-left: 5px solid #b76e79;
  border-radius: 10px;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  .terms-nineteen-container {
    padding: 24px;
  }

  .terms-nineteen-heading {
    font-size: 22px;
  }
}