/* ============================================
   BRIKZ HERO SECTION (Scoped styles)
   Will NOT affect other pages
===============================================*/

.brikz-hero-section {
    background: #e9f2ef; /* var(--light-bg) */
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.brikz-hero-title {
    font-size: 48px;
    color: #0d4d43; /* var(--primary) */
    line-height: 1.2;
}

.brikz-hero-subtext {
    color: #33524f; /* var(--secondary) */
}

.brikz-hero-note {
    color: #33524f;
    font-size: 15px;
}

.brikz-hero-image {
    max-width: 100%;
    height: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .brikz-hero-title {
        font-size: 34px;
    }
}

.text-justify{
    text-align: justify !important;
}
/* ============================================================
   HERO SECTION ANIMATIONS
   Fully isolated - affects ONLY .brikz-hero-section elements
===============================================================*/

/* Fade Up Animation */
@keyframes brikzFadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.wow-fade-up {
    opacity: 0;
    animation: brikzFadeUp 0.9s ease-out forwards;
}

/* Floating Animation for Hero Image */
@keyframes brikzFloat {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.brikz-hero-image.wow-float {
    animation: brikzFloat 5s ease-in-out infinite;
    opacity: 0;
    animation-delay: .3s;
    animation-fill-mode: forwards;
}

/* Smooth Fade + Zoom for Image Appearance */
@keyframes brikzZoomFade {
    0% {
        opacity: 0;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.brikz-hero-image {
    animation: brikzZoomFade 1s ease-out forwards;
}

/* Hover Parallax Tilt Effect */
.brikz-hero-image:hover {
    transform: perspective(600px) rotateY(6deg) rotateX(3deg) scale(1.03);
    transition: 0.4s ease;
}

/* Reset on Mouse Leave */
.brikz-hero-image {
    transition: 0.4s ease;
}
/* =========================================================
   ABOUT SECTION - Unique styles (affects nothing else)
   Scoped using .brikz-about-section
========================================================= */

/* Section Layout */
.brikz-about-section {
    background: #ffffff;
}

/* Title + Text */
.brikz-about-title {
    font-size: 32px;
    font-weight: 700;
    color: #0d4d43;
}

.brikz-about-text {
    color: #33524f;
    font-size: 17px;
    line-height: 1.8;
}

/* Image Wrapper */
.brikz-about-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: auto;
}

/* Main image */
.brikz-about-img.main-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Overlay Image (small one placed at bottom-right) */
.brikz-about-img.overlay-img {
    position: absolute;
    width: 60%;
    right: -20px;
    bottom: -40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .brikz-about-img.overlay-img {
        width: 70%;
        right: -10px;
        bottom: -20px;
    }
}
/* =========================================================
   BRIKZ FEATURE SECTION – Unique Styles (No conflict)
========================================================= */

.brikz-features-section {
    background: var(--light-bg);
}

.brikz-features-title {
    font-size: 32px;
    font-weight: 700;
    color: #0d4d43; /* Green theme */
}

/* Feature Cards */
.brikz-feature-card {
    background: #ffffff;
    border-radius: 16px;
    padding-bottom: 20px !important; /* Reduce bottom space */
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.brikz-feature-card:hover {
    transform: translateY(-6px);
}

/* Feature Icon */
.brikz-feature-icon {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

/* Feature Heading */
.brikz-feature-heading {
    font-size: 20px;
    font-weight: 700;
    color: #0d4d43; /* theme green */
    margin-bottom: 6px;
}

/* Paragraph Styling */
.brikz-feature-card p {
    font-size: 15px;
    color: #33524f;
    margin-top: -4px;
}

/* Responsive */
@media (max-width: 768px) {
    .brikz-feature-card {
        padding: 20px;
    }
}
/* =========================================================
   BRIKZ DETAILED FEATURES SECTION – Unique Styles
   Safe: does NOT affect any page or form
========================================================= */

.brikz-detailed-section {
    background: #ffffff;
}

/* Title */
.brikz-detailed-title {
    font-size: 32px;
    font-weight: 700;
    color: #0d4d43; /* theme green */
}

/* Card box */
.brikz-detailed-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e2e2;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.brikz-detailed-card:hover {
    transform: translateY(-6px);
}

/* Heading */
.brikz-detailed-heading {
    color: #0d4d43; /* theme green */
    font-weight: 700;
    font-size: 20px;
}

/* Bullet points */
.brikz-detailed-list {
    padding-left: 20px;
    list-style: none;
    margin: 0;
}

.brikz-detailed-list li {
    color: #33524f;
    margin-bottom: 8px;
    position: relative;
    padding-left: 18px;
    line-height: 1.7;
}

/* Custom bullet style */
.brikz-detailed-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #0d4d43; /* theme bullet color */
    font-size: 20px;
    line-height: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .brikz-detailed-card {
        padding: 20px;
    }
}
/* =========================================================
   BRIKZ WHY CHOOSE SECTION – Unique Styles (No Conflicts)
========================================================= */

.brikz-why-section {
    background: var(--light-bg);
}

/* Title */
.brikz-why-title {
    font-size: 32px;
    font-weight: 700;
    color: #0d4d43;
}

/* Bullet List */
.brikz-why-list {
    list-style: none;
    padding-left: 20px;
}

.brikz-why-list li {
    font-size: 17px;
    color: #33524f;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

/* Custom green bullet */
.brikz-why-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0d4d43;
    font-size: 22px;
    line-height: 1;
}

/* Image Animation */
.brikz-why-image {
    opacity: 0;
    transform: translateY(25px);
    animation: brikzImageFadeUp 1s ease-out forwards;
    border-radius: 50px;
}

@keyframes brikzImageFadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Fix */
@media (max-width: 768px) {
    .brikz-why-title {
        text-align: center;
    }

    .brikz-why-list {
        padding-left: 15px;
    }
}

/* ================================
   UNIQUE PRICING SECTION CSS
   SAFE → No conflict with other pages
================================ */

/* Section Title */
.brikz-pricing-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary);
}

/* Pricing Cards */
.brikz-price-card {
    background: #33524f; /* YOUR THEME GREEN */
    color: #ffffff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease-in-out;
}

/* Hover Effect */
.brikz-price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

/* Card Title */
.brikz-price-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

/* Bullet List */
.brikz-price-list {
    list-style: none;
    padding-left: 0;
}

.brikz-price-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 17px;
    color: #ffffff;
    line-height: 1.7;
}

/* Tick Icon */
.brikz-price-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 18px;
    color: #ffffff;
    font-weight: bold;
}

