
/* ===== Hardisty Theme Overrides ===== */
:root {
    --bs-primary: #D9882A;   /* Amber */
    --bs-dark: #0F1A24;      /* Deep Slate */
    --bs-light: #F5F1EA;     /* Off White */
    --bs-white: #ffffff;
    --bs-secondary: #6c757d;
}

/* Typography */
body {
    font-family: 'Inter', sans-serif;
    color: var(--bs-dark);
    background-color: #F5F1EA;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

/* Navbar styling */
.navbar {
    background: #F5F1EA !important;
}

.navbar .navbar-nav .nav-link {
    color: #0F1A24;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #D9882A;
}

/* Carousel overlay */
.carousel .carousel-caption {
    background: rgba(15, 26, 36, 0.85);
}

/* Buttons */
.btn-primary {
    background-color: #D9882A;
    border-color: #D9882A;
    border-radius: 5px;
}

.btn-primary:hover {
    background-color: #b8741f;
    border-color: #b8741f;
}
/* ===== End Hardisty Theme ===== */

/********** Template CSS **********/

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

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

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

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

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

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


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

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


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

.btn-primary,
.btn-outline-primary:hover {
    color: var(--bs-light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--bs-dark);
}

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

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

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

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

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

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

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

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

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

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

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
/* ================= CAROUSEL FIXED ================= */

/* Set consistent height */
.carousel .carousel-item {
    height: 85vh;
    position: relative;
}

/* Image fit */
.carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Caption Styling */
.carousel .carousel-caption {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

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

    text-align: left;

    /* Updated overlay (your brand tone) */
    background: rgba(15, 26, 36, 0.85);

    padding: 3rem;
    padding-left: 11rem;

    z-index: 1;
}

/* Side Indicators */
.carousel .carousel-indicators {
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;

    width: 80px;
    flex-direction: column;

    margin: 0;
    margin-left: 3rem;
}

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

    margin: 5px 0;
    border: 2px solid #FFFFFF;
    overflow: hidden;
}

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

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

    .carousel .carousel-item {
        height: 70vh;
    }

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

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

@media (max-width: 768px) {

    .carousel .carousel-item {
        height: 60vh;
    }

    .carousel .carousel-indicators {
        display: none; /* cleaner mobile UI */
    }

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

/* Optional: Full screen on large screens */
@media (min-width: 1200px) {
    .carousel .carousel-item {
        height: 90vh;
    }
}





.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0,0,0,0.5);
    padding: 20px;
    border-radius: 50%;
}
.page-header {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}


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

.about-img::before {
    position: absolute;
    content: "";
    width: 200px;
    height: 300px;
    top: 0;
    left: 0;
    border: 5px solid var(--bs-primary);
    animation: animateUpDown 3s ease-in-out infinite;
    z-index: -1;
}

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


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

.service .service-inner {
    position: relative;
    height: 100%;
    margin-top: 45px;
    background: var(--bs-white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
}

.service .service-inner::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    transition: 1s;
    background: var(--bs-primary);
}

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

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

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

.service .service-item:hover h5,
.service .service-item:hover p {
    color: var(--bs-white);
}

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


/*** Team ***/
.team .team-item {
    background: var(--bs-white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
}

.team .team-item .team-social {
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    transition: .5s;
    background: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.team .team-item .team-social .btn {
    opacity: 0;
    transition: .5s;
}

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


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

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

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

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

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

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

.testimonial-img div::after {
    position: absolute;
    content: "";
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    box-shadow: 0 0 10px 10px var(--bs-white) inset;
    z-index: 1;
}

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

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

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    color: var(--bs-primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-dark);
}


/*** Contact ***/
.contact {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-3.jpg) left center no-repeat;
    background-size: cover;
}

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

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


/*** Newsletter ***/
.newsletter {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-3.jpg) left center no-repeat;
    background-size: cover;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--bs-secondary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--bs-primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--bs-primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    background: #222222;
}

.copyright a {
    color: var(--bs-white);
}

.copyright a:hover {
    color: var(--bs-primary);
}

/* ================= Final Footer ================= */

.footer {
    background: #09121A !important;
    position: relative;
    overflow: hidden;
    padding: 55px 0 45px !important;
}

.footer .container {
    position: relative;
    z-index: 2;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.footer::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(217,136,42,0.18), transparent 70%);
    top: -210px;
    right: -170px;
    filter: blur(80px);
    animation: footerGlow 12s ease-in-out infinite;
}

.footer::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 70%);
    left: -130px;
    bottom: -140px;
    filter: blur(60px);
}

@keyframes footerGlow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.18); }
}

/* Heading */
.footer h5 {
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 26px;
    position: relative;
}

.footer h5::after {
    content: "";
    position: absolute;
    left: 0;
    width: 36px;
    height: 2px;
    background: #D9882A;
}

/* Text */
.footer-about {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.88;
    margin-bottom: 16px;
}

