/* ==========================================================================
   TITONE Architectural Hardware - Custom Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --primary-navy: #0b3b7b;
    --navy-dark: #082954;
    --navy-light: #1653a1;
    --text-dark: #0a2540;
    --text-muted: #556980;
    --bg-light: #f8fafc;
    --accent-blue: #0d6efd;
    --border-color: #e2e8f0;
    --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
}

/* ==========================================================================
   Header & Navbar
   ========================================================================== */
.main-header {
    border-bottom: 1px solid var(--border-color);
    z-index: 1050;
    transition: all 0.3s ease;
}

.header-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav-item-link {
    color: var(--text-dark) !important;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 14px !important;
    position: relative;
    transition: color 0.25s ease;
}

.nav-item-link:hover,
.nav-item-link.active {
    color: var(--primary-navy) !important;
}

.nav-item-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 3px;
    background-color: var(--primary-navy);
    border-radius: 2px;
}

.dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: middle;
    border-top-width: 5px;
    border-right-width: 4px;
    border-left-width: 4px;
}

.dropdown-menu {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(11, 59, 123, 0.12) !important;
}

.dropdown-item {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: #f0f5ff;
    color: var(--primary-navy);
}

/* Header Buttons */
.btn-navy-solid {
    background-color: var(--primary-navy);
    color: #ffffff !important;
    border: 2px solid var(--primary-navy);
    font-weight: 600;
    font-size: 14px;
    border-radius: 6px;
    padding: 8px 18px;
    transition: all 0.3s ease;
}

.btn-navy-solid:hover {
    background-color: var(--navy-dark);
    border-color: var(--navy-dark);
    box-shadow: 0 4px 12px rgba(11, 59, 123, 0.25);
    transform: translateY(-1px);
}

.btn-navy-outline {
    background-color: #ffffff;
    color: var(--primary-navy) !important;
    border: 2px solid var(--primary-navy);
    font-weight: 600;
    font-size: 14px;
    border-radius: 6px;
    padding: 8px 18px;
    transition: all 0.3s ease;
}

.btn-navy-outline:hover {
    background-color: var(--primary-navy);
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(11, 59, 123, 0.2);
    transform: translateY(-1px);
}

/* ==========================================================================
   Hero Section & Slick Slider
   ========================================================================== */
.hero-section {
    position: relative;
    background-color: #eef4fb;
}

.hero-slider {
    width: 100%;
}

.hero-slide-item {
    height: 800px;
    background-size: cover;
    background-position: center right;
    position: relative;
}

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgb(255 255 255 / 15%) 45%, rgba(255, 255, 255, 0.15) 75%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.z-index-2 {
    z-index: 2;
}

.hero-content-card {
    padding: 40px 0;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.12;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.5;
    max-width: 480px;
    margin-bottom: 0;
}

.hero-accent-bar {
    width: 55px;
    height: 4px;
    background-color: var(--primary-navy);
    border-radius: 2px;
    margin: 22px 0 30px 0;
}

.py-2-5 {
    padding-top: 11px;
    padding-bottom: 11px;
}

.fs-7 {
    font-size: 12px;
}

/* Slick Custom Arrows & Dots */
.slick-dots {
    bottom: 90px;
    left: 50px;
    text-align: left;
    width: auto;
}

.slick-dots li button:before {
    font-size: 12px;
    color: var(--primary-navy);
    opacity: 0.35;
}

.slick-dots li.slick-active button:before {
    color: var(--primary-navy);
    opacity: 1;
}

.slick-prev, .slick-next {
    z-index: 10;
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.9) !important;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.slick-prev {
    left: 20px;
}

.slick-next {
    right: 20px;
}

.slick-prev:hover, .slick-next:hover {
    background-color: var(--primary-navy) !important;
}

.slick-prev:before, .slick-next:before {
    color: var(--primary-navy);
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 16px;
    opacity: 1;
}

.slick-prev:hover:before, .slick-next:hover:before {
    color: #ffffff;
}

.slick-prev:before {
    content: '\f053';
}

.slick-next:before {
    content: '\f054';
}

/* ==========================================================================
   Trust Features Bar (Bottom of Hero)
   ========================================================================== */
.trust-features-bar {
    position: relative;
    z-index: 5;
    margin-top: -65px;
}