/* White Border Button (outline style) */
.brikz-price-btn-outline {
    border: 2px solid #ffffff;
    padding: 10px 20px;
    background: transparent;
    color: #ffffff;
    border-radius: 10px;
    font-size: 16px;
    transition: 0.3s;
}


/* Responsive Fix */
@media (max-width: 768px) {
    .brikz-price-card {
        padding: 25px;
    }
    .brikz-price-card-title {
        font-size: 20px;
    }
}
/* ==============================
   UNIQUE HOW IT WORKS SECTION
   ============================== */

.brikz-how-section {
    background: var(--light-bg);
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Title */
.brikz-how-title {
    color: var(--primary);
    font-weight: 700;
    font-size: 32px;
}

/* Bullet Points */
.brikz-how-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--secondary);
    font-size: 17px;
    line-height: 1.8;
}

.brikz-how-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
}

/* Custom tick icon */
.brikz-how-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 18px;
    font-weight: bold;
    color: var(--primary);
}

/* Image animation */
.brikz-how-image {
    max-width: 90%;
    transition: transform 0.4s ease;
    border-radius: 20px;
}

.brikz-how-image:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .brikz-how-title {
        text-align: center;
    }

    .brikz-how-list {
        padding-left: 10px;
    }
}
/* ============================
   UNIQUE FAQ SECTION (SAFE)
   ============================ */

.brikz-faq-section {
    background: #fff;
}

.brikz-faq-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
}

