:root {
    /* Dark Color Palette */
    --dark-bg: #0a0a0a;
    --dark-secondary: #1a1a1a;
    --dark-card: #141414;

    /* Accent Colors - Green & Gold Theme */
    --accent-gold: #9e8731;
    --accent-gold-hover: #D4B574;
    --accent-green: #2F5F3F;
    --accent-green-dark: #1E3F2A;
    --neon-green: #39FF14;

    /* Text Colors */
    --text-white: #ffffff;
    --text-gray: #b3b3b3;
    --text-dark: #0a0a0a;

    /* Fonts */
    --font-heading: 'Bebas Neue', 'Oswald', sans-serif;
    --font-body: 'copperplate-light', 'sans-serif';
}

@font-face {
    font-family: 'copperplate-light';
    /* A name you choose for your font */
    src: url('../fonts/copperplate-light.woff2') format('woff2'),
        url('../fonts/copperplate-light.woff') format('woff'),
        url('../fonts/copperplate-light.ttf') format('truetype');
    /* Optional fallback */
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    /* Controls how the font loads and displays */
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-white);
    background: var(--dark-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 2px;
}

/* Navigation */
.navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 4px 30px rgba(200, 165, 98, 0.2);
}

.brand-logo {
    height: 80px;
    width: auto;
    transition: all 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.05);
}

.navbar-nav {
    align-items: center;
}

.nav-link {
    color: var(--text-white) !important;
    font-weight: 600;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2rem 0.8rem !important;
    margin: 0 0.1rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
}

.nav-link:hover {
    color: var(--accent-gold) !important;
}

.btn-pink {
    background: var(--accent-green);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 0;
    font-weight: 700;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    font-size: 0.75rem;
}

.navbar .btn-pink {
    padding: 0.5rem 1.2rem;
    font-size: 0.7rem;
}

.btn-pink:hover {
    background: var(--accent-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(157, 134, 48, 0.587);
}

.bg-color-1 {
    background-color: var(--accent-gold);
}

.bg-color-2 {
    background-color: var(--accent-green);
}

.border-1 {
    border: 1px solid var(--accent-gold);
}


li.nav-item.dropdown {
    position: relative;
    padding-right: 10px;
}

.navbar-nav a.dropdown-toggle {
    position: absolute;
    bottom: 15px;
    transform: translateX(-50%);
    right: 50%;
    width: auto;
    height: auto;
    line-height: 1;
    color: var(--accent-gold);
}

.navbar-nav .dropdown-menu {
    background-color: var(--accent-green);
    border-radius: 0px;
    box-shadow: none;
    border: 0px;
}

.navbar-nav .dropdown-menu a {
    color: var(--accent-gold-hover);
    font-size: 12px;
}

.navbar-nav .dropdown-menu a:hover {
    background-color: var(--accent-green-dark);
    color: var(--accent-gold-hover);
}


@media screen and (min-width: 992px) {
    .navbar-nav .dropdown {
        position: relative;
    }

    .navbar .dropdown-menu {
        display: block;
        opacity: 0.4;
        visibility: hidden;
        min-width: 200px;
        transform: scale(1, 0);
        transform-origin: 0 0;
    }

    .navbar.menu-top .dropdown-menu {
        transform-origin: 100% 100%;
    }

    .dropright .dropdown-menu {
        display: block;
        opacity: 0.4;
        visibility: hidden;
        transform: scale(0, 1);
        transform-origin: 0 0;
    }

    .navbar-nav .dropdown:hover>.dropdown-menu,
    .dropright:hover>.dropdown-menu {
        opacity: 1;
        visibility: visible;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}



/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: end;
    justify-content: end;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem;
}

.hero-title {
    font-family: "Libertinus Sans", sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    letter-spacing: 0px;
    line-height: 0.9;
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: clamp(.8rem, 1.3vw, 1.3rem);
    font-weight: 300;
    color: var(--text-white);
    max-width: 600px;
}

/* Meets Section */
.meets-section {
    background: var(--dark-bg);
    padding: 100px 0;
}

.section-heading {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1.1;
}

.service-mini-card {
    background: var(--dark-card);
    padding: 2.5rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    max-height: 253px;
    display: block;
}

.service-mini-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.service-mini-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.service-mini-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.service-mini-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Thrive Section */
.thrive-section {
    background: #ffffff;
    color: var(--text-dark);
    padding: 100px 0;
}

.thrive-section .section-heading {
    color: var(--dark-bg);
}

.lead-text {
    font-size: 1.1rem;
    font-weight: 300;
    color: #333;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
}

.feature-list i {
    color: var(--accent-gold);
    margin-right: 1rem;
    font-size: 1.3rem;
}

.image-collage img {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Give Theme Section */
.give-theme-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.give-theme-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/woman-selfie.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.give-theme-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.85) 0%, transparent 100%);
}

