html {
    scroll-behavior: smooth;
}

.navigation .menu-btn {
    margin-left: 25px !important;
    /* Increased spacing */
    display: flex !important;
    align-items: center !important;
}

.navigation .brochure-btn {
    background: transparent !important;
    border: 2px solid #1a243d !important;
    color: #1a243d !important;
    /* Visible on white background */
    padding: 10px 15px !important;
    /* Increased padding */
    border-radius: 50px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px;
    font-weight: 600 !important;
    font-size: 13px !important;
    /* Slightly smaller font */
    transition: all 500ms ease;
    line-height: 1 !important;
    text-transform: uppercase;
}

.navigation .brochure-btn i {
    font-size: 14px;
    color: #1a243d !important;
}

.navigation .brochure-btn:hover {
    background: #1a243d !important;
    color: #fff !important;
}

.navigation .brochure-btn:hover i {
    color: #fff !important;
}

.navigation .contact-btn {
    background: #d73338 !important;
    color: #fff !important;
    padding: 10px 15px !important;
    /* Increased padding */
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    /* Slightly smaller font */
    transition: all 500ms ease;
    line-height: 1 !important;
    text-transform: uppercase;
}

.navigation .contact-btn:hover {
    background: #b52b2f !important;
    color: #fff !important;
    box-shadow: 0 5px 15px rgba(215, 51, 56, 0.3);
}

/* Header Adjustments */
.main-header .outer-box {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.main-header .logo-box {
    padding: 5px 0px !important;
    /* Reduced padding */
    flex-shrink: 0;
}

.main-header .menu-area {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
}

.main-menu .navigation {
    display: flex !important;
    align-items: center;
    margin: 0 !important;
}

.main-menu .navigation>li {
    padding: 0px !important;
    margin: 0px 12px !important;
    /* Slightly tighter spacing */
    float: none !important;
    /* Override theme float */
    display: inline-block !important;
}

.main-menu .navigation>li>a {
    /* padding: 15px 0px !important; */
    font-size: 14px !important;
}

.sticky-header {
    padding: 0px !important;
}

.sticky-header .outer-box {
    padding: 0px !important;
}

.sticky-header .logo-box {
    padding: 5px 0px !important;
}

.sticky-header .logo-box img {
    max-height: 40px;
    /* Make logo slightly smaller in sticky header */
}

.sticky-header .support-box {
    padding: 5px 0px !important;
    margin-left: 10px;
}

.sticky-header .support-box h4 {
    font-size: 13px !important;
}

@media only screen and (max-width: 991px) {
    .main-header .outer-box {
        display: block !important;
    }

    .navigation .menu-btn {
        margin-left: 0 !important;
        margin-top: 10px !important;
        display: block !important;
    }

    .navigation .brochure-btn,
    .navigation .contact-btn {
        display: inline-flex !important;
        width: auto;
        margin-bottom: 10px;
    }

    .main-menu .navigation {
        display: block !important;
    }
}

/* Feature Cards Section */
.feature-section {
    position: relative;
    padding: 80px 0 50px;
    background: #0a0a0a;
    /* Very dark background */
}

.feature-block-one {
    position: relative;
    margin-bottom: 30px;
}

.feature-block-one .inner-box {
    position: relative;
    padding: 40px 30px;
    background: #121212;
    border: 1px solid #1f1f1f;
    border-radius: 24px;
    transition: all 500ms ease;
    height: 100%;
}

.feature-block-one .inner-box:hover {
    border-color: #d73338;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-block-one .icon-box {
    position: relative;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: rgba(215, 51, 56, 0.1);
    border-radius: 14px;
    text-align: center;
    margin-bottom: 25px;
}

.feature-block-one .icon-box i {
    font-size: 26px;
    color: #d73338;
}

.feature-block-one h3 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    color: #fff !important;
    margin-bottom: 6px;
}

.feature-block-one p {
    font-size: 15px;
    color: #888;
    margin: 0;
    line-height: 24px;

}

