/* ===========================
   THEME VARIABLES
   =========================== */
:root {
  --primary: #1da6d8;
  /* sky blue */
  --primary-soft: #e3f7fd;
  --secondary: #b23343;
  /* light maroon */
  --secondary-soft: #fde8eb;
  --dark: #1f2937;
  --text-main: #111827;
  --text-muted: #6b7280;
  --bg-body: #ffffff;
  --bg-light-alt: #f5f7fb;
  --footer-bg: #0b1220;
  --footer-border: #151b2c;
  --footer-text: #e5e7eb;
  --footer-muted: #9ca3af;
  --radius-lg: 1.25rem;
  --radius-xl: 1.75rem;
  --shadow-soft: 0 20px 40px rgba(15, 23, 42, 0.12);
}

/* ===========================
   GLOBAL RESET
   =========================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background-color: var(--bg-body);
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--dark);
}

p {
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}

a {
  text-decoration: none;
}












/* ===========================
   SECTION BASICS
   =========================== */
.section-padding {
  padding-block: 80px;
  background-color: #f0f0f0;
}

@media (max-width: 575.98px) {
  .section-padding {
    padding-block: 60px;
  }
}

.bg-light-alt {
  background-color: var(--bg-light-alt);
}


.section-title .subtitle {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
}

.section-title h2 {
  margin-top: 0.75rem;
  font-weight: 700;
}





/* Theme Color */
:root {
  --theme-color: #4f4f4f;
}












:root {
  --padma-bg: #F4F1EC;
  --padma-bg2: #EFEAE3;
  --padma-accent: #B87333;
  --padma-dark: #2B2B2B;
  --padma-text: #5A5A5A;
}

.py-lg-6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.padma-contact {
  background: linear-gradient(180deg, var(--padma-bg) 0%, var(--padma-bg2) 100%);
}

.contact-kicker {
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: .8rem;
  color: rgba(184, 115, 51, .95);
}

.contact-title {
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-weight: 600;
  color: var(--padma-dark);
}

.contact-subtitle {
  color: var(--padma-text);
  max-width: 750px;
  margin: 0 auto;
}

.panel-heading {
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-weight: 600;
  color: var(--padma-dark);
  margin-bottom: 20px;
}

.contact-info-panel,
.contact-form-panel {
  background: rgba(255, 255, 255, .65);
  border: 1px solid rgba(184, 115, 51, .2);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
}

.info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--padma-text);
}

.info-item i {
  color: rgba(184, 115, 51, .95);
  margin-top: 4px;
}

.info-item a {
  text-decoration: none;
  color: rgb(59, 59, 59);
}

.info-item a:hover {
  color: var(--padma-dark);
}

.contact-social {
  display: flex;
  gap: 12px;
}

.contact-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(184, 115, 51, .12);
  color: var(--padma-dark);
  transition: .25s;
}

.contact-social a:hover {
  background: var(--padma-accent);
  color: #fff;
}

/* Inputs */
.padma-input {
  border-radius: 10px;
  border: 1px solid rgba(184, 115, 51, .35);
  padding: .75rem .9rem;
  background: #fff;
}

.padma-input:focus {
  border-color: var(--padma-accent);
  box-shadow: 0 0 0 .15rem rgba(184, 115, 51, .15);
}

/* Button */
.btn-padma {
  background: var(--padma-accent);
  border: 1px solid var(--padma-accent);
  color: #fff;
  padding: .8rem;
  border-radius: 10px;
  font-weight: 500;
  transition: .25s;
}

.btn-padma:hover {
  filter: brightness(.95);
}

@media (max-width:576px) {

  .contact-info-panel,
  .contact-form-panel {
    padding: 22px;
  }
}















/* Floating Buttons Container */
.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

/* Common Button Style */
.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* WhatsApp Button */
.whatsapp-btn {
  background-color: #25D366;
}

/* Call Button */
.call-btn {
  background-color: #007bff;
}

/* Hover Effect */
.float-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.35);
}

/* Mobile Responsive Adjustments */
@media (max-width: 480px) {
  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}

