/* ============================================================= */
/*  TOP BAR & SOCIAL ICONS                                      */
/* ============================================================= */
/* .top-bar {
    background-color: rgba(255, 255, 255, 0.9);
    line-height: 50px;
    left: 0;
    top: 0;
    width: 100%;
    position: fixed;
} */
.top-bar {
    background-color: rgba(255, 255, 255, 0.9);  /* 90% opaque white */
    /* or use 0.85, 0.8, etc. for more/less transparency */
    line-height: 50px;
    left: 0;
    top: 0;
    width: 100%;
    position: fixed;
    backdrop-filter: blur(10px);        /* optional: nice frosted-glass effect */
    -webkit-backdrop-filter: blur(10px); /* Safari support */
}
.address {
    color: #6f8aa6;
    font-size: 13px;
}

.address i {
    font-size: 18px;
    vertical-align: middle;
}

.social ul {
    float: right;
}

.social li {
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}

.social li a {
    display: inline-block;
    font-size: 16px;
    color: #4e6073;
}

.social li a:hover {
    color: red;
}

/* ============================================================= */
/*  NAVBAR                                                      */
/* ============================================================= */
.navbar-custom {
    background: rgba(255, 255, 255, 0.9);
    top: 50px;
    padding: 15px 0;
}

.top-nav-collapse {
    margin: 0;
}

.navbar-collapse {
    float: right;
}

.navbar-custom .navbar-brand {
    color: red;
    /* color: #fff; */
    font-weight: 800;
    font-size: 30px;
}

.navbar-custom .navbar-brand:hover {
    color: #fff;
}

.navbar-custom .navbar-brand span {
    font-weight: 300;
    color: white;
}

.navbar-custom .navbar-brand span:hover {
    color: red;
}

.navbar-custom .navbar-brand:focus {
    outline: 0;
}

.navbar-header p {
    border-left: 1px solid #465a6f;
    padding-left: 15px;
    float: left;
    color: #cddae7;
    font-size: 12px;
    line-height: 20px;
}

.navbar-header p b {
    font-size: 16px;
    font-weight: 400;
    display: block;
}

.navbar-custom .navbar-toggle {
    font-size: 28px;
    color: red;
    margin: 0;
    padding: 5px 10px 0;
}

.navbar-custom .navbar-toggle:active,
.navbar-custom .navbar-toggle:focus {
    outline: 0;
}

.navbar-custom a {
    color: #98acc0;
    background-color: transparent;
}

.navbar-custom a:hover {
    color: red;
}

.navbar-custom .nav li a {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-size: 14px;
    border: 1px solid #344659;
    line-height: 28px;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    padding: 10px 25px;
}

.navbar-custom .nav li a:focus,
.navbar-custom .nav li a:hover {
    outline: 0;
    color: red;
    border-color: red;
    background-color: transparent;
}

.navbar-custom .nav li a.btn-default {
    background-color: red;
    line-height: 50px;
    color: #fff;
    text-transform: uppercase;
    border: none;
    font-size: 13px;
    font-weight: 600;
    padding: 0 40px;
    margin: 0 10px;
    box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.15);
    -o-box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.15);
}

.navbar-custom .nav li a.btn-default:active,
.navbar-custom .nav li a.btn-default:focus,
.navbar-custom .nav li a.btn-default:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
}

.navbar-custom .nav li.dropdown ul.dropdown-menu {
    background-color: #293949;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    left: 0;
    right: auto;
    top: 132%;
}

.navbar-custom .nav li.dropdown ul.dropdown-menu li {
    border-bottom: 1px solid #394b5f;
}

.navbar-custom .nav li.dropdown ul.dropdown-menu li a {
    line-height: 30px;
    border: none;
    color: #98acc0;
    font-size: 13px;
}

.navbar-custom .nav li.dropdown ul.dropdown-menu li a:focus,
.navbar-custom .nav li.dropdown ul.dropdown-menu li a:hover {
    color: #fff;
    border: none;
    outline: 0;
    background-color: transparent;
}

.navbar-custom .nav li.dropdown ul.dropdown-menu li:last-child {
    border: none;
}

.navbar-custom .nav li.open a {
    background-color: transparent;
}

.navbar-custom .nav li.open a:focus,
.navbar-custom .nav li.open a:hover {
    outline: 0;
    background-color: transparent;
}

/* ============================================================= */
/*  BREADCRUMB                                                  */
/* ============================================================= */
.breadcrumb {
    background-color: #f3f6f8;
    padding: 40px 0;
}

.breadcrumb h2 {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    font-size: 30px;
    margin: 0;
}

.breadcrumb ul {
    margin-top: 15px;
}

.breadcrumb ul li {
    color: red;
    font-size: 14px;
    display: inline-block;
}

.breadcrumb ul li a {
    color: red;
    display: inline-block;
    padding: 0 5px;
}

.breadcrumb ul li:last-child a {
    color: #989898;
}

/* ============================================================= */
/*  MEDIA QUERIES – NAVBAR                                      */
/* ============================================================= */
@media (min-width: 768px) {
    .navbar-custom {
        -webkit-transition: background 0.5s ease-in-out, padding 0.3s ease-in-out;
        -moz-transition: background 0.5s ease-in-out, padding 0.3s ease-in-out;
        -o-transition: background 0.5s ease-in-out, padding 0.3s ease-in-out;
        transition: background 0.5s ease-in-out, padding 0.3s ease-in-out;
    }

    .navbar-custom.top-nav-collapse {
        padding: 10px 0;
        top: 0;
    }

    .navbar-custom.top-nav-collapse .nav li.dropdown ul.dropdown-menu {
        top: 122%;
    }
}

@media (min-width: 981px) and (max-width: 1169px) {
    .navbar-custom .nav {
        margin-top: 15px;
    }

    .navbar-custom .nav li a {
        padding: 10px 22px;
    }

    .navbar-custom .nav li.dropdown ul.dropdown-menu {
        top: 165%;
    }

    .navbar-custom.top-nav-collapse .nav li.dropdown ul.dropdown-menu {
        top: 155%;
    }
}