/* Product Range Section */
.product-range-section {
    padding: 100px 0;
    color: #2d2727;
}

.product-range-section .sec-title {
    margin-bottom: 60px;
}

.product-range-section .sec-title h2 {
    color: #2d2727;
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 900;
}

.product-range-section .sec-title .title-line {
    width: 50px;
    height: 3px;
    background: #d73338;
    margin: 0 auto 20px;
}

.product-range-section .sec-title p {
    color: #777 !important;
    font-size: 16px;
}

/* Tabs Styling */
.product-tabs .tab-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.product-tabs .tab-buttons .tab-btn {
    padding: 12px 30px;
    background: #1a1a1a;
    border: 1px solid #1a1a1a;
    color: #fff;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
}

.product-tabs .tab-buttons .tab-btn:hover,
.product-tabs .tab-buttons .tab-btn.active-btn {
    background: #d73338;
    border-color: #d73338;
    color: #fff;
}

.tab-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
    /* Light border */
    padding-bottom: 15px;
}

.tab-header h3 {
    font-size: 28px;
    color: #2d2727;
    /* Dark title */
    font-weight: 800;
}

.tab-header p {
    color: #777;
    /* Darker description */
    font-size: 14px;
    max-width: 500px;
    text-align: right;
    margin: 0;
}

.product-range-section .tabs-content .tab {
    display: none;
}

.product-range-section .tabs-content .tab.active-tab {
    display: block;
}

/* Product Reveal Card Styles */
.product-range-section .service-block {
    margin-bottom: 30px;
    /* Gap between rows */
}

.product-range-section .service-block-one .inner-box {
    border-radius: 0;
    background: #fff;
    aspect-ratio: 4 / 5 !important;
    height: 100%;
}

.product-range-section .service-block-one .inner-box .image-box {
    position: relative;
    height: 100% !important;
    width: 100%;
    background: #f0f0f0; 
}

.product-range-section .service-block-one .inner-box .image-box img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100% !important;
    width: 100% !important;
    object-fit: contain !important;
    padding: 15px;
}

.product-range-section .service-block-one .inner-box .image-box:before {
    background: #000;
    opacity: 0.5;
    /* Dark overlay by default */
}

.product-range-section .service-block-one .inner-box:hover .image-box:before {
    opacity: 0.8;
    /* Darker on hover */
}

.product-range-section .service-block-one .inner-box .text h2 {
    font-size: 24px;
    font-weight: 800;
    text-transform: capitalize;
}

.product-range-section .service-block-one .inner-box .overlay-content {
    background: transparent;
    padding: 20px;
}

.product-range-section .service-block-one .inner-box .overlay-content .inner {
    width: 100%;
}

.product-range-section .service-block-one .inner-box .overlay-content h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
}

.product-range-section .service-block-one .inner-box .overlay-content p {
    font-size: 14px;
    line-height: 22px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    font-weight: 400;
}

.product-range-section .service-block-one .inner-box .overlay-content .more-btn {
    display: inline-block;
    background: #d73338 !important;
    /* Orange from screenshot */
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 30px !important;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.3s ease;
}

.product-range-section .service-block-one .inner-box .overlay-content .more-btn:hover {
    background: #b52b2f !important;
    transform: translateY(-2px);
}

.product-range-section .service-block-one .inner-box .overlay-content .badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 700;
    border-radius: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.badge-popular {
    background: #d73338;
    color: #fff;
}

.badge-heavy {
    border: 1px solid #d73338;
    color: #d73338;
}

.badge-premium {
    background: #ffc107;
    color: #000;
}

.badge-industrial {
    background: #d73338;
    color: #fff;
}

@media only screen and (max-width: 767px) {
    .tab-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .tab-header p {
        text-align: left !important;
        margin-top: 10px;
    }

    .product-range-section .sec-title h2 {
        font-size: 32px;
    }
}


/* Certification Section */
.certification-section {
    position: relative;
    padding: 100px 0 70px;
    background: #ffffff;
}