/* Contact rows */
.footer-contact {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: 16px;
    line-height: 1.55;
    margin-bottom: 11px;
}

.footer-contact i {
    width: 20px;
    min-width: 20px;
    margin-top: 3px;
    transition: 0.3s ease;
}

.footer-contact span {
    flex: 1;
}

.footer-contact:hover i {
    transform: scale(1.18);
}

/* Links */
.footer .btn-link {
    display: block;
    width: fit-content;
    font-size: 16px;
    padding: 5px 0;
    text-decoration: none;
    transition: 0.3s ease;
    position: relative;
}

.footer .btn-link::before {
    content: "›";
    margin-right: 7px;
    opacity: 1;
    transform: translateX(-6px);
    display: inline-block;
    transition: 0.3s ease;
}

.footer .btn-link:hover {
    color: #D9882A !important;
    padding-left: 8px;
}

.footer .btn-link:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Gallery */
.footer-gallery img {
    width: 100%;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    filter: brightness(0.88);
    transition: 0.35s ease;
}

.footer-gallery .col-4 {
    overflow: hidden;
    border-radius: 8px;
}

.footer-gallery img:hover {
    transform: scale(1.1);
    filter: brightness(1.05);
}

/* Copyright */
.footer-copyright {
    background: #0B141C;
    padding: 14px 0;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-copyright,
.footer-copyright span {
    font-size: 15px;
    opacity: 0.92;
}

/* Image Popup */
.footer-img-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.86);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    padding: 20px;
}

.footer-img-modal.active {
    display: flex;
}

.footer-img-modal img {
    max-width: 88%;
    max-height: 86%;
    border-radius: 12px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.65);
}

.footer-img-modal span {
    position: absolute;
    top: 26px;
    right: 38px;
    color: #fff;
    font-size: 38px;
    cursor: pointer;
    line-height: 1;
}


/* ===== Footer alignment fix ===== */

.footer .row {
    align-items: flex-start;
}

.footer h5 {
    min-height: 28px;
    margin-bottom: 28px;
    line-height: 1.2;
}

.footer h5::after {
    bottom: -3px ;
}

/* Better column balance on desktop */
.footer .col-lg-3 {
    padding-left: 18px;
    padding-right: 18px;
}

/* Fix services column spacing */
.footer .btn-link {
    line-height: 1.45;
    margin-bottom: 4px;
}

/* Coverage gallery alignment */
.footer-gallery {
    max-width: 230px;
}

.footer-gallery img {
    height: 66px;
}


/* ===== Mobile footer responsive ===== */

@media (max-width: 767.98px) {
    .footer {
        text-align: left !important;
        padding: 42px 0 32px !important;
    }

    .footer .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .footer .row {
        row-gap: 34px;
    }

    .footer h5 {
        text-align: left;
        margin-bottom: 22px;
        min-height: auto;
    }

    .footer h5::after {
        left: 0 !important;
        transform: none !important;
    }

    .footer-about {
        text-align: left;
        max-width: 320px;
    }

    .footer-contact {
        justify-content: flex-start;
        text-align: left;
        max-width: 320px;
    }

    .footer .btn-link {
        margin-left: 0;
        margin-right: 0;
        text-align: left;
        width: fit-content;
    }

    .footer-gallery {
        max-width: 320px;
    }

    .footer-gallery img {
        height: 86px;
    }

    .footer-copyright {
        text-align: center;
    }
}


.p-4.bg-white {
    border-radius: 8px;
    transition: 0.3s;
}

.p-4.bg-white:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}



.border-secondary {
    border-color: rgba(255,255,255,0.15) !important;
}

.border-secondary:hover {
    border-color: #D9882A !important;
    transform: translateY(-5px);
    transition: 0.3s;
}

.container-fluid h5 {
    letter-spacing: 0.5px;
}


.py-6 {
    padding-top: 80px;
    padding-bottom: 80px;
}





/* FAQ styling */
.accordion-button {
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background-color: #D9882A;
    color: #fff;
}

.accordion-body {
    color: #444;
}

/* CTA spacing */
.container-fluid.py-5 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}





/* Section spacing */
.py-6 {
    padding: 80px 0;
}

/* Image styling */
.about-img {
    overflow: hidden;
    border-radius: 10px;
}

.about-img img {
    transition: 0.5s;
}

/* Hover zoom effect */
.about-block:hover img {
    transform: scale(1.05);
}

/* Text spacing */
.about-block {
    margin-bottom: 60px;
}

/* Principle Boxes */
.principle-box {
    background: #0F1A24;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 30px;
    border-radius: 10px;
    transition: 0.3s ease;
}

/* Heading */
.principle-box h6 {
    color: #D9882A;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Text */
.principle-box p {
    color: #ccc;
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
}

/* Hover Effect */
.principle-box:hover {
    transform: translateY(-6px);
    border-color: #D9882A;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* Headings */
h4 {
    color: #0F1A24;
    font-weight: 600;
}

h6 {
    font-weight: 600;
    margin-bottom: 10px;
}

#header {
    position: sticky !important;
    top: 0 !important;
    width: 100%;
    z-index: 9999;
}

/* default header position */
#header {
    transform: translateY(0);
    transition: transform 0.3s ease;
}

