@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --fs-70: 70px;
    --fs-68: 68px;
    --fs-64: 64px;
    --fs-60: 60px;
    --fs-56: 56px;
    --fs-54: 54px;
    --fs-52: 52px;
    --fs-48: 48px;
    --fs-44: 44px;
    --fs-40: 40px;
    --fs-38: 38px;
    --fs-36: 36px;
    --fs-32: 32px;
    --fs-28: 28px;
    --fs-26: 26px;
    --fs-24: 24px;
    --fs-22: 22px;
    --fs-20: 20px;
    --fs-18: 18px;
    --fs-16: 16px;
    --fs-14: 14px;
    --fs-12: 12px;
    --primary-color: #E31C25;
    --dark-color: #111111;
    --secondary-color: #777777;
    --grey-color: #eeeeee;
    --white-color: #ffffff;
    --body-fonts: 'Poppins', sans-serif;
    --title-fonts: 'Montserrat', sans-serif;
}

@media (max-width: 768px) {
    :root {
        --fs-70: 50px;
        --fs-68: 48px;
        --fs-64: 48px;
        --fs-60: 46px;
        --fs-56: 44px;
        --fs-54: 42px;
        --fs-52: 40px;
        --fs-48: 38px;
        --fs-44: 34px;
        --fs-40: 32px;
        --fs-38: 30px;
        --fs-36: 30px;
        --fs-32: 26px;
        --fs-28: 24px;
        --fs-26: 22px;
        --fs-24: 20px;
        --fs-22: 18px;
        --fs-20: 18px;
        --fs-18: 16px;
        --fs-16: 15px;
        --fs-14: 13px;
        --fs-12: 12px;
    }
}

@media (max-width: 480px) {
    :root {
        --fs-70: 40px;
        --fs-68: 38px;
        --fs-64: 38px;
        --fs-60: 36px;
        --fs-56: 34px;
        --fs-54: 32px;
        --fs-52: 32px;
        --fs-48: 30px;
        --fs-44: 28px;
        --fs-40: 26px;
        --fs-38: 24px;
        --fs-36: 24px;
        --fs-32: 22px;
        --fs-28: 20px;
        --fs-26: 18px;
        --fs-24: 18px;
        --fs-22: 16px;
        --fs-20: 16px;
        --fs-18: 15px;
        --fs-16: 14px;
        --fs-14: 12px;
        --fs-12: 12px;
    }
}

body {
    color: #111111;
}

.hero_section {
    position: relative;
    padding: 0;
    font-family: var(--body-fonts);
}

.banner_wrapper {
    position: relative;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
}

.banner_wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.65) 0%,
            rgba(0, 0, 0, 0.35) 40%,
            rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
}

.banner_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 6s ease;
}

.swiper-slide-active .banner_wrapper img {
    transform: scale(1);
}

.banner_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: var(--white-color);
    max-width: 900px;
    width: 100%;
    padding: 0 20px;
}

.banner_content h1 {
    font-family: var(--title-fonts);
    font-weight: 800;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    color: var(--white-color);
}

.banner_content p {
    font-family: var(--body-fonts);
    font-size: 18px;
    line-height: 1.7;
    color: #e5e5e5;
    max-width: 720px;
    margin: 0 auto 35px;
}

.buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.primary_btn {
    background: linear-gradient(135deg, #E31C25, #b31218);
    color: var(--white-color);
    padding: 14px 34px;
    border-radius: 50px;
    font-family: var(--body-fonts);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(227, 28, 37, 0.35);
}

.primary_btn i {
    font-size: 14px;
}

.primary_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(227, 28, 37, 0.5);
    color: var(--white-color);
}

.secondary_btn {
    background: transparent;
    color: var(--white-color);
    padding: 14px 34px;
    border-radius: 50px;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    font-family: var(--body-fonts);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.secondary_btn:hover {
    background: var(--white-color);
    color: var(--primary-color);
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.6);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
    width: 20px;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .banner_wrapper {
        height: 85vh;
        min-height: 520px;
    }

    .banner_content h1 {
        font-size: clamp(34px, 7vw, 46px);
    }

    .banner_content p {
        font-size: 16px;
    }
}

.pt-fancybox-box-info:hover {
    background: var(--primary-color);
}

.pt-fancybox-box-info:hover a {
    color: white;
}

.pt-service-banner {
    height: 270px;
}

.pt-service-banner img {
    object-fit: cover;
    height: 100%;
}

.modal .grey-section-style:after {
    content: none !important;
}

#enquireModal button.close {
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    line-height: 2;
}

.modal button.close {
    line-height: 1;
    opacity: 1;
    background-color: var(--primary-color);
}

.whatsapp-box {
    background: #333;
    color: #ffffff;
    padding: 16px 20px;
    text-align: center;
    margin-top: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.whatsapp-box p {
    margin: 0 0 8px;
    font-size: 15px;
    opacity: 0.95;
}

.whatsapp-box a {
    display: inline-block;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
}

.whatsapp-box a:hover {
    text-decoration: underline;
}

.pt-icon-box-section1:hover .pt-heading-title2 {
    color: white;
}

.fixed_whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    margin: 0px;
    z-index: 25;
}

.fixed_whatsapp svg {
    width: 50px;
    height: 50px;
}

li.pt-icon-list-item {
    display: flex;
    gap: 10px;
}

nav:has(ol.breadcrumb) {
    opacity: 0;
}

.highlight .pt-icon img {
    max-height: 100px;
}

@media (max-width: 480px) {
    .fixed_whatsapp {
        bottom: 20px;
        right: 20px;
    }

    .fixed_whatsapp svg {
        width: 40px;
        height: 40px;
    }

    .pt-testmonial-style-3 .pt-testmonial-media>i {
        position: absolute;
        right: 0;
    }
}