@media (min-width: 768px) and (max-width: 1169px) {
    .navbar-header p {
        border-left: none;
        float: none;
        clear: both;
        padding: 0;
    }

    .navbar-header p b {
        display: inline-block;
    }
}

@media (min-width: 768px) and (max-width: 980px) {
    .navbar-header {
        width: 100%;
    }

    .navbar-toggle {
        display: block !important;
    }

    .navbar-collapse.collapse {
        display: none !important;
    }

    .navbar-collapse.in {
        display: block !important;
    }

    .navbar-custom .nav {
        float: none;
        text-align: left;
        margin: 0;
        width: 100%;
        border-top: 1px solid #465a6f;
    }

    .navbar-custom .nav li {
        float: none;
        display: block;
    }

    .navbar-custom .nav li a {
        border: none;
    }

    .navbar-collapse {
        margin-top: 0;
        padding: 0;
        float: none;
    }
}

@media (max-width: 767px) {
    .top-bar {
        line-height: 35px;
        text-align: center;
        position: relative;
    }

    .social ul {
        float: none;
    }

    .navbar-custom {
        top: 72px;
    }

    .top-nav-collapse {
        top: 0;
    }

    .navbar-custom .nav {
        float: none;
        text-align: left;
        margin: 0;
    }

    .navbar-custom .nav li {
        float: none;
        display: block;
    }

    .navbar-custom .nav li a {
        border: none;
    }

    .navbar-collapse {
        margin-top: 0;
        padding: 0;
        float: none;
    }

    .address {
        font-size: 11px;
    }

    .navbar-header p {
        display: none;
    }
}

/* ============================================================= */
/*  FOOTER                                                      */
/* ============================================================= */
footer {
    background-color: rgba(255, 255, 255, 0.7);
    padding-top: 40px;
    margin-top: 60px;
    color: black;
}

footer h2 {
    color: black;
    font-weight: 800;
    font-size: 30px;
    margin: 25px 0;
}

footer h2 span {
    font-weight: 300;
    color: red;
}

footer a {
    color: black;
}

footer a:hover {
    color: red;
}

.contact-sec {
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    padding-bottom: 50px;
    background: url(../images/footer-line.jpg) repeat-y center top;
}

.contact-sec p {
    font-size: 14px;
    font-weight: 300;
    color: black;
    line-height: 24px;
}

.contact-sec li {
    line-height: 30px;
}

.contact-sec li i {
    margin-right: 10px;
    font-size: 16px;
}

.contact-sec .btn-default {
    margin-top: 20px;
}

.footer-nav {
    padding-top: 40px;
}

.footer-nav li {
    display: inline-block;
    margin-right: 35px;
    font-size: 14px;
}

.footer-social {
    padding-top: 40px;
}

.footer-social li {
    display: inline-block;
    margin-left: 15px;
    font-size: 14px;
}

.copyright {
    margin-top: 40px;
    padding: 20px 0;
    background-color: rgba(255, 255, 255, 0.9);
}

.copyright .text-right a {
    margin-left: 40px;
}

/* ============================================================= */
/*  FOOTER MEDIA QUERIES                                        */
/* ============================================================= */
@media (min-width: 981px) and (max-width: 1169px) {
    .footer-nav li { margin-right: 17px; }
    .footer-social li { margin-left: 10px; }
}

@media (min-width: 768px) and (max-width: 980px) {
    .contact-sec { background: none; }
    .footer-nav li { margin-right: 30px; }
}

@media (max-width: 767px) {
    .contact-sec { background: none; }
    .footer-nav li { margin: 0; width: 49%; padding: 10px 0; }
    .copyright { line-height: 35px; }
    .copyright div { text-align: center !important; }
    .copyright a { margin: 0 5px !important; }
}

/* ============================================================= */
/*  GENERAL TYPOGRAPHY & UTILITIES                              */
/* ============================================================= */
body {
    width: 100%;
    height: 100%;
    font-family: 'Open Sans', sans-serif;
    color: #000;
    background-color: #fff;
}

html {
    width: 100%;
    height: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}

a {
    text-decoration: none;
    transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
}

a:focus,
a:hover {
    text-decoration: none;
    background-color: transparent;
}

input[type=password],
input[type=text],
select,
textarea {
    border: none;
    width: 100%;
    display: block;
    margin-bottom: 20px;
    height: 40px;
    line-height: 40px;
    padding: 0;
    border-bottom: 1px solid #e9e9e9;
    font-weight: 300;
    color: #989898;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

input[type=password]:focus,
input[type=text]:focus,
select:focus,
textarea:focus {
    border-color: #ccc;
}

textarea {
    min-height: 100px;
}

button,
input[type=submit] {
    border: none;
    cursor: pointer;
}

body {
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
}

li,
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.left { float: left; }
.right { float: right; }
.clear { clear: both; float: none; }

.ml-0 { margin-left: 0px !important; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.ml-5 { margin-left: 5px; }
.mr-5 { margin-right: 5px; }
.vi_mid { vertical-align: middle; }

/* Buttons */
.btn-default {
    background-color: red;
    /* background-color: red; */
    line-height: 50px;
    height: 50px;
    color: #fff;
    text-transform: uppercase;
    border: none;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 0 40px;
    margin: 0;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.15);
    -o-box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.15);
    display: inline-block;
}

.btn-default:active,
.btn-default:focus,
.btn-default:hover {
    color: #fff;
    background-color: red;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: 0;
}

.btn-secondary {
    background-color: #a6a6a6;
    line-height: 40px;
    height: 40px;
    color: #fff;
    text-transform: uppercase;
    border: none;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 0 30px;
    margin: 0;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.15);
    -o-box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.15);
    display: inline-block;
}

.btn-secondary:active,
.btn-secondary:focus,
.btn-secondary:hover {
    color: #fff;
    background-color: red;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: 0;
}

/* Page content */
#page-content {
    margin-top: 90px;
}

#page-content h2 {
    font-weight: 300;
    font-size: 30px;
    color: red;
}

/* Media queries for page content */
@media (min-width: 768px) and (max-width: 1169px) {
    #page-content { margin-top: 163px; }
}

@media (max-width: 767px) {
    #page-content { margin-top: 81px; }
}

