html {
    scroll-behavior: smooth;
    overflow-y: scroll;
    scroll-padding-top: 100px;
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}

:root {
    --primaryFont: "Montserrat", sans-serif;
    --black: #000;
    --success: #25d366;
    --danger: #f00c0d;
    --danger-active: #cc0000;
    --white: #fff;
    --off-white: #fafafa;
    --dark-white: #aba9ad;
    --whatsapp: #25d366;
}

body {
    font-family: var(--primaryFont);
    font-size: 18px;
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.btn,
.nav-link {
    font-family: var(--primaryFont);
    font-weight: 600;
}

.text-danger {
    color: var(--danger) !important;
}

.bg-danger {
    background: var(--danger) !important;
}

.main-page {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
}

.main-page .main-body {
    flex: 1;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 80px;
    background-color: var(--success);
    color: var(--white);
    font-size: 20px;
    padding: 12px 13px;
    border-radius: 50px;
    z-index: 1000;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.whatsapp-float i {
    font-size: 22px;
}

.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--danger-active);
    color: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.scroll-top::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: ripple 2s infinite;
    z-index: -1;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

body.no-scroll-top .whatsapp-float {
    right: 20px;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    70% {
        transform: scale(2.5);
        opacity: 0;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.announcement-bar {
    font-size: 15px;
    background-color: var(--black);
    color: var(--off-white);
}

.announcement-bar a {
    color: var(--off-white);
}

.main-nav .nav-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.main-nav .nav-link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: var(--danger);
    transition: width 0.3s ease-in-out;
}

.main-nav .nav-link:hover {
    color: var(--danger);
}

.main-nav .nav-link:hover::before {
    width: 100%;
}

.main-nav .nav-link.active {
    color: var(--danger);
}

.main-nav .nav-link.active::before {
    width: 100%;
}

.dropdown.nav-item {
    position: relative;
}

.dropdown.nav-item .dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 240px;
    background-color: #000;
    border: none;
    border-radius: 8px;
    padding: 10px 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease-in-out;
    z-index: 1050;
}

.dropdown.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown.nav-item .dropdown-toggle::after {
    display: none !important;
}

.dropdown.nav-item .dropdown-item {
    color: #fff;
    font-weight: 500;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.dropdown.nav-item .dropdown-item:hover {
    background-color: var(--danger);
    color: #fff;
}

.btn-book-now {
    background-color: var(--danger);
    color: var(--white);
    font-weight: 600;
    padding: 10px 22px;
    font-size: 15px;
    border-radius: 30px;
    border: none;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease;
    box-shadow: 0 4px 8px rgba(230, 0, 0, 0.15);
    text-transform: none;
    letter-spacing: 0.3px;
}

.btn-book-now:hover {
    background-color: var(--danger);
    color: var(--white);
    transform: scale(1.03);
    box-shadow: 0 6px 14px rgba(230, 0, 0, 0.3);
}

.btn-book-now:disabled,
.btn-book-now[disabled] {
    background-color: var(--danger);
    color: var(--white);
    box-shadow: 0 4px 8px rgba(230, 0, 0, 0.15);
    cursor: not-allowed;
}

.btn-book-now:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(230, 0, 0, 0.25);
    background-color: var(--danger);
    color: var(--white);
}

.btn-sm.btn-book-now {
    padding: 8px 14px;
    font-size: 14px;
}

.btn-see-details {
    background-color: var(--black);
    color: var(--white);
    font-weight: 600;
    padding: 10px 22px;
    font-size: 15px;
    border-radius: 30px;
    border: none;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    text-transform: none;
    letter-spacing: 0.3px;
}

.btn-see-details:hover {
    background-color: var(--black);
    color: var(--white);
    transform: scale(1.03);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

.btn-see-details:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.25);
    background-color: var(--danger);
    color: var(--white);
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    aspect-ratio: 16 / 7;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 60%);
    z-index: 1;
}

.hero-slide .caption {
    padding: 75px 15px;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

.carousel-item {
    position: relative;
}

.carousel-item .caption {
    z-index: 1;
}

.custom-indicators {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
    margin: 0;
}

.custom-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50%;
    background-color: var(--dark-white) !important;
    transition: all 0.3s ease;
}

.custom-indicators button:hover,
.custom-indicators button:focus {
    background-color: rgba(255, 255, 255, 0.9);
    outline: none;
}

.custom-indicators button.active {
    background-color: var(--danger) !important;
    width: 20px;
    height: 12px;
}

.rating-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    font-family: var(--primaryFont);
}

.text-highlight {
    background-color: var(--danger);
    padding: 0px 8px;
}

