:root {
    --primary: #2d2d2d;
    --accent: #d4c4a9;
    --light: #f8f5f2;
    --muted: #7a7a7a;
}



    /* TRINETRA PREMIUM LOADER */
#trinetra-loader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  transition: 0.6s ease-in-out;
}

#trinetra-loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-center {
  position: relative;
  width: 150px;
  height: 150px;
}

.loader-logo {
  width: 90px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
 
}

/* Outer orbit ring */
.loader-ring {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 4px solid transparent;
  border-top-color: #d4c4a9;
  border-right-color: #3c322d;
  border-bottom-color: #d4c4a9;
  border-left-color: #3c322d;
  animation: trinetraSpin 2.2s linear infinite;
  filter: drop-shadow(0 0 12px rgba(212,196,169,0.4));
}

@keyframes trinetraSpin {
  to {
    transform: rotate(360deg);
  }
}
/* RESET */
*,
*::before,
*::after {
    box-sizing: border-box;

}

body {
    margin: 0;
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    background: var(--light);
    color: var(--primary);
    scroll-behavior: smooth;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

/* GENERAL UTILITIES */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: clamp(2rem, 3vw, 2.4rem);
    font-weight: 700;
    margin-bottom: 10px;
}

.section-subtitle {
    color: var(--muted);
    max-width: 540px;
    margin: 0 auto 40px;
    font-size: 0.96rem;
}

.badge-soft {
    background: rgba(212, 196, 169, 0.12);
    color: var(--primary);
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.btn-primary-soft {
    background: var(--primary);
    color: #fff;
    border-radius: 30px;
    padding: 10px 26px;
    font-weight: 600;
    border: none;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.25s ease;
}

.btn-primary-soft:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
    color: #fff;
}

.btn-outline-accent {
    border-radius: 30px;
    padding: 10px 24px;
    border: 1px solid var(--accent);
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    transition: all 0.25s ease;
}

.btn-outline-accent:hover {
    background: var(--accent);
    color: #2d2d2d;
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(212, 196, 169, 0.4);
}

.shadow-soft {
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.small-text {
    font-size: 0.9rem;
}

.small-letter {
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.note-text {
    font-size: 0.8rem;
}

.text-accent {
    color: var(--accent);
}

/* NAVBAR */
.custom-nav {
    /* background: rgba(255, 255, 255, 0.15); */
    background: white;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.15s ease;
    z-index: 999;
    border-radius: 100px;
    margin: 20px;
}

.custom-nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.custom-nav .navbar-brand img {
    height: 55px;
    transition: height 0.25s ease, transform 0.25s ease;
}

.custom-nav.scrolled .navbar-brand img {
    height: 55px;
    /* transform: translateY(5px); */
}

.custom-nav .nav-link {
    color: #2d2d2d !important;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 0.88rem;
    position: relative;
    padding-bottom: 4px;
}

.custom-nav .nav-link:hover {
    color: var(--accent) !important;
}

.custom-nav .nav-link::after {
    content: "";
    width: 0;
    height: 2px;
    position: absolute;
    left: 50%;
    bottom: 0;
    background: var(--accent);
    transition: width 0.25s ease;
    transform: translateX(-50%);
}

.custom-nav .nav-link:hover::after {
    width: 70%;
}

.nav-phone a {
    font-weight: 700;
    font-size: 0.98rem;
    color: #2d2d2d;
    text-decoration: none;
}

.nav-phone i {
    color: var(--accent);
    margin-right: 6px;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    filter: invert(35%);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 6px;
    left: 50%;
    background: var(--accent);
    transition: 0.3s;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 90%;
}


/* NAV RESPONSIVE */
@media (max-width: 1200px) {
    .navbar-nav {
        gap: 20px !important;
    }
}

@media (max-width: 1024px) {
    .navbar-nav {
        flex-wrap: wrap;
        gap: 14px !important;
        margin-top: 10px;
    }

    .nav-phone {
        margin-left: auto;
    }

    .custom-nav .navbar-brand img {
        height: 55px;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        /* background: rgba(255, 255, 255, 0.98); */
        padding: 18px 16px 24px;
        border-radius: 16px;
        margin-top: 12px;
        /* box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15); */
    }

    .nav-phone {
        display: block !important;
        margin-top: 12px;
        text-align: center;
    }
}

/* LAYOUT OFFSET FOR FIXED NAV */
/* main {
    margin-top: 110px;
} */

/* PARALLAX SHARED */
.parallax-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    will-change: transform;
    transform: translateY(0);
}
/* TRUE PARALLAX FIX — APPLY TO ALL PARALLAX SECTIONS */
.parallax-bg {
    background-attachment: fixed !important;
    background-position: center !important;
    background-size: cover !important;
    transform: none !important; /* remove JS shifting */
}
.parallax-bg {
    will-change: background-position;
}


@media (max-width: 767px) {
    .parallax-bg {
        transform: none !important;
    }
}

/* HERO */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.hero-bg {
    background-image: url("img/frames-for-your-heart-mR1CIDduGLc-unsplash.jpg");
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.48));
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background: rgba(248, 245, 242, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-tag i {
    color: var(--accent);
}

.hero-title {
    font-size: clamp(2.4rem, 4vw, 3.1rem);
    font-weight: 800;
    margin: 18px 0 10px;
}

.hero-title span {
    color: var(--accent);
}

.hero-subtitle {
    color: #e5e5e5;
    max-width: 520px;
    font-size: 0.98rem;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-badge i {
    color: var(--accent);
}

.hero-cta {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-cta .btn-outline-accent {
    border-color: #fff;
    color: #fff;
}

.hero-cta .btn-outline-accent:hover {
    border-color: var(--accent);
    color: #2d2d2d;
}

.hero-right-card {
    background: rgba(248, 245, 242, 0.97);
    border-radius: 24px;
    padding: 24px 24px 20px;
    color: #2d2d2d;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.65);
      height: 430px; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-stat {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.hero-stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.06);
}

.hero-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px dashed rgba(0, 0, 0, 0.12);
}

.hero-metric {
    min-width: 140px;
}

.hero-metric-number {
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 1.1;
}

.hero-metric-label {
    font-size: 0.85rem;
    color: var(--muted);
}

@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 70px;
        margin-top: -13px;
    }

    .hero-right-card {
        margin-top: 36px;
    }
}

