/********** Template CSS **********/
/* ================================
   CAPE HOME SECURE BRAND COLORS
   ================================ */

:root {
    --bs-primary: #0878D1;
    --bs-secondary: #0B1628;
    --bs-dark: #08111F;
    --bs-light: #F5F8FC;

    /* Custom Cape Home Secure colors */
    --cape-blue: #0878D1;
    --cape-blue-dark: #055A9D;
    --cape-navy: #0B1628;
    --cape-dark: #08111F;
    --cape-light: #F5F8FC;
    --cape-border: #DCE5EF;
}


/* ================================
   GENERAL
   ================================ */

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
    background: var(--cape-blue);
    border-color: var(--cape-blue);
}

.fw-medium {
    font-weight: 600;
}

.mt-6 {
    margin-top: 5rem;
}

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

.pt-6 {
    padding-top: 5rem;
}

.pb-6 {
    padding-bottom: 5rem;
}


/* ================================
   SPINNER
   ================================ */

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

#spinner .spinner-border {
    color: var(--cape-blue) !important;
}


/* ================================
   BUTTONS
   ================================ */

.btn {
    transition: .5s;
    font-weight: 600;
    text-transform: uppercase;
}

.btn-primary {
    background-color: var(--cape-blue);
    border-color: var(--cape-blue);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--cape-blue-dark);
    border-color: var(--cape-blue-dark);
    color: #ffffff;
}

.btn-outline-primary {
    color: var(--cape-blue);
    border-color: var(--cape-blue);
}

.btn-outline-primary:hover {
    background-color: var(--cape-blue);
    border-color: var(--cape-blue);
    color: #ffffff;
}

.btn-secondary {
    background-color: var(--cape-navy);
    border-color: var(--cape-navy);
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #15263F;
    border-color: #15263F;
    color: #ffffff;
}

.btn-outline-secondary {
    color: var(--cape-navy);
    border-color: var(--cape-navy);
}

.btn-outline-secondary:hover {
    background-color: var(--cape-navy);
    border-color: var(--cape-navy);
    color: #ffffff;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-xl-square {
    width: 60px;
    height: 60px;
}

.btn-xxl-square {
    width: 75px;
    height: 75px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square,
.btn-xl-square,
.btn-xxl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/* ================================
   NAVBAR
   ================================ */

.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar {
    background-color: #ffffff;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--cape-navy);
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--cape-blue);
}

.navbar .navbar-brand h1,
.navbar .navbar-brand h2 {
    color: var(--cape-navy);
}

.navbar .navbar-toggler {
    border-color: var(--cape-blue);
}

.navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(8, 120, 209, 0.20);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}


/* ================================
   TOPBAR
   ================================ */

.bg-primary {
    background-color: var(--cape-blue) !important;
}

.text-primary {
    color: var(--cape-blue) !important;
}

.border-primary {
    border-color: var(--cape-blue) !important;
}


/* ================================
   DARK SECTIONS
   ================================ */

.bg-dark {
    background-color: var(--cape-dark) !important;
}

.text-dark {
    color: var(--cape-navy) !important;
}

.bg-secondary {
    background-color: var(--cape-navy) !important;
}


/* ================================
   LIGHT SECTIONS
   ================================ */

.bg-light {
    background-color: var(--cape-light) !important;
}


/* ================================
   ICONS
   ================================ */

.feature-icon {
    background-color: var(--cape-blue) !important;
}

.service-icon {
    background-color: var(--cape-blue);
}

.team-social a:hover {
    background-color: var(--cape-blue) !important;
    border-color: var(--cape-blue) !important;
}


/* ================================
   LINKS
   ================================ */

a {
    transition: .3s;
}

a:hover {
    color: var(--cape-blue);
}


/* ================================
   FORMS
   ================================ */

.form-control:focus,
.form-select:focus {
    border-color: var(--cape-blue);
    box-shadow: 0 0 0 0.2rem rgba(8, 120, 209, 0.15);
}


/* ================================
   PROGRESS BARS
   ================================ */

.progress-bar {
    background-color: var(--cape-blue) !important;
}


/* ================================
   MOBILE
   ================================ */

@media (max-width: 991.98px) {

    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid var(--cape-border);
    }
}

@media (min-width: 992px) {

    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}
/*** Header ***/
.carousel .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    text-align: left;

    /* Cape Home Secure dark navy overlay */
    background: rgba(8, 17, 31, 0.78);

    padding: 3rem;
    padding-left: 11rem;
    z-index: 1;
}

.carousel .carousel-caption h1,
.carousel .carousel-caption h2,
.carousel .carousel-caption h3 {
    color: #ffffff;
}

.carousel .carousel-caption p {
    color: #F5F8FC;
}

.carousel .carousel-caption .btn {
    background-color: #0878D1;
    border-color: #0878D1;
    color: #ffffff;
}

.carousel .carousel-caption .btn:hover {
    background-color: #055A9D;
    border-color: #055A9D;
}


/*** Carousel Indicators ***/
.carousel .carousel-indicators {
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    width: 80px;
    flex-direction: column;
    margin: 0;
    margin-left: 3rem;
}

.carousel .carousel-indicators [data-bs-target] {
    width: 70px;
    height: 70px;
    text-indent: 0;
    margin: 5px 0;

    /* Cape Home Secure blue */
    border: 2px solid #0878D1;

    overflow: hidden;
    opacity: 0.75;
}

.carousel .carousel-indicators [data-bs-target].active {
    border-color: #ffffff;
    opacity: 1;
}

.carousel .carousel-indicators [data-bs-target]:hover {
    border-color: #0878D1;
    opacity: 1;
}

.carousel .carousel-indicators [data-bs-target] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/*** Carousel Responsive ***/
@media (max-width: 992px) {

    .carousel .carousel-item {
        position: relative;
        min-height: 600px;
    }

    .carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .carousel .carousel-indicators [data-bs-target] {
        width: 60px;
        height: 60px;
    }

    .carousel .carousel-caption {
        padding-left: 10rem;
    }
}

@media (max-width: 768px) {

    .carousel .carousel-item {
        min-height: 500px;
    }

    .carousel .carousel-indicators [data-bs-target] {
        width: 50px;
        height: 50px;
    }

    .carousel .carousel-caption {
        padding-left: 9rem;
        padding-right: 2rem;
    }
}

@media (min-width: 1200px) {

    .carousel .carousel-item .display-1 {
        font-size: 7rem;
    }
}


/*** Page Header ***/
.page-header {
    background:
        linear-gradient(
            rgba(8, 17, 31, 0.82),
            rgba(8, 17, 31, 0.82)
        ),
        url(../img/ChatGPT\ Image\ Jul\ 29\,\ 2026\,\ 10_00_49\ AM.png)
        center center no-repeat;

    background-size: cover;
}

.page-header h1 {
    color: #ffffff;
}

.page-header .breadcrumb-item a {
    color: #0878D1;
}

.page-header .breadcrumb-item.active {
    color: #0B1628;
}


/*** About ***/
.about-img {
    position: relative;
    padding-left: 45px;
}

.about-img::before {
    position: absolute;
    content: "";
    width: 200px;
    height: 300px;
    top: 0;
    left: 0;

    /* Cape Home Secure blue border */
    border: 5px solid #0878D1;

    animation: animateUpDown 3s ease-in-out infinite;
    z-index: -1;
}