/* when topbar hides */
#header.topbar-hidden {
    transform: translateY(-73px); /* height of topbar */
}

#header .bg-primary {
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateY(0);
    opacity: 1;
}

#header .bg-primary.topbar-hide {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

/* ===== Services Dropdown ===== */

/* Desktop dropdown */
.navbar .dropdown-menu {
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    padding: 10px 0;
    min-width: 240px;
}

/* Dropdown links */
.navbar .dropdown-menu .dropdown-item {
    font-size: 14px;
    font-weight: 500;
    color: #0F1A24;
    padding: 10px 22px;
    letter-spacing: .3px;
    transition: 0.25s ease;
}

/* Hover effect */
.navbar .dropdown-menu .dropdown-item:hover {
    background: rgba(217,136,42,0.08);
    color: #D9882A;
    padding-left: 26px;
}


/* ===== Mobile Navbar ===== */

@media (max-width: 991px){

    .navbar .dropdown-menu {
        border: none;
        box-shadow: none;
        padding-left: 10px;
        background: transparent !important;
    }

    .navbar .dropdown-menu .dropdown-item {
        font-size: 15px;
        padding: 10px 0;
        color: #0F1A24;
    }

    .navbar .dropdown-menu .dropdown-item:hover {
        background: none;
        color: #D9882A;
        padding-left: 5px;
    }

}
/* ===== Service dropdown bullets ===== */

.navbar .dropdown-menu .dropdown-item {
    position: relative;
    padding-left: 0px;
}



/* hover effect */
.navbar .dropdown-menu .dropdown-item:hover::before {
    color: #0F1A24;
    transform: translateY(-50%) scale(1.2);
}

/* Conatct page */
/* ================= Contact Page - Minimal Premium Theme ================= */

.contact-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #F7F2EA 0%, #FFFDF9 55%, #EFE6D8 100%);
    padding: 130px 0 90px;
}

.contact-hero::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    background: rgba(217, 136, 42, 0.12);
    border-radius: 50%;
    top: -140px;
    right: -120px;
    transition: 0.6s ease;
}

.contact-hero::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    background: rgba(15, 26, 36, 0.06);
    border-radius: 50%;
    bottom: -110px;
    left: -90px;
}

.contact-hero:hover::before {
    transform: scale(1.08);
}

.contact-eyebrow {
    position: relative;
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #D9882A;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 16px;
}

.contact-hero-title {
    position: relative;
    font-size: 54px;
    line-height: 1.1;
    color: #0F1A24;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contact-hero-text {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
    color: #5f6872;
    font-size: 17px;
    line-height: 1.8;
}

/* Main Section */
.contact-main-section {
    position: relative;
    background: #FAF7F1;
    padding: 85px 0;
    overflow: hidden;
}

.contact-main-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 26, 36, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 26, 36, 0.035) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.45;
    pointer-events: none;
}

/* Cards */
.minimal-contact-card,
.minimal-form-card {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(15, 26, 36, 0.08);
    border-radius: 24px;
    padding: 38px;
    box-shadow: 0 18px 45px rgba(15, 26, 36, 0.07);
    transition: 0.35s ease;
    overflow: hidden;
}

.minimal-contact-card::before,
.minimal-form-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(217, 136, 42, 0.10), transparent 38%);
    opacity: 0;
    transition: 0.35s ease;
    pointer-events: none;
}

.minimal-contact-card:hover,
.minimal-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 65px rgba(15, 26, 36, 0.11);
}

.minimal-contact-card:hover::before,
.minimal-form-card:hover::before {
    opacity: 1;
}

/* Get in touch section - reduced font size */
.minimal-contact-card h3 {
    position: relative;
    color: #0F1A24;
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.contact-muted {
    position: relative;
    color: #69737d;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 26px;
}

/* Info Items */
.minimal-info-item {
    position: relative;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 17px 0;
    border-bottom: 1px solid rgba(15, 26, 36, 0.08);
    transition: 0.3s ease;
}

.minimal-info-item::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 1px;
    background: #D9882A;
    transition: 0.35s ease;
}

.minimal-info-item:hover {
    padding-left: 7px;
}

.minimal-info-item:hover::before {
    width: 100%;
}

.minimal-info-item span {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 13px;
    background: rgba(217, 136, 42, 0.12);
    color: #D9882A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: 0.3s ease;
}

.minimal-info-item:hover span {
    background: #D9882A;
    color: #fff;
    transform: rotate(-4deg);
}

.minimal-info-item h6 {
    color: #0F1A24;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 4px;
}

.minimal-info-item p {
    margin: 0;
    color: #5f6872;
    font-size: 14px;
    word-break: break-word;
}