.border-end-lg {
    border-right: 1px solid var(--border-color);
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #eff5fc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
    font-size: 22px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.d-flex:hover .feature-icon-wrapper {
    background-color: var(--primary-navy);
    color: #ffffff;
    transform: scale(1.08);
}

.text-navy {
    color: var(--primary-navy);
}

/* Bottom Right Corner Accent Triangle */
.hero-bottom-corner-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-bottom: 75px solid var(--primary-navy);
    border-left: 110px solid transparent;
    pointer-events: none;
    z-index: 2;
}

.hero-bottom-corner-accent::after {
    content: '';
    position: absolute;
    bottom: -75px;
    right: 0;
    width: 0;
    height: 0;
    border-bottom: 45px solid var(--navy-dark);
    border-left: 65px solid transparent;
}

/* ==========================================================================
   Product Range Section
   ========================================================================== */
.product-range-section {
    background-color: #f7fafc;
}

.sub-heading-line {
    width: 45px;
    height: 2px;
    background-color: var(--primary-navy);
    display: inline-block;
}

.section-main-heading {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-navy);
    letter-spacing: -0.5px;
}

.section-sub-heading {
    font-size: 16px;
    max-width: 600px;
}

.tracking-wider {
    letter-spacing: 1.5px;
}

.product-card {
    border-radius: 14px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border: 1px solid #e5edfb !important;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(11, 59, 123, 0.12) !important;
}

.product-img-wrapper {
    height: 210px;
    overflow: hidden;
    position: relative;
    background-color: #eef3f9;
}

.product-img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img {
    transform: scale(1.08);
}

.product-icon-box {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    border: 1.5px solid #dce7f7;
    background-color: #f4f8fe;
    color: var(--primary-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    transition: all 0.3s ease;
}

.product-card:hover .product-icon-box {
    background-color: var(--primary-navy);
    border-color: var(--primary-navy);
    color: #ffffff;
}

.product-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy-dark);
    letter-spacing: 0.3px;
    line-height: 1.25;
}

.product-title a {
    transition: color 0.2s ease;
}

.product-title a:hover {
    color: var(--navy-light) !important;
}

.explore-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-navy);
    transition: color 0.2s ease;
}

.explore-link i {
    transition: transform 0.2s ease;
}

.product-card:hover .explore-link i {
    transform: translateX(4px);
}

/* ==========================================================================
   About Titone Section
   ========================================================================== */
.about-titone-section {
    background-color: #ffffff;
}

.about-img-container {
    padding: 30px 20px 30px 40px;
}

.about-img-wrapper img {
    border-radius: 28px !important;
    object-fit: cover;
    box-shadow: 0 20px 45px rgba(11, 59, 123, 0.14) !important;
}

.about-top-blue-badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 130px;
    height: 130px;
    background-color: var(--primary-navy);
    border-radius: 14px;
    z-index: 1;
}

.about-bottom-l-accent {
    position: absolute;
    bottom: 5px;
    right: 0;
    width: 65%;
    height: 60%;
    border-bottom: 3.5px solid var(--primary-navy);
    border-right: 3.5px solid var(--primary-navy);
    border-bottom-right-radius: 28px;
    z-index: 1;
    pointer-events: none;
}

/* Dot Grid Background Patterns */
.dot-grid-pattern {
    width: 120px;
    height: 180px;
    background-image: radial-gradient(#94a3b8 2px, transparent 2px);
    background-size: 16px 16px;
    position: absolute;
    z-index: 0;
    opacity: 0.65;
}

.dot-grid-left {
    left: -20px;
    top: 90px;
}

.dot-grid-right {
    right: 25px;
    bottom: 50px;
}

.about-main-heading {
    font-size: 50px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.12;
    letter-spacing: -0.5px;
}

.about-accent-line {
    width: 50px;
    height: 3.5px;
    background-color: #d9383a;
    border-radius: 2px;
}

.leading-relaxed {
    line-height: 1.75;
}

.extra-small {
    font-size: 12.5px;
    line-height: 1.45;
}

.about-feature-icon {
    font-size: 28px;
    color: var(--primary-navy);
}

@media (min-width: 768px) {
    .border-end-md {
        border-right: 1px solid var(--border-color);
    }
}

/* ==========================================================================
   Solutions for Every Space Section
   ========================================================================== */
.solutions-section {
    background-color: #f8fafc;
}

.solutions-accent-bar {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-navy) 60%, #cbd5e1 60%);
    border-radius: 2px;
}

.solution-card {
    position: relative;
    height: 380px;
    border-radius: 18px !important;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 36px rgba(11, 59, 123, 0.22) !important;
}

.solution-img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.solution-card:hover .solution-img {
    transform: scale(1.08);
}