/*** About Image Accent ***/
.about-img::after {
    position: absolute;
    content: "";
    width: 80px;
    height: 80px;
    right: 0;
    bottom: -20px;

    background-color: #0B1628;

    z-index: -1;
}


@keyframes animateUpDown {
    0% {
        top: -25px;
    }

    50% {
        top: -45px;
    }

    100% {
        top: -25px;
    }
}
/*** Features ***/
.feature {
    background:
        linear-gradient(
            rgba(8, 17, 31, 0.82),
            rgba(8, 17, 31, 0.82)
        ),
        url(../img/ChatGPT\ Image\ Jul\ 29\,\ 2026\,\ 10_00_30\ AM.png)
        center center no-repeat;

    background-size: cover;
}

.feature-row {
    box-shadow: 0 0 45px rgba(8, 17, 31, 0.12);
}

.feature-item {
    background: #ffffff;
    border-color: rgba(8, 17, 31, 0.08) !important;
}

.feature-icon {
    position: relative;
    transition: .5s;
    background-color: #0878D1 !important;
}

.feature-item:hover .feature-icon {
    margin-left: 3rem;
    background-color: #055A9D !important;
}

.feature-item a {
    color: #0B1628;
}

.feature-item a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: #0B1628;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: -1;
}

.feature-item a:hover {
    color: #0878D1 !important;
}

.feature-item a:hover::after {
    background: #0878D1;
}

.experience .progress {
    height: 5px;
    background-color: #DCE5EF;
}

.experience .progress .progress-bar {
    width: 0px;
    transition: 3s;
    background-color: #0878D1 !important;
}


/*** Service ***/
.service .service-item {
    position: relative;
    margin-top: 45px;
}

.service .service-inner {
    position: relative;
    height: 100%;
    margin-top: 45px;
    background: #ffffff;
    box-shadow: 0 0 45px rgba(8, 17, 31, 0.08);
    overflow: hidden;
}

.service .service-inner::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    transition: 1s;
    background: #0878D1;
}

.service .service-inner:hover::before {
    height: 100%;
    top: 0;
}

.service .service-item img {
    margin-top: -45px;
    padding-left: 45px;
}

.service .service-item * {
    position: relative;
    transition: .5s;
    z-index: 1;
}

.service .service-item h5 {
    color: #0B1628;
}

.service .service-item p {
    color: #526273;
}

.service .service-item:hover h5,
.service .service-item:hover p {
    color: #ffffff;
}

.service .service-item:hover a {
    padding-left: 45px !important;
}


/*** Appointment ***/
.appoinment {
    background:
        linear-gradient(
            rgba(8, 17, 31, 0.86),
            rgba(8, 17, 31, 0.86)
        ),
        url(../img/ChatGPT\ Image\ Jul\ 29\,\ 2026\,\ 10_00_49\ AM.png)
        left center no-repeat;

    background-size: cover;
}

.appoinment .btn-lg-square {
    color: #0B1628;
}

.appoinment .btn-primary {
    background-color: #0878D1;
    border-color: #0878D1;
}

.appoinment .btn-primary:hover {
    background-color: #055A9D;
    border-color: #055A9D;
}


/*** Team ***/
.team .team-item {
    background: #ffffff;
    box-shadow: 0 0 45px rgba(8, 17, 31, 0.08);
}

.team .team-item .team-social {
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    transition: .5s;
    background: #0878D1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team .team-item:hover .team-social {
    width: 100%;
    left: 0;
}

.team .team-item .team-social .btn {
    opacity: 0;
    transition: .5s;
    background: #0B1628;
    border-color: #0B1628;
    color: #ffffff;
}

.team .team-item:hover .team-social .btn {
    opacity: 1;
}

.team .team-item .team-social .btn:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #0878D1;
}


/*** Testimonial ***/
.testimonial-img {
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.testimonial-img div {
    position: absolute;
    width: 100px;
    height: 100px;
    animation-duration: 5s;
}

.testimonial-img div:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: .1s;
}

.testimonial-img div:nth-child(2) {
    top: 60%;
    left: 20%;
    animation-delay: .4s;
}

.testimonial-img div:nth-child(3) {
    top: 20%;
    left: 60%;
    animation-delay: .7s;
}

.testimonial-img div:nth-child(4) {
    bottom: 10%;
    right: 10%;
    animation-delay: 1s;
}

.testimonial-img div::after {
    position: absolute;
    content: "";
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    box-shadow: 0 0 10px 10px #ffffff inset;
    z-index: 1;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 15px;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    color: #0878D1;
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #0B1628;
}
/*** Contact ***/
@media (min-width: 992px) {
    .contact-info::after {
        position: absolute;
        content: "";
        width: 0px;
        height: 100%;
        top: 0;
        left: 50%;
        border-left: 1px dashed rgba(255, 255, 255, .18);
    }
}

@media (max-width: 991.98px) {
    .contact-info::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 0px;
        top: 50%;
        left: 0;
        border-top: 1px dashed rgba(255, 255, 255, .18);
    }
}


/*** Newsletter ***/
.newsletter {
    background:
        linear-gradient(
            rgba(8, 17, 31, 0.86),
            rgba(8, 17, 31, 0.86)
        ),
        url(../img/ChatGPT\ Image\ Jul\ 29\,\ 2026\,\ 10_01_05\ AM.png)
        left center no-repeat;

    background-size: cover;
}

.newsletter h1,
.newsletter h2,
.newsletter h3 {
    color: #0B1628;
}

.newsletter .text-primary {
    color: #0878D1 !important;
}

.newsletter .btn-primary {
    background-color: #0878D1;
    border-color: #0878D1;
    color: #ffffff;
}

.newsletter .btn-primary:hover {
    background-color: #055A9D;
    border-color: #055A9D;
}


/*** Footer ***/
.footer {
    background-color: #08111F !important;
}

.footer h5 {
    color: #ffffff;
}

.footer p {
    color: #DCE5EF;
}

.footer .text-primary {
    color: #0878D1 !important;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #DCE5EF;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #0878D1;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: #0878D1;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn-square,
.footer .btn-sm-square {
    background-color: #ffffff;
    color: #0878D1;
    border: none;
    transition: .3s;
}

.footer .btn-square:hover,
.footer .btn-sm-square:hover {
    background-color: #0878D1;
    color: #ffffff;
}

.footer a {
    transition: .3s;
}


/*** Copyright ***/
.copyright {
    background: #0B1628;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.copyright p {
    color: #DCE5EF;
}

.copyright a {
    color: #ffffff;
    transition: .3s;
}

.copyright a:hover {
    color: #0878D1;
}



/* ================================
   CAPE HOME SECURE HERO
   ================================ */

.carousel .carousel-item {
    position: relative;
    overflow: hidden;
}

.carousel .carousel-item::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8, 17, 31, 0.92) 0%,
            rgba(8, 17, 31, 0.72) 45%,
            rgba(8, 17, 31, 0.30) 100%
        );

    z-index: 1;
}

.carousel .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    text-align: left;

    background: transparent;

    padding: 4rem 8rem 4rem 12rem;

    z-index: 2;
}

