/* Custom Fonts */



/* ========================================
   STICKY HEADER FOR EXTERNAL LANDING PAGES
   ======================================== */


   header {
    background-color: #010035;
    padding: 0px;
    padding-bottom: 10px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.cta-section p{font-size: 24px;}
header {
    padding-top: 10px;
}

header .container {
    padding: 10px;
    padding-bottom: 0px;
}

header .navbar {
    padding: 0;
}


header .navbar-brand:hover {
    color: #ffffff;
    opacity: 0.9;
}

header .navbar-nav {
    margin-right: 25px;
}

header .navbar a.nav-link {
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
    padding: 8px 15px;
    transition: opacity 0.3s ease;
}

header .navbar a.nav-link:hover {
    opacity: 0.8;
}

header .navbar-toggler {
    border-color: rgba(255,255,255,0.3);
}

header .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

header .call_button {
    font-size: 13px;
    background-color: #d0271d;
    color: #fff;
    border: 0px;
    padding: 10px 20px;
    white-space: nowrap;
}



header .navbar.navbar-expand-lg .call_button {
    border: 0px;
}


.landing-sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 15px 0;


    background-color: #010035;
    padding: 0px;
    padding-bottom: 10px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.landing-sticky-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
}

.landing-sticky-header .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Brand */
.landing-sticky-header .header-brand {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

/* Header Navigation */
.landing-sticky-header .header-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.landing-sticky-header .header-nav .nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.landing-sticky-header .header-nav .nav-link:hover {
    color: #d0271d;
    background: rgba(208, 39, 29, 0.05);
}

/* Header Phone */
.landing-sticky-header .header-phone {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 16px;
    border: 2px solid #d0271d;
    background-color: #a71f16;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.landing-sticky-header .header-phone:hover {
    background: #a71f16;
    color: white;
}

.landing-sticky-header .header-phone i {
    font-size: 14px;
}

/* Hamburger Menu */
.landing-sticky-header .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.landing-sticky-header .hamburger span {
    width: 100%;
    height: 3px;
    background: #010035;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.landing-sticky-header .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.landing-sticky-header .hamburger.active span:nth-child(2) {
    opacity: 0;
}

.landing-sticky-header .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.landing-sticky-header .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 999;
    padding-top: 80px;
    overflow-y: auto;
}

.landing-sticky-header .mobile-menu.active {
    right: 0;
}

.landing-sticky-header .mobile-menu nav {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.landing-sticky-header .mobile-nav-link {
    color: #010035;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 15px 20px;
    border-bottom: 1px solid #e4e4e4;
    transition: all 0.3s ease;
}

.landing-sticky-header .mobile-nav-link:hover {
    background: rgba(208, 39, 29, 0.05);
    color: #d0271d;
    padding-left: 25px;
}

.landing-sticky-header .mobile-nav-link:last-child {
    border-bottom: none;
}

/* Responsive adjustments for sticky header */
@media (max-width: 768px) {
    .landing-sticky-header {
        padding: 12px 0;
    }
    
    .landing-sticky-header .header-brand {
        font-size: 18px;
    }
}

/* ========================================
   END STICKY HEADER STYLES
   ======================================== */

.navbar.navbar-expand-lg .navbar-nav .nav-link{
    padding: .5rem 1rem !important;
}

/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Taub_Sans", sans-serif;
    font-size: 18px;
    color: #333;
    line-height:1.5;
}



/* Typography */
h1 {
    font-family: "Taub_Sans", sans-serif;
    color: #ffffff;
    text-align: center;
    font-size: 60px;
}

h2 {
    font-family: "Taub_Sans", sans-serif;
    color: #010035;
    font-weight: 600;
    text-align: center;
    padding-bottom: 30px;
    padding-top: 100px;
    font-size: 48px;
}

h3 {
    font-size: 22px;
    color: #010035;
    font-weight: bolder;
    padding-top: 10px;
    padding-bottom: 10px;
}

h4 {
    font-size: 16px;
    color: #010035;
    font-weight: bold;
    padding-top: 10px;
    padding-bottom: 10px;
}

strong, li span {
    color: #010035;
}

/* Utility Classes */
.center {
    text-align: center;
}

.left, h1.left {
    text-align: left;
}

.right {
    text-align: right;
}

.font18 {
    font-size: 18px;
}

.p12 {
    font-size: 16px;
    margin-bottom: 1rem;
    color: #555;
}

.padding0 {
    padding: 0px;
}

.responsive {
    max-width: 100%;
    width: 100%;
    height: auto;
}



.mb-5 {
    margin-bottom: 3rem;
}

.block_content {
    position: relative;
}