.certification-block-one {
    position: relative;
    margin-bottom: 30px;
}

.certification-block-one .inner-box {
    position: relative;
    padding: 50px 30px;
    background: #fff;
    border: 1px solid #f2f2f2;
    border-radius: 20px;
    transition: all 500ms ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    z-index: 1;
}

.certification-block-one .inner-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #d73338;
}

.certification-block-one .icon-box {
    position: relative;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: #fff5f5;
    border-radius: 50%;
    text-align: center;
    margin: 0 auto 30px;
    transition: all 500ms ease;
    z-index: 1;
}

.certification-block-one .inner-box:hover .icon-box {
    background: #d73338;
    transform: rotateY(180deg);
}

.certification-block-one .icon-box i {
    font-size: 36px;
    color: #d73338;
    transition: all 500ms ease;
}

.certification-block-one .inner-box:hover .icon-box i {
    color: #fff;
    transform: rotateY(-180deg);
}

.certification-block-one h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #1a243d;
    transition: all 500ms ease;
}

.certification-block-one p {
    font-size: 16px;
    color: #777;
    margin: 0;
    font-weight: 500;
}

/* Fire Handling Section - Light Theme with Orange Hover */
.fire-handling-section {
    padding: 100px 0 70px;
    background: #fcf8f8;
    /* Reverted to old light background */
    text-align: center;
}

.fire-handling-section .sec-title {
    margin-bottom: 60px;
}

.fire-handling-section .sec-title h2 {
    font-size: 54px;
    line-height: 64px;
    font-weight: 900;
    color: #1a243d;
    /* Dark text for light bg */
    margin-bottom: 15px;
}

.fire-handling-section .sec-title p {
    font-size: 18px;
    color: #888;
    position: relative;
    display: inline-block;
}

.fire-handling-section .class-title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #1a243d;
    /* Dark text */
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    gap: 15px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
}

.fire-handling-section .class-title i {
    color: #d73338;
}

.handling-block-one {
    position: relative;
    margin-bottom: 30px;
}

.handling-block-one .inner-box {
    position: relative;
    padding: 40px 20px;
    background: #fff;
    /* Reverted to white background */
    border: 1px solid #eee;
    border-radius: 0px;
    transition: all 500ms ease;
    height: 100%;
}

.handling-block-one .inner-box:hover {
    background: #d73338;
    /* Keep red hover */
    border-color: #d73338;
    transform: translateY(-15px);
    /* Increased lift */
    box-shadow: 0 25px 50px rgba(215, 51, 56, 0.35);
    /* Stronger premium shadow */
}

.handling-block-one .class-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 30px;
    font-weight: 900;
    color: #fff;
    transition: all 500ms ease;
}

.class-a {
    background-color: #4CAF50;
}

.class-b {
    background-color: #F44336;
}

.class-c {
    background-color: #2196F3;
}

.class-e {
    background-color: #FFEB3B;
    color: #000 !important;
}

.class-k {
    background-color: #FFFFFF;
    color: #000 !important;
    border: 1px solid #ddd;
}

.handling-block-one h4 {
    font-size: 22px;
    font-weight: 800;
    color: #1a243d;
    /* Dark text */
    margin-bottom: 15px;
    transition: all 500ms ease;
}

.handling-block-one p {
    font-size: 14px;
    color: #777;
    /* Darker grey for light bg */
    line-height: 22px;
    margin: 0;
    transition: all 500ms ease;
}

.handling-block-one .inner-box:hover h4,
.handling-block-one .inner-box:hover p {
    color: #fff !important;
}

@media only screen and (max-width: 991px) {
    .fire-handling-section .sec-title h2 {
        font-size: 40px;
        line-height: 50px;
    }

    .fire-handling-section .class-title {
        font-size: 22px;
        justify-content: center;
    }
}


/* News Section Lists */
.prevention-list,
.race-list {
    padding: 0;
    margin: 0;
    list-style: none;
    margin-top: 15px;
}