.rental-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: .3s ease;
}

.rental-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.rental-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.rental-badge {
  background: #0d6efd15;
  color: #0d6efd;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
}

.rent-btn {
  display: inline-block;
  background: #4f4f4f;
  color: #fff;
  padding: 4px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}





















:root {
  --padma-darkbg: #2F332E;
  /* deep olive grey */
  --padma-accent: #B87333;
  /* copper */
  --padma-white: #ffffff;
}

.py-lg-6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.padma-gallery {
  background: var(--padma-darkbg);
  position: relative;
}

.gallery-kicker {
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: .8rem;
  color: rgba(184, 115, 51, .95);
  margin: 0;
}

.gallery-title {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  color: var(--padma-white);
  font-weight: 600;
  line-height: 1.1;
}

/* Clickable item */
.gallery-item {
  display: block;
  text-decoration: none;
}

/* Card */
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .35);
  background: rgba(0, 0, 0, .15);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .35s ease;
}

.gallery-item:hover .gallery-card img {
  transform: scale(1.08);
}

/* Subtle overlay on hover */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .35), rgba(0, 0, 0, .05));
  opacity: .95;
  transition: opacity .25s ease;
  pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Heights to match screenshot layout */
.gallery-card--tall {
  height: 520px;
}

.gallery-card--short {
  height: 248px;
}

/* Modal styling */
.gallery-modal {
  background: transparent;
  border: 0;
  position: relative;
}

.gallery-modal img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .55);
}

.gallery-close {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 5;
  opacity: .95;
}

/* Responsive */
@media (max-width: 991px) {
  .gallery-card--tall {
    height: 420px;
  }

  .gallery-card--short {
    height: 220px;
  }
}

@media (max-width: 575px) {
  .gallery-card--tall {
    height: 340px;
  }

  .gallery-card--short {
    height: 220px;
  }
}

















:root {
  --padma-bg: #F4F1EC;
  /* warm beige */
  --padma-accent: #B87333;
  /* copper */
  --padma-dark: #2B2B2B;
  --padma-text: #5A5A5A;
}

.py-lg-6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.padma-signature {
  background: #fff;
}

.sig-kicker {
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: .78rem;
  color: rgba(184, 115, 51, .95);
  margin: 0;
}

.sig-title {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  color: var(--padma-dark);
  font-weight: 600;
  line-height: 1.1;
}

.sig-item {
  text-align: center;
}

/* Oval frame like screenshot */
.sig-oval {
  width: 220px;
  height: 300px;
  margin: 0 auto;
  border-radius: 50%;
  border: 1px solid rgba(184, 115, 51, .55);
  padding: 10px;
  background: rgba(244, 241, 236, .55);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .10);
  transition: transform .25s ease, box-shadow .25s ease;
  overflow: hidden;
}

.sig-oval img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  transform: scale(1.02);
  transition: transform .35s ease;
  margin-left: 10px;
}

.sig-item:hover .sig-oval {
  transform: translateY(-4px);
  box-shadow: 0 22px 52px rgba(0, 0, 0, .14);
}

.sig-item:hover .sig-oval img {
  transform: scale(1.08);
}

.sig-label {
  margin-top: 14px;
  margin-bottom: 0;
  letter-spacing: .18em;
  font-size: .78rem;
  color: rgb(56, 56, 56);
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 991px) {
  .sig-oval {
    width: 200px;
    height: 280px;
  }
}

@media (max-width: 575px) {
  .sig-oval {
    width: 170px;
    height: 240px;
  }
}
















:root {
  --padma-accent: #B87333;
  /* copper */
  --padma-dark: #2B2B2B;
  --padma-text: #5A5A5A;
  --padma-bg: #ffffff;
}

.padma-stats {
  background: var(--padma-bg);
}

.stats-title {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  color: var(--padma-dark);
  line-height: 1.15;
}