li {
    padding-top: 5px;
    padding-bottom: 5px;
}

/* Buttons */
.btn {
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    border-radius: 0;
}

.btn-primary {
    background: #007bff;
    color: white;
}

.btn-primary:hover {
    background: #0056b3;
}

.btn-light {
    background: white;
    color: #333;
}

.btn-light:hover {
    background: #f8f9fa;
}

.call_button {
    font-size: 13px;
    background-color: #d0271d;
    color: #fff;
    border: 0px;
}

.call_button_white {
    font-size: 13px;
    background-color: #fff;
    color: #d0271d;
    border: 1px solid #d0271d;
}

/* Navigation menu styles */
.landing-nav {
    position: sticky;
    top: 0;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 15px 0;
}

.landing-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.landing-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.landing-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.landing-nav a:hover {
    color: #007bff;
}

/* Add ID to sections for anchor navigation */
section[id] {
    scroll-margin-top: 80px;
}

/* Hero Component */
.hero {
    background-size: cover;
    background-position: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

/* Features Component */
.features {
    background: #f8f9fa;
}

.features h2 {
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.feature-item .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    margin: 1rem 0;
}

/* Testimonials Component */
.testimonials {
    background: white;
}

.testimonials h2 {
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-item {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.testimonial-item .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    object-fit: cover;
}

.testimonial-item .comment {
    font-style: italic;
    margin-bottom: 1rem;
    color: #666;
}

.testimonial-item .author {
    margin-top: 1rem;
}

.testimonial-item .author strong {
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-item .author span {
    color: #666;
}

/* CTA Component */
.cta {
    text-align: center;
    color: white;
    background: #007bff;
}

/* Header Styles */
header {
    background-color: #010035;
    padding: 0px;
    padding-bottom: 10px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#header {
    padding-top: 10px;
}
header .container {
    padding: 10px;
    padding-bottom: 0px;
}

header .navbar {
    padding: 0;
}

header .navbar-brand {
    color: #ffffff;
    font-weight: bold;
    font-size: 16px;
}

header .navbar-brand:hover {
    color: #ffffff;
    opacity: 0.9;
}

header .navbar-nav {
    margin-right: 25px;
}

header .navbar a.nav-link {
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
    padding: 8px 15px;
    transition: opacity 0.3s ease;
}

header .navbar a.nav-link:hover {
    opacity: 0.8;
}

header .navbar-toggler {
    border-color: rgba(255,255,255,0.3);
}

header .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

header .call_button {
    font-size: 13px;
    background-color: #d0271d;
    color: #fff;
    border: 0px;
    padding: 10px 20px;
    white-space: nowrap;
}

header .call_button:hover {
    background-color: #a71f16;
    color: #fff;
}

header .navbar.navbar-expand-lg .call_button {
    border: 0px;
}

/* Remove the old landing-nav styles since we're using header now */
.landing-nav {
    display: none;
}

/* CTA Component */
.cta-section {
    padding: 60px 0;
    transition: background-color 0.3s ease;
}

.cta-section .center {
    text-align: center;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.cta-text {
    margin-bottom: 2rem;
    color: #010035;
}

h1.cta-text  {
    font-weight: bold;
    color: #010035;
    margin-bottom: 1rem;
}

h2.cta-text  {
    font-weight: 600;
    color: #010035;
    margin-bottom: 1rem;
}

h3.cta-text  {
    font-weight: 600;
    color: #010035;
    margin-bottom: 1rem;
}

h4.cta-text  {
    font-weight: 600;
    color: #010035;
    margin-bottom: 1rem;
}

h5.cta-text {
    font-weight: 600;
    color: #010035;
    margin-bottom: 1rem;
}

h6.cta-text {
    font-weight: 600;
    color: #010035;
    margin-bottom: 1rem;
}

p.cta-text  {
    font-size: 24px;
    color: #010035;
    margin-bottom: 1rem;
}

.cta-button-wrapper {
    margin-top: 2rem;
}

.cta-button {
    font-size: 13px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;

}

/* Button styles */
.cta-section .btn-primary {
    background-color: #007bff;
    color: #fff;
    border: none;
}

.cta-section .btn-primary:hover {
    background-color: #0056b3;
    color: #fff;
}

.cta-section .btn-secondary {
    background-color: #6c757d;
    color: #fff;
    border: none;
}

.cta-section .btn-secondary:hover {
    background-color: #545b62;
    color: #fff;
}

.cta-section .btn-danger {
    background-color: #d0271d;
    color: #fff;
    border: none;
}

.cta-section .btn-danger:hover {
    background-color: #a71f16;
    color: #fff;
}

.cta-section .btn-light {
    background-color: #fff;
    color: #d0271d;
    border: 2px solid #d0271d;
}

.cta-section .btn-light:hover {
    background-color: #d0271d;
    color: #fff;
}

/* Responsive styles for CTA */
@media (max-width: 768px) {
    .cta-section {
        padding: 40px 0;
    }

    .cta-button {
        padding: 12px 30px;
    }

    .cta-button-wrapper {
        margin-top: 1.5rem;
    }
}

@media (max-width: 576px) {
    .cta-section {
        padding: 30px 0;
    }

}


/* Content Block Component */
.content-block-section .block_content {
    padding: 60px 0;
}

.content-block-section .center {
    text-align: center;
    margin: 0;
}

/* Stats Component with Video Background */
.stats-section {
    position: relative;
    min-height: 25rem;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #010035;
}

.stats-section video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translateX(-50%) translateY(-50%);
}

.stats-section .overlay.mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #010035;
    z-index: 1;
    opacity: 0.85;
}

.stats-section .container {
    position: relative;
    z-index: 2;
}

.stats-section h2 {
    color: white;
}

.stats-section h2{  
    padding-top: 70px;
    padding-bottom: 50px;
}
.stats-section .stat-item h3 {
    color: white;
}
.stats-section h3{
    font-size: 32px;
}
.stats-section .stat-item p {
    color: white;
    margin: 0;
}

.stats-section .stat-separator {
    position: relative;
}

.stats-section .stat-separator::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.3);
}