.carousel .carousel-caption .hero-content {
    max-width: 850px;
}

.hero-label {
    display: inline-flex;
    align-items: center;

    padding: 10px 18px;
    margin-bottom: 22px;

    background: rgba(8, 120, 209, 0.18);
    border: 1px solid rgba(8, 120, 209, 0.60);

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.carousel .carousel-caption h1 {
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1px;
}

.carousel .carousel-caption h1 .text-primary {
    color: #0878D1 !important;
}

.carousel .carousel-caption p {
    max-width: 720px;
    line-height: 1.7;
    color: #F5F8FC;
}

.carousel .carousel-caption .btn {
    font-weight: 700;
    padding-left: 28px;
    padding-right: 28px;
    transition: all .3s ease;
}

.carousel .carousel-caption .btn-primary {
    background: #0878D1;
    border-color: #0878D1;
}

.carousel .carousel-caption .btn-primary:hover {
    background: #055A9D;
    border-color: #055A9D;
    transform: translateY(-2px);
}

.carousel .carousel-caption .btn-light:hover {
    color: #0878D1;
    transform: translateY(-2px);
}


/* Carousel indicators */

.carousel .carousel-indicators {
    top: 50%;
    bottom: auto;
    left: auto;
    right: 35px;

    width: auto;

    flex-direction: column;

    margin: 0;

    transform: translateY(-50%);

    z-index: 3;
}

.carousel .carousel-indicators [data-bs-target] {
    width: 78px;
    height: 58px;

    margin: 6px 0;

    padding: 0;

    text-indent: 0;

    border: 2px solid rgba(255,255,255,.45);

    overflow: hidden;

    opacity: .6;

    transition: all .3s ease;
}

.carousel .carousel-indicators [data-bs-target].active {
    border-color: #0878D1;
    opacity: 1;

    transform: scale(1.05);
}

.carousel .carousel-indicators [data-bs-target]:hover {
    opacity: 1;
}

.carousel .carousel-indicators [data-bs-target] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Arrow controls */

.carousel .carousel-control-prev,
.carousel .carousel-control-next {
    width: 55px;
    height: 55px;

    top: auto;
    bottom: 35px;

    opacity: 1;

    background: rgba(8, 17, 31, 0.8);

    border: 1px solid rgba(255,255,255,.15);

    transition: all .3s ease;
}

.carousel .carousel-control-prev {
    left: auto;
    right: 110px;
}

.carousel .carousel-control-next {
    right: 45px;
}

.carousel .carousel-control-prev:hover,
.carousel .carousel-control-next:hover {
    background: #0878D1;
}


/* Responsive */

@media (max-width: 1200px) {

    .carousel .carousel-caption {
        padding-left: 9rem;
        padding-right: 8rem;
    }

    .carousel .carousel-caption h1 {
        font-size: 4.5rem;
    }
}

@media (max-width: 992px) {

    .carousel .carousel-item {
        min-height: 650px;
    }

    .carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .carousel .carousel-caption {
        padding: 4rem 7rem;
    }

    .carousel .carousel-caption h1 {
        font-size: 4rem;
    }

    .carousel .carousel-indicators {
        right: 20px;
    }
}

@media (max-width: 768px) {

    .carousel .carousel-item {
        min-height: 600px;
    }

    .carousel .carousel-caption {
        padding: 3rem 2rem;
        padding-right: 5rem;
    }

    .carousel .carousel-caption h1 {
        font-size: 2.7rem;
        letter-spacing: 0;
    }

    .carousel .carousel-caption p {
        font-size: 1rem;
    }

    .hero-label {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .carousel .carousel-indicators {
        display: none;
    }

    .carousel .carousel-control-prev {
        right: 75px;
        bottom: 20px;
    }

    .carousel .carousel-control-next {
        right: 15px;
        bottom: 20px;
    }
}

@media (max-width: 576px) {

    .carousel .carousel-item {
        min-height: 560px;
    }

    .carousel .carousel-caption {
        padding: 2rem 1.5rem;
    }

    .carousel .carousel-caption h1 {
        font-size: 2.2rem;
    }

    .carousel .carousel-caption .btn {
        width: 100%;
    }

    .carousel .carousel-control-prev,
    .carousel .carousel-control-next {
        width: 45px;
        height: 45px;
    }
}

/* =========================================
   CAPE HOME SECURE - ABOUT SECTION
   ========================================= */

.about-section {
    background: #f7f9fc;
}

.section-tag {
    display: inline-block;
    margin-bottom: 15px;
    padding: 7px 14px;

    background: rgba(8, 120, 209, 0.08);
    border-left: 4px solid #0878D1;

    color: #0878D1;
    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}


/* Image */

.about-image-wrapper {
    padding: 25px;
}

.about-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;

    box-shadow:
        0 25px 60px rgba(8, 17, 31, 0.14);
}

.about-img img {
    display: block;
    width: 100%;
    min-height: 500px;

    object-fit: cover;

    transition: transform .6s ease;
}

.about-img:hover img {
    transform: scale(1.04);
}


/* Decorative blue frame */

.about-decoration {
    position: absolute;

    width: 170px;
    height: 170px;

    left: 0;
    top: 0;

    border: 6px solid #0878D1;

    z-index: 0;
}

.about-image-wrapper .about-img {
    z-index: 1;
}


/* Badge */

.about-badge {
    position: absolute;

    right: 0;
    bottom: 25px;

    width: 190px;

    padding: 22px;

    border-radius: 8px;

    text-align: center;

    z-index: 3;

    box-shadow:
        0 15px 40px rgba(8, 17, 31, 0.20);
}

.about-badge i {
    color: #ffffff;
}

.about-badge strong {
    font-size: 20px;
    letter-spacing: 2px;
}

.about-badge span {
    display: block;
    margin-top: 5px;

    font-size: 12px;
    opacity: .9;
}


/* Feature cards */

.about-feature {
    height: 100%;

    padding: 18px;

    background: #ffffff;

    border: 1px solid #e5eaf0;

    border-radius: 8px;

    transition: all .3s ease;
}

.about-feature:hover {
    border-color: #0878D1;

    transform: translateY(-4px);

    box-shadow:
        0 10px 30px rgba(8, 17, 31, 0.08);
}

.feature-icon-small {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #0878D1;

    color: #ffffff;

    border-radius: 6px;
}


/* Check list */

.about-check-list {
    padding: 22px;

    background: #ffffff;

    border-left: 4px solid #0878D1;

    box-shadow:
        0 8px 25px rgba(8, 17, 31, 0.05);
}

.about-check-list span {
    color: #3d4b5c;
    font-weight: 500;
}


/* Contact strip */

.about-contact {
    border-top: 1px solid #e2e7ed;
}

.contact-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0B1628;

    color: #ffffff;

    border-radius: 6px;
}


/* Responsive */

@media (max-width: 991.98px) {

    .about-img img {
        min-height: 400px;
    }

    .about-badge {
        right: 15px;
        bottom: 15px;
    }

}

@media (max-width: 575.98px) {

    .about-image-wrapper {
        padding: 10px;
    }

    .about-img img {
        min-height: 320px;
    }

    .about-decoration {
        width: 100px;
        height: 100px;
    }

    .about-badge {
        width: 150px;
        padding: 15px;
    }

}