.prevention-list li,
.race-list li {
    font-size: 14px;
    line-height: 24px;
    color: #555;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.prevention-list li i {
    color: #d73338;
    font-size: 20px;
    margin-top: 2px;
    width: 25px;
    text-align: center;
}

.news-block-one .content-column .content-box {
    padding: 10px 40px;
}

.race-letter {
    display: inline-block;
    width: 28px;
    height: 28px;
    background: #d73338;
    color: #fff;
    text-align: center;
    line-height: 28px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 15px;
    flex-shrink: 0;
    box-shadow: 0 3px 6px rgba(215, 51, 56, 0.2);
}

.race-list li b {
    color: #1a243d;
    margin-right: 5px;
    font-weight: 700;
}

.news-block-one .content-box h2 {
    margin-bottom: 5px !important;
}

.news-block-one {
    transition: all 500ms ease;
    border: 1px solid transparent;
    background: #f5f0f0;
    /* Match theme background */
    display: flex;
    flex-direction: column;
    height: 100%;
}

@media only screen and (min-width: 992px) {
    .news-block {
        display: flex;
    }

    .news-block-one {
        flex: 1;
    }

    .news-block-one .row {
        flex: 1;
        display: flex;
    }

    .news-block-one .content-column {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

.news-block-one:hover {
    background: #ffffff !important;
    border-color: #eee;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Application Section */
.application-section {
    position: relative;
    padding: 100px 0 70px;
    background: #f9f9f9;
}

.application-section .sec-title {
    margin-bottom: 60px;
}

.application-section .sec-title p {
    color: #d73338;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.application-section .sec-title h2 {
    font-size: 42px;
    font-weight: 900;
    color: #1a243d;
}

.application-block-one {
    position: relative;
    margin-bottom: 30px;
}

.application-block-one .inner-box {
    position: relative;
    padding: 40px 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    transition: all 500ms ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    text-align: center;
    height: 100%;
}

.application-block-one .inner-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(215, 51, 56, 0.15);
    border-color: #d73338;
}

.application-block-one .icon-box {
    position: relative;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: #fff5f5;
    border-radius: 50%;
    text-align: center;
    margin: 0 auto 25px;
    transition: all 500ms ease;
}

.application-block-one .inner-box:hover .icon-box {
    background: #d73338;
    transform: rotateY(180deg);
}

.application-block-one .icon-box i {
    font-size: 36px;
    color: #d73338;
    transition: all 500ms ease;
}

.application-block-one .inner-box:hover .icon-box i {
    color: #fff;
    transform: rotateY(-180deg);
}

.application-block-one h4 {
    font-size: 20px;
    font-weight: 800;
    color: #1a243d;
    margin: 0;
    transition: all 500ms ease;
}

.application-block-one .inner-box:hover h4 {
    color: #d73338;
}

@media only screen and (max-width: 991px) {
    .application-section .sec-title h2 {
        font-size: 32px;
    }
}

/* funfact-section P.A.S.S. Steps */
.funfact-section .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.funfact-section .content-column,
.funfact-section .inner-column {
    display: flex;
}

.funfact-section .content_block_3,
.funfact-section .content_block_4 {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.funfact-section .content_block_3 .content-box {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-right: 0 !important;
}

.funfact-section .content_block_3 .content-box .lower-box {
    margin-top: auto;
    background: #d73338 !important;
}

/* Contact Us Section */
.contact-section {
    position: relative;
    padding: 100px 0;
    background: #fff;
}

.contact-section .sec-title h2 {
    color: #1a243d;
}

.contact-info-list {
    margin-top: 40px;
}

.contact-info-block {
    position: relative;
    padding-left: 70px;
    margin-bottom: 30px;
}

.contact-info-block .icon-box {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: #fff5f5;
    color: #d73338;
    border-radius: 50%;
    text-align: center;
    font-size: 20px;
}

.contact-info-block h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a243d;
    margin-bottom: 5px;
}

.contact-info-block p,
.contact-info-block a {
    font-size: 15px;
    color: #777;
}

.contact-form,
.form-inner {
    position: relative;
    padding: 40px;
    background: #fcfcfc;
    border: 1px solid #eee;
    border-radius: 20px;
}

.form-inner .form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-inner input[type="text"],
.form-inner input[type="email"],
.form-inner textarea {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 10px 25px;
    border-radius: 10px;
    transition: all 500ms ease;
}

.form-inner textarea {
    height: 150px;
    padding-top: 15px;
}

.form-inner input:focus,
.form-inner textarea:focus {
    border-color: #d73338;
    box-shadow: 0 0 10px rgba(215, 51, 56, 0.1);
}

.form-inner .theme-btn-one {
    background: #d73338;
    border-radius: 10px;
    width: 100%;
    cursor: pointer;
    border: none;
}

/* --- Preloader Logo Animation --- */
.handle-preloader .animation-preloader .spinner {
    display: none !important;
    /* Remove the circle */
}

.logo-loading {
    text-align: center;
    user-select: none;
    position: relative;
    z-index: 10;
}

.logo-loading img {
    max-width: 320px;
    height: auto;
    animation: logo-float-refined 2s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

@keyframes logo-float-refined {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-25px);
    }
}

/* --- Floating Bubbles Loader --- */
.bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 5;
    pointer-events: none;
}

