/********** Template CSS **********/
:root {
    --primary: #0F172A;
    --secondary: #F97316;
    --tertiary: #FDBA74;
    --light: #FFF7ED;
    --dark: #1E293B;
}


body {
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    font-family: 'Jost', sans-serif;
}

/********** Navbar & Brand **********/
.navbar {
    padding: 12px 0;
    transition: all 0.3s ease;
    background: #ffffff;
}

.navbar-light .navbar-nav .nav-link {
    margin: 0 8px;
    padding: 8px 14px;
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
    transition: all 0.3s ease;
    border-radius: 6px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    background: var(--primary);
    color: #ffffff !important;
}

.navbar-toggler {
    border: 2px solid var(--primary);
    padding: 6px 12px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Brand Logo */
.logo {
    width: 65px;
    height: auto;
}

/* Brand Text */
.brand-text {
    line-height: 1.1;
}

.brand-name {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
    white-space: nowrap;
}

.see {
    color: #f47c20;
}

.and {
    color: #1f6f3f;
    margin: 0 4px;
}

.explore {
    color: #1ba7c9;
}

.tagline {
    margin: 3px 0 0 0;
    font-size: 12px;
    letter-spacing: 3px;
    color: #1f6f3f;
}

/********** Responsive Navbar **********/
@media (max-width: 992px) {
    .brand-name {
        font-size: 20px;
        white-space: normal;
    }

    .tagline {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .logo {
        width: 55px;
    }

    .navbar-nav {
        margin-top: 10px;
        text-align: center;
    }

    .navbar-light .navbar-nav .nav-link {
        margin: 6px 0;
    }
}

/********** HERO HEADER **********/
.hero-header {
    position: relative;
    height: 80vh;
    min-height: 420px;
    margin: 30px;
    background: transparent;
    overflow: hidden;
    /* ensures layers stay inside */
}

/* Background Window */
.hero-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
    z-index: 0;
    /* BACKGROUND */
}

/* Background Image */
.hero-bg img {
    position: absolute;
    top: 0;
    left: -10%;
    /* start position */
    width: 120%;
    /* extra width for sliding */
    height: 100%;
    object-fit: cover;
    animation: slideHero 18s linear infinite alternate;
}

/* Dark Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 25px;
    z-index: 1;
    /* MIDDLE LAYER */
    pointer-events: none;
    /* clicks go through */
}

/* Center Content / Text */
.hero-content {
    position: relative;
    z-index: 2;
    /* TOP LAYER */
    height: 100%;
    width: 75%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(25px, 4vw, 60px);
}

/* Typography */
.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.hero-text {
    font-size: 17px;
    color: #f8f9fa;
    line-height: 1.6;
}


/********** MOBILE RESPONSIVE **********/
@media (max-width: 768px) {

    .hero-header {
        margin: 15px;
        height: 80vh;
    }

    .hero-bg {
        width: 100%;
        left: 0;
        transform: none;
        border-radius: 18px;
    }

    .hero-overlay {
        width: 100%;
        left: 0;
        transform: none;
        border-radius: 18px;
    }

    .hero-content {
        width: 100%;
    }

    .hero-title {
        font-size: 26px;
    }

    /* Full edge-to-edge slide */
    .hero-bg img {
        width: 250%;
        /* image bigger than container */
        transform: translateX(-20%);
        /* start position */
        animation: slideHeroMobile 10s linear infinite alternate;
        /* back-and-forth */
    }

    @keyframes slideHeroMobile {
        0% {
            transform: translateX(0%);
            /* left edge of image aligns with container */
        }

        100% {
            transform: translateX(-55%);
            /* right edge of image aligns with container */
        }
    }
}