/* Hours Box */
.minimal-hours-box {
    position: relative;
    margin-top: 26px;
    padding: 22px;
    border-radius: 18px;
    background: #F6EFE4;
    overflow: hidden;
}

.minimal-hours-box h6 {
    color: #0F1A24;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 10px;
}

.minimal-hours-box p {
    color: #5f6872;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* Form Note */
/* ===== Unique Confidential Note ===== */

.form-note {
    position: relative;
    margin-bottom: 32px;
    padding: 24px 26px 24px 92px;
    background: #fffaf3;
    border-radius: 22px;
    color: #5d6873;
    font-size: 14.5px;
    line-height: 1.75;
    box-shadow: inset 0 0 0 1px rgba(217, 136, 42, 0.18);
    overflow: hidden;
}

/* big soft confidential mark */
.form-note::before {
    content: "CONF";
    position: absolute;
    left: -18px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 4px;
    color: rgba(217, 136, 42, 0.16);
}

/* left icon badge */
.form-note::after {
    content: "\F47B";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 34px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #0F1A24;
    color: #D9882A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 10px 24px rgba(15, 26, 36, 0.18);
}

.form-note:hover {
    transform: translateY(-3px);
    box-shadow:
        inset 0 0 0 1px rgba(217, 136, 42, 0.32),
        0 16px 35px rgba(15, 26, 36, 0.08);
}

.form-note strong {
    color: #0F1A24;
    font-weight: 700;
}

/* ===== Unique Hours Section ===== */

.minimal-hours-box {
    margin-top: 28px;
    padding: 26px;
    border-radius: 20px;
    background: linear-gradient(145deg,#faf6ef,#f4ecdf);
    border: 1px solid rgba(217,136,42,0.15);
    transition: 0.35s ease;
    position: relative;
}

/* hover animation */
.minimal-hours-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(15,26,36,0.08);
}

/* title */
.hours-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.hours-title h6 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    color: #0F1A24;
}

/* icon circle */
.hours-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #0F1A24;
    color: #D9882A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* rows */
.hours-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #5d6873;
    padding: 6px 0;
}

.hours-item i {
    color: #D9882A;
}

/* note */
.hours-note {
    display: flex;
    gap: 12px;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px dashed rgba(15,26,36,0.15);
}

.hours-note i {
    color: #D9882A;
    margin-top: 3px;
}

.hours-note p {
    font-size: 13.5px;
    color: #6b7480;
    line-height: 1.6;
    margin: 0;
}

/* Form Fields */
.minimal-form-card .form-control,
.minimal-form-card .form-select {
    height: 70px;
    border: 1px solid rgba(15, 26, 36, 0.08);
    background-color: #FBF8F3;
    color: #0F1A24;
    border-radius: 15px;
    font-size: 15px;
    transition: 0.25s ease;
}

.minimal-form-card textarea.form-control {
    height: 150px !important;
    resize: none;
}

.minimal-form-card .form-select {
    padding-top: 1.9rem;
    padding-bottom: 0.55rem;
}

.minimal-form-card .form-floating label {
    color: #7b858e;
    font-size: 14px;
    padding-top: 0.85rem;
}

.minimal-form-card .form-control:focus,
.minimal-form-card .form-select:focus {
    background-color: #fff;
    box-shadow: 0 0 0 0.18rem rgba(217, 136, 42, 0.14);
}

/* Submit Button */
.minimal-submit-btn {
    position: relative;
    height: 58px;
    border-radius: 15px;
    letter-spacing: 1px;
    overflow: hidden;
    transition: 0.3s ease;
}

.minimal-submit-btn::before {
    content: "";
    position: absolute;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.18);
    left: 0;
    top: 0;
    transition: 0.35s ease;
}

.minimal-submit-btn:hover::before {
    width: 100%;
}

.minimal-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(217, 136, 42, 0.25);
}

/* Map */
.minimal-map-section {
    background: #FAF7F1;
    padding: 0 0 90px;
}

.map-wrapper {
    position: relative;
    height: 410px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(15, 26, 36, 0.08);
    box-shadow: 0 18px 45px rgba(15, 26, 36, 0.08);
    transition: 0.35s ease;
}

.map-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(217, 136, 42, 0.35);
    border-radius: 24px;
    opacity: 0;
    z-index: 2;
    pointer-events: none;
    transition: 0.35s ease;
}

.map-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 65px rgba(15, 26, 36, 0.12);
}

.map-wrapper:hover::before {
    opacity: 1;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(30%) saturate(85%);
}

/* Responsive */
@media (max-width: 991.98px) {
    .contact-hero {
        min-height: auto;
        padding: 115px 0 75px;
    }

    .contact-hero-title {
        font-size: 42px;
    }

    .contact-main-section {
        padding: 70px 0;
    }
}