.bubbles span {
    position: absolute;
    bottom: -50px;
    background: rgba(215, 51, 56, 0.15);
    /* Brand red semi-transparent */
    border-radius: 50%;
    animation: bubble-up var(--duration) linear infinite;
    opacity: 0;
}

@keyframes bubble-up {
    0% {
        transform: translateY(0) translateX(0) scale(0.5);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.4;
    }

    100% {
        transform: translateY(-100vh) translateX(var(--drift)) scale(1.2);
        opacity: 0;
    }
}

/* Randomized bubble positions and sizes */
.bubbles span:nth-child(1) {
    left: 10%;
    width: 20px;
    height: 20px;
    --duration: 4s;
    --drift: 30px;
    animation-delay: 0s;
}

.bubbles span:nth-child(2) {
    left: 25%;
    width: 40px;
    height: 40px;
    --duration: 6s;
    --drift: -50px;
    animation-delay: 1s;
}

.bubbles span:nth-child(3) {
    left: 40%;
    width: 15px;
    height: 15px;
    --duration: 3s;
    --drift: 20px;
    animation-delay: 2s;
}

.bubbles span:nth-child(4) {
    left: 55%;
    width: 50px;
    height: 50px;
    --duration: 8s;
    --drift: -30px;
    animation-delay: 0.5s;
}

.bubbles span:nth-child(5) {
    left: 70%;
    width: 30px;
    height: 30px;
    --duration: 5s;
    --drift: 60px;
    animation-delay: 1.5s;
}

.bubbles span:nth-child(6) {
    left: 85%;
    width: 25px;
    height: 25px;
    --duration: 4s;
    --drift: -20px;
    animation-delay: 3s;
}

.bubbles span:nth-child(7) {
    left: 15%;
    width: 35px;
    height: 35px;
    --duration: 7s;
    --drift: 40px;
    animation-delay: 2.5s;
}

.bubbles span:nth-child(8) {
    left: 50%;
    width: 22px;
    height: 22px;
    --duration: 4.5s;
    --drift: -10px;
    animation-delay: 1.2s;
}

.bubbles span:nth-child(9) {
    left: 65%;
    width: 45px;
    height: 45px;
    --duration: 6.5s;
    --drift: 50px;
    animation-delay: 0.8s;
}

.bubbles span:nth-child(10) {
    left: 80%;
    width: 18px;
    height: 18px;
    --duration: 3.5s;
    --drift: -40px;
    animation-delay: 2.2s;
}

@media screen and (max-width: 767px) {
    .logo-loading img {
        max-width: 220px;
    }
}

