@import url('https://fonts.googleapis.com/css2?family=Libertinus+Serif+Display&family=Roboto+Slab:wght@100..900&display=swap');

:root {
  --gold: #d4af37;
  --white: #fff;
  --dark: #000;

  /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;


  --paper: #ffffff;
  --bg: #efe4dc;
  --text: #000000;

}
/* ================= TOP BAR ================= */
.topbar {
  background: var(--gold);
  color: #000000;
  font-size: 13px;
  padding: 6px 0;
  font-family: 'Roboto Slab', serif;
}

.topbar-slogan {
  color: var(--black);
  font-weight: 500;
}

.topbar-contact a,
.topbar-contact span {
  color: #000000;
  margin-left: 14px;
  text-decoration: none;
  font-size: 13px;
}

.topbar-contact i {
  color: var(--black) !important;
  margin-right: 4px;
}

.topbar-contact a:hover {
  color: #000000;
}

/* ================= NAVBAR ================= */
.luxury-navbar {
  background: var(--white);
  border-bottom: 1px solid #eee;
  padding: 10px 0;
  z-index: 999;
}

/* LOGO */
.brand-logo img {
  height: 80px; /* desktop */
  width: auto;
  transition: all 0.3s ease;
}

/* Tablet */
@media (max-width: 991px) {
  .brand-logo img {
    height: 65px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .brand-logo img {
    height: 60px;
    width: auto;
  }
}

/* Base link */
.nav-link {
  font-weight: 500;
  padding: 0 18px !important;
  position: relative;
  color: #000;
  transition: 0.3s;
}

/* underline element */
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: 0.3s;
}

/* HOVER → bold but no underline */
.nav-link:hover {
  font-weight: 700;
  transform: scale(1.1);
}

.nav-link:hover::after {
  width: 0;   /* underline stop */
}

/* ACTIVE → underline visible */
.nav-link.active::after {
  width: 100%;
  left: 0;
}


/* TOGGLER */
.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* MOBILE MENU */
@media (max-width: 991px) {

  .navbar-collapse {
    background: #fff;
    padding: 15px 0;
    border-top: 1px solid #eee;
  }

  .navbar-nav {
    align-items: center;
  }

  .nav-link {
    padding: 12px 0 !important;
    font-size: 16px;
  }

  .nav-link::after {
    display: none;
  }
}

/* WHATSAPP DESKTOP */
.whatsapp-btn {
  background: #25D366;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.whatsapp-btn:hover {
  color: #fff;
}

/* FLOATING WHATSAPP MOBILE */
.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  margin-bottom: 80px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

/* ENQUIRY BUTTON */
.enquiry-btn {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.enquiry-btn:hover {
  background: var(--gold);
  color: #000;
}

/* STAR RATING  */
.stars {
  margin-bottom: 16px;
}

.star-filled {
  color: #ffffff;              /* FILLED STAR = WHITE */
  -webkit-text-stroke: 1px #fff;
  font-size: 18px;
  margin-right: 4px;
}

.star-outline {
  color: transparent;          /* EMPTY STAR = TRANSPARENT */
  -webkit-text-stroke: 1.2px #fff;
  font-size: 18px;
  margin-right: 4px;
}



/* HERO */
.hero-section {
  position: relative;
  /*background: url("../images/hero_banner.webp") center/cover no-repeat;*/
  height: 100vh;
  color: #fff;
}

.hero-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,0.85) 0%,
      rgba(0,0,0,0.55) 50%,
      rgba(0,0,0,0.2) 100%
    );
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

/* BADGE */
.hero-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 8px 14px;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

/* TITLE */
.hero-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--gold);
}

/* DESCRIPTION */
.hero-desc {
  max-width: 520px;
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 40px;
}

/* BUTTONS */
.hero-actions {
  display: flex;
  gap: 20px;
}

.btn-gold {
  background: var(--gold);
  color: #000;
  padding: 14px 28px;
  font-weight: 600;
  border-radius: 0;
}

.btn-gold:hover {
  background: #bfa233;
  color: #000;
}

