* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease-out;
}

.fade-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease-out;
}

.fade-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s ease-out;
}

.scale-in.animate {
    opacity: 1;
    transform: scale(1);
}

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.float {
    animation: float 3s ease-in-out infinite;
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Hero Section */
/* .hero {
    background: linear-gradient(135deg, #F7F7F7 0%, #fff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
} */


.hero {
    background: linear-gradient(135deg, #F7F7F7 0%, #ffb2b2 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}



.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23DA0D20" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23DA0D20" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

/* .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
} */

.hero-content {
    display: block;
    align-items: center;
    position: relative;
    text-align: center;
    padding-top: 50px;
}

/* .hero-text h1 {
    font-size: 39px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.2;
} */

.hero-text h1 {
    font-size: 55px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.4;
    font-family: inherit;
}

.hero-text h1 .highlight {
    color: #DA0D20;
    position: relative;
}

.hero-text h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #DA0D20, transparent);
    animation: underline-expand 2s ease-out;
}

@keyframes underline-expand {
    0% { width: 0; }
    100% { width: 100%; }
}

.hero-text h2 {
    font-size: 27px;
    color: #666;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 30px;
}

.hero-text p {
    font-size: 23px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-btn {
    background: linear-gradient(135deg, #DA0D20, #b50a1a);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
   font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(218, 13, 32, 0.3);
}

/* Animated SVG Background */
.hero-illustration {
    position: relative;
}

.animated-office-svg {
    width: 100%;
    height: 400px;
    opacity: 0.1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Lead Form */
.lead-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e5e5;
    position: relative;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.lead-form.animate {
    transform: translateY(0);
}

.lead-form::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    /* background: linear-gradient(45deg, #DA0D20, transparent, #DA0D20); */
    border-radius: 17px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lead-form:hover::before {
    opacity: 1;
}

.lead-form h3 {
    font-size: 1.8rem;
    color: #000000;
    margin-bottom: 10px;
    text-align: center;
}

.lead-form p {
    color: #666;
    text-align: center;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #000000;
    font-weight: 600;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #DA0D20;
    box-shadow: 0 0 0 3px rgba(218, 13, 32, 0.1);
    transform: translateY(-2px);
}

.form-submit {
    width: 100%;
    background: linear-gradient(135deg, #DA0D20, #b50a1a);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(218, 13, 32, 0.3);
}

/* Why Choose Section */
.why-choose {
    background: #F7F7F7;
    padding: 80px 0;
    position: relative;
}

.section-title {
    font-size: 35px;
    color: #000000;
    text-align: center;
    margin-bottom: 60px;
    font-weight: bold;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #DA0D20, #b50a1a);
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(218, 13, 32, 0.05), transparent);
    transition: left 0.6s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-card .check-icon {
    color: #DA0D20;
    font-size: 2rem;
    margin-bottom: 15px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.feature-card:hover .check-icon {
    transform: scale(1.2) rotate(360deg);
}

.feature-card h3 {
    /* font-size: 1.3rem; */
    color: #000000;
    margin-bottom: 15px;
    font-weight: bold;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Services Section */
.services {
    background: white;
    padding: 80px 0;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-item {
    background: #F7F7F7;
    padding: 30px 25px;
    border-radius: 12px;
    transition: all 0.4s ease;
    border-left: 4px solid transparent;
    position: relative;
    text-align: center;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #DA0D20, #b50a1a);
    border-radius: 2px;
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.service-item:hover::before {
    transform: scaleY(1);
}

.service-item:hover {
    transform: translateY(-10px);
    background: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-item h4 {
    color: #000000;
    /* font-size: 1.2rem; */
    font-weight: bold;
    margin-bottom: 15px;
    position: relative;
}

.service-item p {
    color: #666;
    line-height: 1.6;
}

.service-icon {
    color: #DA0D20;
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.2) rotate(10deg);
    color: #b50a1a;
}

/* Solutions Section */
.solutions {
    background: #F7F7F7;
    padding: 80px 0;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.solution-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.solution-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(218, 13, 32, 0.05), transparent);
    transition: right 0.8s ease;
}

.solution-card:hover::after {
    right: 100%;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.solution-card .check-icon {
    color: #DA0D20;
    font-size: 1.5rem;
    margin-top: 5px;
    transition: all 0.3s ease;
}

.solution-card:hover .check-icon {
    transform: scale(1.3);
}

.solution-card h4 {
    color: #000000;
    /* font-size: 1.3rem; */
    font-weight: bold;
    margin-bottom: 10px;
}

/* Testimonials Section */
.testimonials {
    background: white;
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #F7F7F7;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 5rem;
    color: #DA0D20;
    opacity: 0.3;
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stars {
    color: #ffc107;
    font-size: 24px;
    margin-bottom: 15px;
}

.testimonial-card blockquote {
    color: #666;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    color: #000000;
    font-weight: bold;
    font-size: 18px;
}

.testimonial-company {
    color: #666;
    font-size: 17px;
    padding-top: 15px;
}

/* Final CTA Section with Background Image */
.final-cta {
    background: linear-gradient(135deg, rgba(218, 13, 32, 0.9), rgba(181, 10, 26, 0.9)), 
                url('/lovable-uploads/27d72725-710d-42b4-a6fd-64365719cb0c.png');
    /* background: linear-gradient(135deg, rgb(218 13 32), rgb(218 13 32)), url(/lovable-uploads/27d72725-710d-42b4-a6fd-64365719cb0c.png); */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"/><circle cx="80" cy="80" r="2" fill="white" opacity="0.1"/><circle cx="40" cy="60" r="1" fill="white" opacity="0.1"/></svg>');
    animation: float 6s ease-in-out infinite;
}

.final-cta .container {
    position: relative;
    z-index: 2;
}

.final-cta h2 {
    font-size: 35px;
    margin-bottom: 25px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 35px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.final-cta .cta-btn {
    background: rgba(255, 255, 255, 0.95);
    color: #DA0D20;
    padding: 18px 35px;
    /* font-size: 1.2rem; */
    font-weight: 700;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.final-cta .cta-btn:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* Footer */
.footer {
    background: #000000;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #DA0D20;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    color: #ccc;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-section ul li:hover {
    color: #DA0D20;
    cursor: pointer;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text h2 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid,
    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .solution-card {
        flex-direction: column;
        text-align: center;
    }
}

.text-center {
    text-align: center;
}

/* Loading Animation */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Parallax Effect */
.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-attachment: fixed;
    z-index: -1;
}

/* Animated Icons */
.animated-icon {
    display: inline-block;
    transition: all 0.3s ease;
}

.animated-icon:hover {
    transform: scale(1.2) rotate(10deg);
}

.service-icon svg
{
   width: 35px;
   height: 35px;
}

.check-icon svg
{
    width: 30px;
    height: 30px;
}

a:hover
{
    color: #ffffff;
}


.datetable .panel-default > .panel-heading {
    background: none;
    padding: 13px 15px;
}

.datetable .glyphicon {
    font-size: 15px;
    margin-right: 20px;
    color: #dc1414;
}

.datetable .panel-group .panel {
    box-shadow: none;
    border-radius: 0;
    border-bottom: none;
}

.infoxFaqsSection
{
    padding: 70px 0;
}

.hilodiv { padding-top: 60px; }
        .hilodiv img { max-width: 100%; }
        .datetable .panel-default > .panel-heading { background: none; padding: 18px 15px; }
        .datetable .panel-title {font-weight: 400;color: #000; font-size: 18px;}
        .datetable .glyphicon { font-size: 15px; margin-right: 20px; color: #dc1414; }
        .datetable .panel-group .panel {box-shadow: none; border-radius: 0; border-bottom: none;}
        /* .datetable .panel-group .panel {box-shadow: none; border-radius: 0; margin-bottom: 15px;box-shadow: rgba(149, 157, 165, 0.2) 0px 2px 16px; } */

        .datetable .panel-group .panel:last-child { border-bottom: 1px solid #eee; }
        .datetable .panel-group .panel + .panel { margin-top: 0; }
        .datetable .panel-group .panel p { line-height: 27px; margin-bottom: 0; color: #4e4e4e; }


  .panel-title a:hover
        {
            color: #000000;
        }


/* Styling Complinace Badges */     

.compliance-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
    align-items: center;
    justify-content: center;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(247, 247, 247, 0.9);
    border: 2px solid #e5e5e5;
    border-radius: 25px;
    padding: 10px 16px;
    font-size: 11px;
    font-weight: 600;
    color: #000000;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.badge-item:hover {
    background: white;
    border-color: #DA0D20;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(218, 13, 32, 0.2);
}

.badge-item svg
{
    color: #DA0D20;
}

.badge-item i {
    color: #DA0D20;
    width: 18px;
    height: 18px;
}

.badge-item span {
    white-space: nowrap;
}

/* Responsive adjustments for compliance badges */
@media (max-width: 768px) {
    .compliance-badges {
        justify-content: center;
        margin: 25px 0;
    }
    
    .badge-item {
        font-size: 0.85rem;
        padding: 8px 14px;
    }
    
    .badge-item i {
        width: 16px;
        height: 16px;
    }

    .cta-btn
    {
        font-size: 16px;
    }

    .cta-btn2
    {
        font-size: 16px !important;
    }

    .final-cta .cta-btn 
    {
        padding: 18px 20px;
        font-size: 16px;
    }

    .final-cta .container
    {
        z-index: auto;
    }
}



.back-office-banner-new
{
    padding: 40px 0;
}

.back-office-banner-new img
{
    border-radius: 10px;
    border: 1px solid #d70c1f;
}

.blackHeroBtn
{
  
    margin-left: 5px;
}

.cta-btn2 {
    background: linear-gradient(135deg, #1a0003, #3b0008);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.contactFormHubsNw
{
  padding: 80px 0;
}

.contactFormHubsNw .mtPercN {
    margin-top: 35%;
}

.cut-highlight {
    background: #dc2626;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    display: inline-block;
    animation: pulse-gentle 2s ease-in-out infinite;
}

@keyframes pulse-gentle {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }







/* .badge-item.experience-animated {
    animation: pulse-glow 3s ease-in-out infinite;
}

.badge-item.experience-animated::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #DA0D20, transparent, #DA0D20);
    border-radius: 27px;
    z-index: -1;
    opacity: 0;
    animation: border-glow 3s ease-in-out infinite;
}

.badge-item.experience-animated::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(218, 13, 32, 0.1), transparent);
    transition: left 0.8s;
}

.badge-item.experience-animated:hover::after {
    left: 100%;
}

.experience-text {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #DA0D20, #b50a1a);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(218, 13, 32, 0.3);
    z-index: 10;
}

.experience-text::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #DA0D20;
}

.badge-item.experience-animated:hover .experience-text {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

 */