.solution-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(11, 59, 123, 0.05) 0%, rgba(8, 41, 84, 0.72) 65%, rgba(6, 26, 54, 0.96) 100%);
    transition: background 0.3s ease;
}

.solution-card:hover .solution-card-overlay {
    background: linear-gradient(180deg, rgba(11, 59, 123, 0.1) 0%, rgba(8, 41, 84, 0.82) 55%, rgba(6, 26, 54, 0.98) 100%);
}

.solution-card-content {
    position: absolute;
    bottom: 24px;
    left: 15px;
    right: 15px;
    z-index: 2;
}

.solution-icon {
    font-size: 28px;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.solution-card:hover .solution-icon {
    transform: translateY(-4px) scale(1.1);
}

.solution-bottom-line {
    display: inline-block;
    width: 25px;
    height: 3px;
    background-color: #0b5ed7;
    border-radius: 2px;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.solution-card:hover .solution-bottom-line {
    width: 45px;
    background-color: #38bdf8;
}

/* Solutions Slick Slider Navigation Arrows & Dots */
.solutions-slider {
    position: relative;
    margin-bottom: 20px;
}

.solutions-slider .slick-prev,
.solutions-slider .slick-next {
    width: 46px;
    height: 46px;
    background-color: #ffffff !important;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
    border-radius: 50%;
}

.solutions-slider .slick-prev {
    left: -20px;
}

.solutions-slider .slick-next {
    right: -20px;
}

.solutions-slider .slick-prev:before,
.solutions-slider .slick-next:before {
    color: var(--primary-navy);
    font-size: 16px;
}

.solutions-slider .slick-dots {
    bottom: -35px;
    position: relative;
    margin-top: 25px;
    text-align: center;
    width: 100%;
}

.solutions-slider .slick-dots li button:before {
    font-size: 11px;
    color: var(--primary-navy);
    opacity: 0.3;
}

.solutions-slider .slick-dots li.slick-active button:before {
    color: var(--primary-navy);
    opacity: 1;
}

/* ==========================================================================
   Our Distribution Network Section
   ========================================================================== */
.distribution-section {
    position: relative;
    background-color: #f4f8fc;
}

.distribution-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center right;
    opacity: 0.15;
    z-index: 0;
}

.distribution-light-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.88) 50%, rgba(255,255,255,0.45) 100%);
    z-index: 1;
}

.state-landmarks-card {
    border-color: #e2e8f0 !important;
}

.landmark-icon-box {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background-color: #eef5fd;
    color: var(--primary-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all 0.3s ease;
}

.d-flex:hover .landmark-icon-box {
    background-color: var(--primary-navy);
    color: #ffffff;
    transform: scale(1.06);
}

.state-underline {
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--primary-navy);
    border-radius: 1px;
}

.map-container {
    padding: 10px;
    position: relative;
}

.map-image {
     
    object-fit: contain;
    filter: drop-shadow(0 12px 28px rgba(11, 59, 123, 0.12));
}

.map-pins-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.map-pin-point {
    position: absolute;
    pointer-events: auto;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: transform 0.3s ease;
}

.map-pin-point:hover {
    transform: scale(1.18);
    z-index: 10;
}

.pin-pulse-dot {
    position: absolute;
    width: 14px;
    height: 14px;
    background-color: rgba(13, 110, 253, 0.4);
    border-radius: 50%;
    animation: pinPulseCss 2s infinite;
}

.pin-icon {
    position: relative;
    z-index: 2;
    color: var(--primary-navy);
    font-size: 20px;
    transition: color 0.3s ease;
}

.map-pin-point:hover .pin-icon {
    color: #00f0ff;
    filter: drop-shadow(0 2px 8px rgba(0, 240, 255, 0.8));
}

.pin-text {
    position: relative;
    z-index: 2;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dark);
    background-color: rgba(255, 255, 255, 0.85);
    padding: 2px 8px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

@keyframes pinPulseCss {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

.bottom-feature-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.icon-navy {
    background-color: var(--primary-navy);
    color: #ffffff;
}

.icon-light-blue {
    background-color: #eef5fd;
    color: var(--primary-navy);
}

/* ==========================================================================
   Quality & Finishes Section
   ========================================================================== */
.finishes-section {
    background-color: #ffffff;
}

.finish-badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #eff5fc;
    color: var(--primary-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.finishes-banner-container {
    height: 440px;
    position: relative;
    border-radius: 24px !important;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(11, 59, 123, 0.14) !important;
}

.finishes-banner-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 24px !important;
}

.finishes-banner-diagonal {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15px;
    width: 35px;
    background-color: var(--primary-navy);
    transform: skewX(-14deg);
    z-index: 2;
    box-shadow: 4px 0 16px rgba(0, 0, 0, 0.15);
}

.finish-card {
    border-radius: 16px !important;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border: 1px solid #e2e8f0 !important;
    background-color: #f9fbfe !important;
}

.finish-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(11, 59, 123, 0.12) !important;
}

