
body{
    padding: 0px ;
    margin: 0px;
    width: 100%;
    font-family: 'Inter', sans-serif;
}


.trusttext{
  font-weight: 400;
  font-size: 16px;
  text-transform: capitalize;
  color: white;

}
.heading{
  font-size: 45px;
  font-weight: 400 !important;
  color: white;
}
.text-css{
  font-weight: 500;
  font-size: 18px;
  color: white !important;
}
.top-red-bar {
      background-color: #FE3D34;
    color: white;
    text-align: center;
    padding: 8px 10px;
    font-size: 16px;
    width: 100%;
    font-weight: 400;
}
.hero-wrapper {
  background-image: linear-gradient(to right, #000000 43%, rgb(187 170 170 / 0%) 70%), url(../imgs/banner-man.png);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: contain;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.logo-img {
  max-width: 200px;
  margin-bottom: 30px;
}

.highlight-box {
  /* background-color: #f1c40f; */
  color: white;
  padding: 2px 10px;
  display: inline-block;
  font-weight: 600;
  background: linear-gradient(90deg, #F7C94B 0%, rgba(0, 0, 0, 0) 100%);
}

.btn-main {
      background-color: #FE3D34;
    color: white !important;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    box-shadow: 0px 4px 20px rgba(255, 77, 61, 0.5);
    margin-bottom: 25px;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
      margin-bottom: 12px;
    font-size: 16px;
    align-items: flex-start;
    font-weight: 400 !important;
    color: white;
}

.feature-list li::before {
  content: "✓";
  color: #fff;
  margin-right: 12px;
  font-weight: 600;
}

/* Bottom V-Shape */
.bottom-v-container {
  position: relative;
  background-color: #fff;
  height: 60px;
  clip-path: polygon(0 80%, 50% 100%, 100% 80%, 100% 100%, 0 100%);
  margin-top: -60px;
}

/* Mobile View Responsive */
@media (max-width: 991px) {
  .logomobilenone{
    display: none !important;
  }
  img.logo-img.logpos {
        left: 80px;
        position: absolute;
        top: 0;
  }
  .hero-wrapper {
      background-image: linear-gradient(to bottom, rgba(0,0,0,0.6), #000 0%);
      background-position: top center;
      background-size: cover;
      align-items: flex-start;
      padding-top: 0px;
      text-align: center;
  }
  
  .feature-list li {
      text-align: left;
  }
}

/* Mobile View Responsive Updates */
@media (max-width: 991px) {
    .hero-wrapper {
        background-position: top center;
        background-size: 100% auto; /* Image width full rahegi */
        background-repeat: no-repeat;
        align-items: flex-start;
        padding-top: 0px; /* Image ke liye jagah chhodi */
        text-align: left; /* Image ke mutabiq left align */
    }

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .heading {
        font-size: 32px; /* Mobile par heading choti honi chahiye */
        line-height: 1.2;
    }

    .logo-img {
        max-width: 150px;
        margin: 0 auto 20px auto;
        display: block; /* Logo center mein rahega */
    }

    /* Trusted avatars alignment */
    .d-flex.align-items-center.gap-2 {
        justify-content: flex-start; 
        margin-bottom: 15px;
    }

    .feature-list li {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .btn-main {
        width: 100%; /* Mobile par button full width acha lagta hai */
        text-align: center;
    }
}

/* Feature list checkmark fix */
.feature-list li::before {
    content: "✓";
    color: #fff;
    margin-right: 10px;
    font-weight: 600;
    flex-shrink: 0; /* Checkmark line break na ho */
}


.v-section-wrapper {
    position: relative;
    width: 100%;
    z-index: 20;
}

.bottom-v-container {
    background-color: #fff;
    height: 60px;
    width: 100%;
    clip-path: polygon(0 0, 50% 100%, 100% 0, 100% 100%, 0 100%);
    margin-top: -60px;
    position: relative;
}

.arrow-wrapper {
    position: absolute;
    bottom: -30px; 
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 25;
}

.v-arrow {
    height: auto;
}


/* Video Section */
.video-section {
    padding: 60px 0;
    background-color: #fff;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto 40px auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Stats Section */
.stats-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    flex: 1;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(180deg, #D9AE36 0%, #735C1D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block; /* Alignment ke liye zaroori hai */
    margin-bottom: 5px;
    line-height: 1;
    font-style:italic;
}

.stat-text {
    font-size: 15px;
    color: #000000;
    line-height: 1.4;
    font-weight: 400;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .stats-container {
        flex-direction: column; /* Mobile par vertical ho jayega */
        align-items: flex-start;
        padding: 0 15px;
    }

    .stat-item {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 20px;
        margin-bottom: 25px;
    }

    .stat-number {
        font-size: 38px;/* Alignment ke liye fix width */
    }

    .video-instruction {
        text-align: center;
        font-size: 18px;
        padding: 0 10px;
    }
}

.headingtwo{
  font-size: 45px;
 font-weight: 400 !important;
    color: black !important;
}
.cardh{
  font-weight: 600 !important;
color: black;
}

/* How it Works Section with Image Background */
.how-it-works-section {
    position: relative;
    /* Aapki image yahan background mein lag gayi */
    background-image: url('../imgs/curver-back.png'); 
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto; /* Width full rahegi aur height auto */
    background-color: #FDFDFD; /* Safety ke liye light background */
    padding: 120px 0 80px 0;
    overflow: hidden;
}

/* Purana nakli curve (::before) delete ya comment kar dena */
.how-it-works-section::before {
    display: none; /* Iski ab zaroorat nahi kyunki image lag gayi hai */
}

/* Steps and Content Styling */
.step-wrapper {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.image-container {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 380px;
    margin-bottom: 30px;
}

.image-container img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    display: block;
}

/* Red Circle Number Overlay */
.number-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #FE3D34;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 20px;
    border: 1px solid #fff; /* Thick white border as seen in images */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .how-it-works-section {
        /* Mobile par background image ko thoda bada dikhane ke liye */
        background-size: 200% auto; 
        background-position: top left; /* Jaisa aapne kaha left se start */
        padding: 80px 15px;
    }

    .step-wrapper {
        margin-bottom: 70px;
    }

    .image-container {
        max-width: 100%;
    }
}


.testimonials-section {
    position: relative;
    /* Aapki background image yahan lag gayi */
    background-image: url('../imgs/review-back.png'); 
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: #fff;
}

/* Heading highlight */
/* Heading highlight */
.highlight-yellow,
.highlight-box,
.highlight-fade {
    background: linear-gradient(90deg, #F7C94B 0%, rgba(255, 255, 255, 0) 100%) !important;
    color: #000;
    padding: 4px 5px !important;
    border-radius: 6px !important;
    display: inline !important;
    -webkit-box-decoration-break: clone !important;
    box-decoration-break: clone !important;
}

/* Video Card Styling */
.testimonial-card {
    margin-bottom: 30px;
}

.video-preview {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Play Button Overlay */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    color: #FE3D34; /* Red color play icon */
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 2;
}
.review-box p {
    font-weight: 400 !important;
}
.highlight-fade {
    background: linear-gradient(90deg, #F7C94B 0%, rgba(0, 0, 0, 0) 70%);
    padding: 2px 15px 2px 5px; /* Right side par padding thori zyada taake gradient smooth dikhe */
    display: inline-block;
    color: white; /* Text color black rahay ga yellow ke upar */
    font-weight: 400;
}
/* Review Box (Glass Effect) */
.review-box {
    background: #FFFFFF33; /* Dark transparent box */
    backdrop-filter: blur(8px);
    padding: 20px;
    border-radius: 12px;
    margin-top: -10px; /* Video ke sath thoda overlap */
    position: relative;
    z-index: 3;
    border: 1px solid rgba(255,255,255,0.1);
}

.stars {
    color: #F7C94B;
    margin-bottom: 8px;
}

/* CTA Button Red */
.btn-schedule {
    background: #FE3D34;
    color: #fff;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    border: none;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .testimonials-section {
        background-size: cover;
        padding: 60px 15px;
    }
    
    .testimonials-section h2 {
        font-size: 25px !important;
    }
    .testimonials-section p.text-light-muted.mb-5 {
        font-size: 14px;
    }
    .testimonials-section .container.text-center {
        padding-right: 0;
        padding-left: 0;
    }
}


/* Results Section Styling */
.results-section {
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Carousel Image Styling */
.carousel-img {
    width: 300px; /* Aap isse adjust kar sakte hain */
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Highlight Box (Yellow Background) */
.highlight-box {
    /* background-color: #FFD25A; */
    padding: 0 10px;
    display: inline-block;
    background: linear-gradient(90deg, #F7C94B 0%, rgba(255, 255, 255, 0) 100%);
    color: black;
}

/* Feature Card Styling */
.feature-card h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555 !important;
}

.icon-box img {
    /* Agar icons ka color change karna ho to filters use kar sakte hain */
    max-height: 50px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-img {
        width: 80%; /* Mobile par image thodi badi dikhegi */
        height: 300px;
    }
}

.infinite-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    /* Side fading effect k liye */
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.infinite-slider {
    width: 100%;
    overflow: hidden;
    padding: 60px 0; /* Padding badha di taake images move ho sakein */
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.slider-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.slide-item {
    width: 300px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

/* --- ZIG-ZAG LOGIC --- */

/* 1st, 3rd, 5th images (Uper rahengi) */
.slide-item:nth-child(odd) {
    transform: translateY(-20px);
}

/* 2nd, 4th, 6th images (Neeche rahengi) */
.slide-item:nth-child(even) {
    transform: translateY(30px);
}

.slide-item img {
    width: 100%;
    height: 245px; 
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Animation */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-300px * 4 - 30px * 4)); }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .slide-item { width: 220px; }
    .slide-item img { height: 200px; }
    .slide-item:nth-child(even) { transform: translateY(15px); }
    .slide-item:nth-child(odd) { transform: translateY(-10px); }
}

span.newxthih {
    background: linear-gradient(90deg, #F7C94B 0%, rgba(255, 255, 255, 0) 100%);
}

/* General Styling */
.feature-card {
    transition: all 0.3s ease;
}

.feature-card h4 {
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.95rem;
    color: #555 !important;
    line-height: 1.6;
}

/* --- Responsive Logic --- */

/* Desktop (768px and up) */
@media (min-width: 768px) {
    .feature-icon {
        display: block;
        margin: 0 auto; /* Icon ko center karne k liye */
    }
    .feature-card {
        padding: 0 15px;
    }
}

/* Mobile (Under 768px) */
@media (max-width: 767px) {
    .feature-card {
        text-align: left; /* Text left aligned */
    }
    .feature-icon {
        width: 45px; /* Mobile par thoda chota icon */
    }
    .feature-card h4 {
        margin-top: -3px; /* Icon k sath align karne k liye */
    }
}





/* About Section Styling */
.about-david-section {
   background-image: linear-gradient(to right, #000000 43%, rgb(187 170 170 / 0%) 70%), url(../imgs/men-two.png);
  background-position: right center;
  background-repeat: no-repeat;
    background-color: #000; /* Black background as per image */
    color: #ffffff;
    padding-top: 60px;
    padding-bottom: 0px;
    overflow: hidden;
}

.about-content {
    padding-bottom: 60px;
}

.meet-title {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 25px;
}

.highlight-name {
    background: #F7C94B; /* Yellow highlight */
    color: #000;
    padding: 2px 10px;
    border-radius: 4px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.signature-name {
    font-family: 'Cursive', brush script mt, sans-serif; /* Use a handwriting font */
    font-size: 32px;
    margin-bottom: 0;
    color: #fff;
}

.designation {
    font-size: 14px;
    letter-spacing: 1px;
    color: #999;
    text-transform: uppercase;
}

/* Image Styling */
.david-img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

/* Bottom V-Shape logic */
.v-section-wrapper {
    position: relative;
    width: 100%;
}






/* Responsive Rules */
@media (max-width: 991px) {
     
    .about-david-section {
        padding-top: 0;
    }
    
    .meet-title {
        font-size: 32px;
        text-align: left;
    }

    .about-content {
        padding: 30px 15px;
    }

    .david-img-wrapper {
        margin-bottom: 20px;
    }
    
    .order-1 {
        order: 1 !important; /* Mobile pe image upar ayegi */
    }
    
    .order-2 {
        order: 2 !important; /* Mobile pe text niche ayega */
    }
    .about-david-section .order-2 {
        z-index: 1;
    }
}


/* Existing styles ko modify ya add karein */

.about-david-section {
    background-image: linear-gradient(to right, #000000 45%, rgba(0,0,0,0) 75%), url(../imgs/men-two.png);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: contain; /* Ya cover, as per requirement */
    background-color: #000;
    color: #ffffff;
    padding-top: 80px;
    overflow: hidden;
}
i.fas.fa-play {
    color: #fe3d34;
}

/* Mobile Responsive Fixes */
@media (max-width: 991px) {
  .top-red-bar {
    font-size: 9px;
  }
    .about-david-section {
    background-image: linear-gradient(to right, #000000 45%, rgba(0,0,0,0) 75%) !important;
  }
    .about-david-section {
        background-image: none; /* Background image hata di taake text saaf dikhe */
        padding-top: 0;
    }

    .mobile-david-img-wrapper {
        width: 100%;
               margin-bottom: -57px;
    }
    .footer-mobile-img {
    margin-bottom: -100px;
}

    .mobile-david-img-wrapper img {
        width: 100%;
        height: auto;
        display: block;
    }

    .about-content {
        padding: 20px 15px 60px 15px;
        text-align: left;
    }

    .heading {
        font-size: 28px !important;
        margin-bottom: 20px;
    }

    .btn-main {
        width: 100%; /* Mobile par button full width professional lagta hai */
        text-align: center;
    }
}

/* Highlight box fix */
.highlight-box {
    background: linear-gradient(90deg, #F7C94B 0%, rgba(0, 0, 0, 0) 100%);
    color: white !important;
    padding: 2px 10px;
    display: inline-block;
}


/* Section Base */
.dual-carousel-section {
    background-color: #fff;
}

/* Image Styling */
.rounded-slide-img {
    border-radius: 35px; /* Screenshot jaisa rounded */
    width: 100%;
    height: auto;
    display: block;
}

/* Red Navigation Circles */
.custom-nav {
    width: 50px;
    opacity: 1 !important;
}

.nav-circle {
    background-color: #FE3D34; /* Brand Red */
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
}

/* Desktop Arrows Alignment (Half out) */
.carousel-control-prev { left: -22px; }
.carousel-control-next { right: -22px; }

/* Text Styling */
.text-danger {
    color: #FE3D34 !important;
}

h3 {
    font-size: 28px;
    line-height: 1.3;
}

/* --- Responsive Rules --- */
@media (max-width: 991px) {
    /* Mobile par image top par aur center alignment */
    .dual-carousel-section .row {
        text-align: left;
        margin-bottom: 40px;
    }

    /* Mobile par arrows ko bahar nikalne ke bajaye image ke kinaron par rakhein */
    .carousel-control-prev { left: 5px; }
    .carousel-control-next { right: 5px; }

    .nav-circle {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    h3 {
        font-size: 20px;
        margin-top: 10px;
    }
}



.fordesktop {
    display: none !important;
}


@media (min-width: 992px) {
    .fordesktop {
        display: block !important; 
        
    }
}

.formobile {
    display: none !important;
}


/* @media (max-width: 991px) {
    .formobile {
        display: block !important;
        
    }
} */





.success-stories-section {
    background-image: url(../imgs/succes-back.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    background-color: #FDFDFD;
    padding: 120px 0 80px 0;
    overflow: hidden;
}

.section-title {
    font-size: 36px;
    font-weight: 400;
    color: #000;
}



.section-subtitle {
    max-width: 800px;
    font-size: 16px;
    color: #444;
}

/* Card Styling */
.testimonial-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    padding: 10px;
}

.video-placeholder {
    position: relative;
    cursor: pointer;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.9);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff0000;
}

.p-text {
    font-size: 13px;
    line-height: 1.4;
    color: #555;
}

.load-more-link {
    color: #000;
    text-decoration: underline;
    font-weight: 600;
}

/* CTA Button */
.btn-main-red {
    background-color: #FE3D34;
    color: white !important;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 5px 20px rgba(254, 61, 52, 0.3);
}

/* Chat Bubbles */
.chat-bubble {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    font-size: 14px;
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .section-title { font-size: 28px; }
    .btn-main-red { width: 100%; text-align: center;font-size: 16px; }
}







.david-system-section {
    background-color: #ffffff;
    font-family: 'Inter', sans-serif; /* Ya jo aapki site ki font hai */
}

.system-main-title {
    font-size: 38px;
    font-weight: 600;
    color: #000;
}


.system-subtitle {
    max-width: 800px;
    color: black;
    font-size: 16px;
    margin-top: 15px;
}

/* Card Styling */
.system-card {
    background: #F8F8F8; /* Light grey background jaisa image mein hai */
    border-radius: 20px;
    padding: 30px 25px;
    height: 100%;
    transition: 0.3s;
    position: relative;
    border: 1px solid transparent;
}

.system-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    background: #ffffff;
    border-color: #eee;
}

/* Red Step Badge */
.step-badge {
    background-color: #FE3D34;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    padding: 4px 15px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 20px;
}

.system-icon {
    margin-bottom: 20px;
}

.system-icon img {
    height: 60px; /* Icons size adjust karein */
    width: auto;
}

.card-heading {
    font-size: 23px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.card-text {
    font-size: 16px;
    line-height: 1.6;
    color: black;
    font-weight: 400;
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .trusttext {
    font-weight: 400;
    font-size: 10px;
  }

  .headingtwo {
    font-size: 22px;
  }
  .btn-main {
    padding: 10px 25px;
    font-size: 17px;
}
  .follower-text {
    font-size: 28px !important;
  }
  .btn-main-red {
    font-size: 12px !important;
}
  ul.feature-list.mt-2 {
    padding-bottom: 80px;
}
    .system-main-title {
        font-size: 30px;
    }
    
    .system-card {
        padding: 25px 20px;
    }
}


.social-followers-section {
    background-color: #262626; /* Dark grey background */
    padding: 60px 0;
    overflow: hidden;
    position: relative;
    border-top-left-radius: 50% 30px;
    border-top-right-radius: 50% 30px;
    margin-top: -30px;
    z-index: 10;
}

.logos-slider {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    background: transparent; /* Yahan koi extra color nahi aayega */
}


.logos-track {
    display: flex;
    width: calc(150px * 16); 
    animation: scrollLogos 25s linear infinite;
}


.logos-track:hover {
    animation-play-state: paused;
}

.logo-item {
    width: 150px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    height: auto;
    transition: transform 0.3s ease;
}


.logo-item:hover img {
    transform: scale(1.1);
}


@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-150px * 8)); }
}

.follower-text {
    color: white;
    font-size: 45px;
    font-weight: 400;
    margin-bottom: 40px;
}

.highlight-yellow-social {
    background: linear-gradient(90deg, #F7C94B 0%, rgba(255, 255, 255, 0) 86%);
    padding: 0px 8px;
    border-radius: 4px;
    display: inline-block;
    font-weight: 600;
}

.logos-slider::before, .logos-slider::after {
    content: "";
    position: absolute;
    top: 0; width: 100px; height: 100%;
    z-index: 2;
}
.logos-slider::before { left: 0; background: linear-gradient(to right, #262626, transparent); }
.logos-slider::after { right: 0; background: linear-gradient(to left, #262626, transparent); }


/* Slider Magic */
.logos-slider {
    width: 100%;
    white-space: nowrap;
    position: relative;
}


.accordion-item {
    border: 1px solid #e0e0e0 !important;
    border-radius: 12px !important;
    margin-bottom: 15px;
    background-color: transparent !important; 
    transition: 0.3s ease;
}


.accordion-item:has(.accordion-button:not(.collapsed)) {
    background-color: #ffffff !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.accordion-button {
    background-color: transparent !important;
    color: #000;
    font-weight: 400;
    box-shadow: none !important;
    padding: 20px;
}


.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'%3E%3C/line%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3C/svg%3E") !important;
    background-size: 18px;
    transition: 0.3s;
}


.accordion-button:not(.collapsed)::after {
    background-color: #000 !important;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3C/svg%3E") !important;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 12px;
    transform: rotate(0deg);
}

.accordion-button:not(.collapsed), .accordion-collapse:not(.collapsed) {
    background: white !important;
    border-radius: 15px !important;
}


.accordion-button:not(.collapsed) {
    color: black !important;
    font-weight: 600;
}

.accordion-body {
    font-weight: 400;
    color: black;
    font-size: 15px !important;
}





/* footer */


.footer-cta-wrapper {
    background-color: #000000;
    /* Desktop background image left side par */
    background-image: url('../imgs/footer-banner.png');
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 100px 0 0px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.footer-main-heading {
    font-size: 42px;
    font-weight: 600;
    color: white;
    line-height: 1.2;
}

.btn-main-red {
    background-color: #FE3D34;
    color: white !important;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    box-shadow: 0px 4px 20px rgba(254, 61, 52, 0.4);
}

.footer-check-list li {
    color: white;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-icon {
    font-weight: 600;
    font-size: 18px;
}

.fb-disclaimer {
    font-size: 11px;
    line-height: 1.4;
    max-width: 600px;
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255,255,255,0.1);
}
.signature-block img.david-sign {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    max-width: 230px;
}
.video-placeholder {
    position: relative;
    cursor: pointer;
}

.video-placeholder .img-fluid {
    aspect-ratio: 1/.7;
    object-fit: cover;
    width: 100%;
}

.video-placeholder iframe {
    width: 100%;
    aspect-ratio: 1/.7;
    border-radius: 12px;
}

/* --- Mobile Fixes --- */
@media (max-width: 991px) {
    .footer-cta-wrapper {
        background-image: none; /* Mobile par bg image hata di */
        padding-top: 0;
    }

    .footer-mobile-img img {
        width: 100%;
        margin-bottom: 30px;
    }

    .footer-main-heading {
        font-size: 28px;
    }

    .btn-main-red {
        width: 100%;
        text-align: center;
    }

    .footer-bottom-bar {
        text-align: left;
        padding-bottom: 20px;
    }
}

.footer-cta-wrapper {
    background-color: #000000;
    padding-top: 100px;
    position: relative;
    overflow-x: hidden;
}

/* Niche wala container jo curve handle karega */
.footer-bottom-container {
    background-color: #000000; /* Black background taake curve ke peeche kuch na dikhe */
    width: 100%;
}

.footer-bottom-bar {
    background-color: #1a1a1a;
    padding: 60px 0 40px 0;
    margin-top: -30px; 
    border-top-left-radius: 50% 40px;
    border-top-right-radius: 50% 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    width: 100%;
}

.fb-disclaimer {
    font-size: 11px;
    line-height: 1.4;
    opacity: 0.7;
    margin-top: 10px;
}

/* --- Mobile Fix for Curve --- */
@media (max-width: 991px) {
    .footer-bottom-bar {
        /* Mobile par curve thora zyada dikhta hai */
        border-top-left-radius: 50% 25px;
        border-top-right-radius: 50% 25px;
        padding-top: 40px;
        text-align: left;
    }
}
@media (max-width: 767px){
    .top-red-bar {
        overflow: hidden;
        position: relative;
        z-index: 9;
    }

    .top-red-bar span {
        display: inline-block;
        white-space: nowrap;
        font-size: 15px;
        animation: marquee 13s linear infinite;
    }
    .hero-wrapper .order-2 {
        position: relative;
        z-index: 2;
    }

    .mobile-david-img-wrapper img {
        width: 100%;
        height: auto;
        display: block;
        transform: scale(1.1);
        /* transform: scale(1.2); */
        position: relative;
        z-index: 1;
    }
    section.hero-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 0px !important;
    /* padding-top: 33px !important; */
}
    @keyframes marquee {
        from {
            transform: translateX(90%);
        }

        to {
            transform: translateX(-100%);
        }
    }
    
    img.logo-img.logpos {
        left: 0;
        position: absolute;
        right: 0;
        top: 10px;
        z-index: 2;
    }
    section.hero-wrapper::before {
        position: absolute;
        content: '';
        width: 100%;
        height: 100vw;
        max-height: 600px;
        background: linear-gradient(0, #000000 20%, transparent 60%);
        top: 0%;
        z-index: 2;
    }
    .signature-block img.david-sign {
        max-width: 180px;
    }

    .signature-block  p.designation {
        font-size: 12px;
    }


}