/* Tooltip styling */
.stats-section .sup.info {
    display: inline-block;
    width: 18px;
    height: 18px;
    text-align: center;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    margin-left: 5px;
    cursor: help;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.stats-section .sup.info:hover {
    background-color:#be9a90;
}

.sup {
    vertical-align: super;
}

.info {
    color: #fff;
    background-color: #be9a90;
    font-size: 12px;
    font-weight: bold;
    padding: 0px;
    border-radius: 50%;
    padding-left: 6px;
    padding-right: 6px;
    margin-left: 5px;
}

/* Video Component */
.video-section {
    background-color: #d0271d;
    padding: 60px 0;
    color: #fff;
}

.video-section h2 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    text-align: center;
    padding-top: 0;
    padding-bottom: 10px;
    font-size: 36px;
}

.video-section h3 {
    font-size: ;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fff;
    text-align: center;
    padding-top: 0;
    padding-bottom: 10px;
}

.video-text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-text-content.text-left {
    text-align: left;
}


.video-description {
    color: #fff;
}

.video-description p {
    margin-bottom: 1rem;
    color: #fff;
}

.video-thumbnail-container {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.video-thumbnail {
    width: 100%;
    height: auto;
    display: block;
}


.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #d0271d;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-play-overlay:hover {
    background: rgba(0, 0, 0, 0.8);
    width: 90px;
    height: 90px;
}

.video-play-overlay i {
    font-size: 50px;
    color: #fff;
}

/* Video Modal */
.video-modal .modal-content {
    background: #000;
    border-radius: 8px;
}

.video-modal .modal-header {
    border: none;
    padding: 10px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
}

.video-modal .btn-close {
    background: none;
    border: none;
    font-size: 40px;
    color: #fff;
    opacity: 1;
    padding: 0 15px;
    cursor: pointer;
    line-height: 1;
}

.video-modal .btn-close:hover {
    opacity: 0.8;
}

.video-modal .modal-body {
    padding: 0;
}

