  <style>
                .hero-banner {
                    position: relative;
                    width: 100%;
                    height: 700px;
                    overflow: hidden;
                }
                .hero-banner-bg {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    position: absolute;
                    top: 0;
                    left: 0;
                }
                .hero-overlay {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background: linear-gradient(135deg, rgba(120, 25, 33, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
                    z-index: 1;
                }
                .hero-content {
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    z-index: 10;
                    text-align: center;
                    width: 90%;
                    max-width: 900px;
                }
                .hero-content h1 {
                    font-size: 56px;
                    font-weight: 700;
                    color: #fff;
                    margin-bottom: 20px;
                    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
                }
                .hero-content p {
                    font-size: 22px;
                    color: #fff;
                    margin-bottom: 30px;
                    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
                }
                .hero-content .tagline {
                    font-size: 18px;
                    color: #ffd700;
                    font-weight: 500;
                    letter-spacing: 2px;
                    margin-bottom: 15px;
                    text-transform: uppercase;
                }
                .hero-btn {
                    display: inline-block;
                    padding: 16px 40px;
                    background: #781921;
                    color: #fff;
                    font-size: 16px;
                    font-weight: 600;
                    text-transform: uppercase;
                    letter-spacing: 1px;
                    border-radius: 50px;
                    text-decoration: none;
                    transition: all 0.3s ease;
                    border: 2px solid #781921;
                    margin: 5px;
                }
                .hero-btn:hover {
                    background: transparent;
                    color: #fff;
                    border-color: #fff;
                }
                .hero-btn-outline {
                    background: transparent;
                    border: 2px solid #fff;
                }
                .hero-btn-outline:hover {
                    background: #fff;
                    color: #781921;
                }
                @media (max-width: 991px) {
                    .hero-banner { height: 600px; }
                    .hero-content h1 { font-size: 42px; }
                    .hero-content p { font-size: 18px; }
                }
                @media (max-width: 767px) {
                    .hero-banner { height: 500px; }
                    .hero-content h1 { font-size: 28px; }
                    .hero-content p { font-size: 16px; }
                    .hero-content .tagline { font-size: 14px; }
                    .hero-btn { padding: 12px 25px; font-size: 14px; }
                }

                /* Trust Leaders Section Styles */
                .trust-leaders-section {
                    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
                    padding: 100px 0;
                }
                .leader-card {
                    background: #fff;
                    border-radius: 15px;
                    overflow: hidden;
                    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
                    transition: all 0.4s ease;
                    margin-bottom: 30px;
                }
                .leader-card:hover {
                    transform: translateY(-10px);
                    box-shadow: 0 20px 50px rgba(120, 25, 33, 0.2);
                }
                .leader-img {
                    width: 100%;
                    height: 280px;
                    object-fit: cover;
                    object-position: top;
                }
                .leader-info {
                    padding: 25px;
                    text-align: center;
                    background: linear-gradient(135deg, #781921 0%, #9e2a33 100%);
                }
                .leader-info h4 {
                    color: #fff;
                    font-size: 20px;
                    font-weight: 600;
                    margin-bottom: 8px;
                }
                .leader-info p {
                    color: rgba(255,255,255,0.85);
                    font-size: 14px;
                    margin: 0;
                }

                /* What We Do Section */
                .services-section {
                    padding: 100px 0;
                    background: #fff;
                }
                .service-card {
                    background: #fff;
                    border-radius: 15px;
                    padding: 40px 30px;
                    text-align: center;
                    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
                    transition: all 0.3s ease;
                    height: 100%;
                    border: 1px solid #eee;
                }
                .service-card:hover {
                    transform: translateY(-8px);
                    box-shadow: 0 15px 40px rgba(120, 25, 33, 0.15);
                    border-color: #781921;
                }
                .service-icon {
                    width: 80px;
                    height: 80px;
                    background: linear-gradient(135deg, #781921 0%, #9e2a33 100%);
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    margin: 0 auto 25px;
                }
                .service-icon i {
                    font-size: 32px;
                    color: #fff;
                }
                .service-card h4 {
                    font-size: 22px;
                    font-weight: 600;
                    color: #1a1a1a;
                    margin-bottom: 15px;
                }
                .service-card p {
                    color: #666;
                    font-size: 15px;
                    line-height: 1.7;
                }

                /* Welcome Section */
                .welcome-section {
                    padding: 100px 0;
                    background: #fff;
                }
                .welcome-img {
                    border-radius: 20px;
                    overflow: hidden;
                    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
                }
                .welcome-img img {
                    width: 100%;
                    height: auto;
                }
                .welcome-content h2 {
                    font-size: 42px;
                    font-weight: 700;
                    color: #1a1a1a;
                    margin-bottom: 25px;
                }
                .welcome-content .highlight {
                    color: #781921;
                }
                .welcome-content p {
                    color: #555;
                    font-size: 17px;
                    line-height: 1.8;
                    margin-bottom: 20px;
                }
                .vision-mission-box {
                    background: linear-gradient(135deg, #781921 0%, #9e2a33 100%);
                    border-radius: 15px;
                    padding: 30px;
                    margin-top: 30px;
                }
                .vision-mission-box h5 {
                    color: #ffd700;
                    font-size: 18px;
                    font-weight: 600;
                    margin-bottom: 10px;
                }
                .vision-mission-box p {
                    color: #fff;
                    font-size: 15px;
                    margin: 0;
                }
    
        /* Revolution Slider Base Styles */
        .slider-area-wrapper {
            position: relative;
            width: 100%;
            overflow: hidden;
        }
        
        .rev_slider_wrapper {
            position: relative;
            width: 100%;
        }
        
        .rev_slider {
            position: relative;
            overflow: hidden;
        }
        
        .rev_slider ul {
            margin: 0;
            padding: 0;
            list-style: none;
        }
        
        .rev_slider li {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }
        
        .rev-slidebg {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
        }
        
        /* Slider Content Styles */
        .slide-heading {
            color: #ffffff;
            font-family: 'Poppins', sans-serif;
            text-transform: capitalize;
            letter-spacing: 1px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .slide-txt {
            color: #ffffff;
            font-family: 'Poppins', sans-serif;
            line-height: 1.8;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }
        
        .slide-btn {
            display: inline-block;
            padding: 15px 35px;
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            color: #ffffff;
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
        }
        
        .slide-btn:hover {
            background: linear-gradient(135deg, #f7931e, #ff6b35);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
            color: #ffffff;
        }
        
        .slide-btn-secondary {
            background: transparent;
            border: 2px solid #ffffff;
            box-shadow: none;
        }
        
        .slide-btn-secondary:hover {
            background: #ffffff;
            color: #333333;
        }
        
        /* Timer Bar */
        .tp-bannertimer {
            height: 5px;
            background: rgba(255, 107, 53, 0.8);
            position: absolute;
            z-index: 100;
            bottom: 0;
        }
        
        .tp-bannertimer.tp-bottom {
            bottom: 0;
            top: auto;
        }
        
        /* Navigation Arrows */
        .tp-leftarrow, .tp-rightarrow {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .tp-leftarrow:hover, .tp-rightarrow:hover {
            background: rgba(255, 107, 53, 0.9);
        }
        
        /* Bullets */
        .tp-bullets {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 100;
        }
        
        .tp-bullet {
            width: 12px;
            height: 12px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .tp-bullet.selected, .tp-bullet:hover {
            background: #ff6b35;
            transform: scale(1.2);
        }
        
        /* Overlay */
        .slider-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
            z-index: 1;
        }
        
        /* Responsive Styles */
        @media (max-width: 1199px) {
            .slide-heading {
                font-size: 50px !important;
                line-height: 60px !important;
            }
        }
        
        @media (max-width: 991px) {
            .slide-heading {
                font-size: 40px !important;
                line-height: 50px !important;
            }
            .slide-txt {
                font-size: 16px !important;
            }
        }
        
        @media (max-width: 767px) {
            .slide-heading {
                font-size: 28px !important;
                line-height: 38px !important;
            }
            .slide-txt {
                font-size: 14px !important;
            }
            .slide-btn {
                padding: 12px 25px;
                font-size: 14px;
            }
        }
        
        /* Animation Classes */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .animate-fadeInUp {
            animation: fadeInUp 0.8s ease forwards;
        }
        
        .animate-fadeInLeft {
            animation: fadeInLeft 0.8s ease forwards;
        }
        
        .animate-fadeInRight {
            animation: fadeInRight 0.8s ease forwards;
        }
    </style>