/* Circle like screenshot */
.stat-circle {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  border-radius: 50%;
  border: 1px solid rgba(184, 115, 51, .65);
  background: rgba(244, 241, 236, .35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.stat-circle:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 52px rgba(0, 0, 0, .12);
}

.stat-num {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: 2.1rem;
  color: rgba(184, 115, 51, .95);
  line-height: 1;
  margin-bottom: .55rem;
}

.stat-label {
  color: var(--padma-text);
  font-size: .92rem;
}

/* Responsive */
@media (max-width: 575px) {
  .stat-circle {
    width: 170px;
    height: 170px;
  }

  .stat-num {
    font-size: 1.85rem;
  }
}



















/* ========================= PREMIUM HEADER / NAVBAR ========================= */
:root {
  --padma-bg: #F4F1EC;
  --padma-accent: #B87333;
  --padma-dark: #2B2B2B;
  --padma-text: #5A5A5A;
}

.padma-header {
  background: rgba(244, 241, 236, .88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(184, 115, 51, .16);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .06);
  z-index: 1030;
}


.brand-logo-img {
  height: 84px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-weight: 600;
  color: var(--padma-dark);
  font-size: 1.05rem;
  line-height: 1;
}

/* Links */
.navbar-nav .nav-link {
  color: var(--padma-dark);
  font-weight: 500;
  padding: .55rem .2rem;
  position: relative;
  transition: color .2s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--padma-accent);
}

/* Active underline */
.navbar-nav .nav-link.active {
  color: var(--padma-accent);
}

.navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: .25rem;
  width: 100%;
  height: 2px;
  background: var(--padma-accent);
  border-radius: 99px;
  opacity: .9;
}

/* CTA Button */
.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: .6rem 1rem;
  border-radius: 10px;
  background: var(--padma-accent);
  border: 1px solid var(--padma-accent);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .10);
  transition: transform .2s ease, filter .2s ease;
  white-space: nowrap;
}

.nav-cta-btn:hover {
  transform: translateY(-1px);
  filter: brightness(.96);
  color: #fff;
}

/* Toggler */
.padma-toggler {
  border: 1px solid rgba(184, 115, 51, .35);
  border-radius: 10px;
  padding: .5rem .65rem;
}

.padma-toggler:focus {
  box-shadow: 0 0 0 .2rem rgba(184, 115, 51, .18);
}

/* Mobile menu background */
@media (max-width: 991px) {
  .navbar-collapse {
    margin-top: .75rem;
    background: rgba(255, 255, 255, .60);
    border: 1px solid rgba(184, 115, 51, .18);
    border-radius: 16px;
    padding: .75rem 1rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
  }

  .navbar-nav .nav-link.active::after {
    bottom: .1rem;
  }

  .nav-cta-btn {
    width: 100%;
    justify-content: center;
    margin-top: .25rem;
  }
}