/* OVERVIEW */
.overview-section .overview-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--muted);
}

.overview-checklist i {
    color: #5b594b;
    margin-top: 3px;
}

.stat-card {
    background: #fff;
    border-radius: 18px;
    padding: 18px 16px;
    text-align: left;
}

.stat-number {
    font-size: 1.6rem;
    font-weight: 800;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--muted);
}

/* SERVICES */
.services-section {
    position: relative;
    background: linear-gradient(to bottom, #ffffff, #faf7f2);
    overflow: hidden;
}

.services-bg {
    background-image: url("img/frames-for-your-heart-mR1CIDduGLc-unsplash.jpg");
    opacity: 0.12;
    pointer-events: none;
}

.service-card {
    background: #fff;
    border-radius: 24px;
    padding: 24px 22px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 196, 169, 0.18);
    margin-bottom: 16px;
    font-size: 1.4rem;
}

.service-card h5 {
    font-weight: 700;
    margin-bottom: 4px;
}

.service-card p {
    font-size: 0.94rem;
    color: var(--muted);
}

.service-card-footer {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--muted);
}

.btn-learn-more {
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: var(--primary);
    color: #fff;
    border: none;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-learn-more:hover {
    background: #000;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(212, 196, 169, 0.9);
}

/* PROCESS */
.process-section {
    background: var(--light);
}

.step-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px 18px;
    text-align: left;
    position: relative;
    height: 100%;
}

.step-number {
    display: inline-flex;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.step-title {
    font-weight: 700;
    margin-bottom: 6px;
}

.step-text {
    font-size: 0.9rem;
    color: var(--muted);
}

.process-connector {
    position: absolute;
    top: 26px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.14));
    display: none;
}

@media (min-width: 992px) {
    .process-connector {
        display: block;
    }

    .step-last .process-connector {
        display: none;
    }
}

/* WHY SECTION */
.why-section {
    position: relative;
    color: #fff;
    overflow: hidden;
}

.why-bg {
    background-image: url("img/frames-for-your-heart-mR1CIDduGLc-unsplash.jpg");
}

.why-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(45, 45, 45, 0.85));
}

.why-content {
    position: relative;
    z-index: 2;
}

.why-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 20px 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    height: 100%;
    font-size: 0.92rem;
}

.why-card i {
    color: var(--accent);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.why-card h6 {
    font-weight: 700;
    margin-bottom: 6px;
}

.why-card p {
    color: #e0e0e0;
}

@media (max-width: 991px) {
    .why-section {
        background-attachment: scroll;
    }
}

/* PARTNERS */
.partners-section {
    background: #fff;
}

.partners-slider {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: scroll-logos 25s linear infinite;
    will-change: transform;
}

.partner-logo img {
    max-height: 50px;
    width: auto;
    opacity: 0.85;
    filter: grayscale(0%);
    transition: all 0.3s;
}

.partner-logo img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(-2px);
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}
/* REPLACE or ADD only these rules */
.partners-slider {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.partners-track {
    display: flex;
    gap: 60px;
    align-items: center;
    width: max-content;           /* Essential */
    animation: scroll-logos 30s linear infinite;
    will-change: transform;
}

/* This makes the loop perfectly seamless */
@keyframes scroll-logos {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Optional: pause on hover */
.partners-slider:hover .partners-track {
    animation-play-state: paused;
}

/* REVIEWS */
.reviews-section {
    background: var(--light);
}

.review-card {
    background: #fff;
    border-radius: 22px;
    padding: 22px 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
}

.review-text {
    font-size: 0.95rem;
    color: var(--primary);
}

.review-stars {
    color: #fbbf24;
    margin-bottom: 8px;
}

.review-name {
    font-weight: 600;
}

.review-meta {
    font-size: 0.8rem;
    color: var(--muted);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}

@media (min-width: 992px) {
    #reviewsCarousel .carousel-inner .carousel-item>div {
        display: flex;
        gap: 20px;
    }
}

@media (max-width: 991px) {
    #reviewsCarousel .carousel-inner .carousel-item>div {
        display: block;
    }

    .review-card {
        max-width: 520px;
        margin: 0 auto;
    }
}

