/* =======================================================
   EASE RU — Home Page Styles
   File: public/sitassets/style.css
   ======================================================= */
.discoverSwiper{
    padding:10px 5px 30px;
}

.discoverSwiper .swiper-slide{
    height:auto;
}

.discoverSwiper .info-card{
    height:100%;
}
.product-slider-wrap{
    position:relative;
    display:flex;
    align-items:center;
    gap:15px;
}

.product-slider{
    display:flex;
    gap:25px;
    overflow:hidden;
    scroll-behavior:smooth;
    width:100%;
}

.product-card{
    min-width:calc(33.333% - 17px);
    flex:0 0 calc(33.333% - 17px);
}

.slider-btn{
    width:50px;
    height:50px;
    border:none;
    border-radius:10%;
    cursor:pointer;
    font-size:24px;
    background: #1c757e;
    box-shadow:0 5px 15px rgba(255, 248, 248, 0.15);
    z-index:5;
}

@media(max-width:991px){
    .product-card{
        min-width:calc(50% - 15px);
        flex:0 0 calc(50% - 15px);
    }
}

@media(max-width:576px){
    .product-card{
        min-width:100%;
        flex:0 0 100%;
    }
}
.featured-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    align-items:start;
}

.featured-grid .product-card{
    height:auto !important;
    min-height:auto !important;
}

.featured-grid .card-body{
    padding:20px;
}

.featured-grid .card-img{
    height:210px;
    overflow:hidden;
}

.featured-grid .card-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.featured-grid .price-row{
    margin-top:10px;
}
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Koh+Santepheap:wght@100;300;400;700;900&display=swap');
:root{
  --teal:            #208893;
  --teal-dark:       #1c757e;
  --teal-darker:     #156167;
  --teal-accent:     #128f86;   /* card titles, links, accents */
  --teal-price:      #0e4e4b;   /* price / advance-amount text */
  --teal-soft:       #e7f4f5;   /* very light teal section bg */
  --pill-bg:         rgba(255,255,255,.16);
  --pill-border:     rgba(255,255,255,.45);
  --ink:             #0c0c0c;   /* headings */
  --body-text:       #5b6266;
  --body-text-soft:  #6b7378;
  --card-border:     #e3eef0;
  --white:           #ffffff;
  --font-display:    'Lora', Georgia, 'Times New Roman', serif;
  --font-body:        'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-kohsan: "Koh Santepheap", serif;
  --font-laosan: 'Lao Sans Pro', sans-serif;
  --container:       1260px;
  --radius-card:      10px;
  --shadow-card:      0 4px 18px rgba(20,60,65,.08);
}

/* ---------- Reset ---------- */
*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; }
html, body{ overflow-x:hidden; width:100%; }
body{
  font-family:var(--font-body);
  color:var(--body-text);
  line-height:1.6;
  background:#ffffff;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ text-decoration:none; color:inherit; }
ul{ list-style:none; }
button{ font-family:inherit; cursor:pointer; border:none; background:none; }
.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
}

/* ---------- Section heading pattern ---------- */
.section-heading{
  text-align:center;
  font-family:var(--font-display);
  font-weight:700;
  color:var(--ink);
  font-size:36px;
  margin-bottom:18px;
  letter-spacing:.2px;
}
.section-sub{
  text-align:center;
  color:var(--body-text);
  font-size:17px;
  max-width:760px;
  margin:0 auto 50px;
  line-height:1.7;
}
/* =======================================================
   HEADER / NAVBAR
======================================================= */

.site-header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    z-index: 99999;
    box-shadow: 0 2px 15px rgba(0,0,0,.08);
}

body{
    padding-top: 85px;
}
.navbar{
    max-width:1280px;
    margin:0 auto;
    padding:18px 24px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    position:relative;
}

.brand{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
}

.brand img{
    width:42px;
    height:42px;
    object-fit:contain;
}

.brand span{
    font-size:22px;
    font-weight:700;
    color:#009688;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:35px;
    margin:0;
    padding:0;
}

.nav-links li{
    list-style:none;
}

.nav-links a{
    text-decoration:none;
    color:#222;
    font-size:15px;
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover{
    color:#009688;
}

.btn-signin{
    padding:11px 24px;
    background:#fff;
    border:1px solid #ddd;
    border-radius:8px;
    text-decoration:none;
    color:#222;
    font-weight:600;
    transition:.3s;
}

.btn-signin:hover{
    background:#f5f5f5;
}

.nav-toggle{
    display:none;
    flex-direction:column;
    gap:5px;
    background:none;
    border:none;
    cursor:pointer;
}

.nav-toggle span{
    width:25px;
    height:3px;
    background:#222;
    border-radius:20px;
}

/* =======================================================
   TABLET
======================================================= */

@media(max-width:991px){

    .navbar{
        padding:15px 20px;
    }

    .brand img{
        width:38px;
        height:38px;
    }

    .brand span{
        font-size:19px;
    }

    .nav-toggle{
        display:flex;
        order:3;
    }

    .btn-signin{
        order:2;
        margin-left:auto;
        margin-right:15px;
        padding:9px 18px;
        font-size:14px;
    }

    .nav-links{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#fff;
        display:none;
        flex-direction:column;
        align-items:flex-start;
        gap:0;
        border-top:1px solid #eee;
        box-shadow:0 10px 25px rgba(0,0,0,.08);
        z-index:999;
    }

    .nav-links.open{
        display:flex;
    }

    .nav-links li{
        width:100%;
    }

    .nav-links a{
        display:block;
        width:100%;
        padding:15px 20px;
        border-bottom:1px solid #f3f3f3;
    }
}

/* =======================================================
   MOBILE
======================================================= */

@media(max-width:576px){

    .navbar{
        padding:12px 15px;
    }

    .brand img{
        width:32px;
        height:32px;
    }

    .brand span{
        font-size:16px;
    }

    .btn-signin{
        padding:7px 12px;
        font-size:13px;
        margin-right:10px;
    }

    .nav-toggle span{
        width:22px;
        height:2px;
    }

    .nav-links a{
        font-size:14px;
        padding:14px 16px;
    }
}

/* =======================================================
   FOOTER
======================================================= */

.site-footer{
    background:#1F8893;
    color:#fff;
    padding:70px 0 0;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:40px;
    padding-bottom:50px;
}

.footer-brand{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:18px;
}

.footer-brand img{
    width:45px;
    height:45px;
    object-fit:cover;
    border-radius:50%;
}

.footer-brand span{
    font-size:22px;
    font-weight:700;
    color:#fff;
}

.footer-col h5{
    font-size:18px;
    font-weight:600;
    margin-bottom:18px;
    color:#fff;
}

.footer-col p{
    font-size:15px;
    line-height:1.8;
    color:rgba(255,255,255,.85);
}

.footer-col ul{
    margin:0;
    padding:0;
    list-style:none;
}

.footer-col ul li{
    margin-bottom:12px;
}

.footer-col ul li a{
    color:rgba(255,255,255,.85);
    text-decoration:none;
    transition:.3s;
}

.footer-col ul li a:hover{
    color:#fff;
    padding-left:4px;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.15);
    text-align:center;
    padding:20px 15px;
    font-size:14px;
    color:rgba(255,255,255,.85);
}