/* ==========================================
   CAPE HOME SECURE FEATURE SECTION
   ========================================== */

.features-section {
    background: #f7f9fc;
}

.features-section .section-tag {
    display: inline-block;
    padding: 7px 14px;
    background: rgba(8, 120, 209, 0.08);
    border-left: 4px solid #0878D1;
    color: #0878D1;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}


/* Feature row */

.feature-row {
    box-shadow: none;
}


/* Feature card */

.feature-card {
    position: relative;
    padding: 35px 30px 30px;
    background: #ffffff;
    border: 1px solid #e5eaf0;
    border-radius: 10px;
    overflow: hidden;
    transition: all .35s ease;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #0878D1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(8, 120, 209, 0.25);
    box-shadow: 0 20px 45px rgba(8, 17, 31, 0.10);
}

.feature-card:hover::before {
    transform: scaleX(1);
}


/* Number */

.feature-number {
    position: absolute;
    top: 20px;
    right: 22px;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;

    color: #b8c4d0;
}


/* Icon */

.feature-icon-modern {
    width: 68px;
    height: 68px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 24px;

    background: linear-gradient(
        135deg,
        #0878D1,
        #055A9D
    );

    color: #ffffff;

    border-radius: 10px;

    box-shadow:
        0 10px 25px rgba(8, 120, 209, 0.20);

    transition: all .35s ease;
}

.feature-icon-modern i {
    font-size: 27px;
}

.feature-card:hover .feature-icon-modern {
    transform: scale(1.08) rotate(-3deg);
}


/* Content */

.feature-label {
    display: block;
    margin-bottom: 8px;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.5px;

    color: #0878D1;
}

.feature-content h4 {
    color: #0B1628;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
}

.feature-content p {
    color: #637184;
    line-height: 1.7;
    margin-bottom: 22px;
}


/* Link */

.feature-link {
    display: inline-flex;
    align-items: center;

    color: #0B1628;

    font-size: 13px;
    font-weight: 700;

    text-transform: uppercase;
    text-decoration: none;

    letter-spacing: .5px;

    transition: all .3s ease;
}

.feature-link i {
    color: #0878D1;
    transition: transform .3s ease;
}

.feature-link:hover {
    color: #0878D1;
}

.feature-link:hover i {
    transform: translateX(5px);
}


/* Bottom CTA */

.feature-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    padding: 30px 35px;

    background: #0B1628;

    border-radius: 10px;

    box-shadow:
        0 18px 40px rgba(8, 17, 31, 0.12);
}

.feature-cta-label {
    display: block;
    margin-bottom: 6px;

    color: #0878D1;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.feature-cta h3 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
}

.feature-cta p {
    color: #c9d4df;
}


/* Responsive */

@media (max-width: 991.98px) {

    .feature-cta {
        align-items: flex-start;
        flex-direction: column;
    }

}

@media (max-width: 575.98px) {

    .feature-card {
        padding: 30px 25px 25px;
    }

    .feature-cta {
        padding: 25px;
    }

    .feature-cta h3 {
        font-size: 19px;
    }

    .feature-cta .btn {
        width: 100%;
    }

}

/* ==========================================
   WHY CHOOSE CAPE HOME SECURE
   ========================================== */

.why-choose-content {
    max-width: 760px;
    margin-left: auto;
}

.why-label {
    display: inline-block;

    padding: 7px 14px;
    margin-bottom: 18px;

    background: rgba(8, 120, 209, 0.15);
    border-left: 4px solid #0878D1;

    color: #ffffff;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}


/* Trust cards */

.why-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;

    height: 100%;
    padding: 22px;

    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);

    transition: all .3s ease;
}

.why-card:hover {
    background: rgba(8, 120, 209, 0.14);
    border-color: rgba(8, 120, 209, 0.5);

    transform: translateY(-5px);
}

.why-card-icon {
    width: 52px;
    height: 52px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0878D1;
    color: #ffffff;

    border-radius: 7px;
}

.why-card-icon i {
    font-size: 20px;
}

.why-card h5 {
    color: #ffffff;
    margin-bottom: 7px;
    font-weight: 700;
}

.why-card p {
    margin: 0;
    color: #c7d1dc;
    line-height: 1.6;
    font-size: 14px;
}


/* Quality panel */

.why-quality-panel {
    padding: 30px;

    border: 1px solid rgba(8, 120, 209, 0.5);
    border-top: 5px solid #0878D1;

    background: rgba(8, 17, 31, 0.65);
}

.why-quality-panel .progress {
    height: 5px;
    background: rgba(255, 255, 255, 0.14);
}

.why-quality-panel .progress-bar {
    background: #0878D1 !important;
}


/* Buttons */

.feature .btn-primary {
    background: #0878D1;
    border-color: #0878D1;
}

.feature .btn-primary:hover {
    background: #055A9D;
    border-color: #055A9D;
    transform: translateY(-2px);
}

.feature .btn-light:hover {
    color: #0878D1;
}


/* Mobile */

@media (max-width: 991.98px) {

    .why-choose-content {
        max-width: 100%;
        padding: 0 20px 40px;
    }

}

@media (max-width: 575.98px) {

    .why-card {
        padding: 18px;
    }

    .why-quality-panel {
        padding: 22px;
    }

}

/* ==========================================
   CAPE HOME SECURE SERVICES
   ========================================== */

.service {
    background: #f7f9fc;
}

.service .section-tag {
    display: inline-block;

    padding: 7px 14px;

    background: rgba(8, 120, 209, 0.08);
    border-left: 4px solid #0878D1;

    color: #0878D1;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}


/* Service Card */

.service-card {
    position: relative;

    background: #ffffff;

    border: 1px solid #e4e9ef;

    border-radius: 10px;

    overflow: hidden;

    box-shadow: 0 10px 35px rgba(8, 17, 31, 0.06);

    transition: all .35s ease;
}

.service-card:hover {
    transform: translateY(-8px);

    border-color: rgba(8, 120, 209, 0.25);

    box-shadow: 0 20px 45px rgba(8, 17, 31, 0.12);
}


/* Image */

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.06);
}


/* Number */

.service-number {
    position: absolute;

    top: 18px;
    right: 18px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0878D1;

    color: #ffffff;

    font-weight: 800;

    border-radius: 50%;

    box-shadow: 0 8px 20px rgba(8, 120, 209, .25);
}


/* Content */

.service-content {
    padding: 30px;
}

.service-label {
    display: block;

    margin-bottom: 8px;

    color: #0878D1;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.service-content h4 {
    color: #0B1628;

    font-size: 22px;
    font-weight: 700;

    margin-bottom: 14px;
}

.service-content p {
    color: #657385;

    line-height: 1.7;

    margin-bottom: 22px;
}


/* Service Link */

.service-link {
    display: inline-flex;
    align-items: center;

    color: #0B1628;

    font-size: 13px;
    font-weight: 700;

    text-transform: uppercase;
    text-decoration: none;

    transition: all .3s ease;
}

.service-link i {
    color: #0878D1;

    transition: transform .3s ease;
}

.service-link:hover {
    color: #0878D1;
}

.service-link:hover i {
    transform: translateX(5px);
}


/* Highlight Card */

