@font-face {
     font-family: 'Brockmann';
     src: url(../fonts/Brockmann-Regular.otf)format("opentype");
     font-weight: 400;
     font-style: normal;
     font-display: swap
}
@font-face {
     font-family: 'Brockmann';
     src: url(../fonts/Brockmann-RegularItalic.otf)format("opentype");
     font-weight: 400;
     font-style: italic;
     font-display: swap
}
@font-face {
     font-family: 'Brockmann';
     src: url(../fonts/Brockmann-Medium.otf)format("opentype");
     font-weight: 500;
     font-style: normal;
     font-display: swap
}
@font-face {
     font-family: 'Brockmann';
     src: url(../fonts/Brockmann-MediumItalic.otf)format("opentype");
     font-weight: 500;
     font-style: italic;
     font-display: swap
}
@font-face {
     font-family: 'Brockmann';
     src: url(../fonts/Brockmann-SemiBold.otf)format("opentype");
     font-weight: 600;
     font-style: normal;
     font-display: swap
}
@font-face {
     font-family: 'Brockmann';
     src: url(../fonts/Brockmann-SemiBoldItalic.otf)format("opentype");
     font-weight: 600;
     font-style: italic;
     font-display: swap
}
@font-face {
     font-family: 'Brockmann';
     src: url(../fonts/Brockmann-Bold.otf)format("opentype");
     font-weight: 700;
     font-style: normal;
     font-display: swap
}
@font-face {
     font-family: 'Brockmann';
     src:url(../fonts/Brockmann-BoldItalic.otf)format("opentype");
     font-weight:700;
     font-style:italic;
     font-display:swap
}

:root {
     --background-color: #ffffff;
     --heading-color: #1a1a1a;
     --body-primary-color: #000000;
     --body-secondary-color: #6c757d;
     --border-color: #e9ecef;
     --card-background-color: #ffffff;
     color-scheme: light;
}

[data-theme=dark] {
     --background-color: #0F0F0F;
     --heading-color: #ffffff;
     --body-primary-color: #ffffff;
     --body-secondary-color: #adb5bd;
     --border-color: rgba(255, 255, 255, 0.08);
     --card-background-color: rgba(255,255,255,0.1);
     color-scheme: dark;
}

/* * -------------------
* Base & Typography
* -------------------
*/
body {
     font-family: 'Brockmann', "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
     background-color: var(--background-color);
     color: var(--body-primary-color);
     transition: background-color 0.3s ease, color 0.3s ease;
}