.give-theme-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.section-heading-white {
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 0.9;
}

.pink-text {
    color: var(--accent-gold);
}

.lead-text-white {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
}

/* Hashtag Section */
.hashtag-section {
    background: var(--dark-bg);
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hashtag-title {
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--accent-gold);
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.hashtag-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    font-weight: 300;
}

/* Showcase Section */
.showcase-section {
    background: var(--dark-bg);
    padding: 100px 0;
}

.showcase-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 400px;
    display: block;
}

.showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 20%;
    transition: transform 0.5s ease;
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(10, 10, 10, 0.9) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 2rem;
    transition: all 0.3s ease;
}

.showcase-card:hover img {
    transform: scale(1.1);
}

.showcase-card:hover .showcase-overlay {
    background: rgba(47, 95, 63, 0.85);
}

.showcase-overlay h3 {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.showcase-overlay p {
    font-size: clamp(0.75rem, 2vw, 0.95rem);
    line-height: 1.4;
    margin-bottom: 0;
}

/* Pricing Section */
.pricing-section {
    background: var(--dark-bg);
    padding: 100px 0;
}

.pricing-card {
    background: white;
    color: var(--text-dark);
    padding: 3rem 2rem;
    border-radius: 0;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 0, 128, 0.3);
}

.pricing-card.featured {
    background: var(--dark-card);
    color: white;
    border: 2px solid var(--accent-gold);
}

.badge-featured {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: white;
    padding: 0.5rem 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    font-family: var(--font-heading);
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-card ul li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: 500;
}

.pricing-card.featured ul li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

#services {
    padding-top: 100px;
    padding-bottom: 100px;
}

/* You Make Section */
.you-make-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.you-make-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/parallax.jpeg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.you-make-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(47, 95, 63, 0.75);
}

