
/* =========================================
   RESET & VARIABLES
   ========================================= */
html {
    scroll-behavior: smooth;
}


:root {
    /* Colors */
    --PrimaryColor: #D75F4C;
    --BlackColor: #000;
    --WhiteColor: #FFFFFF;
    --SecondaryColor: #E59F00;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


section[id] { scroll-margin-top: 80px; }


body {
 font-family: "Inter", sans-serif;
   font-weight: 400;
    color: var(--BlackColor);
    line-height: 1.5;
    background-color: var(--WhiteColor);
    overflow-x: hidden;
}


a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}




.same-section {
    padding: clamp(5rem, 7vw, 5rem) 0;
}

.same-heading {
    margin-bottom: 4rem;
}

.same-heading h2 {
    color: #393939;
    font-size:2.5rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1rem;
}


.same-heading h2 .highlight-text{background: var(--PrimaryColor); color: var(--BlackColor); padding: 0.2rem 0.6rem;}


.same-heading h3 {
   
    color: #122939;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0.6rem;
}

.same-heading p {
    color: #505050;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
}




.bg-gray {
    background: #F1F1F1;
}

.max-wid-50 {
    width: 100%;
    max-width: 50%;
}

.max-wid-80 {
    width: 100%;
    max-width: 80%;
}

.same-heading.text-center :is( .max-wid-50,  .max-wid-80) {
    margin: 0 auto;
}