/* AREAS */
.areas-section {
    background: #fff;
}

.area-badge {
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.03);
    margin: 4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.area-badge i {
    font-size: 0.8rem;
    color: var(--accent);
}

.metric-card {
    border-radius: 22px;
    padding: 20px 18px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    background: #faf7f2;
    height: 100%;
}

.metric-number {
    font-size: 1.8rem;
    font-weight: 800;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--muted);
}

/* COMPARISON */
.comparison-section {
    position: relative;
    color: #fff;
    overflow: hidden;
    background:
        linear-gradient(to bottom right, #1f1f1f, #3b3428);
}

.comparison-bg {
    background-image: url("img/frames-for-your-heart-mR1CIDduGLc-unsplash.jpg");
    opacity: 0.10;
}

.comparison-overlay {
    position: absolute;
    inset: 0;

}

.comparison-inner {
    position: relative;
    z-index: 2;
}

.comparison-badge {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    padding: 6px 18px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    display: inline-block;
}

.comparison-title {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 12px;
}

.comparison-subtitle {
    color: #e5e5e5;
    max-width: 540px;
    margin: 10px auto 18px;
    font-size: 0.95rem;
}

.comparison-note {
    font-size: 0.9rem;
    color: #f5f5f5;
    max-width: 700px;
    margin: 0 auto;
}

.table-comparison {
    background: rgba(0, 0, 0, 0.35);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.table-comparison table {
    margin-bottom: 0;
    color: #f5f5f5;
    font-size: 0.9rem;
}

.table-comparison thead {
    background: rgba(0, 0, 0, 0.45);
}

.table-comparison th,
.table-comparison td {
    vertical-align: middle;
    padding: 12px 12px;
    border-color: rgba(255, 255, 255, 0.15) !important;
}

.table-comparison th {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cmp-yes {
    color: #4ade80;
    font-size: 0.9rem;
}

.cmp-no {
    color: #f97373;
    font-size: 0.9rem;
}

.cmp-icon {
    font-size: 0.95rem;
    margin-right: 4px;
}

@media (max-width: 575px) {
    .comparison-title {
        font-size: 1.7rem;
    }

    .table-comparison th,
    .table-comparison td {
        padding: 8px 6px;
        font-size: 0.78rem;
    }
}

/* FAQ */
.faq-section {
    background: #fff;
}

.faq-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
}

.faq-filter-btn {
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 0.82rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    white-space: nowrap;
}

.faq-filter-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.accordion-button {
    font-weight: 500;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button::after {
    filter: grayscale(1);
}

/* FOOTER */

/* FOOTER LOGO CENTERED ON MOBILE & TABLET */
@media (max-width: 991.98px) {
    .footer-logo {
        text-align: center !important;
        margin-bottom: 20px;
    }
    
    .footer-logo img {
        margin: 0 auto;
        height: 100px; /* slightly smaller on mobile for better proportion */
    }

    /* Optional: Center the company name too */
    .footer-logo + h3 {
        text-align: center !important;
    }
}

/* Extra small phones */
@media (max-width: 480px) {
    .footer-logo img {
        height: 80px;
    }
}
footer {
    background: var(--primary);
    color: white;
    padding: 80px 0 30px;
}

.footer-logo img {
    height: 120px;
  
    align-items: center !important;
    justify-content: center !important;
}

.footer-heading {
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: all 0.2s ease;
    font-size: 0.93rem;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 8px;
}

.contact-info i {
    color: var(--accent);
    width: 25px;
    color:#d4c4a9;
}

.book-btn {
    background: var(--accent);
    color: #2d2d2d;
    padding: 14px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 20px;
    transition: all 0.25s ease;
    box-shadow: 0 5px 20px rgba(212, 196, 169, 0.4);
}

.book-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(212, 196, 169, 0.6);
    color: #2d2d2d;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    margin-top: 50px;
    font-size: 0.9rem;
    color: #aaa;
}

@media (max-width: 768px) {

    .footer-heading,
    .footer-logo,
    .book-btn,
    .contact-info p {
        text-align: center !important;
    }

    .footer-links a {
        text-align: center;
    }

    .book-btn {
        margin: 20px auto 0;
        display: table;
    }
}

  .whatsapp-float {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: #25D366;
      color: white;
      width: 65px;
      height: 65px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.4rem;
     
      z-index: 1000;
      
      text-decoration: none !important;
    }
       

/* Clean styling + no blue line ever */
.social-links-wrapper .social-icon-link {
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.social-links-wrapper .social-icon-link:hover i {
    color: var(--accent) !important;
    transform: translateY(-4px);
}

/* Force icons to show - overrides any conflicts */
.social-links-wrapper i {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    line-height: 1 !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}