/* =========================
   TOP BAR – PREMIUM (ORANGE + WHITE)
========================= */

 :root{
    --padma-darkbg:#2F332E;
    --padma-accent:#B87333;
    --padma-light:#F4F1EC;
    --padma-white:#ffffff;
  }

  .padma-topbar{
    background: var(--padma-darkbg);
    color: rgba(255,255,255,.85);
    font-size: .85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .padma-topbar a{
    color: rgba(255,255,255,.85);
    text-decoration: none;
    transition: color .2s ease;
  }

  .padma-topbar a:hover{
    color: var(--padma-accent);
  }

  .top-left span,
  .top-center{
    display:flex;
    align-items:center;
    gap:6px;
  }

  .top-center{
    color: var(--padma-white);
  }

  .urgent-call{
    margin-left:6px;
    font-weight:600;
    color: var(--padma-accent);
  }

  .urgent-call:hover{
    text-decoration: underline;
  }

  .follow-text{
    font-size:.8rem;
    opacity:.8;
  }

  .top-social{
    width:28px;
    height:28px;
    border-radius:6px;
    display:grid;
    place-items:center;
    background: rgba(255,255,255,.08);
    color: var(--padma-white);
    transition: all .2s ease;
  }

  .top-social:hover{
    background: var(--padma-accent);
    color:#fff;
  }

  @media (max-width:768px){
    .padma-topbar{
      text-align:center;
    }
  }











.hero-split{
  display: flex;
  min-height: 78vh;
  width: 100%;
  overflow: hidden;
}

/* LEFT image */
.hero-split__left{
  flex: 1 1 52%;
  position: relative;
}
.hero-split__left img{
  width: 100%;
  height: 100%;
  object-fit: cover;       /* important */
  object-position: center; /* important */
  display: block;
}

/* RIGHT paper */
.hero-split__right{
  flex: 1 1 48%;
  position: relative;
  background: #f4f1ec;
}

.hero-split__paper{
  width: 100%;
  height: 100%;
  background: url("assets/img/paper-texture.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.hero-logo{
  max-width: 520px;
  width: 100%;
  height: auto;
  display: block;
}

/* ✅ MOBILE FIX */
@media (max-width: 768px){
  .hero-split{
    flex-direction: column;   /* stack */
    min-height: auto;
  }

  .hero-split__left{
    flex: none;
    height: 32vh;             /* image height on mobile */
    min-height: 320px;
  }

  .hero-split__right{
    flex: none;
    height: auto;
  }

  .hero-split__paper{
    padding: 22px 16px;
    min-height: 42vh;         /* paper area */
  }

  .hero-logo{
    max-width: 320px;         /* logo scale down */
  }
}

/* Extra small phones */
@media (max-width: 420px){
  .hero-split__left{ min-height: 280px; }
  .hero-logo{ max-width: 280px; }
}














/* =========================
   ABOUT US SECTION
========================= */

:root {
  --padma-bg: #F4F1EC;
  /* warm beige */
  --padma-bg2: #EFEAE3;
  /* slightly deeper beige */
  --padma-accent: #B87333;
  /* copper */
  --padma-dark: #2B2B2B;
  --padma-text: #5A5A5A;
}

/* Section base */
.padma-about {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.py-lg-6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* Heading style */
.padma-kicker {
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--padma-accent);
  font-size: .85rem;
}

.padma-title {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  color: var(--padma-dark);
  font-weight: 600;
  line-height: 1.1;
}

.padma-lead {
  color: var(--padma-text);
  max-width: 820px;
  margin-inline: auto;
}

/* Collage */
.about-collage {
  position: relative;
  min-height: 420px;
}

.about-card {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.about-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-card--big {
  height: 420px;
}

.about-card--small {
  position: absolute;
  width: 52%;
  height: 210px;
  right: -10px;
  bottom: -20px;
}

/* Accent badge */
.about-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(244, 241, 236, .92);
  border: 1px solid rgba(184, 115, 51, .25);
  border-radius: 14px;
  padding: .85rem 1rem;
  backdrop-filter: blur(4px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, .08);
}

.badge-title {
  display: block;
  font-weight: 600;
  color: var(--padma-dark);
}

.badge-sub {
  display: block;
  font-size: .9rem;
  color: var(--padma-text);
}

/* Right content */
.about-content {
  background: rgba(255, 255, 255, .55);
  border: 1px solid rgba(184, 115, 51, .18);
  border-radius: 18px;
  padding: 1.4rem 1.4rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
}

.about-eyebrow {
  margin-bottom: .3rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .8rem;
  color: var(--padma-accent);
}

.about-heading {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  color: var(--padma-dark);
  font-weight: 600;
  line-height: 1.12;
}

.about-text {
  color: rgb(63, 63, 63);
  margin-bottom: .9rem;
}

/* Pills */
.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .9rem;
}

.pill {
  font-size: .9rem;
  color: var(--padma-dark);
  border: 1px solid rgba(184, 115, 51, .35);
  background: rgba(244, 241, 236, .9);
  padding: .45rem .75rem;
  border-radius: 999px;
}

/* Buttons */
.btn-padma {
  background: var(--padma-accent);
  border: 1px solid var(--padma-accent);
  color: #fff;
  padding: .65rem 1.15rem;
  border-radius: 6px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .12);
}

.btn-padma:hover {
  filter: brightness(.96);
  color: #fff;
}