@media (max-width: 575.98px) {
    .contact-hero {
        padding: 100px 0 60px;
    }

    .contact-hero-title {
        font-size: 34px;
    }

    .contact-hero-text {
        font-size: 15.5px;
    }

    .minimal-contact-card,
    .minimal-form-card {
        padding: 26px;
        border-radius: 18px;
    }

    .minimal-contact-card h3 {
        font-size: 21px;
    }

    .map-wrapper {
        height: 320px;
        border-radius: 18px;
    }
}

/* ================= Service Page Premium Minimal Theme ================= */

.service-hero {
    position: relative;
    padding: 145px 0 105px;
    background: linear-gradient(135deg, #F7F2EA 0%, #FFFDF9 55%, #EFE6D8 100%);
    overflow: hidden;
}

.service-hero::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    right: -120px;
    top: -140px;
    border-radius: 50%;
    background: rgba(217, 136, 42, 0.13);
    transition: 0.6s ease;
}

.service-hero::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    left: -90px;
    bottom: -110px;
    border-radius: 50%;
    background: rgba(15, 26, 36, 0.06);
}

.service-hero:hover::before {
    transform: scale(1.08);
}

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

.service-eyebrow {
    display: inline-block;
    color: #D9882A;
    font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 16px;
}

.service-title {
    font-size: 52px;
    line-height: 1.08;
    color: #0F1A24;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.service-subtitle {
    max-width: 620px;
    color: #5f6872;
    font-size: 17px;
    line-height: 1.8;
}

.service-hero-img,
.service-img {
    border-radius: 24px;
    box-shadow: 0 22px 55px rgba(15, 26, 36, 0.12);
    transition: 0.4s ease;
}

.service-hero-img:hover,
.service-img:hover {
    transform: translateY(-6px) scale(1.01);
}


/* Overview */
.service-overview {
    padding: 95px 0;
    background: #FFFDF9;
}

.service-overview h2,
.service-engagement h2,
.service-process h2 {
    font-size: 38px;
    color: #0F1A24;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.service-overview .text-center p,
.service-engagement .text-center p,
.service-process .text-center p {
    color: #65707a;
    font-size: 16.5px;
    line-height: 1.8;
}

.service-overview p {
    color: #5f6872;
    font-size: 16px;
    line-height: 1.85;
}


/* Engagement Section */
.service-engagement {
    position: relative;
    padding: 95px 0;
    background: #FAF7F1;
    overflow: hidden;
}

.service-engagement::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 26, 36, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 26, 36, 0.035) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.5;
    pointer-events: none;
}

.service-engagement .container {
    position: relative;
    z-index: 2;
}


/* Unique Cards */
.service-card {
    position: relative;
    min-height: 250px;
    padding: 34px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(15, 26, 36, 0.08);
    box-shadow: 0 18px 45px rgba(15, 26, 36, 0.07);
    overflow: hidden;
    transition: 0.35s ease;
}

/* soft glow */
.service-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -70px;
    top: -70px;
    border-radius: 50%;
    background: rgba(217, 136, 42, 0.13);
    transition: 0.45s ease;
}

/* bottom line animation */
.service-card::after {
    content: "";
    position: absolute;
    width: 0;
    height: 4px;
    left: 0;
    bottom: 0;
    background: #D9882A;
    transition: 0.35s ease;
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 26px 70px rgba(15, 26, 36, 0.12);
    border-color: rgba(217, 136, 42, 0.28);
}

.service-card:hover::before {
    transform: scale(1.25);
    background: rgba(217, 136, 42, 0.2);
}

.service-card:hover::after {
    width: 100%;
}

.service-card .icon {
    position: relative;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(217, 136, 42, 0.12);
    color: #D9882A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 22px;
    transition: 0.35s ease;
    z-index: 2;
}

.service-card:hover .icon {
    background: #0F1A24;
    color: #D9882A;
    transform: rotate(-4deg) scale(1.05);
}