.service-card-highlight {
    display: flex;
    align-items: center;

    background:
        linear-gradient(
            135deg,
            #0B1628,
            #08111F
        );

    border: none;
}

.service-highlight-content {
    padding: 40px 35px;

    color: #ffffff;
}

.service-highlight-icon {
    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    background: #0878D1;

    color: #ffffff;

    border-radius: 10px;
}

.service-highlight-icon i {
    font-size: 27px;
}

.service-highlight-content h3 {
    color: #ffffff;

    font-size: 24px;
    font-weight: 700;

    margin-bottom: 14px;
}

.service-highlight-content p {
    color: #cbd5df;

    line-height: 1.7;

    margin-bottom: 25px;
}

.service-highlight-content .btn-light:hover {
    color: #0878D1;
}


/* Responsive */

@media (max-width: 767.98px) {

    .service-image {
        height: 230px;
    }

    .service-content {
        padding: 25px;
    }

    .service-highlight-content {
        padding: 30px 25px;
    }

}

/* ==========================================
   CAPE HOME SECURE - QUOTE SECTION
   ========================================== */

.appoinment {
    background:
        linear-gradient(
            90deg,
            rgba(8, 17, 31, 0.94),
            rgba(8, 17, 31, 0.78)
        ),
        url("../img/ChatGPT Image Jul 29, 2026, 10_00_49 AM.png")
        center center / cover no-repeat;
}


/* Label */

.quote-label {
    display: inline-block;

    padding: 7px 14px;
    margin-bottom: 18px;

    border-left: 4px solid #0878D1;

    background: rgba(8, 120, 209, 0.12);

    color: #ffffff;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.5px;
}


/* Details */

.quote-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.quote-detail-item {
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 15px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.quote-detail-item:last-child {
    border-bottom: none;
}

.quote-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0878D1;

    color: #ffffff;

    border-radius: 7px;
}

.quote-detail-item small {
    display: block;

    margin-bottom: 3px;

    color: #9eafc1;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.2px;
}

.quote-detail-item strong,
.quote-detail-item a,
.quote-detail-item span {
    color: #ffffff;

    font-size: 15px;
    font-weight: 600;

    text-decoration: none;
}

.quote-detail-item a:hover {
    color: #0878D1;
}


/* Quote Form */

.quote-form {
    background: #ffffff;

    padding: 40px;

    border-radius: 10px;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.20);
}

.quote-form-header {
    margin-bottom: 25px;
}

.quote-form-header > span {
    color: #0878D1;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.quote-form-header h2 {
    margin-top: 8px;
    margin-bottom: 8px;

    color: #0B1628;

    font-size: 28px;
    font-weight: 800;
}

.quote-form-header p {
    color: #667485;
    margin-bottom: 0;
}


/* Form */

.quote-form .form-control,
.quote-form .form-select {
    border: 1px solid #e2e8ef !important;

    background: #f7f9fc;

    color: #0B1628;

    border-radius: 6px;
}

.quote-form .form-control:focus,
.quote-form .form-select:focus {
    border-color: #0878D1 !important;

    box-shadow:
        0 0 0 3px rgba(8, 120, 209, 0.10);

    background: #ffffff;
}


/* ==========================================
   NEWSLETTER / CTA
   ========================================== */

.newsletter {
    background:
        linear-gradient(
            rgba(8, 17, 31, 0.90),
            rgba(8, 17, 31, 0.90)
        ),
        url("../img/ChatGPT Image Jul 29, 2026, 10_01_05 AM.png")
        center center / cover no-repeat;
}

.newsletter-card {
    padding: 38px;

    background: #ffffff;

    border-radius: 10px;

    box-shadow:
        0 18px 45px rgba(8, 17, 31, 0.10);
}

.newsletter-icon {
    width: 65px;
    height: 65px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0878D1;

    color: #ffffff;

    border-radius: 10px;

    font-size: 25px;
}

.newsletter-label {
    color: #0878D1;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.newsletter-card h2 {
    color: #0B1628;

    font-size: 28px;
    font-weight: 800;
}

.newsletter-card p {
    color: #647285;

    line-height: 1.7;
}

.newsletter-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}


/* Mobile */

@media (max-width: 991.98px) {

    .quote-form {
        padding: 30px;
    }

    .newsletter-actions {
        justify-content: flex-start;
    }

}

@media (max-width: 575.98px) {

    .quote-form {
        padding: 22px;
    }

    .newsletter-card {
        padding: 25px;
    }

    .newsletter-icon {
        width: 52px;
        height: 52px;
    }

    .newsletter-card h2 {
        font-size: 23px;
    }

    .newsletter-actions {
        flex-direction: column;
    }

    .newsletter-actions .btn {
        width: 100%;
    }

}
/* ==========================================
   CAPE HOME SECURE FOOTER
   ========================================== */

.footer {
    background: #08111F !important;
}

.footer h4,
.footer h5 {
    color: #ffffff;
}

.footer p {
    color: #C7D2DE;
}

.footer .text-primary {
    color: #0878D1 !important;
}

.footer .btn.btn-link {
    display: block;
    padding: 0;
    margin-bottom: 10px;

    color: #C7D2DE;

    text-align: left;
    text-decoration: none;

    font-weight: 400;
    text-transform: none;

    transition: all .3s ease;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";

    font-family: "Font Awesome 5 Free";
    font-weight: 900;

    color: #0878D1;

    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: #0878D1;
    padding-left: 5px;
}


/* Social buttons */

.footer .btn-square {
    background: #ffffff;
    color: #0878D1;

    border: none;

    transition: all .3s ease;
}

.footer .btn-square:hover {
    background: #0878D1;
    color: #ffffff;
    transform: translateY(-3px);
}


/* CTA */

.footer-cta {
    padding: 25px;

    background: #0B1628;

    border: 1px solid rgba(8, 120, 209, 0.35);

    border-top: 4px solid #0878D1;

    border-radius: 8px;
}

.footer-cta-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0878D1;

    color: #ffffff;

    border-radius: 7px;

    font-size: 22px;
}

.footer-cta .btn-outline-light:hover {
    background: #ffffff;
    color: #0B1628;
}


/* Copyright */

.copyright {
    background: #0B1628 !important;

    border-top: 1px solid rgba(255,255,255,.08);
}

.copyright p {
    color: #C7D2DE;
}

@media (max-width: 991.98px) {

    .footer-cta {
        margin-top: 10px;
    }

}

/* ==========================================
   CAPE HOME SECURE ABOUT PAGE
   ========================================== */

.about-page {
    background: #f7f9fc;
}

.page-header-card {
    border-radius: 8px;
    box-shadow: 0 15px 45px rgba(8, 17, 31, 0.08);
}