.video-container {
    width: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container iframe,
.video-container video {
    max-width: 100%;
    max-height: 100%;
}

.video-player {
    background: #000;
}

/* Responsive styles for video */
@media (max-width: 992px) {
    .video-section .row.d-flex {
        flex-direction: column-reverse !important;
    }

    .video-text-content {
        text-align: center !important;
        padding: 20px 15px;
    }

    .video-section h2 {
        text-align: center;
    }

    .video-section h3 {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .video-section {
        padding: 40px 0;
    }

    .video-section h2 {
        font-size: 2rem;
    }

    .video-section h3 {
        font-size: 1.25rem;
    }

    .video-description {
        font-size: 16px;
    }

    .video-play-overlay {
        width: 60px;
        height: 60px;
    }

    .video-play-overlay:hover {
        width: 70px;
        height: 70px;
    }

    .video-play-overlay i {
        font-size: 35px;
    }

    .video-container {
        height: 300px !important;
    }
}

/* Services Component */
.services-section {
    padding: 60px 0;
}

.services-section h2 {
    font-size: 2.7rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    padding-bottom: 10px;
}

.services-section .center {
    text-align: center;
}

.services-section .font18 {
    font-size: 18px;
    margin-bottom: 2rem;
}


.services-section .pt-5 {
    padding-top: 3rem;
}



.services-section .padding0 {
    padding: 0;
}

.services-section .padding0-right {
    padding-right: 0;
}

.services-section .responsive {
    width: 100%;
    height: auto;
    display: block;
}

.services-section .col_intern {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-section .col_intern_right {
    border-radius: 0 8px 8px 0;
}

.services-section .col_intern_left {
    border-radius: 8px 0 0 8px;
}

/* Service Description Styles */
.services-section .service-description {
    color: #555;
}

.services-section .service-description h3 {

    margin-bottom: 1.5rem;
    color: #010035;
    text-align: left;
    padding-top: 0;
}

.services-section .service-description h4 {
    color: #010035;
    text-align: left;
}


.services-section .service-description ul {
    list-style: disc;
    list-style-type: disc;
    margin: 1rem 0;
}


.services-section .service-description strong {
    font-weight: bold;
    color: #010035;
}

.services-section .service-description em {
    font-style: italic;
}

.services-section .service-description a {
    color: #007bff;
    text-decoration: underline;
}

.services-section .service-description a:hover {
    color: #0056b3;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .services-section .row.d-flex {
        flex-direction: column-reverse !important;
    }

    .services-section .col-md-6 {
        margin-bottom: 2rem;
    }

    .services-section .col_intern {
        border-radius: 8px !important;
        min-height: auto;
        padding: 2rem 1.5rem;
    }


    .services-section .padding0,
    .services-section .padding0-right {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 40px 0;
    }

    .services-section h2 {
        font-size: 2rem;
    }

    .services-section .font18 {
        font-size: 16px;
    }

    .services-section .pt-5 {
        padding-top: 3rem !important;
    }

    .services-section .col_intern {
        padding: 2rem 1.5rem;
        padding: padding: calc(var(--bs-gutter-x)*0.5);
    }




}

/* Tooltip Bootstrap */
.tooltip-inner {
    background-color: white;
    color: black;
}

.bs-tooltip-bottom .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow::before {
    border-top-color: white;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .stats-section .stat-separator {
        display: none;
    }
    
    .stats-section .stat-item {
        margin-bottom: 2rem;
    }

    .services-section .row.d-flex {
        flex-direction: column-reverse !important;
    }

    .services-section .col-md-6 {
        margin-bottom: 2rem;
    }

    .services-section .col_intern {
        border-radius: 8px !important;
        min-height: auto;
        padding: 2rem 1.5rem;
    }

    .services-section .pl-5,
    .services-section .pr-5 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .services-section .padding0,
    .services-section .padding0-right {
        padding: 0 15px;
    }

    .stats-section .stat-separator::before {
        display: none;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 50px;
    }

    h2 {
        font-size: 2rem;
        padding-top: 50px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .features h2,
    .testimonials h2,
    .cta h2 {
        font-size: 2rem;
    }

    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .centered-text-section,
    .content-block-section .block_content {
        padding: 40px 0;
    }

    .centered-text-content p,
    .content-block-section .center {
        font-size: 16px;
    }

    .landing-nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .landing-nav .container {
        flex-direction: column;
    }

    .stats-section {
        min-height: 600px;
        padding: 60px 0;
    }

    .stats-section h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        padding-top: 40px;
        padding-bottom: 30px;
    }

    .stats-section .stat-item h3 {
        font-size: 2rem;
    }

    .stats-section .stat-item p {
        font-size: 1rem;
    }

    .video-section {
        padding: 40px 0;
    }

    .video-section h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .video-section .font18 {
        font-size: 16px;
    }

    .video-section .p12 {
        font-size: 14px;
    }



    .video-section .play-button {
        width: 60px;
        height: 60px;
    }

    .video-section .play-button svg {
        width: 50px;
        height: 50px;
    }

    .video-modal .video-container {
        padding-bottom: 75%;
    }

    .video-modal .btn_close {
        top: 5px;
        right: 5px;
    }

    .services-section {
        padding: 40px 0;
    }

    .services-section h2 {
        font-size: 2rem;
    }

    .services-section h3 {
        font-size: 1.5rem;
    }

    .services-section h4 {
        font-size: 1.1rem;
    }

    .services-section .font18 {
        font-size: 16px;
    }

    .services-section .p12 {
        font-size: 14px;
    }



    .services-section .pt-5 {
        padding-top: 2rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 36px;
        color: #010035 !important;
    }

    h2 {
        font-size: 1.75rem;
    }

    .services-section h2 {
        font-size: 1.75rem;
    }
}

/* Media Query for mobile devices */
@media (pointer: coarse) and (hover: none) {
    .stats-section {
        height: 80vh;
        min-height: 770px;
    }

    .stats-section .vl {
        border-left: none;
        border-top: 1px solid white;
        height: 1px;
        position: absolute;
        left: 0%;
        margin-left: -3px;
        top: 0;
        width: 100%;
    }
}


/* Insights Component */


.insights-section .row {
    align-items: center;
}

.insights-section h3 {
    font-size: 1.5rem;
    color: #010035;
    font-weight: 600;
    margin-bottom: 0.5rem;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: left;
}

.insights-section h2 {
    font-size: 26px;
    color: #010035;
    font-weight: 600;
    text-align: left;
    padding-top: 10px;
    padding-bottom: 0px;
    margin-bottom: 0;
}

.insights-section .call_button {
    background-color: #d0271d;
    color: #fff;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.insights-section .call_button:hover {
    background-color: #a71f16;
    color: #fff;
}


.insights-section .rounded-0 {
    border-radius: 0 !important;
}

.insights-section .responsive {
    width: 100%;
    height: auto;
    display: block;
}


/* Responsive styles for insights */
@media (max-width: 768px) {
    

    .insights-section .row {
        flex-direction: column !important;
    }

    .insights-section .row.flex-row-reverse {
        flex-direction: column !important;
    }

    .insights-section h3 {
        font-size: 1.25rem;
        text-align: center;
    }

    .insights-section h2 {
        font-size: 1.75rem;
        text-align: center;
    }

    .insights-section p {
        font-size: 16px;
        text-align: center;
    }

    .insights-section .call_button {
        width: 100%;
        text-align: center;
        display: block;
    }



    .insights-section .col-sm:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {
    .insights-section h2 {
        font-size: 1.5rem;
    }

    .insights-section .btn-lg {
        padding: 10px 30px;
        font-size: 14px;
    }
}


/* Two Columns Component */
.two-columns-section {
    padding: 60px 0;
    background-color: #f2f2f2;
}

.two-columns-section .container {
    max-width: 1200px;
}

.two-columns-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    color: #010035;
    margin-bottom: 3rem;
    padding-bottom: 30px;
    padding-top: 0;
}

.two-columns-section .row {
    margin-bottom: 0;
}

.two-columns-section .column-item {
    padding: 20px;
}

.two-columns-section .column-item p {
    font-size: 18px;
    color: #555;
    margin-bottom: 1rem;
}

.two-columns-section .column-item h1 {
    font-size: 38px;
    color: #010035;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.two-columns-section .column-item h2 {
    font-size: 2rem;
    color: #010035;
    padding: 0;
    margin-bottom: 1rem;
}

.two-columns-section .column-item h3 {
    font-size: 1.5rem;
    color: #010035;
}

.two-columns-section .column-item h4 {
    font-size: 1.25rem;
    color: #010035;
}

.two-columns-section .column-item .center {
    text-align: center;
}

.two-columns-section .column-item .h3 {
    font-size: 38px;
    font-weight: bold;
    color: #010035;
    margin-top: 50px;
}

.two-columns-section .column-item ul {
    list-style: disc;
    padding-left: 20px;
}

.two-columns-section .column-item ul li {
    margin-bottom: 0.5rem;
}

/* Special styling for specific content patterns */
.two-columns-section .column-item p.center {
    text-align: center;
}

.two-columns-section .column-item p.h3.center {
    font-size: 38px;
    font-weight: bold;
    text-align: center;
    color: #010035;
    margin-bottom: 0.5rem;
}

/* Responsive styles for two columns */
@media (max-width: 768px) {
    .two-columns-section {
        padding: 40px 0;
    }

    .two-columns-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
        padding-bottom: 20px;
    }

    .two-columns-section .column-item {
        margin-bottom: 2rem;
    }

    .two-columns-section .column-item:last-child {
        margin-bottom: 0;
    }

    .two-columns-section .column-item p {
        font-size: 16px;
    }

    .two-columns-section .column-item h1,
    .two-columns-section .column-item p.h1.center {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .two-columns-section h2 {
        font-size: 1.75rem;
    }

    .two-columns-section .column-item h1,
    .two-columns-section .column-item p.h1.center {
        font-size: 1.75rem;
    }
}


/* Team Component */
.team-section {
    padding: 60px 0;
}

.team-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    color: #010035;
    margin-bottom: 2rem;
    padding-top: 100px;
    padding-bottom: 30px;
}

.team-section .center {
    text-align: center;
}

.team-section .center p {
    font-size: 18px;
    color: #555;
    margin-bottom: 3rem;
}

.team-section .team-card {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.team-section .team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.team-section .team-card img.responsive {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.team-section .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.team-section .card-body h3 {
    font-size: 1.25rem;
    color: #010035;
    font-weight: bold;
    margin-bottom: 0.5rem;
    padding-top: 10px;
    padding-bottom: 10px;
}

.team-section .card-body h4 {
    font-size: 1rem;
    color: #010035;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-top: 10px;
    padding-bottom: 10px;
}

.team-section .card-body p {
    font-size: 16px;
    color: #555;
    margin-bottom: 1.5rem;
    flex: 1;
}

.team-section .call_button_white {
    background-color: #fff;
    color: #d0271d;
    border: 1px solid #d0271d;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.team-section .call_button_white:hover {
    background-color: #d0271d;
    color: #fff;
}

/* Team Modal Styles */
.team-modal .modal-content {
    border-radius: 8px;
}

.team-modal .btn_close {
    position: absolute;
    top: -15px;
    right: 10px;
    z-index: 100;
}

.team-modal .btn_close .btn {
    font-size: 76px;
    font-weight: 300;
    padding: 0px;
    background: none;
    border: none;
    color: #666;
}

.team-modal .btn_close .btn:hover {
    color: #333;
}

.team-modal .modal-body {
    padding: 30px;
}

.team-modal .modal-member-image img {
    width: 100%;
    max-width: 269px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.team-modal .phone,
.team-modal .email,
.team-modal .address,
.team-modal .web {
    padding: 10px 0;
    font-size: 16px;
}

.team-modal .phone {
    background-image: url('../images/bio_icon_call.png');
    background-repeat: no-repeat;
    background-position: left;
    padding-left: 30px;
    padding-bottom: 3px;
    padding-top: 3px;
    margin-top: 20px;
}

.team-modal .email {
    background-image: url('../images/bio_icon_maill.png');
    background-repeat: no-repeat;
    background-position: left;
    padding-left: 30px;
    padding-bottom: 3px;
    padding-top: 3px;
}

.team-modal .address {
    background-image: url('../images/bio_icon_addressl.png');
    background-repeat: no-repeat;
    background-position: left;
    padding-left: 30px;
    padding-bottom: 3px;
    padding-top: 3px;
}

.team-modal .web {
    background-image: url('../images/bio_icon_url.png');
    background-repeat: no-repeat;
    background-position: left;
    padding-left: 30px;
    padding-bottom: 3px;
    padding-top: 3px;
}

.team-modal .phone a,
.team-modal .email a,
.team-modal .address a,
.team-modal .web a {
    color: #010035;
    text-decoration: none;
}

.team-modal .phone a:hover,
.team-modal .email a:hover,
.team-modal .address a:hover,
.team-modal .web a:hover {
    text-decoration: underline;
}

.team-modal h2 {
    font-size: 24px;
    color: #010035;
    text-align: left;
    padding-top: 20px;
    padding-bottom: 10px;
    margin-bottom: 0;
}

.team-modal h3 {
    font-size: 18px;
    color: #010035;
    text-align: left;
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: 600;
}

.team-modal .bio-content p {
    font-size: 15px;
    color: #555;
    margin-bottom: 1rem;
}

.team-modal .modal-footer {
    padding: 20px 30px;
    font-size: 12px;
    color: #666;
}

.team-modal .modal-footer p {
    font-size: 12px;
    margin-bottom: 0.5rem;
}

.team-modal .modal-footer strong {
    font-weight: bold;
    color: #010035;
}

/* Responsive styles for team */
@media (max-width: 992px) {
    .team-section .col-md-4 {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 40px 0;
    }

    .team-section h2 {
        font-size: 2rem;
        padding-top: 50px;
        padding-bottom: 20px;
    }

    .team-section .center p {
        font-size: 16px;
        margin-bottom: 2rem;
    }

    .team-section .card-body h3 {
        font-size: 1.1rem;
    }

    .team-section .card-body h4 {
        font-size: 0.95rem;
    }

    .team-section .card-body p {
        font-size: 14px;
    }

    .team-modal .modal-body {
        padding: 20px;
    }

    .team-modal .col-md-4,
    .team-modal .col-md-8 {
        margin-bottom: 1.5rem;
    }

    .team-modal h2 {
        font-size: 20px;
    }

    .team-modal h3 {
        font-size: 16px;
    }

    .team-modal .bio-content p {
        font-size: 14px;
    }
}


/* Accordion Component */
.accordion-section {
    padding: 60px 0;
    background-color: #f2f2f2;
}

.accordion-section .container {
    max-width: 1200px;
}

.accordion-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    color: #010035;
    margin-bottom: 3rem;
    padding-top: 100px;
    padding-bottom: 30px;
}

.accordion-section .accordion {
    margin-top: 2rem;
}

.accordion-section .accordion-item {
    margin-bottom: 3px;
    background-color: white;
    border: none;
}

.accordion-section .accordion-button {
    font-size: 24px;
    padding: 20px 30px;
    padding-left: 50px;
    background-color: white;
    color: #010035;
    border: none;
    position: relative;
}

.accordion-section .accordion-button:not(.collapsed) {
    background-color: white;
    color: #010035;
    box-shadow: none;
}

.accordion-section .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-section .accordion-button i {
    font-size: 18px;
    margin-right: 10px;
}

/* Custom accordion icons using ::after */
.accordion-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23010035' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M8 0a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2H9v6a1 1 0 1 1-2 0V9H1a1 1 0 0 1 0-2h6V1a1 1 0 0 1 1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
    filter: invert(25%) sepia(8%) saturate(5215%) hue-rotate(330deg) brightness(97%) contrast(94%);
    transform: scale(1) !important;
    background-position: left;
    position: absolute;
    left: 10px;
    width: 20px;
    height: 20px;
}

.accordion-section .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23010035' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M0 8a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
    filter: invert(25%) sepia(8%) saturate(5215%) hue-rotate(330deg) brightness(97%) contrast(94%);
    transform: scale(1) !important;
}

.accordion-section .accordion-header {
    margin-bottom: 0;
}

.accordion-section .accordion-header h3 {
    margin: 0;
    padding: 0;
}

.accordion-section .accordion-body {
    padding: 30px;
    padding-left: 50px;
    font-size: 18px;
    color: #555;
}

.accordion-section .accordion-body p {
    font-size: 24px;
    margin-bottom: 1rem;
    color: #555;
}

.accordion-section .accordion-body ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 1rem;
}

