  body{overflow-x:hidden}

/* ============ Spark Loader ============ */
:root{
  --spark-bg: #0b0b12;               /* overlay background */
  --spark-fg: #ffffff;               /* text/icon color */
  --spark-accent: #7c5cff;           /* primary accent */
  --spark-accent-2: #00d1ff;         /* secondary accent */
  --spark-size: clamp(84px, 16vw, 160px);
  --spark-radius: 20px;
  --spark-shadow: 0 10px 35px rgba(0,0,0,.35);
  --spark-speed: 1.1s;
}

/* Overlay */
#spark-loader{
  position: fixed;
  inset: 0;
  background:
    radial-gradient(1200px 800px at 20% -10%, rgba(124,92,255,.15), transparent 60%),
    radial-gradient(900px 700px at 120% 120%, rgba(0,209,255,.12), transparent 55%),
    var(--spark-bg);
  display: grid;
  place-items: center;
  z-index: 9999;
  transition: opacity .45s ease, visibility .45s ease;
}

/* Fade-out state */
#spark-loader.is-hidden{
  opacity: 0;
  visibility: hidden;
}

/* Core block */
.spark-core{
  display: grid;
  gap: clamp(10px, 2vw, 18px);
  place-items: center;
  color: var(--spark-fg);
  text-align: center;
  padding: clamp(16px, 3vw, 28px);
}

/* Logo frame */
.spark-brand{
  position: relative;
  width: var(--spark-size);
  height: var(--spark-size);
  border-radius: var(--spark-radius);
  display: grid;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow: var(--spark-shadow), inset 0 0 0 1px rgba(255,255,255,.05);
  overflow: hidden;
}

/* Logo image */
.spark-brand img{
  width: 60%;
  height: 60%;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.35));
  animation: spark-pop .9s ease-out both;
}

/* Animated edges (border segments) */
.spark-edge{
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--spark-accent), transparent);
  filter: drop-shadow(0 0 8px rgba(124,92,255,.6));
  opacity: .85;
}

.spark-edge--top,
.spark-edge--bottom{ height: 2px; width: 60%; }
.spark-edge--left,
.spark-edge--right{ width: 2px; height: 60%; background: linear-gradient(180deg, transparent, var(--spark-accent-2), transparent); }

.spark-edge--top{ top: 10px; left: 20%; animation: slideX var(--spark-speed) linear infinite; }
.spark-edge--bottom{ bottom: 10px; left: 20%; animation: slideX var(--spark-speed) linear infinite reverse; }
.spark-edge--left{ left: 10px; top: 20%; animation: slideY var(--spark-speed) linear infinite; }
.spark-edge--right{ right: 10px; top: 20%; animation: slideY var(--spark-speed) linear infinite reverse; }

/* Shine sweep */
.spark-shine{
  position: absolute;
  inset: -40%;
  transform: skewX(-20deg) translateX(-120%);
  background: linear-gradient(100deg, transparent 30%, rgba(255,255,255,.5) 50%, transparent 70%);
  mix-blend-mode: screen;
  animation: shine 2.2s ease-in-out infinite;
}

/* Dots */
.spark-dots{
  display: inline-flex;
  gap: clamp(8px, 2vw, 14px);
}