/* ============================================================= */
/*  CHI – NEW ABOUT / HERO SECTION        */
/* ============================================================= */
.chi-about-section {
    padding: 80px 0 100px;
    background: #f9f9f9;
}

.chi-img-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.chi-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.chi-content {
    padding-left: 50px;
}

.chi-title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    color: #333;
}

.chi-title .chi-small {
    font-size: 14px;
    color: red;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.chi-title .chi-red {
    color: red;
}

.chi-lead {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.chi-checks {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.chi-checks li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

.chi-checks li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -2px;
    color: red;
    font-weight: bold;
    font-size: 24px;
}

.chi-info {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.chi-actions {
    margin-top: 40px;
}

.chi-actions .btn-default {
    padding: 0 40px;
    margin-right: 30px;
}

.chi-phone {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.chi-phone i {
    color: red;
    margin-right: 8px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .chi-content { padding-left: 15px; padding-top: 40px; }
    .chi-title { font-size: 36px; }
}

@media (max-width: 767px) {
    .chi-about-section { padding: 60px 0; }
    .chi-content { padding-left: 15px; padding-top: 30px; text-align: center; }
    .chi-actions { text-align: center; }
    .chi-actions .btn-default { margin: 20px auto; display: inline-block; }
    .chi-checks li { padding-left: 0; text-align: left; }
    .chi-checks li:before { left: 50%; transform: translateX(-50%); top: -35px; }
}


/* ... (the rest of the blog-related rules are similarly formatted) ... */
/* 100% PERFECT MATCH TO YOUR REFERENCE IMAGE */
.perfect-circle {
    position: absolute;
    top: 80px;
    left: 60px;
    width: 240px;
    height: 240px;
    z-index: 10;
}
.circle-svg { transform: rotate(-90deg); animation: rotate 40s linear infinite; }
@keyframes rotate { to { transform: rotate(270deg); } }
.outer-text { font-size: 16px; font-weight: 700; letter-spacing: 10px; text-transform: uppercase; }
.inner-black-ring {
    position: absolute;
    top: 50%; left: 50%;
    width: 170px; height: 170px;
    background: #000;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
.inner-red-circle {
    position: absolute;
    top: 50%; left: 50%;
    width: 140px; height: 140px;
    background: #e30613;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.circle-big-text {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.1;
}





/* <!-- 3D Rotating Cube Styles */

        .cube-section {
            padding: 160px 0;
            background: #f8f9fa;
        }

        .cube-row {
            align-items: center;
        }

        .cube-text {
            text-align: left;
        }

        .cube-text h2 {
            color: #c00;
            font-size: 3.2rem;
            margin-bottom: 40px;
            font-weight: 700;
        }

        .cube-text p {
            font-size: 1.3rem;
            color: #444;
            line-height: 1.9;
            max-width: 620px;
            margin-bottom: 30px;
        }

        .cube-text .highlight {
            font-weight: bold;
            color: #c00;
        }

        .cube-container {
            perspective: 2000px;
            display: flex;
            justify-content: center;
        }

        .scene {
            width: 450px;
            height: 450px;
            position: relative;
            transform-style: preserve-3d;
        }

        .cube {
            width: 100%;
            height: 100%;
            position: relative;
            transform-style: preserve-3d;
            cursor: grab;
            transform: rotateX(-20deg) rotateY(-30deg);
        }

        .cube.dragging {
            cursor: grabbing;
        }

        .cube-face {
            position: absolute;
            width: 450px;
            height: 450px;
            background: rgba(255, 255, 255, 0.95);
            border: 4px solid #c00;
            border-radius: 15px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.18);
            backdrop-filter: blur(8px);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 40px;
            box-sizing: border-box;
        }

        .face-image {
            width: 100%;
            height: 100%;
    object-fit: cover;          /* most common — fills area, may crop */
    /* object-fit: contain;     */ /* alternative — shows whole image, may show gaps */
    /* object-position: center; */ /* default anyway */
    display: block;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            margin-bottom: 25px;
        }

        .face-title {
            font-size: 2.2rem;
            font-weight: bold;
            color: #c00;
            margin: 15px 0;
        }

        .face-subtitle {
            font-size: 1.2rem;
            color: #333;
            text-align: center;
        }

        /* Face Positions */
        .front  { transform: translateZ(225px); }
        .back   { transform: rotateY(180deg) translateZ(225px); }
        .right  { transform: rotateY(90deg) translateZ(225px); }
        .left   { transform: rotateY(-90deg) translateZ(225px); }
        .top    { transform: rotateX(90deg) translateZ(225px); }
        .bottom { transform: rotateX(-90deg) translateZ(225px); }

        /* Maximum spacing on desktop – matches your screenshot */
        @media (min-width: 992px) {
            .cube-text {
                padding-right: 250px; /* Very generous space after text */
            }
            .cube-container {
                padding-left: 150px; /* Extra space before cube */
            }
        }

        @media (max-width: 991px) {
            .cube-row {
                flex-direction: column;
                text-align: center;
            }
            .cube-text {
                padding-right: 0;
                padding-bottom: 100px;
            }
            .cube-text p {
                max-width: none;
            }

            /* Disable touch on mobile */
            .cube {
                pointer-events: none;
                cursor: default;
            }
        }

        @media (max-width: 480px) {
            .scene {
                width: 320px;
                height: 320px;
            }
            .cube-face {
                width: 320px;
                height: 320px;
            }
            .front  { transform: translateZ(160px); }
            .back   { transform: rotateY(180deg) translateZ(160px); }
            .right  { transform: rotateY(90deg) translateZ(160px); }
            .left   { transform: rotateY(-90deg) translateZ(160px); }
            .top    { transform: rotateX(90deg) translateZ(160px); }
            .bottom { transform: rotateX(-90deg) translateZ(160px); }
        }
            
.navbar-custom {
            background-color: #ffffff;
            border: none;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            min-height: 90px;
            padding: 10px 0;
        }

        .navbar-brand {
            padding: 5px 15px;
        }

        .navbar-brand img {
            height: 75px;
            transition: transform 0.3s ease;
        }

        .navbar-brand:hover img {
            transform: scale(1.05);
        }

        /* Base pill style for ALL menu items */
        .navbar-nav > li > a {
            display: block;
            padding: 10px 22px !important;
            font-weight: 600;
            color: #555 !important;
            background-color: #f5f5f5;
            border-radius: 50px;
            transition: all 0.3s ease;
            white-space: nowrap;
            margin: 5px 4px;
            border: 2px solid transparent;
        }

        /* Hover for regular menu items → become red like Quote button */
        .navbar-nav > li > a:hover:not(.btn-quote) {
            background-color: #c00 !important;
            color: #ffffff !important;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(204,0,0,0.3);
            border: 2px solid #c00;
        }

        /* Get a Quote – starts red, inverts to white on hover */
        .navbar-nav > li > a.btn-quote {
            background-color: #c00 !important;
            color: #ffffff !important;
            font-weight: 700;
            padding: 12px 32px !important;
            box-shadow: 0 4px 12px rgba(204,0,0,0.3);
            margin: 5px 4px;
            border: 2px solid #c00;
            transition: all 0.3s ease;
        }

        .navbar-nav > li > a.btn-quote:hover {
            background-color: #ffffff !important;
            color: #c00 !important;
            border: 2px solid #c00;
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(204,0,0,0.35);
        }

        /* Contact info */
        .navbar-contact {
            margin-top: 20px;
            text-align: right;
            font-size: 14px;
            color: #555;
        }

        .navbar-contact a {
            color: #c00;
            font-weight: bold;
        }

        /* Mobile fixes */
        @media (max-width: 991px) {
            .navbar-header {
                float: none;
                text-align: center;
            }

            .navbar-brand {
                float: none;
                display: inline-block;
            }

            .navbar-contact {
                text-align: center;
                margin: 15px 0;
            }

            .navbar-toggle {
                position: absolute;
                top: 25px;
                right: 15px;
                border: none;
                background: transparent !important;
            }

            .navbar-toggle .icon-bar {
                background-color: #c00;
            }

            .navbar-toggle:focus, .navbar-toggle:hover {
                background: transparent !important;
            }

            .navbar-collapse {
                background: #ffffff;
                border-top: 1px solid #eee;
                box-shadow: 0 8px 20px rgba(0,0,0,0.1);
                margin-top: 15px;
                padding: 20px 0;
            }

            .navbar-nav {
                float: none !important;
                text-align: center;
                margin: 0 auto;
            }

            .navbar-nav > li {
                float: none;
                display: inline-block;
                margin: 8px 6px;
            }

            .navbar-nav > li > a {
                display: inline-block;
                margin: 6px 4px;
                min-width: 140px;
            }

            .navbar-nav > li > a.btn-quote {
                min-width: 180px;
                margin: 15px auto;
            }
        }

        @media (max-width: 480px) {
            .navbar-nav > li {
                display: block;
                width: 100%;
                margin: 10px 0;
            }

            .navbar-nav > li > a {
                display: block;
                width: 80%;
                margin: 10px auto;
            }

            .navbar-nav > li > a.btn-quote {
                width: 70%;
                margin: 20px auto;
            }
        }        

/* FIX FOR FIXED HEADER OVERLAP - added at the top */
body {
    padding-top: 160px !important;   /* top-bar (~50px) + navbar (~100px) + buffer; adjust if needed */
}

@media (max-width: 767px) {
    body {
        padding-top: 130px !important;   /* smaller on mobile */
    }
}

/* ============================================================= */
/*  TOP BAR & SOCIAL ICONS                                      */
/* ============================================================= */
/* .top-bar {
    background-color: rgba(255, 255, 255, 0.9);
    line-height: 50px;
    left: 0;
    top: 0;
    width: 100%;
    position: fixed;
} */
.top-bar {
    background-color: rgba(255, 255, 255, 0.9);  /* 90% opaque white */
    /* or use 0.85, 0.8, etc. for more/less transparency */
    line-height: 50px;
    left: 0;
    top: 0;
    width: 100%;
    position: fixed;
    backdrop-filter: blur(10px);        /* optional: nice frosted-glass effect */
    -webkit-backdrop-filter: blur(10px); /* Safari support */
}
.address {
    color: #6f8aa6;
    font-size: 13px;
}

.address i {
    font-size: 18px;
    vertical-align: middle;
}

.social ul {
    float: right;
}

.social li {
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}

.social li a {
    display: inline-block;
    font-size: 16px;
    color: #4e6073;
}

.social li a:hover {
    color: red;
}

/* ============================================================= */
/*  NAVBAR                                                      */
/* ============================================================= */
.navbar-custom {
    background: rgba(255, 255, 255, 0.9);
    top: 50px;
    padding: 15px 0;
}

.top-nav-collapse {
    margin: 0;
}

.navbar-collapse {
    float: right;
}

.navbar-custom .navbar-brand {
    color: red;
    /* color: #fff; */
    font-weight: 800;
    font-size: 30px;
}

.navbar-custom .navbar-brand:hover {
    color: #fff;
}

.navbar-custom .navbar-brand span {
    font-weight: 300;
    color: white;
}

.navbar-custom .navbar-brand span:hover {
    color: red;
}

.navbar-custom .navbar-brand:focus {
    outline: 0;
}

.navbar-header p {
    border-left: 1px solid #465a6f;
    padding-left: 15px;
    float: left;
    color: #cddae7;
    font-size: 12px;
    line-height: 20px;
}

.navbar-header p b {
    font-size: 16px;
    font-weight: 400;
    display: block;
}

.navbar-custom .navbar-toggle {
    font-size: 28px;
    color: red;
    margin: 0;
    padding: 5px 10px 0;
}

.navbar-custom .navbar-toggle:active,
.navbar-custom .navbar-toggle:focus {
    outline: 0;
}

.navbar-custom a {
    color: #98acc0;
    background-color: transparent;
}

.navbar-custom a:hover {
    color: red;
}

.navbar-custom .nav li a {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-size: 14px;
    border: 1px solid #344659;
    line-height: 28px;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    padding: 10px 25px;
}

.navbar-custom .nav li a:focus,
.navbar-custom .nav li a:hover {
    outline: 0;
    color: red;
    border-color: red;
    background-color: transparent;
}

.navbar-custom .nav li a.btn-default {
    background-color: red;
    line-height: 50px;
    color: #fff;
    text-transform: uppercase;
    border: none;
    font-size: 13px;
    font-weight: 600;
    padding: 0 40px;
    margin: 0 10px;
    box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.15);
    -o-box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.15);
}

.navbar-custom .nav li a.btn-default:active,
.navbar-custom .nav li a.btn-default:focus,
.navbar-custom .nav li a.btn-default:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
}

.navbar-custom .nav li.dropdown ul.dropdown-menu {
    background-color: #293949;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    left: 0;
    right: auto;
    top: 132%;
}

.navbar-custom .nav li.dropdown ul.dropdown-menu li {
    border-bottom: 1px solid #394b5f;
}

.navbar-custom .nav li.dropdown ul.dropdown-menu li a {
    line-height: 30px;
    border: none;
    color: #98acc0;
    font-size: 13px;
}

.navbar-custom .nav li.dropdown ul.dropdown-menu li a:focus,
.navbar-custom .nav li.dropdown ul.dropdown-menu li a:hover {
    color: #fff;
    border: none;
    outline: 0;
    background-color: transparent;
}

.navbar-custom .nav li.dropdown ul.dropdown-menu li:last-child {
    border: none;
}

.navbar-custom .nav li.open a {
    background-color: transparent;
}

.navbar-custom .nav li.open a:focus,
.navbar-custom .nav li.open a:hover {
    outline: 0;
    background-color: transparent;
}

/* ============================================================= */
/*  BREADCRUMB                                                  */
/* ============================================================= */
.breadcrumb {
    background-color: #f3f6f8;
    padding: 40px 0;
}

.breadcrumb h2 {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    font-size: 30px;
    margin: 0;
}

.breadcrumb ul {
    margin-top: 15px;
}

.breadcrumb ul li {
    color: red;
    font-size: 14px;
    display: inline-block;
}

.breadcrumb ul li a {
    color: red;
    display: inline-block;
    padding: 0 5px;
}

.breadcrumb ul li:last-child a {
    color: #989898;
}

/* ============================================================= */
/*  MEDIA QUERIES – NAVBAR                                      */
/* ============================================================= */
@media (min-width: 768px) {
    .navbar-custom {
        -webkit-transition: background 0.5s ease-in-out, padding 0.3s ease-in-out;
        -moz-transition: background 0.5s ease-in-out, padding 0.3s ease-in-out;
        -o-transition: background 0.5s ease-in-out, padding 0.3s ease-in-out;
        transition: background 0.5s ease-in-out, padding 0.3s ease-in-out;
    }

    .navbar-custom.top-nav-collapse {
        padding: 10px 0;
        top: 0;
    }

    .navbar-custom.top-nav-collapse .nav li.dropdown ul.dropdown-menu {
        top: 122%;
    }
}

@media (min-width: 981px) and (max-width: 1169px) {
    .navbar-custom .nav {
        margin-top: 15px;
    }

    .navbar-custom .nav li a {
        padding: 10px 22px;
    }

    .navbar-custom .nav li.dropdown ul.dropdown-menu {
        top: 165%;
    }

    .navbar-custom.top-nav-collapse .nav li.dropdown ul.dropdown-menu {
        top: 155%;
    }
}

@media (min-width: 768px) and (max-width: 1169px) {
    .navbar-header p {
        border-left: none;
        float: none;
        clear: both;
        padding: 0;
    }

    .navbar-header p b {
        display: inline-block;
    }
}

@media (min-width: 768px) and (max-width: 980px) {
    .navbar-header {
        width: 100%;
    }

    .navbar-toggle {
        display: block !important;
    }

    .navbar-collapse.collapse {
        display: none !important;
    }

    .navbar-collapse.in {
        display: block !important;
    }

    .navbar-custom .nav {
        float: none;
        text-align: left;
        margin: 0;
        width: 100%;
        border-top: 1px solid #465a6f;
    }

    .navbar-custom .nav li {
        float: none;
        display: block;
    }

    .navbar-custom .nav li a {
        border: none;
    }

    .navbar-collapse {
        margin-top: 0;
        padding: 0;
        float: none;
    }
}

@media (max-width: 767px) {
    .top-bar {
        line-height: 35px;
        text-align: center;
        position: relative;
    }

    .social ul {
        float: none;
    }

    .navbar-custom {
        top: 72px;
    }

    .top-nav-collapse {
        top: 0;
    }

    .navbar-custom .nav {
        float: none;
        text-align: left;
        margin: 0;
    }

    .navbar-custom .nav li {
        float: none;
        display: block;
    }

    .navbar-custom .nav li a {
        border: none;
    }

    .navbar-collapse {
        margin-top: 0;
        padding: 0;
        float: none;
    }

    .address {
        font-size: 11px;
    }

    .navbar-header p {
        display: none;
    }
}

/* ============================================================= */
/*  FOOTER                                                      */
/* ============================================================= */
footer {
    background-color: rgba(255, 255, 255, 0.7);
    padding-top: 40px;
    margin-top: 60px;
    color: black;
}

footer h2 {
    color: black;
    font-weight: 800;
    font-size: 30px;
    margin: 25px 0;
}

footer h2 span {
    font-weight: 300;
    color: red;
}

footer a {
    color: black;
}

footer a:hover {
    color: red;
}

.contact-sec {
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    padding-bottom: 50px;
    background: url(../images/footer-line.jpg) repeat-y center top;
}

.contact-sec p {
    font-size: 14px;
    font-weight: 300;
    color: black;
    line-height: 24px;
}

.contact-sec li {
    line-height: 30px;
}

.contact-sec li i {
    margin-right: 10px;
    font-size: 16px;
}

.contact-sec .btn-default {
    margin-top: 20px;
}

.footer-nav {
    padding-top: 40px;
}

.footer-nav li {
    display: inline-block;
    margin-right: 35px;
    font-size: 14px;
}

.footer-social {
    padding-top: 40px;
}

.footer-social li {
    display: inline-block;
    margin-left: 15px;
    font-size: 14px;
}

.copyright {
    margin-top: 40px;
    padding: 20px 0;
    background-color: rgba(255, 255, 255, 0.9);
}

.copyright .text-right a {
    margin-left: 40px;
}

/* ============================================================= */
/*  FOOTER MEDIA QUERIES                                        */
/* ============================================================= */
@media (min-width: 981px) and (max-width: 1169px) {
    .footer-nav li { margin-right: 17px; }
    .footer-social li { margin-left: 10px; }
}

@media (min-width: 768px) and (max-width: 980px) {
    .contact-sec { background: none; }
    .footer-nav li { margin-right: 30px; }
}

@media (max-width: 767px) {
    .contact-sec { background: none; }
    .footer-nav li { margin: 0; width: 49%; padding: 10px 0; }
    .copyright { line-height: 35px; }
    .copyright div { text-align: center !important; }
    .copyright a { margin: 0 5px !important; }
}

/* ============================================================= */
/*  GENERAL TYPOGRAPHY & UTILITIES                              */
/* ============================================================= */
body {
    width: 100%;
    height: 100%;
    font-family: 'Open Sans', sans-serif;
    color: #000;
    background-color: #fff;
}

html {
    width: 100%;
    height: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}

a {
    text-decoration: none;
    transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
}

a:focus,
a:hover {
    text-decoration: none;
    background-color: transparent;
}

input[type=password],
input[type=text],
select,
textarea {
    border: none;
    width: 100%;
    display: block;
    margin-bottom: 20px;
    height: 40px;
    line-height: 40px;
    padding: 0;
    border-bottom: 1px solid #e9e9e9;
    font-weight: 300;
    color: #989898;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

input[type=password]:focus,
input[type=text]:focus,
select:focus,
textarea:focus {
    border-color: #ccc;
}

textarea {
    min-height: 100px;
}

button,
input[type=submit] {
    border: none;
    cursor: pointer;
}

body {
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
}

li,
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.left { float: left; }
.right { float: right; }
.clear { clear: both; float: none; }

.ml-0 { margin-left: 0px !important; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.ml-5 { margin-left: 5px; }
.mr-5 { margin-right: 5px; }
.vi_mid { vertical-align: middle; }

/* Buttons */
.btn-default {
    background-color: red;
    /* background-color: red; */
    line-height: 50px;
    height: 50px;
    color: #fff;
    text-transform: uppercase;
    border: none;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 0 40px;
    margin: 0;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.15);
    -o-box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.15);
    display: inline-block;
}

.btn-default:active,
.btn-default:focus,
.btn-default:hover {
    color: #fff;
    background-color: red;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: 0;
}

.btn-secondary {
    background-color: #a6a6a6;
    line-height: 40px;
    height: 40px;
    color: #fff;
    text-transform: uppercase;
    border: none;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 0 30px;
    margin: 0;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.15);
    -o-box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.15);
    display: inline-block;
}