/* FAQ CARD */
.brikz-faq-card {
    background: #33524f;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* QUESTION BUTTON */
.brikz-faq-question {
    width: 100%;
    padding: 18px 20px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    background: var(--primary);
    color: #fff;
    text-align: left;
    cursor: pointer;
}

.brikz-faq-question.collapsed {
    background: #ffffff;
    color: #123;
    border-bottom: 1px solid #e5e5e5;
}

/* ANSWER PANEL */
.brikz-faq-answer {
    padding: 18px 20px;
    background: #ffffff;
    color: #333;
    font-size: 16px;
    line-height: 1.7;
}

/* Hover Effect */
.brikz-faq-card:hover {
    transform: translateY(-3px);
}

/* Animation */
.brikz-faq-answer.collapse.show {
    border-top: 1px solid #eaeaea;
}

/* Responsive tweak */
@media (max-width: 768px) {
    .brikz-faq-question {
        font-size: 17px;
    }
}
/* ==============================
   CONTACT SECTION UNIQUE STYLES
   ============================== */

.brikz-contact-section .brikz-contact-subtext {
    color: var(--secondary);
    font-size: 17px;
}

.brikz-contact-section .brikz-contact-info {
    font-size: 17px;
    color: var(--secondary);
}

.brikz-contact-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.brikz-contact-link:hover {
    text-decoration: underline;
}

/* Social Icons */
.brikz-social-icons {
    display: flex;
    gap: 15px;
}

.brikz-social-icon {
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #083d34;
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
    transition: 0.3s;
}

.brikz-social-icon:hover {
    background: #ffffff;
    transform: translateY(-3px);
}

/* Image animation */
.brikz-contact-image {
    transition: 0.4s ease-in-out;
}

.brikz-contact-image:hover {
    transform: scale(1.05);
}

/* ===========================
   BRIKZ FOOTER (UNIQUE CLASS)
   =========================== */

/* ===========================
   BRIKZ FOOTER (UPDATED)
   =========================== */

.brikz-footer {
    background: #33524f;
    color: #fff;
    font-size: 16px;
    padding-top: 40px;   /* reduced space */
    padding-bottom: 20px; /* reduced space */
}

.brikz-footer .container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.brikz-footer-logo {
    width: 120px;
}

.brikz-footer-text {
    color: #fff;
    line-height: 1.6;
    margin-bottom: 12px; /* reduced spacing */
}

.brikz-footer-contact a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.brikz-footer-title {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px; /* less space */
}

.brikz-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.brikz-footer-links li {
    margin-bottom: 6px; /* reduced space */
}

.brikz-footer-links a {
    text-decoration: none;
    color: #dce9e6;
    transition: 0.3s;
}

.brikz-footer-links a:hover {
    color: var(--primary);
}

/* Social Icons */
.brikz-footer-social a {
    width: 34px;      /* slightly smaller */
    height: 34px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 6px;
    background: var(--primary);
    color: #ffffff !important;
    font-size: 16px;
    transition: 0.3s;
}

.brikz-footer-social a:hover {
    background: #0a241f;
    transform: translateY(-2px);
}

/* Copyright full width */
.brikz-footer-bottom {
    background: #204945;
    color: #fff;
    font-size: 14px;
    width: 100%;
    padding: 12px 0;
    margin-top: 10px; /* reduced space */
}
.brikz-footer-bottom a{
    color: #fff;
}
/* HEADER WRAPPER */
.brikz-header {
    background: #ffffff;
    padding: 12px 0;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 9999;
}

/* LOGO */
.brikz-header-logo img {
    height: 100px;
}

/* DESKTOP MENU */
.brikz-nav a {
    margin-left: 25px;
    text-decoration: none;
    font-weight: 600;
    color: var(--primary);  /* green theme */
    transition: 0.3s;
    font-size: 18px;
}

.brikz-nav a:hover {
    color: #0a332a; /* darker green */
}

/* MOBILE MENU BUTTON */
.brikz-menu-toggle {
    border: none;
    background: transparent;
    font-size: 26px;
    color: var(--primary);
}

/* MOBILE MENU PANEL */
.brikz-mobile-menu {
    display: none;
    flex-direction: column;
    background: #ffffff;
    padding: 10px 15px;
    border-bottom: 1px solid #e5e5e5;
}

.brikz-mobile-menu a {
    padding: 10px 0;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid #f1f1f1;
    
}

.brikz-mobile-menu a:last-child {
    border-bottom: none;
}

/* SHOW MOBILE MENU WHEN ACTIVE */
.brikz-mobile-menu.active {
    display: flex;
}
.brikz-faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease; /* animation time */
}

.brikz-faq-answer.show {
    max-height: 500px; /* enough space for text */
}
.brikz-testimonials-section {
    background: #f4faf8;
}

.brikz-testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    max-width: 700px;
}

.brikz-testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

.brikz-testimonial-author {
    font-weight: 600;
    color: #0f423d;
}

/* Dots */
.carousel-indicators [data-bs-target] {
    background-color: #0f423d;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

/* Arrows */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(28%) sepia(25%) saturate(800%) hue-rotate(120deg) brightness(90%);
}
.carousel .carousel-indicators {
    margin-bottom: -3px !important;
}
/*Whatsapp CTA starts*/
.whatsapp-float {
    position: fixed;
    bottom: 115px;
    right: 37px;
    z-index: 9999;
    background-color: transparent;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}
.whatsapp-float img {
    width: 40px;
    height: 40px;
}
@media (max-width: 1024px) {
    .whatsapp-float {
        bottom: 70px;
        right: 15px;
    }
    .whatsapp-float img {
        width: 50px;
        height: 50px;
    }
}
/*Whatsapp CTA ends*/