.btn-outline-light {
  border-radius: 0;
  padding: 14px 28px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .hero-title {
    font-size: 48px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 38px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ani */

.hero-badge,
.hero-title,
.hero-desc,
.hero-actions {
  animation: fadeUp 1s ease both;
}

.hero-title { animation-delay: 0.2s; }
.hero-desc { animation-delay: 0.4s; }
.hero-actions { animation-delay: 0.6s; }

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* STATS SECTION */
.stats-section {
  background: var(--gold);
  padding: 10px 0;
}

/* ITEM */
.stats-item {
  color: var(--black);
  gap: 18px;
  padding: 20px;
}

/* ICON */
.stats-icon {
  font-size: 50px;
  line-height: 1;
  flex-shrink: 0;
}

/* CONTENT */
.stats-content h2 {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 2px;
}

.stats-content p {
  font-size: 14px;
  letter-spacing: 1px;
    font-size: 18px;
    font-family: 'Libertinus Serif Display', system-ui;
  text-transform: uppercase;
  margin: 0;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .stats-item {
    justify-content: center;
    text-align: left;
  }

  .stats-content h2 {
    font-size: 34px;
  }

  .stats-icon {
    font-size: 34px;
  }
}


/* BASE */
.about-section {
  overflow: hidden;
}

.about-content h2 {
    font-family: 'Roboto Slab', serif;
    font-size: 2.5rem;
    font-weight: 700;
}

.about-content p {
    font-size: 18px;
    font-family: 'Libertinus Serif Display', system-ui;
    line-height: 1.6;
    color: #000000; /* Softer gray for readability */
}

.about-content a {
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-family: 'Libertinus Serif Display', system-ui;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.about-service h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #000000; /* Unique primary blue */
}

.about-service p {
    font-size: 18px;
    font-family: 'Libertinus Serif Display', system-ui;
    line-height: 1.6;
    color: #000000; /* Softer gray for readability */
}

/* ANIMATION BASE */
.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease;
}

.fade-left {
  transform: translateX(-60px);
}

.fade-right {
  transform: translateX(60px);
}

/* ACTIVE */
.animate.show {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* IMAGE ZOOM ON HOVER */
.about-section img {
  transition: transform 0.6s ease;
}

.about-section img:hover {
  transform: scale(1.06);
}

/* MOBILE OPTIMIZE */
@media (max-width: 768px) {
  .fade-left,
  .fade-right {
    transform: translateY(40px);
  }
}

/* === SERVICES SECTION === */
.section-dark {
    background-color: var(--dark);
    color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark p {
    color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 32px;
}

.service-card {
    padding: 50px;
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition-smooth);
    position: relative;
    font-family: 'Roboto Slab', serif;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    transition: var(--transition-smooth);
    z-index: 0;
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.service-icon {
    color: var(--gold);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    font-size: 40px !important;
}

.service-title {
    color: var(--white);
    margin-bottom: 8px;
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-description {
    color: gray;
    font-family: 'Libertinus Serif Display', system-ui;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .process-timeline {
        grid-template-columns: 1fr;
    }
}

/* === PROJECTS SECTION === */
.projects-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 32px;
}

.project-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.project-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(11, 11, 11, 0.95), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-info {
    transform: translateY(20px);
    transition: var(--transition-smooth);
    font-family: 'Roboto Slab', serif;
}

.project-card:hover .project-info {
    transform: translateY(0);
}

.project-title {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.project-category {
    color: var(--gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* VIEW MORE BUTTON */
.view-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Libertinus Serif Display', system-ui;
  color: #000;
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 0; /* luxury sharp edge */
  text-decoration: none;
  transition: all 0.35s ease;
}

/* ARROW */
.view-more-btn .arrow {
  transition: transform 0.35s ease;
  font-size: 18px;
}

/* HOVER */
.view-more-btn:hover {
  background: transparent;
  color: var(--dark);
  border-color: var(--gold) !important;
}

.view-more-btn:hover .arrow {
  transform: translateX(6px);
}

/* MOBILE */
@media (max-width: 576px) {
  .view-more-btn {
    padding: 12px 26px;
    font-size: 15px;
  }
}

/* === PROCESS SECTION === */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 32px;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 20px;
}

.process-number {
    font-family: 'Roboto Slab', serif;
    font-size: 4rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 2px var(--gold);
    margin-bottom: 16px;
    line-height: 1;
}

.process-title {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.process-description {
    color: var(--gray);
    line-height: 1.8;
}

@media (max-width: 480px) {
.projects-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}


/* SECTION */
.why-choose-us {
  background: #fff;
}

/* BOX */
.choose-box {
  background: #fff;
  padding: 32px 28px;
  border-left: 4px solid transparent;
  transition: all 0.35s ease;
  height: 100%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* ICON */
.choose-icon {
  width: 48px;
  height: 48px;
  background: rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.choose-icon i {
  font-size: 22px;
  color: var(--gold);
}

/* TEXT */
.choose-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--black);
  font-family: 'Roboto Slab', serif;
}

.choose-box p {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  margin: 0;
  font-family: 'Libertinus Serif Display', system-ui;
}

/* HOVER EFFECT */
.choose-box:hover {
  border-left-color: var(--gold);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  transform: translateY(-6px);
}

/* MOBILE */
@media (max-width: 576px) {
  .choose-box {
    padding: 26px 22px;
  }
}


  .real-hero-section {
  background-color: #050505;
  color: #fff;
  padding: 60px 0;
  position: relative;
}

.real-hero-text h2 {
  font-weight: 700;
  font-size: 2.5rem;
  font-family: 'Roboto Slab', serif;
  margin-bottom: 20px;
}

.real-hero-text p {
  font-size: 18px;
  color: #cfd8e3;
  font-family: 'Libertinus Serif Display', system-ui;
}

.real-contact-info {
  margin: 20px 0;
  font-family: 'Libertinus Serif Display', system-ui;
}

.real-contact-info i {
  font-size: 1.3rem;
  color: #0dcaf0;
}

.real-btn-hero {
  background-color: #ebbf2e;
  border: none;
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: 600;
  transition: 0.3s;
  font-family: 'Libertinus Serif Display', system-ui;
}

.real-btn-hero:hover {
  background-color: #ffffff;
  color: #000000;
}

.real-hero-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 20px;
  object-fit: cover;
  filter: drop-shadow(1px 1px 20px #ebbf2e);
}

/* testi SECTION */


/* TITLE */
.book-title {
  font-size: 48px;
  font-family: 'Georgia', serif;
  color: #4f6b2f;
}

/* WRAPPER */
.book-wrapper {
  max-width: 520px;
  margin: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* BOOK */
.book {
  position: relative;
  width: 100%;
  height: 320px;
}

/* PAGE */
.page {
  position: absolute;
  inset: 0;
  background: var(--gold);
  padding: 40px 35px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.6s ease;
}

.page.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

/* PAPER STACK EFFECT */
.page::after {
  content: "";
  position: absolute;
  inset: -10px;
  background: var(--gold);
  z-index: -1;
  transform: rotate(-2deg);
}

/* CLIP */
.clip {
  width: 40px;
  height: 80px;
  border: 3px solid #c44;
  border-radius: 8px;
  position: absolute;
  top: -25px;
  left: 25px;
  transform: rotate(-10deg);
}

/* STARS */
.stars {
  color: #4f6b2f;
  font-size: 20px;
  margin-bottom: 20px;
}

/* TEXT */
.book-text {
  font-family: 'Libertinus Serif Display', system-ui;
  color: var(--text);
  font-size: 18px;
  line-height: 1.7;
}

/* AUTHOR */
.book-author {
  margin-top: 25px;
  text-align: right;
  font-weight: 600;
  color: #ffffff;
}

/* NAV ICONS – CENTER LEFT & RIGHT */
.nav-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 2px solid var(--gold);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--gold);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 5;
}

/* LEFT & RIGHT POSITION */
.nav-icon.prev {
  left: -70px;
}

.nav-icon.next {
  right: -70px;
}

/* HOVER */
.nav-icon:hover {
  background: var(--gold);
  color: #000;
}

/* MOBILE */
@media (max-width: 576px) {
  .book-title {
    font-size: 36px;
  }

  .page {
    padding: 30px 25px;
  }

  .nav-icon {
    display: none;
  }
}


/* FOOTER */
.luxury-footer {
  background: radial-gradient(circle at top, #111, #000);
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

/* LOGO */
.footer-brand .logo {
  color: var(--gold);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2px;
  font-family: 'Roboto Slab', serif;
}

.footer-brand .logo small {
  font-size: 12px;
  font-family: 'Libertinus Serif Display', system-ui;
  letter-spacing: 3px;
  color: #ccc;
  margin-top: -10px;
}

.footer-text {
  margin: 20px 0;
  color: var(--white);
  font-size: 18px;
  line-height: 1.7;
  font-family: 'Libertinus Serif Display', system-ui;
}

/* SOCIAL ICONS */
.social-icons a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(212,175,55,0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--gold);
  color: #000;
}

/* TITLES */
.footer-title {
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 22px;
    font-family: 'Roboto Slab', serif;
}

/* LINKS */
.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  font-family: 'Libertinus Serif Display', system-ui;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 18px;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 6px;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  font-size: 13px;
  color: #888;
  font-family: 'Roboto Slab', serif;
}

.footer-policy a {
  margin: 0 12px;
  color: #888;
  text-decoration: none;
  transition: 0.3s;
}

.footer-policy a:hover {
  color: var(--gold);
}

.dev-credit {
  font-size: 10px;
  color: #777;
}

.dev-credit a {
  color: var(--gold);
  text-decoration: none;
}

.dev-credit a:hover {
  text-decoration: underline;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-policy {
    margin: 8px 0;
  }
}


/* MOBILE */
@media (max-width: 576px) {
  .footer-policy {
    margin-top: 10px;
  }
}

/* about page css */
.about-page-content h2 {
    font-family: 'Roboto Slab', serif;
    font-size: 2rem;
    font-weight: 700;
}

.about-page-content p {
    font-size: 18px;
    font-family: 'Libertinus Serif Display', system-ui;
    line-height: 1.6;
    color: var(--black); /* Softer gray for readability */
    text-align: justify;
}

/* .about-ex .col-4{
    border: 2px solid #d4af37;
    margin: 3px;
} */

.border-right{
  border-right: 2px solid #d4af37;
}

@media (max-width: 576px){
  .border-right{
    border-right: none;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}


.about-ex h6 {
    font-family: 'Roboto Slab', serif;
    font-size: 1.2rem;
    font-weight: 700;
}

.about-ex small {
    font-size: 1rem;
    font-family: 'Libertinus Serif Display', system-ui;
    color: #000000;
}

.experience-box{
  position:absolute;
  bottom:-20px;
  right:20px;
  background:#fff;
  padding:18px 22px;
  border-radius:14px;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,.15);
}

/* Mobile Safe */
@media (max-width:768px){
  .experience-box{
    position:static;
    margin-top:20px;
    display:inline-block;
  }
}

/* Small devices text tuning */
@media (max-width:576px){
  h2{
    font-size:1.6rem;
  }
  .lead{
    font-size:1rem;
  }
}

.vm-card{
  background: #fff;
  padding:35px;
  border-radius:18px;
  box-shadow:0 12px 35px rgba(0,0,0,.08);
  transition:all .3s ease;
  font-family: 'Libertinus Serif Display', system-ui;
  font-size: 18px;
}

.vm-card h4{
  font-family: 'Roboto Slab', serif;
  font-size: 20px;
}

.vm-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 45px rgba(0,0,0,.12);
}

@media (max-width:576px){
  .vm-card{
    padding:25px;
  }
}


/* DESIGN SLIDER */
.design-slider{
  display:flex;
  gap:20px;
  overflow-x:auto;
  scroll-behavior:smooth;
  padding-bottom:10px;
}

.design-slider::-webkit-scrollbar{
  display:none;
}

.design-card{
  min-width:320px;
  height:220px;
  border-radius:14px;
  overflow:hidden;
  flex-shrink:0;
}

.design-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.4s ease;
}

.design-card:hover img{
  transform:scale(1.06);
}

/* ARROWS */
.slider-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  border-radius:50%;
  background:#fff;
  border:none;
  box-shadow:0 8px 25px rgba(0,0,0,.2);
  z-index:5;
}

.slider-btn.left{ left:-10px; }
.slider-btn.right{ right:-10px; }

.slider-btn i{
  font-size:20px;
}

/* MOBILE */
@media(max-width:576px){
  .design-card{
    min-width:260px;
    height:180px;
  }
  .slider-btn{
    display:none;
  }
}

/* home page SLIDER */ .step-slide { max-width: 900px; /* width control */ margin: 0 auto; /* center horizontally */ position: absolute; width: 100%; left: 0; top: 0; opacity: 0; /* transition: opacity 0.4s ease; */ pointer-events: none; } .step-slide.active { opacity: 1; position: relative; pointer-events: auto; } /* WRAPPER */ .slider-wrapper { position: relative; min-height: 400px; /* adjust based on tallest slide */ /* display: flex; */ /* margin-left: 40px; */ align-items: center; justify-content: space-around; } .step-slide img{ max-height: 300px; object-fit: contain; } /* NAV ICONS */ .nav-btn { position: absolute; top: 50%; transform: translateY(-50%); background: #fff; border: none; width: 44px; height: 44px; border-radius: 50%; box-shadow: 0 6px 15px rgba(0,0,0,0.15); z-index: 10; } .nav-btn.left { left: -25px; } .nav-btn.right { right: -25px; } .nav-btn i { font-size: 24px; } /* STEPPER */ .stepper-wrapper { display: flex; justify-content: center; margin-top: 40px; } .stepper { width: 50%; /* 🔥 length reduced */ position: relative; display: flex; justify-content: space-between; } .stepper::before { content: ''; position: absolute; top: 50%; width: 100%; height: 4px; background: #ddd; transform: translateY(-50%); } .progress-line { position: absolute; top: 50%; height: 4px; background: var(--gold); width: 0%; transform: translateY(-50%); transition: width 0.6s ease; } .step { width: 14px; height: 14px; background: #ddd; border-radius: 50%; z-index: 2; } .step.active { background: #000000; background: var(--gold); } /* MOBILE */ @media(max-width:768px){ .nav-btn.left { left: 0; } .nav-btn.right { right: 0; } .stepper { width: 80%; } }


/* SECTION */
.interior-section {
  padding: 60px 0;
}

.interior-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 50px;
}

/* CUSTOM 5 COLUMN GRID */
.col-custom {
  flex: 0 0 20%;
  max-width: 20%;
  text-align: center;
}

/* ICON BOX */
.solution-box {
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.solution-box img {
  width: 70px;
  height: auto;
  margin-bottom: 12px;
}

.solution-box p {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.solution-box a {
  text-decoration: none;
  color: #000;
  
}

/* HOVER */
.solution-box:hover {
  transform: translateY(-6px);
}

/* TABLET */
@media (max-width: 992px) {
  .col-custom {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .col-custom {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* end to end  */
.col-five {
  flex: 0 0 20%;
  max-width: 20%;
}

/* Tablet */
@media (max-width: 992px) {
  .col-five {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .col-five {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* Back to Top */
#backToTop{
  position:fixed;
  bottom:30px;
  right:30px;
  width:48px;
  height:48px;
  border:none;
  border-radius:50%;
  background:linear-gradient(135deg,#d4af37,#c9a227);
  color:#000;
  font-size:18px;
  cursor:pointer;
  display:none;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 25px rgba(212,175,55,.45);
  z-index:999;
  transition:.3s;
}

#backToTop:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 30px rgba(212,175,55,.7);
}

/* Mobile size */
@media(max-width:576px){
  #backToTop{
    width:42px;
    height:42px;
    bottom:20px;
    right:20px;
  }
}


.lb{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.9);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:99999;
}

.lb img{
  max-width:96vw;
  max-height:92vh;
}

.lb-close{
  position:absolute;
  top:20px;
  right:30px;
  font-size:40px;
  color:#fff;
  cursor:pointer;
}

.lb-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  font-size:50px;
  background:none;
  border:none;
  color:#fff;
  cursor:pointer;
  user-select:none;
}

.lb-prev{ left:20px; }
.lb-next{ right:20px; }


/* Card Background */
.leader-card{
  background: linear-gradient(145deg, #ffffff, #f4f4f4);
  padding:40px 25px 35px;
  border-radius:22px;
  /* border: 1px solid #000; */
  /* box-shadow:0 15px 40px rgba(0,0,0,.06); */
  transition:all .35s ease;
  position:relative;
  overflow:hidden;
}

.leader-card:hover{
  transform:translateY(-10px);
  box-shadow:0 25px 60px rgba(0,0,0,.12);
}

/* Circular Image */
.leader-img-wrapper{
  width:150px;
  height:150px;
  margin:0 auto 20px;
  border-radius:50%;
  padding:6px;
  background:linear-gradient(135deg,#d4af37,#f8e9b0);
}

.leader-img-wrapper img{
  width:100%;
  height:100%;
  border-radius:50%;
  object-fit:cover;
  background:#ddd;
}

/* Name */
.leader-name{
  font-weight:700;
  margin-bottom:6px;
  font-size:18px;
}

/* Role Badge */
.role-badge{
  display:inline-block;
  padding:6px 16px;
  background: var(--gold);
  /* color:#1b7c4f; */
  font-size:13px;
  border-radius:50px;
  font-weight:600;
}

/* ================= MOBILE IMPROVEMENT ================= */
@media(max-width:768px){

  .leader-card{
    padding:30px 20px;
  }

  .leader-img-wrapper{
    width:120px;
    height:120px;
  }

  .leader-name{
    font-size:16px;
  }

}
