   *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
    body {
      font-family: 'Source Sans 3', sans-serif;
      color: #2C2C2C;
      background: #FAFAF8;
      line-height: 1.6;
      overflow-x: hidden !important;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; }
    button { border: none; background: none; cursor: pointer; font-family: inherit; }
    input, textarea { font-family: inherit; }

    /* ========== DESIGN TOKENS ========== */
    :root {
      --terracotta: #8B3A2F;
      --terracotta-light: #A04A3E;
      --gold: #B8956A;
      --gold-dark: #9E7D58;
      --charcoal: #2C2C2C;
      --charcoal-light: #5A5A5A;
      --concrete: #E8E0D8;
      --background: #FAFAF8;
      --white: #FFFFFF;
      --border: #E0D8D0;
      --font-serif: 'DM Serif Display', serif;
      --font-sans: 'Source Sans 3', sans-serif;
    }

    /* ========== UTILITY CLASSES ========== */
    .container {
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 1rem;
    }
    .post, .page
    {
      margin:0;
    }
    a:hover,a:focus
    {
      text-decoration: none;color: inherit;
    }
    .about_mission_section
    {
      display: flex;
      
      gap: 10px;
    }
    .about_mission_section .highlight-item
    {
      width: 32%;
    padding: 15px;
    border: 1px solid #ccc;
    }
    .management_team  .highlight-item img
    {
        padding-bottom: 10px;
    }
    .highlight-item h4 {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size:12px;
    text-transform: uppercase;
    
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}



    @media (min-width: 640px) { .container { padding: 0 1.5rem; } }
    @media (min-width: 1024px) { .container { padding: 0 2rem; } }

    .section-label {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1rem;
    }
    .section-label .line {
      width: 2.5rem;
      height: 2px;
    }
    .section-label span {
      font-family: var(--font-sans);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
    }
    .section-title {
      font-family: var(--font-sans);
      line-height: 1.15;
      font-weight: 900;
    }

    /* ========== SCROLL ANIMATIONS ========== */
    .fade-up, .fade-left, .fade-right, .fade-scale {
      opacity: 0;
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-up { transform: translateY(30px); }
    .fade-left { transform: translateX(-40px); }
    .fade-right { transform: translateX(40px); }
    .fade-scale { transform: scale(0.95); }
    .fade-up.visible, .fade-left.visible, .fade-right.visible, .fade-scale.visible {
      opacity: 1;
      transform: translate(0, 0) scale(1);
    }

    /* Stagger children */
    .stagger-children > * { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
    .stagger-children.visible > *:nth-child(1) { transition-delay: 0s; }
    .stagger-children.visible > *:nth-child(2) { transition-delay: 0.08s; }
    .stagger-children.visible > *:nth-child(3) { transition-delay: 0.16s; }
    .stagger-children.visible > *:nth-child(4) { transition-delay: 0.24s; }
    .stagger-children.visible > *:nth-child(5) { transition-delay: 0.32s; }
    .stagger-children.visible > *:nth-child(6) { transition-delay: 0.40s; }
    .stagger-children.visible > *:nth-child(7) { transition-delay: 0.48s; }
    .stagger-children.visible > *:nth-child(8) { transition-delay: 0.56s; }
    .stagger-children.visible > *:nth-child(9) { transition-delay: 0.64s; }
    .stagger-children.visible > *:nth-child(10) { transition-delay: 0.72s; }
    .stagger-children.visible > *:nth-child(11) { transition-delay: 0.80s; }
    .stagger-children.visible > *:nth-child(12) { transition-delay: 0.88s; }
    .stagger-children.visible > * { opacity: 1; transform: translateY(0); }

    /* ========== NAVBAR ========== */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 50;
      transition: all 0.5s ease;
      padding: 10px 0;
    }
    .navbar.scrolled {
      background: #4C0E37;
      backdrop-filter: blur(12px);
      box-shadow: 0 2px 20px rgba(0,0,0,0.08);
      padding: 10px 0;
    }
    .navbar .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .navbar .logo {
      font-family: var(--font-serif);
      font-size: 1.5rem;
      letter-spacing: -0.01em;
      transition: color 0.5s;
      color: var(--white);
    }
    .logo img
    {
      width: 70px;
    }
    .navbar.scrolled .logo { color: var(--terracotta); }

    .navbar .nav-links {
      display: none;
      align-items: center;
      gap: 5px;
    }
    @media (min-width: 1024px) { .navbar .nav-links { display: flex; } }

    .navbar .nav-links button {
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: color 0.3s;
      color: rgba(255,255,255,0.9);
    }
    .navbar.scrolled .nav-links button { color: var(--white); }
    .navbar .nav-links button:hover { color: var(--gold); }

    .btn-cta {
      background: var(--gold);
      color: var(--charcoal);
      font-weight: 600;
      font-size: 0.8rem;
      padding: 0.6rem 1.5rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: background 0.3s;
    }
    .btn-cta:hover { background: var(--gold-dark); }

    .mobile-toggle {
      display: block;
      padding: 0.5rem;
      color: var(--white);
      transition: color 0.5s;
    }
    .navbar.scrolled .mobile-toggle { color: var(--white); }
    @media (min-width: 1024px) { .mobile-toggle { display: none; } }

    .mobile-toggle svg { width: 24px; height: 24px; }

    .mobile-menu {
      display: none;
      background: var(--white);
      border-top: 1px solid var(--border);
      padding: 1.5rem 1rem;
      flex-direction: column;
      gap: 1rem;
      width: 100%;
    }
    .mobile-menu.open { display: flex; }
    @media (min-width: 1024px) { .mobile-menu { display: none !important; } }

    .mobile-menu button {
      text-align: left;
      color: var(--charcoal);
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.5rem 0;
      border-bottom: 1px solid var(--concrete);
    }

    /* ========== HERO ========== */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 600px;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
    }
    .hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .hero-bg .overlay-lr {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.4), transparent);
    }
    .hero-bg .overlay-bt {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.5), transparent, transparent);
    }
    .hero-content {
      position: relative;
      height: 100%;
      display: flex;
      align-items: center;
    }
    .hero-text { max-width: 640px; }
    .hero-text h1 {
      font-family: var(--font-serif);
      font-size: 3rem;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 1.5rem;
      font-weight: 900;
    }
    @media (min-width: 640px) { .hero-text h1 { font-size: 3.5rem; } }
    @media (min-width: 1024px) { .hero-text h1 { font-size: 4.5rem; } }

    .hero-text p {
      font-size: 1.125rem;
      color: rgba(255,255,255,0.8);
      line-height: 1.7;
      margin-bottom: 2rem;
      max-width: 540px;
    }
    .hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }
    .hero-buttons .btn-primary {
      background: var(--gold);
      color: var(--charcoal);
      font-weight: 600;
      font-size: 0.85rem;
      padding: 0.9rem 2rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: background 0.3s;
    }
    .hero-buttons .btn-primary:hover { background: var(--gold-dark); }
    .hero-buttons .btn-outline {
      border: 1px solid rgba(255,255,255,0.4);
      color: var(--white);
      font-weight: 600;
      font-size: 0.85rem;
      padding: 0.9rem 2rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: background 0.3s;
    }
    .hero-buttons .btn-outline:hover { background: rgba(255,255,255,0.1); }

    .hero-location {
      margin-top: 3rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      color: rgba(255,255,255,0.5);
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
    }
    .scroll-indicator {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      color: rgba(255,255,255,0.5);
      animation: bounce 2s infinite;
    }
    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(8px); }
    }

    /* ========== STATS BAR ========== */
    .stats-bar {
      background: var(--terracotta);
      position: relative;
    }
    .stats-bar::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(to bottom, rgba(0,0,0,0.2), transparent);
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
      padding:2rem 0;
    }
    @media (min-width: 1024px) {
      .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 3rem; padding: 4rem 0; }
    }
    .stat-item { text-align: center; }
    @media (min-width: 1024px) { .stat-item { text-align: left; } }
    .stat-value {
      font-family: var(--font-serif);
      font-size: 2rem;
      color: var(--white);
    }
    @media (min-width: 640px) { .stat-value { font-size: 2.5rem; } }
    @media (min-width: 1024px) { .stat-value { font-size: 3rem; } }
    .stat-label {
      margin-top: 0.5rem;
      color: rgba(255,255,255,0.7);
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
    }

    /* ========== ABOUT ========== */
    .about { padding: 5rem 0; background: var(--white); }
    @media (min-width: 1024px) { .about { padding: 3rem 0; } }
    .about-grid {
      display: block;
     
    }
    @media (min-width: 1024px) {
      .about-grid { 
/*        grid-template-columns: 1fr 1fr; gap: 5rem; */
        align-items: center; }
    }
    .about-img-wrap { position: relative; }
    .about-img-wrap img {
      width: 100%;
      height: 400px;
      object-fit: cover;
    }
    @media (min-width: 1024px) { .about-img-wrap img { height: 520px; } }
    .about-img-wrap .img-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 33%;
      background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    }
    .about-img-wrap .accent-box {
      display: none;
      position: absolute;
      bottom: -1.5rem;
      right: -1.5rem;
      width: 8rem;
      height: 8rem;
      border: 2px solid var(--gold);
    }
    @media (min-width: 1024px) { .about-img-wrap .accent-box { display: block; } }

    .about-text h2 {
      font-size: 2rem;
      color: var(--charcoal);
      margin-bottom: 1.5rem;
    }
    @media (min-width: 640px) { .about-text h2 { font-size: 2.5rem; } }
    @media (min-width: 1024px) { .about-text h2 { font-size: 3rem; } }
    .about-text > p {
      color: var(--charcoal-light);
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 2rem;
    }
    @media (min-width: 1024px) { .about-text > p { font-size: 16px; } }

    .highlight-item {
      display: flex;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }
    .highlight-icon {
      flex-shrink: 0;
      width: 2.75rem;
      height: 2.75rem;
      background: var(--concrete);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .highlight-icon svg { width: 20px; height: 20px; color: var(--terracotta); }
    .highlight-item h3 {
      font-family: var(--font-sans);
      font-weight: 600;
      font-size: 16px;
      text-transform: uppercase;
     
      color: var(--charcoal);
      margin-bottom: 0.25rem;
    }
    .highlight-item p {
      font-size: 14px;
      color: var(--charcoal-light);
      line-height: 1.6;
    }

    /* ========== OFFERINGS ========== */
    .offerings { padding: 5rem 0; background: var(--concrete); }
    @media (min-width: 1024px) { .offerings { padding: 7rem 0; } }
    .offerings-header {
      display: grid;
      gap: 2rem;
      margin-bottom: 4rem;
    }
    @media (min-width: 1024px) { .offerings-header { grid-template-columns: 1fr 1fr; gap: 4rem; } }
    .offerings-header h2 {
      font-size: 2rem;
      color: var(--charcoal);
    }
    @media (min-width: 640px) { .offerings-header h2 { font-size: 2.5rem; } }
    @media (min-width: 1024px) { .offerings-header h2 { font-size: 3rem; } }
    .offerings-header > p {
      color: var(--charcoal-light);
      font-size: 1rem;
      line-height: 1.8;
      align-self: end;
    }
    @media (min-width: 1024px) { .offerings-header > p { font-size: 1.125rem; } }

    .offerings-body { display: grid; gap: 2rem; }
    @media (min-width: 1024px) { .offerings-body { grid-template-columns: 2fr 3fr; gap: 3rem; } }

    .offerings-img {
      position: relative;
      overflow: hidden;
      min-height: 300px;
    }
    @media (min-width: 1024px) { .offerings-img { min-height: 500px; } }
    .offerings-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      inset: 0;
    }
    .offerings-img .img-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 1.5rem;
      background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    }
    .offerings-img .img-caption h3 {
      font-family: var(--font-serif);
      color: var(--white);
      font-size: 1.25rem;
      font-weight: 900;
    }
    .offerings-img .img-caption p {
      color: rgba(255,255,255,0.7);
      font-size: 0.85rem;
      margin-top: 0.25rem;
    }

    .offerings-grid {
      display: grid;
      gap: 1.5rem;
    }
    @media (min-width: 640px) { .offerings-grid { grid-template-columns: 1fr 1fr; } }

    .offering-card {
      background: var(--white);
      padding: 1.5rem;
      border: 1px solid var(--border);
      transition: box-shadow 0.3s;
    }
    .offering-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
    .offering-card .card-icon {
      width: 2.5rem;
      height: 2.5rem;
      background: rgba(139,58,47,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
      transition: background 0.3s;
    }
    .offering-card:hover .card-icon { background: rgba(139,58,47,0.2); }
    .offering-card .card-icon svg { width: 20px; height: 20px; color: var(--terracotta); }
    .offering-card h3 {
      font-family: var(--font-sans);
      font-weight: 600;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--charcoal);
      margin-bottom: 0.5rem;
    }
    .offering-card p {
      font-size: 0.875rem;
      color: var(--charcoal-light);
      line-height: 1.6;
    }

    /* ========== AMENITIES ========== */
    .amenities { padding: 5rem 0; background: var(--background); }
    @media (min-width: 1024px) { .amenities { padding: 3rem 0; } }
    .amenities h2 {
      font-size: 2rem;
      color: var(--charcoal);
      max-width: 640px;
    }
    @media (min-width: 640px) { .amenities h2 { font-size: 2.5rem; } }
    @media (min-width: 1024px) { .amenities h2 { font-size: 3rem; } }

    .garden-banner {
      position: relative;
      overflow: hidden;
      margin-bottom: 4rem;
      margin-top: 4rem;
    }
    .garden-banner img {
      width: 100%;
      height: 280px;
      object-fit: cover;
    }
    @media (min-width: 1024px) { .garden-banner img { height: 400px; } }
    .garden-banner .banner-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(44,44,44,0.6), transparent);
      display: flex;
      align-items: center;
    }
    .garden-banner .banner-text {
      padding: 2rem;
      max-width: 480px;
    }
    @media (min-width: 1024px) { .garden-banner .banner-text { padding: 2rem 4rem; } }
    .garden-banner h3 {
      font-family: var(--font-serif);
      font-size: 1.5rem;
      color: var(--white);
      margin-bottom: 0.75rem;
    }
    @media (min-width: 1024px) { .garden-banner h3 { font-size: 2rem; } }
    .garden-banner p {
      color: rgba(255,255,255,0.8);
      font-size: 0.875rem;
      line-height: 1.7;
    }
    @media (min-width: 1024px) { .garden-banner p { font-size: 1rem; } }

    .amenities-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
    @media (min-width: 640px) { .amenities-grid { grid-template-columns: repeat(3, 1fr); } }
    @media (min-width: 1024px) { .amenities-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }

    .amenity-card {
      background: var(--white);
      border: 1px solid var(--border);
      padding: 1.25rem;
      transition: all 0.3s;
    }
    .amenity-card:hover { border-color: rgba(139,58,47,0.3); box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
    .amenity-card svg {
      width: 24px;
      height: 24px;
      color: var(--terracotta);
      margin-bottom: 0.75rem;
      transition: transform 0.3s;
    }
    .amenity-card:hover svg { transform: scale(1.1); }
    .amenity-card h4 {
      font-family: var(--font-sans);
      font-weight: 600;
      font-size: 16px;
      color: var(--charcoal);
      margin-bottom: 0.25rem;
    }
    .amenity-card p {
      font-size: 14px;
      color: var(--charcoal-light);
      line-height: 1.5;
    }

    /* ========== GALLERY ========== */
    .gallery { padding: 3rem 0; background: var(--charcoal); }
    @media (min-width: 1024px) { .gallery { padding: 3rem 0; } }
    .gallery h2 {
      font-size: 2rem;
      color: var(--white);
    }
    @media (min-width: 640px) { .gallery h2 { font-size: 2.5rem; } }
    @media (min-width: 1024px) { .gallery h2 { font-size: 3rem; } }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.75rem;
      margin-top: 3rem;
    }
    @media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
    @media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }

    .gallery-item {
      position: relative;
      overflow: hidden;
      cursor: pointer;
      aspect-ratio: 4/3;
    }
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }
    .gallery-item:hover img { transform: scale(1.1); }
    .gallery-item .item-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0);
      transition: background 0.3s;
      display: flex;
      align-items: flex-end;
    }
    .gallery-item:hover .item-overlay { background: rgba(0,0,0,0.4); }
    .gallery-item .item-label {
      padding: 0.75rem;
      transform: translateY(100%);
      transition: transform 0.3s;
    }
    .gallery-item:hover .item-label { transform: translateY(0); }
    .gallery-item .item-label span {
      color: var(--white);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    /* Lightbox */
    .lightbox {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 100;
      background: rgba(0,0,0,0.95);
      align-items: center;
      justify-content: center;
    }
    .lightbox.open { display: flex; }
    .lightbox-close {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      color: rgba(255,255,255,0.7);
      z-index: 10;
      transition: color 0.3s;
    }
    .lightbox-close:hover { color: var(--white); }
    .lightbox-close svg { width: 28px; height: 28px; }
    .lightbox-prev, .lightbox-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      color: rgba(255,255,255,0.7);
      z-index: 10;
      transition: color 0.3s;
    }
    .lightbox-prev:hover, .lightbox-next:hover { color: var(--white); }
    .lightbox-prev { left: 1rem; }
    .lightbox-next { right: 1rem; }
    .lightbox-prev svg, .lightbox-next svg { width: 36px; height: 36px; }
    .lightbox-content {
      max-width: 1100px;
      max-height: 85vh;
      padding: 0 1rem;
      text-align: center;
    }
    .lightbox-content img {
      max-width: 100%;
      max-height: 80vh;
      object-fit: contain;
      margin: 0 auto;
    }
    .lightbox-content p {
      color: rgba(255,255,255,0.7);
      font-size: 0.875rem;
      margin-top: 1rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    /* ========== CORPORATE SOLUTIONS ========== */
    .solutions { padding: 5rem 0; background: var(--concrete); }
    @media (min-width: 1024px) { .solutions { padding: 3rem 0; } }
    .solutions-grid { display: grid; gap: 3rem; }
    @media (min-width: 1024px) { .solutions-grid { grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; } }

    .solutions-text h2 {
      font-size: 2rem;
      color: var(--charcoal);
      margin-bottom: 1.5rem;
    }
    @media (min-width: 640px) { .solutions-text h2 { font-size: 2.5rem; } }
    @media (min-width: 1024px) { .solutions-text h2 { font-size: 3rem; } }
    .solutions-text > p {
      color: var(--charcoal-light);
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 2.5rem;
    }
    @media (min-width: 1024px) { .solutions-text > p { font-size: 16px; } }

    .step-item {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      margin-bottom: 1.5rem;
    }
    .step-number {
      flex-shrink: 0;
      width: 2.5rem;
      height: 2.5rem;
      background: var(--terracotta);
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 0.85rem;
    }
    .step-item h4 {
      font-family: var(--font-sans);
      font-weight: 600;
      font-size: 16px;
      text-transform: uppercase;
      

      color: var(--charcoal);
      margin-bottom: 0.25rem;
    }
    .step-item p {
      font-size: 14px;
      color: var(--charcoal-light);
      line-height: 1.6;
    }

    .btn-terracotta {
      display: inline-block;
      background: var(--terracotta);
      color: var(--white);
      font-weight: 600;
      font-size: 0.85rem;
      padding: 0.9rem 2rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: background 0.3s;
      margin-top: 1rem;
    }
    .btn-terracotta:hover { background: var(--terracotta-light); }

    .solutions-img { position: relative; }
    .solutions-img img {
      width: 100%;
      height: 400px;
      object-fit: cover;
    }
    @media (min-width: 1024px) { .solutions-img img { height: 580px; } }
    .solutions-img .accent-box {
      display: none;
      position: absolute;
      bottom: -1.5rem;
      left: -1.5rem;
      width: 8rem;
      height: 8rem;
      border: 2px solid var(--terracotta);
    }
    @media (min-width: 1024px) { .solutions-img .accent-box { display: block; } }

    /* ========== CLIENTS ========== */
    .clients { padding: 5rem 0; background: var(--background); }
    @media (min-width: 1024px) { .clients { padding: 3rem 0; } }
    .clients h2 {
      font-size: 2rem;
      color: var(--charcoal);
      max-width: 640px;
    }
    @media (min-width: 640px) { .clients h2 { font-size: 2.5rem; } }
    @media (min-width: 1024px) { .clients h2 { font-size: 3rem; } }

    .clients-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
      margin-bottom: 5rem;
      margin-top: 4rem;
    }
    @media (min-width: 640px) { .clients-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }

    .client-card {
      background: var(--white);
      border: 1px solid var(--border);
      padding: 1.5rem 2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
    }
    .client-card:hover { border-color: rgba(139,58,47,0.3); box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
    .client-card span {
      font-weight: 600;
      color: var(--charcoal-light);
      font-size: 0.9rem;
      letter-spacing: 0.03em;
      text-align: center;
    }

    .team-section h3 {
      font-family: var(--font-serif);
      font-size: 1.5rem;
      color: var(--charcoal);
    }
    @media (min-width: 640px) { .team-section h3 { font-size: 2rem; } }
    .team-section > p {
      color: var(--charcoal-light);
      font-size: 1rem;
      line-height: 1.7;
      margin-top: 0.75rem;
      max-width: 540px;
    }

    .team-grid {
      display: grid;
      gap: 1.5rem;
      margin-top: 2rem;
    }
    @media (min-width: 640px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }

    .team-card {
      background: var(--white);
      border: 1px solid var(--border);
      padding: 1.5rem;
      transition: box-shadow 0.3s;
    }
    .team-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
    .team-card .initials {
      width: 3.5rem;
      height: 3.5rem;
      background: rgba(139,58,47,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
      font-family: var(--font-serif);
      color: var(--terracotta);
      font-size: 1.125rem;
    }
    .team-card h4 {
      font-family: var(--font-sans);
      font-weight: 600;
      font-size: 16px;
      text-transform: uppercase;
     
      color: var(--charcoal);
    }
    .team-card p {
      font-size: 14px;
      color: var(--charcoal-light);
      margin-top: 0.25rem;
    }

    .clients .note {
      font-style: italic;
      color: var(--charcoal-light);
      font-size: 0.875rem;
      margin-top: 1.5rem;
    }

    /* ========== RFQ ========== */
    .rfq {
      padding: 5rem 0;
      background: var(--charcoal);
      position: relative;
      overflow: hidden;
    }
    @media (min-width: 1024px) { .rfq { padding: 7rem 0; } }
    .rfq .bg-pattern {
      position: absolute;
      inset: 0;
      opacity: 0.05;
      background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,0.1) 35px, rgba(255,255,255,0.1) 36px);
    }
    .rfq-grid {
      position: relative;
      display: grid;
      gap: 3rem;
    }
    @media (min-width: 1024px) { .rfq-grid { grid-template-columns: 2fr 3fr; gap: 4rem; } }

    .rfq-info h2 {
      font-size: 2rem;
      color: var(--white);
      margin-bottom: 1.5rem;
    }
    @media (min-width: 640px) { .rfq-info h2 { font-size: 2.5rem; } }
    @media (min-width: 1024px) { .rfq-info h2 { font-size: 3rem; } }
    .rfq-info > p {
      color: rgba(255,255,255,0.7);
      font-size: 1rem;
      line-height: 1.8;
      margin-bottom: 2.5rem;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }
    .contact-icon {
      width: 2.5rem;
      height: 2.5rem;
      background: rgba(255,255,255,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .contact-icon svg { width: 18px; height: 18px; color: var(--gold); }
    .contact-item .label {
      font-size: 0.7rem;
      color: rgba(255,255,255,0.5);
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }
    .contact-item .value {
      font-size: 0.875rem;
      color: var(--white);
    }

    .rfq-form {
      background: rgba(255,255,255,0.05);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.1);
      padding: 1.5rem;
    }
    @media (min-width: 1024px) { .rfq-form { padding: 2rem; } }

    .form-row {
      display: grid;
      gap: 1.25rem;
      margin-bottom: 1.25rem;
    }
    @media (min-width: 640px) { .form-row.two-col { grid-template-columns: 1fr 1fr; } }

    .form-group label {
      display: block;
      font-size: 0.7rem;
      color: rgba(255,255,255,0.6);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 0.5rem;
    }
    .form-group input,
    .form-group textarea {
      width: 100%;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      color: var(--white);
      padding: 0.75rem 1rem;
      font-size: 0.9rem;
      outline: none;
      transition: border-color 0.3s;
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: rgba(255,255,255,0.3);
    }
    .form-group input:focus,
    .form-group textarea:focus {
      border-color: var(--gold);
    }
    .form-group textarea { resize: none; min-height: 100px; }

    .btn-submit {
      width: 100%;
      background: var(--gold);
      color: var(--charcoal);
      font-weight: 600;
      font-size: 0.85rem;
      padding: 0.9rem 2rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: background 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 1.25rem;
    }
    .btn-submit:hover { background: var(--gold-dark); }
    .btn-submit svg { width: 16px; height: 16px; }

    .form-note {
      text-align: center;
      color: rgba(255,255,255,0.4);
      font-size: 0.75rem;
      margin-top: 1rem;
    }

    /* Toast notification */
    .toast {
      display: none;
      position: fixed;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      background: #22c55e;
      color: var(--white);
      padding: 1rem 2rem;
      font-size: 0.9rem;
      font-weight: 500;
      z-index: 200;
      box-shadow: 0 8px 30px rgba(0,0,0,0.2);
      max-width: 90%;
      text-align: center;
      animation: slideUp 0.3s ease;
    }
    .toast.show { display: block; }
    @keyframes slideUp {
      from { transform: translateX(-50%) translateY(20px); opacity: 0; }
      to { transform: translateX(-50%) translateY(0); opacity: 1; }
    }

    /* ========== FOOTER ========== */
    .site-footer {
      background: var(--charcoal);
      border-top: 1px solid rgba(255,255,255,0.1);
      padding: 3rem 0;
    }
    @media (min-width: 1024px) { .site-footer { padding: 4rem 0; } }
    .footer-grid { display: grid; gap: 2.5rem; }
    @media (min-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; } }

    .footer-brand h3 {
      font-family: var(--font-serif);
      font-size: 1.5rem;
      color: var(--white);
      margin-bottom: 0.75rem;
    }
    .footer-brand p {
      color: rgba(255,255,255,0.5);
      font-size: 0.875rem;
      line-height: 1.7;
      max-width: 300px;
    }
    .footer-brand .url {
      color: rgba(255,255,255,0.3);
      font-size: 0.75rem;
      margin-top: 1rem;
    }

    .footer-links h4,
    .footer-contact h4 {
      font-weight: 600;
      color: rgba(255,255,255,0.7);
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      margin-bottom: 1rem;
    }
    .footer-links-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.5rem;
    }
    .footer-links-grid button {
      text-align: left;
      color: rgba(255,255,255,0.5);
      font-size: 0.875rem;
      transition: color 0.3s;
      padding: 0.25rem 0;
    }
    .footer-links-grid button:hover { color: var(--gold); }

    .footer-contact p {
      color: rgba(255,255,255,0.5);
      font-size: 0.875rem;
      line-height: 1.7;
      margin-bottom: 0.75rem;
    }

    .footer-bottom {
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255,255,255,0.1);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }
    @media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
    .footer-bottom p {
      color: rgba(255,255,255,0.3);
      font-size: 0.75rem;
    }
    .back-to-top {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: rgba(255,255,255,0.3);
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      transition: color 0.3s;
    }
    .back-to-top:hover { color: var(--gold); }
    .back-to-top svg { width: 14px; height: 14px; }
.gallery
{
  margin-bottom: 0px !important;
}
.site-header.commonheader .navbar
{
background: #4C0E37;
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 10px 0;
}
section.thankyou {
    padding: 150px 0px;
    text-align: center;
}
.fixedbtn
{
  display: none;
}


    @media screen and (max-width: 767px) {
        .about_mission_section
        {
          display: block;
        }
        .about_mission_section .highlight-item
        {
          width: 100%;
        }
        .fixedbtn
        {
          display: block;
          position: fixed;
          bottom: 0;
          width: 90%;
          left: 0;
          right: 0;
          margin: auto;
        }

     }



.slick-dots li {
    width: 12px;
    height: 12px;
}


.slick-dots li button:before {
    content: "";
    width: 12px;
    height: 12px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: transparent;    
    opacity: 1;                
}
.slick-dots li.slick-active button:before {
    background: #fff;         
    border-color: #fff;
}

.banner_section_slider .slick-dots {
    bottom: 10px;
}

.slick-dots li.slick-active button:before
{
    opacity: 1;
}
.slick-dots
{
  bottom: 10px;
}
.slick-dotted.slick-slider
{
  margin-bottom: 0;
}