.finish-img-wrapper {
    height: 160px;
    overflow: hidden;
    background-color: #eef4fb;
}

.finish-img-wrapper img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.finish-card:hover .finish-img-wrapper img {
    transform: scale(1.06);
}

.finish-swatch-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    margin-top: -22px;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    position: relative;
    z-index: 3;
}

.bg-sss { background: linear-gradient(135deg, #e2e8f0 0%, #94a3b8 100%); }
.bg-pss { background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 50%, #64748b 100%); }
.bg-bm  { background: linear-gradient(135deg, #334155 0%, #0f172a 100%); }
.bg-gold { background: linear-gradient(135deg, #fef08a 0%, #eab308 60%, #ca8a04 100%); }
.bg-rgp { background: linear-gradient(135deg, #fecdd3 0%, #fb7185 60%, #e11d48 100%); }
.bg-bgp { background: linear-gradient(135deg, #64748b 0%, #334155 60%, #1e293b 100%); }
.bg-wd  { background: linear-gradient(135deg, #78350f 0%, #451a03 100%); }

/* 7 columns grid on desktop for Quality & Finishes */
@media (min-width: 992px) {
    .row-cols-lg-7 > * {
        flex: 0 0 auto !important;
        width: 14.285714% !important;
    }
}

/* ==========================================================================
   Footer CTA Section & Main Footer Styles
   ========================================================================== */
.footer-cta-section {
    background-color: #f1f5f9;
}

.footer-cta-card {
    background: #ffffff;
    border-color: #e2e8f0 !important;
}

.cta-book-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    background-color: #eff5fc;
    color: var(--primary-navy);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    border: 1px solid #dbeafe;
}

.cta-buttons-box {
    background-color: var(--primary-navy);
    padding: 16px 36px 16px 45px;
    clip-path: polygon(25px 0, 100% 0, 100% 100%, 0% 100%);
    border-radius: 0 8px 8px 0;
}

.btn-cta-link {
    color: #ffffff !important;
    font-size: 14px;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.btn-cta-link:hover {
    color: #38bdf8 !important;
}

.cta-arrow-circle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1.5px solid #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.btn-cta-link:hover .cta-arrow-circle {
    background-color: #38bdf8;
    border-color: #38bdf8;
    color: #081d3d;
}

.main-footer {
    background-color: #011f41; /* Exact Deep Navy Background */
    color: #ffffff;
}

.footer-logo-img {
    height: 102px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-col-bordered {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-accent-line {
    width: 36px;
    height: 2px;
    background-color: #0284c7;
    border-radius: 2px;
}

.footer-col-title {
    font-size: 13.5px;
    letter-spacing: 0.8px;
    color: #ffffff;
    position: relative;
    padding-bottom: 8px;
    margin-bottom: 16px !important;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background-color: #0284c7;
    border-radius: 2px;
}

.footer-feature-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.04);
    color: #38bdf8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-feature-circle:hover {
    background-color: #38bdf8;
    color: #05162e;
    transform: scale(1.1);
}

.footer-links li {
    margin-bottom: 9px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.contact-icon-circle {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #38bdf8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.social-icon-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon-btn:hover {
    background-color: #38bdf8;
    border-color: #38bdf8;
    color: #05162e;
    transform: translateY(-3px);
}

.footer-middle-bar {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.border-end-subtle {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-middle-img {
    max-height: 116px;
    width: auto;
    object-fit: contain;
}

.middle-feature-icon {
    font-size: 22px;
    color: #0284c7;
}

.hover-white:hover {
    color: #ffffff !important;
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */
@media (max-width: 991.98px) {
    .header-logo {
        height: 48px;
    }
    
    .hero-slide-item {
        height: 540px;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .trust-features-bar {
        margin-top: 0;
    }

    .border-end-lg {
        border-right: none;
    }
    
    .nav-item-link.active::after {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .hero-slide-item {
        height: 480px;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-subtitle {
        font-size: 15px;
    }
}