/* ==========================================
   TABLET
========================================== */

@media(max-width:991px){

    .site-footer{
        padding-top:50px;
    }

    .footer-grid{
        grid-template-columns:1fr 1fr;
        gap:35px;
    }

    .footer-brand span{
        font-size:20px;
    }
}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:576px){

    .site-footer{
        text-align:center;
        padding-top:40px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:30px;
    }

    .footer-brand{
        justify-content:center;
    }

    .footer-col h5{
        margin-bottom:12px;
    }

    .footer-col ul li{
        margin-bottom:10px;
    }
}

/* =======================================================
   HERO
   ======================================================= */
.hero{
  background:var(--teal);
  padding:64px 0 70px;
  overflow:hidden;
}
.hero .container{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:40px;
  align-items:center;
}
.hero-content h1{
  font-family:var(--font-display);
  font-weight:700;
  color:var(--white);
  font-size:46px;
  line-height:1.25;
  margin-bottom:24px;
}
.hero-content p{
  color:rgba(255,255,255,.92);
  font-size:17px;
  line-height:1.75;
  max-width:520px;
  margin-bottom:32px;
}
.hero-pills{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}
.hero-pills span{
  display:inline-block;
  padding:13px 26px;
  border-radius:50px;
  background:var(--pill-bg);
  border:1px solid var(--pill-border);
  color:var(--white);
  font-size:15px;
  font-weight:500;
  backdrop-filter:blur(2px);
}

.hero-art{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:380px;
}
.hero-art img{
  position:absolute;
  border-radius:14px;
  box-shadow:0 25px 40px rgba(0,0,0,.18);
}
.hero-art .img-domestic{
  width:33%;
  left:6%;
  top:8%;
  z-index:1;
}
.hero-art .img-monese{
  width:46%;
  left:50%;
  transform:translateX(-50%);
  top:-4%;
  z-index:2;
  box-shadow:0 30px 50px rgba(0,0,0,.22);
}
.hero-art .img-jar{
  width:30%;
  right:-6%;
  top:8%;
  z-index:1;
}

/* =======================================================
   COLLECTION + DISCOVER (shared card grid styles)
   ======================================================= */
.section{
  padding:80px 0;
}
.section.bg-soft{
  background:var(--teal-soft);
}

.card-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
}
.info-card{
  background:var(--white);
  border:1px solid var(--card-border);
  border-radius:var(--radius-card);
  overflow:hidden;
  box-shadow:var(--shadow-card);
  transition:transform .25s ease, box-shadow .25s ease;
}
.info-card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 30px rgba(20,60,65,.14);
  border-bottom: 4px solid teal;
}
.info-card .card-img{
  width:100%;
  aspect-ratio:4/3.05;
  overflow:hidden;
  background:#cdeef0;
}
.info-card .card-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.info-card .card-body{
  padding:24px 26px 28px;
}
.info-card .card-body h3{
  font-family:var(--font-display);
  font-size:21px;
  font-weight:700;
  color:var(--ink);
  margin-bottom:10px;
}
.info-card .card-body p{
  font-size:14.5px;
  color:var(--body-text-soft);
  line-height:1.65;
}

/* Discover Our Products + Tours cards (teal titles + price row) */
.product-card .card-body h3{
  color:var(--teal-accent);
  font-size:20px;
}
.product-card .price-row{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  margin-top:16px;
  flex-wrap:wrap;
  gap:6px;
}
.product-card .price-row .price{
  font-family:var(--font-display);
  font-weight:700;
  font-size:16px;
  color:var(--teal-price);
}
.product-card .price-row .meta{
  font-size:14px;
  color:#4f8c89;
}

/* =======================================================
   TRUST / FEATURES BAND
   ======================================================= */
.trust{
  background:var(--teal);
  padding:80px 0;
  color:var(--white);
}
.trust-heading h2{
  font-family:var(--font-display);
  font-weight:700;
  font-size:34px;
  margin-bottom:18px;
}
.trust-heading p{
  font-size:16.5px;
  color:rgba(255,255,255,.9);
  max-width:680px;
  line-height:1.75;
  margin-bottom:46px;
}
.trust-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
  /* background:var(--teal); */
}
.trust-card{
  background:var(--white);
  padding:34px 30px 30px;
  border:1px solid rgba(255,255,255,.18);
}
.trust-card .icon{
  width:52px;
  height:52px;
  border-radius:50%;
  background:var(--teal);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:26px;
}
.trust-card .icon svg{
  width:22px;
  height:22px;
  stroke:var(--white);
  fill:none;
}
.trust-card h4{
  font-family:var(--font-display);
  font-weight:600;
  font-size:19px;
  color:var(--ink);
  margin-bottom:10px;
}
.trust-card p{
  font-size:14.5px;
  color:var(--body-text-soft);
  line-height:1.6;
}

/* =======================================================
   FEATURED PRODUCTS (carousel-style row)
   ======================================================= */
.featured-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.featured-grid .info-card .card-body{
  padding:20px 20px 24px;
}
.featured-grid .info-card .card-body h3{
  font-size:18px;
}
.featured-grid .info-card .card-body p{
  font-size:13.5px;
}
.featured-grid .price-row .price{
  font-size:15px;
}

/* =======================================================
   RESPONSIVE
   ======================================================= */
@media (max-width:991px){
  .hero .container{
    grid-template-columns:1fr;
  }
  .hero-art{
    min-height:320px;
    margin-top:20px;
  }
  .card-grid,
  .featured-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .trust-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .section-heading{ font-size:30px; }
}

@media (max-width:680px){
  .hero{ padding:48px 0 56px; text-align:left; }
  .hero-content h1{ font-size:32px; }
  .hero-content p{ font-size:15.5px; }
  .hero-art{
    min-height:260px;
  }
  .hero-art .img-domestic{ left:0; top:18%; width:34%; }
  .hero-art .img-monese{ width:54%; top:0; }
  .hero-art .img-jar{ right:0; top:18%; width:30%; }

  .section{ padding:56px 0; }
  .section-heading{ font-size:26px; }
  .section-sub{ font-size:15.5px; margin-bottom:34px; }

  .card-grid,
  .featured-grid{
    grid-template-columns:1fr;
    gap:24px;
  }
  .trust-grid{
    grid-template-columns:1fr;
  }
  .trust-heading h2{ font-size:27px; }
}

@media (max-width:420px){
  .hero-pills span{ padding:10px 18px; font-size:13.5px; }
  .hero-content h1{ font-size:27px; }
}
.hero-products{
    position: relative;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:30px;
    width:100%;
    max-width:700px;
    margin:0 auto;
    padding:30px 15px;
}