::selection {
     color: #ffffff;
     background: #000000;
}
[data-theme=dark] ::selection {
     color: #000000;
     background: #ffffff;
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1, .fw-bold {
     font-weight: 700 !important;
     color: var(--heading-color);
}

a {
     color: var(--body-primary-color);
     transition: all 0.15s ease-in-out;
}

.fw-extrabold {
     font-weight: 800 !important;
}

.text-dark-primary {
     color: #1a1a1a !important;
}

.text-muted-light {
     color: #6c757d;
}

/* Premium Background */
.gradient-background {
     position: absolute;
     inset: 0;
     z-index: -1;
     background: radial-gradient(circle at right top, rgba(255, 70, 70, 0.15), transparent 70%) no-repeat rgb(255, 255, 255);
     filter: blur(80px);
     transition: background-color 0.3s ease, color 0.3s ease;
}
[data-theme=dark] .gradient-background {
     background: radial-gradient(circle at right top, rgba(255, 70, 70, 0.5), transparent 70%) no-repeat rgb(0, 0, 0);
}

/* * ----------
* Animations
* -------------
*/

/* Initial Fade Up for Hero */
.fade-up-init {
     animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
     opacity: 0;
     transform: translateY(30px);
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

@keyframes fadeUp {
     to {
          opacity: 1;
          transform: translateY(0);
     }
}

/* Scroll Reveal Animation Class */
.reveal {
     opacity: 0;
     transform: translateY(40px);
     transition: all 0.8s ease-out;
}

.reveal.active {
     opacity: 1;
     transform: translateY(0);
}

/* * ----------------
* Custom Components
* -------------------
*/

/* Primary Button */
.trc-btn-primary {
     background-color: #0f0f0f;
     color: #ffffff;
     border-radius: 50px;
     padding: 9px 20px;
     font-weight: 500;
     transition: all 0.3s ease;
}
.trc-btn-primary:hover,
.trc-btn-primary:focus {
     background-color: #333333;
     color: #ffffff;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.trc-btn-primary:focus,
.trc-btn-primary:active {
     background-color: #444444 !important;
     color: #ffffff !important;
     border-color: transparent !important;
}
[data-theme=dark] .trc-btn-primary {
     background-color: #ffffff;
     color: #000000;
}
[data-theme=dark] .trc-btn-primary:hover {
     background-color: #d9d9d9;
}
[data-theme=dark] .trc-btn-primary:focus,
[data-theme=dark] .trc-btn-primary:active {
     background-color: #cccccc !important;
     color: #000000 !important;
}

/* Secondary Button */
.trc-btn-secondary {
     background: rgba(0, 0, 0, 0.05);
     color: #000000;
     border-radius: 50px;
     padding: 9px 20px;
     font-weight: 500;
     transition: all 0.3s ease;
}
.trc-btn-secondary:hover {
     background: rgba(0, 0, 0, 0.1);
}
.trc-btn-secondary:focus,
.trc-btn-secondary:active {
     background-color: rgba(0, 0, 0, 0.15) !important;
     border-color: transparent !important;
}
[data-theme=dark] .trc-btn-secondary {
     background-color: rgba(255,255,255,0.1);
     color: #ffffff;
}
[data-theme=dark] .trc-btn-secondary:hover {
     background-color: rgba(255,255,255,0.2);
}
[data-theme=dark] .trc-btn-secondary:focus,
[data-theme=dark] .trc-btn-secondary:active {
     background-color: rgba(255,255,255,0.15) !important;
     color: #ffffff;
}

/* Icon Button */
.trc-btn-icon {
     background: rgba(0, 0, 0, 0.05);
     color: #000000;
     width: 44px;
     height: 44px;
     padding: 0;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
     text-decoration: none;
     transition: color 0.3s ease;
}
.trc-btn-icon:hover {
     background: rgba(0, 0, 0, 0.1);
}
.trc-btn-icon:focus,
.trc-btn-icon:active {
     background-color: rgba(0, 0, 0, 0.15) !important;
     border-color: transparent !important;
}
[data-theme=dark] .trc-btn-icon {
     background-color: rgba(255,255,255,0.1);
     color: #ffffff;
}
[data-theme=dark] .trc-btn-icon:hover {
     background-color: rgba(255,255,255,0.2);
}
[data-theme=dark] .trc-btn-icon:focus,
[data-theme=dark] .trc-btn-icon:active {
     background-color: rgba(255,255,255,0.15) !important;
     color: #ffffff;
}

/* Custom Card */
.trc-card {
     background-color: var(--card-background-color);
     border: 1px solid var(--border-color);
     border-radius: 2rem; /* 16px */
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
     transition: all 0.3s ease;
}

.trc-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.trc-card .card-text {
     color: var(--body-secondary-color);
}

[data-theme="dark"] .trc-card:hover {
     background-color: rgba(255, 255, 255, 0.15);
}

/* * -------------------
* Page Sections
* -------------------
*/

/* Navigation */
.navbar {
     padding-top: 1.25rem;
     padding-bottom: 1.25rem;
     background-color: transparent;
     transition: all 0.3s ease;
}
.navbar.scrolled {
     background-color: rgba(255, 255, 255, 0.8);
     backdrop-filter: blur(20px);
}
[data-theme="dark"] .navbar.scrolled {
     background-color: rgba(15, 15, 15, 0.8);
}
@media (max-width: 992px) {
     .navbar.scrolled {
          background-color: rgba(255, 255, 255);
          backdrop-filter: none;
     }
     [data-theme="dark"] .navbar.scrolled {
          background-color: rgba(15, 15, 15);
     }
}
.navbar-brand-custom {
     text-decoration: none;
     display: inline-flex;
     align-items: center;
}
.navbar-brand-custom span {
     color: var(--body-primary-color);
     font-size: 22px;
     font-weight: 700;
     margin-left: 8px;
}
@media (max-width: 992px) {
     .navbar .navbar-brand-custom span {
          display: none;
     }
}

.navbar-toggler {
     border: none;
     box-shadow: none !important;
}

/* Navbar menu */
.navbar-nav .menu-item a {
     display: block;
     padding: 0.5rem 0;
     font-weight: 500;
     text-decoration: none;
     color: var(--body-secondary-color);
}
.navbar-nav .menu-item.page_item.current_page_item a,
.navbar-nav .menu-item a:focus,
.navbar-nav .menu-item a:hover {
     color: var(--body-primary-color);
}
@media (min-width: 992px) {
     .navbar-nav .menu-item a {
          margin: 0 0.5rem;
          padding: 0.5rem;
     }
}

/* Navbar Offcanvas */
.offcanvas {
     border-color: var(--border-color) !important;
}
[data-theme="dark"] .offcanvas {
     background-color: rgb(15 15 15);
}
[data-theme=dark] .offcanvas .btn-close {
     filter: invert(1) grayscale(100%) brightness(200%);
}

/* Theme Toggle Dropdown */
[data-theme=dark] .theme-btn-icon .light-icon,
.theme-btn-icon .dark-icon {
     display: none;
}
[data-theme=dark] .theme-btn-icon .dark-icon,
.theme-btn-icon .light-icon {
     display: inline;
}
.theme-dropdown .dropdown-menu {
     border: 1px solid var(--border-color);
     border-radius: 1rem;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
     padding: 0.5rem;
     min-width: 160px;
}
[data-theme=dark] .theme-dropdown .dropdown-menu {
     background-color: #282828;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.theme-dropdown .dropdown-item {
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
[data-theme=dark] .theme-dropdown .dropdown-item {
     color: #ffffff;
}
.theme-dropdown .dropdown-item.active {
    background-color: rgba(0, 0, 0, 0.05);
    color: #000000;
}
.theme-dropdown .dropdown-item.active:hover {
    background-color: rgba(0, 0, 0, 0.1);
}
.theme-dropdown .dropdown-item:hover {
    background-color: rgba(0, 0, 0, 0.05);
}
.theme-dropdown .dropdown-item:focus {
    background-color: rgba(0, 0, 0, 0.1);
    color: #000000;
}
[data-theme=dark] .theme-dropdown .dropdown-item.active {
     background-color: rgba(255, 255, 255, 0.05);
     color: #ffffff;
}
[data-theme=dark] .theme-dropdown .dropdown-item.active:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
[data-theme=dark] .theme-dropdown .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}
[data-theme=dark] .theme-dropdown .dropdown-item:focus {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* Hero Section */
.hero-section {
     padding: 6rem 0;
}
.hero-section h1 span {
     background: -webkit-linear-gradient(50deg, #000000, #c43d48, #CF2B39);
     background: linear-gradient(50deg, #000000, #c43d48, #CF2B39);
     -webkit-background-clip: text;
     background-clip: text;
     -webkit-text-fill-color: transparent;
}
[data-theme=dark] .hero-section h1 span {
     background: -webkit-linear-gradient(50deg, #ffffff, #e25d68, #CF2B39);
     background: linear-gradient(50deg, #ffffff, #e25d68, #CF2B39);
     -webkit-background-clip: text;
     background-clip: text;
     -webkit-text-fill-color: transparent;
}
.hero-section .lead {
     font-size: 1.25rem;
     max-width: 600px;
     margin-left: auto;
     margin-right: auto;
}

.hero-section .trc-btn-primary {
     display: inline-flex;
     align-items: center;
     margin: auto;
     padding: 7px 20px 7px 7px;
     font-size: 1.1rem;
}
.hero-section .trc-btn-primary span {
     background-color: #ffffff;
     color: #000000;
     border-radius: 50%;
     justify-content: center;
     align-items: center;
     width: 40px;
     height: 40px;
     display: flex;
     margin-right: 8px;
}
[data-theme=dark] .hero-section .trc-btn-primary span {
     background-color: #000000;
     color: #ffffff;
}

.trusted-by {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 0.5rem;
     color: var(--body-secondary-color);
}

.trusted-by .avatars {
     display: flex;
}

.trusted-by img {
     width: 32px;
     height: 32px;
     border-radius: 50%;
     border: 2px solid var(--background-color);
     margin-left: -10px;
}

.trusted-by img:first-child {
     margin-left: 0;
}
@media (max-width:390px) {
     .trusted-by {
          flex-direction: column;
     }
     .trusted-by span {
          margin: 0 !important;
     }
}

/* Page Hero */
.page-hero {
     padding: 5rem 0;
}

/* Section Headings */
.section-heading {
     font-size: 2.5rem;
     font-weight: 700;
}

/* Products Section */
.product-card .card-title {
     color: var(--heading-color);
     font-size: 22px;
}
.product-card .card-text {
     color: var(--body-primary-color);
     font-size: 17px;
}

/* Why Choose Section */
.counter-card {
     padding: 30px 20px;
     gap: 8px;
     color: var(--body-primary-color);
     font-weight: 500;
}
.counter-num {
     font-size: 5rem;
     margin-bottom: 0;
     line-height: 1;
}
.counter-label {
     margin-bottom: 0;
     font-size: 24px;
}

/* Testimonials Section */
.stars {
     color: #ffc107;
}

.testimonial-author {
     font-weight: 500;
     color: var(--body-primary-color);
}

/* Testimonial Scroller */
.testimonial-scroller-wrapper {
     overflow: hidden;
     position: relative;
     padding: 1rem 0;
     margin-top: -1rem;
     /* Add a fade effect at the edges */
     -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
     mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}

.testimonial-scroller .trc-card {
     flex: 0 0 auto;
     width: 380px; /* A fixed width for the cards */
     max-width: 90vw;
}

.testimonial-scroller {
     display: flex;
     gap: 1.5rem; /* Equivalent to g-4 */
     width: fit-content; /* Let it be as wide as its content */
     animation: scroll 50s linear infinite;
}

.testimonial-scroller.reverse {
     animation: scroll-reverse 50s linear infinite; /* Slightly slower for visual variation */
     padding-top: 1.5rem;
}


@keyframes scroll {
     0% { transform: translateX(0); }
     100% { transform: translateX(-50%); }
}

@keyframes scroll-reverse {
     0% { transform: translateX(-50%); }
     100% { transform: translateX(0); }
}

.testimonial-scroller:hover  {
     animation-play-state: paused;
}

/* * -----------
* FAQ Section 
* --------------
*/
.accordion-item {
     background-color: var(--card-background-color) !important;
     border: 1px solid var(--border-color) !important; /* Visible border */
     border-radius: 2rem !important; /* Rounded corners for the whole item */
     background-color: #ffffff;
     margin-bottom: 1.5rem; /* Space between cards */
     overflow: hidden; /* Ensures content doesn't spill out of rounded corners */
     box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.accordion-button {
     background-color: transparent !important;
     color: var(--body-secondary-color);
     font-weight: 500;
     font-size: 1.15rem;
     padding: 1.5rem 2rem;
     box-shadow: none !important;
}
.accordion-button:hover {
     color: #1a1a1a;
}
[data-theme="dark"] .accordion-button:hover,
[data-theme="dark"] .accordion-button:not(.collapsed) {
     color: #ffffff;
}

.accordion-button:not(.collapsed) {
     color: #1a1a1a; /* Dark when active */
     padding-bottom: 1rem; /* Less padding when open to connect with body */
}

/* Hide default bootstrap arrow */
.accordion-button::after {
     display: none;
}

/* Custom Icon Circle */
.accordion .trc-btn-icon {
     margin-right: 1.5rem;
     flex-shrink: 0;
}
.accordion-button:hover .trc-btn-icon {
     background: rgba(0, 0, 0, 0.1);
}
[data-theme=dark] .accordion-button:hover .trc-btn-icon {
     background: rgba(255,255,255,0.2);
}
.accordion .trc-btn-icon span {
     position: relative;
     width: 20px;
     height: 20px;
     display: flex;
     align-items: center;
     justify-content: center;
}
.accordion .trc-btn-icon span:before,
.accordion .trc-btn-icon span:after {
     content: "";
     position: absolute;
     background-color: #000000;
     border-radius: 10px;
     transition: transform 0.25s ease-out;
}
[data-theme=dark] .accordion .trc-btn-icon span:before,
[data-theme=dark] .accordion .trc-btn-icon span:after {
     background-color: #ffffff;
}
.accordion .trc-btn-icon span:before{
     height: 100%;
     width: 2px;
}
.accordion .trc-btn-icon span:after{
     width: 100%;
     height: 2px;
}

.accordion-button:not(.collapsed) .trc-btn-icon span:before{ 
     transform: rotate(90deg);
}
.accordion-button:not(.collapsed) .trc-btn-icon span:after{ 
     transform: rotate(180deg);
}

.accordion-body {
     padding-left: 5.5rem; /* Align with text */
     padding-right: 2rem;
     padding-top: 0;
     padding-bottom: 2rem;
     color: var(--body-secondary-color);
     font-size: 1rem;
     line-height: 1.7;
}

/* Mobile responsiveness for FAQ padding */
@media (max-width: 768px) {
     .accordion-body {
          padding-left: 2rem;
     }
     .accordion-button {
          padding: 1rem;
     }
     .faq-icon {
          width: 32px;
          height: 32px;
          margin-right: 1rem;
     }
}


/* * -------------------
* Contact Form Styles
* -------------------
*/
.form-label {
     font-weight: 700;
     margin-bottom: 0.5rem;
     color: var(--body-primary-color);
}

.form-control {
     background-color: var(--card-background-color);
     padding: 0.8rem 1.2rem;
     border-radius: 12px;
     border: 1px solid var(--border-color);
     font-size: 1rem;
     color: var(--body-primary-color);
     background-clip: unset;
     transition: all 0.3s ease;
}
[data-theme=dark] .form-control:hover,
[data-theme=dark] .form-control:focus {
     background-color: rgba(255, 255, 255, 0.15);
}
.form-control:focus {
     border-color: var(--body-primary-color);
     box-shadow: none;
     color: var(--body-primary-color);;
}
.form-control::placeholder {
     color: var(--body-secondary-color);
}

/* CF7 plugin styling */
.wpcf7-not-valid {
     border-color: #dc3232;
}
.wpcf7-not-valid-tip {
     margin-top: 2px;
}
.wpcf7-spinner {
     vertical-align: middle;
}
.wpcf7 form.wpcf7-form {
     position: relative;
}
.wpcf7 form.wpcf7-form.submitting::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    z-index: 1;
}
[data-theme=dark] .wpcf7 form.wpcf7-form.submitting::after {
     background: rgb(15, 15, 15, 0.5);
}
.wpcf7 form .wpcf7-response-output {
     margin: 10px 0;
     border-radius: 20px;
}

/* * -------------------
* Footer Section
* -------------------
*/
.footer-custom {
     padding: 4rem 0rem;
     background-color: #000000;
     color: #ced4da;
}

/* Make footer brand white */
.footer-custom .navbar-brand-custom span {
     color: #ffffff !important;
}

.footer-custom .nav-link {
     color: #ced4da;
     padding: 5px 24px;
}
@media (max-width: 770px) {
     .footer-custom .nav-link {
          padding: 5px 15px;
     }
}

.footer-custom .nav-link:hover {
     color: #ffffff; /* White on hover */
}

.footer-custom .social-icons .trc-btn-icon {
     background: rgb(40 40 40);
     color: #ced4da;
}

.footer-custom .social-icons .trc-btn-icon:hover {
     background: rgb(61 61 61);
     color: #ffffff;
}

.footer-custom .copyright-text {
     color: #6c757d;
}