.service-card h5 {
    position: relative;
    z-index: 2;
    color: #0F1A24;
    font-size: 19px;
    line-height: 1.35;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.service-card p {
    position: relative;
    z-index: 2;
    color: #5f6872;
    font-size: 15px;
    line-height: 1.75;
    margin: 0;
}


/* Process Section */
.service-process {
    padding: 95px 0;
    background: #FFFDF9;
}

.process-card {
    position: relative;
    height: 100%;
    padding: 34px 28px;
    border-radius: 22px;
    background: linear-gradient(145deg, #F8F2E8, #FFFDF9);
    border: 1px solid rgba(15, 26, 36, 0.07);
    text-align: left;
    overflow: hidden;
    transition: 0.35s ease;
}

.process-card::before {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    right: -60px;
    top: -60px;
    border-radius: 50%;
    background: rgba(217, 136, 42, 0.14);
    transition: 0.4s ease;
}

.process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 55px rgba(15, 26, 36, 0.1);
}

.process-card:hover::before {
    transform: scale(1.35);
}

.process-card span {
    position: relative;
    display: inline-block;
    font-size: 42px;
    font-weight: 800;
    color: rgba(217, 136, 42, 0.35);
    margin-bottom: 16px;
    z-index: 2;
}

.process-card h6 {
    position: relative;
    z-index: 2;
    color: #0F1A24;
    font-size: 17px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.process-card p {
    position: relative;
    z-index: 2;
    color: #5f6872;
    font-size: 15px;
    line-height: 1.75;
    margin: 0;
}


/* CTA */
.service-cta {
    position: relative;
    padding: 100px 0;
    background: #0F1A24;
    color: #fff;
    overflow: hidden;
}

.service-cta::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    right: -120px;
    top: -140px;
    border-radius: 50%;
    background: rgba(217, 136, 42, 0.16);
}

.service-cta::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    left: -90px;
    bottom: -110px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.service-cta .container {
    position: relative;
    z-index: 2;
}

.service-cta h3 {
    color: #fff;
    font-size: 34px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.service-cta p {
    max-width: 650px;
    margin: 0 auto;
    color: #cfd5da;
    font-size: 16px;
    line-height: 1.8;
}

.service-cta .btn {
    margin-top: 28px;
    border-radius: 14px;
    padding: 16px 34px;
}


/* Responsive */
@media (max-width: 991.98px) {
    .service-hero {
        padding: 120px 0 80px;
    }

    .service-title {
        font-size: 40px;
    }

    .service-hero-img {
        margin-top: 35px;
    }

    .service-overview h2,
    .service-engagement h2,
    .service-process h2 {
        font-size: 32px;
    }
}

@media (max-width: 575.98px) {
    .service-title {
        font-size: 32px;
    }

    .service-subtitle {
        font-size: 15.5px;
    }

    .service-card {
        padding: 28px;
        min-height: auto;
    }

    .service-card h5 {
        font-size: 17px;
    }

    .service-card p,
    .process-card p {
        font-size: 14.5px;
    }

    .service-cta h3 {
        font-size: 26px;
    }
}


/* ================= Products Page ================= */

.products-hero {
    position: relative;
    padding: 145px 0 95px;
    background: linear-gradient(135deg, #F7F2EA 0%, #FFFDF9 55%, #EFE6D8 100%);
    overflow: hidden;
}

.products-hero::before {
    content: "";
    position: absolute;
    width: 370px;
    height: 370px;
    right: -130px;
    top: -150px;
    border-radius: 50%;
    background: rgba(217, 136, 42, 0.13);
    transition: 0.6s ease;
}

.products-hero::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    left: -90px;
    bottom: -110px;
    border-radius: 50%;
    background: rgba(15, 26, 36, 0.06);
}

.products-hero:hover::before {
    transform: scale(1.08);
}

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

.products-eyebrow {
    display: inline-block;
    color: #D9882A;
    font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 16px;
}

.products-title {
    font-size: 52px;
    line-height: 1.1;
    color: #0F1A24;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.products-subtitle {
    max-width: 760px;
    margin: 0 auto;
    color: #5f6872;
    font-size: 17px;
    line-height: 1.8;
}

/* Product Section */
.products-section {
    position: relative;
    padding: 90px 0;
    background: #FAF7F1;
    overflow: hidden;
}

.products-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 26, 36, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 26, 36, 0.035) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.45;
    pointer-events: none;
}

.products-section .container {
    position: relative;
    z-index: 2;
}

/* Product Card */
.product-card {
    position: relative;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(15, 26, 36, 0.08);
    box-shadow: 0 18px 45px rgba(15, 26, 36, 0.07);
    transition: 0.35s ease;
}

.product-card::before {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    right: -80px;
    bottom: -80px;
    border-radius: 50%;
    background: rgba(217, 136, 42, 0.12);
    transition: 0.45s ease;
    z-index: 1;
}

.product-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 26px 70px rgba(15, 26, 36, 0.12);
    border-color: rgba(217, 136, 42, 0.3);
}

.product-card:hover::before {
    transform: scale(1.35);
    background: rgba(217, 136, 42, 0.18);
}

.product-img {
    position: relative;
    height: 245px;
    overflow: hidden;
}

.product-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15,26,36,0.05), rgba(15,26,36,0.45));
    z-index: 1;
    transition: 0.35s ease;
}

.product-card:hover .product-img::before {
    background: linear-gradient(to bottom, rgba(15,26,36,0.15), rgba(15,26,36,0.58));
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.08);
}