/********** TABLET **********/
@media (min-width: 769px) and (max-width: 1024px) {

    .hero-header {
        margin: 20px;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-text {
        font-size: 15px;
    }

    .hero-box1 {
        width: 92%;
    }
}


/********** Search Bar **********/
.search-bar {
    position: relative;
    z-index: 99;
    margin-top: -60px;
    padding: 0 15px;
}

.search-bar .container {
    position: relative;
}

.search-bar .position-relative {
    padding: 20px 25px;
    background: rgba(19, 53, 123, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.search-bar input {
    height: 55px;
    padding: 0 65px 0 25px;
    font-size: 16px;
    background: #ffffff;
    border: none;
}

.search-bar input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(19, 53, 123, 0.3);
}

.search-bar button {
    height: 45px;
    font-size: 14px;
    right: 30px;
    background: var(--primary);
    color: white;
    border: none;
}

.search-bar button:hover {
    background: var(--secondary);
}

/********** Section Titles **********/
.section-title {
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
    color: var(--primary);
}

.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    bottom: -8px;
    left: 0;
    background: var(--primary);
    /* make sure line is visible */
}

/* REMOVE circle */
.section-title::after {
    display: none;
}


/* About Title */
.section-about-title {
    position: relative;
    display: inline-block;
    color: var(--primary);
    letter-spacing: 1px;
}

.section-about-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    bottom: -8px;
    right: 0;
    background: var(--primary);
}

/* REMOVE circle */
.section-title::before,
.section-title::after,
.section-about-title::before,
.section-about-title::after {
    display: none;
}



.subscribe-title {
    position: relative;
    display: inline-block;
    color: var(--primary);
    letter-spacing: 1px;
}

.subscribe-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    bottom: -8px;
    right: 0;
}

.subscribe-title::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    bottom: -13px;
    right: 30px;
    border: 2px solid var(--primary);
    border-radius: 10px;
}

/********** About Section **********/
.about img {
    transition: transform 0.5s;
}

.about:hover img {
    transform: scale(1.02);
}

/********** Services Section **********/
.service-content-inner {
    transition: all 0.3s;
}

.service-content-inner:hover {
    background: var(--primary) !important;
}

.service-content-inner:hover .service-content h5,
.service-content-inner:hover .service-content p,
.service-content-inner:hover .service-icon i {
    color: #ffffff !important;
}

.service-content-inner:hover .service-content h5::before {
    color: var(--primary);
    background: #ffffff;
}

/********** Blog Section **********/
.blog-item {
    transition: all 0.3s;
}

.blog-item:hover {
    transform: translateY(-5px);
}

.blog-img {
    position: relative;
    overflow: hidden;
}

.blog-img-inner {
    position: relative;
    overflow: hidden;
}

.blog-img-inner img {
    transition: transform 0.5s;
}

.blog-item:hover .blog-img-inner img {
    transform: scale(1.1);
}

.blog-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0;
    transition: all 0.3s;
    transform: translateY(-20px);
}

.blog-item:hover .blog-icon {
    opacity: 1;
    transform: translateY(0);
}

.blog-icon a {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 50%;
}

.blog-info {
    background: var(--light);
}

.btn-hover {
    transition: all 0.3s;
}

.btn-hover:hover {
    color: #ffffff !important;
}

/********** Contact Section **********/
.contact .btn-primary {
    border-radius: 30px;
}

.contact .form-floating input,
.contact .form-floating textarea {
    background: var(--light);
}

/********** Footer **********/
.footer {
    background: #0d1221;
}

.footer-item a {
    color: #b0b0b0;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.footer-item a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-item h4 {
    color: #ffffff;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 10px;
    /* Optional: display inline-block keeps the underline from stretching full width */
    display: inline-block;
}

/* Fix for the 3-row mobile grid */
@media (max-width: 767.98px) {
    .footer-item .col-6 {
        text-align: left;
        /* Aligns the links to the left for better readability on mobile */
        padding-left: 15%;
        /* Slight nudge to center the group visually */
    }
}

/********** ================= RESPONSIVE CSS ================= **********/