.same-heading.white-text :is(h2,h3, p) {
    color: var(--WhiteColor);
    background: linear-gradient(90deg, var(--WhiteColor) 0%, var(--WhiteColor) 50%, var(--WhiteColor) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;

}

.same-section .section-bottom-btn {
    margin-top: 1.5rem;
}

.section-bottom-btn {
    display: flex;
    gap: 1rem;
    align-items: center;flex-wrap: wrap;
    margin-top: 2rem;
}

.section-bottom-btn.text-center {
    justify-content: center;
}


/* =========================================
   UTILITIES
   ========================================= */
.tag {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  color: var(--PrimaryColor);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1rem;
    border-radius: 5px;
    font-weight: 400;
    font-size: 0.9rem;
    cursor: pointer;
    border: 1px solid transparent;
    /* Animation Properties */
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn svg {
    width: 1.2rem;
    height: 1.2rem;
}

.btn-primary {
    background: var(--PrimaryColor);
    color: var(--WhiteColor);
    border-color: var(--PrimaryColor);
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background: var(--PrimaryColor) !important;
    color: var(--WhiteColor) !important;
    border-color: var(--PrimaryColor) !important;
}

.btn-primary .fluid-canvas,
.btn-secondary .fluid-canvas,
.btn-outline-primary .fluid-canvas,
.btn-white .fluid-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
    z-index: 1;
}

.btn-primary .btn-text,
.btn-secondary .btn-text,
.btn-outline-primary .btn-text,
.btn-white .btn-text {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-outline-primary {
    background: transparent;
    color: var(--PrimaryColor);
    border-color: var(--PrimaryColor);
}

.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
    background: var(--PrimaryColor) !important;
    color: var(--WhiteColor) !important;
    border-color: var(--PrimaryColor) !important;
}

.btn-secondary {
    background: var(--PrimaryColor);
    border: solid 1px var(--PrimaryColor);
    color: var(--BlackColor);
}

.btn-secondary:hover,.btn-secondary:focus,.btn-secondary:active {
 background: var(--PrimaryColor) !important;
border-color:var(--PrimaryColor) !important;
color: var(--WhiteColor) !important;
}



.btn-white {
    background: var(--WhiteColor);
    border: solid 1px var(--WhiteColor);
    color: var(--PrimaryColor);
}

.btn-white:hover,.btn-white:focus,.btn-white:active {
 background: var(--SecondaryColor) !important;
border-color:var(--SecondaryColor) !important ;
color: var(--WhiteColor) !important;
}



/* =========================================
   1. NAVBAR
   ========================================= */

.header {
    position: relative;
    padding: 1rem 0;
    transition: all 0.3s ease;
    z-index: 99;
}

.header.headerfix {
    background: var(--WhiteColor);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    top: 0;
    z-index: 100;
    position: fixed;
    left: 0; right: 0;
    padding: 0.8rem 0;
    animation: slideDown 0.4s ease forwards;
}

/* Inner pages header */
.header.inner-header {
    background: var(--WhiteColor);
    border-bottom: 1px solid #EFEFEF;
    position: sticky;
    top: 0;
    z-index: 100;
    margin-top: 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.header.inner-header .nav-links a:not(.btn) {
    color: var(--BlackColor);
}

.header.inner-header .nav-links a:hover:not(.btn) {
    color: var(--PrimaryColor);
}

.header.inner-header.headerfix {
    background: var(--WhiteColor);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header .nav-content {
    display: flex;
    align-items: center;

}
.header .nav-content .logo img{max-height: 4rem;}
.header .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
}
.header .nav-actions{margin-left: 3rem;}


.header .nav-links a:not(.btn) {
    /* font-weight: 300; */
    font-size: 0.9rem;
    color: var(--BlackColor);
    padding: 0.2rem;
    position: relative;
}
.header .nav-links a:not(.btn)::before{ position: absolute;
    content: '';
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--PrimaryColor);
    transform: translateX(-50%);
    transition: width 0.3s ease;}

.header .nav-links a:hover:before{    width: 100%;}


.header .nav-links a:hover:not(.btn) {
    color: var(--PrimaryColor);
}



.header .nav-links .btn{margin-left: 1rem;}

/* .header .nav-actions{margin-left: auto;} */

.header .mobile-toggle {
font-size: 1.5rem;
width: 2.6rem;
height: 2.6rem;
background: var(--PrimaryColor);
color: var(--WhiteColor);
border: solid 1px var(--PrimaryColor);
border-radius: 50%;
cursor: pointer;
display: inline-flex; align-items: center;
justify-content: center;
}
.header .mobile-toggle svg{width: 1.3rem;}
.header  .btn-sidebar-close{font-size: 1.5rem;
width: 2.6rem;
height: 2.6rem;
background: var(--PrimaryColor);
color: var(--WhiteColor);
border: solid 1px var(--PrimaryColor);
border-radius: 50%;
cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.header  .btn-sidebar-close svg{width: 1.3rem;}


.primary-text{color: var(--PrimaryColor); text-transform: uppercase; font-size: 0.8rem; margin-bottom: 0.6rem;}



.hero-section {
position: relative;
padding: 5rem 0rem;
background: url(../images/banner-bg.jpg)no-repeat center top/cover;
overflow: hidden;
min-height: 100vh;
margin-top: -4.2rem;
display: flex; align-items: center;justify-content: center;
}




/* Content */
.hero-section .hero-content {
  position: relative;
  z-index: 2;
  max-width: 80rem;
  border-radius: 1rem;
}
.hero-section  .section-bottom-btn{margin: 2rem 0;}
/* Title */
.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--BlackColor);
  line-height: 1.2;
}
.hero-section h3 {
  font-size: 1.8rem;
  font-weight: 500;
  color: #363636;
  line-height: 1.2;
}
/* Text */
.hero-section p {
  font-size: 1rem;
  color: #464646;
  line-height: 1.8;
}

.private-banking-section{background: #F7F3EF;}







/* =========================================
   SITE FOOTER
   ========================================= */
.footer {
    background: #F6F6F6;
    padding: 4rem 0 0;
}

.footer .footer-brand {
    display: inline-block;
    margin-bottom: 1rem;
}



.footer .footer-brand-desc {
    font-size: 0.875rem;
    color:#505050;
    line-height: 1.8;
    max-width: 22rem;
    margin: 0;
}

.footer .footer-col-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--BlackColor);
    margin-bottom: 1.25rem;
    letter-spacing: 0.02rem;
}

