 .custom-navbar {
     position: fixed;
     top: 20px;
     left: 20px;
     right: 20px;
     width: auto;
     z-index: 1050;
     border-radius: 40px;
     background: linear-gradient(90deg, #c20000, #e00000, #ff0000, #ff4040, #ff7676);
     padding: 10px 20px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
 }

 .navbar-brand {
     font-weight: 700;
     color: #fff;
     font-size: 20px;
     /* letter-spacing: 1px; */
 }

 .navbar-nav .nav-link {
     color: #fff !important;
     font-weight: 500;
     margin-right: 15px;
     transition: all 0.3s ease;
 }

 .navbar-nav .nav-link:hover {
     color: #ffd700 !important;
 }

 .login-btn {
     background: #5a1eff;
     color: #fff;
     font-weight: 600;
     padding: 8px 18px;
     border-radius: 40px;
     border: none;
     transition: all 0.3s ease;
 }

 .login-btn:hover {
     background: #3411a6;
 }

 .navbar-toggler {
     border: 1px solid #fff !important;
 }

 .navbar-toggler-icon {
     background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
 }

 /* ========== INSTAGRAM MENU ========== */
 .instagram-menu {
     position: fixed;
     top: 70px;
     left: 50%;
     transform: translateX(-50%);
     width: 90%;
     max-width: 700px;
     background: #fff;
     border-radius: 12px;
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
     display: none;
     padding: 20px;
     z-index: 1040;
     max-height: 75vh;
     overflow-y: auto;
     animation: slideDown 0.3s ease;
 }

 .instagram-menu.active {
     display: block;
 }

 @keyframes slideDown {
     from {
         opacity: 0;
         transform: translateX(-50%) translateY(-10px);
     }

     to {
         opacity: 1;
         transform: translateX(-50%) translateY(0);
     }
 }

 .menu-vertical {
     display: flex;
     gap: 20px;
 }

 /* ========== TABS VERTICAL LEFT ========== */
 .tabs-vertical {
     display: flex;
     flex-direction: column;
     gap: 8px;
     min-width: 160px;
     flex-shrink: 0;
 }

 .tabs-vertical button {
     padding: 12px 15px;
     border: none;
     background: #f0f0f0;
     cursor: pointer;
     border-radius: 8px;
     font-weight: 600;
     text-align: left;
     color: #333;
     transition: all 0.3s ease;
     border-left: 3px solid transparent;
     font-size: 13px;
 }

 .tabs-vertical button:hover {
     background: #e8e8e8;
 }

 .tabs-vertical button.active {
     /* background: linear-gradient(90deg, #c20000, #ff0000); */
     color: #fff;
     border-left: 3px solid #ffd700;
 }

 .tabs-vertical button a {
     text-decoration: none;
     color: inherit;
     display: block;
 }

 /* ========== TAB CONTENTS RIGHT ========== */
 .tabcontents-vertical {
     flex: 1;
     min-width: 0;
 }

 .tabcontent {
     display: none;
     flex-wrap: wrap;
     gap: 12px;
     background: #f9f9f9;
     /* padding: 15px; */
     border-radius: 8px;
 }

 .tabcontent.active {
     display: flex;
 }

 /* ========== OPTIONS ========== */
 .tabcontent .option {
     display: flex;
     flex-wrap: wrap;
     align-items: center;
     gap: 10px;
     padding: 10px 12px;
     border-radius: 6px;
     cursor: pointer;
     background: #fff;
     border: 1px solid #ddd;
     width: calc(50% - 6px);
     box-sizing: border-box;
     min-height: 44px;
     transition: all 0.3s ease;
     font-size: 13px;
     white-space: nowrap;
 }

 .tabcontent .option:hover {
     border-color: #ff0000;
     background: #fff5f5;
     transform: translateX(-3px);
 }

 .tabcontent .option.active {
     color: #fff;
     background: linear-gradient(90deg, #c20000, #ff0000);
     border-color: #ff0000;
 }

 .tabcontent .option img {
     width: 28px;
     height: 28px;
     object-fit: contain;
 }

 /* ========== RESPONSIVE DESIGN ========== */
 @media (max-width: 992px) {
     .instagram-menu {
         width: 95%;
         max-height: 80vh;
         padding: 15px;
         top: 65px;
     }

     .menu-vertical {
         flex-direction: column;
         gap: 15px;
     }

     .tabs-vertical {
         width: 100%;
         flex-direction: row;
         flex-wrap: wrap;
         min-width: unset;
         gap: 8px;
     }

     .tabs-vertical button {
         flex: 1 1 calc(33.333% - 6px);
         font-size: 12px;
         padding: 10px 8px;
         text-align: center;
     }

     .tabcontents-vertical {
         width: 100%;
     }

     .tabcontent .option {
         width: calc(50% - 6px);
         font-size: 12px;
         padding: 8px 10px;
         min-height: 40px;
     }
 }

 @media (max-width: 768px) {
     body {
         padding-top: 60px;
     }

     .custom-navbar {
         top: 10px;
         left: 10px;
         right: 10px;
         border-radius: 30px;
         padding: 8px 15px;
     }

     .navbar-brand {
         font-size: 18px;
     }

     .navbar-nav .nav-link {
         margin-right: 0;
         padding: 10px 0;
         font-size: 15px;
     }

     .instagram-menu {
         top: 60px;
         width: 95%;
         max-height: 80vh;
         padding: 12px;
     }

     .tabs-vertical button {
         flex: 1 1 calc(50% - 4px);
         font-size: 11px;
         padding: 8px 6px;
     }

     .tabcontent .option {
         width: calc(50% - 6px);
         font-size: 11px;
         padding: 8px;
     }

     .tabcontent .option img {
         width: 24px;
         height: 24px;
     }
 }

 @media (max-width: 576px) {
     body {
         padding-top: 55px;
     }

     .custom-navbar {
         top: 8px;
         left: 8px;
         right: 8px;
         border-radius: 25px;
         padding: 6px 12px;
     }

     .navbar-brand {
         font-size: 16px;
     }

     /* .navbar-collapse {
         position: fixed;
         top: 55px;
         right: 8px;
         left: 8px;
         width: auto;
         background: linear-gradient(90deg, #c20000, #e00000, #ff0000, #ff4040, #ff7676);
         padding: 15px;
         border-radius: 15px;
         margin-top: 5px;
         max-height: calc(100vh - 70px);
         overflow-y: auto;
     } */

     .navbar-nav {
         flex-direction: column;
         gap: 10px;
         text-align: center;
     }

     .navbar-nav .nav-link {
         margin-right: 0;
         font-size: 13px;
         padding: 8px 0;
     }

     .login-btn {
         width: 100%;
         margin-top: 10px;
         padding: 10px 15px;
     }

     .instagram-menu {
         top: auto;
         left: 8px;
         right: 8px;
         width: auto;
         max-width: none;
         transform: none;
         max-height: 70vh;
         padding: 10px;
         margin-top: 10px;
         border-radius: 10px;
     }

     .menu-vertical {
         flex-direction: column;
         gap: 10px;
     }

     .tabs-vertical {
         width: 100%;
         flex-direction: row;
         flex-wrap: wrap;
         gap: 6px;
     }

     .tabs-vertical button {
         flex: 1 1 calc(50% - 3px);
         font-size: 10px;
         padding: 8px 4px;
     }

     .tabcontent {
         gap: 10px;
         padding: 8px;
     }

     .tabcontent .option {
         width: 100%;
         font-size: 11px;
         padding: 8px;
         min-height: 38px;
     }

     .tabcontent .option img {
         width: 22px;
         height: 22px;
     }
 }

 /* ========== DEMO CONTENT ========== */
 .demo-content {
     padding: 40px 20px;
     background: linear-gradient(135deg, #f5f5f5 0%, #fff 100%);
     min-height: 200vh;
 }

 .demo-section {
     background: #fff;
     padding: 30px;
     margin: 20px 0;
     border-radius: 12px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
     max-width: 900px;
     margin-left: auto;
     margin-right: auto;
 }

 .demo-section h2 {
     color: #c20000;
     margin-bottom: 15px;
     font-weight: 700;
 }

 .demo-section p {
     color: #555;
     line-height: 1.8;
     margin: 10px 0;
 }

 .check {
     color: #28a745;
     font-weight: bold;
 }




/* Hide original Instagram menu when navbar is collapsed (mobile) */
@media (max-width: 991.98px) {
  .instagram-menu {
    display: none !important;
  }
}

/* Mobile Instagram Submenu Styling */
.instagram-mobile-submenu .instagram-submenu-content {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.instagram-mobile-submenu .menu-vertical {
  flex-direction: column;
  gap: 12px;
}

.instagram-mobile-submenu .tabs-vertical {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 6px;
  width: 100%;
}

.instagram-mobile-submenu .tabs-vertical button {
  flex: 1 1 calc(50% - 6px);
  font-size: 11px;
  padding: 8px 6px;
  text-align: center;
  background: #f0f0f0;
  border: none;
  border-radius: 6px;
  color: #333;
}

.instagram-mobile-submenu .tabs-vertical button.active {
  background: linear-gradient(90deg, #c20000, #ff0000);
  color: #fff;
}

.instagram-mobile-submenu .tabcontents-vertical {
  width: 100%;
}

.instagram-mobile-submenu .tabcontent {
  display: none;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px;
  background: #f9f9f9;
  border-radius: 6px;
}

.instagram-mobile-submenu .tabcontent.active {
  display: flex;
}

.instagram-mobile-submenu .option {
  width: 100%;
  padding: 8px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.instagram-mobile-submenu .option img {
  width: 22px;
  height: 22px;
}


/* -------------------------------------------------
   MOBILE INSTAGRAM DROPDOWN (inside the collapsed navbar)
   ------------------------------------------------- */
.instagram-mobile-dropdown {
  display: none;               /* hidden by default */
}
.instagram-mobile-dropdown.show {
  display: block;
}

/* make the dropdown look like the desktop version but compact */
.instagram-mobile-dropdown .instagram-submenu-content {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
  overflow: hidden;
}
.instagram-mobile-dropdown .menu-vertical { flex-direction: column; gap: 12px; }
.instagram-mobile-dropdown .tabs-vertical {
  flex-direction: row; flex-wrap: wrap; gap: 6px; width:100%;
}
.instagram-mobile-dropdown .tabs-vertical button {
  flex: 1 1 calc(50% - 6px);
  font-size: 11px; padding: 8px 6px; text-align:center;
  background:#f0f0f0; border:none; border-radius:6px; color:#333;
}
.instagram-mobile-dropdown .tabs-vertical button.active {
  background:linear-gradient(90deg,#c20000,#ff0000); color:#fff;
}
.instagram-mobile-dropdown .tabcontent { display:none; flex-wrap:wrap; gap:8px; padding:10px; background:#f9f9f9; border-radius:6px; }
.instagram-mobile-dropdown .tabcontent.active { display:flex; }
.instagram-mobile-dropdown .option {
  width:100%; padding:8px; background:#fff; border:1px solid #ddd;
  border-radius:6px; font-size:11px; display:flex; align-items:center; gap:8px;
}
.instagram-mobile-dropdown .option img { width:22px; height:22px; }

/* Hide the big desktop dropdown on mobile */
@media (max-width: 991.98px) {
  #instagramMenu { display:none !important; }
}

/* ==================================================================================================================================== */





 /* Hero */
 .hero-section {
     overflow: hidden;
     color: #fff;
     padding: 2rem;
     border-radius: 40px;
     background: linear-gradient(182.53deg, #FE4040 2.11%, #FF8080 50%, #FFD5D5 97.94%);
 }

 .hero-img {
     max-width: 100%;
 }

 .heart-img {
     position: absolute;
     width: 10%;
     opacity: 0.85;
     animation: heartbeat 2s infinite;
 }

 .heart1 {
     top: 5%;
     right: 5%;
 }

 .heart2 {
     bottom: 5%;
     left: 5%;
     transform: rotate(-12deg);
 }

 @keyframes heartbeat {

     0%,
     20%,
     40%,
     60%,
     80%,
     100% {
         transform: scale(1);
     }

     10%,
     30%,
     50%,
     70%,
     90% {
         transform: scale(1.15);
     }
 }

 .btn-blue {
     background: #5a1eff;
     color: #fff;
     font-weight: 600;
     padding: 12px 28px;
     border-radius: 40px;
 }

 .btn-blue:hover {
     background: #3411a6;
 }

 /* Steps */
 .steps-container {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 20px;
 }

 .step-card {
     flex: 1 1 220px;
     max-width: 220px;
     text-align: center;
 }

 .step-number {
     background: #5a1eff;
     color: #fff;
     width: 60px;
     height: 60px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: bold;
     margin: 0 auto;
 }

 /* Growth */
 .growth-section {
     width: 95%;
     max-width: 1200px;
     margin: 50px auto;
     background: #5f51f3;
     border-radius: 20px;
     display: flex;
     flex-wrap: wrap;
     align-items: center;
     justify-content: space-between;
     padding: 20px;
     color: #fff;
 }

 .growth-img {
     max-height: 150px;
 }

 /* Services */
 .services-section {
     width: 95%;
     max-width: 1100px;
     margin: 40px auto;
 }

 .services-title {
     font-weight: 800;
     font-size: 2rem;
     color: #5E24D3;
 }

 .services-desc {
     font-size: 1rem;
     color: #000;
     margin-top: 10px;
 }

 /* Grid for social boxes */
 .social-grid {
     display: grid;
     gap: 15px;
     width: 95%;
     max-width: 1100px;
     margin: 40px auto 0 auto;
     justify-content: start;
     /* left align */
 }

 /* First row: 7 columns */
 .social-grid.first-row {
     grid-template-columns: repeat(7, 120px);
     grid-auto-rows: 120px;
 }

 /* Second row: 5 columns */
 .social-grid.second-row {
     grid-template-columns: repeat(5, 120px);
     grid-auto-rows: 120px;
 }

 /* Boxes */
 .box {
     width: 120px;
     height: 120px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 12px;
     font-size: 24px;
     color: #fff;
     cursor: pointer;
 }

 /* Responsive adjustments */
 @media (max-width: 1024px) {
     .social-grid.first-row {
         grid-template-columns: repeat(5, 120px);
         /* reduce columns */
     }

     .social-grid.second-row {
         grid-template-columns: repeat(4, 120px);
     }

     .heart2 {
         bottom: -3%;
         left: 5%;
         transform: rotate(-12deg);
     }
 }

 @media (max-width: 768px) {
     .social-grid.first-row {
         grid-template-columns: repeat(3, 120px);
     }

     .heart2 {
         bottom: 5%;
         left: 5%;
         transform: rotate(-12deg);
     }

     .social-grid.second-row {
         grid-template-columns: repeat(3, 120px);
     }
 }

 @media (max-width: 480px) {

     .social-grid.first-row,
     .social-grid.second-row {
         grid-template-columns: repeat(2, 120px);
         justify-content: center;
         /* center on very small screens */
     }
 }


 /* Backgrounds */
 .tiktok {
     background: linear-gradient(180deg, #494949 0%, #000000 100%);
 }

 .instagram {
     background: linear-gradient(180deg, #622BBB 0%, #FE4040 50%, #FFB44E 95%);
 }

 .facebook {
     background: linear-gradient(180deg, #1877F2 0%, #0A54C1 100%);
 }

 .youtube {
     background: linear-gradient(180deg, #7C0101 0%, #FF0000 100%);
 }

 .spotify {
     background: linear-gradient(180deg, #1DB954 0%, #158A3F 100%);
 }

 .orange-gradient {
     background: linear-gradient(180deg, #FFB44E 0%, #FF7705 100%);
 }

 .telegram {
     background: linear-gradient(180deg, #2AABEE 0%, #229ED9 100%);
 }

 .pinterest {
     background: linear-gradient(180deg, #E60023 0%, #B0001A 100%);
 }

 .twitch {
     background: linear-gradient(180deg, #503FF5 26%, #4F1AC2 100%);
 }

 .reddit {
     background: linear-gradient(180deg, #FF4F01 0%, #FF7705 100%);
 }

 .linkedin {
     background: linear-gradient(180deg, #0B66C0 0%, #134A80 100%);
 }

 .x {
     background: linear-gradient(180deg, #000000 0%, #494949 100%);
 }


 /* Best Seller */
 /* Slider wrapper */
 .slider-wrapper {
     position: relative;
     overflow: hidden;
 }

 /* Slider flex container */
 .best-seller-boxes.slider {
     display: flex;
     gap: 20px;
     transition: transform 0.5s ease-in-out;
     flex-wrap: nowrap;
     /* Prevent wrapping for slider */
 }

 /* Product box sizing per view */
 .product-box {
     flex: 0 0 calc((100% - 60px)/4);
     /* 4 per view default */
     width: 300px;
     background: #fff;
     border-radius: 20px;
     padding: 15px;
     display: flex;
     flex-direction: column;
     align-items: center;
 }

 /* Product image */
 .product-image img {
     width: 100%;
     border-radius: 15px 15px 0 0;
 }

 /* Product labels */
 .product-label {
     font-weight: 800;
     font-size: 20px;
     background: #5E24D3;
     color: #fff;
     padding: 5px 10px;
     margin-top: 10px;
     border-radius: 8px;
 }

 .product-sub {
     font-size: 16px;
     margin-top: 5px;
 }

 .product-price {
     font-weight: 800;
     font-size: 24px;
     margin-top: 10px;
 }

 /* Best-seller container */
 .best-seller {
     width: 95%;
     max-width: 1295px;
     margin: 50px auto;
     padding: 30px 20px;
     border-radius: 20px;
     background: linear-gradient(180deg, #FE4242 0%, #FFD3D3 100%);
     text-align: center;
 }

 /* Ellipse / dots */
 .ellipse-container {
     display: flex;
     justify-content: center;
     gap: 10px;
     margin-top: 20px;
 }

 .ellipse {
     width: 20px;
     height: 20px;
     border-radius: 50%;
     cursor: pointer;
     border: 2px solid #ff4040;
     background: #fff;
 }

 .ellipse.active {
     background: #ff4040;
 }

 .ellipse.white {
     background: #fff;
 }

 .ellipse.red {
     background: #FE4040;
 }

 /* Responsive adjustments */
 @media (max-width: 1200px) {
     .product-box {
         flex: 0 0 calc((100% - 40px)/3);
     }

     /* 3 per view */
 }

 @media (max-width: 992px) {
     .product-box {
         flex: 0 0 calc((100% - 30px)/2);
     }

     /* 2 per view */
 }

 @media (max-width: 576px) {
     .product-box {
         flex: 0 0 100%;
     }

     /* 1 per view */
 }


 /* Responsive */
 @media (max-width: 768px) {
     .growth-section {
         flex-direction: column;
         text-align: center;
     }

     .outer-div {
         gap: 15px;
     }

     .box {
         width: 90px;
         height: 90px;
         font-size: 40px;
     }

     .product-box {
         width: 100%;
         max-width: 90%;
     }
 }


 .section {
     display: flex;
     justify-content: space-between;
     align-items: center;
     /* vertical center of image & benefits-wrapper */
     max-width: 1400px;
     margin: 50px auto;
     gap: 40px;
     padding: 0 20px;
     flex-wrap: wrap;
 }

 .benefits-wrapper {
     display: flex;
     flex-direction: column;
     gap: 20px;
 }

 .beneficios-title {
     font-family: 'Nunito', sans-serif;
     font-weight: 800;
     font-size: 60px;
     line-height: 100%;
     color: #5E24D3;
     margin: 0;
 }

 .benefits {
     display: flex;
     flex-direction: column;
     gap: 20px;
 }

 .benefit-row {
     display: flex;
     align-items: center;
     gap: 15px;
 }

 .icon {
     width: 55px;
     height: 55px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .iconify {
     font-size: 28px;
     color: #fff;
 }

 .benefit-row.blue .icon {
     background: #009DFF;
 }

 .benefit-row.purple .icon {
     background: #5E24D3;
 }

 .benefit-row.orange .icon {
     background: #FF9300;
 }

 .benefit-row.red .icon {
     background: #FF0000;
 }

 .benefit-row.blue h3 {
     color: #009DFF;
 }

 .benefit-row.purple h3 {
     color: #5E24D3;
 }

 .benefit-row.orange h3 {
     color: #FF9300;
 }

 .benefit-row.red h3 {
     color: #FF0000;
 }

 .text h3 {
     font-weight: 800;
     font-size: 24px;
     margin: 0;
     font-family: 'Nunito', sans-serif;
 }

 .text p {
     font-size: 16px;
     margin: 4px 0 0;
     font-family: 'Nunito', sans-serif;
     color: #000;
 }

 /* Image column */
 .image-box {
     flex: 1 1 500px;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .image-box img {
     width: 100%;
     max-width: 650px;
     height: auto;
     border-radius: 33px;
 }

 /* Responsive */
 @media (max-width: 992px) {
     .section {
         flex-direction: column;
         align-items: center;
     }

     .image-box {
         flex: 0;
     }

     .benefits-wrapper {
         align-items: center;
     }

     .beneficios-title {
         font-size: 45px;
     }

     .image-box img {
         max-width: 100%;
     }
 }

 @media (max-width: 576px) {
     .beneficios-title {
         font-size: 36px;
     }

     .benefit-row {
         gap: 10px;
     }

     .icon {
         width: 45px;
         height: 45px;
     }

     .iconify {
         font-size: 22px;
     }

     .text h3 {
         font-size: 20px;
     }

     .text p {
         font-size: 14px;
     }
 }



 .faq-section {
     width: 100%;
     max-width: 1308px;
     margin: 0 auto;
     display: flex;
     flex-wrap: wrap;
     gap: 40px;
     align-items: center;
     padding: 20px;
     box-sizing: border-box;
 }

 /* Left image */
 .faq-image {
     flex: 1 1 45%;
     max-width: 749px;
 }

 .faq-image img {
     width: 100%;
     height: auto;
     border-radius: 20px;
     object-fit: cover;
 }

 /* Right side */
 .faq-boxes {
     flex: 1 1 50%;
     max-width: 655px;
     display: flex;
     flex-direction: column;
     gap: 19px;
 }

 /* Each box */
 .faq-box {
     width: 100%;
     min-height: 91px;
     border: 1px solid #5F51F3;
     /* purple border */
     border-radius: 12px;
     padding: 20px 30px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     background: #fff;
     transition: all 0.3s ease;
 }

 .faq-box:hover {
     background: #f9f8ff;
     /* light purple tint on hover */
 }

 /* Text */
 .faq-text {
     font-family: 'Nunito', sans-serif;
     font-size: 20px;
     font-weight: 600;
     color: #5F51F3;
     /* same as border */
     max-width: 583px;
 }

 /* Icon (arrow down) */
 .faq-icon {
     display: inline-block;
     width: 17px;
     height: 17px;
     font-size: 20px;
     color: #5F51F3;
     /* same as text & border */
     flex-shrink: 0;
 }

 /* Responsive */
 @media (max-width: 992px) {
     .faq-section {
         flex-direction: column;
         /* align-items: flex-start; */
     }

     .faq-image,
     .faq-boxes {
         max-width: 100%;
     }
 }




 /* Contact Section */
 .contact-section {
     width: 100%;
     max-width: 1081px;
     margin: 0 auto;
     padding: 40px 20px;
     border-radius: 12px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 20px;
     flex-wrap: wrap;
     background: linear-gradient(175.27deg, #5E24D3 -10.65%, #9389FF 118.25%);

     /* Positioning to overlap footer */
     position: relative;
     z-index: 10;
     margin-bottom: -150px;
     /* Pull section down into footer */
 }

 /* Left text box */
 .contact-text {
     padding: 15px 20px;
     border-radius: 12px;
     max-width: 355px;
 }

 .contact-text h2 {
     font-family: 'Nunito', sans-serif;
     font-weight: 800;
     font-size: 29px;
     margin: 0 0 8px;
     color: #fff;
 }

 .contact-text p {
     font-family: 'Nunito', sans-serif;
     font-weight: 500;
     font-size: 22px;
     margin: 0;
     color: #fff;
 }

 /* Right contact boxes */
 .contact-boxes {
     display: flex;
     gap: 15px;
     flex-wrap: wrap;
 }

 .contact-box {
     display: flex;
     align-items: center;
     gap: 12px;
     padding: 10px 18px;
     border: 1px solid #fff;
     border-radius: 10px;
     min-width: 200px;
     justify-content: center;
     background: transparent;
 }

 .material-icons-round,
 .ri-whatsapp-fill {
     font-size: 24px;
     color: #fff;
 }

 .box-text {
     font-family: 'Nunito', sans-serif;
     font-weight: 700;
     font-size: 16px;
     color: #fff;
 }

 /* Footer Section */
 .footer-section {
     background: linear-gradient(180deg, #FE4242 0%, #FE6262 100%);
     padding: 200px 20px 40px 20px;
     /* extra top padding to accommodate contact-section overlap */
     color: #fff;
     text-align: center;
     position: relative;
     z-index: 1;
 }

 .footer-logo img {
     width: 525px;
     height: 300px;
     margin-bottom: 20px;
 }

 .footer-contact p {
     font-family: 'Nunito', sans-serif;
     font-weight: 700;
     font-size: 22px;
     margin: 5px 0;
 }

 .footer-bottom {
     display: flex;
     justify-content: space-between;
     flex-wrap: wrap;
     margin-top: 30px;
 }

 .footer-link,
 .footer-text {
     font-family: 'Nunito', sans-serif;
     font-weight: 700;
     font-size: 18px;
 }

 /* Responsive */
 @media (max-width: 992px) {
     .contact-section {
         flex-direction: column;
         align-items: stretch;
         text-align: center;
         margin-bottom: -100px;
     }

     .contact-text {
         max-width: 100%;
     }

     .contact-boxes {
         justify-content: center;
     }

     .footer-bottom {
         flex-direction: column;
         gap: 10px;
     }
 }

 @media (max-width: 576px) {
     .contact-text h2 {
         font-size: 22px;
     }

     .contact-text p {
         font-size: 18px;
     }

     .contact-box {
         min-width: 100%;
     }

     .footer-logo img {
         width: 100%;
         height: auto;
     }
 }

 .faq-box {
     border: 1px solid #5F51F3;
     border-radius: 12px;
     padding: 20px;
     margin-bottom: 15px;
     background: #fff;
     cursor: pointer;
     position: relative;
     transition: all 0.3s ease;
 }

 .faq-box:hover {
     background: #f9f8ff;
 }

 .faq-text {
     font-family: 'Nunito', sans-serif;
     font-size: 20px;
     font-weight: 600;
     color: #5F51F3;
 }

 .faq-arrow {
     font-size: 28px;
     color: #5F51F3;
     float: right;
     transition: transform 0.3s ease;
 }

 .faq-answer {
     display: none;
     margin-top: 10px;
     font-size: 16px;
     color: #000;
 }

 .faq-box.active .faq-answer {
     display: block;
 }

 .faq-box.active .faq-arrow {
     transform: rotate(180deg);
 }
















 /* Login/Register Button */
 .login-btn {
     background-color: #5E24D3;
     /* button background color */
     color: #fff;
     /* button text color */
     border-radius: 35px;
     /* rounded corners */
     padding: 8px 20px;
     font-weight: 700;
     font-family: 'Nunito', sans-serif;
     text-transform: uppercase;
     transition: background 0.3s;
 }

 .login-btn:hover {
     background-color: #4920b8;
     /* optional hover effect */
     color: #fff;
 }

 /* Navbar links and arrows color */
 .navbar-nav .nav-link {
     color: #fff !important;
     /* text white */
 }

 .navbar-nav .nav-link i {
     color: #fff;
     /* arrow white */
 }

 /* Navbar brand color */
 .navbar-brand {
     color: #fff !important;
 }

 /* body spacing under navbar (will also be adjusted by JS) */
 body {
     padding-top: 120px;
     /* fallback; JS will set exact value */
 }


 .cta-text {
     display: inline-block;
     /* Keep in one line */
     white-space: nowrap;
     /* Prevent wrapping */
     padding: 12px 20px;
     /* Optional spacing */
     background: #fff;
     /* Background color */
     color: #5E24D3;
     /* Text color */
     font-family: 'Nunito', sans-serif;
     font-weight: 800;
     /* ExtraBold */
     font-size: 35px;
     text-transform: uppercase;
     border-radius: 8px;
     line-height: 48px;
     text-align: center;

 }

 /* Responsive adjustments */
 @media (max-width: 992px) {
     .cta-text {
         font-size: 28px;
         /* margin-top: 200px; */
         padding: 10px 15px;
     }
 }

 @media (max-width: 576px) {
     .cta-text {
         font-size: 24px;
         /* margin-top: 150px; */
         padding: 8px 12px;
     }
 }

 .description-text {
     font-family: 'Nunito', sans-serif;
     font-weight: 400;
     /* Regular */
     font-size: 20px;
     line-height: 100%;
     letter-spacing: 0;
     color: #000;
     /* Text color */
     background: transparent;
     /* No background */
     text-align: center;
     max-width: 1000px;
     /* Optional: limit width for better readability */
     margin-top: 20px;
     /* Space from previous div */
 }

 /* Responsive adjustments */
 @media (max-width: 992px) {
     .description-text {
         font-size: 18px;
         max-width: 90%;
     }
 }

 @media (max-width: 576px) {
     .description-text {
         font-size: 16px;
         max-width: 95%;
     }
 }


 /* Wrapper for all social grid */
 .social-grid-wrapper {
     display: flex;
     flex-direction: column;
     align-items: center;
     /* center everything horizontally */
     gap: 15px;
     padding: 0 10px;
 }

 /* First row: 7 boxes */
 .first-row {
     display: grid;
     grid-template-columns: repeat(7, 120px);
     justify-content: center;
     /* center row */
     gap: 15px;
 }

 /* Second row: 5 boxes centered under first row */
 .second-row {
     display: grid;
     grid-template-columns: repeat(5, 120px);
     justify-content: center;
     /* center row */
     gap: 15px;
 }

 /* Box styling (applies to both rows) */
 .box {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 154px;
     height: 120px;
     border-radius: 12px;
     font-size: 50px;
     color: #fff;
     cursor: pointer;
 }

 /* Background gradients for each box */
 .tiktok {
     background: linear-gradient(180deg, #494949 0%, #000 100%);
 }

 .instagram {
     background: linear-gradient(180deg, #622BBB 0%, #FE4040 50%, #FFB44E 95%);
 }

 .facebook {
     background: linear-gradient(180deg, #1877F2 0%, #0A54C1 100%);
 }

 .youtube {
     background: linear-gradient(180deg, #7C0101 0%, #FF0000 100%);
 }

 .spotify {
     background: linear-gradient(180deg, #1DB954 0%, #158A3F 100%);
 }

 .orange-gradient {
     background: linear-gradient(180deg, #FFB44E 0%, #FF7705 100%);
 }

 .telegram {
     background: linear-gradient(180deg, #2AABEE 0%, #229ED9 100%);
 }

 .pinterest {
     background: linear-gradient(180deg, #E60023 0%, #B0001A 100%);
 }

 .twitch {
     background: linear-gradient(180deg, #503FF5 26%, #4F1AC2 100%);
 }

 .reddit {
     background: linear-gradient(180deg, #FF4F01 0%, #FF7705 100%);
 }

 .linkedin {
     background: linear-gradient(180deg, #0B66C0 0%, #134A80 100%);
 }

 .x {
     background: #000;
 }

 /* Responsive adjustments */
 @media (max-width: 1024px) {
     .first-row {
         grid-template-columns: repeat(5, 120px);
     }

     .second-row {
         grid-template-columns: repeat(4, 120px);
     }
 }

 @media (max-width: 768px) {
     .first-row {
         grid-template-columns: repeat(3, 120px);
         gap: 10px;
     }

     .second-row {
         grid-template-columns: repeat(3, 120px);
         gap: 10px;
     }

     .box {
         font-size: 40px;
     }

     .image-box {
         flex: 0;
         text-align: center;
     }
 }

 @media (max-width: 480px) {
     .first-row {
         grid-template-columns: repeat(2, 120px);
         gap: 8px;
     }

     .second-row {
         grid-template-columns: repeat(2, 120px);
         gap: 8px;
     }

     .box {
         font-size: 30px;
     }
 }




 /* =========================
   SERVICE / FEATURE responsiveness
   (NO design change — only make them fluid)
   ========================= */

 .service-container {
     width: 100%;
     max-width: 1178px;
     /* keep same max width */
     min-height: 218px;
     border: 1px solid #D9D9D9;
     border-radius: 8px;
     display: flex;
     align-items: center;
     padding: 1rem;
     gap: 30px;
     margin: 0 auto;
     flex-wrap: wrap;
     /* important for responsiveness */
     box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
     /* subtle shadow only */
 }

 /* keep visual sizes but allow shrink on small screens */
 .icon-box {
     width: 153px;
     height: 162px;
     border-radius: 19px;
     /* background: linear-gradient(180deg,#494949 0%, #000 100%); */
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
     box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
 }

 .icon-box i {
     font-size: 78px;
     color: #fff;
 }

 /* allow text content to take remaining space */
 .text-content {
     display: flex;
     flex-direction: column;
     justify-content: center;
     flex: 1;
     min-width: 220px;
 }

 /* Service fonts same — but scale on smaller screens */
 .service-title {
     font-weight: 800;
     font-size: 35px;
     color: #5E24D3;
 }

 .service-subtitle {
     font-weight: 800;
     font-size: 16px;
     color: #494949;
 }

 .service-description {
     font-weight: 400;
     font-size: 16px;
     color: #000;
     margin-top: 10px;
     max-width: 800px;
 }

 /* Feature boxes: keep same look but responsive */
 .feature-box {
     width: 100%;
     max-width: 233px;
     /* same visual max */
     min-height: 230px;
     background-color: #fff;
     border: 2px solid #5E24D3;
     border-radius: 15px;
     padding: 15px;
     text-align: center;
     margin: 12px;
     /* allow wrapping with small gaps */
     display: inline-block;
     vertical-align: top;
     box-shadow: 0 8px 22px rgba(94, 36, 211, 0.06);
     /* soft glow */
 }

 .icon-circle {
     width: 78px;
     height: 78px;
     margin: 0 auto 15px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     background: #fff;
     overflow: hidden;
 }

 .icon-circle img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .feature-text {
     font-weight: 700;
     font-size: 20px;
     color: #5E24D3;
     margin-bottom: 10px;
 }

 .feature-btn {
     width: 183px;
     height: 37px;
     border-radius: 40px;
     background: #5E24D3;
     color: #fff;
     border: none;
     font-weight: 700;
 }

 /* Small / medium breakpoints - scale down sizes (no design change) */
 @media (max-width: 992px) {
     .service-container {
         padding: 0.9rem;
         gap: 18px;
     }

     .service-title {
         font-size: 30px;
     }

     .icon-box {
         width: 130px;
         height: 140px;
     }

     .icon-box i {
         font-size: 64px;
     }

     .service-description {
         font-size: 15px;
         max-width: 100%;
     }
 }

 @media (max-width: 768px) {
     .service-container {
         align-items: flex-start;
     }

     .text-content {
         min-width: 180px;
     }

     .service-title {
         font-size: 26px;
     }

     .icon-box {
         width: 120px;
         height: 130px;
     }

     .icon-box i {
         font-size: 56px;
     }

     .feature-btn {
         max-width: 119px;
     }
 }

 @media (max-width: 576px) {
     .custom-navbar {
         border-radius: 20px;
         padding: 6px 12px;
     }

     .service-container {
         padding: 0.8rem;
         gap: 12px;
     }

     .service-title {
         font-size: 22px;
     }

     .service-subtitle {
         font-size: 14px;
     }

     .service-description {
         font-size: 14px;
     }

     .icon-box {
         width: 100px;
         height: 110px;
     }

     .icon-box i {
         font-size: 48px;
     }

     .feature-box {
         max-width: 100%;
         margin: 10px 8px;
     }
 }








 /* Login/Register Button */
 .login-btn {
     background-color: #5E24D3;
     /* button background color */
     color: #fff;
     /* button text color */
     border-radius: 35px;
     /* rounded corners */
     padding: 8px 20px;
     font-weight: 700;
     font-family: 'Nunito', sans-serif;
     text-transform: uppercase;
     transition: background 0.3s;
 }

 .login-btn:hover {
     background-color: #4920b8;
     /* optional hover effect */
     color: #fff;
 }

 /* Navbar links and arrows color */
 .navbar-nav .nav-link {
     color: #fff !important;
     /* text white */
 }

 .navbar-nav .nav-link i {
     color: #fff;
     /* arrow white */
 }

 /* Navbar brand color */
 .navbar-brand {
     color: #fff !important;
 }



 /* ===============================
   Main Layout
================================= */
 .main-container {
     display: flex;
     gap: 40px;
     padding: 20px;
     flex-wrap: wrap;
     justify-content: flex-start;
 }

 /* ===============================
   Left Box
================================= */
 .left-box {
     flex: 1;
     min-width: 350px;
     max-width: 380px;
     border: 1px solid #5E24D3;
     border-radius: 8px;
     padding: 20px;
     background: #fff;
     /* box background white */
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
 }

 /* TikTok Header */
 .tiktok-box {
     display: flex;
     gap: 15px;
     align-items: flex-start;
     margin-bottom: 20px;
 }

 .box {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 100%;
     /* Full width of left box */
     max-width: 120px;
     /* max width optional */
     height: 126px;
     border-radius: 12px;
     font-size: 50px;
     color: #fff;
     cursor: pointer;
 }

 .tiktok {
     background: linear-gradient(180deg, #494949 0%, #000 100%);
 }

 /* TikTok Texts */
 .tiktok-texts .title {
     font-weight: 800;
     font-size: 25px;
     color: #5E24D3;
     text-transform: uppercase;
 }

 .tiktok-texts .subtitle {
     font-weight: 800;
     font-size: 12px;
     color: #494949;
     text-transform: uppercase;
     margin-left: 8px;
 }

 .below-title .subtext {
     font-weight: 700;
     font-size: 12px;
     color: #5E24D3;
     margin-left: 5px;
 }

 .tiktok-texts .desc {
     margin-top: 8px;
     font-weight: 400;
     font-size: 10px;
     line-height: 1.4;
     color: #000;
 }

 /* Form Box */
 .form-box {
     display: flex;
     flex-direction: column;
     gap: 15px;
     width: 100%;
     max-width: 332px;

     padding: 20px;
     border-radius: 10px;
 }

 /* Label */
 .label {
     font-weight: 700;
     font-size: 16px;
     color: #5E24D3;
 }

 /* Select and Input */
 select,
 input {
     width: 100%;
     padding: 10px;
     border: 1px solid #5E24D3;
     /* Border intact */
     border-radius: 6px;
     font-size: 16px;
     outline: none;
     background-color: #fff;
     /* Input/Select background */
     color: #5E24D3;
     /* Input/Select text color */
 }

 /* Select Options */
 select option {
     color: #5E24D3;
     /* Text color */
     background-color: #fff;
     /* Option background */
 }


 /* Range Text */
 .range {
     font-weight: 600;
     font-size: 12px;
     color: #5E24D3;
     /* Changed color */
     margin-top: -8px;
 }

 /* Price Row */
 .price-row {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 /* TOTAL Button */
 .btn-total {
     width: 106px;
     height: 40px;
     background: #FE4040;
     /* Changed color */
     color: #fff;
     border: none;
     font-weight: 800;
     font-size: 16px;
     border-radius: 6px;
     cursor: pointer;
 }

 /* Amount Text */
 .amount {
     font-weight: 700;
     font-size: 24px;
     color: #5E24D3;
     /* Changed color */
 }

 /* COMPRAR Button */
 .btn-comprar {
     width: 100%;
     height: 49px;
     background: #5E24D3;
     color: #fff;
     border: none;
     border-radius: 35px;
     font-weight: 800;
     font-size: 14px;
     text-transform: uppercase;
     cursor: pointer;
     margin-top: 10px;
 }



 /* ===============================
   Right Side
================================= */
 .right-side {
     flex: 2;
     min-width: 600px;
 }

 .top-heading {
     font-weight: 800;
     font-size: 25px;
     color: #5E24D3;
     text-transform: uppercase;
     margin-bottom: 10px;
 }

 .subtext-info {
     font-weight: 400;
     font-size: 19px;
     margin-bottom: 20px;
 }

 .boxes-container {
     display: flex;
     flex-wrap: wrap;
     gap: 20px;
     background: #fff;
     /* container background white */
     padding: 15px;
     border-radius: 12px;
 }

 .package-box {
     flex: 1 1 calc(25% - 20px);
     max-width: 220px;
     height: 230px;
     border: 1px solid #9389FF;
     border-radius: 12px;
     padding: 15px;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: flex-start;
     box-sizing: border-box;
     background: #fff;
     /* box background white */
 }

 .package-price {
     font-weight: 800;
     font-size: 36px;
     color: #5E24D3;
     text-align: center;
     margin-top: 15px;
 }

 .package-title {
     font-weight: 700;
     font-size: 18px;
     color: #9389FF;
     text-align: center;
     margin-top: 8px;
 }

 .package-btn {
     width: 160px;
     height: 32px;
     border-radius: 40px;
     background: #5E24D3;
     border: none;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-top: 12px;
     cursor: pointer;
 }

 .package-btn .btn-text {
     font-weight: 800;
     font-size: 12px;
     color: #fff;
 }

 /* ===============================
   Box Click / Active State
================================= */
 .package-box.active {
     background: #5E24D3;
 }

 .package-box.active .package-price,
 .package-box.active .package-title {
     color: #fff;
 }

 .package-box.active .package-btn {
     background: #9389FF;
 }

 .package-box.active .package-btn .btn-text {
     color: #fff;
 }

 .package-box.active {
     background: #5E24D3;
 }

 .package-box.active .package-price,
 .package-box.active .package-title {
     color: #fff;
 }

 .package-box.active .package-btn {
     background: #9389FF;
 }

 .package-box.active .package-btn .btn-text {
     color: #fff;
 }




 /* =======================
   REGISTRATION BOX (LEFT)
======================= */
 .registration-box {
     width: 100%;
     min-height: 642px;
     border: none;
     border-radius: 15px;
     padding: 20px;
     background: #fff;
     box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
     /* ✅ shadow add */
 }

 .reg-title {
     font-weight: 800;
     font-size: 18px;
     text-transform: uppercase;
     color: #5E24D3;
 }

 .reg-desc {
     font-weight: 400;
     font-size: 14px;
     margin-top: 5px;
     color: #000;
 }

 .form-area label {
     font-weight: 700;
     font-size: 16px;
     color: #5E24D3;
 }

 .form-area input {
     width: 100%;
     padding: 10px;
     border: 1px solid #5E24D3;
     border-radius: 6px;
     font-size: 16px;
     margin-top: 4px;
     margin-bottom: 12px;
     box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
     /* ✅ Shadow bhi add */
 }

 .btn-register {
     width: 174px;
     height: 49px;
     background-color: #5E24D3;
     color: #fff;
     border-radius: 35px;
     font-weight: 800;
     font-size: 14px;
     text-transform: uppercase;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     border: none;
     /* safe */
 }

 /* 👇 hover me bhi same color */
 .btn-register:hover {
     background-color: #5E24D3;
     color: #fff;
 }


 /* =======================
   TIKTOK BOX (RIGHT)
======================= */
 .left-box {
     width: 100%;
     min-height: 642px;
     border: none;
     border-radius: 15px;
     padding: 20px;
     background: #fff;
     box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
     /* ✅ shadow add */
 }

 /* ✅ Logo + text side by side */
 .tiktok-header {
     display: flex;
     align-items: flex-start;
     gap: 15px;
     margin-bottom: 15px;
 }

 .tiktok-box {
     width: 90px;
     height: 90px;
     border-radius: 19px;
     background: linear-gradient(180deg, #494949 0%, #000 100%);
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
 }

 .tiktok-icon {
     color: #fff;
     font-size: 45px;
 }

 .tiktok-texts .title {
     font-weight: 800;
     font-size: 25px;
     color: #5E24D3;
     text-transform: uppercase;
 }

 .tiktok-texts .subtitle {
     font-weight: 700;
     font-size: 16px;
     color: #494949;
     display: block;
 }

 .tiktok-texts .below-title .subtext {
     font-weight: 600;
     font-size: 14px;
     color: #5E24D3;
 }

 .tiktok-texts .desc {
     font-weight: 400;
     font-size: 14px;
     margin-top: 8px;
     color: #000;
 }

 /* Form inside TikTok Box */
 .left-box .form-box label {
     font-weight: 700;
     font-size: 16px;
     color: #5E24D3;
 }

 .left-box .form-box input,
 .left-box .form-box select {
     width: 100%;
     padding: 10px;
     border: 1px solid #5E24D3;
     border-radius: 6px;
     font-size: 16px;
     margin-top: 4px;
     margin-bottom: 12px;
     box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
     /* ✅ Shadow bhi add */
 }

 .left-box .form-box .range {
     font-weight: 600;
     font-size: 12px;
     color: #A8A8A8;
     margin-top: -8px;
 }

 .left-box .form-box .price-row {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-top: 10px;
 }

 .left-box .form-box .btn-total {
     width: 106px;
     height: 40px;
     background: #FE4040;
     color: #fff;
     border: none;
     font-weight: 800;
     font-size: 16px;
     border-radius: 6px;
     cursor: pointer;
 }

 .left-box .form-box .amount {
     font-weight: 700;
     font-size: 24px;
     color: #6D6D6D;
 }

 .left-box .form-box .btn-comprar {
     width: 100%;
     height: 49px;
     background: #5E24D3;
     color: #fff;
     border: none;
     border-radius: 35px;
     font-weight: 800;
     font-size: 14px;
     text-transform: uppercase;
     cursor: pointer;
     margin-top: 10px;
 }

 /* =======================
   RESPONSIVE
======================= */
 @media (max-width: 992px) {

     .registration-box,
     .left-box {
         min-height: auto;
         margin-bottom: 20px;
     }

     .tiktok-texts .title {
         font-size: 22px;
     }

     .tiktok-texts .subtitle {
         font-size: 14px;
     }

     .tiktok-texts .desc {
         font-size: 13px;
     }

     .btn-register {
         width: 100%;
     }
 }

 @media (max-width: 576px) {
     .tiktok-header {
         flex-direction: column;
         align-items: flex-start;
     }

     .tiktok-box {
         margin-bottom: 10px;
     }

     .tiktok-texts .title {
         font-size: 20px;
     }

     .tiktok-texts .subtitle {
         font-size: 12px;
     }

     .tiktok-texts .desc {
         font-size: 12px;
     }
 }


 .tiktok-container {
     width: 1120px;
     /* 👈 Register div ke barabar */
     max-width: 100%;
     /* Responsive ke liye */
     margin: 0 auto;
     /* Center align */
     display: flex;
     align-items: center;
     border: none;
     border-radius: 15px;
     padding: 20px;
     background: #fff;
     gap: 15px;
     flex-wrap: wrap;
     margin-top: 12px;
     box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
     /* ✅ shadow add */
 }

 .tiktok-logo-box {
     width: 80px;
     height: 80px;
     border-radius: 15px;
     background: linear-gradient(180deg, #494949 0%, #000000 100%);
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .tiktok-logo-icon {
     color: #fff;
     font-size: 40px;
 }

 .tiktok-text-box {
     flex: 1;
     min-width: 220px;
 }

 .tiktok-title {
     font-family: 'Nunito', sans-serif;
     font-weight: 800;
     font-size: 22px;
     color: #5E24D3;
     margin-bottom: 5px;
     text-transform: uppercase;
 }

 .tiktok-desc {
     font-family: 'Nunito', sans-serif;
     font-weight: 400;
     font-size: 14px;
     color: #000;
     line-height: 1.4;
 }

 .custom-select {
     color: #5E24D3;
     /* 👈 select ka text color */
     font-family: 'Nunito', sans-serif;
     font-size: 16px;
     padding: 8px 12px;
     border: 1px solid #5E24D3;
     border-radius: 8px;
     background: #fff;
 }

 .custom-select option {
     color: #5E24D3;
     /* 👈 options ke andar bhi text color */
 }







 /* =======================
   REGISTRATION BOX (LEFT)
======================= */
 .custom-select {
     color: #5E24D3;
     /* 👈 select ka text color */
     font-family: 'Nunito', sans-serif;
     font-size: 16px;
     padding: 8px 12px;
     border: 1px solid #5E24D3;
     border-radius: 8px;
     background: #fff;
 }

 .custom-select option {
     color: #5E24D3;
     /* 👈 options ke andar bhi text color */
 }

 .success-img-box {
     width: 61px;
     height: 61px;
     border-radius: 50%;
     overflow: hidden;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 4px 10px rgba(94, 36, 211, 0.3);
     flex-shrink: 0;
     /* 👈 image shrink na ho */
 }

 .success-img-box img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .success-title {
     font-weight: 800;
     font-size: 20px;
     color: #5E24D3;
     /* Purple text */
     margin-bottom: 5px;
 }

 .success-desc {
     font-size: 14px;
     font-weight: 500;
     color: #494949;
     line-height: 1.5;
 }

 .registration-box {
     border: 1px solid #ddd;
     /* border add */
     border-radius: 15px;
     /* gol corner */
     background: #fff;
     /* white bg (optional) */
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
     /* shadow */
     padding: 20px;
     /* andar spacing */
 }



 /* =======================
   TIKTOK BOX (RIGHT)
======================= */
 .left-box {
     width: 100%;
     min-height: 642px;
     border: none;
     border-radius: 15px;
     padding: 20px;
     background: #fff;
     box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
     /* ✅ shadow add */
 }

 /* ✅ Logo + text side by side */
 .tiktok-header {
     display: flex;
     align-items: flex-start;
     gap: 15px;
     margin-bottom: 15px;
 }

 .tiktok-box {
     width: 90px;
     height: 90px;
     border-radius: 19px;
     background: linear-gradient(180deg, #494949 0%, #000 100%);
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
 }

 .tiktok-icon {
     color: #fff;
     font-size: 45px;
 }

 .tiktok-texts .title {
     font-weight: 800;
     font-size: 25px;
     color: #5E24D3;
     text-transform: uppercase;
 }

 .tiktok-texts .subtitle {
     font-weight: 700;
     font-size: 16px;
     color: #494949;
     display: block;
 }

 .tiktok-texts .below-title .subtext {
     font-weight: 600;
     font-size: 14px;
     color: #5E24D3;
 }

 .tiktok-texts .desc {
     font-weight: 400;
     font-size: 14px;
     margin-top: 8px;
     color: #000;
 }

 /* Form inside TikTok Box */
 .left-box .form-box label {
     font-weight: 700;
     font-size: 16px;
     color: #5E24D3;
 }

 .left-box .form-box input,
 .left-box .form-box select {
     width: 100%;
     padding: 10px;
     border: 1px solid #5E24D3;
     border-radius: 6px;
     font-size: 16px;
     margin-top: 4px;
     margin-bottom: 12px;
     box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
     /* ✅ Shadow bhi add */
 }

 .left-box .form-box .range {
     font-weight: 600;
     font-size: 12px;
     color: #A8A8A8;
     margin-top: -8px;
 }

 .left-box .form-box .price-row {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-top: 10px;
 }

 .left-box .form-box .btn-total {
     width: 106px;
     height: 40px;
     background: #FE4040;
     color: #fff;
     border: none;
     font-weight: 800;
     font-size: 16px;
     border-radius: 6px;
     cursor: pointer;
 }

 .left-box .form-box .amount {
     font-weight: 700;
     font-size: 24px;
     color: #6D6D6D;
 }

 .left-box .form-box .btn-comprar {
     width: 100%;
     height: 49px;
     background: #5E24D3;
     color: #fff;
     border: none;
     border-radius: 35px;
     font-weight: 800;
     font-size: 14px;
     text-transform: uppercase;
     cursor: pointer;
     margin-top: 10px;
 }

 /* =======================
   RESPONSIVE
======================= */
 @media (max-width: 992px) {

     .registration-box,
     .left-box {
         min-height: auto;
         margin-bottom: 20px;
     }

     .tiktok-texts .title {
         font-size: 22px;
     }

     .tiktok-texts .subtitle {
         font-size: 14px;
     }

     .tiktok-texts .desc {
         font-size: 13px;
     }

     .btn-register {
         width: 100%;
     }

     .login-btn {
         font-size: 23px;
     }

 }

 @media (max-width: 576px) {
     .tiktok-header {
         flex-direction: column;
         align-items: flex-start;
     }

     .tiktok-box {
         margin-bottom: 10px;
     }

     .tiktok-texts .title {
         font-size: 20px;
     }

     .tiktok-texts .subtitle {
         font-size: 12px;
     }

     .tiktok-texts .desc {
         font-size: 12px;
     }
 }

 @media (max-width: 1024px) {

     .login-btn {
         font-size: 6px;
     }
 }




 .tiktok-container {
     width: 1120px;
     /* 👈 Register div ke barabar */
     max-width: 100%;
     /* Responsive ke liye */
     margin: 0 auto;
     /* Center align */
     display: flex;
     align-items: center;
     border: none;
     border-radius: 15px;
     padding: 20px;
     background: #fff;
     gap: 15px;
     flex-wrap: wrap;
     margin-top: 12px;
     box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
     /* ✅ shadow add */
 }

 .tiktok-logo-box {
     width: 80px;
     height: 80px;
     border-radius: 15px;
     background: linear-gradient(180deg, #494949 0%, #000000 100%);
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .tiktok-logo-icon {
     color: #fff;
     font-size: 40px;
 }

 .tiktok-text-box {
     flex: 1;
     min-width: 220px;
 }

 .tiktok-title {
     font-family: 'Nunito', sans-serif;
     font-weight: 800;
     font-size: 22px;
     color: #5E24D3;
     margin-bottom: 5px;
     text-transform: uppercase;
 }

 .tiktok-desc {
     font-family: 'Nunito', sans-serif;
     font-weight: 400;
     font-size: 14px;
     color: #000;
     line-height: 1.4;
 }






 @media (max-width: 375px) {
     .set-width {
         width: 450px;
     }

     .image-box {
         flex: 0;
     }

     .faq-section {
         align-items: center;
     }
 }

 @media (max-width: 1024px) {
     .login-btn {
         font-size: 6px;
     }
 }