.btn-secondary:active,
.btn-secondary:focus,
.btn-secondary:hover {
    color: #fff;
    background-color: red;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: 0;
}

/* Page content */
#page-content {
    margin-top: 90px;
}

#page-content h2 {
    font-weight: 300;
    font-size: 30px;
    color: red;
}

/* Media queries for page content */
@media (min-width: 768px) and (max-width: 1169px) {
    #page-content { margin-top: 163px; }
}

@media (max-width: 767px) {
    #page-content { margin-top: 81px; }
}

/* ============================================================= */
/*  CHI – NEW ABOUT / HERO SECTION        */
/* ============================================================= */
.chi-about-section {
    padding: 80px 0 100px;
    background: #f9f9f9;
}

.chi-img-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.chi-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.chi-content {
    padding-left: 50px;
}

.chi-title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    color: #333;
}

.chi-title .chi-small {
    font-size: 14px;
    color: red;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.chi-title .chi-red {
    color: red;
}

.chi-lead {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.chi-checks {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.chi-checks li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

.chi-checks li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -2px;
    color: red;
    font-weight: bold;
    font-size: 24px;
}

.chi-info {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.chi-actions {
    margin-top: 40px;
}

.chi-actions .btn-default {
    padding: 0 40px;
    margin-right: 30px;
}

.chi-phone {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.chi-phone i {
    color: red;
    margin-right: 8px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .chi-content { padding-left: 15px; padding-top: 40px; }
    .chi-title { font-size: 36px; }
}

@media (max-width: 767px) {
    .chi-about-section { padding: 60px 0; }
    .chi-content { padding-left: 15px; padding-top: 30px; text-align: center; }
    .chi-actions { text-align: center; }
    .chi-actions .btn-default { margin: 20px auto; display: inline-block; }
    .chi-checks li { padding-left: 0; text-align: left; }
    .chi-checks li:before { left: 50%; transform: translateX(-50%); top: -35px; }
}

/* ... (the rest of the blog-related rules are similarly formatted) ... */
/* 100% PERFECT MATCH TO YOUR REFERENCE IMAGE */
.perfect-circle {
    position: absolute;
    top: 80px;
    left: 60px;
    width: 240px;
    height: 240px;
    z-index: 10;
}
.circle-svg { transform: rotate(-90deg); animation: rotate 40s linear infinite; }
@keyframes rotate { to { transform: rotate(270deg); } }
.outer-text { font-size: 16px; font-weight: 700; letter-spacing: 10px; text-transform: uppercase; }
.inner-black-ring {
    position: absolute;
    top: 50%; left: 50%;
    width: 170px; height: 170px;
    background: #000;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
.inner-red-circle {
    position: absolute;
    top: 50%; left: 50%;
    width: 140px; height: 140px;
    background: #e30613;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.circle-big-text {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.1;
}

/* <!-- 3D Rotating Cube Styles */

        .cube-section {
            padding: 160px 0;
            background: #f8f9fa;
        }

        .cube-row {
            align-items: center;
        }

        .cube-text {
            text-align: left;
        }

        .cube-text h2 {
            color: #c00;
            font-size: 3.2rem;
            margin-bottom: 40px;
            font-weight: 700;
        }

        .cube-text p {
            font-size: 1.3rem;
            color: #444;
            line-height: 1.9;
            max-width: 620px;
            margin-bottom: 30px;
        }

        .cube-text .highlight {
            font-weight: bold;
            color: #c00;
        }

        .cube-container {
            perspective: 2000px;
            display: flex;
            justify-content: center;
        }

        .scene {
            width: 450px;
            height: 450px;
            position: relative;
            transform-style: preserve-3d;
        }

        .cube {
            width: 100%;
            height: 100%;
            position: relative;
            transform-style: preserve-3d;
            cursor: grab;
            transform: rotateX(-20deg) rotateY(-30deg);
        }

        .cube.dragging {
            cursor: grabbing;
        }

        .cube-face {
            position: absolute;
            width: 450px;
            height: 450px;
            background: rgba(255, 255, 255, 0.95);
            border: 4px solid #c00;
            border-radius: 15px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.18);
            backdrop-filter: blur(8px);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 40px;
            box-sizing: border-box;
        }

        .face-image {
            width: 100%;
            height: 100%;
    object-fit: cover;          /* most common — fills area, may crop */
    /* object-fit: contain;     */ /* alternative — shows whole image, may show gaps */
    /* object-position: center; */ /* default anyway */
    display: block;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            margin-bottom: 25px;
        }

        .face-title {
            font-size: 2.2rem;
            font-weight: bold;
            color: #c00;
            margin: 15px 0;
        }

        .face-subtitle {
            font-size: 1.2rem;
            color: #333;
            text-align: center;
        }

        /* Face Positions */
        .front  { transform: translateZ(225px); }
        .back   { transform: rotateY(180deg) translateZ(225px); }
        .right  { transform: rotateY(90deg) translateZ(225px); }
        .left   { transform: rotateY(-90deg) translateZ(225px); }
        .top    { transform: rotateX(90deg) translateZ(225px); }
        .bottom { transform: rotateX(-90deg) translateZ(225px); }

        /* Maximum spacing on desktop – matches your screenshot */
        @media (min-width: 992px) {
            .cube-text {
                padding-right: 250px; /* Very generous space after text */
            }
            .cube-container {
                padding-left: 150px; /* Extra space before cube */
            }
        }

        @media (max-width: 991px) {
            .cube-row {
                flex-direction: column;
                text-align: center;
            }
            .cube-text {
                padding-right: 0;
                padding-bottom: 100px;
            }
            .cube-text p {
                max-width: none;
            }

            /* Disable touch on mobile */
            .cube {
                pointer-events: none;
                cursor: default;
            }
        }

        @media (max-width: 480px) {
            .scene {
                width: 320px;
                height: 320px;
            }
            .cube-face {
                width: 320px;
                height: 320px;
            }
            .front  { transform: translateZ(160px); }
            .back   { transform: rotateY(180deg) translateZ(160px); }
            .right  { transform: rotateY(90deg) translateZ(160px); }
            .left   { transform: rotateY(-90deg) translateZ(160px); }
            .top    { transform: rotateX(90deg) translateZ(160px); }
            .bottom { transform: rotateX(-90deg) translateZ(160px); }
        }
            
.navbar-custom {
            background-color: #ffffff;
            border: none;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            min-height: 90px;
            padding: 10px 0;
        }

        .navbar-brand {
            padding: 5px 15px;
        }

        .navbar-brand img {
            height: 75px;
            transition: transform 0.3s ease;
        }

        .navbar-brand:hover img {
            transform: scale(1.05);
        }

        /* Base pill style for ALL menu items */
        .navbar-nav > li > a {
            display: block;
            padding: 10px 22px !important;
            font-weight: 600;
            color: #555 !important;
            background-color: #f5f5f5;
            border-radius: 50px;
            transition: all 0.3s ease;
            white-space: nowrap;
            margin: 5px 4px;
            border: 2px solid transparent;
        }

        /* Hover for regular menu items → become red like Quote button */
        .navbar-nav > li > a:hover:not(.btn-quote) {
            background-color: #c00 !important;
            color: #ffffff !important;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(204,0,0,0.3);
            border: 2px solid #c00;
        }

        /* Get a Quote – starts red, inverts to white on hover */
        .navbar-nav > li > a.btn-quote {
            background-color: #c00 !important;
            color: #ffffff !important;
            font-weight: 700;
            padding: 12px 32px !important;
            box-shadow: 0 4px 12px rgba(204,0,0,0.3);
            margin: 5px 4px;
            border: 2px solid #c00;
            transition: all 0.3s ease;
        }

        .navbar-nav > li > a.btn-quote:hover {
            background-color: #ffffff !important;
            color: #c00 !important;
            border: 2px solid #c00;
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(204,0,0,0.35);
        }

        /* Contact info */
        .navbar-contact {
            margin-top: 20px;
            text-align: right;
            font-size: 14px;
            color: #555;
        }

        .navbar-contact a {
            color: #c00;
            font-weight: bold;
        }

        /* Mobile fixes */
        @media (max-width: 991px) {
            .navbar-header {
                float: none;
                text-align: center;
            }

            .navbar-brand {
                float: none;
                display: inline-block;
            }

            .navbar-contact {
                text-align: center;
                margin: 15px 0;
            }

            .navbar-toggle {
                position: absolute;
                top: 25px;
                right: 15px;
                border: none;
                background: transparent !important;
            }

            .navbar-toggle .icon-bar {
                background-color: #c00;
            }

            .navbar-toggle:focus, .navbar-toggle:hover {
                background: transparent !important;
            }

            .navbar-collapse {
                background: #ffffff;
                border-top: 1px solid #eee;
                box-shadow: 0 8px 20px rgba(0,0,0,0.1);
                margin-top: 15px;
                padding: 20px 0;
            }

            .navbar-nav {
                float: none !important;
                text-align: center;
                margin: 0 auto;
            }

            .navbar-nav > li {
                float: none;
                display: inline-block;
                margin: 8px 6px;
            }

            .navbar-nav > li > a {
                display: inline-block;
                margin: 6px 4px;
                min-width: 140px;
            }

            .navbar-nav > li > a.btn-quote {
                min-width: 180px;
                margin: 15px auto;
            }
        }

        @media (max-width: 480px) {
            .navbar-nav > li {
                display: block;
                width: 100%;
                margin: 10px 0;
            }

            .navbar-nav > li > a {
                display: block;
                width: 80%;
                margin: 10px auto;
            }

            .navbar-nav > li > a.btn-quote {
                width: 70%;
                margin: 20px auto;
            }
        }        


        /* Reset & base */
        * { box-sizing: border-box; }
        html, body {
            margin: 0;
            padding: 0;
            font-family: Arial, Helvetica, sans-serif;
            font-size: 14px;
            line-height: 1.42857143;
            color: #333;
            background: #fff;
        }
        img {
            max-width: 100%;
            height: auto;
            vertical-align: middle;
            border: 0;
        }


        /* Management */

        
        .team-container {
            padding: 40px 0;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
            padding: 0 15px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .team-member {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.12);
            cursor: pointer;
            height: 380px;
            background-size: cover;
            background-position: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .member-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
            color: white;
            padding: 20px 15px 15px;
            text-align: center;
        }

        .member-name {
            margin: 0 0 8px;
            font-size: 1.45em;
            font-weight: 700;
            line-height: 1.2;
        }

        .member-role {
            margin: 0;
            font-size: 1.05em;
            opacity: 0.92;
        }

        
        @media (min-width: 1100px) {
            .team-grid {
                grid-template-columns: repeat(3, 1fr) !important;
            }
        }

        @media (min-width: 992px) and (max-width: 1099px) {
            .team-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (min-width: 768px) and (max-width: 991px) {
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 767px) {
            .team-grid {
                grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            }
        }

        /* Modal styles */
        .modal-content {
            border-radius: 12px;
        }

        .modal-header {
            background: #e30613;
            color: white;
            border-top-left-radius: 12px;
            border-top-right-radius: 12px;
        }

        #modalName {
            font-weight: 700;
            color: #111;
            font-size: 2.1em;
            margin: 0 0 8px;
        }

        #modalImage {
            width: 220px;
            height: 220px;
            object-fit: cover;
            border: 6px solid red;
            border-radius: 50%;
            margin: 25px auto 20px;
            display: block;
        }

        #modalTitle {
            font-size: 1.3em;
            color: #444;
            font-style: italic;
            margin: 0 0 30px;
        }

        .modal-bio {
            text-align: left;
            max-width: 620px;
            margin: 0 auto 40px;
            font-size: 1.1em;
            line-height: 1.7;
            color: #333;
        }

        .modal-bio p {
            white-space: pre-wrap;
            word-wrap: break-word;
            margin: 0 0 1.4em;
        }

        /* Page layout */
        /* #page-content {
            padding-top: 5px;
            padding-bottom: 40px;
        }

        .team-container {
            padding: 20px 15px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .team-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            justify-content: center;
        }

        .team-member {
            width: 300px;
            height: 460px;
            background-size: cover;
            background-position: top center;
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 8px 25px rgba(0,0,0,0.18);
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .team-member:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.28);
        } */

        /* .member-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.88) 30%, transparent);
            color: white;
            padding: 30px 20px 20px;
            text-align: center;
        }

        .member-name {
            margin: 0 0 8px;
            font-size: 1.45em;
            font-weight: 700;
            line-height: 1.2;
        }

        .member-role {
            margin: 0;
            font-size: 1.05em;
            opacity: 0.92;
        } */

        /* Modal */
        /* .modal {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 1050;
            background: rgba(0,0,0,0.6);
            overflow-x: hidden;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
        } */

        /* .modal-dialog {
            position: relative;
            width: auto;
            margin: 30px 15px;
            pointer-events: none;
        } */

        /* .modal-content {
            position: relative;
            background: #fff;
            border-radius: 6px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
            background-clip: padding-box;
            pointer-events: auto;
        } */

        /* .modal-header {
            padding: 15px 15px 15px 20px;
            border-bottom: 1px solid #e5e5e5;
            min-height: 16.43px;
        } */

        /* .modal-title {
            margin: 0;
            font-size: 18px;
            line-height: 1.42857143;
        } */

        /* .modal-body {
            position: relative;
            padding: 20px;
            text-align: center;
        } */

        /* .modal-footer {
            padding: 15px;
            text-align: right;
            border-top: 1px solid #e5e5e5;
        } */

        .close {
            float: right;
            font-size: 24px;
            font-weight: 700;
            line-height: 1;
            color: #000;
            text-shadow: 0 1px 0 #fff;
            opacity: 0.3;
            cursor: pointer;
        }
/* 
        .close:hover,
        .close:focus {
            color: #000;
            opacity: 0.7;
            text-decoration: none;
        }

        .btn {
            display: inline-block;
            padding: 6px 12px;
            margin-bottom: 0;
            font-size: 14px;
            font-weight: 400;
            line-height: 1.42857143;
            text-align: center;
            white-space: nowrap;
            vertical-align: middle;
            cursor: pointer;
            border: 1px solid transparent;
            border-radius: 4px;
            background-color: #f8f8f8;
            border-color: #ccc;
        } */

        /* .btn-default:hover,
        .btn-default:focus {
            background-color: #e6e6e6;
            border-color: #adadad;
        }

        #modalImage {
            width: 220px;
            height: 220px;
            object-fit: cover;
            border: 6px solid #007bff;
            border-radius: 50%;
            margin: 25px auto 20px;
            display: block;
        } */

        /* #modalName {
            font-weight: 700;
            color: #111;
            font-size: 2.1em;
            margin: 0 0 8px;
        } */

        /* #modalTitle {
            font-size: 1.3em;
            color: #444;
            font-style: italic;
            margin: 0 0 30px;
        } */

        /* .modal-bio {
            text-align: left;
            max-width: 620px;
            margin: 0 auto 40px;
            font-size: 1.1em;
            line-height: 1.7;
            color: #333;
        } */

        /* .modal-bio p {
            white-space: pre-wrap;
            word-wrap: break-word;
            margin: 0 0 1.4em;
        } */
/* 
        .modal-bio p:last-child {
            margin-bottom: 0;
        } */

        @media (min-width: 768px) {
            .modal-dialog {
                width: 600px;
                margin: 60px auto;
            }
        }

        @media (max-width: 768px) {
            .team-member {
                width: 280px;
                height: 420px;
            }
        }