/* Style for Arrow box (inside the Sales Channel Partner box) */
.arrow-box {
    width: 30px; /* Small width for the arrow box */
    height: 100%; /* Match height of the Sales Channel Partner box */
    background-color: #FF5733; /* Orange color */
    border-radius: 0 15px 15px 0; /* Half rounded (right side rounded) */
    display: flex; /* Flexbox to center the arrow */
    align-items: center; /* Center the arrow vertically */
    justify-content: center; /* Center the arrow horizontally */
    cursor: pointer; /* Change cursor to pointer */
    position: absolute; /* Position the arrow box */
    right: 0; /* Align it to the right edge */
    top: 0; /* Align it to the top */
}

.card {
    transition: transform 0.3s ease; /* Transition for smooth scaling */
  }
  
  .card:hover {
    transform: scale(1.05); /* Scale up the card on hover */
    z-index: 1; /* Bring the hovered card to the front */
  }

  
  /* Remove extra margin from the section */
#about {
  margin-bottom: 0 !important; /* Adjust as necessary */
}

/* Optional: Remove margins from the Pricing section */
#pricing {
  margin-top: -20px; /* Use negative margin if necessary */
}
.btn-price,
.btn-get-now {
width: 80% !important; /* Width of buttons */
height: 40px !important; /* Reduced height for buttons */
margin: 5px auto !important; /* Center button */
font-size: 16px !important; /* Increased font size */
border-radius: 8px !important; /* Slightly rounded corners */
border: 2px solid !important;
border-image: linear-gradient(135deg, var(--rgb-red), var(--rgb-blue), var(--rgb-green)) 1 !important;
position: relative !important;
overflow: hidden !important;
transition: all 0.3s ease !important;
}

.btn-price {
background-color: transparent !important;
color: var(--rgb-cyan) !important;
box-shadow: 0 2px 8px rgba(0, 64, 255, 0.2) !important;
}

.btn-price::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(135deg, var(--rgb-red), var(--rgb-blue), var(--rgb-green));
transition: left 0.3s ease;
z-index: -1;
}

.btn-price:hover::before {
left: 0;
}

.btn-price:hover {
color: #fff !important;
box-shadow: 0 4px 15px rgba(0, 64, 255, 0.4), 
            0 -4px 15px rgba(255, 0, 64, 0.4) !important;
transform: translateY(-2px) !important;
}

.btn-get-now {
background: linear-gradient(135deg, var(--rgb-red), var(--rgb-blue), var(--rgb-green)) !important;
background-size: 200% 200% !important;
animation: rgbShift 3s ease infinite !important;
color: #fff !important;
box-shadow: 0 4px 15px rgba(0, 64, 255, 0.3), 
            0 -4px 15px rgba(255, 0, 64, 0.3) !important;
}

.btn-get-now:hover {
transform: translateY(-2px) !important;
box-shadow: 0 6px 25px rgba(0, 64, 255, 0.5), 
            0 -6px 25px rgba(255, 0, 64, 0.5) !important;
}

.shadow-card {
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2),
           0 0 0 1px rgba(0, 64, 255, 0.1) !important; /* Box shadow for card */
transition: all 0.3s ease !important; /* Transition for hover effect */
border: 1px solid;
border-image: linear-gradient(135deg, rgba(255, 0, 64, 0.2), rgba(0, 64, 255, 0.2), rgba(0, 255, 64, 0.2)) 1 !important;
}

.shadow-card:hover {
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2),
            0 0 30px rgba(0, 64, 255, 0.2),
            0 0 30px rgba(255, 0, 64, 0.2),
            0 0 30px rgba(0, 255, 64, 0.2) !important; /* Increased shadow on hover with RGB glow */
border-image: linear-gradient(135deg, var(--rgb-red), var(--rgb-blue), var(--rgb-green)) 1 !important;
transform: translateY(-5px) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
.btn-price,
.btn-get-now {
  width: 90% !important; /* Adjust button width on smaller screens */
  font-size: 14px !important; /* Font size reduction for smaller screens */
}

.card {
  margin-bottom: 20px !important; /* Additional space for cards */
}
}