/* Fix for Number Section (P.A.S.S. Protocol) */
.content_block_4 .counter-block {
    padding: 50px 0px 10px 50px !important;
    /* Reduced padding */
}

.funfact-section .content_block_4 .counter-block {
    margin-left: 0px !important;
    /* Removed extra left margin */
}

.content_block_4 .counter-block .counter-block-one {

    margin-bottom: 30px !important;
    /* Reduced margin */
    min-height: 100px !important;
    /* Reduced min-height */
}

.content_block_4 .counter-block .counter-block-one .icon-box {
    width: 80px !important;
    height: 80px !important;
    line-height: 80px !important;
    font-size: 35px !important;
    /* Reduced icon size */
    background: #d73338 !important;
    /* Ensure background color */
}

.content_block_4 .counter-block .counter-block-one .count-outer {
    font-size: 36px !important;
    /* Reduced number size */
    line-height: 44px !important;
}

.content_block_4 .counter-block .counter-block-one h4 {
    font-size: 20px !important;
    margin-bottom: 5px !important;
}

/* Fix for Contact Section Icons and Spacing */
.contact-section {
    padding: 80px 0 !important;
    /* Reduced section padding */
}

.contact-section .info-list li {
    position: relative;
    display: block;
    padding-left: 70px;
    padding-bottom: 20px;
    margin-bottom: 25px;
    border-bottom: 1px solid #eee8e8;
}

.contact-section .info-list li:last-child {
    border-bottom: none;
}

.contact-section .info-list li .icon-box {
    position: absolute;
    left: 0px;
    top: 5px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    background: #d73338;
    color: #fff;
    font-size: 20px;
    /* Reasonable icon size */
}

.contact-section .info-list li p {
    line-height: 28px;
    margin: 0px;
    font-size: 16px;
    font-weight: 500;
}

.contact-section .info-list li p a {
    color: #716868;
    transition: all 500ms ease;
}

.contact-section .info-list li p a:hover {
    color: #d73338;
}

/* Fix for Contact Form Spacing */
.contact-section .form-inner .form-group {
    margin-bottom: 20px !important;
}

.contact-section .form-inner .form-group input[type='text'],
.contact-section .form-inner .form-group input[type='email'],
.contact-section .form-inner .form-group textarea {
    height: 60px !important;
    /* Reduced height */
    background: #f5f0f0 !important;
    border: 1px solid #f5f0f0 !important;
}

.contact-section .form-inner .form-group textarea {
    height: 180px !important;
    /* Reduced height */
}

/* Additional Spacing & SVG Fixes */
.sec-title {
    margin-bottom: 30px !important;
    /* Reduced spacing */
}

.sec-title h2 {
    font-size: 42px !important;
    /* Normalized font size */
    line-height: 52px !important;
}

.about-section {
    padding: 60px 0px 60px 0px !important;
    /* Reduced section padding */
}

.about-section .inner-box {
    margin-bottom: 20px !important;
}

.about-section .single-item {
    margin-bottom: 10px !important;
}

.icon-svg {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
    display: inline-block;
}

.icon-svg svg {
    width: 100%;
    height: 100%;
    display: block;
}

.about-section .content_block_1 .text {
    margin-bottom: 25px !important;
}

/* Fix for P.A.S.S. Training Image Height */
.content_block_3 .content-box .image-box {
    height: 400px;
    /* Fixed height to match steps */
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 0 !important;
}

.content_block_3 .content-box .image-box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    /* Prevents stretching */
}

/* About Section Experience Number Fix */
.image_block_1 .image-box .image-content {
    padding: 20px !important;
    /* Reduced padding */
    left: -30px !important;
    /* Adjusted position */
    max-width: 150px !important;
}

.image_block_1 .image-box .image-content h2 {
    font-size: 42px !important;
    /* Smaller number */
    margin-bottom: 5px !important;
    line-height: 1 !important;
}

.image_block_1 .image-box .image-content h5 {
    font-size: 14px !important;
    /* Smaller text */
    line-height: 18px !important;
}