 /* Custom CSS for Firefly Global Solutions */

/* Color Variables */
:root {
    --navy: #001f4d;
    --royal-blue: #003366;
    --deep-orange: #ff5722;
    --crimson: #dc143c;
    --gold: #ffd700;
    --orange: #ff9800;
    --charcoal: #333333;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #6c757d;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--charcoal);
    /*scroll-behavior: smooth;*/
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--navy);
}
 .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--gold) !important;
            text-decoration: none;
        }

.navbar-brand i {
    color: var(--deep-orange);
}

.nav-link {
    color: #003366 !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.dropdown-menu {
    background: var(--navy);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.dropdown-item {
    color: var(--white);
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: var(--gold);
    color: var(--navy);
}

/* Section Styling */
.section-padding {
    padding: 60px 0;
}

.section-label {
    color: var(--deep-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--navy);
}

.section-description {
    font-size: 1.2rem;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.text-gold {
    color: var(--gold) !important;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--royal-blue) 100%);
    color: var(--white);
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 87, 34, 0.1) 0%, transparent 50%);
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.95;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Differentiator Cards */
.differentiator-card {
    background: var(--white);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.differentiator-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.differentiator-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--deep-orange), var(--crimson));
    transition: all 0.6s ease;
    z-index: 1;
    opacity: 0.03;
}

.differentiator-card:hover::before {
    left: 0;
}

.diff-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--deep-orange), var(--crimson));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 40px rgba(255, 87, 34, 0.3);
}

.differentiator-card:hover .diff-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 50px rgba(255, 87, 34, 0.4);
}

.diff-content {
    position: relative;
    z-index: 2;
}

.diff-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--navy);
}

.diff-stat {
    background: var(--gold);
    color: var(--navy);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.diff-content p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.diff-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.diff-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    color: var(--charcoal);
    font-weight: 500;
}

.diff-features i {
    margin-right: 1rem;
    font-size: 1rem;
}

/* Competitive Advantages Section */
.competitive-advantages {
    background: linear-gradient(135deg, var(--navy) 0%, var(--royal-blue) 100%);
    position: relative;
}

.competitive-advantages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 87, 34, 0.1) 0%, transparent 50%);
}

.advantage-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 3rem 2rem;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 2;
    text-align: center;
}

.advantage-card.featured {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid var(--gold);
    transform: scale(1.05);
}

.advantage-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
}

.advantage-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.advantage-badge {
    background: var(--gold);
    color: var(--navy);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.advantage-header {
    margin-bottom: 2rem;
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.advantage-header h4 {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.advantage-content {
    text-align: center;
}

.advantage-stat {
    margin-bottom: 1.5rem;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.advantage-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.advantage-benefits {
    text-align: left;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.benefit-item i {
    margin-right: 1rem;
    font-size: 1rem;
    width: 16px;
}

/* Success Metric Cards */
.success-metric-card {
    background: var(--white);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.success-metric-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.success-metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--deep-orange), var(--crimson));
    opacity: 0;
    transition: all 0.3s ease;
}

.success-metric-card:hover::before {
    opacity: 0.05;
}

.metric-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--deep-orange), var(--crimson));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.3);
}

.success-metric-card:hover .metric-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 87, 34, 0.4);
}

.metric-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--deep-orange);
    line-height: 1;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.metric-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.success-metric-card p {
    color: var(--dark-gray);
    line-height: 1.7;
    position: relative;
    z-index: 2;
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--navy) 100%);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 87, 34, 0.08) 0%, transparent 50%);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 3rem 2rem;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 2;
}

.testimonial-card.featured {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid var(--gold);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
}

.testimonial-badge {
    background: var(--gold);
    color: var(--navy);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.quote-icon {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.testimonial-content p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    font-size: 1.1rem;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
}

.author-info h5 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.author-info p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
}

.stars {
    display: flex;
    gap: 0.3rem;
}

.stars i {
    color: var(--gold);
    font-size: 1rem;
}

/* Quality Process */
.quality-process {
    margin-top: 3rem;
}

.quality-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    position: relative;
}

.quality-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 35px;
    top: 70px;
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, var(--deep-orange), var(--crimson));
    opacity: 0.3;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--deep-orange), var(--crimson));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-right: 2rem;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.3);
}