.btn-padma-outline-dark {
  background: transparent;
  border: 1px solid rgba(184, 115, 51, .55);
  color: var(--padma-dark);
  padding: .65rem 1.15rem;
  border-radius: 6px;
}

.btn-padma-outline-dark:hover {
  background: rgba(184, 115, 51, .10);
  color: var(--padma-dark);
}

/* Stats */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
}

.stat {
  background: rgba(244, 241, 236, .95);
  border: 1px solid rgba(184, 115, 51, .25);
  border-radius: 14px;
  padding: .9rem .9rem;
  text-align: center;
}

.stat-num {
  font-weight: 700;
  color: var(--padma-dark);
  font-size: 1.2rem;
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
}

.stat-label {
  color: rgb(63, 63, 63);
  font-size: .9rem;
  margin-top: .1rem;
}

/* Founder note */
.founder-note {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  align-items: start;
  background: rgba(255, 255, 255, .55);
  border: 1px solid rgba(184, 115, 51, .18);
  border-radius: 18px;
  padding: 1.1rem 1.2rem;
}

.founder-line {
  width: 64px;
  height: 2px;
  margin-top: .6rem;
  background: var(--padma-accent);
  border-radius: 20px;
}

/* Responsive */
@media (max-width: 991px) {
  .about-collage {
    min-height: 360px;
  }

  .about-card--big {
    height: 360px;
  }

  .about-card--small {
    width: 56%;
    height: 190px;
    right: 0;
    bottom: -16px;
  }
}

@media (max-width: 576px) {
  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-content {
    padding: 1.05rem;
  }

  .founder-note {
    grid-template-columns: 1fr;
  }

  .founder-line {
    width: 80px;
  }
}
















/* ===== Services Section ===== */
:root {
  --padma-bg: #F4F1EC;
  /* warm beige */
  --padma-bg2: #EFEAE3;
  /* slightly deeper beige */
  --padma-accent: #B87333;
  /* copper */
  --padma-dark: #2B2B2B;
  --padma-text: #5A5A5A;
}

.py-lg-6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.padma-services {
  background: linear-gradient(180deg, var(--padma-bg2) 0%, var(--padma-bg) 100%);
}

.padma-kicker {
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--padma-accent);
  font-size: .85rem;
}

.padma-title {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  color: var(--padma-dark);
  font-weight: 600;
  line-height: 1.1;
  margin: 0;
}

.padma-title .accent {
  color: var(--padma-accent);
}

.padma-lead {
  color: var(--padma-text);
  max-width: 820px;
  margin-inline: auto;
}

/* Card */
.service-card {
  background: rgba(255, 255, 255, .60);
  border: 1px solid rgba(184, 115, 51, .18);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, .12);
}

.service-media {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .35s ease;
}

.service-card:hover .service-media img {
  transform: scale(1.08);
}

.service-chip {
  position: absolute;
  left: 14px;
  top: 14px;
  background: rgba(244, 241, 236, .92);
  border: 1px solid rgba(184, 115, 51, .30);
  color: var(--padma-dark);
  padding: .35rem .6rem;
  border-radius: 999px;
  font-size: .82rem;
  backdrop-filter: blur(4px);
}

.service-body {
  padding: 1.15rem 1.15rem 1.25rem;
}

.service-title {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  color: var(--padma-dark);
  font-weight: 600;
  margin-bottom: .45rem;
}

.service-text {
  color: rgb(63, 63, 63);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.service-actions {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
}

/* Buttons */
.btn-padma {
  background: var(--padma-accent);
  border: 1px solid var(--padma-accent);
  color: #fff;
  border-radius: 8px;
  padding: .55rem 1rem;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .10);
}

.btn-padma:hover {
  filter: brightness(.96);
  color: #fff;
}

.btn-padma-outline {
  background: transparent;
  border: 1px solid rgba(184, 115, 51, .55);
  color: var(--padma-dark);
  border-radius: 8px;
  padding: .55rem 1rem;
}

.btn-padma-outline:hover {
  background: rgba(184, 115, 51, .10);
  color: var(--padma-dark);
}