.section-tag {
    display: inline-block;
    padding: 7px 14px;

    background: rgba(8, 120, 209, 0.08);
    border-left: 4px solid #0878D1;

    color: #0878D1;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}


/* About Image */

.about-page-image {
    padding: 20px;
}

.about-page-image::before {
    content: "";
    position: absolute;

    top: 0;
    left: 0;

    width: 170px;
    height: 170px;

    border: 6px solid #0878D1;

    z-index: 0;
}

.about-page-image img {
    position: relative;
    z-index: 1;

    min-height: 500px;

    object-fit: cover;

    border-radius: 8px;

    box-shadow:
        0 25px 60px rgba(8, 17, 31, 0.14);
}


/* Image Badge */

.about-image-badge {
    position: absolute;

    right: 0;
    bottom: 35px;

    z-index: 3;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 18px 22px;

    background: #0B1628;
    color: #ffffff;

    border-left: 5px solid #0878D1;

    box-shadow:
        0 15px 35px rgba(8, 17, 31, 0.18);
}

.about-image-badge i {
    color: #0878D1;
    font-size: 25px;
}

.about-image-badge strong {
    display: block;

    font-size: 13px;
    letter-spacing: 1px;
}

.about-image-badge small {
    color: #bdc8d4;
}


/* Mini Cards */

.about-mini-card {
    display: flex;
    align-items: center;

    gap: 14px;

    height: 100%;

    padding: 18px;

    background: #ffffff;

    border: 1px solid #e3e8ee;

    border-radius: 7px;

    transition: all .3s ease;
}

.about-mini-card:hover {
    transform: translateY(-4px);

    border-color: rgba(8, 120, 209, .35);

    box-shadow:
        0 12px 30px rgba(8, 17, 31, .07);
}

.about-mini-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #0878D1;
    color: #ffffff;

    border-radius: 6px;
}

.about-mini-card h5 {
    color: #0B1628;
    font-size: 15px;
}

.about-mini-card small {
    color: #718096;
}


/* Benefits */

.about-benefits {
    padding: 22px;

    background: #ffffff;

    border-left: 4px solid #0878D1;

    box-shadow:
        0 8px 25px rgba(8, 17, 31, .05);
}

.about-benefits span {
    color: #4d5c6c;
    font-weight: 500;
}


/* Contact Strip */

.about-contact-strip {
    padding: 30px;

    background: #0B1628;

    border-radius: 8px;

    box-shadow:
        0 18px 40px rgba(8, 17, 31, .12);
}

.contact-strip-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #0878D1;
    color: #ffffff;

    border-radius: 6px;
}

.about-contact-strip small {
    display: block;

    color: #8fa1b3;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.2px;
}

.about-contact-strip strong,
.about-contact-strip a,
.about-contact-strip span {
    display: block;

    margin-top: 3px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.about-contact-strip a:hover {
    color: #0878D1;
}


/* Responsive */

@media (max-width: 991.98px) {

    .about-page-image img {
        min-height: 400px;
    }

    .about-image-badge {
        right: 15px;
        bottom: 25px;
    }

}

@media (max-width: 575.98px) {

    .about-page-image {
        padding: 10px;
    }

    .about-page-image img {
        min-height: 320px;
    }

    .about-page-image::before {
        width: 100px;
        height: 100px;
        border-width: 4px;
    }

    .about-image-badge {
        padding: 14px;
    }

    .about-contact-strip {
        padding: 22px;
    }

}

/* ==========================================
   CAPE HOME SECURE - FEATURE CARDS
========================================== */

.features-section {
    background: #f7f9fc;
}

.section-tag {
    display: inline-block;
    padding: 7px 14px;

    background: rgba(8, 120, 209, 0.08);
    border-left: 4px solid #0878D1;

    color: #0878D1;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}


/* Feature card */

.modern-feature-card {
    position: relative;

    padding: 32px 28px;

    background: #ffffff;

    border: 1px solid #e4e9ef;
    border-radius: 10px;

    overflow: hidden;

    transition: all .35s ease;
}

.modern-feature-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: #0878D1;

    transform: scaleX(0);
    transform-origin: left;

    transition: transform .35s ease;
}

.modern-feature-card:hover {
    transform: translateY(-8px);

    border-color: rgba(8, 120, 209, .25);

    box-shadow:
        0 20px 45px rgba(8, 17, 31, .10);
}

.modern-feature-card:hover::before {
    transform: scaleX(1);
}


/* Feature icon */

.modern-feature-icon {
    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    background: linear-gradient(
        135deg,
        #0878D1,
        #055A9D
    );

    color: #ffffff;

    border-radius: 9px;

    font-size: 25px;

    box-shadow:
        0 10px 25px rgba(8, 120, 209, .20);
}


/* Labels */

.modern-feature-label {
    display: block;

    margin-bottom: 8px;

    color: #0878D1;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.4px;
}

.modern-feature-card h4 {
    color: #0B1628;

    font-size: 20px;
    font-weight: 700;

    margin-bottom: 12px;
}

.modern-feature-card p {
    color: #647285;

    line-height: 1.7;

    margin-bottom: 22px;
}


/* Feature link */

.modern-feature-link {
    display: inline-flex;
    align-items: center;

    color: #0B1628;

    font-size: 12px;
    font-weight: 800;

    text-decoration: none;
    text-transform: uppercase;

    transition: .3s;
}

.modern-feature-link i {
    color: #0878D1;
    transition: .3s;
}

.modern-feature-link:hover {
    color: #0878D1;
}

.modern-feature-link:hover i {
    transform: translateX(5px);
}


/* ==========================================
   QUOTE CTA
========================================== */

.quote-cta-section {
    padding: 0 0 5rem;

    background: #f7f9fc;
}

.quote-cta {
    padding: 40px;

    background:
        linear-gradient(
            135deg,
            #0B1628,
            #08111F
        );

    border-radius: 10px;

    box-shadow:
        0 20px 50px rgba(8, 17, 31, .15);
}

.quote-cta-label {
    display: block;

    margin-bottom: 8px;

    color: #0878D1;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.quote-cta h2 {
    color: #ffffff;

    font-size: 30px;
    font-weight: 800;

    margin-bottom: 10px;
}

.quote-cta p {
    color: #c5d0dc;

    margin: 0;
}

.quote-cta-buttons {
    display: flex;
    justify-content: flex-end;

    gap: 12px;

    flex-wrap: wrap;
}


/* ==========================================
   FOOTER
========================================== */

.footer {
    background: #08111F !important;
}

.footer h4,
.footer h5 {
    color: #ffffff;
}

.footer p {
    color: #c7d2de;
}

.footer .text-primary {
    color: #0878D1 !important;
}

.footer .btn.btn-link {
    display: block;

    padding: 0;
    margin-bottom: 10px;

    color: #c7d2de;

    text-align: left;
    text-decoration: none;

    font-weight: 400;
    text-transform: none;

    transition: all .3s ease;
}

.footer .btn.btn-link::before {
    content: "\f105";

    font-family: "Font Awesome 5 Free";
    font-weight: 900;

    color: #0878D1;

    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: #0878D1;
    padding-left: 5px;
}


/* Social */

.footer .btn-square {
    background: #ffffff;
    color: #0878D1;

    border: none;

    transition: all .3s ease;
}

.footer .btn-square:hover {
    background: #0878D1;
    color: #ffffff;

    transform: translateY(-3px);
}


/* Footer CTA */

.footer-cta {
    padding: 28px;

    background: #0B1628;

    border: 1px solid rgba(8,120,209,.35);

    border-top: 4px solid #0878D1;

    border-radius: 8px;
}

.footer-cta-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0878D1;

    color: #ffffff;

    border-radius: 7px;

    font-size: 22px;
}


/* Copyright */