.footer .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer .footer-links li a {
    font-size: 0.875rem;
    color: #353535;
    transition: color 0.25s ease;
}

.footer .footer-links li a:hover {
    color: var(--PrimaryColor);
}

.footer .footer-top {
    padding-bottom: 3rem;
}

.footer .site-footer-bottom {
    border-top: 1px solid #E4E4E4;
    padding: 1.5rem 0;
    text-align: center;
}

.footer .site-footer-bottom p {
    font-size: 0.82rem;
     color: #353535;
    margin: 0;
}


/* =========================================
   FLAGSHIP MEMBERSHIP SECTION
   ========================================= */


.flagship-feature-card {
    padding: 2rem 1.5rem;
}

.flagship-icon-wrap {
    width: 3.3rem;
    height: 3.3rem;
    background: #E59F001C;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.flagship-icon-wrap svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--SecondaryColor);
    stroke: var(--SecondaryColor);
}

.flagship-feature-card h4 {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--PrimaryColor);
    margin-bottom: 0.75rem;
}

.flagship-feature-card p {
    font-size: 0.95rem;
    color: #505050;
    line-height: 1.8;
    max-width: 22rem;
    margin: 0 auto;
}
.lifetime-memories{padding-top: 0;}
.lifetime-memories .same-heading{background: url(../images/lifetime-memories-bg.png)no-repeat center top;    background: url(../images/lifetime-memories-bg.png) no-repeat center top;
    background-size: cover;
       min-height: 452px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 2rem 1rem 2rem;}
.lifetime-memories .same-heading .content-bx{width: 100%; max-width: 60%;}
.lifetime-memories .same-heading h3{font-family: "Funnel Display", sans-serif; }
.lifetime-memories .same-heading .price-bx{font-family: "Funnel Display", sans-serif; font-size: 3.4rem; line-height: normal; font-weight: 500; color: var(--WhiteColor); margin-bottom: 0.5rem;}
.lifetime-memories .same-heading .price-bx sup{font-size: 2rem;}


/* =========================================
   SERVICE HOME SECTION
   ========================================= */
.service-home-section {
    background: var(--WhiteColor);
}

.service-home-section .service-card {
    background: #F5F5F5;
    border-radius: 1rem;
    padding: 2rem;

}

.service-home-section .service-tag {
    display: inline-block;
    background: var(--WhiteColor);
    color: var(--PrimaryColor);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.3rem 0.9rem;
    border-radius: 2rem;
    margin-bottom: 1.25rem;
}

.service-home-section .service-card h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #363636;
    line-height: 1.3;
    margin-bottom: 0.85rem;
}

.service-home-section .service-card > p {
    font-size: 0.9rem;
    color: #505050;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.dot-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dot-list li {
    font-size: 0.9rem;
    color: var(--PrimaryColor);
    padding-left: 1.2rem;
    position: relative;
}

.dot-list li::before {
    content: '';
    width: 0.4rem;
    height: 0.4rem;
    background: var(--PrimaryColor);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0.45rem;
}


/* =========================================
   NANNYLIFE STORY SECTION
   ========================================= */
.nannylife-story {
    background: var(--PrimaryColor);
}

.nannylife-story .primary-text {
    color: var(--WhiteColor);
}

.story-timeline {
    margin-top: 5rem;
}

/* shared grid for top & bottom rows — 6 equal cols */
.story-row {
    display: flex;
    justify-content: space-around;
    
}

/* TOP ROW: items align to bottom so their dots sit just above the wave */
.story-top-row .story-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: flex-end;
    padding: 0 0.5rem 0.5rem;
}
/* .story-timeline .story-wave{    margin: -1.5rem 0;} */
/* BOTTOM ROW: items align to top so their dots sit just below the wave */
.story-top-row{margin-bottom: -2.5rem;}
.story-bottom-row{margin-top: -2.5rem;}
.story-bottom-row .story-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: flex-start;
    padding: 0.5rem 0.5rem 0;
}
/* .story-bottom-row .story-item:first-child{margin-left: 10rem;}
.story-top-row .story-item:nth-child(2){margin-left: 10rem;} */
.story-item h4 {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--WhiteColor);
    margin-bottom: 0.35rem;
}