.step-info h5 {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.step-info p {
    color: var(--dark-gray);
    margin: 0;
    line-height: 1.6;
}

/* Quality Stats */
.quality-stats {
    background: rgba(255, 215, 0, 0.1);
    border-radius: 25px;
    padding: 3rem;
    border-left: 5px solid var(--gold);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.stat-item .stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--deep-orange), var(--crimson));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--deep-orange);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-item .stat-label {
    color: var(--dark-gray);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quality-certifications h5 {
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cert-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.cert-badge {
    background: var(--white);
    border: 2px solid var(--gold);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--navy);
    transition: all 0.3s ease;
}

.cert-badge:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}

.cert-badge i {
    color: var(--deep-orange);
    font-size: 1.2rem;
}

/* Contact CTA Section */
.contact-cta {
    background: var(--light-gray);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--navy);
}

.cta-description {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.cta-buttons {
    margin-bottom: 3rem;
}

/* Buttons */
.btn-primary-cta {
    background: var(--deep-orange);
    border: 2px solid var(--deep-orange);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-cta:hover {
    background: var(--crimson);
    border-color: var(--crimson);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
}

.btn-outline-primary {
    border: 2px solid var(--deep-orange);
    color: var(--deep-orange);
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-left: 1rem;
}

.btn-outline-primary:hover {
    background: var(--deep-orange);
    color: var(--white);
    transform: translateY(-2px);
}

/* CTA Guarantee */
.cta-guarantee {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.guarantee-badge {
    background: var(--gold);
    color: var(--navy);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.guarantee-badge i {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-logo i {
    color: var(--deep-orange);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.contact-info .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-info .contact-item i {
    margin-right: 1rem;
    font-size: 1.1rem;
}

.copyright,
.tagline {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Floating Elements */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 2px 20px rgba(0, 0, 0, 0.1);
}

 .award-card {
            background: var(--white);
            border-radius: 20px;
            padding: 2rem 1.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
        }

        .award-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .award-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--gold), var(--orange));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--navy);
            font-size: 1.8rem;
            margin: 0 auto 1.5rem;
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
        }

        .award-card h5 {
            color: var(--navy);
            font-weight: 700;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .award-card p {
            color: var(--dark-gray);
            margin: 0;
            font-size: 0.9rem;
        }

        /* Initial state for floating buttons */
        .whatsapp-float,
        .sticky-contact {
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
/* Navigation */
.navbar {
     background: #FBF4EA !important;
            backdrop-filter: blur(20px);
            transition: all 0.3s ease;
            /*padding: 1rem 0;*/
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            z-index: 1030; /* Ensure navbar stays on top */
}

.whatsapp-btn:hover {
    background: #128c7e;
    color: var(--white);
    transform: scale(1.1);
}

.sticky-contact {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
}

.sticky-contact-btn {
    background: var(--deep-orange);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(255, 87, 34, 0.4);
    transition: all 0.3s ease;
}

.sticky-contact-btn:hover {
    background: var(--crimson);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(220, 20, 60, 0.4);
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-padding {
        padding: 80px 0;
    }
    
    .differentiator-card,
    .advantage-card,
    .success-metric-card,
    .testimonial-card {
        margin-bottom: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .advantage-card.featured {
        transform: none;
    }
    
    .advantage-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .metric-number {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .quality-step {
        flex-direction: column;
        text-align: center;
    }
    
    .quality-step::after {
        display: none;
    }
    
    .step-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .cert-badges {
        justify-content: center;
    }
    
    .whatsapp-float,
    .sticky-contact {
        bottom: 20px;
    }
    
    .whatsapp-float {
        right: 20px;
    }
    
    .sticky-contact {
        left: 20px;
    }
    
    .sticky-contact-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .cta-buttons .btn {
        display: block;
        margin-bottom: 1rem;
        width: 100%;
    }
    
    .metric-number {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .diff-icon,
    .advantage-icon,
    .metric-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }
}
  .logo-h{
            height: 90px;
        }

        /* Add to the beginning of every CSS file */
html, body {
    width: 100%;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

/* Add to all sections */
.section-name {
    width: 100%;
    overflow: hidden;
}

/* Add to all text elements */
h1, h2, h3, h4, h5, h6, p, span, div {
    word-break: break-word;
}

/* Add to all flex containers */
.flex-container {
    flex-wrap: wrap;
}

/* Add to all icons and fixed elements */
.icon, .fixed-element {
    flex-shrink: 0;
}
.navbar-toggler{
            background-color: #ffc107 !important;
        }