/* Center Product */
.center-card{
    position:relative;
    z-index:3;
}

.center-card img{
    width:340px;
    max-width:100%;
    border-radius:18px;
    display:block;
}

/* Side Images */
.side-card{
    position:relative;
    z-index:1;
}

.side-card img{
    width:120px;
    height:250px;
    object-fit:cover;
    border-radius:12px;
    display:block;
}

/* Push behind center image */
.left-card{
    margin-right:-50px;
}

.right-card{
    margin-left:-50px;
}

/* Tablet */
@media(max-width:768px){

    .hero-products{
        gap:15px;
    }

    .center-card img{
        width:260px;
    }

    .side-card img{
        width:70px;
        height:170px;
    }

    .left-card{
        margin-right:-25px;
    }

    .right-card{
        margin-left:-25px;
    }
}

/* Mobile */
@media(max-width:576px){

    .hero-products{
        gap:10px;
    }

    .center-card img{
        width:220px;
    }

    .side-card img{
        width:60px;
        height:140px;
    }

    .left-card{
        margin-right:-20px;
    }

    .right-card{
        margin-left:-20px;
    }
}



/* home page style start  */
/* =====================================================
   EASE RU — Home page styles
   Fonts: Playfair Display (headings) + Poppins (body)
   ===================================================== */