.accordion-section .accordion-body ul li {
    margin-bottom: 0.5rem;
    font-size: 18px;
}

.accordion-section .accordion-body strong {
    color: #010035;
    font-weight: bold;
}

/* Responsive styles for accordion */
@media (max-width: 768px) {
    .accordion-section {
        padding: 40px 0;
    }

    .accordion-section h2 {
        font-size: 2rem;
        padding-top: 50px;
        padding-bottom: 20px;
        margin-bottom: 2rem;
    }

    .accordion-section .accordion-button {
        font-size: 18px;
        padding: 15px 20px;
        padding-left: 40px;
    }

    .accordion-section .accordion-button::after {
        left: 8px;
        width: 18px;
        height: 18px;
    }

    .accordion-section .accordion-button i {
        font-size: 16px;
        margin-right: 8px;
    }

    .accordion-section .accordion-body {
        padding: 20px;
        padding-left: 40px;
        font-size: 16px;
    }

    .accordion-section .accordion-body p,
    .accordion-section .accordion-body ul li {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .accordion-section h2 {
        font-size: 1.75rem;
    }

    .accordion-section .accordion-button {
        font-size: 16px;
        padding: 12px 15px;
        padding-left: 35px;
    }

    .accordion-section .accordion-body {
        font-size: 14px;
        padding: 15px;
        padding-left: 35px;
    }

    .accordion-section .accordion-body p,
    .accordion-section .accordion-body ul li {
        font-size: 14px;
    }
}


/* Footer Component */
.footer-section {
    background-color: #54565a;
    color: #fff;
    font-size: 13px;
    padding-top: 20px;
}

.footer-section .container {
    max-width: 1200px;
}

.footer-section .row {
    margin-top: 20px;
}

.footer-section .footer-column {
    padding: 20px;
}

.footer-section p {
    font-size: 13px;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-section h3 {
    color: #fff;
    padding-bottom: 0px;
    padding-top: 0px;
    font-weight: lighter;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

.footer-section strong {
    font-weight: bold;
    color: #fff;
}

.footer-section ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 1rem;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
    font-size: 13px;
}


/* Banner Component */
.banner-section {
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    min-height: 700px;
    color: #fff;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.banner-section.bg-image {
	background-size: cover;
	background-repeat: no-repeat;
}

.banner-mask {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    top: 0;
    left: 0;
}

.banner-content-wrapper {
    z-index: 2;
    bottom: 10%;
    left: 0;
    right: 0;
}

.banner-text-content {
    margin: 0 auto;
}

.banner-text-content h1 {
    font-size: 60px;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    text-align: left;
    margin-bottom: 1rem;
    padding-bottom: 0;
    padding-top: 0;
}

.banner-text-content .col-md-7 {
    text-align: left;
}

/* Responsive styles for banner */
@media (max-width: 768px) {
    .banner-section {
        min-height: 400px;
        background-size: contain;
        background-position: top center;
    }

    .banner-mask {
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.3) 70%,
            rgba(0, 0, 0, 0.7) 100%
        );
    }

    .banner-content-wrapper {
        bottom: 5%;
    }

    .banner-text-content h1 {
        font-size: 36px;
        text-align: center;
    }

    .banner-text-content .col-md-7 {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .banner-section {
        min-height: 340px;
    }

    .banner-text-content h1 {
        font-size: 28px;
    }
}



/* Form Modal Component */
.form-modal .modal-content {
    border-radius: 8px;
}

.form-modal .modal-body {
    padding: 30px 20px;
}

.form-modal .float-end {
    position: absolute;
    top: 10px;
    right: 15px;
    z-index: 100;
}

.form-modal .float-end .btn {
    font-size: 30px;
    font-weight: 300;
    padding: 0 10px;
    background: none;
    border: none;
    color: #666;
    line-height: 1;
}

.form-modal .float-end .btn:hover {
    color: #333;
}

.form-modal h2.center {
    text-align: center;
    font-size: 2.5rem;
    color: #010035;
    margin-bottom: 2rem;
    padding-top: 20px;
    padding-bottom: 20px;
}

.form-modal h5 {
    font-size: 16px;
    font-weight: 600;
    color: #010035;
    margin-bottom: 8px;
    margin-top: 15px;
}

.form-modal .row {
    margin-bottom: 15px;
}

.form-modal input[type="text"],
.form-modal input[type="email"],
.form-modal input[type="number"],
.form-modal select {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.form-modal input[type="text"]:focus,
.form-modal input[type="email"]:focus,
.form-modal input[type="number"]:focus,
.form-modal select:focus {
    border-color: #66afe9;
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
}

.form-modal input[type="radio"] {
    margin: 0 5px 0 15px;
}

.form-modal .center {
    text-align: center;
}

.form-modal .center p {
    margin-top: 10px;
    margin-bottom: 10px;
}

.form-modal .width100 {
    width: 100%;
}

.form-modal .call_button {
    background-color: #d0271d;
    color: #fff;
    border: none;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.form-modal .call_button:hover {
    background-color: #a71f16;
    color: #fff;
}

.form-modal .rounded-0 {
    border-radius: 0 !important;
}

/* Responsive styles for form modal */
@media (max-width: 768px) {
    .form-modal .modal-body {
        padding: 20px 10px;
    }

    .form-modal h2.center {
        font-size: 2rem;
        padding-top: 10px;
        padding-bottom: 15px;
    }

    .form-modal h5 {
        font-size: 14px;
        margin-top: 10px;
    }

    .form-modal input[type="text"],
    .form-modal input[type="email"],
    .form-modal input[type="number"],
    .form-modal select {
        font-size: 14px;
        padding: 8px 10px;
    }

    .form-modal .col-md-5,
    .form-modal .col-md-1 {
        padding-left: 10px;
        padding-right: 10px;
    }

    .form-modal .call_button {
        padding: 10px 30px;
        font-size: 14px;
    }
}


.vl {
  border-left: 1px solid white;
  height: 150px;
  position: absolute;
  left: 50%;
  margin-left: -3px;
  top: 0;
}
.card{
	min-height: 790px;
	height: 790px;
}
.address{
	background-image: url('../images/bio_icon_addressl.png');
	background-repeat: no-repeat;
	background-position: left;
	padding-left: 30px;
	padding-bottom: 3px;
	padding-top: 3px;
}
.phone{
	background-image: url('../images/bio_icon_call.png');
	background-repeat: no-repeat;
	background-position: left;
	padding-left: 30px;
	padding-bottom: 3px;
	padding-top: 3px;
	margin-top: 20px;
}
.email{
	background-image: url('../images/bio_icon_maill.png');
	background-repeat: no-repeat;
	background-position: left;
	padding-left: 30px;
	padding-bottom: 3px;
	padding-top: 3px;
}
.web{
	background-image: url('../images/bio_icon_url.png');
	background-repeat: no-repeat;
	background-position: left;
	padding-left: 30px;
	padding-bottom: 3px;
	padding-top: 3px;
}
.modal-xl .col-md-4 a{
    font-size: 16px;
  color: #000;
  text-decoration: none;
}

.modal-xl .col-md-8 h2{font-size: 24px;
  padding-bottom: 10px;
  padding-top: 10px ;
  text-align: left;
margin: 0;}
.modal-footer p{
    font-size: 12px;
}