/*css for client logo*/
.client-section {
      background: #fff;
      padding: 40px 0;
      overflow: hidden;
    }

    .slider-row {
      display: flex;
      width: max-content;
      animation: slideLeft 30s linear infinite;
    }

    .slider-row.reverse {
      animation: slideRight 30s linear infinite;
    }

    .logo-strip {
      display: flex;
      flex-wrap: nowrap;
      gap: 40px;
      padding: 20px 0;
    }

    .logo-strip img {
      height: 60px;
      object-fit: contain;
      /* filter: grayscale(100%); */
      transition: filter 0.3s ease;
    }

    .logo-strip img:hover {
      filter: grayscale(0%);
    }

    @keyframes slideLeft {
      0% {
        transform: translateX(0%);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    @keyframes slideRight {
      0% {
        transform: translateX(-50%);
      }
      100% {
        transform: translateX(0%);
      }
    }

/* Delivery Guarantee Section Styling */
.delivery-guarantee-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.delivery-guarantee-section .container {
    position: relative;
    z-index: 1;
}

.delivery-guarantee-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(13, 71, 161, 0.03) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(255, 165, 0, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.guarantee-header {
    position: relative;
    z-index: 1;
    margin-bottom: 70px;
}

.guarantee-main-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-family: 'Roboto', sans-serif;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.guarantee-subtitle {
    font-size: 1.25rem;
    color: #4a4a4a;
    font-weight: 400;
    line-height: 1.7;
    font-family: 'Roboto', sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.guarantee-subtitle strong {
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1.1em;
}

.guarantee-text {
    color: #0066cc;
    font-weight: 500;
}

.guarantee-text strong {
    color: #004499;
    font-weight: 700;
}

/* Badge styles removed - keeping only images */
.guarantee-badge-wrapper,
.guarantee-badge-wrapper::before,
.guarantee-badge-wrapper::after {
    display: none !important;
}

.guarantee-badge-image {
    max-width: 100%;
    height: auto;
    width: 100%;
    max-width: 300px;
    display: block;
    margin: 0 auto;
    transition: none !important;
    transform: none !important;
    filter: none !important;
    mix-blend-mode: normal !important;
}

.badge-24-7 {
    filter: none !important;
    mix-blend-mode: normal !important;
}

.guarantee-badge-image:hover {
    transform: none !important;
}

/* Responsive adjustments for Delivery Guarantee Section */
@media (max-width: 992px) {
    .delivery-guarantee-section {
        padding: 80px 0;
    }
    
    .guarantee-header {
        margin-bottom: 60px;
    }
    
    .guarantee-main-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .guarantee-subtitle {
        font-size: 1.15rem;
    }
    
    .guarantee-badge-wrapper {
        min-height: 300px;
        padding: 25px 15px;
    }
    
    .guarantee-badge-image {
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .delivery-guarantee-section {
        padding: 70px 0;
    }
    
    .guarantee-header {
        margin-bottom: 50px;
    }
    
    .guarantee-main-title {
        font-size: 2.2rem;
        margin-bottom: 18px;
        padding: 0 15px;
    }
    
    .guarantee-subtitle {
        font-size: 1.05rem;
        padding: 0 20px;
    }
    
    .guarantee-badge-wrapper {
        min-height: 280px;
        padding: 20px 10px;
    }
    
    .guarantee-badge-image {
        max-width: 250px;
    }
    
    .badge-starburst {
        width: 200px;
        height: 200px;
    }
    
    .badge-black-band {
        width: 160px;
        height: 160px;
    }
    
    .band-top-text {
        font-size: 0.55rem;
        top: 15px;
    }
    
    .badge-gold-circle {
        width: 120px;
        height: 120px;
    }
    
    .badge-main-text {
        font-size: 0.9rem;
    }
    
    .band-stars {
        font-size: 0.5rem;
        bottom: 15px;
    }
    
    .badge-ribbon {
        width: 180px;
        height: 50px;
    }
    
    .ribbon-text {
        font-size: 0.65rem;
    }
    
    .ribbon-stars {
        font-size: 0.5rem;
    }
}

/* Website Design Features Section Styling */
.website-features-section {
    margin-top: 60px;
    padding: 40px 0;
    position: relative;
}

.features-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    font-family: 'Roboto', sans-serif;
    letter-spacing: -0.5px;
}

.feature-card {
    padding: 30px 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #ffc451;
}

.feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

.features-info {
    margin-top: 40px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(255, 196, 81, 0.1) 0%, rgba(255, 196, 81, 0.05) 100%);
    border-radius: 12px;
    border-left: 4px solid #ffc451;
}

.features-info-text {
    font-size: 1.15rem;
    color: #1a1a1a;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    line-height: 1.8;
}

.features-info-text strong {
    color: #1a1a1a;
    font-weight: 700;
}

.features-content {
    color: #1a1a1a;
}

.features-content ul {
    color: #1a1a1a;
}

.features-content li {
    color: #1a1a1a;
}

.features-content strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Responsive adjustments for Website Features Section */
@media (max-width: 992px) {
    .features-title {
        font-size: 2rem;
        margin-bottom: 35px;
    }
    
    .feature-card {
        padding: 25px 15px;
    }
    
    .feature-name {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .website-features-section {
        margin-top: 50px;
        padding: 30px 0;
    }
    
    .features-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .feature-card {
        padding: 20px 15px;
        margin-bottom: 15px;
    }
    
    .feature-icon i {
        font-size: 2rem !important;
    }
    
    .feature-name {
        font-size: 0.95rem;
    }
    
    .features-info {
        margin-top: 30px;
        padding: 20px;
    }
    
    .features-info-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .website-features-section {
        margin-top: 40px;
        padding: 25px 0;
    }
    
    .features-title {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }
    
    .feature-card {
        padding: 18px 12px;
    }
    
    .feature-icon i {
        font-size: 1.8rem !important;
    }
    
    .feature-name {
        font-size: 0.9rem;
    }
    
    .features-info {
        margin-top: 25px;
        padding: 15px;
    }
    
    .features-info-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

@media (max-width: 576px) {
    .delivery-guarantee-section {
        padding: 60px 0;
    }
    
    .guarantee-header {
        margin-bottom: 45px;
    }
    
    .guarantee-main-title {
        font-size: 1.9rem;
        margin-bottom: 16px;
        padding: 0 20px;
        line-height: 1.3;
    }
    
    .guarantee-subtitle {
        font-size: 1rem;
        padding: 0 25px;
        line-height: 1.6;
    }
    
    .guarantee-badge-wrapper {
        min-height: 260px;
        padding: 15px 10px;
    }
    
    .guarantee-badge-image {
        max-width: 220px;
    }
}

/* WhatsApp API Section Styling */
.whatsapp-api-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.whatsapp-api-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 20%, rgba(37, 211, 102, 0.04) 0%, transparent 60%),
        radial-gradient(circle at 85% 80%, rgba(255, 165, 0, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.whatsapp-api-section .container {
    position: relative;
    z-index: 1;
}

/* Coming Soon Badge */
.coming-soon-badge {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
    font-family: 'Roboto', sans-serif;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4);
    }
}

/* Section Header */
.whatsapp-api-header {
    margin-bottom: 50px;
}

.whatsapp-api-title {
    font-size: 3rem;
    font-weight: 700;
    color: #25D366;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
    letter-spacing: -0.5px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-api-title i {
    font-size: 2.8rem;
    color: #25D366;
}

.whatsapp-api-subtitle {
    font-size: 1.15rem;
    color: #4a4a4a;
    font-weight: 400;
    line-height: 1.7;
    font-family: 'Roboto', sans-serif;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Features Card */
.whatsapp-features-card,
.whatsapp-benefits-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 35px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.whatsapp-features-card:hover,
.whatsapp-benefits-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.features-card-title,
.benefits-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-family: 'Roboto', sans-serif;
    display: flex;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.features-card-title i {
    color: #ffa500;
    font-size: 1.6rem;
}

.benefits-card-title i {
    color: #25D366;
    font-size: 1.6rem;
}

/* Features List */
.features-list,
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item,
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease;
}

.feature-item:hover,
.benefit-item:hover {
    transform: translateX(5px);
}

.feature-icon,
.benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.6rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover .feature-icon,
.benefit-item:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.benefit-icon {
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.25);
}

.benefit-item:hover .benefit-icon {
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.35);
}

.feature-content h4,
.benefit-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-family: 'Roboto', sans-serif;
}

.feature-content p,
.benefit-content p {
    font-size: 0.95rem;
    color: #4a4a4a;
    line-height: 1.6;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

/* CTA Card */
.whatsapp-cta-card {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 20px;
    padding: 60px 40px;
    color: #ffffff;
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
}

.whatsapp-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.cta-icon-wrapper {
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
}

.cta-icon-wrapper i {
    font-size: 4rem;
    color: #ffffff;
    opacity: 0.9;
}

.cta-title {
    position: relative;
    z-index: 1;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Roboto', sans-serif;
}

.cta-description {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Roboto', sans-serif;
}

.cta-buttons {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary-cta,
.btn-secondary-cta {
    padding: 14px 32px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-primary-cta {
    background: #ffffff;
    color: #25D366;
}

.btn-primary-cta:hover {
    background: #f8f9fa;
    color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary-cta {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary-cta:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments for WhatsApp API Section */
@media (max-width: 992px) {
    .whatsapp-api-section {
        padding: 80px 0;
    }
    
    .whatsapp-api-title {
        font-size: 2.5rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .whatsapp-api-title i {
        font-size: 2.3rem;
    }
    
    .whatsapp-api-subtitle {
        font-size: 1.05rem;
    }
    
    .whatsapp-features-card,
    .whatsapp-benefits-card {
        padding: 35px 30px;
        margin-bottom: 30px;
    }
    
    .features-card-title,
    .benefits-card-title {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }
    
    .cta-title {
        font-size: 1.9rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .whatsapp-api-section {
        padding: 70px 0;
    }
    
    .whatsapp-api-header {
        margin-bottom: 40px;
    }
    
    .whatsapp-api-title {
        font-size: 2.2rem;
        padding: 0 15px;
    }
    
    .whatsapp-api-title i {
        font-size: 2rem;
    }
    
    .whatsapp-api-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .whatsapp-features-card,
    .whatsapp-benefits-card {
        padding: 30px 25px;
        border-radius: 14px;
    }
    
    .features-card-title,
    .benefits-card-title {
        font-size: 1.5rem;
        margin-bottom: 22px;
    }
    
    .features-list,
    .benefits-list {
        gap: 20px;
    }
    
    .feature-icon,
    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .feature-content h4,
    .benefit-content h4 {
        font-size: 1.1rem;
    }
    
    .feature-content p,
    .benefit-content p {
        font-size: 0.9rem;
    }
    
    .whatsapp-cta-card {
        padding: 45px 30px;
        border-radius: 16px;
    }
    
    .cta-icon-wrapper i {
        font-size: 3.5rem;
    }
    
    .cta-title {
        font-size: 1.7rem;
        margin-bottom: 12px;
    }
    
    .cta-description {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-cta,
    .btn-secondary-cta {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .whatsapp-api-section {
        padding: 60px 0;
    }
    
    .coming-soon-badge {
        font-size: 0.85rem;
        padding: 8px 20px;
    }
    
    .whatsapp-api-title {
        font-size: 1.9rem;
        padding: 0 20px;
    }
    
    .whatsapp-api-title i {
        font-size: 1.8rem;
    }
    
    .whatsapp-api-subtitle {
        font-size: 0.95rem;
        padding: 0 25px;
    }
    
    .whatsapp-features-card,
    .whatsapp-benefits-card {
        padding: 25px 20px;
        border-radius: 12px;
    }
    
    .features-card-title,
    .benefits-card-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding-bottom: 12px;
    }
    
    .features-card-title i,
    .benefits-card-title i {
        font-size: 1.3rem;
    }
    
    .features-list,
    .benefits-list {
        gap: 18px;
    }
    
    .feature-item,
    .benefit-item {
        gap: 15px;
    }
    
    .feature-icon,
    .benefit-icon {
        width: 46px;
        height: 46px;
        font-size: 1.3rem;
        border-radius: 10px;
    }
    
    .feature-content h4,
    .benefit-content h4 {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .feature-content p,
    .benefit-content p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .whatsapp-cta-card {
        padding: 35px 25px;
        border-radius: 14px;
    }
    
    .cta-icon-wrapper {
        margin-bottom: 20px;
    }
    
    .cta-icon-wrapper i {
        font-size: 3rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .cta-description {
        font-size: 0.9rem;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .btn-primary-cta,
    .btn-secondary-cta {
        padding: 12px 28px;
        font-size: 0.95rem;
        max-width: 100%;
    }
}

/* WhatsApp Refund Proof Section Styling */
.refund-proof-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.refund-proof-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(37, 211, 102, 0.03) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(255, 165, 0, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.refund-proof-section .container {
    position: relative;
    z-index: 1;
}

.refund-proof-header {
    margin-bottom: 50px;
}

.refund-badge {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    animation: pulse-badge 2s ease-in-out infinite;
    font-family: 'Roboto', sans-serif;
}

.refund-badge i {
    font-size: 1.2rem;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    }
}

.refund-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.refund-subtitle {
    font-size: 1.1rem;
    color: #4a4a4a;
    font-weight: 400;
    line-height: 1.7;
    font-family: 'Roboto', sans-serif;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.refund-subtitle strong {
    color: #25D366;
    font-weight: 700;
}

/* WhatsApp Chat Card Styling */
.whatsapp-chat-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: #ffffff;
    border: 2px solid #e9ecef;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.whatsapp-chat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.2);
    border-color: #25D366;
}

.chat-preview {
    position: relative;
    overflow: hidden;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e5ddd5;
    min-height: 400px;
}

.chat-screenshot {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    object-fit: cover;
}

.whatsapp-chat-card:hover .chat-screenshot {
    transform: scale(1.05);
}

.chat-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(37, 211, 102, 0.8) 0%, rgba(18, 140, 126, 0.9) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.whatsapp-chat-card:hover .chat-overlay {
    opacity: 1;
}

.overlay-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease;
}

.whatsapp-chat-card:hover .overlay-icon {
    transform: scale(1.1) rotate(5deg);
}

.overlay-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.overlay-text {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    padding: 0 20px;
}

/* Refund Guarantee Box */
.refund-guarantee-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.refund-guarantee-box:hover {
    box-shadow: 0 15px 45px rgba(37, 211, 102, 0.15);
    border-color: #25D366;
}

.guarantee-icon-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s ease;
}

.refund-guarantee-box:hover .guarantee-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.guarantee-icon-wrapper i {
    font-size: 3rem;
    color: #ffffff;
}

.guarantee-box-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-family: 'Roboto', sans-serif;
}

.guarantee-box-text {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
    font-family: 'Roboto', sans-serif;
}

.guarantee-box-text strong {
    color: #25D366;
    font-weight: 700;
}

/* Modal Styling for Full Chat View */
.modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.modal-header {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    border-bottom: none;
    border-radius: 16px 16px 0 0;
    padding: 20px 25px;
}

.modal-title {
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
}

.btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
    opacity: 0.8;
}

.btn-close:hover {
    opacity: 1;
}

.modal-body {
    padding: 25px;
    background: #e5ddd5;
}

.modal-body img {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    max-height: 80vh;
    width: auto;
    margin: 0 auto;
}

/* Responsive adjustments for Refund Proof Section */
@media (max-width: 992px) {
    .refund-proof-section {
        padding: 70px 0;
    }
    
    .refund-main-title {
        font-size: 2.2rem;
    }
    
    .refund-subtitle {
        font-size: 1.05rem;
    }
    
    .chat-preview {
        min-height: 350px;
    }
    
    .refund-guarantee-box {
        padding: 35px 30px;
    }
    
    .guarantee-box-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .refund-proof-section {
        padding: 60px 0;
    }
    
    .refund-proof-header {
        margin-bottom: 40px;
    }
    
    .refund-badge {
        font-size: 0.9rem;
        padding: 10px 24px;
    }
    
    .refund-main-title {
        font-size: 1.9rem;
        padding: 0 15px;
    }
    
    .refund-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    /* Add spacing between refund screenshots on mobile */
    .refund-proof-section .row.g-4 > div {
        margin-bottom: 30px;
    }
    
    .whatsapp-chat-card {
        margin-bottom: 30px;
    }
    
    .chat-preview {
        min-height: 300px;
    }
    
    .refund-guarantee-box {
        padding: 30px 25px;
        border-radius: 16px;
    }
    
    .guarantee-icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    .guarantee-icon-wrapper i {
        font-size: 2.5rem;
    }
    
    .guarantee-box-title {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    
    .guarantee-box-text {
        font-size: 0.95rem;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-body img {
        max-height: 70vh;
    }
}

@media (max-width: 576px) {
    .refund-proof-section {
        padding: 50px 0;
    }
    
    .refund-badge {
        font-size: 0.85rem;
        padding: 8px 20px;
    }
    
    .refund-main-title {
        font-size: 1.7rem;
        padding: 0 20px;
        line-height: 1.3;
    }
    
    .refund-subtitle {
        font-size: 0.95rem;
        padding: 0 25px;
        line-height: 1.6;
    }
    
    /* Add more spacing between refund screenshots on small mobile */
    .refund-proof-section .row.g-4 > div {
        margin-bottom: 35px;
    }
    
    .whatsapp-chat-card {
        border-radius: 12px;
        margin-bottom: 35px;
    }
    
    .chat-preview {
        min-height: 280px;
    }
    
    .overlay-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }
    
    .overlay-icon i {
        font-size: 1.7rem;
    }
    
    .overlay-text {
        font-size: 0.9rem;
        padding: 0 15px;
    }
    
    .refund-guarantee-box {
        padding: 25px 20px;
        border-radius: 14px;
    }
    
    .guarantee-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .guarantee-icon-wrapper i {
        font-size: 2.2rem;
    }
    
    .guarantee-box-title {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .guarantee-box-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-title {
        font-size: 1.1rem;
    }
    
    .modal-body {
        padding: 15px;
    }
    
    .modal-body img {
        max-height: 60vh;
        border-radius: 8px;
    }
}

/*--------------------------------------------------------------
# Feedback Section - Modern Redesign
--------------------------------------------------------------*/
.feedback-section {
    padding: 50px 0 20px 0;
    margin-bottom: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
}

.feedback-section .container {
    padding-left: 15px;
    padding-right: 15px;
}

.feedback-section .section-header {
    padding-left: 15px;
    padding-right: 15px;
}

.feedback-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 196, 81, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(32, 178, 170, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Section Header Styles */
.section-header {
    position: relative;
    z-index: 1;
}

.section-title-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-badge {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(135deg, #ffc451 0%, #ff9800 100%);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 196, 81, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 196, 81, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 196, 81, 0.4);
    }
}

.section-main-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1a1a1a 0%, #4a5568 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ffc451 0%, #20b2aa 100%);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: #6c757d;
    margin-top: 10px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Single Tagline */
.tagline-single {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out;
}

.tagline-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffc451;
    text-align: center;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(255, 196, 81, 0.3);
    animation: taglineGlow 3s ease-in-out infinite;
    display: inline-block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes taglineGlow {
    0%, 100% {
        text-shadow: 0 2px 10px rgba(255, 196, 81, 0.3);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 2px 20px rgba(255, 196, 81, 0.6), 0 0 30px rgba(255, 196, 81, 0.3);
        transform: scale(1.02);
    }
}

/* Feedback Carousel Styles */
.feedback-carousel-wrapper {
    position: relative;
    z-index: 1;
    padding: 10px 0 10px;
    margin-left: -15px;
    margin-right: -15px;
    width: calc(100% + 30px);
}

.feedback-swiper {
    padding: 10px 15px 10px 15px;
    overflow: visible;
}

.feedback-swiper .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.feedback-swiper .swiper-slide-active .feedback-card-modern {
    transform: scale(1.05);
    z-index: 2;
}

/* Navigation Buttons */
.feedback-nav-next,
.feedback-nav-prev {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffc451 0%, #ff9800 100%);
    border-radius: 50%;
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 196, 81, 0.4);
    transition: all 0.3s ease;
    margin-top: -25px;
}

.feedback-nav-next::after,
.feedback-nav-prev::after {
    font-size: 20px;
    font-weight: 700;
}

.feedback-nav-next:hover,
.feedback-nav-prev:hover {
    background: linear-gradient(135deg, #ff9800 0%, #ffc451 100%);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 196, 81, 0.5);
}

.feedback-nav-next {
    right: 10px;
}

.feedback-nav-prev {
    left: 10px;
}

/* Pagination */
.feedback-pagination {
    bottom: 10px !important;
    position: relative;
    margin-top: 15px;
    margin-bottom: 0;
}

.feedback-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ddd;
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0 6px;
}

.feedback-pagination .swiper-pagination-bullet-active {
    background: linear-gradient(135deg, #ffc451 0%, #ff9800 100%);
    width: 30px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(255, 196, 81, 0.5);
}

/* Modern Card Styles */
.feedback-grid-container {
    position: relative;
    z-index: 1;
}

.feedback-card-modern {
    background: #ffffff;
    border-radius: 24px;
    padding: 8px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.feedback-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 196, 81, 0.05) 0%, rgba(32, 178, 170, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    border-radius: 20px;
}

.feedback-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
    border-radius: 20px;
    pointer-events: none;
}

.feedback-card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
    z-index: 3;
    pointer-events: none;
}

.feedback-card-modern:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 20px 60px rgba(255, 196, 81, 0.25),
        0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 196, 81, 0.3);
}

.feedback-card-modern:hover::before {
    opacity: 1;
}

.feedback-card-modern:hover .feedback-card-overlay {
    opacity: 1;
}

.feedback-card-modern:hover .feedback-card-shine {
    opacity: 1;
    top: -100%;
    left: -100%;
    transition: all 0.8s ease;
}

.feedback-graphic-wrapper {
    width: 100%;
    height: 100%;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 20px;
    background: #f8f9fa;
}

.feedback-graphic-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(1) contrast(1);
}

.feedback-card-modern:hover .feedback-graphic-img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.1) contrast(1.05);
}

/* Promise Card Styles */
.promise-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.promise-card:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.promise-icon-wrapper {
    flex-shrink: 0;
}

.promise-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 50%, #16a34a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.promise-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.promise-content h3 {
    font-size: 1.75rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.promise-content p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

/* Responsive Design - Modern Feedback Section */
@media (max-width: 1199px) {
    .feedback-section {
        padding: 40px 0 15px 0;
    }
    
    .section-main-title {
        font-size: 2.5rem;
    }
    
    .feedback-graphic-wrapper {
        min-height: 280px;
    }
    
    .promise-card {
        padding: 25px 35px;
    }
    
    .promise-icon {
        width: 70px;
        height: 70px;
    }
    
    .promise-icon i {
        font-size: 2.2rem;
    }
    
    .promise-content h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 991px) {
    .feedback-section {
        padding: 35px 0 15px 0;
    }
    
    .section-main-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.05rem;
    }
    
    .feedback-graphic-wrapper {
        min-height: 250px;
    }
    
    .feedback-card-modern {
        margin-bottom: 20px;
    }
    
    .promise-card {
        padding: 20px 25px;
    }
    
    .promise-card .d-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .promise-icon-wrapper {
        margin-bottom: 20px;
        margin-right: 0 !important;
    }
    
    .promise-content h3 {
        font-size: 1.5rem;
    }
    
    .promise-content p {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .feedback-section {
        padding: 30px 0 10px 0;
    }
    
    .feedback-section .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .feedback-section .section-header {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-badge {
        font-size: 0.75rem;
        padding: 6px 20px;
        margin-bottom: 15px;
    }
    
    .section-main-title {
        font-size: 2rem;
    }
    
    .section-main-title::after {
        width: 60px;
        height: 3px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .tagline-single {
        margin-top: 10px;
    }
    
    .tagline-text {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .feedback-carousel-wrapper {
        padding: 10px 0 50px;
        margin-left: -15px;
        margin-right: -15px;
        width: calc(100% + 30px);
    }
    
    .feedback-swiper {
        padding: 10px 15px 50px 15px;
    }
    
    .feedback-nav-next,
    .feedback-nav-prev {
        width: 40px;
        height: 40px;
        margin-top: -20px;
    }
    
    .feedback-nav-next::after,
    .feedback-nav-prev::after {
        font-size: 16px;
    }
    
    .feedback-nav-next {
        right: 5px;
    }
    
    .feedback-nav-prev {
        left: 5px;
    }
    
    .feedback-card-modern {
        padding: 6px;
        border-radius: 20px;
        margin-bottom: 20px;
    }
    
    .feedback-graphic-wrapper {
        min-height: 220px;
        border-radius: 16px;
    }
    
    .feedback-graphic-img {
        border-radius: 16px;
    }
    
    .feedback-card-modern:hover {
        transform: translateY(-10px) scale(1.02);
    }
    
    .promise-card {
        padding: 20px;
    }
    
    .promise-icon {
        width: 60px;
        height: 60px;
    }
    
    .promise-icon i {
        font-size: 2rem;
    }
    
    .promise-content h3 {
        font-size: 1.4rem;
    }
    
    .promise-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 575px) {
    .feedback-section {
        padding: 25px 0 10px 0;
    }
    
    .section-badge {
        font-size: 0.7rem;
        padding: 5px 16px;
    }
    
    .section-main-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .tagline-single {
        margin-top: 15px;
    }
    
    .tagline-text {
        font-size: 0.9rem;
        padding: 0 10px;
    }
    
    .feedback-carousel-wrapper {
        padding: 5px 0 40px;
        margin-left: -15px;
        margin-right: -15px;
        width: calc(100% + 30px);
    }
    
    .feedback-swiper {
        padding: 5px 15px 40px 15px;
    }
    
    .feedback-nav-next,
    .feedback-nav-prev {
        width: 35px;
        height: 35px;
        margin-top: -17.5px;
    }
    
    .feedback-nav-next::after,
    .feedback-nav-prev::after {
        font-size: 14px;
    }
    
    .feedback-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }
    
    .feedback-pagination .swiper-pagination-bullet-active {
        width: 24px;
    }
    
    .feedback-card-modern {
        padding: 5px;
        border-radius: 18px;
    }
    
    .feedback-graphic-wrapper {
        min-height: 200px;
        border-radius: 14px;
    }
    
    .feedback-graphic-img {
        border-radius: 14px;
    }
    
    .feedback-card-modern:hover {
        transform: translateY(-8px) scale(1.01);
    }
}

/* Foundation Section Responsive Styles */
@media (max-width: 992px) {
    .foundation section {
        padding: 80px 0 !important;
    }
    
    .foundation-title {
        font-size: 38px !important;
    }
}

@media (max-width: 768px) {
    .foundation section {
        padding: 60px 0 !important;
    }
    
    .foundation-title {
        font-size: 32px !important;
        margin-bottom: 15px !important;
    }
    
    .foundation .container > div[style*="background: rgba(255, 255, 255, 0.95)"] {
        padding: 35px 25px !important;
    }
    
    .foundation .container > div[style*="background: rgba(255, 255, 255, 0.95)"] p {
        font-size: 18px !important;
    }
    
    .foundation .container > div[style*="background: linear-gradient(135deg, #ffc451"] {
        padding: 30px 20px !important;
        margin-top: 25px !important;
    }
    
    .foundation .container > div[style*="background: linear-gradient(135deg, #ffc451"] div[style*="font-size: 72px"] {
        font-size: 56px !important;
    }
    
    .foundation .container > div[style*="background: rgba(255, 255, 255, 0.2)"] p[style*="font-size: 28px"] {
        font-size: 22px !important;
    }
}

@media (max-width: 576px) {
    .foundation section {
        padding: 50px 0 !important;
    }
    
    .foundation-title {
        font-size: 28px !important;
    }
    
    .foundation .container > div[style*="background: rgba(255, 255, 255, 0.95)"] {
        padding: 25px 20px !important;
        border-radius: 20px !important;
    }
    
    .foundation .container > div[style*="background: rgba(255, 255, 255, 0.95)"] p {
        font-size: 16px !important;
    }
    
    .foundation .container > div[style*="background: linear-gradient(135deg, #ffc451"] {
        padding: 25px 15px !important;
    }
    
    .foundation .container > div[style*="background: linear-gradient(135deg, #ffc451"] div[style*="font-size: 72px"] {
        font-size: 48px !important;
    }
    
    .foundation .container > div[style*="background: linear-gradient(135deg, #ffc451"] div[style*="font-size: 18px"] {
        font-size: 14px !important;
    }
    
    .foundation .container > div[style*="background: rgba(255, 255, 255, 0.2)"] {
        padding: 30px 20px !important;
    }
    
    .foundation .container > div[style*="background: rgba(255, 255, 255, 0.2)"] p[style*="font-size: 28px"] {
        font-size: 20px !important;
    }
    
    .foundation .container > div[style*="background: rgba(255, 255, 255, 0.15)"] {
        padding: 25px 20px !important;
        margin-bottom: 20px;
    }
    
    .foundation .container > div[style*="background: rgba(255, 255, 255, 0.15)"] h4 {
        font-size: 18px !important;
    }
    
    .foundation .container > div[style*="background: rgba(255, 255, 255, 0.15)"] p {
        font-size: 14px !important;
    }
}

/* Reduce spacing in Core Values section */
#features .features-item h4 {
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
    font-size: 1.1rem;
}

#features .features-item h4:first-child {
    margin-top: 0;
}

#features .features-item p {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

/*--------------------------------------------------------------
# Refund Commitment Section
--------------------------------------------------------------*/
.refund-commitment-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    z-index: 1;
}

/* Refund Badge - Popup Animation */
.refund-badge {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
    animation: refund-badge-popup 2s ease-in-out infinite;
    position: relative;
    z-index: 10;
}

@keyframes refund-badge-popup {
    0%, 100% {
        transform: scale(1) translateY(0);
        box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3), 0 0 20px rgba(34, 197, 94, 0.2);
    }
    50% {
        transform: scale(1.08) translateY(-8px);
        box-shadow: 0 8px 30px rgba(34, 197, 94, 0.6), 0 0 40px rgba(255, 165, 0, 0.4), 0 0 60px rgba(34, 197, 94, 0.3);
    }
}

.refund-badge i {
    font-size: 1.2rem;
}

/* Refund Title */
.refund-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
}

/* Refund Description - Normal positioning (not sticky) */
.refund-description {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

/* Badge wrapper - NOT sticky, scrolls normally */
.refund-commitment-section .text-center.mb-4:first-child {
    position: relative;
    z-index: 1;
}

.refund-text {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 15px;
}

.highlight-green {
    color: #22c55e;
    font-weight: 700;
}

.refund-subtext {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 0;
}

/* Refund Image Wrapper */
.refund-image-wrapper {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 8px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.refund-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.refund-screenshot {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.refund-image-wrapper:hover .refund-screenshot {
    transform: scale(1.02);
}

/* Responsive Design for Refund Section */
@media (max-width: 991px) {
    .refund-main-title {
        font-size: 2rem;
    }
    
    .refund-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 767px) {
    .refund-commitment-section {
        padding: 40px 0;
    }
    
    .refund-main-title {
        font-size: 1.75rem;
    }
    
    .refund-text {
        font-size: 1rem;
    }
    
    .refund-badge {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
    
    .refund-image-wrapper {
        padding: 6px;
    }
    
    .refund-description {
        padding: 15px;
    }
}

@media (max-width: 575px) {
    .refund-main-title {
        font-size: 1.5rem;
    }
    
    .refund-badge {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
    
    .refund-image-wrapper {
        padding: 5px;
    }
    
    .refund-description {
        padding: 12px;
    }
}

/* ==========================================================
   Global Visual Enhancements (Non-breaking UI polish)
   - Keeps all original content and structure
   - Adds a more modern, cohesive visual style
   ========================================================== */

/* Subtle global background */
body {
  background: radial-gradient(circle at top, #f3f4ff 0, #ffffff 55%);
}

/* Make most sections feel lighter without overriding
   sections that already use strong custom backgrounds */
section.section,
section:not(.hero):not(.call-to-action):not(.delivery-guarantee-section):not(.feedback-section):not(.whatsapp-api-section):not(.refund-proof-section):not(.refund-commitment-section) {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

/* Improve default typography rhythm */
body {
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3 {
  letter-spacing: 0.02em;
}

p {
  margin-bottom: 0.9rem;
}

/* -----------------------------
   Navigation polish
   ----------------------------- */
.header {
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.45);
}

.header .logo img {
  max-height: 52px;
}

@media (max-width: 768px) {
  .header .logo img {
    max-height: 46px;
  }
}

.header .navmenu a {
  position: relative;
}

.header .navmenu a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffc451 0%, #ff9800 100%);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease-out, opacity 0.25s ease-out;
  opacity: 0;
}

.header .navmenu li:hover > a::after,
.header .navmenu .active::after {
  transform: scaleX(1);
  opacity: 1;
}

/* -----------------------------
   Buttons – consistent, modern
   ----------------------------- */
.header .btn-getstarted,
.hero .btn-get-started,
.btn-primary-cta,
.btn-secondary-cta,
.btn-price,
.btn-get-now {
  border-radius: 999px !important;
  font-weight: 600 !important;
  letter-spacing: 0.03em;
  text-transform: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25) !important;
}

.header .btn-getstarted,
.hero .btn-get-started,
.btn-price,
.btn-primary-cta {
  background: linear-gradient(135deg, var(--rgb-red), var(--rgb-blue), var(--rgb-green)) !important;
  background-size: 200% 200% !important;
  animation: rgbShift 3s ease infinite !important;
  border: 2px solid transparent !important;
  color: #fff !important;
  box-shadow: 0 4px 15px rgba(0, 64, 255, 0.3), 
              0 -4px 15px rgba(255, 0, 64, 0.3) !important;
}

.btn-get-now,
.btn-secondary-cta {
  background-image: linear-gradient(135deg, #111827 0%, #020617 100%) !important;
  border: 1px solid rgba(148, 163, 184, 0.45) !important;
}

.header .btn-getstarted:hover,
.hero .btn-get-started:hover,
.btn-price:hover,
.btn-get-now:hover,
.btn-primary-cta:hover,
.btn-secondary-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 64, 255, 0.5), 
              0 -6px 25px rgba(255, 0, 64, 0.5),
              6px 0 25px rgba(0, 255, 64, 0.5) !important;
  filter: brightness(1.1);
}

/* -----------------------------
   Hero section – stronger focus
   ----------------------------- */
.hero .carousel-item::before {
  background: radial-gradient(circle at top left, rgba(255, 196, 81, 0.28) 0%, transparent 45%),
              linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.35) 52%, rgba(0, 0, 0, 0.15) 100%);
}

.hero h2 {
  text-shadow: 0 14px 38px rgba(0, 0, 0, 0.9);
}

.hero p {
  text-shadow: 0 10px 25px rgba(0, 0, 0, 0.85);
}

@media (min-width: 1024px) {
  .hero h2 {
    font-size: 52px;
  }
}

/* Gentle glow around carousel controls */
.hero .carousel-control-prev-icon,
.hero .carousel-control-next-icon {
  padding: 4px;
  border-radius: 999px;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.7);
  background-color: rgba(0, 0, 0, 0.45);
}

/* -----------------------------
   Cards & content blocks
   ----------------------------- */
.services .service-item,
.team .team-member,
.portfolio .portfolio-info,
.stats .stats-item,
.feature-card,
.refund-guarantee-box,
.whatsapp-features-card,
.whatsapp-benefits-card,
.whatsapp-cta-card,
.promise-card {
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.16);
}

.services .service-item:hover,
.team .team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 65px rgba(15, 23, 42, 0.24);
}

/* Icon circles inside services */
.services .service-item .icon {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

/* -----------------------------
   Section titles – subtle upgrade
   ----------------------------- */
.section-title h2 {
  letter-spacing: 0.18em;
}

.section-title p {
  text-transform: none;
  letter-spacing: 0.04em;
}

/* -----------------------------
   Footer – slightly lifted
   ----------------------------- */
.footer {
  box-shadow: 0 -14px 40px rgba(15, 23, 42, 0.22);
  border-top: 1px solid rgba(148, 163, 184, 0.3);
}