 body {
     background-color: #3b3439 !important;
     color: #fff;
 }

 p {
     color: #fff;
 }

 .all-section ul li {
     color: #fff;
 }

 .h3head {
     color: #fff;
     font-size: 25px;
 }

 .tsn-heading {
     margin: 0px;
     padding: 0px;
     color: #fff;
 }

 a {
     text-decoration: none !important;
 }

 .table-inner-list {
     list-style: none;
 }

 /* === Header === */
 header.myheader {
     /* background: linear-gradient(180deg, #2d0f54, #101114); */
     background-color: #201b1f !important;
     box-shadow: 0 -3px 7px 0 #0000001a;
     position: relative;
     padding-bottom: 9px;
 }


 .nav__data {
     position: relative;
     display: flex;
     justify-content: space-between;
     align-items: center;
     width: 100%;
 }

 .main-logo img {
     max-width: 131px;
 }

 .first-section {
     padding: 40px 0px 40px;
 }

 ul {
     margin: 0;
     line-height: 31px;
 }

 a {
     text-decoration: none;
 }

 .nav__menu {
     position: relative;
     margin: auto;
 }

 ul.menu-list {
     display: flex;
     align-items: center;
     justify-content: center;
     padding-top: 13px;
     list-style: none;
 }



 li.menu-link {
     padding: 7px 26px;
     z-index: 1;
     margin-left: 10px;
 }


 li.menu-link a {
     color: #fff;
     font-weight: 400;
     font-size: 17px;
     position: relative;
 }

 li.menu-link a:before {
     position: absolute;
     content: ' ';
     top: 0;
     right: 0;
     left: 0;
     bottom: 0;
     width: 0%;
     height: 100%;
     border-bottom: 1px solid #000;
     transition: all 0.5s ease-in-out;
     padding-top: 2px;
     z-index: -1;
 }

 li.menu-link a:hover:before {
     width: 100%;
 }

 .nav__toggle {
     position: relative;
     width: 34px;
     height: 34px;
     border: 1px solid #fff;
     display: none;
 }

 .nav__toggle .pizza,
 .close {
     position: absolute;
     max-width: max-content;
     max-height: max-content;
     inset: 0;
     margin: auto;
     font-size: 30px;
     color: #fff;
     transition: all 0.5s ease-in-out;
 }

 .close {
     opacity: 0;
     visibility: hidden;
 }

 .show-menu {
     transform: translateX(0%) !important;
     opacity: 1 !important;
     visibility: visible !important;
     z-index: 999 !important;
 }

 .show-icon .close {
     transition: all 0.5s ease-in-out;
     transform: rotate(90deg);
     opacity: 1;
     visibility: visible;
     position: absolute;
     left: -103px;
     z-index: 999 !important;
 }

 .show-icon .pizza {
     opacity: 1;
     transform: rotate(360deg);
     transition: all 0.5s ease-in-out;
 }

 /* === Dropdown === */

 .nav__menu ul.menu-list li.menu-link>ul.sunmenu {
     position: absolute;
     top: 100%;
     left: inherit;
     width: 250px;
     padding: 15px 0px;
     background-color: #fec563;
     border-radius: 0px;
     opacity: 0;
     visibility: hidden;
     list-style: none;
     transform: rotateX(-90deg);
     transform-origin: top;
     transition: all 0.3s ease-in-out;
     box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05),
         -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
     z-index: 100;
     margin-left: -70px;
     margin-top: 8px;
 }

 .nav__menu ul.menu-list li.menu-link:hover ul.sunmenu {
     opacity: 1;
     visibility: visible;
     transform: rotateX(0deg);
 }

 .nav__menu ul.menu-list li.menu-link>ul>li>a {
     color: #000;
     text-decoration: none;
     font-size: 16px;
     font-weight: 500;
     padding-left: 20px;
     display: block;
     padding: 5px 20px;
 }

 .log-reg-down {
     display: flex;
     align-items: center;
     gap: 20px;
     justify-content: center;
 }

 .supporting-page .log-reg-down {
     margin-bottom: 19px;
 }

 .gift-code {
     padding: 7px 0px;
     border-radius: 5px;
     font-size: 22px;
     border-top: burlywood;
 }

 .log-reg-down {
     display: flex;
     gap: 20px;
     flex-wrap: wrap;
 }

 .log-reg-down a {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     padding: 14px 36px;
     font-size: 16px;
     font-weight: bold;
     text-decoration: none;
     color: #fff;
     border-radius: 8px;
     transition: all 0.3s ease;
     position: relative;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
 }

 /* Individual Button Colors */
 .l-btn {
     background: linear-gradient(135deg, #FFC107, #FF9800);
     color: #111;
 }

 .l-btn:hover {
     box-shadow: 0 8px 20px rgba(255, 193, 7, 0.6);
     transform: translateY(-3px);
 }

 .r-btn {
     background: linear-gradient(135deg, #2196F3, #1E88E5);
     color: #fff;
 }

 .r-btn:hover {
     box-shadow: 0 8px 20px rgba(33, 150, 243, 0.6);
     transform: translateY(-3px);
 }

 .d-btn {
     background: linear-gradient(135deg, #F44336, #E53935);
     color: #fff;
 }

 .d-btn:hover {
     box-shadow: 0 8px 20px rgba(244, 67, 54, 0.6);
     transform: translateY(-3px);
 }

 /* Icons */
 .log-reg-down a i {
     margin-right: 8px;
     transition: transform 0.3s ease;
 }

 .log-reg-down a:hover i {
     transform: translateX(4px);
 }

 /* Responsive */
 @media(max-width: 600px) {
     .log-reg-down {
         flex-direction: column;
         gap: 15px;
     }

     .log-reg-down a {
         width: 100%;
         justify-content: center;
     }
 }

 .banner-section {
     padding: 0px 0px 0px;
     /* background-image: url(../assets/homepageimg/banner-img.png);
     background-repeat: no-repeat;
     background-position: center;
     width: 100%;
     height: 627px; */
 }

 .content-box {
     padding: 50px 0px 0px;
 }

 p.tpara {
     padding: 18px 0px;
     text-align: justify;
 }

 .tsn-heading {
     margin: 0px;
     padding: 0px;
 }

 .all-section {
     padding: 35px 0px 0px;
 }

 .img-bx {

     border: 3px solid #d17c24;

     border-radius: 12px;

     overflow: hidden;

     margin-bottom: 20px;


 }

 .img-bx:hover {
     border: 3px solid #fff;
     transition: all 0.5s ease-in-out;
 }

 .img-bx img {
     width: 100%;
     padding: 10px;
     border-radius: 23px;
     position: relative;
     overflow: hidden;
 }

 .img-bx:hover img {
     transition: all 0.5s ease-in-out;
     transform: scale(1.2);
 }

 .img-bx-1 {

     border: 3px solid #d17c24;

     border-radius: 12px;

     overflow: hidden;

     margin-bottom: 20px;

 }

 .img-bx-1:hover {
     border: 3px solid #fff;
     transition: all 0.5s ease-in-out;
 }

 .img-bx-1 img {
     width: 100%;
     padding: 10px;
     border-radius: 23px;
     position: relative;
     overflow: hidden;
     height: 250px;
 }

 .img-bx-1:hover img {
     transition: all 0.5s ease-in-out;
     transform: scale(1.2);
 }

 .h2heading h2 {
     background: linear-gradient(180deg, #FED358, #FFB472);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     color: transparent;
     font-size: 32px;
     font-weight: bold;
     padding-bottom: 10px;
 }


  .h2heading strong {
     background: linear-gradient(180deg, #FED358, #FFB472);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     color: transparent;
     font-size: 32px;
     font-weight: bold;
     padding-bottom: 10px;
 }

 .gradient-border-wrapper {
     padding: 1px;
     display: inline-block;
     border-radius: 8px;
     background-color: #231c21;
     width: 100%;
 }

 .info-table {
     width: 100%;
     color: white;
     border-radius: 6px;
     border-collapse: collapse;
 }

 .info-table th,
 .info-table td {
     padding: 10px;
     text-align: left;
     border: 1px solid #FFB472;
     border-radius: 6px;
 }

 .info-table tr:last-child td {
     border-bottom: 1px solid #FFB472;
 }

 .info-table tr {
     border-bottom: 1px solid #FFB472;
 }

 .info-table tr:last-child {
     border-bottom: none;
 }

 summary.color-1 {
     color: #000;
     background-color: #231c21;
 }

 /* Table of Contents */
 details.toc-container {
     margin: 2rem 0;
     background-color: #231c21;
     border: 1px solid #e9ecef;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
     padding: 0;
     border-radius: 10px;
     max-width: 50%;
 }

 summary.toc-title {
     font-size: 1.2rem;
     font-weight: bold;
     padding: 1rem 1.5rem;
     cursor: pointer;
     list-style: none;
     display: flex;
     align-items: center;
     background: linear-gradient(90deg, #FED358, #FFB472);
     color: #000;
     border-radius: 10px;
 }

 summary.toc-title::-webkit-details-marker {
     display: none;
 }

 summary.toc-title::before {
     content: "►";
     font-size: 0.8em;
     margin-right: 1rem;
     transition: transform 0.2s ease-in-out;
 }

 ul.toc-list {
     list-style: decimal;
     color: #fff;
     font-size: 17px;
     margin-left: 30px;
     margin-top: 18px;
     margin-right: 16px;
     line-height: 31px;
     padding: 0px;
 }

 ul.toc-list li a {
     color: #fff;
     font-size: 17px;
 }

 details[open]>summary.toc-title::before {
     transform: rotate(90deg);
 }

 /* -----Sticky----Style----Code-------- */
 .sticky {
     position: sticky !important;
     top: 0;
     width: 100%;
     z-index: 9999 !important;
     transition: all 0.6s ease-in-out;
     animation: smothScroll 1s forwards;
 }

 @keyframes smothScroll {
     0% {
         transform: translateY(-40px);
     }

     100% {
         transform: translateY(0px);
     }
 }

 .sticky+.site-content {
     padding-top: 102px;
 }

 .copy-right {
     font-size: 15px;
 }

 p.tpar {
     padding-bottom: 28px;
     text-align: justify;
 }



 .faq-item {
     background-color: #3b3439;
     border: 1px solid #121111;
     border-radius: 8px;
     margin-bottom: 10px;
     overflow: hidden;
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
 }

 .faq-question {
     padding: 15px 20px;
     font-size: 18px;
     font-weight: bold;
     cursor: pointer;
     display: flex;
     justify-content: flex-start;
     align-items: center;
     color: #fff;
     gap: 10px;
 }

 .faq-question:hover {
     color: #fff;
 }

 .arrow {
     transition: transform 0.3s ease;
     font-size: 18px;
     color: #3498db;
 }

 .arrow.down {
     transform: rotate(90deg);
 }

 .faq-answer {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.4s ease, padding 0.3s ease;
     padding: 0 20px;
     color: #fff;
 }

 .faq-answer.open {
     max-height: 300px;
     padding: 15px 20px;
 }

 /* -----Sticky----Style----Code-------- */
 .sticky {
     position: sticky !important;
     top: 0;
     width: 100%;
     z-index: 9999 !important;
     transition: all 0.6s ease-in-out;
     animation: smothScroll 1s forwards;
 }

 @keyframes smothScroll {
     0% {
         transform: translateY(-40px);
     }

     100% {
         transform: translateY(0px);
     }
 }

 .sticky+.site-content {
     padding-top: 102px;
 }

 .white {
     color: #fff;
 }

 .method-box {
     border-radius: 12px;
     line-height: 32px;
 }

 .why-box ul {
     line-height: 31px;
 }

 .footer-section ul {
     padding: 0px;
 }

 .footer-section ul li a {
     color: #fff;
 }

 ul.toc-list li {
     background-color: #3b3439;
     margin: 8px 0px;
     padding: 10px;
 }

 .center {
     text-align: center;
 }

 .feature-img {
     text-align: center;
     padding: 30px 0px 30px;
     margin: 30px 0px;
     border-radius: 12px;
 }

 .feature-imgs {
     text-align: center;
     margin: 30px 0px;
     border-radius: 12px;
 }

 .feature-img img {
     border-radius: 10px;
     width: 340px;
     border: 1px solid #fecb5f;
 }

 .feature-imgs img {
     border-radius: 10px;
 }

 .all-steps {
     font-size: 20px;
     color: #FDE4BC;
 }



 .h4head {

     background: linear-gradient(180deg, #FED358, #FFB472);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     color: transparent;
     font-size: 25px;
     font-weight: bold;
     padding-bottom: 10px;
 }

 .inner-head {
     padding-bottom: 20px;
 }

 ol li {
     color: #fff;
 }

 .gift-code {
     color: #fff;
 }

 .box-bg-clr {
     background-color: #201b1f;
     padding: 20px 25px !important;
     border-radius: 10px;
     border: 1px solid #fecb5f;
 }

 .review-section {
     position: relative;
     margin: auto;
 }

 .review-section h2 {
     font-size: 28px;
     margin-bottom: 15px;
     color: #f9c74f;
     /* yellow-gold like your theme */
     text-align: left;
 }

 .owl-carousel .item {
     background: #3b3439;
     padding: 20px;
     margin: 10px;
     border-radius: 12px;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
     min-height: 229px;
     text-align: left;
 }

 .review-text {
     font-size: 15px;
     color: #fff;
     margin-bottom: 12px;
 }

 .review-author {
     font-weight: bold;
     color: #f9c74f;
 }

 /* Nav buttons */
 .custom-nav {
     position: absolute;
     top: 47px;
     right: 106px;
     display: flex;
     gap: 10px;
 }

 .custom-nav button {
     background: #f9c74f;
     border: none;
     width: 35px;
     height: 35px;
     border-radius: 50%;
     cursor: pointer;
     color: #000;
     font-weight: bold;
     transition: 0.3s;
 }

 .custom-nav button:hover {
     background: #ffb703;
 }

 /* Dots hidden */
 .owl-dots {
     display: none;
 }

 .faq-question h3 {
     font-size: 22px;
 }

 .t-btn a {
     padding: 9px 18px;
     border-radius: 21px;
 }

 main.container {
     background-color: #201b1f;
     margin-top: 38px;
     border-radius: 10px;
 }

 .footer {
     background-color: #201b1f;
     color: white;
     padding: 2rem 1rem 2rem;
     margin-top: 2.4rem;
     text-align: center;
 }



 .footer-section h3 {
     color: #fff;
     margin-bottom: 1rem;
     font-size: 23px;
     text-decoration: underline;
 }

 .footer-bottom {
     margin-top: 1.5rem;
     text-align: center;
     padding: 12px 20px 1px 10px;
     border-top: 1px solid #b9a774;
 }

 .footer-section ul {
     display: flex;
     justify-content: center;
     align-items: center;
     margin: auto;
     gap: 22px;
     list-style: none;
 }