.you-make-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.you-make-section .section-heading-white {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.you-make-section .lead-text-white {
    font-size: 1.3rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.you-make-section .btn-pink {
    background: white;
    color: var(--dark-bg) !important;
    font-size: 1rem;
    padding: 1rem 3rem;
    font-weight: 900;
    letter-spacing: 3px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.you-make-section .btn-pink:hover {
    background: var(--text-white);
    color: var(--accent-gold) !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

/* Detail Service Sections */
.detail-service-section {
    background: white;
    color: var(--text-dark);
    padding: 100px 0;
}

.detail-service-section .section-heading {
    color: var(--dark-bg);
}

.service-subtitle {
    font-size: 1.8rem;
    color: var(--accent-gold);
    font-weight: 600;
    letter-spacing: 1px;
}

.treatment-list {
    list-style: none;
    padding: 0;
}

.treatment-list li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
}

.treatment-list i {
    color: var(--accent-gold);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.detail-service-section-alt {
    background: var(--dark-bg);
    padding: 100px 0;
}

.service-subtitle-white {
    font-size: 1.8rem;
    color: var(--accent-gold);
    font-weight: 600;
    letter-spacing: 1px;
}

.treatment-list-white {
    list-style: none;
    padding: 0;
}

.treatment-list-white li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    color: var(--text-gray);
    font-weight: 500;
}

.treatment-list-white i {
    color: var(--accent-gold);
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Check Section */
.check-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.check-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/financing.jpeg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.check-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.85);
}

.check-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* .check-content h2,
.check-content .location-info {
    text-align: center;
} */


/* Footer */
.footer {
    background: #fff;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    max-width: 150px;
    height: auto;
}

.footer-heading {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    color: var(--text-dark);
}

.footer-text {
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-gold-hover);
    transform: translateY(-3px);
}

.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    color: var(--text-dark);
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.footer-list i {
    color: var(--accent-gold);
    margin-right: 0.8rem;
}

.footer-divider {
    border-color: rgba(0, 0, 0, 0.4);
    margin: 2rem 0;
}

.footer-copyright {
    color: var(--text-dark);
    font-size: 0.9rem;
    margin: 0.3rem 0;
}

.text-gold {
    color: var(--accent-gold);
    font-weight: 600;
}


/*-------------------------------------------------------------------------------
  Gallery
-------------------------------------------------------------------------------*/

.demo-gallery>ul {
    margin-bottom: 0;
}

.demo-gallery>ul>li {
    overflow: hidden;
    margin-top: 10px;
    margin-bottom: 10px;
}

.demo-gallery>ul>li a {
    border: 2px solid #292522;
    display: block;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
}

.demo-gallery>ul>li a>img {
    -webkit-transition: -webkit-transform 0.5s ease 0s;
    -moz-transition: -moz-transform 0.5s ease 0s;
    -o-transition: -o-transform 0.5s ease 0s;
    transition: transform 0.5s ease 0s;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    height: 100%;
    width: 100%;
    object-fit: cover;
    max-height: 280px;
}

.demo-gallery>ul>li a:hover>img {
    -webkit-transition: -webkit-transform 0.5s ease 0s;
    -moz-transition: -moz-transform 0.5s ease 0s;
    -o-transition: -o-transform 0.5s ease 0s;
    transition: transform 0.5s ease 0s;
    -webkit-transform: scale3d(1.2, 1.2, 1.2) rotate(5deg);
    transform: scale3d(1.2, 1.2, 1.2) rotate(5deg);
}

.demo-gallery>ul>li a:hover .demo-gallery-poster>img {
    opacity: 1;
}

.demo-gallery>ul>li a .demo-gallery-poster {
    background-color: rgba(0, 0, 0, 0.1);
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: background-color 0.15s ease 0s;
    -o-transition: background-color 0.15s ease 0s;
    transition: background-color 0.15s ease 0s;
}

.demo-gallery>ul>li a .demo-gallery-poster>img {
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    opacity: 0;
    position: absolute;
    top: 50%;
    -webkit-transition: opacity 0.3s ease 0s;
    -o-transition: opacity 0.3s ease 0s;
    transition: opacity 0.3s ease 0s;
}

.demo-gallery>ul>li a:hover .demo-gallery-poster {
    background-color: rgba(0, 0, 0, 0.5);
}

.demo-gallery .justified-gallery>a>img {
    -webkit-transition: -webkit-transform 0.15s ease 0s;
    -moz-transition: -moz-transform 0.15s ease 0s;
    -o-transition: -o-transform 0.15s ease 0s;
    transition: transform 0.15s ease 0s;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    height: 100%;
    width: 100%;
}

.demo-gallery .justified-gallery>a:hover>img {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
}

.demo-gallery .justified-gallery>a:hover .demo-gallery-poster>img {
    opacity: 1;
}

.demo-gallery .justified-gallery>a .demo-gallery-poster {
    background-color: rgba(0, 0, 0, 0.1);
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: background-color 0.15s ease 0s;
    -o-transition: background-color 0.15s ease 0s;
    transition: background-color 0.15s ease 0s;
}

.demo-gallery .justified-gallery>a .demo-gallery-poster>img {
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    opacity: 0;
    position: absolute;
    top: 50%;
    -webkit-transition: opacity 0.3s ease 0s;
    -o-transition: opacity 0.3s ease 0s;
    transition: opacity 0.3s ease 0s;
}

.demo-gallery .justified-gallery>a:hover .demo-gallery-poster {
    background-color: rgba(0, 0, 0, 0.5);
}

.demo-gallery .video .demo-gallery-poster img {
    height: 48px;
    margin-left: -24px;
    margin-top: -24px;
    opacity: 0.8;
    width: 48px;
}

.demo-gallery.dark>ul>li a {
    border: 3px solid #04070a;
}


/* Responsive */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(10, 10, 10, 0.98);
        padding: 1.5rem;
        margin-top: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-item {
        margin: 0.5rem 0;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 80vh;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }

    .section-heading {
        font-size: 2rem;
    }

    .showcase-card {
        height: 300px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease;
}

/* Equipment Section Specific Hover Effects */
#equipment .showcase-card .showcase-overlay {
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.6) 50%, transparent 100%);
    justify-content: flex-end;
    padding-bottom: 3rem;
}