/* Extra Large Devices (1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Large Devices (992px to 1199.98px) */
@media (max-width: 1199.98px) {
    .brand-name {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .tagline {
        font-size: 12px;
        letter-spacing: 3px;
    }

    .logo {
        width: 70px;
    }

    .carousel-caption {
        bottom: 15%;
    }

    .carousel-caption h1 {
        font-size: 2.5rem;
    }

    .about .h-100 {
        min-height: 400px;
    }
}

/* Medium Devices (768px to 991.98px) */
@media (max-width: 991.98px) {

    /* Navbar */
    .navbar {
        padding: 10px 0;
        background: white;
    }

    .navbar-light .navbar-nav .nav-link {
        padding: 12px 20px;
        margin: 5px 0;
        display: block;
        font-size: 15px;
    }

    .navbar-collapse {
        background: #ffffff;
        padding: 20px;
        margin-top: 10px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        max-height: 80vh;
        overflow-y: auto;
    }

    .navbar-toggler {
        border-color: var(--primary);
    }

    /* Brand */
    .brand-name {
        font-size: 24px;
        letter-spacing: 2px;
    }

    .tagline {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .logo {
        width: 60px;
    }

    /* Carousel */
    .carousel-header {
        margin-top: 0;
    }

    .carousel-item::before {
        background: rgba(0, 0, 0, 0.5);
    }

    .carousel-item img {
        height: 450px;
    }

    .carousel-caption {
        bottom: 5%;
        padding: 0 15px;
    }

    .carousel-caption .p-3 {
        padding: 20px;
        background: rgba(0, 0, 0, 0.5);
    }

    .carousel-caption h1 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .carousel-caption h4 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .carousel-caption p {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }

    .carousel-caption .btn {
        padding: 10px 25px;
        font-size: 14px;
    }

    /* Search Bar */
    .search-bar {
        position: relative;
        top: auto;
        transform: none;
        margin-top: -40px;
        padding: 0 10px;
    }

    .search-bar .position-relative {
        padding: 15px 20px;
    }

    .search-bar input {
        height: 50px;
        font-size: 15px;
        padding: 0 60px 0 20px;
    }

    .search-bar button {
        height: 40px;
        right: 25px;
        font-size: 13px;
        padding: 5px 15px;
    }

    /* About Section */
    .about .h-100 {
        min-height: 300px;
    }

    .about img {
        min-height: 300px;
        object-fit: cover;
    }

    /* ================= FORCE ICON RIGHT FOR ALL SERVICE CARDS ================= */

    .service-content-inner {
        display: flex;
        flex-direction: row !important;
        justify-content: space-between;
        align-items: center;
    }

    /* Text always on the left */
    .service-content {
        order: 1;
        flex: 1;
    }

    /* Icon always on the right */
    .service-icon {
        order: 2;
        min-width: 90px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* ================= MOBILE STACK FIX ================= */
    @media (max-width: 991px) {
        .service-content-inner {
            flex-direction: column !important;
            text-align: center;
        }

        .service-icon {
            margin-top: 15px;
        }
    }

    /* Blog */
    .blog-item {
        margin-bottom: 30px;
    }

    /* Contact */
    .contact {
        padding: 50px 0;
    }

    .footer {
        padding-top: 60px;
        padding-bottom: 40px;
    }

    .footer-link {
        color: #d0d6e1;
        text-decoration: none;
        margin-bottom: 12px;
        transition: 0.3s ease;
    }

    .footer-link:hover {
        color: #ff7b00;
        transform: translateX(3px);
    }

    .footer-heading::after {
        content: "";
        width: 60px;
        height: 3px;
        background: #ff7b00;
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
    }

}

/* Small Devices (576px to 767.98px) */
@media (max-width: 767.98px) {

    /* Brand */
    .brand-name {
        font-size: 20px;
        letter-spacing: 1px;
    }

    .tagline {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .logo {
        width: 50px;
    }

    /* Carousel */
    .carousel-item::before {
        background: rgba(0, 0, 0, 0.6);
    }

    .carousel-item img {
        height: 400px;
    }

    .carousel-caption {
        bottom: 0;
        padding: 0 10px;
    }

    .carousel-caption .p-3 {
        padding: 15px;
        max-width: 100% !important;
        background: rgba(0, 0, 0, 0.6);
    }

    .carousel-caption h1 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .carousel-caption h4 {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .carousel-caption p {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
        display: none;
    }

    .carousel-caption .btn {
        padding: 8px 20px;
        font-size: 13px;
    }

    /* Search Bar */
    .search-bar {
        margin-top: -35px;
        padding: 0 5px;
    }

    .search-bar .position-relative {
        padding: 12px 18px;
    }

    .search-bar input {
        height: 50px;
        font-size: 15px;
        padding-left: 18px;
        padding-right: 60px;
    }

    .search-bar button {
        height: 40px;
        right: 22px;
        font-size: 13px;
        padding: 5px 12px;
    }

    /* About Section */
    .about img {
        min-height: 250px;
    }

    .about .h-100 {
        border: 30px solid transparent !important;
        border-color: transparent var(--primary) transparent var(--primary) !important;
    }

    /* Services */
    .service-content-inner {
        padding: 15px;
    }

    .service-icon i {
        font-size: 3rem;
    }

    /* Blog */
    .blog-info {
        flex-direction: column;
    }

    .blog-info .flex-fill {
        border-bottom: 1px solid #dee2e6 !important;
        border-right: none !important;
        padding: 10px 5px;
    }

    .blog-info .flex-fill:last-child {
        border-bottom: none !important;
    }

    /* Contact */
    .contact .bg-white {
        padding: 20px;
    }

    .contact i.fa-3x {
        font-size: 2.5rem;
    }

    /* Subscribe */
    .subscribe input {
        height: 55px;
        padding-left: 20px;
    }

    .subscribe button {
        right: 5px;
    }

    /* Footer */
    .footer-item {
        margin-bottom: 25px;
    }

    .footer-item h4 {
        font-size: 1.2rem;
    }
}

/* Extra Small Devices (575.98px and below) */
@media (max-width: 575.98px) {

    /* Brand - Adjust for very small screens */
    .navbar-brand {
        gap: 8px !important;
    }

    .brand-name {
        font-size: 16px;
        letter-spacing: 0.5px;
    }

    .tagline {
        font-size: 8px;
        letter-spacing: 1px;
    }

    .logo {
        width: 40px;
    }

    /* Navbar */
    .navbar {
        padding: 8px 0;
    }

    .navbar-light .navbar-brand {
        gap: 8px !important;
    }

    /* Carousel */
    .carousel-item::before {
        background: rgba(0, 0, 0, 0.7);
    }

    .carousel-item img {
        height: 350px;
        min-height: 280px;
    }

    .carousel-caption {
        bottom: 0;
        padding: 0 8px;
    }

    .carousel-caption .p-3 {
        padding: 12px 15px !important;
        max-width: 100% !important;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(3px);
    }

    .carousel-caption h1 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .carousel-caption h4 {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
        display: none;
    }

    .carousel-caption p {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
        display: none;
    }

    .carousel-caption .btn {
        padding: 8px 20px;
        font-size: 12px;
    }

    /* Hide carousel indicators on very small screens */
    .carousel-indicators {
        display: none;
    }

    /* Search Bar */
    .search-bar {
        margin-top: -30px;
        padding: 0 3px;
    }

    .search-bar .position-relative {
        padding: 10px 15px;
    }

    .search-bar input {
        height: 45px;
        font-size: 14px;
        padding-left: 15px;
        padding-right: 55px;
    }

    .search-bar button {
        height: 35px;
        right: 20px;
        font-size: 12px;
        padding: 5px 10px;
    }

    /* Section Titles */
    .section-title,
    .section-about-title,
    .subscribe-title {
        font-size: 1.2rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    /* About Section */
    .about img {
        min-height: 200px;
    }

    .about .h-100 {
        border: 20px solid transparent !important;
        border-color: transparent var(--primary) transparent var(--primary) !important;
        border-radius: 5px;
    }

    .about .row {
        flex-direction: column;
    }

    .about .col-lg-5,
    .about .col-lg-7 {
        width: 100%;
    }

    /* Services */
    .service-content-inner {
        padding: 12px;
    }

    .service-icon i {
        font-size: 2.5rem;
    }

    .service-content h5 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .service-content p {
        font-size: 0.85rem;
    }

    /* Blog */
    .blog-img-inner img {
        height: 200px;
        object-fit: cover;
    }

    .blog-content {
        padding: 15px;
    }

    .blog-content h4 {
        font-size: 1.1rem;
    }

    .blog-content p {
        font-size: 0.85rem;
    }

    .blog-info {
        font-size: 0.8rem;
    }

    .blog-icon a {
        width: 40px;
        height: 40px;
        top: 10px;
        right: 10px;
    }

    /* Contact */
    .contact {
        padding: 30px 0;
    }

    .contact .bg-white {
        padding: 15px;
    }

    .contact i.fa-3x {
        font-size: 2rem;
    }

    .contact h4 {
        font-size: 1rem;
    }

    .contact p {
        font-size: 0.9rem;
    }

    .contact h2 {
        font-size: 1.5rem;
    }

    .contact h4 {
        font-size: 0.95rem;
    }

    /* Form */
    .form-floating label {
        font-size: 0.9rem;
    }

    .btn-primary {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    /* Map */
    .ratio-16x9 {
        margin-top: 20px;
    }

    /* Subscribe */
    .subscribe h1 {
        font-size: 1.5rem;
    }

    .subscribe p {
        font-size: 0.9rem;
        padding: 0 10px;
    }

    .subscribe input {
        height: 50px;
        font-size: 14px;
        padding-left: 15px;
    }

    .subscribe button {
        height: 38px;
        right: 3px;
        font-size: 12px;
        padding: 5px 12px;
        margin-top: 2px;
        margin-right: 3px;
    }

    /* Footer */
    .footer {
        padding: 40px 0;
    }

    .footer-item h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .footer-item a {
        font-size: 0.9rem;
        padding: 5px 0;
    }

    .footer-item .btn-square {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 0.9rem;
    }

    .footer-bank-card i {
        font-size: 1.5rem;
    }

    /* Back to Top */
    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 14px;
        bottom: 15px;
        right: 15px;
    }

    /* Copyright */
    .copyright {
        padding: 15px 0;
        font-size: 0.85rem;
    }

    /* Buttons */
    .btn-primary.rounded-pill.py-3.px-5 {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* Landscape Mobile (480px max height) */
@media (max-height: 480px) and (orientation: landscape) {
    .carousel-item img {
        height: 100vh;
    }

    .carousel-caption {
        display: none;
    }

    .search-bar {
        display: none;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {

    /* Increase tap targets for touch devices */
    .nav-link {
        padding: 12px 20px;
    }

    .btn {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .blog-icon a {
        width: 55px;
        height: 55px;
    }

    .footer-bank-card a {
        display: inline-block;
        margin: 5px;
    }
}

/* Print Styles */
@media print {

    .navbar,
    .search-bar,
    .carousel-header,
    .footer,
    .back-to-top,
    .blog-icon {
        display: none;
    }

    body {
        font-size: 12pt;
    }
}

/* =======================================================
   GLOBAL COLOR SCHEME INTEGRATION
   ======================================================= */

/* Body */
body {
    background-color: var(--light);
    color: var(--dark);
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary);
}

/* Navbar */
.navbar {
    background-color: var(--light) !important;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    background-color: var(--secondary) !important;
    color: #ffffff !important;
}

/* Toggler */
.navbar-toggler {
    border-color: var(--secondary) !important;
}

/* Carousel Overlay */
.carousel-item::before {
    background: rgba(15, 23, 42, 0.65) !important;
}

.carousel-caption .p-3 {
    background: rgba(15, 23, 42, 0.55) !important;
}

/* Search Bar */
.search-bar .position-relative {
    background: rgba(15, 23, 42, 0.95) !important;
}

.search-bar button {
    background: var(--secondary) !important;
}

.search-bar button:hover {
    background: var(--tertiary) !important;
}

/* Section Titles */
.section-title,
.section-about-title,
.subscribe-title {
    color: var(--secondary) !important;
}

/* Services */
.service-content-inner {
    background-color: #ffffff;
}

.service-content-inner:hover {
    background: var(--secondary) !important;
}

.service-content-inner:hover h5,
.service-content-inner:hover p,
.service-content-inner:hover i {
    color: #ffffff !important;
}

/* Blog */
.blog-item {
    background-color: #ffffff;
}

.blog-icon a {
    background-color: var(--secondary) !important;
    color: #ffffff !important;
}

.blog-info {
    background: var(--light) !important;
}

/* Contact Buttons */
.btn-primary {
    background-color: var(--secondary) !important;
    border: none !important;
}

.btn-primary:hover {
    background-color: var(--primary) !important;
}

/* Subscribe Section */
.subscribe {
    background: linear-gradient(rgba(15, 23, 42, 0.85),
            rgba(15, 23, 42, 0.85)),
        url(../img/carousel-1.jpg) !important;
    background-size: cover;
    background-position: center;
}

.subscribe button {
    background-color: var(--secondary) !important;
}

.subscribe button:hover {
    background-color: var(--tertiary) !important;
}

/* Footer */
.footer {
    background-color: var(--primary) !important;
}

.footer-item h4 {
    border-bottom: 2px solid var(--secondary) !important;
}

.footer-item a {
    color: #cbd5e1 !important;
}

.footer-item a:hover {
    color: var(--secondary) !important;
}

/* Back To Top */
.back-to-top {
    background-color: var(--secondary) !important;
    color: #ffffff !important;
}

.back-to-top:hover {
    background-color: var(--primary) !important;
}