.hero-banner{
    width:100%;
    height:700px;
    background-image:url('../images/site-image/Frame 1171277925.png');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Poppins:wght@400;500;600;700&display=swap');

:root{
  --teal-50:#f3fdfd;
  --teal-100:#e3f7f7;
  --teal-200:#cdeff0;
  --teal-300:#9fe0e0;
  --teal-light:#19a3a3;
  --teal:#0c8b8b;
  --teal-dark:#0a6e6e;
  --teal-darker:#054747;
  --teal-box:#208893;
  --teal-box-dark:#1c7680;
  --ink:#17202a;
  --gray-700:#3f4a52;
  --gray-500:#62707a;
  --card-border:#dceefb;
  --white:#ffffff;
  --radius-sm:6px;
  --radius-md:14px;
  --radius-lg:22px;
  --shadow-card:0 6px 24px rgba(15,60,70,.08);
  --shadow-soft:0 10px 30px rgba(10,60,70,.10);
  --container:1200px;
  --font-heading:'Playfair Display', Georgia, serif;
  --font-body:'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:#ffffff;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{text-decoration:none;color:inherit;}
ul{margin:0;padding:0;list-style:none;}

.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
}

.section-title{
  font-family:var(--font-heading);
  font-weight:700;
  font-size:clamp(1.6rem,2.4vw,2.2rem);
  text-align:center;
  color:var(--ink);
  margin:0 0 14px;
}
.section-subtitle{
  text-align:center;
  color:var(--gray-700);
  font-size:1.02rem;
  line-height:1.6;
  max-width:560px;
  margin:0 auto 44px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:13px 28px;
  font-family:var(--font-body);
  font-size:.95rem;
  font-weight:500;
  border-radius:var(--radius-sm);
  border:1px solid transparent;
  cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease, background .2s ease;
  white-space:nowrap;
}
.btn:hover{transform:translateY(-2px);}
.btn-dark{background:var(--teal-darker);color:#fff;}
.btn-dark:hover{background:#043a3a;}
.btn-light{background:#fff;color:var(--ink);}
.btn-light:hover{box-shadow:var(--shadow-soft);}
.btn-teal{background:var(--teal-box);color:#fff;}
.btn-teal:hover{background:var(--teal-box-dark);}

/* =====================================================
   HERO
   ===================================================== */
.hero{
  position:relative;
  background:radial-gradient(120% 160% at 0% 0%, #0fa3a0 0%, #0a8a8a 35%, #04504f 100%);
  overflow:hidden;
  padding:64px 0 0;
}
.hero::before,
.hero::after{
  content:"";
  position:absolute;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.18);
}
.hero::before{width:340px;height:340px;left:-160px;top:60%;}
.hero::after{width:170px;height:170px;left:-30px;top:-40px;background:rgba(255,255,255,.05);border:none;}

.hero-inner{
  display:flex;
  align-items:center;
  gap:24px;
  flex-wrap:wrap;
  position:relative;
  z-index:2;
}
.hero-text{
  flex:1 1 420px;
  min-width:300px;
  padding-bottom:70px;
}
.hero-text h1{
  font-family:var(--font-heading);
  font-weight:700;
  font-size:clamp(1.9rem,3.6vw,2.6rem);
  color:#fff;
  line-height:1.25;
  margin:0 0 18px;
}
.hero-text p{
  color:rgba(255,255,255,.92);
  font-size:1.05rem;
  line-height:1.7;
  max-width:480px;
  margin:0 0 30px;
}
.hero-buttons{display:flex;gap:14px;flex-wrap:wrap;}

.hero-image{
  flex:1 1 460px;
  min-width:300px;
  display:flex;
  justify-content:center;
  align-items:flex-end;
}
.hero-image img{
  width:100%;
  max-width:620px;
  height:auto;
}

@media (max-width:768px){
  .hero{padding-top:40px;text-align:left;}
  .hero-inner{flex-direction:column;}
  .hero-text{padding-bottom:24px;}
  .hero-buttons .btn{flex:1;}
}

/* =====================================================
   MOST CHOSEN ESSENTIALS
   ===================================================== */
.essentials{
  background:var(--teal-50);
  padding:80px 0 70px;
}
.essentials-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.essential-card{
  background:#fff;
  border:1px solid var(--card-border);
  border-radius:var(--radius-sm);
  overflow:hidden;
  box-shadow:var(--shadow-card);
}
.essential-card .essential-img{
  width:100%;
  aspect-ratio:480/335;
  object-fit:cover;
  display:block;
}
.essential-body{padding:22px 24px 28px;}
.essential-body h3{
  font-size:1.18rem;
  font-weight:700;
  margin:0 0 10px;
  color:var(--ink);
}
.essential-body p{
  margin:0;
  color:var(--gray-700);
  font-size:.95rem;
  line-height:1.65;
}

@media (max-width:900px){
  .essentials-grid{grid-template-columns:1fr;}
}

/* =====================================================
   WHY CUSTOMERS CHOOSE US
   ===================================================== */
.why-us{
  background:#fff;
  padding:10px 0 80px;
}
.why-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.why-card{
  background:var(--teal-box);
  border-radius:var(--radius-sm);
  padding:38px 24px 32px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:18px;
}
.why-icon{
  width:78px;
  height:78px;
  border-radius:50%;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
}
.why-icon svg{width:36px;height:36px;color:var(--teal-box);}
.why-card p{
  margin:0;
  color:#fff;
  font-family:var(--font-heading);
  font-size:1.05rem;
  font-weight:600;
}

@media (max-width:900px){
  .why-grid{grid-template-columns:repeat(2,1fr);}
}
@media (max-width:560px){
  .why-grid{grid-template-columns:1fr;}
}


.flip-card{
    perspective:1000px;
    height:270px; /* Figma size */
    padding:0;
    background:none;
}

.flip-card-inner{
    position:relative;
    width:100%;
    height:100%;
    transition:transform .8s;
    transform-style:preserve-3d;
}

.flip-card:hover .flip-card-inner{
    transform:rotateY(180deg);
}

.flip-card-front,
.flip-card-back{
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    border-radius:var(--radius-sm);
    backface-visibility:hidden;
    -webkit-backface-visibility:hidden;
}

/* FRONT */
.flip-card-front{
    background:var(--teal-box);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
}

.flip-card-front .why-icon{
    width:80px;
    height:80px;
    background:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.flip-card-front p{
    color:#fff;
    font-size:22px;
    margin:0;
}

/* BACK */
.flip-card-back{
    background:var(--teal-box);
    transform:rotateY(180deg);
    padding:18px;
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.back-icon{
    width:52px;
    height:52px;
    background:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.back-icon img{
    width:52px;
    height:52px;
}

.flip-card-back h3{
    font-size:24px;
    margin:0 0 12px;
    font-weight:500;
}

.flip-card-back p{
    font-size:16px;
    line-height:1.6;
    margin:0;
}
/* =====================================================
   FEATURED COLLECTIONS
   ===================================================== */
.featured{
  background:var(--teal-50);
  padding:80px 0;
}
.featured-grid{
  display:grid;
  /* grid-template-columns:1.25fr 1fr 1fr; */
   grid-template-columns:1.5678fr 1fr 1fr;;
  grid-template-rows:repeat(2,1fr);
  gap:22px;
}
.featured-poster{
  grid-row:1 / 3;
  border-radius:var(--radius-sm);
  overflow:hidden;
  box-shadow:var(--shadow-card);
}
.featured-poster img{height:100%;object-fit:cover;}
.featured-item{
  border-radius:var(--radius-sm);
  overflow:hidden;
  box-shadow:var(--shadow-card);
}
.featured-item img{
  width:100%;
  height:100%;
  aspect-ratio:1/1;
  object-fit:cover;
}

@media (max-width:900px){
  .featured-grid{grid-template-columns:1fr 1fr;grid-template-rows:auto;}
  .featured-poster{grid-row:auto;grid-column:1 / 3;}
}
@media (max-width:560px){
  .featured-grid{grid-template-columns:1fr;}
  .featured-poster{grid-column:auto;}
}

/* =====================================================
   PREMIUM BANNER (teal gradient card)
   ===================================================== */
.premium-banner{
  background:#fff;
  padding:0 0 80px;
}
.premium-banner-inner{
  display:flex;
  align-items:stretch;
  border-radius:var(--radius-md);
  overflow:hidden;
  background:linear-gradient(120deg,#bdeceb 0%, #57c9c4 100%);
  box-shadow:var(--shadow-soft);
}
.premium-text{
  flex:1 1 380px;
  padding:60px 50px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:18px;
}
.premium-text h2{
  font-family:var(--font-heading);
  font-weight:700;
  font-size:clamp(1.5rem,2.4vw,2rem);
  color:var(--teal-darker);
  margin:0;
}
.premium-text p{
  color:var(--gray-700);
  font-size:1rem;
  line-height:1.7;
  margin:0;
  max-width:420px;
}
.premium-text .btn{align-self:flex-start;}
.premium-image{
  flex:1 1 380px;
  min-height:280px;
}
.premium-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

@media (max-width:768px){
  .premium-banner-inner{flex-direction:column;}
  .premium-text{padding:40px 28px;}
  .premium-image{min-height:220px;}
}

/* =====================================================
   PRODUCTS SECTION (2nd "Premium wellness" block)
   ===================================================== */
.products-section{
  background:var(--teal-50);
  padding:80px 0 90px;
}
.products-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:24px;
  margin-bottom:46px;
  flex-wrap:wrap;
}
.products-header h2{
  font-family:var(--font-heading);
  font-weight:700;
  font-size:clamp(1.5rem,2.4vw,2rem);
  color:var(--teal-dark);
  margin:0 0 12px;
}
.products-header p{
  color:var(--gray-700);
  font-size:1rem;
  line-height:1.7;
  margin:0;
  max-width:640px;
}
.products-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.product-card{
  background:#fff;
  border:1px solid var(--card-border);
  border-radius:var(--radius-sm);
  overflow:hidden;
  box-shadow:var(--shadow-card);
}
.product-card img{
  width:100%;
  aspect-ratio:480/335;
  object-fit:cover;
}
.product-body{padding:20px 22px 26px;}
.product-card h3{
  font-family:var(--font-heading);
  color:var(--teal-dark);
  font-size:1.12rem;
  font-weight:700;
  margin:0 0 10px;
}
.product-card p{
  color:var(--gray-500);
  font-size:.92rem;
  line-height:1.6;
  margin:0 0 18px;
}
.product-meta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:8px;
  border-top:1px solid var(--card-border);
  padding-top:16px;
  font-size:.92rem;
}
.product-meta strong{
  color:var(--teal-dark);
  font-weight:700;
}
.product-meta span:last-child{color:var(--gray-500);}

@media (max-width:900px){
  .products-grid{grid-template-columns:1fr;}
  .products-header{align-items:flex-start;}
}

/* =====================================================
   Utility / accessibility
   ===================================================== */
.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}
:focus-visible{outline:3px solid var(--teal-light);outline-offset:2px;}

@media (prefers-reduced-motion:reduce){
  *{transition:none !important;}
}
/* homepage style end */

/* 
about page style start */
/* =========================================================
   EASE RU — About Page Styles
   File: public/siteassets/style.css
   ========================================================= */
/* ===============================
   EASERU HERO SECTION
================================= */

.easeru-hero-wrap{
    width:100%;
    background:#238b94;
    padding:40px 0;
    overflow:hidden;
}

.easeru-hero-container{
    width:90%;
    max-width:1400px;
    margin:0 auto;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.easeru-hero-content{
    flex:0 0 48%;
    max-width:520px;
}

.easeru-hero-title{
    margin:0 0 25px;
    font-family:Georgia, serif;
    font-size:18px !important;
    font-weight:700;
    line-height:1.4;
    color:#ffffff !important;
}

.easeru-hero-desc{
    margin:0;
    font-size:14px !important;
    line-height:1.5;
    font-weight:400;
    color:#ffffff !important;
}

.easeru-hero-content,
.easeru-hero-content h1,
.easeru-hero-content h2,
.easeru-hero-content h3,
.easeru-hero-content h4,
.easeru-hero-content h5,
.easeru-hero-content h6,
.easeru-hero-content p{
    color:#ffffff !important;
}

.easeru-hero-image-box{
    flex:0 0 48%;
    text-align:right;
}

.easeru-hero-image{
    display:block;
    width:100%;
    max-width:420px;
    height:auto;
    margin-left:auto;
}

/* ===============================
   LARGE LAPTOP
================================= */

@media (max-width:1400px){

    .easeru-hero-image{
        max-width:380px;
    }
}

/* ===============================
   LAPTOP
================================= */

@media (max-width:1200px){

    .easeru-hero-title{
        font-size:16px !important;
    }

    .easeru-hero-desc{
        font-size:13px !important;
    }

    .easeru-hero-image{
        max-width:350px;
    }
}

/* ===============================
   TABLET
================================= */

@media (max-width:991px){

    .easeru-hero-wrap{
        padding:35px 0;
    }

    .easeru-hero-container{
        flex-direction:column-reverse;
        text-align:center;
        gap:30px;
    }

    .easeru-hero-content{
        max-width:100%;
        flex:100%;
    }

    .easeru-hero-image-box{
        flex:100%;
        text-align:center;
    }

    .easeru-hero-image{
        margin:0 auto;
        max-width:320px;
    }

    .easeru-hero-title{
        font-size:20px !important;
    }

    .easeru-hero-desc{
        font-size:14px !important;
        max-width:600px;
        margin:auto;
    }
}

/* ===============================
   MOBILE
================================= */

@media (max-width:767px){

    .easeru-hero-wrap{
        padding:30px 0;
    }

    .easeru-hero-container{
        width:92%;
        gap:25px;
    }

    .easeru-hero-image{
        max-width:260px;
    }

    .easeru-hero-title{
        font-size:18px !important;
        margin-bottom:15px;
    }

    .easeru-hero-desc{
        font-size:13px !important;
        line-height:1.6;
    }
}

/* ===============================
   SMALL MOBILE
================================= */

@media (max-width:480px){

    .easeru-hero-image{
        max-width:220px;
    }

    .easeru-hero-title{
        font-size:16px !important;
    }

    .easeru-hero-desc{
        font-size:12px !important;
    }
}:root {
  --teal-deep: #1e8993;       /* primary brand teal (hero / footer / vision bg) */
  --teal-darker: #055259;     /* dark icon circles inside teal sections */
  --teal-light: #56aeb0;      /* "About us" active nav link */
  --bg-soft: #fbfffe;         /* very light section background */
  --bg-soft-2: #f9fdfe;       /* alt light background */
  --text-dark: #1a1a1a;       /* headings on light bg */
  --text-body: #4a4a4a;       /* paragraph text on light bg */
  --text-white: #ffffff;
  --text-white-soft: rgba(255, 255, 255, 0.88);
  --border-light: #e7edee;
  --card-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  --radius-md: 10px;
  --radius-lg: 18px;
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Mukta", "Segoe UI", Arial, Helvetica, sans-serif;
}

/* =========================================================
   Base / Resets scoped to about page
   ========================================================= */
.about-page {
  font-family: var(--font-sans);
  color: var(--text-body);
  background: var(--bg-soft);
  overflow-x: hidden;
}

.about-page * {
  box-sizing: border-box;
}

.about-page img {
  max-width: 100%;
  display: block;
}

.about-page .container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.about-page h1,
.about-page h2,
.about-page h3 {
  font-family: var(--font-serif);
  color: var(--text-dark);
  font-weight: 700;
  margin: 0;
  line-height: 1.25;
}

.about-page p {
  margin: 0;
  line-height: 1.65;
  color: var(--text-body);
  font-size: 16px;
}

.mobile-only {
  display: none;
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero-section {
  background: var(--teal-deep);
  padding: 64px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.hero-text h1 {
  color: var(--text-white);
  font-size: 38px;
  margin-bottom: 22px;
}

.hero-text p {
  color: var(--text-white-soft);
  font-size: 17px;
  max-width: 460px;
}

.hero-image {
  display: flex;
  justify-content: flex-end;
}

.hero-image img {
  max-width: 420px;
  width: 100%;
}

/* =========================================================
   BRAND TRUST SECTION
   ========================================================= */
.trust-section {
  background: var(--bg-soft-2);
  padding: 80px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  /* gap: 56px; */
}

.trust-text h2 {
  font-size: 28px;
  margin-bottom: 22px;
}

.trust-text p {
  margin-bottom: 18px;
}

.trust-text p:last-child {
  margin-bottom: 0;
}

.trust-image img {
  border-radius: var(--radius-md);
  width: 100%;
}

/* =========================================================
   SECTION HEADINGS (shared)
   ========================================================= */
.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.section-heading h2 {
  font-size: 30px;
  margin-bottom: 16px;
}

.section-heading p {
  font-size: 16px;
}

.section-heading--light h2,
.section-heading--light p {
  color: var(--text-white);
}

.section-heading--light p {
  color: var(--text-white-soft);
}

/* =========================================================
   INFO CARD (shared: principles + why choose)
   ========================================================= */
.info-card {
  background: var(--text-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--card-shadow);
  height: 100%;
}

.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--teal-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-circle img {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1);
}

.icon-circle--dark {
  background: var(--teal-darker);
}

.info-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.info-card p {
  font-size: 14.5px;
}

/* =========================================================
   PRINCIPLES SECTION
   ========================================================= */
.principles-section {
  background: var(--bg-soft);
  padding: 88px 0;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* =========================================================
   VISION & MISSION SECTION
   ========================================================= */
.vision-mission-section {
  background: var(--teal-deep);
  padding: 80px 0 96px;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 0;
}

.vm-card {
  background: var(--text-white);
  padding: 40px 36px;
  height: 100%;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vm-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.vm-card p {
  font-size: 15px;
}

.vm-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 16px;
}

.vm-line {
  flex: 1;
  height: 2px;
  background: var(--text-white);
  opacity: 0.85;
  min-width: 16px;
}

.vm-image {
  position: relative;
  background: var(--text-white);
  border-radius: var(--radius-lg);
  padding: 14px;
  flex-shrink: 0;
  width: 280px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.vm-image img {
  border-radius: 12px;
  width: 100%;
}

.vm-badge {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text-white);
  border: 1px solid var(--border-light);
  border-radius: 999px;
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
  box-shadow: var(--card-shadow);
}

/* =========================================================
   WHY CHOOSE EASE RU SECTION
   ========================================================= */
.why-choose-section {
  background: var(--bg-soft);
  padding: 88px 0 96px;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }

  .hero-text p {
    margin: 0 auto;
  }

  .hero-image {
    justify-content: center;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .trust-image {
    order: -1;
  }

  .principles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vm-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .vm-connector {
    flex-direction: column;
    padding: 12px 0;
  }

  .vm-line {
    width: 2px;
    height: 28px;
    flex: none;
  }

  .vm-card {
    text-align: center;
    align-items: center;
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .about-page .container {
    padding: 0 18px;
  }

  .hero-section {
    padding: 48px 0;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .mobile-only {
    display: block;
  }

  .trust-section,
  .principles-section,
  .why-choose-section {
    padding: 56px 0;
  }

  .vision-mission-section {
    padding: 56px 0 72px;
  }

  .section-heading h2 {
    font-size: 24px;
  }

  .principles-grid,
  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .vm-image {
    width: 100%;
    max-width: 280px;
  }

  .vm-card {
    padding: 32px 24px;
  }
}
/* about page style end */


/* licenses page style  start */

/* =======================================================
   EASE RU — Licenses & Certification page styles
   File: public/sitassets/style.css
   Fonts used:
     - Headings (serif):  'Playfair Display' (falls back to Georgia)
     - Body (sans):       'Poppins' (falls back to system sans)
   ======================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Poppins:wght@400;500;600;700&display=swap');

:root {
    --lic-teal: #208893;
    --lic-teal-dark: #005962;
    --lic-teal-darker: #00474e;
    --lic-text-dark: #1f2d2f;
    --lic-text-muted: #5b6b6d;
    --lic-text-light: #eaf6f6;
    --lic-border: #e3e9ea;
    --lic-white: #ffffff;
    --lic-bg-soft: #f7fafa;
    --lic-promo-from: #bbf9f8;
    --lic-promo-to: #6ad3d2;

    --lic-font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --lic-font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --lic-radius: 10px;
    --lic-radius-sm: 6px;
    --lic-shadow: 0 4px 18px rgba(0, 40, 45, 0.08);
    --lic-shadow-hover: 0 10px 28px rgba(0, 40, 45, 0.14);
}

/* ---------- base / reset (scoped, won't fight your header/footer) ---------- */
.lic-hero,
.lic-certs-section,
.lic-why-section,
.lic-promo-section {
    font-family: var(--lic-font-body);
    box-sizing: border-box;
}

.lic-hero *,
.lic-certs-section *,
.lic-why-section *,
.lic-promo-section * {
    box-sizing: border-box;
}

.lic-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- HERO ---------- */
.lic-hero {
    background: var(--lic-teal);
    padding: 64px 0 72px;
    text-align: center;
}

.lic-hero-title {
    font-family: var(--lic-font-heading);
    font-weight: 700;
    font-size: 38px;
    color: var(--lic-white);
    margin: 0 0 22px;
    letter-spacing: 0.3px;
}

.lic-hero-sub {
    font-family: var(--lic-font-body);
    font-size: 18px;
    line-height: 1.6;
    color: var(--lic-text-light);
    max-width: 680px;
    margin: 0 auto;
}

/* ---------- SECTION TITLES (shared) ---------- */
.lic-section-title {
    font-family: var(--lic-font-heading);
    font-weight: 700;
    font-size: 30px;
    color: var(--lic-text-dark);
    text-align: center;
    margin: 0 0 16px;
}

.lic-section-sub {
    font-family: var(--lic-font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--lic-text-muted);
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px;
}

/* ---------- CERTIFICATES SECTION ---------- */
.lic-certs-section {
    background: var(--lic-white);
    padding: 70px 0 60px;
}

.lic-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.lic-card {
    border: 1px solid var(--lic-border);
    border-radius: var(--lic-radius);
    overflow: hidden;
    background: var(--lic-white);
    box-shadow: var(--lic-shadow);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    display: flex;
    flex-direction: column;
}

.lic-card:hover {
    box-shadow: var(--lic-shadow-hover);
    transform: translateY(-3px);
}

.lic-card-image {
    width: 100%;
    aspect-ratio: 4 / 3.1;
    background: var(--lic-bg-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid var(--lic-border);
}

.lic-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.lic-card-body {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.lic-card-title {
    font-family: var(--lic-font-body);
    font-weight: 600;
    font-size: 20px;
    color: var(--lic-text-dark);
    margin: 0 0 6px;
}

.lic-card-authority {
    font-size: 14.5px;
    color: var(--lic-text-muted);
    margin: 0 0 16px;
}

.lic-card-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px dashed var(--lic-border);
}

.lic-card-row:last-of-type {
    border-bottom: none;
    margin-bottom: 18px;
}

.lic-card-label {
    font-size: 14px;
    color: var(--lic-text-muted);
}

.lic-card-value {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--lic-text-dark);
    text-align: right;
}

/* ---------- buttons (shared) ---------- */
.lic-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--lic-radius-sm);
    font-size: 14.5px;
    font-weight: 600;
    font-family: var(--lic-font-body);
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.lic-btn-icon {
    font-size: 14px;
    line-height: 1;
}

.lic-btn-primary {
    background: var(--lic-teal-dark);
    color: var(--lic-white);
    margin-bottom: 10px;
}

.lic-btn-primary:hover {
    background: var(--lic-teal-darker);
}

.lic-btn-outline {
    background: var(--lic-white);
    color: var(--lic-text-dark);
    border-color: var(--lic-border);
}

.lic-btn-outline:hover {
    border-color: var(--lic-teal-dark);
    color: var(--lic-teal-dark);
}

.lic-btn-light {
    background: var(--lic-white);
    color: var(--lic-text-dark);
    width: auto;
    padding: 14px 28px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.lic-btn-light:hover {
    background: var(--lic-bg-soft);
}

/* ---------- WHY CHOOSE SECTION ---------- */
.lic-why-section {
    background: var(--lic-white);
    padding: 70px 0 80px;
}

.lic-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lic-feature-card {
    background: var(--lic-teal);
    border-radius: var(--lic-radius);
    padding: 30px 26px 32px;
    color: var(--lic-white);
}

.lic-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--lic-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 22px;
}

.lic-feature-title {
    font-family: var(--lic-font-heading);
    font-weight: 700;
    font-size: 20px;
    margin: 0 0 12px;
}

.lic-feature-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--lic-text-light);
    margin: 0;
}

/* ---------- PROMO SECTION ---------- */
.lic-promo-section {
    background: linear-gradient(100deg, var(--lic-promo-from) 0%, var(--lic-promo-to) 100%);
    padding: 0;
}

.lic-promo-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 360px;
}

.lic-promo-text {
    padding: 50px 60px;
}

.lic-promo-title {
    font-family: var(--lic-font-heading);
    font-weight: 700;
    font-size: 30px;
    color: var(--lic-teal-dark);
    margin: 0 0 20px;
}

.lic-promo-sub {
    font-size: 16px;
    line-height: 1.6;
    color: var(--lic-text-dark);
    margin: 0 0 26px;
    max-width: 440px;
}

.lic-promo-image {
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.lic-promo-image img {
    width: 100%;
    max-width: 480px;
    height: auto;
    object-fit: contain;
    display: block;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {
    .lic-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lic-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lic-promo-inner {
        grid-template-columns: 1fr;
    }

    .lic-promo-image {
        order: -1;
        align-items: center;
        padding-top: 30px;
    }

    .lic-promo-text {
        padding: 40px 40px 50px;
        text-align: center;
    }

    .lic-promo-sub {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 640px) {
    .lic-hero {
        padding: 48px 0 56px;
    }

    .lic-hero-title {
        font-size: 28px;
    }

    .lic-hero-sub {
        font-size: 16px;
    }

    .lic-section-title {
        font-size: 24px;
    }

    .lic-certs-section,
    .lic-why-section {
        padding: 48px 0;
    }

    .lic-cards-grid,
    .lic-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .lic-promo-text {
        padding: 36px 24px 44px;
    }

    .lic-promo-title {
        font-size: 24px;
    }

    .lic-container {
        padding: 0 18px;
    }
}

/* /* licenses page style  end */


/* contact page style start */
.cu-location-title{
    text-align:center;
    font-size:20px;
    font-weight:700;
    color:#1f8b97;
    margin-bottom:20px;
    font-family:Georgia, serif;
}

.cu-map-wrap{
    max-width:100%;
    margin:0 auto;
}

.cu-map-image{
    width:100%;
    display:block;
    border-radius:15px;
}

/* Tablet */
@media (max-width:768px){
    .cu-map-wrap{
        max-width:380px;
    }
}

/* Mobile */
@media (max-width:480px){
    .cu-map-wrap{
        width:90%;
        max-width:320px;
    }

    .cu-location-title{
        font-size:18px;
        margin-bottom:15px;
    }
}

/* =======================================================
   EASE RU — Licenses & Certification page styles
   File: public/sitassets/style.css
   Fonts used:
     - Headings (serif):  'Playfair Display' (falls back to Georgia)
     - Body (sans):       'Poppins' (falls back to system sans)
   ======================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Poppins:wght@400;500;600;700&display=swap');

:root {
    --lic-teal: #208893;
    --lic-teal-dark: #005962;
    --lic-teal-darker: #00474e;
    --lic-text-dark: #1f2d2f;
    --lic-text-muted: #5b6b6d;
    --lic-text-light: #eaf6f6;
    --lic-border: #e3e9ea;
    --lic-white: #ffffff;
    --lic-bg-soft: #f7fafa;
    --lic-promo-from: #bbf9f8;
    --lic-promo-to: #6ad3d2;

    --lic-font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --lic-font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --lic-radius: 10px;
    --lic-radius-sm: 6px;
    --lic-shadow: 0 4px 18px rgba(0, 40, 45, 0.08);
    --lic-shadow-hover: 0 10px 28px rgba(0, 40, 45, 0.14);
}

/* ---------- base / reset (scoped, won't fight your header/footer) ---------- */
.lic-hero,
.lic-certs-section,
.lic-why-section,
.lic-promo-section {
    font-family: var(--lic-font-body);
    box-sizing: border-box;
}

.lic-hero *,
.lic-certs-section *,
.lic-why-section *,
.lic-promo-section * {
    box-sizing: border-box;
}

.lic-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- HERO ---------- */
.lic-hero {
    background: var(--lic-teal);
    padding: 64px 0 72px;
    text-align: center;
}

.lic-hero-title {
    font-family: var(--lic-font-heading);
    font-weight: 700;
    font-size: 38px;
    color: var(--lic-white);
    margin: 0 0 22px;
    letter-spacing: 0.3px;
}

.lic-hero-sub {
    font-family: var(--lic-font-body);
    font-size: 18px;
    line-height: 1.6;
    color: var(--lic-text-light);
    max-width: 680px;
    margin: 0 auto;
}

/* ---------- SECTION TITLES (shared) ---------- */
.lic-section-title {
    font-family: var(--lic-font-heading);
    font-weight: 700;
    font-size: 30px;
    color: var(--lic-text-dark);
    text-align: center;
    margin: 0 0 16px;
}

.lic-section-sub {
    font-family: var(--lic-font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--lic-text-muted);
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px;
}

/* ---------- CERTIFICATES SECTION ---------- */
.lic-certs-section {
    background: var(--lic-white);
    padding: 70px 0 60px;
}

.lic-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.lic-card {
    border: 1px solid var(--lic-border);
    border-radius: var(--lic-radius);
    overflow: hidden;
    background: var(--lic-white);
    box-shadow: var(--lic-shadow);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    display: flex;
    flex-direction: column;
}

.lic-card:hover {
    box-shadow: var(--lic-shadow-hover);
    transform: translateY(-3px);
}

.lic-card-image {
    width: 100%;
    aspect-ratio: 4 / 3.1;
    background: var(--lic-bg-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid var(--lic-border);
}

.lic-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.lic-card-body {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.lic-card-title {
    font-family: var(--lic-font-body);
    font-weight: 600;
    font-size: 20px;
    color: var(--lic-text-dark);
    margin: 0 0 6px;
}

.lic-card-authority {
    font-size: 14.5px;
    color: var(--lic-text-muted);
    margin: 0 0 16px;
}

.lic-card-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px dashed var(--lic-border);
}

.lic-card-row:last-of-type {
    border-bottom: none;
    margin-bottom: 18px;
}

.lic-card-label {
    font-size: 14px;
    color: var(--lic-text-muted);
}

.lic-card-value {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--lic-text-dark);
    text-align: right;
}

/* ---------- buttons (shared) ---------- */
.lic-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--lic-radius-sm);
    font-size: 14.5px;
    font-weight: 600;
    font-family: var(--lic-font-body);
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.lic-btn-icon {
    font-size: 14px;
    line-height: 1;
}

.lic-btn-primary {
    background: var(--lic-teal-dark);
    color: var(--lic-white);
    margin-bottom: 10px;
}

.lic-btn-primary:hover {
    background: var(--lic-teal-darker);
}

.lic-btn-outline {
    background: var(--lic-white);
    color: var(--lic-text-dark);
    border-color: var(--lic-border);
}

.lic-btn-outline:hover {
    border-color: var(--lic-teal-dark);
    color: var(--lic-teal-dark);
}

.lic-btn-light {
    background: var(--lic-white);
    color: var(--lic-text-dark);
    width: auto;
    padding: 14px 28px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.lic-btn-light:hover {
    background: var(--lic-bg-soft);
}

/* ---------- WHY CHOOSE SECTION ---------- */
.lic-why-section {
    background: var(--lic-white);
    padding: 70px 0 80px;
}

.lic-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lic-feature-card {
    background: var(--lic-teal);
    border-radius: var(--lic-radius);
    padding: 30px 26px 32px;
    color: var(--lic-white);
}

.lic-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--lic-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 22px;
}

.lic-feature-title {
    font-family: var(--lic-font-heading);
    font-weight: 700;
    font-size: 20px;
    margin: 0 0 12px;
}

.lic-feature-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--lic-text-light);
    margin: 0;
}

/* ---------- PROMO SECTION ---------- */
.lic-promo-section {
    background: linear-gradient(100deg, var(--lic-promo-from) 0%, var(--lic-promo-to) 100%);
    padding: 0;
}

.lic-promo-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 360px;
}

.lic-promo-text {
    padding: 50px 60px;
}

.lic-promo-title {
    font-family: var(--lic-font-heading);
    font-weight: 700;
    font-size: 30px;
    color: var(--lic-teal-dark);
    margin: 0 0 20px;
}

.lic-promo-sub {
    font-size: 16px;
    line-height: 1.6;
    color: var(--lic-text-dark);
    margin: 0 0 26px;
    max-width: 440px;
}

.lic-promo-image {
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.lic-promo-image img {
    width: 100%;
    max-width: 480px;
    height: auto;
    object-fit: contain;
    display: block;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {
    .lic-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lic-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lic-promo-inner {
        grid-template-columns: 1fr;
    }

    .lic-promo-image {
        order: -1;
        align-items: center;
        padding-top: 30px;
    }

    .lic-promo-text {
        padding: 40px 40px 50px;
        text-align: center;
    }

    .lic-promo-sub {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 640px) {
    .lic-hero {
        padding: 48px 0 56px;
    }

    .lic-hero-title {
        font-size: 28px;
    }

    .lic-hero-sub {
        font-size: 16px;
    }

    .lic-section-title {
        font-size: 24px;
    }

    .lic-certs-section,
    .lic-why-section {
        padding: 48px 0;
    }

    .lic-cards-grid,
    .lic-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .lic-promo-text {
        padding: 36px 24px 44px;
    }

    .lic-promo-title {
        font-size: 24px;
    }

    .lic-container {
        padding: 0 18px;
    }
}

/* =========================================================
   CONTACT US PAGE
   ========================================================= */

/* ---------- HERO ---------- */
.cu-hero {
    background: var(--lic-teal);
    padding: 64px 0 56px;
    text-align: center;
}

.cu-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cu-hero-title {
    font-family: var(--lic-font-heading);
    font-weight: 700;
    font-size: 38px;
    color: var(--lic-white);
    margin: 0 0 22px;
}

.cu-hero-sub {
    font-family: var(--lic-font-body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--lic-text-light);
    max-width: 680px;
    margin: 0 auto 34px;
}

.cu-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.cu-badge {
    font-family: var(--lic-font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--lic-white);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 30px;
    padding: 12px 26px;
    white-space: nowrap;
}

/* ---------- INFO SECTION ---------- */
.cu-info-section {
    background: var(--lic-bg-soft);
    padding: 56px 0 70px;
}

.cu-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}

.cu-info-card {
    background: var(--lic-white);
    border: 1px solid var(--lic-border);
    border-radius: var(--lic-radius);
    box-shadow: var(--lic-shadow);
    padding: 34px 28px;
    text-align: center;
}

.cu-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--lic-teal-dark);
    color: var(--lic-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 20px;
}

.cu-info-title {
    font-family: var(--lic-font-body);
    font-weight: 600;
    font-size: 19px;
    color: var(--lic-text-dark);
    margin: 0 0 8px;
}

.cu-info-text {
    font-size: 14.5px;
    line-height: 1.5;
    color: var(--lic-text-muted);
    margin: 0;
}

/* ---------- LET'S TALK CARD ---------- */
.cu-talk-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--lic-shadow-hover);
    margin-bottom: 70px;
}

.cu-talk-left {
    background: var(--lic-teal);
    color: var(--lic-white);
    padding: 48px 44px;
}

.cu-talk-left-title {
    font-family: var(--lic-font-heading);
    font-weight: 700;
    font-size: 28px;
    margin: 0 0 22px;
}

.cu-talk-left-text {
    font-size: 15px;
    line-height: 1.65;
    color: var(--lic-text-light);
    margin: 0 0 18px;
}

.cu-talk-list {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
}

.cu-talk-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 14px;
    font-size: 15px;
    color: var(--lic-white);
}

.cu-talk-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lic-white);
}

.cu-talk-right {
    background: var(--lic-white);
    padding: 48px 44px;
}

.cu-talk-right-title {
    font-family: var(--lic-font-heading);
    font-weight: 700;
    font-size: 26px;
    color: var(--lic-text-dark);
    text-align: center;
    margin: 0 0 10px;
}

.cu-talk-right-sub {
    font-size: 15px;
    color: var(--lic-text-muted);
    text-align: center;
    margin: 0 0 32px;
}

.cu-form-group {
    margin-bottom: 22px;
}

.cu-form-group label {
    display: block;
    font-size: 15px;
    color: var(--lic-text-muted);
    margin-bottom: 10px;
}

.cu-required {
    color: #e0524d;
    margin-left: 2px;
}

.cu-form-group input,
.cu-form-group textarea {
    width: 100%;
    border: 1px solid var(--lic-border);
    border-radius: var(--lic-radius-sm);
    padding: 13px 16px;
    font-family: var(--lic-font-body);
    font-size: 15px;
    color: var(--lic-text-dark);
    resize: vertical;
    transition: border-color 0.2s ease;
}

.cu-form-group input:focus,
.cu-form-group textarea:focus {
    outline: none;
    border-color: var(--lic-teal);
}

.cu-submit-btn {
    width: auto;
    padding: 14px 34px;
    margin-top: 6px;
}

/* ---------- LOCATION ---------- */
.cu-location-title {
    font-family: var(--lic-font-heading);
    font-weight: 700;
    font-size: 28px;
    color: var(--lic-teal);
    text-align: center;
    margin: 0 0 32px;
}

.cu-map-wrap {
    background: var(--lic-bg-soft);
    border: 1px solid var(--lic-border);
    border-radius: var(--lic-radius);
    padding: 14px;
    box-shadow: var(--lic-shadow);
}

.cu-map-frame {
    width: 100%;
    height: 420px;
    border: 0;
    border-radius: var(--lic-radius-sm);
    display: block;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991px) {
    .cu-info-grid {
        grid-template-columns: 1fr;
    }

    .cu-talk-card {
        grid-template-columns: 1fr;
    }

    .cu-talk-left,
    .cu-talk-right {
        padding: 40px 32px;
    }
}

@media (max-width: 640px) {
    .cu-hero {
        padding: 48px 0 44px;
    }

    .cu-hero-title {
        font-size: 28px;
    }

    .cu-hero-sub {
        font-size: 15.5px;
    }

    .cu-badges {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .cu-badge {
        text-align: center;
    }

    .cu-info-section {
        padding: 40px 0 50px;
    }

    .cu-talk-left,
    .cu-talk-right {
        padding: 32px 22px;
    }

    .cu-talk-left-title,
    .cu-talk-right-title {
        font-size: 22px;
    }

    .cu-map-frame {
        height: 280px;
    }
}
/* contact page style end */