* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    /* More breathing room */
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Nav Styles */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    /* More spacing between items */
}

.nav a {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s, transform 0.2s;
    position: relative;
    padding: 0.5rem 0;
}

.nav a:hover {
    color: #2563eb;
}

/* Underline removed */

.contact-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4b5563;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.contact-link:hover {
    background: #eff6ff;
    color: #2563eb;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #374151;
    transition: color 0.2s;
}

.mobile-menu-btn:hover {
    color: #2563eb;
}

/* Mobile Nav Container */
.mobile-nav {
    display: none;
    /* JS toggles this via .active class */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border-top: 1px solid #f3f4f6;
    padding: 1.5rem 0;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease forwards;
}

.mobile-nav.active {
    display: block;
}

@keyframes slideDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav nav {
    display: flex;
    flex-direction: column;
    padding: 0 1.5rem;
}

.mobile-nav a {
    padding: 1rem 0;
    border-bottom: 1px solid #f9fafb;
    color: #4b5563;
    font-weight: 500;
    text-decoration: none;
    font-size: 1rem;
}

.mobile-nav a:hover {
    color: #2563eb;
    padding-left: 0.5rem;
    /* Slight shift */
    transition: all 0.2s;
}

.mobile-contact {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-contact a {
    border: none;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: #6b7280;
}

/* Hero Styles */
.hero {
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 50%, #f0fdf4 100%);
    padding: 5rem 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.rating {
    display: flex;
    align-items: center;

    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-top: 16px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.text-blue {
    color: #2563eb;
}

.text-green {
    color: #059669;
}

.hero p {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #4b5563;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-secondary:hover {
    background: #eff6ff;
}

.btn-whatsapp {
    background: transparent;
    color: #22c55e;
    border: 2px solid #22c55e;
}

.btn-whatsapp:hover {
    background: #22c55e;
    color: #ffffff;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.image-container {
    position: relative;
    /* Ensure absolutely positioned floating cards don't cause page-wide overflow */
    /* overflow: hidden; Removed to allow floating cards to show */
}

.image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.growth-card {
    bottom: -1.5rem;
    right: -1.5rem;
    color: #059669;
}

.trust-card {
    top: 1rem;
    left: -1.5rem;
    background: #2563eb;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
}

.card-label {
    font-size: 0.875rem;
    color: #4b5563;
}

.card-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #059669;
}

/* Services Styles */
.services {
    padding: 5rem 0;
    background: #f9fafb;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 800px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    display: inline-flex;
    padding: 0.75rem;
    background: #f3f4f6;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    color: #2563eb;
    transition: transform 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.service-card p {
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-card li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #4b5563;
}

.service-card li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #2563eb;
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.service-result {
    padding: 0.5rem 1rem;
    background: #dcfce7;
    color: #059669;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
}

/* Testimonials Styles */
.testimonials {
    padding: 5rem 0;
    background: white;
}

.testimonial-section {
    margin-bottom: 4rem;
}

.testimonial-section h3 {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
    color: #1f2937;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 12px;
    position: relative;
}

.quote-icon {
    font-size: 1.5rem;
    color: #2563eb;
    opacity: 0.5;
    margin-bottom: 1rem;
}

.stars {
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.testimonial-card p {
    color: #4b5563;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    line-height: 1.6;
}

.result-badge {
    background: #dcfce7;
    color: #059669;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.875rem;
}

.author-specialty {
    color: #2563eb;
    font-weight: 500;
    font-size: 0.75rem;
}

.author-location {
    color: #6b7280;
    font-size: 0.75rem;
}

/* Video Testimonials */
.video-testimonial-slider {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.video-testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.video-testimonial-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.video-testimonial-card {
    background: #f9fafb;
    border-radius: 12px;
    overflow: hidden;
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
    height: 470px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.video-thumbnail:hover .video-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.play-button {
    background: #dc2626;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
}

.video-thumbnail:hover .play-button {
    transform: scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.youtube-badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: #dc2626;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
}

.video-content {
    padding: 1rem;
}

.video-content .stars {
    text-align: center;
    margin-bottom: 0.75rem;
}

.video-content .result-badge {
    display: block;
    text-align: center;
    margin-bottom: 0.75rem;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    font-size: 1.25rem;
    color: #4b5563;
    transition: all 0.3s;
    z-index: 10;
}

.slider-btn:hover {
    background: #f9fafb;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 5px;
}

.next-btn {
    right: 5px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: #2563eb;
}

.testimonial-cta {
    text-align: center;
    margin-top: 3rem;
}

.testimonial-cta p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

/* Trust Signals Styles */
.trust-signals {
    padding: 5rem 0;
    background: #f9fafb;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.trust-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.trust-card svg {
    color: #2563eb;
    margin-bottom: 1rem;
}

.trust-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.trust-desc {
    color: #4b5563;
    font-size: 0.875rem;
}

.memberships {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.memberships h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 2rem;
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.membership-card {
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.3s;
}

.membership-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.membership-logo {
    margin-bottom: 1rem;
    align-self: center;
}

.membership-logo svg {
    color: #2563eb;
}

.membership-name {
    font-weight: bold;
    font-size: 1.125rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.membership-desc {
    color: #4b5563;
    font-size: 0.875rem;
}

.certification-badge {
    background: linear-gradient(135deg, #2563eb, #059669);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: bold;
    font-size: 1.125rem;
}

.certification-text {
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.google-rating {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    max-width: 400px;
    margin: 3rem auto 0;
}

.rating-stars {
    color: #fbbf24;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.rating-score {
    font-size: 2rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.rating-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.rating-subtitle {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 1rem;
}

/* CTA Styles */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.cta-text h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.cta-text p {
    font-size: 1.25rem;
    color: #dbeafe;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.benefits {
    margin-bottom: 2rem;
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit svg {
    color: #22c55e;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.benefit h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit p {
    color: #dbeafe;
    font-size: 0.875rem;
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    color: #1f2937;
}

.btn-secondary {
    background: #ffffff;
}

.btn-secondary:hover {
    color: #ffffff;
    background-color: #1d4ed8;
    border-color: #dbeafe;
}

.form-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-header svg {
    color: #2563eb;
    margin-bottom: 1rem;
}

.form-header h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #4b5563;
    font-size: 0.875rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

form input,
form select,
form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    margin-bottom: 1rem;
}

form input:focus,
form select:focus,
form textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

form textarea {
    resize: vertical;
    min-height: 80px;
}

.form-disclaimer {
    font-size: 0.75rem;
    color: #6b7280;
    text-align: center;
    margin-top: 1rem;
}

/* Footer Styles */
/* Footer Styles */
.footer {
    background: #1f2937;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    background: #374151;
    padding: 0.5rem;
    border-radius: 8px;
    color: white;
    transition: background 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover,
.social-links a:focus-visible {
    background: #4b5563;
    outline: none;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover,
.footer-section a:focus-visible {
    color: white;
    outline: none;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1rem;
    font-style: normal;
    /* keep address text normal */
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-item svg {
    color: #2563eb;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.certification-box {
    background: #374151;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.cert-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.cert-header svg {
    color: #60a5fa;
}

.cert-header span {
    font-weight: 600;
}

.certification-box p {
    font-size: 0.875rem;
    color: #9ca3af;
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #9ca3af;
    font-size: 0.875rem;
    gap: 1rem;
    flex-wrap: wrap;
}


/* Responsive Design */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-nav.active {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-slide {
        grid-template-columns: 1fr;
    }

    .video-testimonial-slide {
        grid-template-columns: 1fr;
    }

    .cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-text h2 {
        font-size: 2rem;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 3rem 0;
    }

    .services {
        padding: 3rem 0;
    }

    .testimonials {
        padding: 3rem 0;
    }

    .trust-signals {
        padding: 3rem 0;
    }

    .cta {
        padding: 3rem 0;
    }

    .footer {
        padding: 3rem 0 2rem;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .cta-text h2 {
        font-size: 1.75rem;
    }
}




#client-logos-section {
    background: #fff;
    padding: 60px 20px;
}

.client-logos-container {
    max-width: 1200px;
    margin: 0 auto;
}

.client-logos-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: #111;
    margin-bottom: 40px;
}

.client-logos-row {
    overflow: hidden;
    position: relative;
    margin-bottom: 25px;
}

.client-logos-track {
    display: flex;
    gap: 40px;
    min-width: 200%;
}

.client-logo-box {
    flex: 0 0 auto;
    width: 200px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo-box img {
    max-width: 160px;
    max-height: 60px;
    object-fit: contain;
}

/* Scroll Animations */
@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0%);
    }
}

.client-scroll-left {
    animation: scroll-left 20s linear infinite;
}

.client-scroll-right {
    animation: scroll-right 20s linear infinite;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .client-logo-box {
        width: 140px;
        height: 60px;
    }

    .client-logo-box img {
        max-width: 120px;
        max-height: 50px;
    }

    /* Faster scroll on mobile */
    .client-row-scroll {
        animation: client-scroll 10s linear infinite;
    }

    .client-row-scroll-reverse {
        animation: client-scroll-reverse 10s linear infinite;
    }
}



/* Testimonial Section */
.vs-testimonial-section {
    max-width: 1400px;
    margin: 0 auto;

    text-align: center;
}

.vs-testimonial-section h3 {
    font-size: 2.5rem;
    margin-bottom: 35px;
    color: #333;
}

/* Video Testimonial Slider */
.vs-testimonial-slider {
    position: relative;
    overflow: hidden;
}

.vs-testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.vs-testimonial-slide {
    display: flex;
    justify-content: center;
    gap: 20px;
    min-width: 100%;
    flex-wrap: wrap;
}

.vs-testimonial-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 350px;
    margin: 10px;
}

.vs-video-thumbnail {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.vs-video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vs-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.vs-play-button {
    font-size: 3rem;
    color: #ff0000;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

.vs-video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
}

.vs-youtube-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff0000;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.vs-video-content {
    padding: 20px;
    text-align: center;
}

.vs-stars {
    color: #f5c518;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.vs-result-badge {
    background: #dcfce7;
    color: #059669;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: inline-block;
}

.vs-testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vs-testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.vs-author-name {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
}

.vs-author-specialty {
    font-size: 0.9rem;
    color: #2563eb;
}

.vs-author-location {
    font-size: 0.8rem;
    color: #999;
}

/* Slider Controls */
.vs-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(255, 255, 255);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #4b5563;
    border: none;
    font-size: 2rem;

    cursor: pointer;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.vs-prev-btn {
    left: 10px;
}

.vs-next-btn {
    right: 10px;
}

.vs-slider-btn:hover {
    background: #f9fafb;
    transform: translateY(-50%) scale(1.1);
}

.vs-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.vs-slider-dots .vs-dot {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.vs-slider-dots .vs-dot.active {
    background: #0055ff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .vs-testimonial-card {
        width: 100%;
        max-width: 400px;
    }

    .vs-slider-btn {
        font-size: 1.5rem;
        padding: 5px 10px;
    }
}



/* Floating stack container: bottom-right */
.floating-stack {
    position: fixed;
    right: 16px;
    /* anchor to right side */
    bottom: 24px;
    /* distance from bottom */
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
    /* keep above content */
}

/* Base button style */
.btn-float {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    font: 600 14px/1.1 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .25);
    transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
    backdrop-filter: saturate(1.2);
    will-change: transform;
}

/* Icon size */
.btn-float i {
    font-size: 16px;
}

/* Variants */
.btn-call {
    background: #1e88e5;
}

/* blue call button */
.btn-wa {
    background: #2e7d32;
}

/* WhatsApp green */

/* Hover/active effects */
.btn-float:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, .28);
}

.btn-float:active {
    transform: translateY(0);
    filter: brightness(.96);
}

/* High-contrast focus ring for accessibility */
.btn-float:focus-visible {
    outline: 3px solid rgba(255, 255, 255, .9);
    outline-offset: 2px;
}

/* Prevent floating/absolute elements from causing horizontal scroll on small screens */
@media (max-width: 768px) {

    /* make floating cards sit inside image and not overflow viewport */
    .floating-card {
        max-width: 65%;
        left: auto;
        /* reset any negative left/right offsets */
        right: 0;
        transform: translateX(0);
    }

    .floating-card.trust-card {
        left: 0;
        /* keep trust card visible but not outside */
        right: auto;
        top: 0.5rem;
    }

    .growth-card {
        bottom: -0.5rem;
        right: 0;
    }
}

@media (max-width: 480px) {

    /* extra safety: clip any remaining overflow on very small screens */
    body {
        overflow-x: hidden;
    }

    .floating-card {
        max-width: 80%;
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .image-container img {
        height: auto;
        max-height: 340px;
    }
}



/*podcast section*/



.ytpod-heading {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-left: 10px;
}

/* MAIN CONTAINER */
.ytpod-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    overflow: hidden;
}

/* SLIDER */


/* CARD */
.ytpod-video-card {
    flex: 0 0 calc(50% - 16px);
    /* Desktop: show 2 cards */
    min-width: 320px;
    scroll-snap-align: start;
    /* background: #ffffff; */
    /* border-radius: 12px; */
    overflow: hidden;
    cursor: pointer;
    transition: 0.2s;
    /* box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08); */
    /* border: 1px solid #eee; */
}

.ytpod-video-card:hover {
    transform: scale(1.03);
}

.ytpod-thumb {
    width: 100%;
    height: 335px;
    background: #ddd;
    position: relative;
}

.ytpod-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ytpod-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
}

/* INFO */
.ytpod-info {
    padding: 12px;
    display: flex;
    gap: 12px;
}

.ytpod-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.ytpod-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 4px;
    color: #000;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ytpod-channel,
.ytpod-views {
    font-size: 13px;
    color: #555;
}

/* RESPONSIVE */
@media(max-width:768px) {
    .ytpod-video-card {
        flex: 0 0 100%;
        /* Mobile: show 1 card */
    }

    .ytpod-thumb {
        height: 225px;
    }
}

/* VIDEO POPUP */
.video-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.video-popup {
    width: 90%;
    max-width: 900px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.video-popup iframe {
    width: 100%;
    height: 500px;
}

/* Mega Menu Styles */
.nav-item-has-children {
    position: relative;
    padding-bottom: 2rem;
    /* Bridge to menu */
    margin-bottom: -2rem;
    /* Pull back layout */
    display: flex;
    align-items: center;
}

.nav-item-has-children:hover .mega-menu {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.mega-menu {
    visibility: hidden;
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
    position: absolute;
    top: 100%;
    left: 50%;
    width: 750px;
    /* Wider */
    background: white;
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    padding: 2rem;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(229, 231, 235, 0.5);
    /* Subtle border */
}

/* Optional: Slight arrow at top */
.mega-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: white;
    border-left: 1px solid rgba(229, 231, 235, 0.5);
    border-top: 1px solid rgba(229, 231, 235, 0.5);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.mega-menu-item {
    display: flex;
    align-items: center;
    /* Centered vertically */
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.2s ease;
    text-decoration: none !important;
    background: transparent;
}

.mega-menu-item:hover {
    background: #f8fafc;
    /* Very light slate */
    transform: translateX(4px);
    /* Subtle shift */
}

.mega-menu-icon {
    width: 44px;
    height: 44px;
    background: #edf2f7;
    color: #2563eb;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
}

.mega-menu-item:hover .mega-menu-icon {
    background: #2563eb;
    color: white;
    transform: scale(1.05);
}

.mega-menu-icon svg {
    width: 24px;
    height: 24px;
}

.mega-menu-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    /* Darker black */
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.mega-menu-content p {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 400;
}

/* Sidebar Recent Posts/Services Links */
.recent-post-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 8px;
    transition: background 0.2s;
    text-decoration: none !important;
    border: 1px solid transparent;
}

.recent-post-link:hover {
    background: #f9fafb;
    border-color: #e5e7eb;
}

.recent-post-link .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 6px;
    flex-shrink: 0;
}

.recent-post-link .text {
    color: #4b5563;
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.4;
    transition: color 0.2s;
}

.recent-post-link:hover .text {
    color: #2563eb;
}

/* Mobile Submenu Styles */
.mobile-nav-group {
    border-bottom: 1px solid #f3f4f6;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 1rem;
}

.mobile-nav-header a {
    border-bottom: none !important;
    /* Override default border */
    flex-grow: 1;
}

.mobile-submenu-toggle {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: #4b5563;
    transition: transform 0.3s;
}

.mobile-submenu {
    display: none;
    background: #f9fafb;
    padding: 0.5rem 0;
}

/* Fix selector for active state */
.mobile-submenu.active,
.mobile-nav-group .mobile-submenu.active {
    display: block;
}

.active .mobile-submenu-toggle svg {
    transform: rotate(180deg);
}

.mobile-sublink {
    display: block;
    padding: 0.75rem 1rem 0.75rem 2rem;
    color: #6b7280;
    text-decoration: none;
    font-size: 0.95rem;
    border-bottom: 1px solid #f3f4f6;
}

/* Enhanced Sidebar Service Links (Override previous) */
.recent-post-link {
    background: white;
    border: 1px solid #f3f4f6;
    padding: 12px;
    margin-bottom: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    border-radius: 12px;
    /* Rounded card */
}

.recent-post-link:hover {
    background: white;
    border-color: #bfdbfe;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

.recent-post-link .icon {
    width: 40px;
    height: 40px;
    background: #2563eb;
    /* Blue background */
    color: white;
    /* White icon */
    border-radius: 50%;
    /* Circle */
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
}

.recent-post-link .text {
    font-weight: 600;
    color: #1f2937;
    font-size: 1rem;
}

.recent-post-link:hover .text {
    color: #2563eb;
}

/* Service Hero Section */
.service-hero {
    background-color: #eef9fe;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

/* Dotted pattern decoration */
.service-hero::before {
    content: "";
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1300px;
    height: 100%;
    background-image: radial-gradient(#cbd5e1 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
}

.service-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.service-hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.service-hero-text p {
    font-size: 1.125rem;
    color: #334155;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.service-hero-btn {
    display: inline-block;
    background-color: #2563eb;
    /* Blue color matching reference */
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.service-hero-btn:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.service-hero-image {
    position: relative;
}

.service-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px 0 20px 0;
    /* Asymmetric rounded corners like reference */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: white;
    padding: 10px;
    /* White border effect */
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .service-hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .service-hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .service-hero-text h1 {
        font-size: 2.5rem;
    }
}

/* Service Blog Section */
.service-blog-section {
    padding: 5rem 0;
    background: #ffffff;
}

.service-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.service-blog-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f3f4f6;
    display: flex;
    flex-direction: column;
}

.service-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-blog-image {
    height: 240px;
    overflow: hidden;
}

.service-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-blog-card:hover .service-blog-image img {
    transform: scale(1.05);
}

.service-blog-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-blog-date {
    color: #ef4444;
    /* Red accent color for date */
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.service-blog-content h3 {
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    font-weight: 600;
    flex-grow: 1;
    /* Pushes button to bottom */
}

.service-blog-btn {
    display: inline-block;
    background-color: #2563eb;
    /* Blue button */
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    width: fit-content;
    transition: background-color 0.2s;
}

.service-blog-btn:hover {
    background-color: #1d4ed8;
}

@media (max-width: 991px) {
    .service-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .service-blog-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Accordion Styles */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: white;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s;
    font-family: "Poppins", sans-serif;
}

.faq-question:hover {
    background-color: #f9fafb;
}

.faq-question.active {
    color: #2563eb;
    background-color: #eff6ff;
}

.faq-icon {
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: white;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}


/* FAQ Styles */
.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: white;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s;
    font-family: inherit;
}

.faq-question:hover {
    background-color: #f8fafc;
}

.faq-question[aria-expanded="true"] {
    color: #2563eb;
    background-color: #eff6ff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: white;
}

.faq-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #4b5563;
    line-height: 1.6;
}

.faq-question .icon {
    font-size: 1.5rem;
    font-weight: 400;
    color: #9ca3af;
}

.faq-question[aria-expanded="true"] .icon {
    color: #2563eb;
}


/* 3-Pillar Section Styles */
.pillar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pillar-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background: #eff6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.pillar-card h4 {
    color: #2563eb;
    /* Theme Blue */
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pillar-card p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}


/* 3-Pillar Section Styles - Updated for smaller look */
.pillar-section {
    padding: 3rem 0 !important;
    /* Force override */
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.pillar-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pillar-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-color: #2563eb;
}

.pillar-icon {
    width: 60px;
    height: 60px;
    background: #eff6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.pillar-card h4 {
    color: #2563eb;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.pillar-card p {
    color: #4b5563;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Fix SVG Visibility */
.pillar-icon svg {
    stroke: #2563eb;
    width: 32px;
    height: 32px;
}

/* 3-Pillar (Now 6-Pillar) Marketing Section Styles */
.pillar-section {
    position: relative;
    overflow: hidden;
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.pillar-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
    text-align: center;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-color: #bfdbfe;
}

.pillar-icon {
    width: 64px;
    height: 64px;
    background: #eff6ff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: #2563eb;
}

.pillar-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.pillar-card p {
    color: #4b5563;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* SLIDER - New Consolidation */
.ytpod-carousel {
    position: relative;
    overflow: hidden;
    cursor: grab;
    padding: 20px 0;
    /* Prevent top/bottom shadow clipping */
}

/* Track */
.ytpod-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

/* CARD LAYOUT WRAPPER */
.ytpod-video-card {
    /* Desktop: 2 cards visible */
    flex: 0 0 50%;
    max-width: 50%;
    box-sizing: border-box;
    padding: 0 10px;
    /* Gap between cards */
}

/* CARD INNER (Visuals) */
.ytpod-card-inner {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
    height: 100%;
    transition: transform 0.2s;
}

.ytpod-video-card:hover .ytpod-card-inner {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .ytpod-video-card {
        flex: 0 0 100%;
        max-width: 100%;
        /* Mobile: 1 card visible */
    }
}

/* Discovery Platforms Section - Re-designed Profile Cards */
.discovery-platforms-section {
    padding: 5rem 0;
    background-color: #f8fafc;
}

.discovery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /* Slightly narrower min-width */
    gap: 2rem;
    /* Reduced gap */
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 0 1rem;
}

.discovery-card-new {
    background: #fff;
    border-radius: 20px;
    /* Slightly tighter radius */
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
    overflow: visible;
    text-decoration: none;
    /* Reset for anchor */
    color: inherit;
    /* Reset for anchor */
    cursor: pointer;
}

.discovery-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.15);
}

.portada {
    width: 100%;
    height: 150px;
    /* Increased height for better visibility */
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background-position: top center;
    background-size: 100% auto;
    /* Full width, auto height for scrolling */
    background-repeat: no-repeat;
    position: relative;
    transition: background-position 3s ease-in-out;
    /* Smooth scroll effect */
}

/* Scroll background on hover */
.discovery-card-new:hover .portada {
    background-position: bottom center;
}

.img-avatar {
    width: 70px;
    height: 70px;
    position: absolute;
    border-radius: 50%;
    border: 4px solid white;
    background: white;
    /* White bg for logos */
    top: 115px;
    /* Adjusted for taller header (150 - 35) */
    left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
    overflow: hidden;
}

.img-avatar img.platform-logo {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

/* Hide SVGs if any remain */
.img-avatar svg {
    display: none;
}

.card-text {
    padding-top: 25px;
}

.title-total {
    padding: 0.5rem 1.5rem 1.5rem 1.5rem;
    /* Reduced Padding */
}

.discovery-card-new .title {
    text-align: right;
    color: #2563eb;
    font-weight: 700;
    font-size: 0.8rem;
    /* Smaller font */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.discovery-card-new h2 {
    margin: 0;
    padding: 0;
    font-size: 1.35rem;
    /* Slightly smaller name */
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.discovery-card-new .desc {
    font-size: 0.9rem;
    /* Smaller text */
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.discovery-card-new .actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: auto;
}

.discovery-card-new .actions .btn-icon {
    border: none;
    background: #eff6ff;
    width: 40px;
    /* Smaller button */
    height: 40px;
    /* Smaller button */
    border-radius: 50%;
    color: #2563eb;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Rotate and glow on card hover */
.discovery-card-new:hover .actions .btn-icon {
    background-color: #2563eb;
    color: white;
    transform: rotate(45deg);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

@media (max-width: 768px) {
    .discovery-grid {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
    }
}

/* Ortho Card Hover Effect */
.ortho-card:hover .portada {
    background-image: url('assets/images/ortho_hover.png') !important;
    background-size: 150%;
    animation: bgScroll 8s linear infinite alternate;
}

@keyframes bgScroll {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 100% 100%;
    }
}