.star-icons {
    display: flex;
    gap: 6px;
    color: var(--danger);
    font-size: 1.3rem;
}

.rating-subtext {
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--white);
    max-width: 500px;
    font-family: var(--primaryFont);
    line-height: 1.6;
}

#why-secure {
    background: linear-gradient(145deg, #111, #222);
}

#why-secure h2 {
    font-family: var(--primaryFont);
    font-weight: 700;
    color: #fff;
}

#why-secure p,
#why-secure ul li span {
    color: #ddd;
}

#why-secure .btn-book-now {
    background-color: var(--danger);
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    padding: 12px 26px;
    box-shadow: 0 6px 16px rgba(255, 0, 0, 0.3);
    transition: all 0.3s ease;
}

#why-secure .btn-book-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(255, 0, 0, 0.4);
}

#why-us {
    background-color: #f9f9f9;
}

#why-us .icon {
    width: 60px;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(220, 53, 69, 0.1);
    border-radius: 50%;
    font-size: 28px;
}

section.section-padding {
    padding: 60px 20px;
}

.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    will-change: transform;
}

.card-hover:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.footer {
    background-color: var(--danger);
    color: #fff;
    text-align: left;
}

.footer-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.footer a:hover {
    color: #fafafa;
}

.footer-contact i {
    width: 1.25rem;
}