.spark-dot{
  width: clamp(8px, 2vw, 12px);
  height: clamp(8px, 2vw, 12px);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, var(--spark-accent) 60%);
  box-shadow: 0 0 12px rgba(124,92,255,.6), 0 0 22px rgba(0,209,255,.35);
  animation: bounce .9s ease-in-out infinite;
}
.spark-dot:nth-child(2){ animation-delay: .12s; background: radial-gradient(circle at 30% 30%, #fff, var(--spark-accent-2) 60%); }
.spark-dot:nth-child(3){ animation-delay: .24s; }

/* Helper text */
.spark-text{
  font-size: clamp(12px, 2.2vw, 14px);
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .8;
}

/* Motion-reduction support */
@media (prefers-reduced-motion: reduce){
  .spark-edge,
  .spark-shine,
  .spark-dot,
  .spark-brand img{ animation: none !important; }
}

/* Keyframes */
@keyframes slideX{
  0%{ transform: translateX(-40%); opacity:.4; }
  50%{ opacity:1; }
  100%{ transform: translateX(40%); opacity:.4; }
}
@keyframes slideY{
  0%{ transform: translateY(-40%); opacity:.4; }
  50%{ opacity:1; }
  100%{ transform: translateY(40%); opacity:.4; }
}
@keyframes shine{
  0%{ transform: skewX(-20deg) translateX(-120%); }
  55%{ transform: skewX(-20deg) translateX(120%); }
  100%{ transform: skewX(-20deg) translateX(120%); }
}
@keyframes bounce{
  0%,100%{ transform: translateY(0) scale(1); }
  50%{ transform: translateY(-8px) scale(1.05); }
}
@keyframes spark-pop{
  0%{ transform: scale(.8); opacity:.6; }
  100%{ transform: scale(1); opacity:1; }
}

/* Small devices: tighten spacing */
@media (max-width: 420px){
  .spark-core{ padding: 14px; }
}



        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            /* font-family: 'Trebuchet MS', sans-serif; */
            background: #ffffff;
        }
        body p {
            font-family: 'Trebuchet MS', sans-serif !important;
        }
        body * { text-transform: none !important; }


    /* Basic styling for demonstration */
        .header-header-section-007.active,
        .header-header-section-018.active {
            color: #ff6b35;
            font-weight: bold;
        }

        /* Hide mobile toggle button on desktop */
        @media (min-width: 1024px) {
            .header-header-section-012 {
                display: none !important;
            }
            .header-header-section-014 {
                display: none !important;
            }
            .header-header-section-022 {
                display: none !important;
            }
        }

        /* Show mobile toggle button only on tablet and mobile */
        @media (max-width: 1024px) {
            .header-header-section-012 {
                display: block;
            }
        }

        /* Force close sidebar on desktop */
        @media (min-width: 1025px) {
            .header-header-section-014.active {
                transform: translateX(-100%) !important;
                visibility: hidden !important;
            }
            .header-header-section-022.active {
                opacity: 0 !important;
                visibility: hidden !important;
            }
        }
/* =================================================================================================== */
        /* Header Section Styles */
  /* Announcement Bar Styles */
        .header-announcement-section-000 {
           background: linear-gradient(90deg, #f0f0f0, #d9d9d9, #bfbfbf); color: #333;
            padding: 9px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        

        .header-announcement-section-001 {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            margin-bottom: 100px;
            justify-content: space-between;
            align-items: center;
            padding: 0 30px;
        }

        .header-announcement-section-002 {
            display: flex;
            gap: 30px;
            align-items: center;
        }

.header-announcement-section-003 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  border: 2px solid #000;          /* Black border */
  border-radius: 50px;             /* Rounded border */
  color: #080909;
  font-size: 14px;
  padding: 6px 14px;               /* Add spacing inside */
  transition: all 0.3s ease;       /* Smooth hover animation */
  background-color: transparent;   /* Default transparent background */
}

/* Hover effect */
.header-announcement-section-003:hover {
  background-color: #808080;  /* Grey background on hover */
  color: #fff;                /* White text on hover */
  cursor: pointer;            /* Pointer cursor on hover */
}


        .header-announcement-section-004 {
            font-size: 16px;
        }

        .header-announcement-section-005 {
            display: flex;
            align-items: center;
        }

        .header-announcement-section-006 {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .header-announcement-section-006 a {
            color: #000000;
            font-size: 14px;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
            background: rgba(159, 155, 155, 0.5);
        }

        .header-announcement-section-006 a:hover {
            background: #ffffff;
            transform: translateY(-2px);
        }

        /* Header Section Styles */
        .header-header-section-000 {
            position: absolute;
            top: 53px;
            left: 0;
            width: 100%;
           background: linear-gradient(135deg, #e5e5e5 0%,#6b6b6b 50%,#2b2b2b 0%) ;

            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header-header-section-000.scrolled {
            position: fixed;
            top: 0;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
            animation: slideDown 0.4s ease;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
            }
            to {
                transform: translateY(0);
            }
        }

        .header-header-section-001 {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 30px;
            position: relative;
        }

        /* Logo Styles */
        .header-header-section-002 {
            display: flex;
            align-items: center;
            text-decoration: none;
            z-index: 1001;
        }

        .header-header-section-003 {
            height: 100px;
            width: auto;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }

        .header-header-section-002:hover .header-header-section-003 {
            transform: scale(1.05);
        }

        /* Navigation Styles */
        .header-header-section-004 {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .header-header-section-005 {
            display: flex;
            list-style: none;
            gap: 40px;
            align-items: center;
        }

        .header-header-section-006 {
            position: relative;
        }

        .header-header-section-007 {
            color: #ffffff;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            letter-spacing: 0.5px;
            padding: 8px 12px;
            border-radius: 6px;
            transition: all 0.3s ease;
            position: relative;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* Dropdown Arrow */
        .header-header-section-023 {
            display: inline-block;
            width: 0;
            height: 0;
            border-left: 5px solid transparent;
            border-right: 5px solid transparent;
            border-top: 5px solid #ffffff;
            transition: transform 0.3s ease;
        }

        .header-header-section-008:hover .header-header-section-023 {
            transform: rotate(180deg);
        }

        .header-header-section-007::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, grey, #000000);
            transition: width 0.3s ease;
        }

        .header-header-section-007:hover {
            color: white;
            background: rgba(149, 146, 146, 0.25);
        }

        .header-header-section-007:hover::after {
            width: 80%;
        }

        /* Dropdown Styles */
        .header-header-section-008 {
            position: relative;
        }

        .header-header-section-009 {
            position: absolute;
            top: 100%;
            left: 0;
            background: #ffffff;
            min-width: 250px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            border-radius: 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            margin-top: 10px;
            padding: 10px 0;
        }

        .header-header-section-008:hover .header-header-section-009 {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .header-header-section-010 {
            display: block;
            color: #3e3f40;
            text-decoration: none;
            padding: 12px 20px;
            font-size: 14px;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }

        .header-header-section-010:hover {
            background: rgb(0 0 0 / 25%);
            color: #ffffff;
            border-left-color: #040404;
            padding-left: 25px;
        }

        /* Call Button Styles */
        .header-header-section-011 {
            background: linear-gradient(135deg, #c6c7c8, grey);
            color: #ffffff;
            border: none;
            padding: 12px 28px;
            font-size: 15px;
            font-weight: 600;
            border-radius: 25px;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(183, 184, 184, 0.3);
        }

        .header-header-section-011:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgb(0 0 0 / 25%);
            background: linear-gradient(135deg, dark grey, grey);
        }

        .header-header-section-011:active {
            transform: translateY(0);
        }

        /* Mobile Toggle Button */
        .header-header-section-012 {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
        }

        .header-header-section-013 {
            width: 28px;
            height: 3px;
            background: #ffffff;
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .header-header-section-012.active .header-header-section-013:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .header-header-section-012.active .header-header-section-013:nth-child(2) {
            opacity: 0;
        }

        .header-header-section-012.active .header-header-section-013:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Mobile Sidebar */
        .header-header-section-014 {
            position: fixed;
            top: 0;
            right: -100%;
            width: 300px;
            height: 100vh;
            background:linear-gradient(135deg, #9b9b9b 0%, #666666 100%);
            box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
            transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            z-index: 999;
            overflow-y: auto;
            padding-top: 80px;
        }

        .header-header-section-014.active {
            right: 0;
        }

        .header-header-section-015 {
            position: absolute;
            top: 20px;
            right: 20px;
            background: gray;
            border: none;
            color: #ffffff;
            font-size: 35px;
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .header-header-section-015:hover {
            background: rgb(0 0 0 / 25%);
            transform: rotate(90deg);
        }

        .header-header-section-016 {
            list-style: none;
            padding: 20px;
        }

        .header-header-section-017 {
            margin-bottom: 5px;
        }

        .header-header-section-018 {
            display: block;
            color: #ffffff;
            text-decoration: none;
            padding: 15px 20px;
            font-size: 16px;
            font-weight: 500;
            border-radius: 8px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        /* Mobile Dropdown Arrow */
        .header-header-section-024 {
            display: inline-block;
            width: 0;
            height: 0;
            border-left: 5px solid transparent;
            border-right: 5px solid transparent;
            border-top: 5px solid #ffffff;
            transition: transform 0.3s ease;
        }

        .header-header-section-019.active .header-header-section-024 {
            transform: rotate(180deg);
        }

        .header-header-section-018:hover {
            color: rgb(255, 255, 255);
            background: rgba(108, 110, 110, 0.2);
            padding-left: 25px;
        }

        /* Mobile Dropdown */
        .header-header-section-019 {
            margin-bottom: 5px;
        }

        .header-header-section-020 {
            display: none;
            padding-left: 20px;
            margin-top: 5px;
        }

        .header-header-section-019.active .header-header-section-020 {
            display: block;
        }

        .header-header-section-021 {
            display: block;
            color: #ecf0f1;
            text-decoration: none;
            padding: 10px 20px;
            font-size: 14px;
            border-left: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .header-header-section-021:hover {
            color: #ffffff;
            border-left-color: #040404;
            padding-left: 25px;
        }

        /* Overlay */
        .header-header-section-022 {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgb(0 0 0 / 25%);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 998;
        }

        .header-header-section-022.active {
            opacity: 1;
            visibility: visible;
        }

        /* Tablet Responsive */
        @media (max-width: 1024px) {
            .header-announcement-section-001 {
                padding: 0 25px;
            }

            .header-announcement-section-003 {
                font-size: 13px;
            }

            .header-header-section-001 {
                padding: 15px 25px;
            }

            .header-header-section-005 {
                gap: 25px;
            }

            .header-header-section-007 {
                font-size: 14px;
            }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            /* Hide announcement bar on mobile and tablet */
            .header-announcement-section-000 {
                display: none;
            }

            .header-header-section-000 {
                top: 0;
            }

            .header-header-section-001 {
                padding: 12px 20px;
            }

            .header-header-section-003 {
                height: 40px;
            }

            .header-header-section-004 {
                display: none;
            }

            .header-header-section-012 {
                display: flex;
            }

            .header-header-section-011 {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .header-header-section-001 {
                padding: 10px 15px;
            }

            .header-header-section-003 {
                height: 55px;
            }

            .header-header-section-014 {
                width: 280px;
            }
        }
        /* Active Link Styles */
.header-header-section-007.active {
    color: #ffffff;
    background: rgba(156, 154, 154, 0.2);
}

.header-header-section-007.active::after {
    width: 80%;
}

/* Mobile Active Link */
.header-header-section-018.active {
    color: #ffffff;
    background: rgb(0 0 0 / 25%);
    border-left: 6px solid #1c1c1d;
    padding-left: 23px;
}
a {
    text-decoration: none !important;
}

  p {
  font-family: 'Trebuchet MS', sans-serif !important;
  font-size: 1rem;         /* ya 16px */
  line-height: 1.7;        /* readable spacing */
  /* color: #333;  */
              /* dark grey for better readability */
  letter-spacing: 0.3px;   /* thoda spacing for elegance */
    font-style: italic;
}
/* 1) Global: kabhi x-scroll nahi */
html, body {
  overflow-x: hidden;
  width: 100%;
}


/* /////////////////// home page section 1 ///////////////////////////// */
.hero-section {
    position: relative;
    height: 90vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
}

.hero-image.active {
    opacity: 1;
    z-index: 1;
    animation: zoomInOut 3s ease-in-out;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(119, 118, 118, 0.6), rgba(143, 141, 141, 0.3));
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    width: 90%;
    padding: 2rem;
}


/* BG blur layer */
.hero-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  backdrop-filter: blur(8px); /* BLUR LEVEL */
  -webkit-backdrop-filter: blur(12px);
  z-index: 1;
}

.appointment-form {
    /* background: rgba(255, 255, 255, 0.95); */
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.appointment-form h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #666666 0%, #000000 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(108, 108, 110, 0.4);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(155, 156, 159, 0.6);
}

.hero-content {
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    position: relative;
  z-index: 5;
}

.content-slide {
    opacity: 0;
    transform: translateY(20px);
    position: absolute;
    transition: all 0.5s ease;
}

.content-slide.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    line-height: 1.6;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.8);
    margin-bottom: 2rem;
}

.hero-content ul {
    list-style: none;
    margin-top: 1.5rem;
}

.hero-content ul li {
    padding: 0.7rem 0;
    font-size: 1.1rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

/* ========= Mobile (<=768px) ========= */
@media (max-width: 768px) {
  .hero-container::before {
    width: 100%;
    min-height: 100vh;   /* full screen height */
  }

}

.hero-content ul li:before {
    content: "✓";
    margin-right: 10px;
    color: #4ade80;
    font-weight: bold;
    font-size: 1.3rem;
}

@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .appointment-form {
        padding: 2rem;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .hero-overlay {
        background: linear-gradient(135deg, rgba(160, 157, 157, 0.7), rgba(0, 0, 0, 0.3));
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .appointment-form h2 {
        font-size: 1.5rem;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-overlay {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
    }

    .hero-container {
        width: 100%;
        padding: 1rem;
    }

    .submit-btn {
        padding: 12px;
        font-size: 1rem;
    }
}

@media (max-width: 968px) {
    .appointment-form {
        display: none;
    }
}

@media (max-width: 640px) {
    .appointment-form {
        display: none;
    }
}



/* ///////////////////////////////////////////// home page section 2 //////////////////////////////////////// */
.home-about-us-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        /* Trusted By Section */
        .trusted-by {
            background: white;
            border-radius: 20px;
            padding: 10px 40px;
            margin-bottom: 60px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
        }

        .trusted-title {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .trusted-title h3 {
            font-size: 18px;
            font-weight: 600;
            color: #1a1a1a;
        }

        .trusted-title span {
            font-size: 14px;
            color: #666;
        }

        .trusted-title a {
            color: #1a1a1a;
            text-decoration: none;
            font-size: 20px;
        }

        .company-logos {
            display: flex;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .company-logo {
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .company-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            opacity: 0.5;
            transition: opacity 0.3s;
            filter: grayscale(100%);
        }

        .company-logo:hover img {
            opacity: 1;
        }

        /* About Content Section */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        /* Left Side - Image */
        .about-image {
            position: relative;
        }

        .image-container {
            position: relative;
            border-radius: 200px 200px 30px 30px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }

        .image-container img {
            width: 100%;
            height: 650px;
            display: block;
        }

        .star-decoration {
            position: absolute;
            top: 30px;
            left: -30px;
            width: 60px;
            height: 60px;
            z-index: 1;
        }

        .star-decoration svg {
            width: 100%;
            height: 100%;
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .diamond-decoration {
            position: absolute;
            bottom: 80px;
            right: -20px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
            transform: rotate(45deg);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .experience-badge {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
            color: white;
            border-radius: 50%;
            width: 180px;
            height: 180px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 15px 40px rgba(0,0,0,0.4);
            border: 8px solid white;
        }

        .experience-badge h2 {
            font-size: 64px;
            font-weight: 700;
            line-height: 1;
        }

        .experience-badge p {
            font-size: 13px;
            font-weight: 600;
            text-align: center;
            line-height: 1.2;
        }

        /* Right Side - Content */
        .about-text {
            padding: 20px 0;
        }

        .section-label {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 15px;
        }

        .section-label::before {
            content: '';
            width: 8px;
            height: 8px;
            background: #000;
            border-radius: 50%;
        }

        .section-label span {
            color: #000;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .about-text h1 {
            font-size: 48px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .about-text h1 span {
            color: #999;
        }

        .about-text > p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 30px;
            font-size: 15px;
        }

        /* Feature Boxes */
        .feature-boxes {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 35px;
        }

        .feature-box {
            background: #f5f5f5;
            padding: 25px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            gap: 15px;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .feature-icon svg {
            width: 28px;
            height: 28px;
            stroke: #1a1a1a;
        }

        .feature-box h4 {
            font-size: 16px;
            font-weight: 600;
            color: #1a1a1a;
        }

        /* Progress Bar */
        .progress-section {
            margin-bottom: 35px;
        }

        .progress-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }

        .progress-header h4 {
            font-size: 16px;
            font-weight: 600;
            color: #1a1a1a;
        }

        .progress-header span {
            font-size: 18px;
            font-weight: 700;
            color: #1a1a1a;
        }

        .progress-bar-container {
            width: 100%;
            height: 8px;
            background: #e0e0e0;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 25px;
        }

        .progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #1a1a1a 0%, #4a4a4a 100%);
            width: 90%;
            border-radius: 10px;
            animation: progressAnimation 2s ease-out;
        }

        @keyframes progressAnimation {
            from { width: 0; }
            to { width: 90%; }
        }

        /* Check List */
        .check-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 35px;
        }

        .check-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .check-icon {
            width: 24px;
            height: 24px;
            background: #1a1a1a;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .check-icon svg {
            width: 14px;
            height: 14px;
            stroke: white;
            stroke-width: 3;
        }

        .check-item p {
            color: #666;
            font-size: 15px;
        }

        /* Bottom Section */
        .bottom-section {
            display: flex;
            align-items: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .discover-btn {
            background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
            color: white;
            border: none;
            padding: 18px 35px;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: transform 0.3s, box-shadow 0.3s;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .discover-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .arrow-circle {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .signature {
            font-family: 'Brush Script MT', cursive;
            font-size: 32px;
            color: #1a1a1a;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .about-content {
                gap: 40px;
            }

            .about-text h1 {
                font-size: 40px;
            }
        }

        @media (max-width: 768px) {
            .home-about-us-section {
                padding: 40px 15px;
            }

            .trusted-by {
                padding: 25px;
                justify-content: center;
                text-align: center;
            }

            .company-logos {
                justify-content: center;
                gap: 25px;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .about-image {
                order: 1;
            }

            .about-text {
                order: 2;
            }

            .about-text h1 {
                font-size: 36px;
            }

            .feature-boxes {
                grid-template-columns: 1fr;
            }

            .experience-badge {
                width: 150px;
                height: 150px;
            }

            .experience-badge h2 {
                font-size: 52px;
            }

            .experience-badge p {
                font-size: 11px;
            }

            .star-decoration {
                width: 50px;
                height: 50px;
                left: -15px;
            }

            .diamond-decoration {
                width: 40px;
                height: 40px;
                right: -15px;
                display: none;
            }
        }

        @media (max-width: 480px) {
            .about-text h1 {
                font-size: 28px;
            }

            .feature-boxes {
                gap: 15px;
            }

            .feature-box {
                padding: 20px;
            }

            .discover-btn {
                width: 100%;
                justify-content: center;
            }

            .bottom-section {
                flex-direction: column;
                align-items: center;
            }

            .experience-badge {
                width: 130px;
                height: 130px;
            }

            .experience-badge h2 {
                font-size: 44px;
            }

            .trusted-by {
                padding: 20px;
            }

            .company-logos {
                gap: 15px;
            }

            .company-logo {
                width: 70px;
                height: 35px;
            }
        }
h1 {
  font-family: 'Great Vibes', cursive !important;
  font-size: 3.2rem;
  /* color: #ffffff; */
  font-weight: 400;
}
h2 {
  font-family: 'Great Vibes', cursive !important;
  font-size: 2.2rem;
  /* color: #ffffff; */
  font-weight: 350;
}
h3 {
  font-family: 'Great Vibes', cursive !important;
  font-size: 1.2rem;
  /* color: #ffffff; */
  font-weight: 300;
}

/* /////////////////////////////////// home page section 3 ////////////// */
  /* ===== Variables (neutral interior palette) ===== */
  :root{
    --hs-ink:#141414;
    --hs-muted:#60636b;
    --hs-card:#ffffff;
    --hs-line:#e9e9ef;
    --hs-soft:#f4f5f7;
    --hs-shadow:0 12px 30px rgba(17,24,39,.08);
    --hs-shadow-hover:0 16px 42px rgba(17,24,39,.12);
  }

  *{box-sizing:border-box}
  body{margin:0;font-family:'Trebuchet MS', sans-serif;color:var(--hs-ink);background:#fff}

  /* ===== Section ===== */
  .home-service{max-width:1200px;margin:0 auto;padding:56px 20px 84px}
  .home-service__head{text-align:center;margin-bottom:28px}
  .home-service__eyebrow{
    margin:0 0 8px;font-size:clamp(26px,3.6vw,36px);font-weight:800;letter-spacing:.06em
  }
  .home-service__subtitle{
    margin:0;color:var(--hs-muted);
    font-size:clamp(16px,2.2vw,22px)
  }

  /* ===== Grid ===== */
  .home-service__grid{
    display:grid;gap:28px;grid-template-columns:repeat(3,1fr)
  }
  @media (max-width:992px){ .home-service__grid{grid-template-columns:repeat(2,1fr)} }
  @media (max-width:640px){ .home-service__grid{grid-template-columns:1fr} }

  /* ===== Card ===== */
  .home-service__card{
    background:var(--hs-card);border:1px solid var(--hs-line);border-radius:18px;overflow:clip;
    box-shadow:var(--hs-shadow);transition:transform .28s ease,box-shadow .28s ease,border-color .28s ease;
    isolation:isolate;position:relative
  }
  .home-service__card:hover{transform:translateY(-6px);box-shadow:var(--hs-shadow-hover);border-color:#dcdde3}
  .home-service__card::after{
    content:"";position:absolute;inset:0;
    background:radial-gradient(80% 50% at 50% 0,rgba(0,0,0,.06),transparent 52%);
    opacity:0;transition:opacity .28s ease;pointer-events:none
  }
  .home-service__card:hover::after{opacity:1}

  /* ===== Media with hover cross-fade ===== */
  .home-service__media{position:relative;aspect-ratio:16/10;overflow:hidden}
  .home-service__img{
    position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block;
    transform:scale(1.02);transition:opacity .6s ease,transform .6s ease
  }
  .home-service__img--base{opacity:1;z-index:1}
  .home-service__img--hover{opacity:0;z-index:2}
  .home-service__card:hover .home-service__img--base{opacity:0;transform:scale(1.04)}
  .home-service__card:hover .home-service__img--hover{opacity:1;transform:scale(1.06)}
  @media (prefers-reduced-motion:reduce){
    .home-service__img{transition:opacity .2s linear}
  }

  /* ===== Body ===== */
  .home-service__body{padding:22px}
  .home-service__title{margin:0 0 8px;font-size:20px;line-height:1.25;font-weight:800}
  .home-service__text{margin:0 0 14px;color:var(--hs-muted);line-height:1.65;font-size:14.5px}

  /* chips */
  .home-service__chips{display:flex;flex-wrap:wrap;gap:10px}
  .home-service__chips span{
    font-size:12.5px;padding:7px 10px;border-radius:999px;background:var(--hs-soft);
    border:1px solid var(--hs-line);color:#2a2d33;transition:background .25s,color .25s,border-color .25s
  }
  .home-service__card:hover .home-service__chips span{background:#111827;color:#fff;border-color:#111827}

/* /////////////////////////// section 4 ////////////////////////////////// */
  :root{
    /* Sophisticated interior palette */
    --ink:#121315;
    --muted:#6b7079;
    --card:#ffffff;
    --line:#e8e9ee;
    --soft:#f6f7f9;
    --gold:#c6a76f;
    --gold-2:#b9965b;
    --shadow:0 12px 30px rgba(17,24,39,.10);
    --shadow-lg:0 18px 48px rgba(17,24,39,.14);
  }
  *{box-sizing:border-box}
  body{margin:0;font-family:'Trebuchet MS', sans-serif;color:var(--ink);background:#fff}

  /* ===== Spotlight Section ===== */
  .inter-spotlight{
    max-width:1200px;margin:0 auto;padding:68px 20px;
  }
  .inter-spotlight__head{
    text-align:center;margin-bottom:32px;
  }
  .inter-spotlight__eyebrow{
    display:inline-block;font-weight:800;letter-spacing:.12em;
    font-size:12px;color:var(--gold);text-transform:uppercase;
  }
  .inter-spotlight__title{
    margin:.35rem 0 0;font-size:clamp(26px,4.2vw,44px);line-height:1.08;font-weight:800;
  }
  .inter-spotlight__subtitle{
    margin:.6rem auto 0;max-width:720px;color:var(--muted);
    font-size:clamp(14px,2vw,18px);
  }

  .inter-spotlight__grid{
    display:grid;grid-template-columns:1.2fr .8fr;gap:28px;align-items:stretch;
  }
  @media (max-width:980px){ .inter-spotlight__grid{grid-template-columns:1fr} }

  /* ===== Before/After Card ===== */
  .inter-spotlight__ba{
    position:relative;border-radius:20px;background:var(--card);
    border:1px solid var(--line);overflow:hidden;box-shadow:var(--shadow);
  }
  .inter-spotlight__ba-head{
    position:absolute;z-index:3;left:18px;top:18px;background:#ffffffb3;
    backdrop-filter: blur(6px);
    border:1px solid var(--line);border-radius:999px;padding:8px 12px;font-weight:700;font-size:12px;letter-spacing:.08em;
  }
  .inter-spotlight__ba-frame{
    position:relative;aspect-ratio: 16/10;overflow:hidden;
  }
  .inter-spotlight__ba-img{
    position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block;
    transform:scale(1.02);
  }
  /* overlay (After) clipped by slider */
  .inter-spotlight__ba-after{
    clip-path: inset(0 0 0 50%); /* start at middle */
    transition: clip-path .2s linear;
  }
  /* Divider / Handle */
  .inter-spotlight__ba-divider{
    position:absolute;inset:0;pointer-events:none; /* line */
    background:linear-gradient(90deg, transparent calc(var(--x,50%) - .75px), var(--gold) calc(var(--x,50%) - .75px), var(--gold) calc(var(--x,50%) + .75px), transparent calc(var(--x,50%) + .75px));
    z-index:2;
  }
  .inter-spotlight__ba-handle{
    position:absolute;top:50%;left:calc(var(--x,50%));transform:translate(-50%,-50%);
    width:58px;height:58px;border-radius:50%;
    background:radial-gradient(100% 100% at 30% 30%, var(--gold), var(--gold-2));
    box-shadow:0 10px 18px rgba(198,167,111,.35), inset 0 0 0 6px #ffffffd9;
    display:grid;place-items:center;cursor:ew-resize;z-index:3;border:none;
  }
  .inter-spotlight__ba-handle:after{
    content:"⇔"; color:#fff; font-weight:800; font-size:20px; letter-spacing:.08em;
  }

  .inter-spotlight__ba-foot{
    padding:16px 18px;border-top:1px solid var(--line);display:flex;gap:14px;flex-wrap:wrap;align-items:center;justify-content:space-between;background:var(--card)
  }
  .inter-spotlight__badges{display:flex;flex-wrap:wrap;gap:10px}
  .inter-spotlight__chip{
    padding:7px 10px;border-radius:999px;border:1px solid var(--line);background:var(--soft);
    font-size:12.5px;color:#2a2d33;
  }
  .inter-spotlight__cta{
    appearance:none;border:none;border-radius:999px;background:var(--ink);color:#fff;
    padding:10px 18px;font-weight:800;letter-spacing:.03em;box-shadow:var(--shadow);
    cursor:pointer;transition:transform .2s ease, box-shadow .2s ease, filter .2s ease;
  }
  .inter-spotlight__cta:hover{transform:translateY(-2px);box-shadow:var(--shadow-lg);filter:saturate(1.02)}

  /* ===== Right Column: Text Card ===== */
  .inter-spotlight__card{
    background:var(--card);border:1px solid var(--line);border-radius:20px;box-shadow:var(--shadow);
    padding:24px;
    display:flex;flex-direction:column;gap:14px;justify-content:center;
  }
  .inter-spotlight__kicker{color:var(--gold);font-weight:700;letter-spacing:.12em;font-size:12px}
  .inter-spotlight__h3{margin:2px 0 6px;font-size:26px;line-height:1.15;font-weight:800}
  .inter-spotlight__p{margin:0;color:var(--muted);line-height:1.7}
  .inter-spotlight__list{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:4px}
  .inter-spotlight__li{
    background:var(--soft);border:1px solid var(--line);border-radius:12px;padding:10px 12px;font-size:13px;
  }
  .inter-spotlight__stat{
    display:flex;gap:14px;align-items:center;border-top:1px dashed var(--line);padding-top:12px;margin-top:6px
  }
  .inter-spotlight__stat-num{font-size:28px;font-weight:800}
  .inter-spotlight__stat-cap{color:var(--muted);font-size:13px}

/* ///////////////////////////////////////////// section 5 ////////////////////////////////////////////////////////////////// */
:root{
  --ink:#121316;
  --muted:#6b7079;
  --card:#ffffff;
  --line:#e6e7ec;
  --gold:#c6a76f;
  --gold-2:#b9965b;
  --shadow:0 10px 28px rgba(17,24,39,.10);
  --shadow-lg:0 18px 50px rgba(17,24,39,.14);
}

*{box-sizing:border-box}
body{margin:0;background:#fff;color:var(--ink);font-family:'Trebuchet MS', sans-serif;}

/* ============== SECTION ============== */
.home-experience{max-width:1200px;margin:80px auto;padding:0 20px}
.home-experience__head{text-align:center;margin-bottom:28px}
.home-experience__title{font-size:clamp(26px,3.6vw,36px);font-weight:800;margin:0 0 8px}
.home-experience__sub{margin:0;color:var(--muted);font-size:clamp(14px,2.1vw,18px)}

/* ============== WRAPPER ============== */
.hx{position:relative;border-radius:18px;overflow:hidden;background:var(--card);border:1px solid var(--line);box-shadow:var(--shadow)}

/* headers */
.hx__head{display:grid;grid-template-columns:1fr 1fr;background:#14151a;color:#fff;position:relative}
.hx__h{padding:18px;text-align:center;font-weight:800;letter-spacing:.04em}
.hx__h:first-child{position:relative}
.hx__h:first-child::after{
  content:"";position:absolute;left:20px;right:20px;bottom:10px;height:2px;
  background:linear-gradient(90deg,var(--gold),var(--gold-2));border-radius:2px;opacity:.9
}

/* ============== COLUMNS STACK ============== */
.hx__cols{display:grid;grid-template-columns:1fr 1fr;position:relative}
.hx__cols::before{
  content:"";position:absolute;top:0;bottom:0;left:50%;width:1.5px;
  background:linear-gradient(180deg,transparent,var(--gold),transparent);
  transform:translateX(-.75px);opacity:.65;pointer-events:none
}
.hx__col{background:#fff}

.hx__item{
  position:relative;padding:20px 22px;min-height:86px;border-top:1px solid var(--line);
  transition:transform .25s ease,box-shadow .25s ease,background .25s ease
}
.hx__col .hx__item:first-child{border-top:0}
.hx__item:hover{transform:translateY(-3px);box-shadow:var(--shadow-lg);background:linear-gradient(180deg,#fff,#fbfaf7)}

/* shared text tokens */
.hx__key{font-size:12px;text-transform:uppercase;letter-spacing:.12em;color:var(--gold);font-weight:800;margin-bottom:4px}
.hx__text{font-size:14.5px;line-height:1.6;color:#2a2e34}
.hx__muted{color:var(--muted)}

/* badges (✓ / ✕) */
.hx__badge{
  position:absolute;top:22px;right:16px;width:28px;height:28px;border-radius:50%;
  display:grid;place-items:center;font-size:14px;font-weight:900;color:#fff;
  box-shadow:0 8px 18px rgba(0,0,0,.12);opacity:0;filter:blur(2px);
  transition:opacity .25s ease,transform .25s ease,filter .25s ease
}
.hx__badge--ok{background:linear-gradient(180deg,#22c55e,#16a34a)}
.hx__badge--no{background:linear-gradient(180deg,#ef4444,#dc2626)}
.hx__item:hover .hx__badge{opacity:1;filter:blur(0);transform:translateY(-1px)}

/* reduced motion */
@media (prefers-reduced-motion:reduce){
  .hx__item{transition:none}
  .hx__item:hover{transform:none;box-shadow:var(--shadow)}
  .hx__badge{transition:none}
}

/* responsive */
@media (max-width:860px){
  .hx__head,.hx__cols{grid-template-columns:1fr}
  .hx__cols::before{display:none}
}

/* ///////////////////////////////////////////////////// section 5 //////////////////////////// */
:root{
  --hs5-ink:#111317;
  --hs5-muted:#6b7079;
  --hs5-soft:#f6f7f9;
  --hs5-line:#e6e7ec;
  --hs5-brand:#5b8cff;
  --hs5-accent:#b08a33;
  --hs5-card:#ffffff;
  --hs5-shadow:0 14px 40px rgba(17,24,39,.12);
}
*{box-sizing:border-box}
body{margin:0;font-family:'Trebuchet MS', sans-serif;color:var(--hs5-ink);background:#f4f5f7}

/* ============ SECTION ============ */
.home-section5{
  padding:64px 20px;
}
.home-section5__wrap{
  max-width:1100px;margin:0 auto;position:relative;
  background:radial-gradient(90% 120% at 10% 0, #ffffff 0%, #ffffff 45%, #fbfbff 80%),
             linear-gradient(0deg,#fff,#fff);
  border:1px solid var(--hs5-line);
  border-radius:22px;
  box-shadow:var(--hs5-shadow);
  overflow:hidden;
}

/* subtle corner accents */
.home-section5__wrap:before,
.home-section5__wrap:after{
  content:""; position:absolute; width:160px; height:160px; border-radius:24px;
  background:conic-gradient(from 120deg at 50% 50%, rgba(91,140,255,.12), transparent 40%, rgba(176,138,51,.10));
  filter:blur(12px); pointer-events:none;
}
.home-section5__wrap:before{top:-60px;left:-60px}
.home-section5__wrap:after{bottom:-60px;right:-60px}

/* floating badge */
.home-section5__badge{
  position:absolute; top:14px; right:14px;
  background:linear-gradient(180deg,#111317,#2a2f39);
  color:#fff; font-weight:700; font-size:12px; letter-spacing:.08em;
  border:1px solid rgba(255,255,255,.18);
  padding:8px 12px; border-radius:999px; z-index:2;
  box-shadow:0 10px 20px rgba(0,0,0,.12);
}

/* grid */
.home-section5__grid{
  display:grid; grid-template-columns: 1.05fr 1fr; gap:30px; align-items:center;
  padding:28px;
}
@media (max-width:930px){
  .home-section5__grid{grid-template-columns:1fr; padding:22px; gap:22px}
}

/* media block (unique mask + frame) */
.home-section5__media{
  position:relative; isolation:isolate;
}
.home-section5__frame{
  position:absolute; inset:0; border-radius:20px;
  background:
    linear-gradient(180deg, rgba(91,140,255,.18), rgba(91,140,255,0) 45%),
    radial-gradient(80% 90% at 85% 15%, rgba(176,138,51,.18), transparent 60%);
  z-index:0;
}
.home-section5__imgwrap{
  position:relative; border-radius:20px; overflow:hidden; z-index:1;
  /* angled mask makes it different from common rectangles */
  clip-path:polygon(0 0,100% 0,100% 85%,92% 100%,0 100%);
  border:1px solid var(--hs5-line);
  background:#ddd;
}
.home-section5__img{
  width:100%; display:block; aspect-ratio: 16 / 10; object-fit:cover;
  transition:transform .35s ease;
}
.home-section5__imgwrap:hover .home-section5__img{ transform:scale(1.03) }

/* content */
.home-section5__content{padding:8px 6px}
.home-section5__eyebrow{
  display:inline-block; font-size:12px; letter-spacing:.12em; font-weight:800; text-transform:uppercase;
  color:var(--hs5-accent); background:#fff7e7; border:1px solid #ffe6b5;
  padding:6px 10px; border-radius:999px; margin-bottom:12px;
}
.home-section5__title{
  font-size:clamp(24px,3.4vw,36px); line-height:1.2; margin:6px 0 10px; font-weight:800;
}
.home-section5__text{
  color:var(--hs5-muted); font-size:15.5px; line-height:1.75; margin:0 0 16px;
}
.home-section5__bullets{
  display:grid; gap:10px; margin:14px 0 20px; padding:0; list-style:none;
}
.home-section5__bullets li{
  display:flex; gap:10px; align-items:flex-start; font-size:15px; color:#2a2f39;
}
.home-section5__dot{
  width:9px;height:9px;border-radius:50%;
  background:linear-gradient(180deg,#171818); margin-top:.45rem; flex:0 0 auto;
}

/* ctas */
.home-section5__cta{
  display:flex; gap:12px; flex-wrap:wrap;
}
.home-section5__btn{
  appearance:none; border:0; cursor:pointer; font-weight:700; border-radius:14px;
  padding:12px 18px; font-size:14px;
}
.home-section5__btn--primary{
  background:linear-gradient(180deg,#727274); color:#fff;
  box-shadow:0 10px 18px rgba(139, 139, 140, 0.28);
}
.home-section5__btn--ghost{
  background:#fff; color:#2a2f39; border:1px solid var(--hs5-line)
}

/* reduced motion */
@media (prefers-reduced-motion:reduce){
  .home-section5__img{transition:none}
}

/* /////////////////////////////////////////////////////// section 6 ///////////////////////////////////////////////// */
:root{
  --t-ink:#0f0f11;         /* near-black */
  --t-muted:#6c6c72;       /* mid grey */
  --t-line:#e6e6e9;        /* light grey */
  --t-soft:#f6f7f9;        /* page bg */
  --t-card:#ffffff;        /* card */
  --t-accent:#2b2b2f;      /* dark grey accent */
  --t-shadow:0 16px 40px rgba(0,0,0,.10);
}

*{box-sizing:border-box}
body{margin:0;background:var(--t-soft);color:var(--t-ink);font-family:'Trebuchet MS', sans-serif;}

/* ================= TESTIMONIALS ================= */
.home-testimonials{padding:20px 20px}
.home-testimonials__wrap{max-width:1100px;margin:0 auto}

.home-testimonials__head{text-align:center;margin-bottom:26px}
.home-testimonials__eyebrow{
  display:inline-block;font-size:12px;letter-spacing:.12em;font-weight:800;text-transform:uppercase;
  color:#222;background:#fff;border:1px solid var(--t-line);padding:6px 10px;border-radius:999px;margin-bottom:10px
}
.home-testimonials__title{font-size:clamp(22px,3.2vw,34px);font-weight:800;margin:8px 0 6px}
.home-testimonials__sub{margin:0;color:var(--t-muted);font-size:15.5px}

/* layout: grid on md+, snap carousel on small */
.home-testimonials__scroller{display:grid;gap:18px;margin-top:22px}
@media (min-width:700px){ .home-testimonials__scroller{grid-template-columns:repeat(2,1fr)} }
@media (min-width:1024px){ .home-testimonials__scroller{grid-template-columns:repeat(3,1fr)} }

/* mobile: horizontal snap with no JS */
@media (max-width:699px){
  .home-testimonials__scroller{display:flex;overflow-x:auto;scroll-snap-type:x mandatory;padding-bottom:6px}
  .home-testimonials__card{min-width:80%;scroll-snap-align:center}
}

/* card */
.home-testimonials__card{
  position:relative;background:var(--t-card);border:1px solid var(--t-line);border-radius:18px;overflow:hidden;
  box-shadow:var(--t-shadow);
}
.home-testimonials__card::before{
  /* subtle monochrome frame */
  content:"";position:absolute;inset:0;border-radius:18px;padding:1px;background:
    linear-gradient(135deg,rgba(0,0,0,.20),rgba(0,0,0,.06));
  -webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;mask-composite:exclude;pointer-events:none
}
.home-testimonials__inner{padding:20px}

/* header */
.home-testimonials__top{display:flex;align-items:center;gap:12px;margin-bottom:12px}
.home-testimonials__avatar{width:50px;height:50px;border-radius:50%;flex:0 0 auto;overflow:hidden;border:1px solid var(--t-line);background:#ddd}
.home-testimonials__avatar img{width:100%;height:100%;object-fit:cover;display:block}
.home-testimonials__name{font-weight:700;margin:0}
.home-testimonials__role{margin:0;color:var(--t-muted);font-size:13px}

/* rating (monochrome) */
.home-testimonials__stars{display:flex;gap:4px;margin:6px 0 10px}
.home-testimonials__star{
  width:18px;height:18px;display:inline-block;background:linear-gradient(180deg,#222,#555);
  -webkit-mask:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"><path fill="black" d="M12 .587l3.668 7.431 8.2 1.192-5.934 5.786 1.402 8.172L12 18.896l-7.336 3.272 1.402-8.172L.132 9.21l8.2-1.192z"/></svg>') center/contain no-repeat;
  mask:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"><path fill="black" d="M12 .587l3.668 7.431 8.2 1.192-5.934 5.786 1.402 8.172L12 18.896l-7.336 3.272 1.402-8.172L.132 9.21l8.2-1.192z"/></svg>') center/contain no-repeat;
}

/* quote */
.home-testimonials__quote{margin:0;color:#2a2f39;line-height:1.7;font-size:15px;position:relative;padding-left:32px}
.home-testimonials__quote:before{content:"“";position:absolute;left:8px;top:-8px;font-size:36px;line-height:1;color:rgba(0,0,0,.12);font-weight:800}

/* footer */
.home-testimonials__footer{display:flex;justify-content:space-between;align-items:center;margin-top:16px}
.home-testimonials__tag{
  font-size:12px;letter-spacing:.08em;font-weight:800;text-transform:uppercase;color:#222;
  background:#f2f2f2;border:1px solid var(--t-line);border-radius:999px;padding:6px 10px
}
.home-testimonials__date{color:var(--t-muted);font-size:12px}

/* CTA */
.home-testimonials__cta{display:flex;justify-content:center;margin-top:22px}
.home-testimonials__btn{
  appearance:none;border:1px solid #d4d4d8;background:#fff;color:#111;border-radius:14px;padding:12px 18px;
  font-size:14px;font-weight:700;cursor:pointer
}
.home-testimonials__btn:disabled{opacity:.6;cursor:not-allowed}

/* reduced motion */
@media (prefers-reduced-motion:reduce){
  .home-testimonials__scroller{scroll-behavior:auto}
}

/* //////////////////////////////////// footer ///////////////////////////////////////////////////// */
:root{
  --hm-black:#0f0f0f;
  --hm-dark:#1c1c1c;
  --hm-grey:#4f4f4f;
  --hm-light-grey:#d1d1d1;
  --hm-soft:#f7f7f7;
  --hm-white:#ffffff;
  --hm-shadow:0 14px 40px rgba(0,0,0,.15);
}

*{box-sizing:border-box}
.houzzmood-footer{
  font-family:'Trebuchet MS', sans-serif !important;
 background: linear-gradient(135deg, #e5e5e5 0%,#6b6b6b 50%,#2b2b2b 0%) ;
  color:var(--hm-black);
  overflow:hidden;
}
.houzzmood-footer__topbar{
  height:10px;
  background:linear-gradient(90deg,rgba(0,0,0,.25),rgba(255,255,255,.05),rgba(0,0,0,.25));
}

/* container */
.houzzmood-footer__shell{
  max-width:1200px;
  margin:0 auto;
  padding:60px 20px 30px;
}

/* grid */
.houzzmood-footer__grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr 1.3fr;
  gap:30px;
}
@media(max-width:1000px){.houzzmood-footer__grid{grid-template-columns:1fr 1fr}}
@media(max-width:650px){.houzzmood-footer__grid{grid-template-columns:1fr}}

/* brand */
.houzzmood-footer__brand{display:flex;flex-direction:column;gap:12px}
.houzzmood-footer__logo{
  display:flex;align-items:center;gap:10px;
  font-weight:800;font-size:22px;color:var(--hm-black);
}
.houzzmood-footer__logo-badge{
  width:38px;height:38px;border-radius:10px;
  background:var(--hm-black);color:var(--hm-white);
  display:grid;place-items:center;font-weight:800;
}
.houzzmood-footer__text{margin:0;color:var(--hm-black);line-height:1.75;font-size:14.5px}

/* links */
.houzzmood-footer__title{margin:0 0 10px;font-weight:800;color:var(--hm-black)}
.houzzmood-footer__list{list-style:none;margin:0;padding:0;display:grid;gap:8px}
.houzzmood-footer__link{
  text-decoration:none;color:var(--hm-white);
  font-size:14.5px;transition:color .2s ease;
}
.houzzmood-footer__link:hover{color:var(--hm-grey)}

/* newsletter */
.houzzmood-footer__card{
  background:var(--hm-white);
  border:1px solid var(--hm-light-grey);
  border-radius:16px;
  padding:18px;
  box-shadow:var(--hm-shadow);
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  height:auto; /* fixed clipping issue */
}
.houzzmood-footer__inputrow{display:flex;gap:10px;margin-top:12px;flex-wrap:wrap}
.houzzmood-footer__input{
  flex:1;
  border:1px solid var(--hm-light-grey);
  border-radius:10px;
  padding:12px 14px;
  font-size:14px;
}
.houzzmood-footer__btn{
  border:0;
  background:var(--hm-black);
  color:var(--hm-white);
  border-radius:10px;
  padding:12px 18px;
  font-weight:700;
  cursor:pointer;
}
.houzzmood-footer__btn:hover{background:var(--hm-grey)}
.houzzmood-footer__note{margin:8px 0 0;color:var(--hm-grey);font-size:12px}

/* social */
.houzzmood-footer__social{display:flex;gap:10px;margin-top:10px;flex-wrap:wrap}
.houzzmood-footer__icon{
  width:36px;height:36px;border-radius:8px;
  border:1px solid var(--hm-light-grey);
  background:#fff;
  display:grid;place-items:center;
  transition:transform .2s ease,box-shadow .2s ease;
}
.houzzmood-footer__icon:hover{transform:translateY(-3px);box-shadow:0 8px 14px rgba(0,0,0,.12)}

/* bottom */
.houzzmood-footer__bottom{
  border-top:1px solid var(--hm-light-grey);
  margin-top:40px;
  padding-top:16px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  color:var(--hm-white);
  font-size:13px;
}
.houzzmood-footer__toplink{
  text-decoration:none;
  color:var(--hm-white);
  background:var(--hm-black);
  border-radius:8px;
  padding:8px 12px;
  font-weight:700;
}


/* //////////////////////////////////////////////////////////// about us page /////////////////////////// */
:root{
    /* change this to your banner image */
    --about-hero-img: url('Images/image/01-1-1.jpg');
  }

  .about-hero{
    /* keep it tight under the header */
    margin-top:0;
    position:relative;
    min-height:320px;            /* sensible minimum */
    height:40vh;   
    margin-top: 25px;              /* requested height */
    max-height:520px;            /* cap for huge screens */
    display:grid;
    place-items:center;
    color:#fff;
    isolation:isolate;           /* keep overlay effects local */
    background:
      linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.45)), /* soft dark overlay */
      var(--about-hero-img) center/cover no-repeat;
  }

  /* Optional: set image inline instead of root var (see example below) */
  .about-hero[data-img]{ 
    background:
      linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.45)),
      var(--_img, var(--about-hero-img)) center/cover no-repeat;
  }

  .about-hero__inner{
    width:100%;
    max-width:1200px;
    padding:0 20px;
    text-align:center;
    position:relative;
    z-index:2;
  }

  .about-hero__eyebrow{
    display:inline-block;
    background:rgba(255,255,255,.15);
    border:1px solid rgba(255,255,255,.25);
    color:#f0f0f0;
    padding:6px 10px;
    border-radius:999px;
    font-size:12px;
    font-weight:800;
    letter-spacing:.12em;
    text-transform:uppercase;
    margin-bottom:10px;
  }

  .about-hero__title{
    margin:6px 0 8px;
    font-weight:800;
    font-size:clamp(22px,3.6vw,40px);
    line-height:1.15;
  }

  .about-hero__sub{
    margin:0;
    font-size:clamp(13px,2vw,16px);
    color:#e5e5e5;
  }

  /* If your header adds a drop shadow, keep text crisp */
  @media (prefers-reduced-motion:reduce){
    /* no animations used; placeholder for future */
  }


  /* //////////////////////////////////// about section 2 //////////////////////////////// */
   :root{
    --au-ink:#0f0f0f;
    --au-muted:#6b6b70;
    --au-line:#e6e6e9;
    --au-soft:#f6f7f9;
    --au-card:#ffffff;
    --au-shadow:0 18px 44px rgba(0,0,0,.12);
  }

  .aboutus{background:#fff;color:var(--au-ink);padding:56px 20px}
  .aboutus__shell{max-width:1200px;margin:0 auto}

  /* Head */
  .aboutus__eyebrow{
    display:inline-block;background:#fff;border:1px solid var(--au-line);color:#222;
    padding:6px 10px;border-radius:999px;font-size:12px;font-weight:800;letter-spacing:.12em;text-transform:uppercase
  }
  .aboutus__title{margin:10px 0 8px;font-weight:800;font-size:clamp(22px,3.6vw,36px);line-height:1.2}
  .aboutus__sub{margin:0;color:var(--au-muted);font-size:15.5px}
  .aboutus__head{text-align:center;margin-bottom:28px}

  /* Top composite */
  .aboutus__top{
    display:grid;gap:24px;margin-top:12px;
    grid-template-columns: 1.05fr 1fr;
  }
  @media (max-width:980px){ .aboutus__top{grid-template-columns:1fr} }

  .aboutus__intro p{color:#2a2a2f;line-height:1.8;margin:0 0 16px}
  .aboutus__stats{
    list-style:none;display:grid;gap:12px;margin:0;padding:0;
    grid-template-columns:repeat(3, minmax(0,1fr));
  }
  @media (max-width:520px){ .aboutus__stats{grid-template-columns:repeat(2,1fr)} }
  .aboutus__stat-num{display:block;font-weight:900;font-size:clamp(22px,3vw,28px)}
  .aboutus__unit{font-size:.6em;margin-left:2px}
  .aboutus__stat-label{color:var(--au-muted);font-size:13px}

  /* Collage */
  .aboutus__collage{
    position:relative;display:grid;gap:14px;
    grid-template-areas:
      "A B"
      "A C";
    grid-template-columns:1fr 1fr;
  }
  @media (max-width:520px){
    .aboutus__collage{grid-template-areas:"A" "B" "C";grid-template-columns:1fr}
  }
  .aboutus__shot{border:1px solid var(--au-line);border-radius:16px;overflow:hidden;background:#ddd}
  .aboutus__shot img{width:100%;height:100%;object-fit:cover;display:block;aspect-ratio: 4/3}
  .aboutus__shot--a{grid-area:A}
  .aboutus__shot--b{grid-area:B}

  .aboutus__card{
    grid-area:C;background:var(--au-card);border:1px solid var(--au-line);border-radius:16px;
    padding:16px;box-shadow:var(--au-shadow)
  }
  .aboutus__card h3{margin:0 0 8px;font-size:16px}
  .aboutus__card ul{margin:0;padding-left:18px;color:#2a2a2f}
  .aboutus__card li{margin:6px 0}

  /* Pillars */
  .aboutus__pillars{
    display:grid;gap:16px;margin:28px 0 6px;
    grid-template-columns:repeat(4, minmax(0,1fr));
  }
  @media (max-width:980px){ .aboutus__pillars{grid-template-columns:repeat(2,1fr)} }
  @media (max-width:520px){ .aboutus__pillars{grid-template-columns:1fr} }

  .aboutus__pillar{
    background:#fff;border:1px solid var(--au-line);border-radius:16px;padding:16px;
    box-shadow:var(--au-shadow)
  }
  .aboutus__pillar h3{margin:10px 0 6px;font-size:16px}
  .aboutus__pillar p{margin:0;color:#2a2a2f;line-height:1.7}
  .aboutus__icon{
    width:40px;height:40px;border-radius:10px;border:1px solid var(--au-line);
    background:#fff;display:grid;place-items:center
  }

  /* Process */
  .aboutus__process{
    display:grid;gap:12px;margin:22px 0;
    grid-template-columns:repeat(3, minmax(0,1fr));
  }
  @media (max-width:980px){ .aboutus__process{grid-template-columns:1fr} }

  .aboutus__step{
    display:flex;gap:12px;align-items:flex-start;
    background:#fff;border:1px solid var(--au-line);border-radius:14px;padding:14px;
  }
  .aboutus__step h4{margin:0 0 4px}
  .aboutus__step p{margin:0;color:#2a2a2f}
  .aboutus__step-num{
    flex:0 0 auto;display:grid;place-items:center;width:36px;height:36px;border-radius:10px;
    background:#111;color:#fff;font-weight:900;font-size:12px;letter-spacing:.08em
  }

  /* CTA */
  .aboutus__cta{
    margin-top:8px;border:1px dashed var(--au-line);border-radius:16px;padding:16px;
    display:flex;gap:12px;align-items:center;justify-content:space-between;flex-wrap:wrap
  }
  .aboutus__btn{
    text-decoration:none;background:#111;color:#fff;border-radius:12px;padding:12px 16px;font-weight:800
  }

  /* /////////////////////////////// about us section 3 /////////////////////// */
  :root {
  --black: #0f0f0f;
  --gray-dark: #2b2b2b;
  --gray-light: #f3f3f3;
  --white: #ffffff;
}

/* Main Section */
.aboutus-main {
  background: var(--white);
  color: var(--black);
  padding: 60px 5%;
  font-family: 'Poppins', sans-serif;
}

/* Story Section */
.aboutus-story {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 70px;
  flex-wrap: wrap;
}
.aboutus-story-content {
  flex: 1 1 450px;
}
.aboutus-story-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.aboutus-story-content p {
  color: var(--gray-dark);
  line-height: 1.8;
  margin-bottom: 15px;
}
.aboutus-story-image {
  flex: 1 1 450px;
  overflow: hidden;
  border-radius: 12px;
}
.aboutus-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.aboutus-story-image img:hover {
  transform: scale(1.05);
}

/* Expertise Section */
.aboutus-expertise {
  text-align: center;
  margin-bottom: 70px;
}
.aboutus-section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  position: relative;
}
.aboutus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}
.aboutus-card {
  background: rgb(95, 93, 93);
  color: rgb(255, 255, 255);
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #ddd;
}
.aboutus-card:hover {
  background: var(--black);
  color: white;
  transform: translateY(-6px);
}
.aboutus-card i {
  font-size: 30px;
  margin-bottom: 15px;
  color: var(--white);
}
.aboutus-card:hover i {
  color: var(--white);
}
.aboutus-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.aboutus-card p {
  font-size: 0.9rem;
  color: var(--white);
}


/* Vision Section */
.aboutus-vision {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap-reverse;
}
.aboutus-vision-image {
  flex: 1 1 450px;
  border-radius: 12px;
  overflow: hidden;
}
.aboutus-vision-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aboutus-vision-content {
  flex: 1 1 450px;
}
.aboutus-vision-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.aboutus-vision-content p {
  color: var(--gray-dark);
  line-height: 1.8;
  margin-bottom: 20px;
}
.aboutus-btn {
  display: inline-block;
  padding: 12px 25px;
  background: var(--black);
  color: var(--white);
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.aboutus-btn:hover {
  background: var(--gray-dark);
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .aboutus-story,
  .aboutus-vision {
    flex-direction: column;
  }
  .aboutus-story-content h2,
  .aboutus-vision-content h2 {
    font-size: 1.6rem;
  }
}

/* //////////////////////////////////////////// about us section 4 ////////////////////////////////////////// */
:root{
  --ink:#0f0f0f;
  --muted:#6c6c72;
  --line:#e6e6e9;
  --soft:#f6f7f9;
  --card:#ffffff;

  /* speed controls */
  --marquee-speed: 30s;   /* slower -> bigger number, faster -> smaller number */
  --avatar-size: 170px;   /* global avatar diameter */
}

/* Shell/Head */
.hm-team-marquee{background:#fff;color:var(--ink);padding:48px 20px;font-family: 'Great Vibes', cursive !important;}
.hm-team-m__shell{max-width:1200px;margin:0 auto}
.hm-team-m__head{text-align:center;margin-bottom:18px}
.hm-team-m__eyebrow{
  display:inline-block;font-size:12px;letter-spacing:.12em;font-weight:800;text-transform:uppercase;
  color:#222;background:#fff;border:1px solid var(--line);padding:6px 10px;border-radius:999px;margin-bottom:10px
}
.hm-team-m__title{font-size:clamp(22px,3vw,32px);font-weight:800;margin:6px 0}

/* Marquee wrapper */
.hm-marquee{overflow:hidden;position:relative;border-top:1px solid var(--line);border-bottom:1px solid var(--line);padding:16px 0}

/* Track – two groups side-by-side for seamless loop */
.hm-track{
  display:flex;flex-wrap:nowrap;align-items:center;gap:24px;
  width:max-content;
  animation: hm-scroll var(--marquee-speed) linear infinite;
}
.hm-marquee:hover .hm-track{animation-play-state: paused;} /* pause on hover */

/* One group (duplicate content) */
.hm-track__group{
  display:flex;flex-wrap:nowrap;align-items:center;gap:24px;
}

/* Member card */
.hm-mem{margin:0}
.hm-ava{
  position:relative;width:var(--avatar-size);height:var(--avatar-size);border-radius:50%;
  display:grid;place-items:center;isolation:isolate;flex:0 0 auto;
}

/* Electric ring (outer) */
.hm-ava::before{
  content:"";position:absolute;inset:-5px;border-radius:50%;
  background: conic-gradient(
    from 0deg,
    rgba(0,0,0,0) 0%,
    rgba(255,255,255,.85) 6%,
    #bfbfbf 14%,
    rgba(0,0,0,0) 22%,
    rgba(255,255,255,.85) 38%,
    #a6a6a6 46%,
    rgba(0,0,0,0) 58%,
    rgba(255,255,255,.85) 70%,
    #d9d9d9 78%,
    rgba(0,0,0,0) 92%,
    rgba(255,255,255,.85) 100%
  );
  filter: blur(.6px) drop-shadow(0 8px 14px rgba(0,0,0,.15));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 7px), #000 calc(100% - 7px));
          mask: radial-gradient(farthest-side, transparent calc(100% - 7px), #000 calc(100% - 7px));
  animation: hm-ring 3.5s linear infinite;
  z-index:0;
}

/* Inner subtle glow */
.hm-ava::after{
  content:"";position:absolute;inset:0;border-radius:50%;
  background: radial-gradient(closest-side, rgba(255,255,255,.35), rgba(255,255,255,0) 60%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 12px), #000 calc(100% - 12px));
          mask: radial-gradient(farthest-side, transparent calc(100% - 12px), #000 calc(100% - 12px));
  z-index:0;
}

/* Circle image: always cover */
.hm-ava img{
  width:100%;height:100%;object-fit:cover;object-position:center;border-radius:50%;
  border:1px solid var(--line);display:block;position:relative;z-index:1;
}

/* Name overlay on hover */
.hm-overlay{
  position:absolute;inset:0;border-radius:50%;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  background:rgba(0,0,0,.45); color:#fff; text-align:center;
  opacity:0; transition:opacity .25s ease; z-index:2; padding:10px;
}
.hm-overlay strong{font-size:16px}
.hm-overlay span{font-size:12px;opacity:.9;margin-top:2px}
.hm-ava:hover .hm-overlay{opacity:1}

/* Animations */
@keyframes hm-scroll{
  from{ transform: translateX(0) }
  to  { transform: translateX(-50%) } /* because we duplicated groups (100% content = 2x group width) */
}
@keyframes hm-ring{ to{ transform: rotate(360deg) } }

/* Responsive sizes */
@media (max-width:900px){ :root{ --avatar-size: 150px } }
@media (max-width:600px){ :root{ --avatar-size: 120px; --marquee-speed: 22s } }

 .hm-ava,
  .hm-team__avatar{
    width: 300px !important;
    height: 300px !important;
    border-radius: 50%;
  }

  /* image should always fill the circle */
  .hm-ava img,
  .hm-team__avatar img{
    width: 100%;
    height: 100%;
    object-fit: cover;       /* cover crop */
    object-position: center; /* center focus */
    border-radius: 50%;
    display: block;
  }

  /* if you used the CSS variable earlier, lock it too */
  :root{
    --avatar-size: 300px !important;
  }

  /* cancel any previous responsive downsizing */
  @media (max-width: 900px), (max-width: 600px){
    :root{ --avatar-size: 300px !important; }
    .hm-ava, .hm-team__avatar{ width:300px !important; height:300px !important; }
  }
  /* ================================================================================================ */
  /* full home interior  */
        body {
            font-family: 'Trebuchet MS', sans-serif !important;
            background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
            overflow-x: hidden;
        }

        .full-home-interior-section-001 {
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        .fhi-header-001 {
            text-align: center;
            margin-bottom: 50px;
            animation: fadeInDown 0.8s ease-out;
        }

        .fhi-heading-001 {
            font-family: 'Georgia', serif;
            font-size: 3.5rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 15px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .fhi-subheading-001 {
            font-family: 'Courier New', monospace;
            font-size: 1.5rem;
            font-weight: 600;
            color: #4a4a4a;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }

        .fhi-caption-001 {
            font-family: 'Trebuchet MS', sans-serif;
            font-size: 1.1rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
            font-style: italic;
        }

        .fhi-filter-buttons-001 {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 50px;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        .fhi-btn-001 {
            font-family: 'Arial', sans-serif;
            font-weight: 600;
            padding: 14px 32px;
            border: 2px solid #333;
            background: white;
            color: #333;
            cursor: pointer;
            font-size: 1rem;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
        }

        .fhi-btn-001::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: #333;
            transition: left 0.3s ease;
            z-index: -1;
        }

        .fhi-btn-001:hover::before,
        .fhi-btn-001.active::before {
            left: 0;
        }

        .fhi-btn-001:hover,
        .fhi-btn-001.active {
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .fhi-gallery-001 {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 25px;
            animation: fadeIn 0.8s ease-out 0.4s both;
        }

        .fhi-gallery-item-001 {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: white;
            aspect-ratio: 4/3;
        }

        .fhi-gallery-item-001.hidden {
            display: none;
        }

        .fhi-gallery-item-001:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
        }

        .fhi-image-001 {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .fhi-gallery-item-001:hover .fhi-image-001 {
            transform: scale(1.1);
        }

        .fhi-overlay-001 {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }

        .fhi-gallery-item-001:hover .fhi-overlay-001 {
            transform: translateY(0);
        }

        .fhi-image-title-001 {
            font-family: 'Georgia', serif;
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        /* Tablet Responsive */
        @media (max-width: 1024px) {
            .fhi-heading-001 {
                font-size: 2.8rem;
            }

            .fhi-subheading-001 {
                font-size: 1.3rem;
            }

            .fhi-caption-001 {
                font-size: 1rem;
            }

            .fhi-gallery-001 {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
                gap: 20px;
            }

            .fhi-btn-001 {
                padding: 12px 24px;
                font-size: 0.95rem;
            }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .full-home-interior-section-001 {
                padding: 40px 15px;
            }

            .fhi-heading-001 {
                font-size: 2rem;
                letter-spacing: 1px;
            }

            .fhi-subheading-001 {
                font-size: 1.1rem;
            }

            .fhi-caption-001 {
                font-size: 0.95rem;
                padding: 0 10px;
            }

            .fhi-filter-buttons-001 {
                gap: 10px;
                margin-bottom: 35px;
            }

            .fhi-btn-001 {
                padding: 10px 20px;
                font-size: 0.85rem;
                letter-spacing: 0.5px;
            }

            .fhi-gallery-001 {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 15px;
            }

            .fhi-image-title-001 {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .fhi-heading-001 {
                font-size: 1.6rem;
            }

            .fhi-subheading-001 {
                font-size: 1rem;
            }

            .fhi-gallery-001 {
                grid-template-columns: 1fr;
            }

            .fhi-btn-001 {
                padding: 10px 16px;
                font-size: 0.8rem;
            }
        }

/* ======================================================================================================== */
/* modular-kitchen-wardrobe-section */

  .modular-kitchen-wardrobe-section-010 {
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        .mkw-header-010 {
            text-align: center;
            margin-bottom: 50px;
            animation: fadeInDown 0.8s ease-out;
        }

        .mkw-heading-010 {
            font-family:  'Great Vibes', cursive !important;
            font-size: 3.5rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 15px;
            letter-spacing: 2px;
            /* text-transform: uppercase; */
        }

        .mkw-subheading-010 {
            font-family:  'Great Vibes', cursive !important;
            font-size: 1.5rem;
            font-weight: 600;
            color: #4a4a4a;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }

        .mkw-caption-010 {
            font-family: 'Trebuchet MS', sans-serif;
            font-size: 1.1rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
            font-style: italic;
        }

        .mkw-filter-buttons-010 {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 50px;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        .mkw-btn-010 {
            font-family: 'Arial', sans-serif;
            font-weight: 600;
            padding: 14px 32px;
            border: 2px solid #333;
            background: white;
            color: #333;
            cursor: pointer;
            font-size: 1rem;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            /* text-transform: uppercase; */
            position: relative;
            overflow: hidden;
        }

        .mkw-btn-010::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: #333;
            transition: left 0.3s ease;
            z-index: -1;
        }

        .mkw-btn-010:hover::before,
        .mkw-btn-010.active::before {
            left: 0;
        }

        .mkw-btn-010:hover,
        .mkw-btn-010.active {
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .mkw-gallery-010 {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 25px;
            animation: fadeIn 0.8s ease-out 0.4s both;
        }

        .mkw-gallery-item-010 {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: white;
            aspect-ratio: 4/3;
        }

        .mkw-gallery-item-010.hidden {
            display: none;
        }

        .mkw-gallery-item-010:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
        }

        .mkw-image-010 {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .mkw-gallery-item-010:hover .mkw-image-010 {
            transform: scale(1.1);
        }

        .mkw-overlay-010 {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }

        .mkw-gallery-item-010:hover .mkw-overlay-010 {
            transform: translateY(0);
        }

        .mkw-image-title-010 {
            font-family: 'Georgia', serif;
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        /* Tablet Responsive */
        @media (max-width: 1024px) {
            .mkw-heading-010 {
                font-size: 2.8rem;
            }

            .mkw-subheading-010 {
                font-size: 1.3rem;
            }

            .mkw-caption-010 {
                font-size: 1rem;
            }

            .mkw-gallery-010 {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
                gap: 20px;
            }

            .mkw-btn-010 {
                padding: 12px 24px;
                font-size: 0.95rem;
            }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .modular-kitchen-wardrobe-section-010 {
                padding: 40px 15px;
            }

            .mkw-heading-010 {
                font-size: 2rem;
                letter-spacing: 1px;
            }

            .mkw-subheading-010 {
                font-size: 1.1rem;
            }

            .mkw-caption-010 {
                font-size: 0.95rem;
                padding: 0 10px;
            }

            .mkw-filter-buttons-010 {
                gap: 10px;
                margin-bottom: 35px;
            }

            .mkw-btn-010 {
                padding: 10px 20px;
                font-size: 0.85rem;
                letter-spacing: 0.5px;
            }

            .mkw-gallery-010 {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 15px;
            }

            .mkw-image-title-010 {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .mkw-heading-010 {
                font-size: 1.6rem;
            }

            .mkw-subheading-010 {
                font-size: 1rem;
            }

            .mkw-gallery-010 {
                grid-template-columns: 1fr;
            }

            .mkw-btn-010 {
                padding: 10px 16px;
                font-size: 0.8rem;
            }
        }
/* ============================================================================================ */
/* hardwares-section  */
  .hardwares-section-011 {
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        .hw-header-011 {
            text-align: center;
            margin-bottom: 50px;
            animation: fadeInDown 0.8s ease-out;
        }

        .hw-heading-011 {
            font-family:  'Great Vibes', cursive !important;
            font-size: 3.5rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 15px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .hw-subheading-011 {
            font-family:  'Great Vibes', cursive !important;
            font-size: 1.5rem;
            font-weight: 600;
            color: #4a4a4a;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }

        .hw-caption-011 {
            font-family: 'Trebuchet MS', sans-serif;
            font-size: 1.1rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
            font-style: italic;
        }

        .hw-filter-buttons-011 {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 50px;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        .hw-btn-011 {
            font-family: 'Arial', sans-serif;
            font-weight: 600;
            padding: 14px 32px;
            border: 2px solid #333;
            background: white;
            color: #333;
            cursor: pointer;
            font-size: 1rem;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
        }

        .hw-btn-011::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: #333;
            transition: left 0.3s ease;
            z-index: -1;
        }

        .hw-btn-011:hover::before,
        .hw-btn-011.active::before {
            left: 0;
        }

        .hw-btn-011:hover,
        .hw-btn-011.active {
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .hw-gallery-011 {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 25px;
            animation: fadeIn 0.8s ease-out 0.4s both;
        }

        .hw-gallery-item-011 {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: white;
            aspect-ratio: 4/3;
        }

        .hw-gallery-item-011.hidden {
            display: none;
        }

        .hw-gallery-item-011:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
        }

        .hw-image-011 {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .hw-gallery-item-011:hover .hw-image-011 {
            transform: scale(1.1);
        }

        .hw-overlay-011 {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }

        .hw-gallery-item-011:hover .hw-overlay-011 {
            transform: translateY(0);
        }

        .hw-image-title-011 {
            font-family: 'Georgia', serif;
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        /* Tablet Responsive */
        @media (max-width: 1024px) {
            .hw-heading-011 {
                font-size: 2.8rem;
            }

            .hw-subheading-011 {
                font-size: 1.3rem;
            }

            .hw-caption-011 {
                font-size: 1rem;
            }

            .hw-gallery-011 {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
                gap: 20px;
            }

            .hw-btn-011 {
                padding: 12px 24px;
                font-size: 0.95rem;
            }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .hardwares-section-011 {
                padding: 40px 15px;
            }

            .hw-heading-011 {
                font-size: 2rem;
                letter-spacing: 1px;
            }

            .hw-subheading-011 {
                font-size: 1.1rem;
            }

            .hw-caption-011 {
                font-size: 0.95rem;
                padding: 0 10px;
            }

            .hw-filter-buttons-011 {
                gap: 10px;
                margin-bottom: 35px;
            }

            .hw-btn-011 {
                padding: 10px 20px;
                font-size: 0.85rem;
                letter-spacing: 0.5px;
            }

            .hw-gallery-011 {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 15px;
            }

            .hw-image-title-011 {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .hw-heading-011 {
                font-size: 1.6rem;
            }

            .hw-subheading-011 {
                font-size: 1rem;
            }

            .hw-gallery-011 {
                grid-template-columns: 1fr;
            }

            .hw-btn-011 {
                padding: 10px 16px;
                font-size: 0.8rem;
            }
        }
/* ==================================================================================== */
/* commercial-interior-section  */

  .commercial-interior-section-013 {
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        .ci-header-013 {
            text-align: center;
            margin-bottom: 50px;
            animation: fadeInDown 0.8s ease-out;
        }

        .ci-heading-013 {
            font-family:  'Great Vibes', cursive !important;
            font-size: 3.5rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 15px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .ci-subheading-013 {
            font-family:  'Great Vibes', cursive !important;
            font-size: 1.5rem;
            font-weight: 600;
            color: #4a4a4a;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }

        .ci-caption-013 {
            font-family: 'Trebuchet MS', sans-serif;
            font-size: 1.1rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
            font-style: italic;
        }

        .ci-filter-buttons-013 {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 50px;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        .ci-btn-013 {
            font-family: 'Arial', sans-serif;
            font-weight: 600;
            padding: 14px 32px;
            border: 2px solid #333;
            background: white;
            color: #333;
            cursor: pointer;
            font-size: 1rem;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
        }

        .ci-btn-013::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: #333;
            transition: left 0.3s ease;
            z-index: -1;
        }

        .ci-btn-013:hover::before,
        .ci-btn-013.active::before {
            left: 0;
        }

        .ci-btn-013:hover,
        .ci-btn-013.active {
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .ci-gallery-013 {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 25px;
            animation: fadeIn 0.8s ease-out 0.4s both;
        }

        .ci-gallery-item-013 {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: white;
            aspect-ratio: 4/3;
        }

        .ci-gallery-item-013.hidden {
            display: none;
        }

        .ci-gallery-item-013:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
        }

        .ci-image-013 {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .ci-gallery-item-013:hover .ci-image-013 {
            transform: scale(1.1);
        }

        .ci-overlay-013 {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }

        .ci-gallery-item-013:hover .ci-overlay-013 {
            transform: translateY(0);
        }

        .ci-image-title-013 {
            font-family: 'Georgia', serif;
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        /* Tablet Responsive */
        @media (max-width: 1024px) {
            .ci-heading-013 {
                font-size: 2.8rem;
            }

            .ci-subheading-013 {
                font-size: 1.3rem;
            }

            .ci-caption-013 {
                font-size: 1rem;
            }

            .ci-gallery-013 {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
                gap: 20px;
            }

            .ci-btn-013 {
                padding: 12px 24px;
                font-size: 0.95rem;
            }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .commercial-interior-section-013 {
                padding: 40px 15px;
            }

            .ci-heading-013 {
                font-size: 2rem;
                letter-spacing: 1px;
            }

            .ci-subheading-013 {
                font-size: 1.1rem;
            }

            .ci-caption-013 {
                font-size: 0.95rem;
                padding: 0 10px;
            }

            .ci-filter-buttons-013 {
                gap: 10px;
                margin-bottom: 35px;
            }

            .ci-btn-013 {
                padding: 10px 20px;
                font-size: 0.85rem;
                letter-spacing: 0.5px;
            }

            .ci-gallery-013 {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 15px;
            }

            .ci-image-title-013 {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .ci-heading-013 {
                font-size: 1.6rem;
            }

            .ci-subheading-013 {
                font-size: 1rem;
            }

            .ci-gallery-013 {
                grid-template-columns: 1fr;
            }

            .ci-btn-013 {
                padding: 10px 16px;
                font-size: 0.8rem;
            }
        }
/* ======================================================================================== */
/* renovation-interior-section  */

   .renovation-interior-section-014 {
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        .ri-header-014 {
            text-align: center;
            margin-bottom: 50px;
            animation: fadeInDown 0.8s ease-out;
        }

        .ri-heading-014 {
            font-family: 'Great Vibes', cursive !important;
            font-size: 3.5rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 15px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .ri-subheading-014 {
            font-family:  'Great Vibes', cursive !important;
            font-size: 1.5rem;
            font-weight: 600;
            color: #4a4a4a;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }

        .ri-caption-014 {
            font-family: 'Trebuchet MS', sans-serif;
            font-size: 1.1rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
            font-style: italic;
        }

        .ri-filter-buttons-014 {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 50px;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        .ri-btn-014 {
            font-family: 'Arial', sans-serif;
            font-weight: 600;
            padding: 14px 32px;
            border: 2px solid #333;
            background: white;
            color: #333;
            cursor: pointer;
            font-size: 1rem;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
        }

        .ri-btn-014::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: #333;
            transition: left 0.3s ease;
            z-index: -1;
        }

        .ri-btn-014:hover::before,
        .ri-btn-014.active::before {
            left: 0;
        }

        .ri-btn-014:hover,
        .ri-btn-014.active {
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .ri-gallery-014 {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 25px;
            animation: fadeIn 0.8s ease-out 0.4s both;
        }

        .ri-gallery-item-014 {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: white;
            aspect-ratio: 4/3;
        }

        .ri-gallery-item-014.hidden {
            display: none;
        }

        .ri-gallery-item-014:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
        }

        .ri-image-014 {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .ri-gallery-item-014:hover .ri-image-014 {
            transform: scale(1.1);
        }

        .ri-overlay-014 {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }

        .ri-gallery-item-014:hover .ri-overlay-014 {
            transform: translateY(0);
        }

        .ri-image-title-014 {
            font-family: 'Georgia', serif;
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        /* Tablet Responsive */
        @media (max-width: 1024px) {
            .ri-heading-014 {
                font-size: 2.8rem;
            }

            .ri-subheading-014 {
                font-size: 1.3rem;
            }

            .ri-caption-014 {
                font-size: 1rem;
            }

            .ri-gallery-014 {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
                gap: 20px;
            }

            .ri-btn-014 {
                padding: 12px 24px;
                font-size: 0.95rem;
            }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .renovation-interior-section-014 {
                padding: 40px 15px;
            }

            .ri-heading-014 {
                font-size: 2rem;
                letter-spacing: 1px;
            }

            .ri-subheading-014 {
                font-size: 1.1rem;
            }

            .ri-caption-014 {
                font-size: 0.95rem;
                padding: 0 10px;
            }

            .ri-filter-buttons-014 {
                gap: 10px;
                margin-bottom: 35px;
            }

            .ri-btn-014 {
                padding: 10px 20px;
                font-size: 0.85rem;
                letter-spacing: 0.5px;
            }

            .ri-gallery-014 {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 15px;
            }

            .ri-image-title-014 {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .ri-heading-014 {
                font-size: 1.6rem;
            }

            .ri-subheading-014 {
                font-size: 1rem;
            }

            .ri-gallery-014 {
                grid-template-columns: 1fr;
            }

            .ri-btn-014 {
                padding: 10px 16px;
                font-size: 0.8rem;
            }
        }
/* ======================================================================== */
/* home form  */

        .form-index-section-015 {
            max-width: 1400px;
            margin: 80px auto;
            padding: 40px 20px;
        }

        .fis-container-015 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            background: white;
            /* border-radius: 20px; */
            padding: 60px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        .fis-container-015::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(108, 117, 125, 0.03) 0%, transparent 70%);
            pointer-events: none;
        }

        /* Image Side */
        .fis-image-wrapper-015 {
            position: relative;
            height: 600px;
            z-index: 1;
        }

        .fis-image-frame-015 {
            position: relative;
            width: 100%;
            height: 100%;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .fis-image-frame-015::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            border: 3px solid #6c757d;
            border-radius: 35px;
            z-index: -1;
        }

        .fis-image-frame-015::after {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: 20px;
            bottom: 20px;
            border: 2px solid rgba(255, 255, 255, 0.5);
            border-radius: 20px;
            pointer-events: none;
        }

        .fis-main-image-015 {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .fis-image-wrapper-015:hover .fis-main-image-015 {
            transform: scale(1.05);
        }

        .fis-image-overlay-015 {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
            padding: 30px;
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }

        .fis-image-wrapper-015:hover .fis-image-overlay-015 {
            transform: translateY(0);
        }

        .fis-overlay-text-015 {
            font-family: 'Playfair Display', serif;
            color: white;
            font-size: 1.4rem;
            font-weight: 600;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        /* Form Side */
        .fis-form-wrapper-015 {
            z-index: 1;
        }

        .fis-form-header-015 {
            margin-bottom: 40px;
        }

        .fis-form-title-015 {
            font-family:  'Great Vibes', cursive !important;
            font-size: 2.8rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 15px;
            letter-spacing: 1px;
            line-height: 1.2;
        }

        .fis-form-subtitle-015 {
            font-family:  'Great Vibes', cursive !important;
            font-size: 1.1rem;
            color: #6c757d;
            line-height: 1.6;
            font-weight: 400;
        }

        .fis-appointment-form-015 {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .fis-form-group-015 {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .fis-form-label-015 {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
            color: #2c3e50;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .fis-form-input-015 {
            font-family: 'Open Sans', sans-serif;
            padding: 16px 20px;
            border: 2px solid #e9ecef;
            border-radius: 12px;
            font-size: 1rem;
            color: #1a1a1a;
            background: #f8f9fa;
            transition: all 0.3s ease;
            outline: none;
        }

        .fis-form-input-015:focus {
            border-color: #6c757d;
            background: white;
            box-shadow: 0 0 0 4px rgba(108, 117, 125, 0.1);
            transform: translateY(-2px);
        }

        .fis-form-input-015::placeholder {
            color: #adb5bd;
            font-style: italic;
        }

        .fis-form-textarea-015 {
            font-family: 'Open Sans', sans-serif;
            padding: 16px 20px;
            border: 2px solid #e9ecef;
            border-radius: 12px;
            font-size: 1rem;
            color: #1a1a1a;
            background: #f8f9fa;
            transition: all 0.3s ease;
            outline: none;
            resize: vertical;
            min-height: 120px;
        }

        .fis-form-textarea-015:focus {
            border-color: #6c757d;
            background: white;
            box-shadow: 0 0 0 4px rgba(108, 117, 125, 0.1);
            transform: translateY(-2px);
        }

        .fis-submit-btn-015 {
            font-family: 'Raleway', sans-serif;
            padding: 18px 40px;
            background: #1a1a1a;
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            margin-top: 10px;
        }

        .fis-submit-btn-015::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .fis-submit-btn-015:hover::before {
            width: 300px;
            height: 300px;
        }

        .fis-submit-btn-015:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            background: #979899;
        }

        .fis-submit-btn-015:active {
            transform: translateY(-1px);
        }

        /* Success Message */
        .fis-success-message-015 {
            display: none;
            padding: 20px;
            background: #d4edda;
            border: 2px solid #c3e6cb;
            border-radius: 12px;
            color: #155724;
            font-family: 'Open Sans', sans-serif;
            text-align: center;
            margin-top: 20px;
            animation: slideInUp 0.5s ease;
        }

        .fis-success-message-015.show {
            display: block;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Tablet Responsive */
        @media (max-width: 1024px) {
            .fis-container-015 {
                gap: 40px;
                padding: 40px;
            }

            .fis-form-title-015 {
                font-size: 2.4rem;
            }

            .fis-image-wrapper-015 {
                height: 500px;
            }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .form-index-section-015 {
                margin: 40px auto;
                padding: 20px;
            }

            .fis-container-015 {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 30px 20px;
            }

            .fis-image-wrapper-015 {
                height: 400px;
                order: -1;
            }

            .fis-form-title-015 {
                font-size: 2rem;
            }

            .fis-form-subtitle-015 {
                font-size: 1rem;
            }

            .fis-submit-btn-015 {
                padding: 16px 32px;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .fis-container-015 {
                padding: 25px 15px;
            }

            .fis-form-title-015 {
                font-size: 1.8rem;
            }

            .fis-image-wrapper-015 {
                height: 300px;
            }

            .fis-form-input-015,
            .fis-form-textarea-015 {
                padding: 14px 16px;
                font-size: 0.95rem;
            }

            .fis-submit-btn-015 {
                padding: 14px 28px;
                font-size: 0.95rem;
            }
        }
/* =================================================== */
/* catlog  */


 /* Modal Overlay */
        .catlog-sectio-001-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            z-index: 9999;
            animation: fadeIn 0.3s ease;
            padding: 20px;
        }

        .catlog-sectio-001-modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Catalog Container - 50% width centered */
        .catlog-sectio-001-container {
            h1, h2, h3, .catlog-sectio-001-title, .catlog-sectio-001-category-title {
    font-family: 'Montserrat', 'Poppins', sans-serif !important;
}
            width: 50%;
            max-width: 900px;
            min-width: 600px;
            height: 90vh;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 50px rgba(0,0,0,0.5);
            animation: slideIn 0.4s ease;
            display: flex;
            flex-direction: column;
        }

        @keyframes slideIn {
            from {
                transform: scale(0.9);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        /* Catalog Header */
        .catlog-sectio-001-header {
            background: linear-gradient(135deg, #2c3e50, #34495e);
            color: white;
            padding: 20px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            flex-shrink: 0;
        }

        .catlog-sectio-001-title {
            font-size: 22px;
            font-weight: bold;
        }

        .catlog-sectio-001-close-btn {
            background: #000000;
            border: none;
            color: white;
            font-size: 32px;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            line-height: 1;
        }

        .catlog-sectio-001-close-btn:hover {
            background: #fffffe;
            color: black;
            transform: scale(1.1) rotate(90deg);
        }

        /* Catalog Content */
        .catlog-sectio-001-content {
            overflow-y: auto;
            flex: 1;
            scroll-behavior: smooth;
        }

        .catlog-sectio-001-content::-webkit-scrollbar {
            width: 10px;
        }

        .catlog-sectio-001-content::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        .catlog-sectio-001-content::-webkit-scrollbar-thumb {
            background: #888;
            border-radius: 5px;
        }

        .catlog-sectio-001-content::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

        section {
            padding: 40px 30px;
            min-height: auto;
        }

        /* Cover Section */
        .catlog-sectio-001-cover-section {
            background: linear-gradient(135deg, #bdc3c7, #ecf0f1);
            text-align: center;
            position: relative;
        }

        .catlog-sectio-001-logo-icon {
            width: 60px;
            height: 60px;
            margin-bottom: 15px;
        }

        .catlog-sectio-001-main-title {
            font-size: 42px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #2c3e50;
        }

        .catlog-sectio-001-main-title sup {
            font-size: 18px;
        }

        .catlog-sectio-001-subtitle {
            font-size: 15px;
            font-style: italic;
            margin-bottom: 30px;
            line-height: 1.6;
            color: #555;
        }

        .catlog-sectio-001-tagline {
            font-size: 18px;
            font-style: italic;
            color: #555;
            margin-bottom: 30px;
        }

        .catlog-sectio-001-showcase-images {
            max-width: 100%;
            margin: 0 auto 25px;
        }

        .catlog-sectio-001-showcase-images img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .catlog-sectio-001-qr-code-section {
            margin: 30px 0;
        }

        .catlog-sectio-001-qr-code-section svg {
            background: white;
            padding: 12px;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }

        .catlog-sectio-001-kitchen-message {
            margin-top: 30px;
        }

        .catlog-sectio-001-kitchen-message p {
            font-size: 22px;
            margin: 8px 0;
            color: #2c3e50;
        }

        .catlog-sectio-001-kitchen-highlight {
            display: inline-block;
            background: #95a5a6;
            padding: 10px 35px;
            border-radius: 25px;
            font-weight: bold;
            font-size: 28px;
            margin: 15px 0;
            color: white;
        }

        .catlog-sectio-001-kitchen-subtext {
            font-weight: 600;
            font-size: 20px !important;
            margin-top: 15px !important;
        }

        .catlog-sectio-001-section-footer {
            text-align: right;
            margin-top: 30px;
            font-size: 16px;
            font-weight: 500;
            color: #2c3e50;
        }

        /* About Section */
        .catlog-sectio-001-about-section {
            background: white;
        }

        .catlog-sectio-001-about-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
            gap: 15px;
        }

        .catlog-sectio-001-about-title {
            font-size: 36px;
            font-style: italic;
            font-family: 'Georgia', serif;
            color: #2c3e50;
        }

        .catlog-sectio-001-company-logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .catlog-sectio-001-company-info h3 {
            font-size: 16px;
            font-weight: bold;
        }

        .catlog-sectio-001-company-info h3 sup {
            font-size: 8px;
        }

        .catlog-sectio-001-company-info p {
            font-size: 10px;
            color: #666;
        }

        .catlog-sectio-001-hero-image {
            position: relative;
            margin-bottom: 30px;
        }

        .catlog-sectio-001-hero-image img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        }

        .catlog-sectio-001-hero-overlay {
            position: absolute;
            top: 35%;
            left: 30px;
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 15px 30px;
            font-size: 24px;
            font-weight: bold;
            border-radius: 4px;
        }

        .catlog-sectio-001-about-text {
            text-align: justify;
            line-height: 1.8;
            font-size: 13px;
            color: #333;
        }

        .catlog-sectio-001-about-text p {
            margin-bottom: 15px;
        }

        /* Certificate Section */
        .catlog-sectio-001-certificate-section {
            background: linear-gradient(135deg, #ecf0f1, #bdc3c7);
            position: relative;
            padding-left: 80px;
        }

        .catlog-sectio-001-cert-border {
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 60px;
            background: repeating-linear-gradient(
                45deg,
                #2c3e50,
                #2c3e50 15px,
                #34495e 15px,
                #34495e 30px
            );
        }

        .catlog-sectio-001-cert-header {
            display: flex;
            justify-content: flex-end;
            margin-bottom: 25px;
        }

        .catlog-sectio-001-cert-content {
            background: white;
            padding: 40px 30px;
            border-radius: 8px;
            box-shadow: 0 5px 30px rgba(0,0,0,0.2);
        }

        .catlog-sectio-001-rbs-logo {
            text-align: center;
            margin-bottom: 25px;
        }

        .catlog-sectio-001-rbs-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100px;
            height: 100px;
            border: 4px solid #2c3e50;
            border-radius: 50%;
            font-size: 36px;
            font-weight: bold;
            color: #2c3e50;
        }

        .catlog-sectio-001-cert-title-main {
            text-align: center;
            font-size: 28px;
            color: #e74c3c;
            font-style: italic;
            margin-bottom: 15px;
        }

        .catlog-sectio-001-cert-subtitle {
            text-align: center;
            font-size: 14px;
            font-style: italic;
            color: #666;
            margin-bottom: 25px;
        }

        .catlog-sectio-001-company-name-cert {
            text-align: center;
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 12px;
        }

        .catlog-sectio-001-company-address {
            text-align: center;
            font-size: 13px;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .catlog-sectio-001-cert-statement {
            text-align: center;
            font-size: 13px;
            font-style: italic;
            margin-bottom: 20px;
        }

        .catlog-sectio-001-iso-title {
            text-align: center;
            font-size: 42px;
            font-weight: bold;
            margin-bottom: 8px;
        }

        .catlog-sectio-001-iso-subtitle {
            text-align: center;
            font-size: 18px;
            margin-bottom: 20px;
        }

        .catlog-sectio-001-scope-title {
            text-align: center;
            font-size: 14px;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .catlog-sectio-001-scope-text {
            text-align: center;
            font-size: 13px;
            font-weight: bold;
            margin-bottom: 25px;
            line-height: 1.8;
        }

        .catlog-sectio-001-cert-dates {
            display: flex;
            justify-content: space-around;
            margin-bottom: 20px;
            font-size: 11px;
            gap: 15px;
        }

        .catlog-sectio-001-cert-number {
            text-align: center;
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 30px;
        }

        .catlog-sectio-001-cert-badges {
            display: flex;
            justify-content: center;
            gap: 30px;
        }

        .catlog-sectio-001-cert-badge-item {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            border: 3px solid #e74c3c;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 9px;
            font-weight: bold;
            text-align: center;
            line-height: 1.3;
        }

        /* Products Section */
        .catlog-sectio-001-products-section {
            background: white;
        }

        .catlog-sectio-001-product-category {
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 2px solid #ecf0f1;
        }

        .catlog-sectio-001-category-title {
            background: linear-gradient(135deg, #34495e, #2c3e50);
            color: white;
            padding: 15px 20px;
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 20px;
            border-radius: 4px;
        }

        .catlog-sectio-001-product-showcase {
            display: flex;
            gap: 20px;
            align-items: start;
        }

        .catlog-sectio-001-product-images {
            flex-shrink: 0;
            width: 200px;
        }

        .catlog-sectio-001-product-images img {
            width: 100%;
            height: 150px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.15);
            margin-bottom: 10px;
        }

        .catlog-sectio-001-product-table-wrapper {
            flex: 1;
            overflow-x: auto;
        }

        .catlog-sectio-001-product-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 12px;
        }

        .catlog-sectio-001-product-table th {
            background: #95a5a6;
            padding: 10px 8px;
            text-align: center;
            border: 1px solid #7f8c8d;
            color: white;
        }

        .catlog-sectio-001-product-table td {
            padding: 10px 8px;
            text-align: center;
            border: 1px solid #bdc3c7;
        }

        .catlog-sectio-001-product-table tr:nth-child(even) {
            background: #ecf0f1;
        }

        /* Hardware Section */
        .catlog-sectio-001-hardware-section {
            background: linear-gradient(135deg, #ecf0f1, #bdc3c7);
            text-align: center;
        }

        .catlog-sectio-001-hardware-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 30px;
        }

        .catlog-sectio-001-hardware-title {
            font-size: 48px;
            font-style: italic;
            font-family: 'Georgia', serif;
            margin-top: 15px;
            color: #2c3e50;
        }

        .catlog-sectio-001-hardware-images {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }

        .catlog-sectio-001-hardware-item {
            background: white;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .catlog-sectio-001-hardware-item:nth-child(1) {
            transform: rotate(-2deg);
        }

        .catlog-sectio-001-hardware-item:nth-child(2) {
            transform: rotate(2deg);
        }

        .catlog-sectio-001-hardware-item:nth-child(3) {
            transform: rotate(-2deg);
        }

        .catlog-sectio-001-hardware-item:nth-child(4) {
            transform: rotate(2deg);
        }

        .catlog-sectio-001-hardware-item:hover {
            transform: rotate(0deg) scale(1.05);
        }

        .catlog-sectio-001-hardware-item img {
            width: 100%;
            height: 150px;
            object-fit: cover;
            border-radius: 4px;
        }

        .catlog-sectio-001-hinges-section {
            background: white;
        }

        /* Mobile Responsive */
        @media (max-width: 1200px) {
            .catlog-sectio-001-container {
                width: 70%;
                min-width: 500px;
            }
        }

        @media (max-width: 768px) {
            .catlog-sectio-001-modal {
                padding: 10px;
            }

            .catlog-sectio-001-container {
                width: 95%;
                min-width: auto;
                height: 95vh;
            }

            .catlog-sectio-001-header {
                padding: 15px 20px;
            }

            .catlog-sectio-001-title {
                font-size: 16px;
            }

            .catlog-sectio-001-close-btn {
                width: 35px;
                height: 35px;
                font-size: 24px;
            }

            section {
                padding: 25px 20px;
            }

            .catlog-sectio-001-main-title {
                font-size: 28px;
            }

            .catlog-sectio-001-subtitle {
                font-size: 13px;
            }

            .catlog-sectio-001-tagline {
                font-size: 15px;
            }

            .catlog-sectio-001-showcase-images img {
                height: 200px;
            }

            .catlog-sectio-001-about-title {
                font-size: 28px;
            }

            .catlog-sectio-001-hero-image img {
                height: 200px;
            }

            .catlog-sectio-001-hero-overlay {
                font-size: 16px;
                padding: 10px 20px;
                left: 15px;
            }

            .catlog-sectio-001-about-text {
                font-size: 12px;
            }

            .catlog-sectio-001-certificate-section {
                padding-left: 40px;
            }

            .catlog-sectio-001-cert-border {
                width: 40px;
            }

            .catlog-sectio-001-cert-content {
                padding: 25px 15px;
            }

            .catlog-sectio-001-rbs-badge {
                width: 80px;
                height: 80px;
                font-size: 28px;
            }

            .catlog-sectio-001-cert-title-main {
                font-size: 22px;
            }

            .catlog-sectio-001-iso-title {
                font-size: 32px;
            }

            .catlog-sectio-001-company-name-cert {
                font-size: 24px;
            }

            .catlog-sectio-001-cert-dates {
                flex-direction: column;
                gap: 10px;
            }

            .catlog-sectio-001-hardware-title {
                font-size: 36px;
            }

            .catlog-sectio-001-hardware-images {
                grid-template-columns: 1fr;
            }

            .catlog-sectio-001-product-showcase {
                flex-direction: column;
            }

            .catlog-sectio-001-product-images {
                width: 100%;
            }

            .catlog-sectio-001-product-images img {
                height: 180px;
            }

            .catlog-sectio-001-category-title {
                font-size: 16px;
                padding: 12px 15px;
            }

            .catlog-sectio-001-product-table {
                font-size: 11px;
            }

            .catlog-sectio-001-product-table th,
            .catlog-sectio-001-product-table td {
                padding: 8px 5px;
            }
        }

        @media (max-width: 480px) {
            .catlog-sectio-001-container {
                width: 100%;
                height: 100vh;
                border-radius: 0;
            }

            .catlog-sectio-001-modal {
                padding: 0;
            }

            .catlog-sectio-001-main-title {
                font-size: 24px;
            }

            .catlog-sectio-001-kitchen-highlight {
                font-size: 22px;
                padding: 8px 25px;
            }
        }


/* ============================================================================= */
/* whatsapp button  */
/* WhatsApp Button Styles */
.whatsapp-section-01 {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: transparent;
    padding: 10px;
    border-radius: 50%;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
    z-index: 999;
    transition: transform 0.3s ease-in-out;
}

.whatsapp-section-01 i {
    font-size: 60px;
    color: #25D366; /* WhatsApp green color */
}

/* Hover Effect */
.whatsapp-section-01:hover {
    transform: scale(1.1); /* Slight zoom effect */
}

.whatsapp-section-01:hover i {
    color: #128C7E; /* Darker WhatsApp green color */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .whatsapp-section-01 {
        bottom: 15px;
        left: 15px;
    }

    .whatsapp-section-01 i {
        font-size: 50px; /* Slightly smaller on mobile */
    }
}

@media (max-width: 480px) {
    .whatsapp-section-01 {
        bottom: 10px;
        left: 10px;
    }

    .whatsapp-section-01 i {
        font-size: 40px; /* Even smaller on small screens */
    }
}
/* =============================================================================================== */
 .kichen-wardrone-section-wrapper {
    padding: 70px 20px;
    background: radial-gradient(circle at top left, #f5f7ff 0, #f3f3f3 45%, #ffffff 100%);
  }

  .kichen-wardrone-section-container {
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Poppins', Arial, sans-serif;
  }

  .kichen-wardrone-section-header {
    text-align: center;
    margin-bottom: 40px;
  }

  .kichen-wardrone-section-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(39, 60, 117, 0.08);
    color: #273c75;
    font-weight: 600;
    margin-bottom: 12px;
  }

  .kichen-wardrone-section-title {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 10px;
    color: #1e272e;
  }

  .kichen-wardrone-section-title-sub {
    display: block;
    font-size: 16px;
    font-weight: 400;
    margin-top: 6px;
    color: #57606f;
  }

  .kichen-wardrone-section-subtitle {
    max-width: 650px;
    margin: 0 auto;
    font-size: 14px;
    color: #747d8c;
  }

  /* Main Grid */
  .kichen-wardrone-section-grid {
    display: grid;
    grid-template-columns: 2fr 1.3fr;
    gap: 24px;
    margin-top: 40px;
  }

  .kichen-wardrone-section-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.09);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, translate 0.3s ease;
  }

  .kichen-wardrone-section-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.14);
  }

  .kichen-wardrone-section-card-feature {
    min-height: 100%;
  }

  .kichen-wardrone-section-card-wardrobe,
  .kichen-wardrone-section-card-tall {
    min-height: 0;
  }

  .kichen-wardrone-section-side-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .kichen-wardrone-section-image-wrap {
    position: relative;
    overflow: hidden;
  }

  .kichen-wardrone-section-image {
    width: 100%;
    display: block;
    height: 240px;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .kichen-wardrone-section-card:hover .kichen-wardrone-section-image {
    transform: scale(1.06);
  }

  .kichen-wardrone-section-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 5px 13px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
  }

  .kichen-wardrone-section-tag-kitchen {
        background: linear-gradient(135deg, #000000, #808584);
  }

  .kichen-wardrone-section-tag-wardrobe {
        background: linear-gradient(135deg, #000000, #808584);
  }

  .kichen-wardrone-section-tag-storage {
        background: linear-gradient(135deg, #000000, #808584);
  }

  .kichen-wardrone-section-card-body {
    padding: 18px 20px 20px;
  }

  .kichen-wardrone-section-card-title {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-size: 18px;
    margin-bottom: 8px;
    color: #2f3542;
  }

  .kichen-wardrone-section-card-text {
    font-size: 13px;
    color: #747d8c;
    margin-bottom: 12px;
  }

  .kichen-wardrone-section-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    font-size: 12px;
    color: #57606f;
  }

  .kichen-wardrone-section-list li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 6px;
  }

  .kichen-wardrone-section-list li::before {
    content: "•";
    position: absolute;
    left: 4px;
    top: -1px;
    font-size: 16px;
    color: #ff9f43;
  }

  .kichen-wardrone-section-list-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
  }

  .kichen-wardrone-section-list-inline li {
    background: #f1f2f6;
    border-radius: 999px;
    padding: 5px 11px 5px 18px;
    margin-bottom: 0;
  }

  .kichen-wardrone-section-list-inline li::before {
    color: #2e86de;
  }

  /* Bottom Info Row */
  .kichen-wardrone-section-bottom-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 32px;
  }

  .kichen-wardrone-section-info-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 16px 18px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(116, 125, 140, 0.08);
  }

  .kichen-wardrone-section-info-card-accent {
    background: linear-gradient(135deg, #54565a, #7c7f86);
    color: #ffffff;
  }

  .kichen-wardrone-section-info-title {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-size: 14px;
    margin-bottom: 8px;
  }

  .kichen-wardrone-section-info-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    font-size: 12px;
  }

  .kichen-wardrone-section-info-list li {
    padding-left: 14px;
    position: relative;
    margin-bottom: 5px;
  }

  .kichen-wardrone-section-info-list li::before {
    content: "";
    position: absolute;
    left: 3px;
    top: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ff9f43;
  }

  .kichen-wardrone-section-info-card-accent .kichen-wardrone-section-info-list li::before {
    background: #1dd1a1;
  }

  .kichen-wardrone-section-info-card-accent .kichen-wardrone-section-info-title {
    color: #f5f6fa;
  }

  .kichen-wardrone-section-info-card-accent .kichen-wardrone-section-info-list {
    color: #dcdde1;
  }
  /* BIG FEATURE CARD – 50% IMAGE 50% TEXT ON LARGE SCREENS */
.kichen-wardrone-section-card-feature {
    display: flex;
    flex-direction: column;
    min-height: 420px;              /* thoda height fix rakhi for 50-50 look */
}

/* Top half = Image */
.kichen-wardrone-section-card-feature .kichen-wardrone-section-image-wrap {
    flex: 1;
}

/* Bottom half = Text */
.kichen-wardrone-section-card-feature .kichen-wardrone-section-card-body {
    flex: 1;
}

/* Image ko full half area cover karwana */
.kichen-wardrone-section-card-feature .kichen-wardrone-section-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    /* Feature card mobile me normal ho jaye */
    .kichen-wardrone-section-card-feature {
        min-height: auto;
    }

    .kichen-wardrone-section-card-feature .kichen-wardrone-section-image-wrap,
    .kichen-wardrone-section-card-feature .kichen-wardrone-section-card-body {
        flex: unset;
    }

    .kichen-wardrone-section-card-feature .kichen-wardrone-section-image {
        height: 210px;   /* pehle jaisa hi look */
        object-fit: cover;
    }
}

  /* Responsive Design */

  @media (max-width: 1024px) {
    .kichen-wardrone-section-grid {
      grid-template-columns: 1.4fr 1fr;
    }

    .kichen-wardrone-section-image {
      height: 220px;
    }
  }

  @media (max-width: 768px) {
    .kichen-wardrone-section-wrapper {
      padding: 50px 16px;
    }

    .kichen-wardrone-section-title {
      font-size: 26px;
    }

    .kichen-wardrone-section-grid {
      grid-template-columns: 1fr;
    }

    .kichen-wardrone-section-side-col {
      flex-direction: row;
      flex-wrap: wrap;
    }

    .kichen-wardrone-section-card-wardrobe,
    .kichen-wardrone-section-card-tall {
      flex: 1 1 100%;
    }

    .kichen-wardrone-section-image {
      height: 210px;
    }

    .kichen-wardrone-section-bottom-row {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 576px) {
    .kichen-wardrone-section-title {
      font-size: 22px;
    }

    .kichen-wardrone-section-subtitle {
      font-size: 13px;
    }

    .kichen-wardrone-section-grid {
      gap: 18px;
    }

    .kichen-wardrone-section-image {
      height: 200px;
    }

    .kichen-wardrone-section-bottom-row {
      grid-template-columns: 1fr;
    }

    .kichen-wardrone-section-info-card {
      padding: 14px 14px;
    }
  }