/* Mobile tweaks */
@media (max-width: 576px) {
  .service-media {
    height: 190px;
  }

  .service-body {
    padding: 1rem;
  }
}





























/* ===== Footer ===== */
:root {
  --padma-bg: #F4F1EC;
  /* warm beige */
  --padma-darkbg: #2F332E;
  /* deep olive grey */
  --padma-accent: #B87333;
  /* copper */
  --padma-white: #ffffff;
  --padma-text: rgba(255, 255, 255, .80);
  --padma-text2: rgba(255, 255, 255, .65);
}

.padma-footer {
  background: var(--padma-darkbg);
  color: var(--padma-text);
}

.footer-main {
  padding: 64px 0 44px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-logo {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  color: var(--padma-white);
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.2;
}

.footer-desc {
  color: var(--padma-text2);
  line-height: 1.7;
  margin-bottom: 18px;
}

.footer-title {
  color: var(--padma-white);
  font-weight: 600;
  margin-bottom: 14px;
}

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

.footer-links li {
  margin: 10px 0;
  color: var(--padma-text2);
}

.footer-links a {
  color: var(--padma-text2);
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--padma-white);
  transform: translateX(2px);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  color: var(--padma-white);
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.footer-social a:hover {
  transform: translateY(-2px);
  background: rgba(184, 115, 51, .16);
  border-color: rgba(184, 115, 51, .35);
}

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

.footer-contact li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin: 12px 0;
  color: var(--padma-text2);
}

.footer-contact i {
  margin-top: 3px;
  color: rgba(184, 115, 51, .95);
}

.footer-contact a {
  color: var(--padma-text2);
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--padma-white);
}

.footer-cta {
  margin-top: 16px;
}

.btn-padma {
  background: var(--padma-accent);
  border: 1px solid var(--padma-accent);
  color: #fff;
  padding: .7rem 1rem;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .25);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-padma:hover {
  filter: brightness(.96);
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 16px 0;
  color: var(--padma-text2);
}

.footer-credit {
  color: var(--padma-text2);
}

.heart {
  color: rgba(184, 115, 51, .95);
}

@media (max-width: 576px) {
  .footer-main {
    padding: 54px 0 34px;
  }
}


















.scroll-car-section {
  background: #ffffff;
  padding: 60px 0;
  overflow: hidden;
  border-bottom: 2px solid #ffe0b3;
  /* LIGHT ORANGE BORDER */
}

/* CONTENT */
.car-content h2 {
  font-size: 42px;
  font-weight: 800;
  color: #000000;
  /* BLACK */
}

.car-content h2 span {
  color: #ff8c00;
  /* ORANGE HIGHLIGHT */
}

.car-content p {
  margin: 15px 0;
  color: #555555;
  font-size: 15px;
}

.car-content ul {
  padding-left: 0;
  margin-bottom: 25px;
}

.car-content ul li {
  list-style: none;
  margin-bottom: 8px;
  font-weight: 500;
  color: #222222;
}

/* BUTTON */
.car-btn {
  display: inline-block;
  padding: 12px 32px;
  background: #ff8c00;
  /* ORANGE */
  color: #ffffff;
  /* WHITE TEXT */
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.35s ease;
  box-shadow: 0 8px 22px rgba(255, 140, 0, 0.4);
}

.car-btn:hover {
  background: #000000;
  /* BLACK HOVER */
  color: #ffffff;
  transform: translateY(-3px);
}

/* IMAGE AREA */
.car-image-wrapper {
  position: relative;
  height: 250px;
}

.car-image {
  max-width: 100%;
  position: absolute;
  right: -500px;
  /* start outside */
  bottom: 0;
  transition: transform 0.8s ease;
}

/* Active state (JS will add this) */
.scroll-car-section.active .car-image {
  transform: translateX(-500px);
}

/* Reverse animation */
.scroll-car-section.reverse .car-image {
  transform: translateX(0);
}

/* MOBILE */
@media (max-width: 768px) {
  .car-image-wrapper {
    height: 170px;
  }

  .car-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 424px) {
    .stat-circle {
        width: 110px;
        height: 110px;
    }
}