.footer-links {
    column-count: 2;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a:hover::after {
    content: " →";
}

.social-icons a {
    font-size: 1.25rem;
    color: #fff;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #fafafa;
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.logo-slider-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-slider-track {
    display: flex;
    width: max-content;
    animation: scrollLeft 3s linear infinite;
}

.logo-slide {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-slide img.client-logo {
    max-width: 120px;
    height: auto;
    margin: 0 40px;
    transition: filter 0.3s ease;
}

/* Services */
.services-hero-alt {
    background: #111;
    color: #fff;
}

.services-hero-alt h1 {
    font-size: 2.8rem;
    line-height: 1.3;
}

.services-hero-alt img {
    max-height: 450px;
    object-fit: cover;
}

.security-badge {
    top: 30px;
    left: 12px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.service-btn {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: #222;
    padding: 8px 16px;
    border-radius: 9px;
    border: 1px solid #ddd;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.service-btn i {
    color: var(--danger);
    font-size: 15px;
    margin-right: 6px;
}

.service-btn:hover {
    background: var(--danger);
    color: #fff;
}

.service-btn:hover i {
    color: #fff;
}

.service-btn.active {
    background: var(--danger);
    color: #fff;
    border-color: var(--danger);
}

.service-btn.active i {
    color: #fff;
}

.double-install-sec .image-hover-box,
.single-install-sec .image-hover-box {
    position: relative;
    overflow: hidden;
    height: 420px;
    min-width: 270px;
    max-width: 100%;
    border-radius: var(--bs-border-radius) !important;
}

.double-install-sec .image-hover-box img,
.single-install-sec .image-hover-box img {
    width: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.3s ease;
    height: 100%;
}

.double-install-sec .image-hover-box:hover img,
.single-install-sec .image-hover-box:hover img {
    transform: scale(1.05);
}

.double-install-sec .overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgb(245 8 8 / 60%);
    color: #fff;
    padding: 8px 12px;
    font-size: 14px;
    text-align: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Single Install Section */

.install-badge {
    position: absolute;
    bottom: 30px;
    left: 12px;
    background: #212529;
    color: #fff;
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 0px 4px 4px 0px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.single-install-sec .install-steps .step-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.single-install-sec .install-steps .step-icon {
    background: var(--danger);
    color: #fff;
    width: 20px;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    margin-right: 12px;
    font-size: 14px;
}

.single-install-sec .install-steps p {
    margin: 0;
    font-weight: 500;
    color: #333;
}

/* Wooden Install Section */

.img-wrap {
    position: relative;
    overflow: hidden;
}

.img-wrap img {
    transition: transform 0.3s ease;
}

.img-wrap:hover img {
    transform: scale(1.05);
}

.img-overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(220, 53, 69, 0.9);
    color: #fff;
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Responsive tweaks */
@media (max-width: 767.98px) {
    .img-overlay {
        font-size: 11px;
        padding: 4px 8px;
    }
}

/* Wooden Install - Modern Style */

.wooden-install-sec .wooden-secure {
    background: #f9f9f9;
}

.wooden-install-sec .wooden-image img {
    border-radius: 20px;
    object-fit: cover;
    height: 100%;
    width: 100%;
    max-height: 400px;
    transition: transform 0.4s ease;
}

.wooden-install-sec .wooden-image img:hover {
    transform: scale(1.03);
}

/* lock-replacement-section */

.lock-replacement-sec .before-after-wrapper {
    justify-content: center;
}

.lock-replacement-sec .before-box,
.lock-replacement-sec .after-box {
    flex: 1;
}

.lock-replacement-sec .before-box img,
.lock-replacement-sec .after-box img {
    transition: transform 0.3s ease;
}

.lock-replacement-sec .before-box img:hover,
.lock-replacement-sec .after-box img:hover {
    transform: scale(1.03);
}

.lock-replacement-sec .image-wrapper {
    overflow: hidden;
    position: relative;
}

.lock-replacement-sec .image-label {
    top: 10px;
    left: 10px;
    border-radius: 4px;
    font-size: 12px;
}

@media (max-width: 767.98px) {
    .lock-replacement-sec .before-after-wrapper {
        flex-direction: column;
    }
}

/* window-replacement-sec */
.window-replacement-sec .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0px;
    background: rgba(220, 53, 69, 0.9);
    color: #fff;
    padding: 15px 20px;
    text-align: center;
    font-weight: 600;
    width: 100%;
}

.window-replacement-sec .window-replacement ul {
    padding-left: 0;
    list-style: none;
}

.window-replacement-sec .window-replacement ul li i {
    font-size: 14px;
}

.section-img img {
    max-height: 400px;
    /* width: 100%;
    aspect-ratio: 4 / 8; */
    object-fit: cover;
    aspect-ratio: 4 / 4;
}

@media (max-width: 767.98px) {
    .wooden-install-sec .floating-card {
        padding: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .install-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
}

@media (max-width: 575.98px) {
    .service-btn {
        font-size: 14px;
        padding: 6px 12px;
    }
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

#map-location {
    max-height: 500px;
}

.offcanvas {
    max-width: 290px;
    text-align: left;
}

.offcanvas .nav-link.active,
.offcanvas .nav-link:hover {
    color: var(--danger) !important;
}

.offcanvas .menu-link {
    color: #212529;
    font-size: 1.05rem;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.offcanvas .menu-link:hover {
    color: var(--danger);
    text-decoration: none;
}

.offcanvas .accordion-item {
    padding: 0 16px;
    background: transparent;
    border: none;
}

.offcanvas .accordion-button {
    padding: 0.5rem 0;
    background: transparent;
    border: none;
    box-shadow: none !important;
}

.offcanvas .accordion-button::after {
    display: none !important;
}

.offcanvas .accordion-body {
    background: #f8f9fa;
    border-radius: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.75rem !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.offcanvas .accordion-body .nav-link {
    font-weight: 500;
    font-size: 1rem;
    color: #212529;
    /* padding: 0 0 !important; */
}

.offcanvas .accordion-body .nav-link:hover {
    color: var(--danger);
}

.offcanvas .rotate-icon {
    transition: transform 0.3s ease;
}

.offcanvas .accordion-button.collapsed .rotate-icon {
    transform: rotate(0deg);
}

.offcanvas .accordion-button:not(.collapsed) .rotate-icon {
    transform: rotate(180deg);
}

.offcanvas .social-icon-btn {
    width: 45px;
    height: 45px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.social-icon-btn {
    padding: 10px !important;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.what-we-do {
    padding: 90px 10px;
}

.bg-whatsapp {
    background-color: var(--whatsapp);
}

.real-gallery img.card-hover {
    max-height: 375px;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top center;
}

.window-replacement-sec .card-hover img {
    max-height: 375px;
    width: 100%;
    object-fit: cover;
    object-position: top center;
    height: 100%;
}

.contact-hero-section {
    min-height: 70vh;
}

.contact-hero-section .z-2 {
    z-index: 2;
}

.form-card {
    background: #fff;
    transition: 0.4s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
        rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

.form-floating label {
    font-size: medium;
    color: #aba9ad;
}

.input-style {
    transition: all 0.3s ease-in-out;
    color: #222;
}

.input-style:focus {
    border-color: var(--danger);
    box-shadow: none;
}

input:focus+label,
textarea:focus+label {
    color: var(--danger);
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label {
    opacity: 1;
    transform: scale(0.85) translateY(-1.9rem) translateX(0.15rem);
    color: var(--danger);
}

.feature-box {
    transition: all 0.3s ease;
}

.feature-box:hover {
    background-color: #fefefe;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.icon-box i {
    transition: transform 0.3s ease;
}

.feature-box:hover .icon-box i {
    transform: scale(1.2);
}

.hero-video-section {
    overflow: hidden;
    height: 80vh;
}

.hero-video-section video {
    min-height: 100%;
    min-width: 100%;
    /* object-fit: cover;
    object-position: center; */
}

.video-wrapper {
    overflow: hidden;
}

.video-overlay {
    pointer-events: none;
    background: rgba(0, 0, 0, 0.3);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.hero-overlay {
    backdrop-filter: blur(1px);
}

.accordion-button {
    transition: all 0.3s ease;
    border-radius: 12px;
}

.accordion-button:not(.collapsed) {
    background-color: #fff0f0;
    color: var(--danger);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.accordion-item {
    border: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.why-us-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.why-us-card::before {
    content: "";
    position: absolute;
    top: 82%;
    right: -25px;
    width: 20%;
    height: 100%;
    border-radius: 50px;
    background: rgba(222, 30, 49, 0.9);
    z-index: 1;
    transition: all 0.4s ease;
}

.why-us-card:hover::before {
    top: 0;
    right: 0;
    width: 100%;
    border-radius: 0;
}

.why-us-card * {
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

.why-us-card:hover i,
.why-us-card:hover h5,
.why-us-card:hover p {
    color: #fff !important;
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 28px;
    width: 4px;
    background: linear-gradient(to bottom, var(--danger), #210606);
    border-radius: 2px;
}

.timeline-icon {
    position: relative;
    z-index: 1;
}

.timeline-icon .rounded-circle {
    width: 60px;
    height: 60px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.2);
}

.testimonial-section {
    background: #f8f9fa;
}

.testimonial-section .review-meta {
    display: flex;
    align-items: center;
    gap: .5rem;
    justify-content: center;
}

.testimonial-section .review-meta .sep {
    color: #adb5bd;
}

.quote-box {
    background-color: white;
    border-left: 5px solid #dc3545;
    border-radius: 10px;
}

.floating-review-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

.floating-review-card:hover {
    transform: scale(1.03);
}

#blog-masonry .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#blog-masonry .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.border-danger {
    border: 1px solid var(--danger);
}

.border-start-danger {
    border-left: 1px solid var(--danger);
}

.error-clean {
    background-color: #ffffff;
    padding: 100px 0;
}

.icon-circle {
    background: linear-gradient(135deg, #dc3545, #b3001b);
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.3);
}

.error-clean h1 {
    font-size: 6rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.btn-outline-danger {
    border: 1px solid var(--danger);
    color: var(--danger);
}

.btn-outline-danger:hover {
    background-color: var(--danger);
    color: #fafafa;
}

.three-line-truncate {
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-title {
    font-size: 2.5rem;
    font-weight: 700;
}

.blog-meta {
    font-size: 0.9rem;
    color: #999;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    margin-bottom: 24px;
    max-height: 400px;
    display: block;
}

.blog-content p {
    line-height: 1.8;
    font-size: 1.05rem;
}

.blog-tags span {
    margin-right: 8px;
    background-color: #f8d7da;
    color: #721c24;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.85rem;
}

.related-posts .card-title {
    font-size: 1rem;
}

.blog-content a:not(.btn) {
    color: var(--danger) !important;
}

.rotate-icon {
    transition: transform 0.3s ease;
}

.accordion-toggle[aria-expanded="true"] .rotate-icon {
    transform: rotate(180deg);
}

.accordion-item .accordion-header .nav-link {
    padding-left: 0;
}

.blog-featured-image {
    width: 100%;
    height: 275px;
    object-fit: cover;
}

.featured-img-hero {
    max-height: 340px;
}

div#formAlert {
    font-size: 1rem;
    text-align: left;
}

.privacy-policy-section {
    line-height: 1.7;
}

.privacy-policy-section h2 {
    color: #1a1a1a;
}

.privacy-policy-section ul {
    list-style-type: disc;
    margin-left: 1.2rem;
    color: #333;
}

.privacy-policy-section ul li {
    list-style-type: disc;
}

.video-embed-box {
    position: relative;
    height: 220px;
    transition: transform 0.3s ease;
}

.video-embed-box:hover {
    transform: scale(1.03);
}

.video-embed-box iframe {
    border: none;
}

.main-header .dropdown-item.active {
    background: var(--danger);
    color: #fafafa;
    margin-bottom: 4px;
}

.video-title-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(220, 53, 69, 0.9);
    color: #fff;
    font-weight: 600;
    padding: 10px;
    font-size: 0.95rem;
    text-align: center;
    transition: 0.3s ease-in-out;
}

.video-title-overlay:hover {
    background: rgba(220, 53, 69, 1);
}

.list-unstyled li {
    display: flex;
    align-items: center;
}

.pagination {
    list-style: none;
    display: inline-block;
    padding: 0;
    font-size: 16px;
}

.pagination li {
    display: inline;
    text-align: center;
}

.pagination li a {
    display: inline-block;
    margin: 0 5px;
    height: 30px;
    width: 30px;
    min-width: 30px;
    line-height: 30px;
    border-radius: 100%;
    background: rgba(220, 53, 69, 0.8);
    color: #fafafa;
}

.pagination li a:hover,
.pagination li a.active {
    background-color: var(--danger);
}

.pagination li a.prev {
    border-radius: 50px 0 0 50px;
    width: 120px;
    padding: 0px 10px;
}

.pagination li a.next {
    border-radius: 0 50px 50px 0;
    width: 120px;
    padding: 0px 10px;
}

.single-blog-page .blog-content ul li {
    list-style: disc;
}

/* .single-blog-page .blog-content img {
    aspect-ratio: 4 / 4;
} */

.single-install-sec .install-steps .step-item,
.page-services .double-install-sec .list-unstyled li,
.single-install-sec .list-unstyled li,
.page-products main .list-unstyled li,
.double-install-sec .list-unstyled li {
    align-items: flex-start !important;
}

.single-install-sec .list-unstyled li i,
.single-install-sec .install-steps .step-icon,
.page-products main .list-unstyled li i {
    margin-top: 5px;
}

.page-services .double-install-sec .list-unstyled li i,
.double-install-sec .list-unstyled li i {
    margin-top: 7px;
}

.hero-products img {
    max-height: 400px;
}

h2 a,
h5 a,
h6 a {
    color: var(--black);
}

.card-img-top {
    aspect-ratio: 5 / 4;
}

@media (max-width: 1200px) and (min-width: 992px) {
    header .btn-book-now {
        display: none !important;
    }
}

@media screen and (max-width: 768px) {
    .rating-title {
        font-size: 2rem;
    }

    .rating-subtext {
        font-size: 1rem;
    }

    .star-icons {
        font-size: 1.1rem;
    }

    .hero-slide h1 {
        font-size: 1.5rem;
    }

    .hero-slide p {
        font-size: 0.95rem;
    }

    .custom-indicators {
        bottom: 2px;
    }

    .what-we-do,
    .trusted-clients,
    .page-services,
    .page-products {
        text-align: center !important;
    }

    .what-we-do {
        padding: 70px 20px;
    }

    .page-services .services-hero-alt,
    .page-products .hero-products {
        text-align: left;
    }

    .trusted-clients .list-unstyled,
    .page-services main .list-unstyled,
    .page-services .install-steps,
    .page-products main .list-unstyled {
        text-align: left;
        padding-left: 10%;
    }

    .page-services .lock-replacement-sec .list-unstyled {
        padding-left: 30vw;
    }

    .about-page .content-block {
        text-align: center;
    }
}

@media screen and (max-width: 576px) {
    .announcement-bar .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .announcement-bar {
        font-size: 13px;
    }

    .footer .row .col-md-4 {
        margin-bottom: 2rem;
    }

    .hero-slide {
        padding: 70px 20px !important;
        background-position: right;
    }

    .hero-slide .caption {
        text-align: center;
    }

    .featured-img-hero {
        margin-bottom: 20px;
    }

    .hero-video-section {
        height: 320px;
    }

    .page-services .double-install-sec .list-unstyled {
        padding-left: 1em;
    }

    .contact-page .contact-form-section .form-card {
        margin-bottom: 16px;
    }

    .page-services .lock-replacement-sec .list-unstyled {
        padding-left: 15% !important;
    }

    .window-replacement-sec img {
        max-height: 530px;
        width: 100%;
    }

    .window-replacement-sec .card-hover img,
    .window-replacement-sec img,
    .double-install-sec .image-hover-box img {
        object-fit: cover;
        object-position: top center;
    }

    .double-install-sec .image-hover-box img {
        height: 100%;
    }

    .blog-featured-image {
        height: 320px;
        object-position: top center;
    }

    .blog-title {
        font-size: 2rem;
    }
}

@media screen and (max-width: 479px) {

    .trusted-clients .list-unstyled,
    .page-services .services-hero-alt,
    .page-services main .list-unstyled,
    .page-services .install-steps,
    .page-products main .list-unstyled {
        padding-left: 20px !important;
    }

    .page-services .lock-replacement-sec .list-unstyled {
        padding-left: 40px !important;
    }
}

@media screen and (min-width: 992px) {
    .dropdown.nav-item:hover>.dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown.nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
        background-color: #000;
        border: none;
        border-radius: 8px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        padding: 10px 0;
        min-width: 220px;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        z-index: 99;
    }
}

@media screen and (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1200px;
    }
}