#equipment .showcase-card h3 {
    transform: translateY(-50%);
    transition: transform 0.4s ease;
    position: absolute;
    top: 50%;
}

#equipment .showcase-card p {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    max-width: 90%;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Hover - Reveal */
#equipment .showcase-card:hover .showcase-overlay {
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(30, 63, 42, 0.9) 100%);
    align-items: center;
}

#equipment .showcase-card:hover h3 {
    transform: translateY(-5px);
    color: var(--accent-gold);
    position: relative;
    top: auto;
}

#equipment .showcase-card:hover p {
    opacity: 1;
    transform: translateY(0);
}

#equipment .showcase-card:hover img {
    transform: scale(1.15);
}



/* Inside Pages */



.title-section {
    min-height: 600px;
    display: flex;
    align-items: center;
    background-color: #f8f8f8;
    background-image: url(../images/header-bg.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right bottom;
}

.title-section.short {
    min-height: 400px;
    display: flex;
    align-items: end;
    padding-bottom: 100px;
    background-color: #f8f8f8;
    background-image: url(../images/header-bg.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right bottom;
}

.title-section .hero-title {
    color: var(--accent-gold);
}

.img-left {
    float: left;
    max-width: 300px;
    max-height: 370px;
    margin-right: 20px;
    margin-bottom: 10px;
    border: 6px double var(--accent-green);
}


/*------------------------------------------*/
/*------------- Testimonials -----------------*/
/*------------------------------------------*/

#testimonials {
    background-image: url(../images/testimonial-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-blend-mode: color-burn;
}

#testimonials .testimonial-main-img {
    height: 100%;
    object-fit: cover;
}

.testimonial-body {
    text-align: left;
    width: 90%;
    overflow: hidden;
    margin: 0 auto;
}

.relative {
    position: relative;
}

.quote_icon {
    background: var(--accent-gold);
    color: #fff;
    font-size: 4.5em;
    line-height: 1;
    height: 110px;
    width: 110px;
    padding: 30px;
    border-radius: 80px;
    box-shadow: 0 0 10px #333;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: -55px;
    transform: translateY(-50%);
}

/*
.testimonial-body:before {
    content: "\f10d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    top: -35%;
    left: 5%;
    display: block;
    font-size: 3em;
    color: #000;
    position: absolute;
    opacity: .4;
    z-index: 99;
}
*/

.testimonial-body .client-name {
    font-size: 1.2em;
    font-style: italic;
    position: relative;
    margin-top: 40px;
}

.client-name:before {
    content: "";
    background: #333;
    width: 60px;
    height: 2px;
    display: block;
    position: absolute;
    top: -15px;
    left: 0%;
}

.testimonial-body p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
}

.testimonial-body .fa-quote-right {
    color: #fff;
    font-size: 40px;
    float: right;
}

.testimonial-img {
    background-color: var(--accent-green);
    color: #fff;
    text-align: center;
    width: 40%;
    overflow: hidden;
    max-height: 350px;
    display: flex;
    justify-content: center;
    border-radius: 10px 0 0 10px;
}

.testimonial-img img {
    height: 100%;
    width: auto;
}

#testimonials .carousel-control-next,
#testimonials .carousel-control-prev {
    bottom: 0px !important;
    top: 80% !important;
    width: 25px !important;
    color: #fff;
    font-size: 1.6em;
}

#testimonials .carousel-control-prev {
    right: 5% !important;
    left: auto;
}

#testimonials .carousel-item {
    min-height: 350px !important;
}




@media screen and (max-width:1100px) {

    .nav-link {
        padding: 2rem 0.4rem !important;
    }


}

@media screen and (max-width:991px) {

    .p-100 {
        padding: 60px 30px;
    }

    .nav-link {
        padding: 1rem 0.4rem !important;
    }

    .navbar-nav a.dropdown-toggle {
        bottom: -5px;
    }

    .navbar-nav .dropdown-menu a {
        text-align: center;
    }


}

@media screen and (max-width:768px) {

    .p-100 {
        padding: 40px 20px;
    }

    .pt-100 {
        padding-top: 40px;
    }

    .title-section {
        min-height: 300px;
        align-items: end;
        padding-bottom: 50px;
    }


}

@media screen and (max-width:597px) {

    .img-left,
    .img-right {
        float: none;
    }


}