/* -------------------------------------------------
   BREADCRUMB SECTION
--------------------------------------------------- */
.brikz-breadcrumb-section {
    background: #2b5f60;
    padding: 40px 0;
}

.brikz-breadcrumb-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    text-align: left;
}

.brikz-breadcrumb-title {
    color: #ffffff;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
}

.brikz-breadcrumb-nav ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 8px;
    font-size: 15px;
    color: #ffffff;
}

.brikz-breadcrumb-nav ol li {
    color: white;
}

.brikz-breadcrumb-nav ol li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

/* -------------------------------------------------
   CONTENT SECTION
--------------------------------------------------- */
.brikz-content-section {
    background: #ffffff;
    padding: 50px 0;
}

.brikz-content-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.brikz-heading {
    color: #2b5f60;
    font-size: 24px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 12px;
}

.brikz-content-container p {
    color: #000000;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.brikz-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 20px 0;
}

.brikz-list li {
    position: relative;
    padding-left: 28px;
    color: #000000;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Custom bullet icon */
.brikz-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #2b5f60;
    font-weight: 700;
    font-size: 18px;
}
.brikz-faq-question {
    width: 100%;
    background: #2f4f4f;
    border: none;
    padding: 15px 20px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    position: relative;
    border-radius: 12px;
    cursor: pointer;
}

.faq-arrow {
    position: absolute;
    right: 20px;  /* push arrow to right corner */
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    transition: transform 0.3s ease;
}

.faq-arrow svg {
    width: 16px;   /* smaller arrow */
    height: 16px;
}

/* Rotate arrow when active */
.brikz-faq-question.active .faq-arrow {
    transform: translateY(-50%) rotate(180deg);
}
.size{
    font-size: 14px;
}
.color:hover{
    color:#fff;
}
.modal-backdrop {
    z-index: 99997 !important;
}

.modal {
    z-index: 99998 !important;
}

.modal-dialog,
.modal-content {
    z-index: 99999 !important;
}
@media (max-width: 480px) {
    .button {
        width: 50%;
        margin-bottom: 5px;
    }
}
::selection {
    background: #083d34;   /* or any dark color */
    color: #ffffff;
}

::-moz-selection {
    background: #083d34;
    color: #ffffff;
}
.demo{
    position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 99999;
        min-width: 300px;
        max-width: 90%;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        font-size: 16px;
        font-weight: 500;
}

.custom-modal-box {
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.custom-modal-title {
    text-align: center;
    font-size: 24px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #004d47; /* Brikz color or change */
    margin-bottom: 25px;
}

.custom-modal-close {
    font-size: 22px;
    font-weight: bold;
    background: none;
    border: none;
}
/* =====================================
   BRiKZ – 404 PAGE ONLY (FULL CSS)
   ===================================== */

/* Breadcrumb container */
.brikz-404-breadcrumb {
    background-color: #2b5e5e;
    padding: 90px 0 80px;
}

/* Force left alignment */
.brikz-404-breadcrumb .container,
.brikz-404-breadcrumb .ltn__breadcrumb-inner {
    text-align: left !important;
}

/* Page title */
.brikz-404-breadcrumb .page-title {
    color: #ffffff !important;
    margin-bottom: 14px;
    font-size: 32px;
    font-weight: 600;
}

/* Breadcrumb list */
.brikz-404-breadcrumb .ltn__breadcrumb-list {
    justify-content: flex-start !important;
    align-items: center;
    gap: 10px;
    padding-left: 10px;
    margin: 0;
}

/* Breadcrumb items */
.brikz-404-breadcrumb .ltn__breadcrumb-list li,
.brikz-404-breadcrumb .ltn__breadcrumb-list li a,
.brikz-404-breadcrumb .ltn__breadcrumb-list li i {
    color: #ffffff !important;
    font-size: 14px;
}


.brikz-404-page .error-image {
    margin-top: 30px;
}
.brikz-404-page .error-text h2 {
    margin-bottom: 10px;
}

.brikz-404-page .error-text p {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .brikz-404-breadcrumb {
        padding: 70px 0 60px 0px !important;
    }

    .brikz-404-breadcrumb .page-title {
        font-size: 25px;
    }

    .brikz-404-page {
        padding-top: 60px !important;
    }
}
.brikz-404-page .theme-btn-1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 28px;
    background-color: #2b5e5e;
    color: #ffffff !important;

    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;

    border: 1px solid #2b5e5e;
    transition: all 0.3s ease;
}
.brikz-404-page .theme-btn-1:hover {
    background-color: #0a4a3f;
    border-color: #0a4a3f;
    color: #ffffff !important;
}
.brikz-404-page .theme-btn-1:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(8, 61, 52, 0.25);
}