.copyright {
    background: #0B1628 !important;

    border-top: 1px solid rgba(255,255,255,.08);
}

.copyright p {
    color: #c7d2de;
}


/* Mobile */

@media (max-width: 991.98px) {

    .quote-cta-buttons {
        justify-content: flex-start;
    }

}

@media (max-width: 575.98px) {

    .modern-feature-card {
        padding: 25px;
    }

    .quote-cta {
        padding: 28px 22px;
    }

    .quote-cta h2 {
        font-size: 24px;
    }

    .quote-cta-buttons {
        flex-direction: column;
    }

    .quote-cta-buttons .btn {
        width: 100%;
    }

}

.page-header-card {
    border-radius: 8px;
    box-shadow: 0 15px 45px rgba(8, 17, 31, 0.08);
}

.page-header-card .section-tag {
    display: inline-block;
    padding: 7px 14px;
    background: rgba(8, 120, 209, 0.08);
    border-left: 4px solid #0878D1;
    color: #0878D1;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.page-header-card h1 {
    color: #0B1628;
    font-weight: 800;
}

.page-header-card .breadcrumb a {
    color: #0878D1;
    text-decoration: none;
}

.page-header-card .breadcrumb-item.active {
    color: #647285;
}

/* ==========================================
   CAPE HOME SECURE SERVICES
========================================== */

.service-section {
    background: #f7f9fc;
}


/* Service card */

.service-card {
    background: #ffffff;

    border: 1px solid #e4e9ef;
    border-radius: 10px;

    overflow: hidden;

    box-shadow:
        0 10px 35px rgba(8, 17, 31, 0.06);

    transition: all .35s ease;
}

.service-card:hover {
    transform: translateY(-8px);

    border-color: rgba(8, 120, 209, .30);

    box-shadow:
        0 22px 50px rgba(8, 17, 31, .12);
}


/* Image */

.service-image {
    position: relative;

    height: 260px;

    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.06);
}


/* Badge */

.service-badge {
    position: absolute;

    left: 20px;
    bottom: 20px;

    padding: 7px 13px;

    background: #0878D1;
    color: #ffffff;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.2px;

    border-radius: 4px;
}


/* Content */

.service-content {
    padding: 30px;
}

.service-content h4 {
    color: #0B1628;

    font-size: 21px;
    font-weight: 750;

    margin-bottom: 13px;
}

.service-content p {
    color: #687789;

    line-height: 1.7;

    margin-bottom: 22px;
}


/* Link */

.service-link {
    display: inline-flex;
    align-items: center;

    color: #0B1628;

    font-size: 12px;
    font-weight: 800;

    text-transform: uppercase;
    text-decoration: none;

    transition: all .3s ease;
}

.service-link i {
    color: #0878D1;

    transition: transform .3s ease;
}

.service-link:hover {
    color: #0878D1;
}

.service-link:hover i {
    transform: translateX(5px);
}


/* Bottom CTA */

.service-bottom-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 32px 38px;

    background: #0B1628;

    border-radius: 10px;

    box-shadow:
        0 18px 45px rgba(8, 17, 31, .12);
}

.service-bottom-cta span {
    display: block;

    margin-bottom: 5px;

    color: #0878D1;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.service-bottom-cta h3 {
    color: #ffffff;

    font-size: 23px;
    font-weight: 700;

    margin: 0;
}


/* Mobile */

@media (max-width: 767.98px) {

    .service-image {
        height: 230px;
    }

    .service-content {
        padding: 25px;
    }

    .service-bottom-cta {
        flex-direction: column;
        align-items: flex-start;

        padding: 28px;
    }

    .service-bottom-cta .btn {
        width: 100%;
    }

}

/* ==========================================
   CAPE HOME SECURE QUOTE SECTION
========================================== */

.appoinment {
    background:
        linear-gradient(
            90deg,
            rgba(8, 17, 31, 0.94),
            rgba(8, 17, 31, 0.82)
        ),
        url("../img/ChatGPT Image Jul 29, 2026, 10_00_49 AM.png")
        center center / cover no-repeat;
}

.quote-label {
    display: inline-block;

    margin-bottom: 18px;
    padding: 7px 14px;

    background: rgba(8, 120, 209, 0.12);
    border-left: 4px solid #0878D1;

    color: #ffffff;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.quote-contact-item {
    display: flex;
    align-items: center;

    gap: 15px;

    padding: 17px 0;

    border-bottom: 1px solid rgba(255,255,255,.12);
}

.quote-contact-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #0878D1;
    color: #ffffff;

    border-radius: 7px;

    font-size: 20px;
}

.quote-contact-item span {
    display: block;

    margin-bottom: 4px;

    color: #91a3b6;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.2px;
}

.quote-contact-item strong,
.quote-contact-item a {
    color: #ffffff;

    font-size: 15px;
    font-weight: 600;

    text-decoration: none;
}

.quote-contact-item a:hover {
    color: #0878D1;
}


/* Form */

.quote-form {
    padding: 40px;

    background: #ffffff;

    border-radius: 10px;

    box-shadow:
        0 25px 65px rgba(0,0,0,.20);
}

.quote-form-heading {
    margin-bottom: 25px;
}

.quote-form-heading > span {
    color: #0878D1;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.quote-form-heading h2 {
    color: #0B1628;

    font-size: 28px;
    font-weight: 800;

    margin-top: 8px;
    margin-bottom: 8px;
}

.quote-form-heading p {
    color: #687789;
}

.quote-form .form-control,
.quote-form .form-select {
    border: 1px solid #e1e7ed !important;

    background: #f7f9fc;

    color: #0B1628;

    border-radius: 6px;
}

.quote-form .form-control:focus,
.quote-form .form-select:focus {
    border-color: #0878D1 !important;

    background: #ffffff;

    box-shadow:
        0 0 0 3px rgba(8,120,209,.10);
}


/* ==========================================
   CONTACT CTA
========================================== */

.newsletter {
    background:
        linear-gradient(
            rgba(8,17,31,.90),
            rgba(8,17,31,.90)
        ),
        url("../img/ChatGPT Image Jul 30, 2026, 03_21_33 PM.png")
        center center / cover no-repeat;
}

.contact-cta {
    padding: 38px;

    background: #ffffff;

    border-radius: 10px;

    box-shadow:
        0 18px 45px rgba(8,17,31,.10);
}

.contact-cta-icon {
    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #0878D1;

    color: #ffffff;

    border-radius: 9px;

    font-size: 24px;
}

.contact-cta-label {
    color: #0878D1;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.contact-cta h2 {
    color: #0B1628;

    font-size: 27px;
    font-weight: 800;

    margin: 7px 0 10px;
}

.contact-cta p {
    color: #667586;

    margin: 0;
    line-height: 1.7;
}

.contact-cta-buttons {
    display: flex;
    flex-direction: column;

    gap: 10px;
}

@media (max-width: 991.98px) {

    .quote-form {
        padding: 30px;
    }

}

@media (max-width: 575.98px) {

    .quote-form {
        padding: 22px;
    }

    .contact-cta {
        padding: 25px;
    }

    .contact-cta h2 {
        font-size: 22px;
    }

}

/* ==========================================
   CAPE HOME SECURE FOOTER
========================================== */