.product-img span {
    position: absolute;
    left: 22px;
    bottom: 20px;
    z-index: 2;
    color: #fff;
    background: rgba(217, 136, 42, 0.92);
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-content {
    position: relative;
    z-index: 2;
    padding: 28px;
}

.product-content h5 {
    color: #0F1A24;
    font-size: 19px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.product-content p {
    color: #5f6872;
    font-size: 15px;
    line-height: 1.75;
    margin: 0;
}

/* CTA */
.products-cta {
    position: relative;
    padding: 95px 0;
    background: #0F1A24;
    color: #fff;
    overflow: hidden;
}

.products-cta::before {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    right: -130px;
    top: -150px;
    border-radius: 50%;
    background: rgba(217, 136, 42, 0.16);
}

.products-cta::after {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    left: -90px;
    bottom: -110px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.products-cta .container {
    position: relative;
    z-index: 2;
}

.products-cta span {
    display: inline-block;
    color: #D9882A;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    margin-bottom: 15px;
}

.products-cta h3 {
    color: #fff;
    text-transform: uppercase;
    font-size: 34px;
    margin-bottom: 16px;
}

.products-cta p {
    max-width: 720px;
    margin: 0 auto;
    color: #cfd5da;
    font-size: 16px;
    line-height: 1.8;
}

.products-cta .btn {
    margin-top: 28px;
    border-radius: 14px;
    padding: 15px 34px;
}

/* Responsive */
@media (max-width: 991.98px) {
    .products-hero {
        padding: 120px 0 80px;
    }

    .products-title {
        font-size: 40px;
    }

    .product-img {
        height: 230px;
    }
}

@media (max-width: 575.98px) {
    .products-title {
        font-size: 32px;
    }

    .products-subtitle {
        font-size: 15.5px;
    }

    .product-content {
        padding: 24px;
    }

    .product-content h5 {
        font-size: 17px;
    }

    .product-content p {
        font-size: 14.5px;
    }

    .products-cta h3 {
        font-size: 26px;
    }
}

/* ===== Topbar ===== */

.topbar,
.container-fluid.bg-primary {
    background: #0F1A24 !important;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.container-fluid.bg-primary small {
    font-size: 13px;
    letter-spacing: 0.3px;
    color: rgba(255,255,255,0.85);
    transition: 0.3s ease;
}

.container-fluid.bg-primary i {
    color: #D9882A;
    font-size: 13px;
}

/* spacing */
.container-fluid.bg-primary .ms-4 {
    margin-left: 28px !important;
}

/* separator */
.container-fluid.bg-primary span {
    opacity: 0.35;
}

/* hover effect */
.container-fluid.bg-primary small:hover {
    color: #ffffff;
}

/* smooth hide animation if used with scroll */
.container-fluid.bg-primary {
    transition: transform 0.35s ease, opacity 0.35s ease;
}

/* hide state */
.topbar-hide {
    transform: translateY(-100%);
    opacity: 0;
}

/* responsive */
@media (max-width: 991px) {
    .container-fluid.bg-primary {
        display: none !important;
    }
}

/* ================= About Page ================= */

.about-hero {
    position: relative;
    padding: 145px 0 95px;
    background: linear-gradient(135deg, #F7F2EA 0%, #FFFDF9 55%, #EFE6D8 100%);
    overflow: hidden;
}

.about-hero::before {
    content: "";
    position: absolute;
    width: 370px;
    height: 370px;
    right: -130px;
    top: -150px;
    border-radius: 50%;
    background: rgba(217, 136, 42, 0.13);
    transition: 0.6s ease;
}

.about-hero::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    left: -90px;
    bottom: -110px;
    border-radius: 50%;
    background: rgba(15, 26, 36, 0.06);
}

.about-hero:hover::before {
    transform: scale(1.08);
}

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

.about-eyebrow,
.section-small-title {
    display: inline-block;
    color: #D9882A;
    font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 16px;
}

.section-small-title.light {
    color: #D9882A;
}

.about-hero-title {
    font-size: 45px;
    line-height: 1.1;
    color: #0F1A24;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about-hero-text {
    max-width: 820px;
    margin: 0 auto;
    color: #5f6872;
    font-size: 17px;
    line-height: 1.8;
}

/* Intro */
.about-intro-section {
    padding: 95px 0;
    background: #FFFDF9;
}

.about-image-box {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 22px 55px rgba(15, 26, 36, 0.12);
}

.about-image-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15,26,36,0.08), rgba(15,26,36,0.28));
    z-index: 1;
    transition: 0.35s ease;
}

.about-image-box img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    transition: 0.45s ease;
}

.about-image-box:hover img {
    transform: scale(1.06);
}

.about-image-box:hover::before {
    background: linear-gradient(to bottom, rgba(15,26,36,0.03), rgba(15,26,36,0.18));
}

.about-section-title {
    color: #0F1A24;
    font-size: 38px;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.about-intro-section p,
.section-subtext {
    color: #5f6872;
    font-size: 16px;
    line-height: 1.85;
}

/* About Cards */
.about-cards-section {
    position: relative;
    padding: 95px 0;
    background: #FAF7F1;
    overflow: hidden;
}

.about-cards-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 26, 36, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 26, 36, 0.035) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.45;
    pointer-events: none;
}

.about-cards-section .container {
    position: relative;
    z-index: 2;
}

.about-card {
    position: relative;
    padding: 34px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(15, 26, 36, 0.08);
    box-shadow: 0 18px 45px rgba(15, 26, 36, 0.07);
    overflow: hidden;
    transition: 0.35s ease;
}