.story-item p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    max-width: 12rem;
    margin: 0;
}

 .story-item  .story-dot {
       width: 1px;
    height: 40px;
    background: var(--WhiteColor);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
}
 .story-item  .story-dot::after{position: absolute; left: 0; right: 0 ; bottom: 0; width: 14px; height: 14px; background: var(--WhiteColor) ; border-radius: 50%;margin-left: -7px; content: '';} 

.story-bottom-row .story-item .story-dot::after{top: 0;}

.story-top-row .story-dot {
    margin-top: 0.6rem;
}

.story-bottom-row .story-dot {
    margin-bottom: 0.6rem;
}

.story-wave img {
    display: block;
    width: 100%;
    opacity: 0.65;
}


/* =========================================
   NANNYLIFE CARE SECTION
   ========================================= */
.nannylife-care {
    background: #fafafa;
}

.nannylife-care .same-heading .img-bx {
    margin-top: 3rem;
}

.nannylife-care .care-cards-grid {
    margin-top: 3rem;
}

.nannylife-care .care-card {
    background: #FFF8EE;
    border-radius: 1rem;
    padding: 2rem;

}

.nannylife-care .care-card-tag {
    font-size: 0.72rem;
    font-weight: 600;
    /* letter-spacing: 0.06rem; */
    text-transform: uppercase;
    color: var(--PrimaryColor);
    margin-bottom: 1rem;
}

.nannylife-care .care-card h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--BlackColor);
    line-height: 1.25;
    margin-bottom: 0.85rem;
}

.nannylife-care .care-card p {
    font-size: 0.875rem;
    color: #505050;
    line-height: 1.75;
    margin: 0;
}


/* =========================================
   PRICING SECTION
   ========================================= */
.pricing-section {
    background: #111111;
}

.pricing-section .primary-text {
    color: var(--PrimaryColor);
}

.pricing-card {
    background: #1E1E1E;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid #FFFFFF1A;
}

.pricing-card-featured {
    background: #242424;
    border-color: #333333;
}

.pricing-card .pricing-tag {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.07rem;
    text-transform: uppercase;
    color: #888888;
    margin-bottom: 0.85rem;
}

.pricing-card h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--PrimaryColor);
    line-height: 1.25;
    margin-bottom: 0.85rem;
}

.pricing-card .pricing-price {
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--WhiteColor);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.pricing-card .pricing-price sup {
    font-size: 1.4rem;
    font-weight: 500;
    vertical-align: super;
}

.pricing-card .pricing-price span {
    font-size: 1.2rem;
    font-weight: 400;

}

.pricing-card > p {
    font-size: 0.875rem;
    color: #888888;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.pricing-card .pricing-list {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.pricing-card .pricing-list li {
    font-size: 0.875rem;
    color: var(--PrimaryColor);
    padding-left: 1.1rem;
    position: relative;
}

.pricing-card .pricing-list li::before {
    content: '';
    width: 0.35rem;
    height: 0.35rem;
    background: var(--PrimaryColor);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0.45rem;
}


/* =========================================
   FAMILY CARE SECTION
   ========================================= */
.family-care-section {
    position: relative;
       background: linear-gradient(to right, #00000096 10%, transparent);padding: 10rem 0 1.8rem;
    
}

.family-care-section .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.family-care-section .promise-bar {
    background: var(--WhiteColor);
    border-radius: 1rem;
    padding: 1.3rem 1.5rem;margin-top: 4rem;

}

.family-care-section .promise-title {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: normal;
    color: #393939;

}

.family-care-section .promise-desc {
    font-size: 0.9rem;
    color: #505050;
    line-height: 1.7;
    margin: 0;
}

.family-care-section  .promise-bar .btn {
    /* white-space: nowrap; */
    flex-shrink: 0;
    padding: 0.75rem 1.5rem;
}