.footer {
    background: #08111F !important;
}

.footer h4,
.footer h5 {
    color: #ffffff;
}

.footer p {
    color: #C7D2DE;
}

.footer .text-primary {
    color: #0878D1 !important;
}


/* Footer Links */

.footer .btn.btn-link {
    display: block;

    padding: 0;
    margin-bottom: 10px;

    color: #C7D2DE;

    text-align: left;
    text-decoration: none;

    font-weight: 400;
    text-transform: none;

    transition: all .3s ease;
}

.footer .btn.btn-link::before {
    content: "\f105";

    font-family: "Font Awesome 5 Free";
    font-weight: 900;

    color: #0878D1;

    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: #0878D1;
    padding-left: 5px;
}


/* Social Buttons */

.footer .btn-square {
    background: #ffffff;
    color: #0878D1;

    border: none;

    transition: all .3s ease;
}

.footer .btn-square:hover {
    background: #0878D1;
    color: #ffffff;

    transform: translateY(-3px);
}


/* Footer CTA */

.footer-cta {
    padding: 28px;

    background: #0B1628;

    border: 1px solid rgba(8,120,209,.35);

    border-top: 4px solid #0878D1;

    border-radius: 8px;
}

.footer-cta-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0878D1;

    color: #ffffff;

    border-radius: 7px;

    font-size: 22px;
}

.footer-cta .btn-outline-light:hover {
    background: #ffffff;
    color: #0B1628;
}


/* Mobile */

@media (max-width: 767.98px) {

    .footer-cta {
        margin-top: 10px;
    }

}
/* ==========================================
   CAPE HOME SECURE CONTACT SECTION
========================================== */

.contact-section {
    background: #f7f9fc;
}


/* Intro */

.contact-intro {
    padding-right: 25px;
}

.contact-intro .section-tag {
    display: inline-block;

    padding: 7px 14px;

    background: rgba(8, 120, 209, 0.08);
    border-left: 4px solid #0878D1;

    color: #0878D1;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.contact-intro h1 {
    color: #0B1628;
    font-weight: 800;
    line-height: 1.1;
}


/* Contact cards */

.contact-info-card {
    position: relative;

    display: flex;
    align-items: center;

    gap: 15px;

    padding: 18px;

    margin-bottom: 14px;

    background: #ffffff;

    border: 1px solid #e2e8ef;
    border-radius: 8px;

    color: #0B1628;

    text-decoration: none;

    transition: all .3s ease;
}

.contact-info-card:hover {
    transform: translateX(5px);

    border-color: rgba(8,120,209,.35);

    box-shadow:
        0 10px 30px rgba(8,17,31,.07);

    color: #0B1628;
}

.contact-info-icon {
    width: 50px;
    height: 50px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0878D1;

    color: #ffffff;

    border-radius: 7px;

    font-size: 20px;
}

.contact-info-card small {
    display: block;

    margin-bottom: 3px;

    color: #7A8796;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.2px;
}

.contact-info-card strong {
    display: block;

    color: #0B1628;

    font-size: 14px;
}

.contact-arrow {
    margin-left: auto;

    color: #0878D1;

    transition: transform .3s ease;
}

.contact-info-card:hover .contact-arrow {
    transform: translateX(4px);
}


/* Form */

.contact-form-card {
    padding: 40px;

    background: #ffffff;

    border-radius: 10px;

    box-shadow:
        0 20px 55px rgba(8,17,31,.09);
}

.contact-form-header {
    margin-bottom: 25px;
}

.contact-form-header > span {
    color: #0878D1;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.contact-form-header h2 {
    margin-top: 8px;
    margin-bottom: 8px;

    color: #0B1628;

    font-size: 30px;
    font-weight: 800;
}

.contact-form-header p {
    color: #687789;
    margin-bottom: 0;
}


/* Form controls */

.contact-form-card .form-control,
.contact-form-card .form-select {
    border: 1px solid #e1e7ed !important;

    background: #f7f9fc;

    color: #0B1628;

    border-radius: 6px;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    background: #ffffff;

    border-color: #0878D1 !important;

    box-shadow:
        0 0 0 3px rgba(8,120,209,.10);
}


/* Map */

.contact-map-wrapper {
    overflow: hidden;

    background: #ffffff;

    border-radius: 10px;

    box-shadow:
        0 15px 40px rgba(8,17,31,.08);
}

.contact-map-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 22px 25px;
}

.contact-map-header span {
    display: block;

    color: #0878D1;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.3px;
}

.contact-map-header h3 {
    margin: 4px 0 0;

    color: #0B1628;

    font-size: 20px;
    font-weight: 700;
}


/* Responsive */

@media (max-width: 991.98px) {

    .contact-intro {
        padding-right: 0;
    }

}

@media (max-width: 575.98px) {

    .contact-form-card {
        padding: 25px;
    }

    .contact-form-header h2 {
        font-size: 24px;
    }

    .contact-map-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-map-header .btn {
        width: 100%;
    }

}
/* ==========================================
   CAPE HOME SECURE FOOTER
========================================== */

.footer {
    background: #08111F !important;
}

.footer h4,
.footer h5 {
    color: #ffffff;
}

.footer p {
    color: #C7D2DE;
}

.footer .text-primary {
    color: #0878D1 !important;
}


/* Footer Links */

.footer .btn.btn-link {
    display: block;

    padding: 0;
    margin-bottom: 10px;

    color: #C7D2DE;

    text-align: left;
    text-decoration: none;

    font-weight: 400;
    text-transform: none;

    transition: all .3s ease;
}

.footer .btn.btn-link::before {
    content: "\f105";

    font-family: "Font Awesome 5 Free";
    font-weight: 900;

    color: #0878D1;

    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: #0878D1;
    padding-left: 5px;
}


/* Social Buttons */

.footer .btn-square {
    background: #ffffff;
    color: #0878D1;

    border: none;

    transition: all .3s ease;
}

.footer .btn-square:hover {
    background: #0878D1;
    color: #ffffff;

    transform: translateY(-3px);
}


/* Footer CTA */

.footer-cta {
    padding: 28px;

    background: #0B1628;

    border: 1px solid rgba(8, 120, 209, 0.35);

    border-top: 4px solid #0878D1;

    border-radius: 8px;
}

.footer-cta-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0878D1;

    color: #ffffff;

    border-radius: 7px;

    font-size: 22px;

    margin-bottom: 15px;
}

.footer-cta-label {
    display: block;

    color: #0878D1;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.footer-cta .btn-outline-light:hover {
    background: #ffffff;
    color: #0B1628;
}


/* Copyright */

.copyright {
    background: #0B1628 !important;
    border-top: 1px solid rgba(255,255,255,.08);
}


/* Mobile */

@media (max-width: 991.98px) {

    .footer-cta {
        margin-top: 10px;
    }




/* Mobile */

@media (max-width: 991.98px) {

    .footer-cta {
        margin-top: 10px;
    }

}

.navbar {
    min-height: 80px;
}

.navbar-toggler {
    margin-top: 0;
    margin-bottom: 0;
}
@media (max-width: 991.98px) {

    .navbar-brand h1 {
        font-size: 1.6rem;
        margin-bottom: 0;
        line-height: 1;
    }

}