.about-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -70px;
    top: -70px;
    border-radius: 50%;
    background: rgba(217, 136, 42, 0.13);
    transition: 0.45s ease;
}

.about-card::after {
    content: "";
    position: absolute;
    width: 0;
    height: 4px;
    left: 0;
    bottom: 0;
    background: #D9882A;
    transition: 0.35s ease;
}

.about-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 26px 70px rgba(15, 26, 36, 0.12);
    border-color: rgba(217, 136, 42, 0.28);
}

.about-card:hover::before {
    transform: scale(1.25);
    background: rgba(217, 136, 42, 0.2);
}

.about-card:hover::after {
    width: 100%;
}

.about-card-icon {
    position: relative;
    z-index: 2;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(217, 136, 42, 0.12);
    color: #D9882A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 22px;
    transition: 0.35s ease;
}

.about-card:hover .about-card-icon {
    background: #0F1A24;
    color: #D9882A;
    transform: rotate(-4deg) scale(1.05);
}

.about-card h5 {
    position: relative;
    z-index: 2;
    color: #0F1A24;
    font-size: 19px;
    line-height: 1.35;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.about-card p {
    position: relative;
    z-index: 2;
    color: #5f6872;
    font-size: 15px;
    line-height: 1.75;
    margin: 0;
}

/* Principles */
.about-principles-section {
    position: relative;
    padding: 95px 0;
    background: #0F1A24;
    overflow: hidden;
}

.about-principles-section::before {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    right: -130px;
    top: -150px;
    border-radius: 50%;
    background: rgba(217, 136, 42, 0.16);
}

.about-principles-section::after {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    left: -90px;
    bottom: -110px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.about-principles-section .container {
    position: relative;
    z-index: 2;
}

.text-soft {
    color: #cfd5da !important;
}

.about-principle-card {
    position: relative;
    padding: 34px;
    border-radius: 22px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.09);
    overflow: hidden;
    transition: 0.35s ease;
}

.about-principle-card::before {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    right: -70px;
    top: -70px;
    border-radius: 50%;
    background: rgba(217, 136, 42, 0.12);
    transition: 0.4s ease;
}

.about-principle-card:hover {
    transform: translateY(-6px);
    border-color: rgba(217, 136, 42, 0.32);
    box-shadow: 0 22px 55px rgba(0,0,0,0.22);
}

.about-principle-card:hover::before {
    transform: scale(1.35);
}

.about-principle-card span {
    position: relative;
    z-index: 2;
    display: block;
    color: rgba(217,136,42,0.55);
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 16px;
}

.about-principle-card h6 {
    position: relative;
    z-index: 2;
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    margin-bottom: 12px;
}

.about-principle-card p {
    position: relative;
    z-index: 2;
    color: #cfd5da;
    font-size: 15px;
    line-height: 1.75;
    margin: 0;
}

/* Responsive */
@media (max-width: 991.98px) {
    .about-hero {
        padding: 120px 0 80px;
    }

    .about-hero-title {
        font-size: 40px;
    }

    .about-section-title {
        font-size: 32px;
    }

    .about-image-box img {
        height: 360px;
    }
}

@media (max-width: 575.98px) {
    .about-hero-title {
        font-size: 32px;
    }

    .about-hero-text {
        font-size: 15.5px;
    }

    .about-card,
    .about-principle-card {
        padding: 28px;
    }

    .about-card h5 {
        font-size: 17px;
    }

    .about-card p,
    .about-principle-card p {
        font-size: 14.5px;
    }
}





.hero-section {
    min-height: 90vh;
    background: linear-gradient(135deg, #0F1A24 0%, #0c141c 100%);
    position: relative;
    overflow: hidden;
}

/* subtle grid / pattern */
.hero-section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    top: 0;
    left: 0;
}

/* glow accent */
.hero-section::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(217,136,42,0.2), transparent);
    top: 20%;
    right: 10%;
}





.hero-dark {
    position: relative;
    background: radial-gradient(circle at 20% 30%, #1a2a36 0%, #0F1A24 60%);
    overflow: hidden;
}

/* GRID LINES */
.hero-dark::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 70px 70px;
    top: 0;
    left: 0;
    z-index: 0;
}

/* FILLED GLOW CIRCLE (FIXED) */
.hero-dark::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(217,136,42,0.35) 0%,
        rgba(217,136,42,0.15) 40%,
        rgba(217,136,42,0.05) 65%,
        transparent 80%
    );

    top: 20%;
    right: -80px;

    z-index: 0;
}

/* ENSURE TEXT IS ABOVE */
.hero-dark .container {
    position: relative;
    z-index: 2;
}

/* TEXT STYLING */
.hero-eyebrow {
    color: #D9882A;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.hero-title {
    color: #F5F1EA;
    font-size: 52px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text {
    color: #cfd6dc;
    max-width: 550px;
    font-size: 16px;
    line-height: 1.7;
}

