   * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }


    body {
      background-color: #fcfafa;
      font-family: 'Open Sans', sans-serif;
      background-color: var(--surface-bg);
      background-image: var(--texture-overlay);
      color: var(--text-dark);
      line-height: 1.6;
      overflow-x: hidden;
    }


    :root {
  --top-header-bg: #d7f8d1;
  --text-green: #1a5e35;
  --navbar-bg: #1e2229;
  --text-white: #ffffff;
  --hover-green: #2a8a50;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

  .top-header {
  background-color: var(--top-header-bg);
  padding: 15px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Logo Design */
.logo-area {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
}

.logo-icon {
  font-size: 2.8rem;
  color: var(--text-green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon img {
  max-width: 100%;
  height: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-green);
  line-height: 1;
}

.brand-sub {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-green);
  letter-spacing: -0.2px;
}

.brand-arabic {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-green);
  direction: rtl;
}

/* Search Bar */
.search-wrapper {
  position: relative;
  width: 100%;
  max-width: 450px;
  margin: 0 20px;
}

.search-box {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.08);
  border: 1px solid #cce8c5;
  transition: var(--transition);
}

.search-box:focus-within {
  box-shadow: 0 0 0 2px var(--text-green);
}

.search-box input {
  width: 100%;
  padding: 10px 16px;
  border: none;
  outline: none;
  font-size: 0.95rem;
  color: #333;
}

.search-box input::placeholder {
  color: #999;
}

.search-box button {
  background: transparent;
  border: none;
  padding: 10px 16px;
  color: #555;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
}

.search-box button:hover {
  color: var(--text-green);
}

/* Live Search Dropdown */
.search-results {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 6px;
  box-shadow: var(--shadow);
  max-height: 280px;
  overflow-y: auto;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
}

.search-results.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.search-item {
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.9rem;
  transition: background 0.2s ease;
}

.search-item:last-child {
  border-bottom: none;
}

.search-item:hover {
  background-color: #f4fbf3;
}

.search-item .category {
  font-size: 0.75rem;
  background: #e2f5df;
  color: var(--text-green);
  padding: 2px 8px;
  border-radius: 12px;
  font-weight: 600;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.6rem;
  color: var(--text-green);
  cursor: pointer;
}

/* ==========================================
   NAVIGATION BAR
   ========================================== */
.main-navbar {
  background-color: var(--navbar-bg);
  box-shadow: var(--shadow);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 20px;
  color: var(--text-white);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
}

.nav-link i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.08);
  color: #8be1a8;
}


/* Bottom Navigation Bar */
.bottom-nav {
  background-color: #1a202c;
  padding: 0 8%;
  display: flex;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links li {
  position: relative;
}

.nav-link {
  display: block;
  padding: 14px 10px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #74c69d;
}

.arrow {
  font-size: 18px;
  margin-left: 3px;
}

/* First Level Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #2d3748;
  min-width: 210px;
  list-style: none;
  padding: 8px 0;
  margin: 0;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 6px 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 100;
}

.dropdown-item:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 18px;
  color: #e2e8f0;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-menu a:hover {
  background-color: #4a5568;
  color: #74c69d;
}

/* Second Level (Nested) Dropdown Menu */
.sub-dropdown-menu {
  position: absolute;
  top: 0;
  left: 100%;
  background-color: #242c3d;
  min-width: 220px;
  list-style: none;
  padding: 8px 0;
  margin: 0;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
  border-radius: 0 6px 6px 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: all 0.25s ease;
  z-index: 101;
}

.nested-dropdown:hover > .sub-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.side-arrow {
  font-size: 12px;
}

/* Mobile Responsiveness & Hamburger Toggle */
.menu-toggle,
.hamburger-btn {
  display: none;
}

/* Dropdown Menu Animations */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background-color: var(--navbar-bg);
  list-style: none;
  box-shadow: var(--shadow);
  border-radius: 0 0 6px 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
  z-index: 999;
  border-top: 3px solid var(--hover-green);
}

.dropdown-menu li a {
  display: block;
  padding: 12px 18px;
  color: var(--text-white);
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-menu li:last-child a {
  border-bottom: none;
}

.dropdown-menu li a:hover {
  background-color: var(--hover-green);
  padding-left: 24px;
}

/* Desktop Hover Animations */
@media (min-width: 769px) {
  .nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-item.dropdown:hover .nav-link i {
    transform: rotate(180deg);
  }
}

/* ==========================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================== */
@media (max-width: 768px) {
  .header-container {
    flex-wrap: wrap;
    gap: 12px;
  }

  .logo-area {
    max-width: 70%;
  }

  .logo-icon img {
    max-height: 50px;
    width: auto;
  }

  .mobile-toggle {
    display: block;
  }

  .search-wrapper {
    order: 3;
    max-width: 100%;
    margin: 5px 0 0 0;
  }

  .main-navbar {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
  }

  .main-navbar.open {
    max-height: 800px;
    overflow-y: auto;
  }

  .nav-container {
    padding: 0;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .nav-link {
    justify-content: space-between;
    padding: 15px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .dropdown-menu,
  .sub-dropdown-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    max-height: 0;
    overflow: hidden;
    box-shadow: none;
    border-top: none;
    background-color: #1e2229;
    transition: max-height 0.3s ease;
    min-width: 100%;
  }

  .nav-item.dropdown.active > .dropdown-menu,
  .dropdown-item.active > .dropdown-menu,
  .nested-dropdown.active > .sub-dropdown-menu {
    max-height: 500px;
  }

  .nav-item.dropdown.active > .nav-link i,
  .dropdown-item.active > .nav-link .arrow {
    transform: rotate(180deg);
  }
}

    /* Nav Bar End */
    
    /* --- Hero Slider --- */

   .egb-wrap {
  --egb-mint: #c8ef86;
  --egb-mint-deep: #9ed85a;
  --egb-dark: #2b2c2f;
  --egb-ink: #14161a;
  --egb-card: #1c1e23;
  --egb-muted: rgba(255,255,255,.72);
  font-family: Outfit, sans-serif;
  color: #fff;
  line-height: 1.5;
}

.egb-wrap *, .egb-wrap *::before, .egb-wrap *::after { box-sizing: border-box; }
.egb-imgs { display: none !important; }

/* Layout */
.egb-hero { position: relative; overflow: hidden; background: #0d0f12; }
.egb-slider > input { position: absolute; width: 1px; height: 1px; opacity: 0; clip: rect(0 0 0 0); }
.egb-slider { position: relative; }
.egb-viewport { overflow: hidden; height: min(72vh, 640px); min-height: 420px; }
.egb-track { display: flex; width: 700%; height: 100%; transition: transform .9s cubic-bezier(.72,.01,.22,1); }

/* 7 Slides = ~14.28% each */
.egb-slide {
  position: relative; flex: 0 0 14.285714%; width: 14.285714%;
  height: 100%; overflow: hidden; background-color: #111;
  background-size: cover; background-position: center center;
}

/* Local Background Fallback System (CSS only if JS fails) */
.egb-slide[data-bg="1"]::before,
.egb-slide:nth-child(1)::before {
  content:""; position:absolute; inset:-4%; z-index:0;
  background-image:url('assets/images/slide-01-hero.jpg');
  background-size:cover; background-position:center;
  transform:scale(1.08); animation:egb-ken 18s ease-in-out infinite alternate;
}
.egb-slide[data-bg="2"]::before,
.egb-slide:nth-child(2)::before {
  content:""; position:absolute; inset:-4%; z-index:0;
  background-image:url('assets/images/slide-02-trading.jpg');
  background-size:cover; background-position:center;
  transform:scale(1.08); animation:egb-ken 18s ease-in-out infinite alternate;
}
.egb-slide[data-bg="3"]::before,
.egb-slide:nth-child(3)::before {
  content:""; position:absolute; inset:-4%; z-index:0;
  background-image:url('assets/images/slide-03-facility.jpg');
  background-size:cover; background-position:center;
  transform:scale(1.08); animation:egb-ken 18s ease-in-out infinite alternate;
}
.egb-slide[data-bg="4"]::before,
.egb-slide:nth-child(4)::before {
  content:""; position:absolute; inset:-4%; z-index:0;
  background-image:url('assets/images/slide-04-branding.jpg');
  background-size:cover; background-position:center;
  transform:scale(1.08); animation:egb-ken 18s ease-in-out infinite alternate;
}
.egb-slide[data-bg="5"]::before,
.egb-slide:nth-child(5)::before {
  content:""; position:absolute; inset:-4%; z-index:0;
  background-image:url('assets/images/slide-05-ecommerce.jpg');
  background-size:cover; background-position:center;
  transform:scale(1.08); animation:egb-ken 18s ease-in-out infinite alternate;
}
.egb-slide[data-bg="6"]::before,
.egb-slide:nth-child(6)::before {
  content:""; position:absolute; inset:-4%; z-index:0;
  background-image:url('assets/images/slide-06-food.jpg');
  background-size:cover; background-position:center;
  transform:scale(1.08); animation:egb-ken 18s ease-in-out infinite alternate;
}
.egb-slide[data-bg="7"]::before,
.egb-slide:nth-child(7)::before {
  content:""; position:absolute; inset:-4%; z-index:0;
  background-image:url('assets/images/slide-07-investments.jpg');
  background-size:cover; background-position:center;
  transform:scale(1.08); animation:egb-ken 18s ease-in-out infinite alternate;
}

/* Overlays */
.egb-wash {
  position:absolute; inset:0; z-index:1;
  background:linear-gradient(90deg,rgba(8,10,14,.82)0%,rgba(8,10,14,.55)38%,rgba(8,10,14,.18)70%,rgba(20,12,4,.35)100%),linear-gradient(180deg,rgba(0,0,0,.15)0%,rgba(0,0,0,.35)100%);
}
.egb-mesh {
  position:absolute; inset:0; z-index:2; pointer-events:none;
  background-image:radial-gradient(circle at 72%42%,rgba(200,239,134,.16),transparent 22%),radial-gradient(circle at 88%78%,rgba(255,176,70,.12),transparent 18%);
}
.egb-mesh::after {
  content:""; position:absolute; right:8%; top:18%;
  width:min(38vw,420px); height:min(38vw,420px);
  border:1px solid rgba(200,239,134,.18); border-radius:50%;
  box-shadow:0 0 0 28px rgba(200,239,134,.04);
  animation:egb-orbit 16s linear infinite;
}

/* Typography */
.egb-copy {
  position:relative; z-index:3; max-width:640px; height:100%;
  display:flex; flex-direction:column; justify-content:center;
  padding:clamp(28px,6vw,80px) clamp(20px,6vw,90px) 88px;
}
.egb-kicker { margin:0 0 12px; font-size:12px; letter-spacing:.22em; text-transform:uppercase; color:var(--egb-mint); font-weight:600; }
.egb-copy h1 { margin:0 0 16px; font-family:Oswald,sans-serif; font-size:clamp(34px,6vw,68px); line-height:.92; letter-spacing:.02em; font-weight:600; color:var(--egb-mint); text-wrap:balance; }
.egb-copy h2 { margin:0 0 16px; font-size:clamp(20px,3vw,32px); line-height:1.15; font-weight:700; color:#ffffff; }
.egb-lead { margin:0; max-width:34rem; color:var(--egb-muted); font-size:clamp(13px,1.4vw,16px); font-weight:300; }

/* Navigation Controls */
.egb-ui { position:absolute; inset:0; pointer-events:none; z-index:10; }
.egb-btn {
  pointer-events:auto; position:absolute; top:46%; width:46px; height:46px;
  display:none; align-items:center; justify-content:center; border-radius:50%;
  color:#fff; background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.2);
  backdrop-filter:blur(10px); cursor:pointer; transition:transform .25s ease,background .25s ease;
}
.egb-btn:hover { background:rgba(200,239,134,.92); color:#1a1c14; transform:scale(1.06); }
.egb-btn svg{width:20px;height:20px;}
.egb-p{left:18px;} .egb-n{right:18px;}

.egb-dots{
  pointer-events:auto;position:absolute;left:50%;bottom:22px;transform:translateX(-50%);
  display:flex;align-items:center;gap:8px;padding:8px 12px;border-radius:999px;background:rgba(0,0,0,.22);backdrop-filter:blur(8px);
}
.egb-dot{display:block;cursor:pointer;}
.egb-dot span{
  display:block;width:8px;height:8px;border-radius:99px;background:rgba(255,255,255,.45);
  transition:width .35s ease,background .35s ease;
}

/* Active States */
.egb-slider>input#egb-s1:checked~.egb-viewport .egb-track{transform:translateX(0%);}
.egb-slider>input#egb-s2:checked~.egb-viewport .egb-track{transform:translateX(-14.2857%);}
.egb-slider>input#egb-s3:checked~.egb-viewport .egb-track{transform:translateX(-28.5714%);}
.egb-slider>input#egb-s4:checked~.egb-viewport .egb-track{transform:translateX(-42.8571%);}
.egb-slider>input#egb-s5:checked~.egb-viewport .egb-track{transform:translateX(-57.1428%);}
.egb-slider>input#egb-s6:checked~.egb-viewport .egb-track{transform:translateX(-71.4285%);}
.egb-slider>input#egb-s7:checked~.egb-viewport .egb-track{transform:translateX(-85.7142%);}

.egb-slider>input#egb-s1:checked~.egb-ui .d1 span,
.egb-slider>input#egb-s2:checked~.egb-ui .d2 span,
.egb-slider>input#egb-s3:checked~.egb-ui .d3 span,
.egb-slider>input#egb-s4:checked~.egb-ui .d4 span,
.egb-slider>input#egb-s5:checked~.egb-ui .d5 span,
.egb-slider>input#egb-s6:checked~.egb-ui .d6 span,
.egb-slider>input#egb-s7:checked~.egb-ui .d7 span{width:28px;background:var(--egb-mint);}

.egb-slider>input#egb-s1:checked~.egb-ui .egb-p1,.egb-slider>input#egb-s1:checked~.egb-ui .egb-n1,
.egb-slider>input#egb-s2:checked~.egb-ui .egb-p2,.egb-slider>input#egb-s2:checked~.egb-ui .egb-n2,
.egb-slider>input#egb-s3:checked~.egb-ui .egb-p3,.egb-slider>input#egb-s3:checked~.egb-ui .egb-n3,
.egb-slider>input#egb-s4:checked~.egb-ui .egb-p4,.egb-slider>input#egb-s4:checked~.egb-ui .egb-n4,
.egb-slider>input#egb-s5:checked~.egb-ui .egb-p5,.egb-slider>input#egb-s5:checked~.egb-ui .egb-n5,
.egb-slider>input#egb-s6:checked~.egb-ui .egb-p6,.egb-slider>input#egb-s6:checked~.egb-ui .egb-n6,
.egb-slider>input#egb-s7:checked~.egb-ui .egb-p7,.egb-slider>input#egb-s7:checked~.egb-ui .egb-n7{display:flex;}

/* Text animation on active slide */
.egb-slider>input#egb-s1:checked~.egb-viewport .egb-slide:nth-child(1) .egb-copy,
.egb-slider>input#egb-s2:checked~.egb-viewport .egb-slide:nth-child(2) .egb-copy,
.egb-slider>input#egb-s3:checked~.egb-viewport .egb-slide:nth-child(3) .egb-copy,
.egb-slider>input#egb-s4:checked~.egb-viewport .egb-slide:nth-child(4) .egb-copy,
.egb-slider>input#egb-s5:checked~.egb-viewport .egb-slide:nth-child(5) .egb-copy,
.egb-slider>input#egb-s6:checked~.egb-viewport .egb-slide:nth-child(6) .egb-copy,
.egb-slider>input#egb-s7:checked~.egb-viewport .egb-slide:nth-child(7) .egb-copy{animation:egb-rise .75s ease both;}

/* Stats Bar */
.egb-stats{display:grid;grid-template-columns:repeat(4,1fr);background:var(--egb-dark);border-top:1px solid rgba(255,255,255,.04);}
.egb-stat{text-align:center;padding:28px 12px 24px;position:relative;}
.egb-stat:not(:last-child)::after{content:"";position:absolute;right:0;top:22%;height:56%;width:1px;background:rgba(255,255,255,.1);}
.egb-stat strong{display:block;font-family:Oswald,sans-serif;font-size:clamp(32px,4vw,44px);font-weight:600;color:var(--egb-mint);letter-spacing:.02em;line-height:1;}
.egb-stat span{display:block;margin-top:8px;font-size:13px;color:rgba(255,255,255,.78);font-weight:500;}

/* Divisions Grid */
.egb-divs{background:radial-gradient(circle at 10% 0%,rgba(200,239,134,.08),transparent 28%),var(--egb-ink);padding:clamp(48px,7vw,88px) clamp(18px,5vw,72px);}
.egb-divs-head{max-width:680px;margin-bottom:36px;}
.egb-divs-head h2{margin:0 0 10px;font-family:Oswald,sans-serif;font-size:clamp(32px,5vw,52px);letter-spacing:.04em;font-weight:600;}
.egb-divs-head p:last-child{margin:0;color:var(--egb-muted);}

.egb-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:18px;}
.egb-card{
  background:linear-gradient(180deg,#22252b 0%,var(--egb-card) 100%);
  border:1px solid rgba(255,255,255,.06);border-radius:22px;padding:26px 24px 24px;
  transition:transform .35s ease,border-color .35s ease,box-shadow .35s ease;
}
.egb-card:hover{transform:translateY(-6px);border-color:rgba(200,239,134,.35);box-shadow:0 18px 40px rgba(0,0,0,.28),0 0 0 1px rgba(200,239,134,.08);}
.egb-ico{width:48px;height:48px;display:flex;align-items:center;justify-content:center;border-radius:14px;margin-bottom:16px;color:#14200a;background:linear-gradient(160deg,var(--egb-mint),var(--egb-mint-deep));}
.egb-ico svg{width:24px;height:24px;}
.egb-card h3{margin:0 0 8px;font-size:18px;font-weight:650;}
.egb-card p{margin:0;color:var(--egb-muted);font-size:14px;}

@keyframes egb-ken{from{transform:scale(1.08) translate3d(0,0,0);}to{transform:scale(1.16) translate3d(-1.5%,-1%,0);}}
@keyframes egb-orbit{from{transform:rotate(0deg);}to{transform:rotate(360deg);}}
@keyframes egb-rise{from{opacity:0;transform:translateY(18px);}to{opacity:1;transform:translateY(0);}}

/* Responsive */
@media(max-width:1100px){.egb-grid{grid-template-columns:repeat(3,1fr);}}
@media(max-width:800px){.egb-grid{grid-template-columns:repeat(2,1fr);}.egb-viewport{height:min(78vh,620px);}}
@media(max-width:720px){
  .egb-stats{grid-template-columns:repeat(2,1fr);}
  .egb-stat:nth-child(even)::after{display:none;}
  .egb-stat{padding:22px 10px;}
  .egb-btn{width:38px;height:38px;}
  .egb-p{left:10px;} .egb-n{right:10px;}
  .egb-copy{padding-bottom:78px;}
}
@media(max-width:520px){
  .egb-grid{grid-template-columns:1fr;}
  .egb-viewport{min-height:480px;height:auto;}
  .egb-slide{min-height:480px;}
  .egb-copy h2{font-size:20px;}
  .egb-mesh::after{opacity:.45;width:220px;height:220px;}
}
/* slider hero section end */

/* another pages of her section start*/
.hero-banner {
    position: relative;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    overflow: hidden;
    font-family: Arial, sans-serif;
  }

  .hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
  }

  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg, 
      rgba(0, 0, 0, 0.85) 0%, 
      rgba(0, 0, 0, 0.6) 40%, 
      rgba(0, 0, 0, 0.2) 100%
    );
    z-index: 1;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 40px 50px;
    color: #ffffff;
  }

  .hero-tag {
    display: inline-block;
    color: #c8ef86;
    font-size: 62px;
    font-weight: 800;
    line-height: 70px;
    letter-spacing: 1px;
    margin-bottom: 15px;
  }

  .hero-title {
    color: #ffffff;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.15;
    margin: 0 0 15px 0;
  }

  .hero-description {
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    max-width: 480px;
  }

  @media (max-width: 768px) {
    .hero-content {
      padding: 30px 20px;
    }
    .hero-title {
      font-size: 30px;
    }
  }

    /* Logo Card Styling */
   .logo-carousel {
            margin: 0 auto;
            width: 100%;
            background-color: #ffffff;
            display: flex;
            overflow: hidden;
            position: relative;
            padding: 24px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        /* Gradient mask edges */
        .logo-carousel::before,
        .logo-carousel::after {
            content: "";
            position: absolute;
            top: 0;
            width: 120px;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .logo-carousel::before {
            left: 0;
            background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
        }

        .logo-carousel::after {
            right: 0;
            background: linear-gradient(to left, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
        }

        .logo-group {
            display: flex;
            align-items: center;
            justify-content: space-around;
            gap: 1.5rem;
            animation: spin 60s infinite linear;
            flex-shrink: 0;
            min-width: 100%;
            padding: 14px;
        }

        /* Pause animation on hover */
        .logo-carousel:hover .logo-group {
            animation-play-state: paused;
        }

        .logo-card {
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            flex: 0 0 160px;
            height: 90px;
            padding: 8px;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
            cursor: pointer;
            box-sizing: border-box;
        }

        .logo-card:hover {
            background: #ffffff;
            border-color: #cbd5e1;
            transform: translateY(-4px) scale(1.03);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
        }

        .logo-card img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            /* filter: grayscale(100%) opacity(0.7); */
            transition: all 0.3s ease;
        }

        .logo-card:hover img {
            filter: grayscale(0%) opacity(1);
        }

        @keyframes spin {
            from {
                transform: translateX(0);
            }
            to {
                transform: translateX(-100%);
            }
        }

        /* Mobile Adjustments */
        @media (max-width: 768px) {
            .logo-card {
                flex: 0 0 120px;
                height: 70px;
                padding: 0.75rem;
            }

            .logo-carousel::before,
            .logo-carousel::after {
                width: 50px;
            }
        }
    /* LOGO SECTION CONTAINER END */
    

    /* --- SECTION CONTAINER --- */
    .expert-section {
      width: 100%;
      max-width: 1500px;
      padding: 70px 20px;
      margin: 0 auto;
    }

    /* --- HEADER STYLES --- */
    .section-subtitle {
      color: #12c192;
      background: #fcfafa;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .section-title {
      font-size: 2.25rem;
      font-weight: 800;
      color: #000000;
      margin-bottom: 40px;
    }

    /* --- GRID LAYOUT --- */
    .expert-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      column-gap: 50px;
      row-gap: 40px;
    }

    @media (max-width: 768px) {
      .expert-grid {
        grid-template-columns: 1fr;
      }
    }

    /* --- ITEM CARD STYLES --- */
    .expert-card {
      display: flex;
      align-items: flex-start;
      gap: 20px;
    }


    .card-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: #000000;
      margin-bottom: 8px;
    }

    .card-text {
      font-size: 0.95rem;
      line-height: 1.5;
      color: #333333;
    }

    .card-text a {
      color: #000000;
      font-weight: 700;
      text-decoration: underline;
    }

    /* --- 3-SECOND ANIMATION STYLES --- */
    /* Initial state before scroll into view */
    .animate-item {
      opacity: 0;
      transform: translateY(25px);
      /* 3.0s total animation duration as requested */
      transition: opacity 3s cubic-bezier(0.16, 1, 0.3, 1), 
                  transform 3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* Staggered transition delays across 3s timeline */
    .animate-item.delay-1 { transition-delay: 0.0s; }
    .animate-item.delay-2 { transition-delay: 0.2s; }
    .animate-item.delay-3 { transition-delay: 0.4s; }
    .animate-item.delay-4 { transition-delay: 0.6s; }
    .animate-item.delay-5 { transition-delay: 0.8s; }

    /* Animated active state */
    .animate-item.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Section-End */

    /* info image start */
    .image-section {
            width: 100%;
            max-width: 1800px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .image-section img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }

        @media (max-width: 768px) {
            .image-section {
                padding: 20px 10px;
            }

            .image-section img {
                border-radius: 8px;
            }
        }

        @media (max-width: 480px) {
            .image-section {
                padding: 10px 5px;
            }
        }
    /* info image end */


    /* Get TOuch in With Our team Start */
    /* Outer Container configured for equal heights */
    .contact-container {
      max-width: 1280px;
      min-height: 500px;
      padding: 12PX;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      align-items: stretch;
    }

    /* Left & Right Panel Layout */
    .left-panel, .right-panel {
      background: #ffffff;
      border-radius: 16px;
      padding: 32px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    /* Headings */
    h2.section-title {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 8px;
      padding: 30px;
      color: #111827;
      letter-spacing: -0.5px;
    }

    p.section-desc {
      font-size: 14px;
      color: #6b7280;
      margin-bottom: 24px;
    }

    /* Direct Contact Row (Email & Contact) */
    .contact-direct-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 24px;
    }

    .direct-item {
      background: #fafafa;
      padding: 16px;
      border-radius: 12px;
      border: 1px solid #f0f0f0;
    }

    .direct-header {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
    }

    .icon-box {
      width: 36px;
      height: 36px;
      background-color: #d1fae5; /* Soft Mint Green */
      color: #059669;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
    }

    .direct-header h3 {
      font-size: 16px;
      font-weight: 600;
    }

    .direct-list {
      list-style: none;
      font-size: 13px;
    }

    .direct-list li {
      margin-bottom: 6px;
    }

    .direct-list a {
      color: #374151;
      text-decoration: none;
      transition: color 0.2s;
    }

    .direct-list a:hover {
      color: #059669;
      text-decoration: underline;
    }

    /* Location Cards Grid */
    .location-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      flex-grow: 1;
    }

    .location-card {
      background-color: #f8fafc;
      border: 1px solid #e2e8f0;
      border-radius: 12px;
      padding: 20px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }

    .location-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
      border-color: #a7f3d0;
    }

    .location-card .icon-box {
      margin-bottom: 12px;
      width: 42px;
      height: 42px;
      font-size: 18px;
    }

    .location-card h4 {
      font-size: 15px;
      font-weight: 600;
      color: #111827;
      margin-bottom: 4px;
    }

    .location-card p {
      font-size: 12px;
      color: #6b7280;
      line-height: 1.4;
    }

    /* Form Styles */
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 16px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      margin-bottom: 16px;
    }

    .form-group.full-width {
      grid-column: span 2;
    }

    label {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: #374151;
      margin-bottom: 6px;
    }

    label span.required {
      color: #ef4444;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    select,
    textarea {
      width: 100%;
      padding: 10px 14px;
      border: 1px solid #e5e7eb;
      background-color: #f9fafb;
      border-radius: 8px;
      font-size: 13px;
      color: #1f2937;
      outline: none;
      transition: all 0.2s ease;
    }

    input:focus, select:focus, textarea:focus {
      background-color: #ffffff;
      border-color: #10b981;
      box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
    }

    textarea {
      resize: vertical;
      min-height: 90px;
    }

    /* Inquiry Pills */
    .inquiry-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 4px;
    }

    .tag-btn {
      padding: 6px 14px;
      border: 1px solid #e5e7eb;
      background-color: #f3f4f6;
      border-radius: 20px;
      font-size: 12px;
      color: #374151;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .tag-btn:hover {
      background-color: #e5e7eb;
    }

    .tag-btn.active {
      background-color: #ffffff;
      border-color: #ef4444;
      color: #ef4444;
      font-weight: 600;
    }

    /* Checkbox */
    .checkbox-group {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 12px;
      margin-bottom: 20px;
    }

    .checkbox-group input[type="checkbox"] {
      width: 16px;
      height: 16px;
      accent-color: #111827;
      cursor: pointer;
    }

    .checkbox-group label {
      font-size: 11px;
      color: #6b7280;
      text-transform: uppercase;
      margin: 0;
      cursor: pointer;
    }

    /* Submit Button */
    .submit-btn {
      width: 100%;
      padding: 14px;
      background-color: #000000;
      color: #ffffff;
      border: none;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      cursor: pointer;
      transition: background-color 0.2s ease, transform 0.1s ease;
    }

    .submit-btn:hover {
      background-color: #1f2937;
    }

    .submit-btn:active {
      transform: scale(0.99);
    }

    .inquiry-subtext {
      font-size: 11px;
      color: #6b7280;
      margin-top: 4px;
    }

    /* Responsive Adjustments */
    @media (max-width: 992px) {
      .contact-container {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 576px) {
      .contact-direct-grid,
      .location-grid,
      .form-row {
        grid-template-columns: 1fr;
      }
      
      .left-panel, .right-panel {
        padding: 20px;
      }
    }
    /* Get Touch In With Our Team End */




/* footer start */
/* Base Container Layout */
     .ihub-footer {
  width: 100%;
  font-family: Arial, Helvetica, sans-serif;
  color: #0b253a;
  overflow: hidden;
}

.ihub-help-bar {
  background: #000000;
  color: #ffffff;
  text-align: center;
  padding: 12px 20px;
  font-size: 13px;
  line-height: 1.4;
}

.ihub-help-bar p {
  margin: 0;
  animation: ihubTopFade 0.9s ease forwards;
}

.ihub-help-bar strong {
  color: #ffffff;
}

.ihub-help-bar a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}

.ihub-help-bar a:hover {
  color: #7ee48b;
}

.ihub-footer-main {
  background: linear-gradient(135deg, #dffbd8 0%, #dcfbd5 45%, #d8f8cf 100%);
  padding: 58px 20px 40px;
  position: relative;
}

.ihub-footer-main::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  top: -160px;
  background: radial-gradient(circle, rgba(36, 139, 90, 0.14), transparent 65%);
  animation: ihubGlowMove 6s ease-in-out infinite alternate;
}

.ihub-footer-main::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  left: -140px;
  bottom: -160px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.07), transparent 65%);
  animation: ihubGlowMoveTwo 7s ease-in-out infinite alternate;
}

.ihub-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.95fr 0.95fr;
  gap: 80px;
  position: relative;
  z-index: 2;
}

.ihub-footer-col {
  animation: ihubFadeUp 0.9s ease both;
}

.ihub-footer-col:nth-child(2) {
  animation-delay: 0.15s;
}

.ihub-footer-col:nth-child(3) {
  animation-delay: 0.3s;
}

.ihub-logo-wrap {
  margin-bottom: 12px;
}

.ihub-logo {
  max-width: 330px;
  height: auto;
  display: block;
  animation: ihubFloat 3.8s ease-in-out infinite;
}

.ihub-description {
  max-width: 380px;
  font-size: 16px;
  line-height: 1.65;
  color: #24504a;
  margin: 0 0 24px;
}

.ihub-info-block {
  margin-bottom: 24px;
}

.ihub-info-block h4 {
  margin: 0 0 7px;
  font-size: 14px;
  color: #10273b;
  font-weight: 800;
}

.ihub-info-block p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #10273b;
}

.ihub-phone {
  display: inline-block;
  color: #007f37;
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.ihub-phone:hover {
  color: #003d1a;
  transform: translateX(5px);
}

.ihub-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 370px;
}

.ihub-badges span {
  background: #202020;
  color: #ffffff;
  font-size: 12px;
  padding: 9px 11px;
  border-radius: 4px;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.ihub-badges span:hover {
  transform: translateY(-5px);
  background: #0a7d39;
  box-shadow: 0 8px 20px rgba(10, 125, 57, 0.25);
}

.ihub-footer-col h2 {
  font-size: 34px;
  line-height: 1;
  margin: 15px 0 14px;
  color: #1c3851;
  font-weight: 900;
  letter-spacing: 0.5px;
  position: relative;
}

.ihub-footer-col h2::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background: #168648;
  margin-top: 10px;
  border-radius: 20px;
  animation: ihubLineGrow 1s ease forwards;
  animation-delay: 0.55s;
}

.ihub-links,
.ihub-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ihub-links li,
.ihub-contact-list li {
  margin-bottom: 7px;
}

.ihub-links a,
.ihub-contact-list a {
  color: #12314a;
  font-size: 14px;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.ihub-links a::before,
.ihub-contact-list a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: #168648;
  transition: width 0.3s ease;
}

.ihub-links a:hover,
.ihub-contact-list a:hover {
  color: #0a7d39;
  padding-left: 8px;
}

.ihub-links a:hover::before,
.ihub-contact-list a:hover::before {
  width: 100%;
}

.ihub-copyright {
  background: #000000;
  color: #ffffff;
  text-align: center;
  padding: 13px 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.ihub-copyright p {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

@keyframes ihubFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ihubTopFade {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ihubFloat {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes ihubLineGrow {
  from {
    width: 0;
  }

  to {
    width: 58px;
  }
}

@keyframes ihubGlowMove {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(-35px, 30px) scale(1.08);
  }
}

@keyframes ihubGlowMoveTwo {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(40px, -25px) scale(1.1);
  }
}

@media (max-width: 992px) {
  .ihub-footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 45px;
  }

  .ihub-brand-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .ihub-footer-main {
    padding: 42px 18px 32px;
  }

  .ihub-footer-container {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .ihub-footer-col h2 {
    font-size: 28px;
  }

  .ihub-description {
    font-size: 15px;
  }

  .ihub-help-bar {
    font-size: 12px;
  }

  .ihub-badges span {
    font-size: 11px;
  }
}
/* footer end */




.addresses-section {
      width: 100%;
      max-width: 1000px;
      margin: 0 auto;
      text-align: center;
      min-height: 680px;
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--heading-color);
      margin-bottom: 2.5rem;
      letter-spacing: -0.5px;
    }

    .section-title span {
      color: var(--accent-color);
    }

    /*  GRID LAYOUT  */
    .addresses-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.75rem;
      perspective: 1000px; /* Essential for 3D depth */
    }

    /*  3D CARD STYLES  */
    .address-card {
      background: var(--card-bg);
      background-color: #f0f0f0;
      border: 1px solid var(--card-border);
      border-radius: 16px;
      padding: 2.5rem 1.5rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      box-shadow: 0 10px 25px -5px var(--shadow-color);
      transition: transform 0.15s ease-out, box-shadow 0.3s ease, border-color 0.3s ease;
      transform-style: preserve-3d;
      will-change: transform;
      position: relative;
    }

    .address-card:hover {
      border-color: #cbd5e1;
      box-shadow: 0 20px 35px -10px rgba(15, 23, 42, 0.12);
    }

    /*  CARD ELEMENTS  */
    .icon-wrapper {
      width: 64px;
      height: 64px;
      background-color: var(--icon-box-bg);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.25rem;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      border: 1px solid var(--card-border);
      transform: translateZ(30px); /* 3D effect depth */
      transition: transform 0.3s ease, background-color 0.3s ease;
    }

    .icon-wrapper i {
      font-size: 1.6rem;
      color: var(--accent-color);
    }

    .address-card:hover .icon-wrapper {
      background-color: var(--accent-color);
    }

    .address-card:hover .icon-wrapper i {
      color: #B7FF03;
    }

    .card-title {
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--heading-color);
      margin-bottom: 0.75rem;
      transform: translateZ(25px); /* 3D depth */
    }

    .card-text {
      font-size: 0.92rem;
      color: var(--text-muted);
      line-height: 1.6;
      transform: translateZ(20px); /* 3D depth */
    }

    /*  RESPONSIVE DESIGN  */
    @media (max-width: 768px) {
      .addresses-grid {
        grid-template-columns: 1fr; /* Single column on tablet/mobile */
        gap: 1.25rem;
      }

      .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
      }

      .address-card {
        padding: 2rem 1.25rem;
      }
    }


    /* Section Container Styling */
    .social-section {
      background-color: #f0f0f0;
      padding: 60px 20px;
      text-align: center;
      font-family: 'Inter', sans-serif;
    }

    .social-section h2 {
      font-size: 2rem;
      font-weight: 700;
      color: #000000;
      margin-bottom: 40px;
    }

    /* Flexbox Layout for Social Items */
    .social-links {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 200px;
      flex-wrap: wrap;
      max-width: 1000px;
      margin: 0 auto;
    }

    /* Individual Social Card */
    .social-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-decoration: none;
      color: #000000;
      transition: transform 0.3s ease;
    }

    .social-item:hover {
      transform: translateY(-5px);
    }



    /* Project count section */
    .stats-section {
      width: 100%;
      height: 40px;
      background-color: #2b2c2c;
      padding: 80px 20px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    /* Grid Layout */
    .stats-container {
      max-width: 1200px;
      width: 100%;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      position: relative;
    }

    /* Stat Item Block */
    .stat-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 20px 10px;
      position: relative;
      /* Enable 3D perspective space for children */
      perspective: 1000px;
    }

    /* Vertical Divider Lines between items */
    .stat-item:not(:last-child)::after {
      content: '';
      position: absolute;
      right: 0;
      top: 15%;
      height: 70%;
      width: 1px;
      background: rgba(255, 255, 255, 0.12);
    }

    /* 3D Down-to-Up Animated Text Wrapper */
    .stat-number, 
    .stat-label {
      transform-style: preserve-3d;
      opacity: 0;
      /* Initial 3D State: Pushed down and rotated back on the X-axis */
      transform: translateY(40px) rotateX(-70deg) translateZ(-20px);
      transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
      will-change: transform, opacity;
    }

    /* Number Styling */
    .stat-number {
      font-size: 3rem;
      font-weight: 800;
      color: #ceffc9;
      line-height: 1.2;
      margin-bottom: 8px;
    }

    /* Label Styling */
    .stat-label {
      font-size: 0.95rem;
      font-weight: 500;
      color: #e2e8f0;
      letter-spacing: 0.3px;
      transition-delay: 0.15s; /* Staggered effect for label after number */
    }

    /* Animate-In State (triggered by JS IntersectionObserver) */
    .stat-item.animate .stat-number,
    .stat-item.animate .stat-label {
      opacity: 1;
      transform: translateY(0) rotateX(0deg) translateZ(0);
    }

    /* Staggered animation delay for each column */
    .stat-item:nth-child(1) .stat-number { transition-delay: 0.1s; }
    .stat-item:nth-child(1) .stat-label  { transition-delay: 0.25s; }

    .stat-item:nth-child(2) .stat-number { transition-delay: 0.25s; }
    .stat-item:nth-child(2) .stat-label  { transition-delay: 0.4s; }

    .stat-item:nth-child(3) .stat-number { transition-delay: 0.4s; }
    .stat-item:nth-child(3) .stat-label  { transition-delay: 0.55s; }

    .stat-item:nth-child(4) .stat-number { transition-delay: 0.55s; }
    .stat-item:nth-child(4) .stat-label  { transition-delay: 0.7s; }

    /* Responsive Design */
    @media (max-width: 992px) {
      .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 0;
      }

      /* Adjust dividers for 2x2 grid */
      .stat-item:not(:last-child)::after {
        display: none;
      }

      .stat-item:nth-child(1)::after {
        display: block;
      }
    }
    @media (max-width: 576px) {
      .stats-container {
        margin-top: 150%;
        width: 100%;
        background-color: #2b2c2c;
        padding: 12px;
        grid-template-columns: 1fr;
        gap: 30px 0;
      }

      .stat-item::after {
        display: none !important;
      }

      .stat-number {
        font-size: 2.5rem;
      }
    }
    @media (max-width){
      .infographics{
        width: 350px;
        height: 150px;
      }
    }

    

    /* --- Layout Wrappers --- */
        .site-wrapper {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 0;
        }

        /* --- Scroll Animation Triggers --- */
        .animate-on-scroll {
            opacity: 0;
            transition: opacity var(--anim-speed) var(--anim-curve), 
                        transform var(--anim-speed) var(--anim-curve);
        }

        .animate-on-scroll.is-visible {
            opacity: 1;
            transform: translate(0, 0);
        }

        .anim-slide-up { transform: translateY(50px); }
        .anim-slide-right { transform: translateX(-50px); }
        .anim-slide-left { transform: translateX(50px); }

        @media (prefers-reduced-motion: reduce) {
            .animate-on-scroll {
                transition: none;
                opacity: 1;
                transform: none;
            }
        }




        /* About Sectionn css */
        /* Individual Row Container */
    .feature-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1500px;
      margin: 0 auto;
      padding: 80px 20px;
      gap: 60px;
    }

    /* Alternate background for second row */
    .feature-row.gray-bg {
      background-color: #f2f2f2;
      max-width: 100%;
      padding-left: calc((100vw - 1500px) / 2);
      padding-right: calc((100vw - 1160px) / 2);
    }

    /* Column 1: Text Block */
    .feature-text {
      flex: 1;
      max-width: 540px;
    }

    .tagline {
      color: #1a5e35;
      font-size: 20px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      margin-bottom: 12px;
    }

    .title {
      color: #272a31;
      font-size: 50px;
      font-weight: 600;
      line-height: 1.25;
      margin-bottom: 24px;
    }

    .description p {
      color: #444444;
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 16px;
    }

    .description ul {
      margin: 16px 0 20px 20px;
      color: #444444;
      font-size: 16px;
    }

    .description li {
      margin-bottom: 6px;
    }

    /* Column 2: Image Block with Offset Yellow Border */
    .feature-image-container {
      flex: 1;
      display: flex;
      justify-content: center;
    }

    .image-wrapper {
      position: relative;
      width: 100%;
      max-width: 600px;
    }

    /* Yellow background accent block */
    .image-wrapper::before {
      content: '';
      position: absolute;
      top: 15px;
      left: 15px;
      width: 100%;
      height: 100%;
      background-color: #d1fae5;
      z-index: 1;
    }

    /* Flip offset position for the second row image */
    .reverse .image-wrapper::before {
      top: 15px;
      left: -15px;
    }

    .image-wrapper img {
      position: relative;
      z-index: 2;
      width: 100%;
      height: 600px;
      object-fit: cover;
      display: block;
    }
    @media (max-width: 300px){
      .infographics{
        width: fit-content;
      }
    }

    /* Responsive Design for Mobile Devices */
    @media (max-width: 868px) {
      .feature-row, .feature-row.gray-bg .infographics{
        flex-direction: column;
        padding: 40px 20px;
      }

      .feature-row.reverse {
        flex-direction: column-reverse;
      }

      .feature-text {
        max-width: 100%;
      }

      .image-wrapper::before {
        left: 10px;
        top: 10px;
      }
      
      .reverse .image-wrapper::before {
        left: -10px;
        top: 10px;
      }
    }



    /* our team section */
    .team-section {
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-title {
      text-align: center;
      font-size: 2.25rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 48px;
      color: #111111;
    }

    /* Grid configuration: 6 columns default on large screens */
    .team-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 16px;
    }

    /* ==========================================================================
       3. Responsive Breakpoints
       ========================================================================== */
    @media (max-width: 1024px) {
      .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
      }
    }

    @media (max-width: 640px) {
      .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
      }
    }

    @media (max-width: 400px) {
      .team-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ==========================================================================
       4. Card Component
       ========================================================================== */
    .team-card {
      background-color: #ffffff;
      display: flex;
      flex-direction: column;
      border-radius: 4px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
      transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                  box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .team-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    }

    /* Image Styling */
    .card-image-container {
      width: 100%;
      aspect-ratio: 4 / 5;
      overflow: hidden;
      background-color: #e9ecef;
    }

    .card-image-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }

    .team-card:hover .card-image-container img {
      transform: scale(1.05);
    }

    /* Card Details */
    .card-body {
      padding: 20px 16px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .member-name {
      font-size: 1.05rem;
      font-weight: 700;
      color: #111111;
      margin-bottom: 8px;
      line-height: 1.2;
    }

    .member-role {
      font-size: 0.85rem;
      color: #555555;
      line-height: 1.35;
      font-weight: 400;
    }


    /* ceo section */
    /* CEO Message Section Wrapper */
    .ceo-section {
      max-width: 800px;
      width: 100%;
      border-left: 2px solid #111111;
      padding-left: 40px;
    }

    .ceo-section .label {
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 24px;
      color: #666666;
    }

    .ceo-message {
      font-size: 1.75rem;
      font-weight: 300;
      line-height: 1.5;
      letter-spacing: -0.5px;
      margin-bottom: 32px;
    }

    .ceo-details {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .ceo-name {
      font-size: 1.2rem;
      font-weight: 700;
    }

    .ceo-title {
      font-size: 0.95rem;
      color: #666666;
    }

    /* Expandable text toggle styling */
    .more-text {
      display: none;
      margin-top: 16px;
    }

    .more-text.show {
      display: block;
    }

    .toggle-btn {
      background: none;
      border: none;
      font-family: inherit;
      font-size: 0.9rem;
      font-weight: 700;
      text-decoration: underline;
      cursor: pointer;
      margin-top: 16px;
      padding: 0;
      color: #111111;
    }

    .toggle-btn:hover {
      opacity: 0.6;
    }


    /* Main About Page */
    .services-grid-wrapper {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
    padding: 2rem 1rem;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .our-divisions-text{
    text-align: center;
  }
  .our-divisions-text h1{
    font-size: 80px;
  }
  .our-divisions-text h3{
    margin-top: 25px;
    color: #1a5e35;
      font-size: 28px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      display: inline-flex;
      align-items: center;
      gap: 12px;
  }

  /* Responsive Grid System */
  .grid-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.75rem;
    width: 100%;
    max-width: 1200px;
  }

  @media (min-width: 640px) {
    .grid-container {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  

  @media (min-width: 1024px) {
    .grid-container .infographics{
      grid-template-columns: repeat(3, 1fr);
    }
  }

  /* Tile Card Styling with Glassmorphism / Blur & Light BG */
  .card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }

  /* Golden border glow on first card or hover */
  .card.featured,
  .card:hover {
    border-color: rgba(175, 217, 6, 0.5);
    box-shadow: 0 20px 40px -15px rgba(217, 119, 6, 0.2);
    transform: translateY(-6px);
  }

  /* Icon Container with Subtle Pastel Backgrounds */
  .icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
  }

  .card:hover .icon-wrapper {
    transform: scale(1.08);
  }

  /* Custom Color Variants for Icons */
  .icon-wrapper.building { background: linear-gradient(135deg, #ffe4e6, #fecdd3); color: #e11d48; }
  .icon-wrapper.trading { background: linear-gradient(135deg, #fef3c7, #fde68a); color: #d97706; }
  .icon-wrapper.contracting { background: linear-gradient(135deg, #e0e7ff, #c7d2fe); color: #4f46e5; }
  .icon-wrapper.branding { background: linear-gradient(135deg, #fae8ff, #f5d0fe); color: #c026d3; }
  .icon-wrapper.ecommerce { background: linear-gradient(135deg, #e0f2fe, #bae6fd); color: #0284c7; }
  .icon-wrapper.food { background: linear-gradient(135deg, #f3e8ff, #e9d5ff); color: #9333ea; }

  /* Card Typography */
  .card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.85rem;
    letter-spacing: -0.01em;
  }

  .card-description {
    font-size: 0.925rem;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 1.75rem;
    flex-grow: 1;
  }

  /* CTA Button Link */
  .card-link {
    color: #2a8a50;;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: gap 0.25s ease, color 0.25s ease;
  }

  .card-link:hover {
    gap: 0.6rem;
    color: #060606;
  }



  /* OUR LINKS */
  /* 
      Reset explicitly targeting elements instead of using the universal (*) selector 
      and avoiding the body tag as requested.
    */
    html, div, section, header, h2, h3, p, a, img, span, button {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    }

    html {
      background-color: #f8f9fa; /* Light background behind the wrapper */
    }

    /* Main wrapper replacing body styles */
    .page-wrapper {
      background-color: #ffffff; /* White background as requested */
      color: #1a1a1a;
      min-height: 100vh;
      padding: 80px 20px;
      display: flex;
      justify-content: center;
    }

    .portfolio-section {
      max-width: 1200px;
      width: 100%;
    }

    /* --- Header Layout --- */
    .header-layout {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 40px;
      flex-wrap: wrap;
      gap: 24px;
    }

    .text-content {
      max-width: 650px;
    }

    .service-card-list-style{
      margin-left: 22px;
    }

    .subtitle-wrapper {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
    }

    .purple-line {
      width: 24px;
      height: 2px;
      background-color: #2a8a50;
    }

    .subtitle {
      color: #2a8a50;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    .main-heading {
      font-size: 2.5rem;
      font-weight: 800;
      margin-bottom: 16px;
      color: #111;
      letter-spacing: -0.5px;
    }

    .description {
      color: #555;
      font-size: 1.05rem;
      line-height: 1.6;
    }

    /* --- Navigation Arrows --- */
    .nav-arrows {
      display: flex;
      gap: 12px;
      margin-bottom: 8px; /* Alignment tweak for the text */
    }

    .arrow-btn {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1px solid #eaeaea;
      background-color: #ffffff;
      color: #111;
      font-size: 1.2rem;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    }

    .arrow-btn:hover {
      background-color: #d7f8d1;
      color: #ffffff;
      border-color: #2a8a50;
      box-shadow: 0 8px 16px rgba(78, 164, 221, 0.3);
      transform: translateY(-2px);
    }

    /* --- Cards Grid --- */
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 30px;
    }

    /* --- Individual Card Styling --- */
    .card {
      background: #ffffff;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(133, 217, 6, 0.5);
      /* Soft shadow for white background */
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06); 
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      cursor: pointer;
      display: flex;
      flex-direction: column;
    }

    /* Hover Effects */
    .card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px linear-gradient(135deg, #f6fec7, #defd8a); color: #3ed906;;
      border-color: #e5e5e5;
    }

    .card-image-wrapper {
      width: 100%;
      height: 240px;
      overflow: hidden;
      background-color: #f5f5f5;
    }

    .card-image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .card:hover .card-image-wrapper img {
      transform: scale(1.08);
    }

    .card-content {
      padding: 24px;
      /* Left aligned to match the provided Screenshot 2026-08-12 074445.jpg layout */
      text-align: left; 
    }

    .card-category {
      display: block;
      color: #2a8a50;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .card-title {
      font-size: 1.25rem;
      font-weight: 700;
      color: #111;
      transition: color 0.3s ease;
    }

    .card:hover .card-title {
      color: #2a8a6a;
    }

    /* --- Responsive Adjustments --- */
    @media (max-width: 768px) {
      .page-wrapper {
        padding: 40px 16px;
      }
      
      .main-heading {
        font-size: 2rem;
      }
      
      .header-layout {
        flex-direction: column;
        align-items: flex-start;
      }

      .nav-arrows {
        margin-top: 10px;
      }
    }


    .services-wrapper {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      background-color: #f8fafc;
      padding: 60px 20px;
      color: #1e293b;
      box-sizing: border-box;
    }

    .services-wrapper div,
    .services-wrapper h2,
    .services-wrapper h3,
    .services-wrapper p,
    .services-wrapper span,
    .services-wrapper img {
      box-sizing: border-box;
    }

    /* Header Styling */
    .services-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .services-subtitle {
      color: #1a5e35;
      font-size: 28px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      display: inline-flex;
      align-items: center;
      gap: 12px;
    }

    .services-subtitle::before,
    .services-subtitle::after {
      content: "";
      display: inline-block;
      width: 30px;
      height: 1px;
      background-color: #1a5e35;
    }

    .services-title {
      font-size: 48px;
      font-weight: 800;
      color: #0f172a;
      margin-top: 10px;
      margin-bottom: 0;
    }

    .services-title span {
      color: #1a5e35;
    }

    /* Grid Layout */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      max-width: 1200px;
      margin: 0 auto;
    }

    @media (max-width: 992px) {
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 640px) {
      .services-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Card Styling */
    .service-card {
      background: rgba(255, 255, 255, 0.75);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(133, 217, 6, 0.5);
      border-radius: 16px;
      padding: 24px;
      display: flex;
      flex-direction: column;
      box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.04), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Hover Effect */
    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 30px -10px rgba(217, 119, 6, 0.15), 0 10px 15px -5px rgba(0, 0, 0, 0.08);
      border-color: rgba(133, 217, 6, 0.5);
      background: rgba(255, 255, 255, 0.95);
    }

    /* Card Image */
    .card-image-container {
      width: 100%;
      height: 200px;
      border-radius: 12px;
      overflow: hidden;
      margin-bottom: 20px;
    }

    .card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }

    .service-card:hover .card-image {
      transform: scale(1.04);
    }

    /* Icon Badge */
    /* .icon-badge {
      width: 42px;
      height: 42px;
      border-radius: 10px;
      background: #fef3c7;
      border: 1px solid #fde68a;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      margin-bottom: 16px;
    } */

    /* Text Elements */
    .card-title {
      font-size: 20px;
      font-weight: 700;
      color: #0f172a;
      margin: 0 0 12px 0;
    }

    .card-description {
      font-size: 14px;
      line-height: 1.6;
      color: #475569;
      margin: 0;
    }

/* hero section start */

    .cta-wrapper {
  background-color: #f6f6f6; /* Gray background */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 40vh;
  padding: 40px 20px;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.cta-content {
  text-align: center;
  max-width: 650px;
  width: 100%;
}

.cta-title {
  color: #000000;
  font-size: 2.75rem;
  font-weight: 800;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.cta-title .highlight {
  color: #1a5e35;
}

.cta-subtitle {
  color: #1a5e35;
  font-size: 1.05rem;
  font-weight: 400;
  margin: 0 0 32px 0;
  line-height: 1.5;
}

.cta-button {
  display: inline-block;
  background-color: #1a5e35;
  color: #feffff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 9999px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.cta-button:hover {
  background-color: rgb(179, 212, 73);
  transform: translateY(-1px);
}

/* Responsive Styles */
@media (max-width: 600px) {
  .cta-title {
    font-size: 2rem;
  }

  .cta-subtitle {
    font-size: 0.95rem;
  }

  .cta-button {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
}


.card-wrapper {
    background-color: #f2f2f2;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Inter', sans-serif;
  }

  .display-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    padding: 50px 60px;
    max-width: 1000px;
    width: 100%;
    display: flex;
    gap: 60px;
    align-items: flex-start;
  }

  .card-left {
    flex: 1;
  }

  .card-right {
    flex: 1.1;
  }

  /* Left Column Styles */
  .script-title {
    font-family: 'Caveat', cursive;
    color: #e91e63;
    font-size: 38px;
    margin: 0 0 4px 0;
    line-height: 1;
    font-weight: 600;
  }

  .main-heading {
    color: #0d0d0d;
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
  }

  .sub-heading {
    color: #1a5e35;
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 24px 0;
  }

  .description-text {
    color: #4a4a4a;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
  }

  /* Right Column Styles */
  .right-heading {
    color: #e91e63;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px 0;
  }

  .heading-divider {
    height: 2px;
    background-color: rgb(219, 4, 58);
    border: none;
    margin: 0 0 28px 0;
    width: 100%;
  }

  .features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 24px;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
  }

  .check-icon {
    color: #1a5e35;
    font-weight: bold;
    font-size: 15px;
    flex-shrink: 0;
  }

  .feature-text {
    color: #222222;
  }

  /* Responsive Design */
  @media (max-width: 850px) {
    .display-card {
      flex-direction: column;
      gap: 40px;
      padding: 35px 30px;
    }
    
    .features-grid {
      grid-template-columns: 1fr;
    }
  }




  .services-container {
  background-color: #ffffff;
  padding: 60px 20px;
  max-width: 1900px;
  margin: 0 auto;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  box-sizing: border-box;
}

.services-container div,
.services-container h2,
.services-container h3,
.services-container span {
  box-sizing: border-box;
}

/* Section Title */
.services-title {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 40px 0;
  letter-spacing: -0.025em;
}

.services-title .highlight {
  color: #2a8a50; /* Elegant golden accent */
}

/* Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 12PX;
}

/* Individual Card Styling */
.service-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px 16px;
  display: flex;
  flex-direction: column;
  border: 1px solid #d1fae5;;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* Card Hover Animation & Shadow */
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
  border-color: #e5e7eb;
}

/* Icon Wrapper */
.icon-wrapper {
  width: 52px;
  height: 52px;
  background-color: #d1fae5;;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  color: #2a8a50;
}

.icon-wrapper svg {
  width: 24px;
  height: 24px;
}

/* Icon Animation on Card Hover */
.service-card:hover .icon-wrapper {
  transform: scale(1.1);
  background-color: #2a8a50;
  color: #ffffff;
}

/* Card Text */
.service-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: #111827;
}


/* Responsive Media Queries */

/* Tablet (Large) */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet (Small) */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .services-title {
    font-size: 1.75rem;
    margin-bottom: 30px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .services-container {
    padding: 40px 16px;
  }

  .service-card {
    padding: 24px 16px;
  }
}


/* PROJECT SECTION START */
.works-section {
    padding: 60px 40px;
    background-color: #f2f2f2;
    background-image: radial-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 0);
    background-size: 24px 24px;
    font-family: 'Inter', sans-serif;
    color: #111111;
    overflow: hidden;
    box-sizing: border-box;
  }

  .works-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1280px;
    margin: 0 auto 50px auto;
    position: relative;
  }

  .header-content {
    text-align: center;
    max-width: 460px;
    margin: 0 auto;
  }

  .section-title {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 400;
    margin: 0 0 16px 0;
    color: #111111;
    letter-spacing: -0.02em;
    line-height: 1;
  }

  .section-description {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #555555;
    margin: 0;
    font-weight: 400;
  }

  .prev-btn:hover {
    transform: translateX(-4px);
  }

  .next-btn:hover {
    transform: translateX(4px);
  }

  .cards-wrapper {
    display: flex;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .cards-wrapper::-webkit-scrollbar {
    display: none;
  }

  .card-item {
    position: relative;
    flex: 0 0 calc(25% - 15px);
    height: 480px;
    border-radius: 32px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
  }

  .card-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
  }

  .card-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
  }

  .card-item:hover .card-bg {
    transform: scale(1.04);
  }

  .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.75) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px 24px;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .card-item.active .card-overlay,
  .card-item:hover .card-overlay {
    opacity: 1;
  }

  .card-title {
    font-size: 1.75rem;
    font-weight: 500;
    color: #000000;
    margin: 0 0 12px 0;
    letter-spacing: -0.01em;
  }

  .card-desc {
    font-size: 0.85rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    max-width: 90%;
  }

  .card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  .tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }

  .tag {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 0.75rem;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 400;
  }

  .arrow-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
  }

  .arrow-btn:hover {
    background: #ffffff;
    color: #111111;
    transform: scale(1.05);
  }

  @media (max-width: 1024px) {
    .card-item {
      flex: 0 0 calc(33.333% - 14px);
      height: 440px;
    }
  }

  @media (max-width: 768px) {
    .works-section {
      padding: 40px 20px;
    }

    .card-item {
      flex: 0 0 calc(60% - 10px);
      height: 400px;
    }

    .section-title {
      font-size: 2.5rem;
    }
  }

  @media (max-width: 480px) {
    .card-item {
      flex: 0 0 85%;
      height: 380px;
    }

    .nav-btn {
      display: none;
    }
  }
/* PROJECT SECTION END */



/* Floating icon Start */
/* Base Container */
  .help-widget-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  }

  .widget-checkbox {
    display: none;
  }

  /* Tooltip Box with reduced margin and gentle floating animation */
  .help-tooltip {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: #2c3545;
    padding: 12px 18px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
    margin-bottom: -140px; /* Reduced gap between tooltip and circle button */
    margin-right: 0;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    animation: tooltipFloat 3s ease-in-out infinite;
  }

  .help-tooltip-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.2px;
    white-space: nowrap;
  }

  .help-tooltip-close {
    color: #94a3b8;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease, transform 0.2s ease;
  }

  .help-tooltip-close:hover {
    color: #ef4444;
    transform: scale(1.2) rotate(90deg);
  }

  /* Floating Action Button with Pulse Rings and Hover Effects */
  .help-fab {
    position: relative;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background-color: #323d4d;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(50, 61, 77, 0.3);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.2s ease, box-shadow 0.3s ease;
    user-select: none;
  }

  /* Pulsing outer aura */
  .help-fab::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(50, 61, 77, 0.4);
    z-index: -1;
    animation: pulseGlow 2s infinite;
  }

  .help-fab:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #27303d;
    box-shadow: 0 12px 28px rgba(50, 61, 77, 0.45);
  }

  .help-fab-icon {
    width: 25px;
    height: 25px;
    transition: transform 0.3s ease;
  }

  .help-fab:hover .icon-chat {
    transform: scale(1.15);
  }

  .icon-close {
    display: none;
    font-size: 26px;
    text-align: center;
    line-height: 1;
  }

  /* Inquiry Menu Items */
  .help-menu {
    display: flex;
    flex-direction: column;
    gap: 8px; /* Reduced gap between list items */
    margin-bottom: 8px; /* Reduced gap to button */
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.9);
    transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0.25s;
  }

  .help-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #1e293b;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  }

  .help-menu-item:hover {
    transform: translateX(-6px) scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  .help-item-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
  }

  .help-menu-item:hover .help-item-icon {
    transform: scale(1.2);
  }

  /* Hover Styles */
  .help-whatsapp:hover { background-color: #25d366; color: #ffffff; }
  .help-email:hover { background-color: #ea4335; color: #ffffff; }
  .help-phone:hover { background-color: #0284c7; color: #ffffff; }

  /* Keyframe Animations */
  @keyframes tooltipFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
  }

  @keyframes pulseGlow {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.45); opacity: 0; }
  }

  /* Interaction States */
  #help-tooltip-dismiss:checked ~ .help-tooltip {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    animation: none;
  }

  #help-menu-toggle:checked ~ .help-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  #help-menu-toggle:checked ~ .help-tooltip {
    opacity: 0;
    visibility: hidden;
    animation: none;
  }

  #help-menu-toggle:checked ~ .help-fab::before {
    animation: none; /* Disable pulse when menu is active */
  }

  #help-menu-toggle:checked ~ .help-fab {
    transform: rotate(180deg);
  }

  #help-menu-toggle:checked ~ .help-fab .icon-chat {
    display: none;
  }

  #help-menu-toggle:checked ~ .help-fab .icon-close {
    display: block;
  }

  /* Mobile Responsive adjust */
  @media (max-width: 480px) {
    .help-widget-container {
      bottom: 16px;
      right: 16px;
    }
  }
/* floating icon end */






/* Section & Background */
.glassmorphism-hub-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #ffffff;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  padding: 40px 20px;
  overflow: hidden;
  box-sizing: border-box;
}

/* Background Refraction Spheres */
.glass-bg-flare {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.25;
  pointer-events: none;
}

.flare-1 { width: 350px; height: 350px; background: #f59e0b; top: 10%; left: 15%; }
.flare-2 { width: 400px; height: 400px; background: #06b6d4; bottom: 10%; right: 15%; }
.flare-3 { width: 300px; height: 300px; background: #8b5cf6; top: 40%; right: 35%; }

/* Main Glass Layout Container */
.glass-hub-container {
  position: relative;
  width: 650px;
  height: 650px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* SVG Connecting Ring */
.glass-svg-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Central Text Hub */
.glass-hub-center {
  text-align: center;
  z-index: 2;
  pointer-events: none;
}

.hub-subtitle {
  font-size: 1rem;
  font-weight: 700;
  color: #475569;
  margin: 0;
  letter-spacing: 0.5px;
}

.hub-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: #0f172a;
  margin: 2px 0 10px 0;
  letter-spacing: 2px;
}

.hub-color-bar {
  display: flex;
  justify-content: center;
  gap: 4px;
  height: 4px;
  width: 120px;
  margin: 0 auto;
}

.hub-color-bar span { flex: 1; border-radius: 2px; }
.bar-amber { background-color: #f59e0b; }
.bar-emerald { background-color: #10b981; }
.bar-cyan { background-color: #06b6d4; }
.bar-blue { background-color: #3b82f6; }
.bar-purple { background-color: #8b5cf6; }

/* Interactive Node Elements */
.glass-node {
  position: absolute;
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 3;
  perspective: 1000px;
}

/* Multi-layer 3D Glass Disc Base */
.glass-3d-base {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background: var(--glass-tint);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.08),
    inset 0 4px 8px rgba(255, 255, 255, 0.9),
    inset 0 -4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

/* Sculpted Outer Glass Crescent Overlay */
.glass-outer-crescent {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 12px solid rgba(255, 255, 255, 0.7);
  border-top-color: transparent;
  transform: rotate(-45deg);
  backdrop-filter: blur(8px);
  transition: transform 0.5s ease;
}

/* Vibrant Center Core Badge */
.glass-center-core {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--icon-grad);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  box-shadow: 
    0 8px 20px var(--glow-color),
    inset 0 2px 4px rgba(255, 255, 255, 0.6);
  transition: transform 0.4s ease;
}

.glass-center-core i {
  font-size: 1.8rem;
  color: #ffffff;
}

/* Hover & Animation Effects */
.glass-node:hover .glass-3d-base {
  transform: scale(1.15) translateY(-5px);
  box-shadow: 
    0 25px 45px var(--glow-color),
    inset 0 6px 12px rgba(255, 255, 255, 1);
}

.glass-node:hover .glass-outer-crescent {
  transform: rotate(135deg);
}

.glass-node:hover .glass-center-core {
  transform: scale(1.1) rotate(10deg);
}

/* Clean Typography Labels */
.glass-node-label {
  position: absolute;
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.25;
  white-space: nowrap;
  pointer-events: none;
}

.label-top { top: -55px; left: 50%; transform: translateX(-50%); text-align: center; }
.label-top-right { top: 20px; left: 135px; text-align: left; }
.label-bottom-right { bottom: 20px; left: 135px; text-align: left; }
.label-bottom { bottom: -55px; left: 50%; transform: translateX(-50%); text-align: center; }
.label-bottom-left { bottom: 20px; right: 135px; text-align: right; }
.label-left { top: 40px; right: 135px; text-align: right; }

/* Circular Node Positions (Radius ~ 210px) */
.node-1 { top: 15px; left: calc(50% - 62px); }
.node-2 { top: 100px; right: 25px; }
.node-3 { bottom: 100px; right: 25px; }
.node-4 { bottom: 15px; left: calc(50% - 62px); }
.node-5 { bottom: 100px; left: 25px; }
.node-6 { top: 100px; left: 25px; }

/* Fully Responsive Breakdown */
@media (max-width: 768px) {
  .glass-hub-container {
    width: 100%;
    height: auto;
    flex-direction: column;
    gap: 20px;
  }

  .glass-svg-ring { display: none; }
  .glass-hub-center { margin-bottom: 20px; }

  .glass-node {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100%;
    max-width: 320px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    gap: 15px;
  }

  .glass-3d-base {
    width: 65px;
    height: 65px;
    min-width: 65px;
  }

  .glass-center-core {
    width: 45px;
    height: 45px;
  }

  .glass-center-core i { font-size: 1.2rem; }

  .glass-node-label {
    position: static !important;
    transform: none !important;
    text-align: left !important;
    font-size: 0.85rem;
  }
}





.company-intro-wrapper {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f7f8fa;
    color: #333;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
  }

  .intro-container {
    max-width: 1100px;
    width: 100%;
  }

  /* Header Section */
  .intro-header {
    text-align: center;
    margin-bottom: 50px;
  }

  .intro-subtitle {
    color: #e91e63;
    font-family: 'Comic Sans MS', 'Chalkboard SE', cursive, sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
  }

  .intro-title {
    font-size: 3.2rem;
    font-weight: 900;
    color: #1a1a1a;
    margin: 0 0 15px 0;
  }

  .text-pink {
    color: #e91e63;
  }

  .intro-desc {
    color: #777;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 1500px;
    margin: 0 auto;
  }

  /* Main Content Split */
  .intro-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
  }

  .intro-left, .intro-right {
    flex: 1 1 450px;
  }

  /* Left Column: Text and Tags */
  .intro-left p {
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
  }

  .tag {
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  }

  .tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  }

  .tag-pink {
    background-color: #e91e63;
  }

  .tag-yellow {
    background-color: #ffc107;
    color: #333;
  }

  /* Right Column: Quote and Cards */
  .quote-box {
    background: linear-gradient(135deg, #d81b60, #ad1457);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    box-shadow: 0 15px 35px rgba(216, 27, 96, 0.3);
    margin-bottom: 25px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  .quote-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(216, 27, 96, 0.4);
  }

  .quote-mark {
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 8rem;
    font-family: Georgia, serif;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
  }

  .quote-text {
    color: #fff;
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
  }

  .quote-author {
    color: #ffeb3b;
    font-weight: 700;
    text-align: right;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
  }

  /* Info Cards Container */
  .info-cards-wrapper {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }

  .info-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 25px 15px;
    text-align: center;
    flex: 1 1 120px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
  }

  .info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  }


  
  .dot-yellow { background-color: #ffc107; }
  .dot-pink { background-color: #e91e63; }

  .card-val {
    color: #e91e63;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 10px 0 5px;
  }

  .card-title {
    font-size: 0.85rem;
    font-weight: 800;
    color: #222;
    margin: 0 0 10px;
    line-height: 1.4;
    text-transform: uppercase;
  }

  .card-desc {
    font-size: 0.75rem;
    color: #888;
    line-height: 1.5;
    margin: 0;
  }

  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .intro-title {
      font-size: 2.4rem;
    }
    
    .quote-box {
      padding: 30px 20px;
    }
    
    .quote-text {
      font-size: 1.1rem;
    }
  }




  .projects-section-wrapper {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    color: #333;
    padding: 0px 20px;
    display: flex;
    justify-content: center;
    overflow: hidden;
  }

  .projects-container {
    max-width: 1100px;
    width: 100%;
  }

  .projects-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .projects-subtitle {
    color: #e91e63;
    font-family: 'Comic Sans MS', 'Chalkboard SE', cursive, sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
  }

  .projects-title {
    font-size: 3.2rem;
    font-weight: 900;
    color: #1a1a1a;
    margin: 0 0 15px 0;
  }

  .text-pink {
    color: #e91e63;
  }

  .projects-desc {
    color: #777;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
  }

  /* Responsive 3D Grid */
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    perspective: 1000px;
  }

  /* Responsive Container using aspect-ratio */
  .project-card {
    background-color: transparent;
    width: 100%;
    aspect-ratio: 3 / 4; 
    perspective: 1000px;
  }

  .project-inner {
    position: relative;
    width: 320px;
    height: 400px;
    text-align: center;
    background-image: fixed;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-radius: 20px;
  }

  .project-card:hover .project-inner {
    transform: rotateY(180deg) translateY(-10px);
    box-shadow: 0 25px 50px rgba(233, 30, 99, 0.25);
  }

  .project-front, .project-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
  }

  .project-front {
    position: relative;
    display: flex;
    align-items: flex-end;
  }

  /* Fully Responsive Image Styling */
  .project-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
  }

  .project-card:hover .project-img {
    transform: scale(1.08);
  }

  .project-front::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.1) 60%);
    z-index: 1;
  }

  .project-front-content {
    position: relative;
    z-index: 2;
    padding: 25px;
    width: 100%;
    text-align: left;
    box-sizing: border-box;
  }

  .project-category {
    color: #ffc107;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    display: block;
  }

  .project-front-content h3 {
    color: #fff;
    font-size: 1.6rem;
    margin: 0;
  }

  .project-back {
    background: linear-gradient(135deg, #e91e63, #ad1457);
    color: white;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
    text-align: center;
    box-sizing: border-box;
  }

  .project-back h3 {
    font-size: 1.6rem;
    color: #ffc107;
    margin: 0 0 15px 0;
  }

  .project-back p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #fff;
    opacity: 0.95;
  }

  .btn-project {
    display: inline-block;
    padding: 12px 28px;
    background-color: #ffc107;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 800;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  }

  .btn-project:hover {
    background-color: #fff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  }

  @media (max-width: 768px) {
    .projects-title {
      font-size: 2.2rem;
    }
    .projects-grid {
      grid-template-columns: 1fr;
      max-width: 380px;
      margin: 0 auto;
    }
  }




  /* info graphics in branding page */
  /* Styling without :root, html, body, or * selectors */
    .ikg-campaign-wrapper {
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      background: radial-gradient(circle at 50% 0%, #1a102f 0%, #0d0818 60%, #05030a 100%);
      padding: 70px 24px;
      color: #ffffff;
      overflow: hidden;
      position: relative;
    }

    /* Ambient Background Aura Animation */
    .ikg-campaign-wrapper .ambient-aura {
      position: absolute;
      top: -10%;
      left: 50%;
      transform: translateX(-50%);
      width: 650px;
      height: 650px;
      background: radial-gradient(circle, rgba(255, 115, 0, 0.3) 0%, rgba(140, 0, 255, 0.18) 45%, transparent 70%);
      filter: blur(100px);
      pointer-events: none;
      animation: auraFloat 10s infinite alternate ease-in-out;
    }

    @keyframes auraFloat {
      0% { transform: translateX(-50%) translateY(0) scale(1); opacity: 0.7; }
      50% { transform: translateX(-40%) translateY(30px) scale(1.15); opacity: 0.9; }
      100% { transform: translateX(-60%) translateY(-20px) scale(0.95); opacity: 0.7; }
    }

    /* Header Styling */
    .ikg-header-block {
      max-width: 1200px;
      margin: 0 auto 50px auto;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      position: relative;
      z-index: 2;
    }

    .ikg-header-block .hero-heading-group h2 {
      font-size: 3.2rem;
      font-weight: 800;
      margin: 0 0 12px 0;
      background: linear-gradient(90deg, #ffffff 30%, rgba(255, 255, 255, 0.5));
      -webkit-text-fill-color: transparent;
      letter-spacing: -1.5px;
    }

    .ikg-header-block .hero-heading-group p {
      color: #9d93be;
      font-size: 1.05rem;
      margin: 0;
      max-width: 500px;
      line-height: 1.6;
    }

    .ikg-status-pill {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(255, 115, 0, 0.12);
      border: 1px solid rgba(255, 115, 0, 0.35);
      color: #ff7700;
      padding: 6px 16px;
      border-radius: 30px;
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      margin-bottom: 14px;
      backdrop-filter: blur(12px);
    }

    .ikg-status-pill .glowing-dot {
      width: 8px;
      height: 8px;
      background-color: #ff6b00;
      border-radius: 50%;
      box-shadow: 0 0 12px #ff6b00;
      animation: pulseDot 1.6s infinite ease-in-out;
    }

    @keyframes pulseDot {
      0%, 100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(0.65); opacity: 0.3; }
    }

    /* Infinite Auto-Scrolling Track */
    .ikg-carousel-viewport {
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      overflow: hidden;
      position: relative;
      z-index: 2;
      mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
      -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    }

    .ikg-carousel-track {
      display: flex;
      gap: 28px;
      width: max-content;
      padding: 8px 0;
      animation: autoScrollTrack 90s linear infinite;
    }

    .ikg-carousel-viewport:hover .ikg-carousel-track {
      animation-play-state: paused;
    }

    @keyframes autoScrollTrack {
      0% { transform: translateX(0); }
      100% { transform: translateX(calc(-50% - 14px)); }
    }

    /* Asymmetric Diagonal Cards */
    .ikg-media-card {
      width: 270px;
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      position: relative;
      cursor: pointer;
      transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    }

    .ikg-media-card:nth-child(even) {
      margin-top: 32px;
    }

    .ikg-image-frame {
      position: relative;
      width: 100%;
      height: 370px;
      border-radius: 55px 14px 55px 14px;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.04);
      backdrop-filter: blur(16px);
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow: 0 16px 35px rgba(0, 0, 0, 0.45);
      transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    }

    .ikg-media-card:hover {
      transform: translateY(-10px);
    }

    .ikg-media-card:hover .ikg-image-frame {
      border-color: rgba(255, 115, 0, 0.6);
      box-shadow: 0 25px 50px rgba(255, 107, 0, 0.28), inset 0 1px 2px rgba(255, 255, 255, 0.5);
    }

    .ikg-image-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(15%) contrast(105%);
      transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.4s ease;
    }

    .ikg-media-card:hover img {
      transform: scale(1.08);
      filter: grayscale(0%) contrast(110%);
    }

    /* Plus Button Overlay */
    .ikg-action-trigger {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: #e91e63;
      border: 1px solid rgba(255, 255, 255, 0.4);
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      box-shadow: 0 6px 18px rgba(0, 255, 183, 0.45);
      transition: transform 0.4s ease, background-color 0.3s ease;
      z-index: 3;
    }

    .ikg-media-card:hover .ikg-action-trigger {
      transform: rotate(135deg) scale(1.1);
      background: #00ff807c;
    }

    /* Meta Info */
    .ikg-meta-row {
      padding: 16px 6px 0 6px;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
    }

    .ikg-meta-row .project-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: #ffffff;
      margin: 0 0 3px 0;
    }

    .ikg-meta-row .project-tag {
      font-size: 0.82rem;
      color: #8a7faa;
      margin: 0;
      text-transform: lowercase;
    }

    .ikg-meta-row .release-year {
      font-size: 0.78rem;
      color: #0000007c;
      font-weight: 700;
      background: rgba(0, 255, 157, 0.12);
      padding: 3px 9px;
      border-radius: 10px;
      border: 1px solid rgba(255, 115, 0, 0.2);
    }

    /* Controls Section */
    .ikg-footer-nav {
      max-width: 1200px;
      margin: 30px auto 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
      z-index: 2;
    }

    .ikg-track-progress {
      width: 180px;
      height: 4px;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 4px;
      overflow: hidden;
    }

    .ikg-carousel-viewport:hover ~ .ikg-footer-nav .ikg-progress-indicator {
      animation-play-state: paused;
    }

    @keyframes progressLoop {
      0% { transform: scaleX(0); }
      100% { transform: scaleX(1); }
    }

    .ikg-control-group {
      display: flex;
      gap: 12px;
    }

    .ikg-arrow-btn {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.15);
      color: #ffffff;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .ikg-arrow-btn:hover {
      background: #ff6b00;
      border-color: #ff6b00;
      box-shadow: 0 0 18px rgba(255, 107, 0, 0.5);
    }



    /*  */


      .tiles-wrap,
    .tiles-section,
    .tiles-head,
    .tiles-head-copy,
    .tiles-kicker,
    .tiles-title,
    .tiles-sub,
    .tiles-mode,
    .tiles-mode-label,
    .tiles-switch,
    .tiles-switch-knob,
    .tiles-stage,
    .tiles-btn,
    .tiles-viewport,
    .tiles-track,
    .tile-card,
    .tile-card-inner,
    .tile-shine,
    .tile-img-wrap,
    .tile-icon,
    .tile-tag,
    .tile-name,
    .tile-text,
    .tile-list,
    .tile-list li,
    .tile-bullet,
    .tiles-dots,
    .tiles-dot {
      box-sizing: border-box;
    }

    /* ---------- page shells ---------- */
    .tiles-wrap {
      width: 100%;
      padding: 64px 16px;
      background: #ffffff;
      color: #12152b;
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }

    .tiles-wrap.is-tint {
      background: #f4f6fb;
    }

    .tiles-section {
      width: 100%;
      max-width: 1440px;
      margin-left: auto;
      margin-right: auto;
    }

    /* ---------- theme accents ---------- */
    .deck[data-theme="indigo"] {
      --accent: #5a6cff;
      --accent-2: #8a6eff;
      --accent-soft: rgba(90, 108, 255, 0.10);
      --accent-glow: rgba(90, 108, 255, 0.35);
      --accent-halo: rgba(90, 108, 255, 0.14);
    }
    .deck[data-theme="teal"] {
      --accent: #0d9488;
      --accent-2: #38bdf8;
      --accent-soft: rgba(13, 148, 136, 0.12);
      --accent-glow: rgba(13, 148, 136, 0.32);
      --accent-halo: rgba(13, 148, 136, 0.14);
    }
    .deck[data-theme="sun"] {
      --accent: #d97706;
      --accent-2: #f59e0b;
      --accent-soft: rgba(217, 119, 6, 0.14);
      --accent-glow: rgba(217, 119, 6, 0.32);
      --accent-halo: rgba(217, 119, 6, 0.14);
    }
    .deck[data-theme="rose"] {
      --accent: #e11d48;
      --accent-2: #fb7185;
      --accent-soft: rgba(225, 29, 72, 0.12);
      --accent-glow: rgba(225, 29, 72, 0.32);
      --accent-halo: rgba(225, 29, 72, 0.14);
    }
    .deck[data-theme="violet"] {
      --accent: #7c3aed;
      --accent-2: #c084fc;
      --accent-soft: rgba(124, 58, 237, 0.12);
      --accent-glow: rgba(124, 58, 237, 0.32);
      --accent-halo: rgba(124, 58, 237, 0.14);
    }

    /* ---------- header ---------- */
    .tiles-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 28px;
      flex-wrap: wrap;
    }

    .tiles-kicker {
      display: inline-block;
      margin: 0 0 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      font-size: 11px;
      color: var(--accent, #5a6cff);
      font-weight: 700;
    }

    .tiles-title {
      margin: 0;
      font-size: 42px;
      line-height: 1.08;
      font-weight: 800;
      letter-spacing: -0.025em;
    }

    .tiles-sub {
      margin: 12px 0 0;
      max-width: 620px;
      color: #5a6688;
      font-size: 16px;
      line-height: 1.6;
    }

    .tiles-mode {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 8px 12px 8px 16px;
      border: 1px solid rgba(18, 21, 43, 0.08);
      border-radius: 999px;
      background: #fff;
      box-shadow: 0 4px 16px rgba(18, 21, 43, 0.06);
    }

    .tiles-mode-label {
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #8892a8;
      font-weight: 600;
    }

    .tiles-mode-label.is-on {
      color: #12152b;
    }

    .tiles-switch {
      position: relative;
      width: 56px;
      height: 30px;
      padding: 0;
      border: 0;
      border-radius: 999px;
      background: #dfe3ee;
      cursor: pointer;
      transition: background 0.35s ease;
    }

    .tiles-switch.is-auto {
      background: linear-gradient(90deg, var(--accent, #5a6cff), var(--accent-2, #8a6eff));
    }

    .tiles-switch-knob {
      position: absolute;
      top: 3px;
      left: 3px;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: #fff;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
      transition: transform 0.35s ease;
    }

    .tiles-switch.is-auto .tiles-switch-knob {
      transform: translateX(26px);
    }

    /* ---------- stage ---------- */
    .tiles-stage {
      position: relative;
      padding: 10px 64px;
    }

    .tiles-btn {
      position: absolute;
      top: 50%;
      z-index: 5;
      width: 54px;
      height: 54px;
      border: 1px solid rgba(18, 21, 43, 0.08);
      border-radius: 50%;
      background: #fff;
      color: #12152b;
      font-size: 28px;
      line-height: 1;
      cursor: pointer;
      transform: translateY(-50%) translateZ(0);
      box-shadow: 0 12px 28px rgba(18, 21, 43, 0.10);
      transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    }

    .tiles-btn:hover {
      background-color: #ff0000;
      color: #fff;
      transform: translateY(-50%) scale(1.07) rotateY(18deg);
      box-shadow: 0 16px 34px var(--accent-glow, rgba(90, 108, 255, 0.32));
      border-color: transparent;
    }

    .tiles-btn:active {
      transform: translateY(-50%) scale(0.95);
    }

    .tiles-btn-prev { left: 0; }
    .tiles-btn-next { right: 0; }

    .tiles-btn:focus-visible,
    .tiles-switch:focus-visible,
    .tiles-dot:focus-visible,
    .tile-card:focus-visible {
      outline: 3px solid var(--accent, #5a6cff);
      outline-offset: 4px;
    }

    .tiles-viewport {
      overflow: hidden;
      padding: 24px 6px 30px;
      perspective: 1600px;
      border-radius: 30px;
    }

    .tiles-track {
      display: flex;
      gap: 28px;
      transform-style: preserve-3d;
      transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
      will-change: transform;
    }

    /* ---------- card ---------- */
    .tile-card {
      flex: 0 0 600px;
      height: 660px;
      border: 0;
      padding: 0;
      background: transparent;
      color: inherit;
      text-align: left;
      cursor: pointer;
      transform-style: preserve-3d;
      animation: tileFloat 6s ease-in-out infinite;
    }

    .tile-card:nth-child(7n + 1) { animation-delay: 0s; }
    .tile-card:nth-child(7n + 2) { animation-delay: 0.2s; }
    .tile-card:nth-child(7n + 3) { animation-delay: 0.4s; }
    .tile-card:nth-child(7n + 4) { animation-delay: 0.6s; }
    .tile-card:nth-child(7n + 5) { animation-delay: 0.8s; }
    .tile-card:nth-child(7n + 6) { animation-delay: 1s; }
    .tile-card:nth-child(7n + 7) { animation-delay: 1.2s; }

    .tile-card.is-tilting {
      animation: none;
    }

    .tile-card-inner {
      position: relative;
      height: 100%;
      padding: 0 0 24px;
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid rgba(18, 21, 43, 0.07);
      background: #fff;
      box-shadow:
        0 18px 44px rgba(18, 21, 43, 0.06),
        0 4px 14px rgba(18, 21, 43, 0.03);
      transform-style: preserve-3d;
      transition: box-shadow 0.35s ease, border-color 0.35s ease;
    }

    .tile-card:hover .tile-card-inner,
    .tile-card.is-tilting .tile-card-inner {
      border-color: var(--accent-glow, rgba(90, 108, 255, 0.35));
      box-shadow:
        0 32px 70px var(--accent-halo, rgba(90, 108, 255, 0.14)),
        0 10px 28px rgba(18, 21, 43, 0.06);
    }

    .tile-shine {
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: radial-gradient(circle at var(--mx, 50%) var(--my, 20%), rgba(255, 255, 255, 0.7), transparent 42%);
      opacity: 0;
      transition: opacity 0.3s ease;
      mix-blend-mode: overlay;
      z-index: 3;
    }

    .tile-card:hover .tile-shine,
    .tile-card.is-tilting .tile-shine {
      opacity: 1;
    }

    .tile-img-wrap {
      position: relative;
      width: 100%;
      height: 200px;
      overflow: hidden;
      border-radius: 24px 24px 0 0;
      background: #eef1f8;
      transform: translateZ(14px);
    }

    .tile-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .tile-card:hover .tile-img-wrap img,
    .tile-card.is-tilting .tile-img-wrap img {
      transform: scale(1.07);
    }

    .tile-icon {
      display: grid;
      place-items: center;
      width: 56px;
      height: 56px;
      margin: -28px 0 0 28px;
      border-radius: 16px;
      background: linear-gradient(135deg, var(--accent, #00ffcca4), var(--accent-2, #8a6eff));
      color: #fff;
      border: 3px solid #fff;
      box-shadow: 0 10px 24px var(--accent-glow, rgba(90, 108, 255, 0.35));
      transform: translateZ(30px);
      position: relative;
      z-index: 2;
    }

    .tile-tag {
      width: 100%;
      display: inline-block;
      margin: 16px 0 8px 28px;
      padding: 5px 12px;
      border-radius: 999px;
      font-size: 22px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color:  #ff0000;
      background: var(--accent-soft, rgba(90, 255, 217, 0.1));
      font-weight: 700;
      transform: translateZ(22px);
    }

    .tile-name {
      margin: 0 28px 10px;
      font-size: 24px;
      font-weight: 400;
      line-height: 1.18;
      color: #12152b;
      transform: translateZ(26px);
    }

    .tile-text {
      margin: 0 28px 16px;
      color: #5a6688;
      font-size: 15px;
      line-height: 1.6;
      transform: translateZ(18px);
    }

    .tile-list {
      list-style: none;
      margin: 0 28px;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px 20px;
      transform: translateZ(20px);
    }

    .tile-list li {
      display: flex;
      align-items: flex-start;
      gap: 9px;
      font-size: 13.5px;
      line-height: 1.4;
      color: #3d4666;
      font-weight: 500;
    }

    .tile-bullet {
      flex: 0 0 20px;
      width: 20px;
      height: 20px;
      margin-top: 1px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--accent-soft, rgba(90, 108, 255, 0.12));
      color: var(--accent, #5a6cff);
    }

    .tile-card[data-tone="cyan"] .tile-bullet { background: rgba(14, 165, 183, 0.14); color: #0e7490; }
    .tile-card[data-tone="violet"] .tile-bullet { background: rgba(124, 58, 237, 0.14); color: #7c3aed; }
    .tile-card[data-tone="mint"] .tile-bullet { background: rgba(13, 148, 136, 0.14); color: #0f766e; }
    .tile-card[data-tone="amber"] .tile-bullet { background: rgba(217, 119, 6, 0.16); color: #b45309; }
    .tile-card[data-tone="rose"] .tile-bullet { background: rgba(225, 29, 72, 0.13); color: #e11d48; }
    .tile-card[data-tone="blue"] .tile-bullet { background: rgba(37, 99, 235, 0.13); color: #2563eb; }
    .tile-card[data-tone="lime"] .tile-bullet { background: rgba(101, 163, 13, 0.16); color: #4d7c0f; }

    .tiles-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 24px;
    }

    .tiles-dot {
      width: 9px;
      height: 9px;
      padding: 0;
      border: 0;
      border-radius: 999px;
      background: rgba(18, 21, 43, 0.18);
      cursor: pointer;
      transition: width 0.3s ease, background 0.3s ease;
    }

    .tiles-dot.is-active {
      width: 30px;
      background: linear-gradient(90deg, var(--accent, #5a6cff), var(--accent-2, #8a6eff));
    }

    /* ---------- compact variant used by the extra sliders ---------- */
    .deck-compact .tile-card {
      flex-basis: clamp(280px, 34vw, 430px);
      height: 520px;
    }
    .deck-compact .tile-img-wrap { height: 170px; }
    .deck-compact .tile-name { font-size: 24px; }
    .deck-compact .tile-text { font-size: 14px; margin-bottom: 14px; }
    .deck-compact .tile-list {
      grid-template-columns: minmax(0, 1fr);
      gap: 9px;
    }
    .deck-compact .tile-list li { font-size: 13px; }
    .deck-compact .tiles-track { gap: 24px; }
    .deck-compact .tile-icon { width: 52px; height: 52px; }
    .deck-compact .tiles-title { font-size: 34px; }

    @keyframes tileFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    /* ---------- responsive ---------- */
    @media (max-width: 1560px) {
      .tile-card { flex-basis: 540px; height: 680px; }
      .tile-img-wrap { height: 190px; }
      .tile-name { font-size: 27px; }
    }

    @media (max-width: 1280px) {
      .tile-card { flex-basis: 480px; height: 700px; }
      .tile-img-wrap { height: 180px; }
    }

    @media (max-width: 1000px) {
      .tiles-title { font-size: 32px; }
      .tile-card { flex-basis: 440px; height: 720px; }
      .tile-img-wrap { height: 170px; }
      .tile-name { font-size: 24px; }
    }

    @media (max-width: 820px) {
      .tile-list { grid-template-columns: minmax(0, 1fr); gap: 9px; }
      .tile-list li { font-size: 13px; }
      .tile-card { flex-basis: 450px; height: 800px; }
      .tile-img-wrap { height: 165px; }
      .deck-compact .tile-card { flex-basis: clamp(270px, 74vw, 400px); height: 560px; }
    }

    @media (max-width: 720px) {
      .tiles-title { font-size: 27px; }
      .deck-compact .tiles-title { font-size: 26px; }
      .tiles-stage { padding: 10px 46px; }
      .tile-card { flex-basis: 380px; height: 800px; }
      .tile-img-wrap { height: 150px; }
      .tiles-btn { width: 44px; height: 44px; font-size: 24px; }
      .tile-name { font-size: 22px; }
      .tile-text, .tile-list li { font-size: 13.5px; }
      .tile-text { margin-bottom: 14px; }
      .deck-compact .tile-card { height: 570px; }
    }

    @media (max-width: 460px) {
      .tile-card { flex-basis: 290px; height: 680px; }
      .tile-icon { width: 48px; height: 48px; margin-left: 22px; }
      .tile-tag, .tile-name, .tile-text, .tile-list { margin-left: 22px; margin-right: 22px; }
      .tile-list li { font-size: 12.5px; }
      .deck-compact .tile-card { flex-basis: 260px; height: 585px; }
      .deck-compact .tiles-track { gap: 20px; }
    }

    @media (prefers-reduced-motion: reduce) {
      .tile-card,
      .tiles-track,
      .tiles-btn,
      .tiles-switch-knob {
        animation: none;
        transition: none;
      }
    }

    /* infographic fo advertising start */


  .svc-wrap .backdrop,
  .svc-wrap .head,
  .svc-wrap .pillars,
  .svc-wrap .pillar,
  .svc-wrap .disc,
  .svc-wrap .ring,
  .svc-wrap .face,
  .svc-wrap .step,
  .svc-wrap .eyebrow,
  .svc-wrap h1,
  .svc-wrap h3,
  .svc-wrap p,
  .svc-wrap .rule {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .svc-wrap .backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(60% 55% at 50% 45%, var(--wash) 0%, rgba(255,255,255,0) 70%);
  }

  .svc-wrap .backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .5;
    background-image: radial-gradient(#dfd2ec 1.4px, transparent 1.4px);
    background-size: 14px 14px;
    -webkit-mask-image: radial-gradient(ellipse 55% 45% at 50% 42%, #000 20%, transparent 72%);
            mask-image: radial-gradient(ellipse 55% 45% at 50% 42%, #000 20%, transparent 72%);
  }

  .svc-wrap .head {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 54px;
  }

  .svc-wrap .eyebrow {
    display: inline-block;
    font-size: .75rem;
    letter-spacing: .32em;
    text-transform: uppercase;
    font-weight: 600;
    color: #b06fa8;
    margin-bottom: 12px;
  }

  .svc-wrap h1 {
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    font-size: clamp(2rem, 5vw, 3.1rem);
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.1;
  }

  .svc-wrap h1 span {
    background: linear-gradient(90deg, #f5921e, #ef5f5c, #a4357f, #5c2f6e);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .svc-wrap .rule {
    width: 80px;
    height: 4px;
    border-radius: 4px;
    margin: 16px auto 0;
    background: linear-gradient(90deg, #f5921e, #ef5f5c, #a4357f, #5c2f6e);
  }

  .svc-wrap .pillars {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1180px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    align-items: end;
  }

  .svc-wrap .pillar {
    position: relative;
    border-radius: 150px 150px 14px 14px;
    padding: 22px 18px 34px;
    text-align: center;
    color: #fff;
    background: linear-gradient(180deg, var(--c-light), var(--c-main));
    box-shadow: 0 26px 45px -22px rgba(43, 34, 51, .55);
    transition: transform .35s cubic-bezier(.16, 1, .3, 1),
                box-shadow .35s ease;
    isolation: isolate;
  }

  .svc-wrap .pillar:hover {
    transform: translateY(-14px);
    box-shadow: 0 40px 60px -25px rgba(43, 34, 51, .6);
  }

  .svc-wrap .step {
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--c-main);
    font-family: "Oswald", sans-serif;
    font-size: .85rem;
    font-weight: 600;
    box-shadow: 0 6px 14px rgba(43, 34, 51, .22);
  }

  .svc-wrap .disc {
    position: relative;
    width: 100%;
    max-width: 150px;
    aspect-ratio: 1 / 1;
    margin: 0 auto 26px;
  }

  .svc-wrap .ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--c-dark);
    transform: translate(5px, 7px);
  }

  .svc-wrap .face {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #fff;
    display: grid;
    place-items: center;
    box-shadow: inset 0 -6px 14px rgba(43, 34, 51, .06);
    transition: transform .35s cubic-bezier(.16, 1, .3, 1);
  }

  .svc-wrap .pillar:hover .face {
    transform: translate(-3px, -4px);
  }

  .svc-wrap .face i {
    font-size: 2.5rem;
    color: var(--c-main);
  }

  .svc-wrap h3 {
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-size: 1.06rem;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    line-height: 1.25;
    margin-bottom: 10px;
    min-height: 2.6em;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .svc-wrap p {
    font-size: .82rem;
    line-height: 1.55;
    font-weight: 300;
    color: rgba(255, 255, 255, .9);
  }

  .svc-wrap .p1 { --c-light: #f9a83f; --c-main: #f28a1c; --c-dark: #d9760f; }
  .svc-wrap .p2 { --c-light: #f47472; --c-main: #ee5b58; --c-dark: #d24744; }
  .svc-wrap .p3 { --c-light: #b04b8e; --c-main: #9c3579; --c-dark: #822a63; }
  .svc-wrap .p4 { --c-light: #7a3d80; --c-main: #65296b; --c-dark: #521f56; }
  .svc-wrap .p5 { --c-light: #4b2b55; --c-main: #3a2043; --c-dark: #2b1732; }

  @media (max-width: 1024px) {
    .svc-wrap .pillars { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  }

  @media (max-width: 680px) {
    .svc-wrap .pillars { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .svc-wrap h3 { min-height: auto; }
  }

  @media (max-width: 430px) {
    .svc-wrap .pillars { grid-template-columns: 1fr; max-width: 300px; }
  }


    /*FODS MUDSTOPER START  */
     /* Container for the Nav Bar */
        .fods-nav-container {
            width: 100%;
            max-width: 1185px; /* Increased max-width to accommodate larger image */
            margin: 40px auto;
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }

        /* The Main Bar (Header) */
        .nav-bar {
            background-color: #fff;
            border: 2px solid #333;
            border-radius: 8px;
            padding: 18px 24px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            user-select: none;
        }

        /* Hover Effects */
        .nav-bar:hover {
            background-color: #f9f9f9;
            box-shadow: 0 8px 15px rgba(0,0,0,0.1);
            transform: translateY(-2px);
            border-color: #000;
        }

        /* Text Styling */
        .nav-title {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            letter-spacing: 0.5px;
        }

        /* Icon Styling */
        .nav-icon {
            font-size: 24px;
            color: #333;
            transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        /* The Dropdown Content Area */
        .nav-content {
            max-height: 0;
            overflow: hidden;
            background-color: #fff;
            border-radius: 0 0 8px 8px;
            transition: max-height 0.5s ease-out, opacity 0.5s ease;
            opacity: 0;
            border-left: 2px solid #333;
            border-right: 2px solid #333;
            border-bottom: 2px solid #333;
            border-top: none;
        }

        /* Inner content padding */
        .content-inner {
            padding: 30px;
            display: flex;
            flex-wrap: wrap;
            gap: 0px; /* Increased gap for better spacing */
            align-items: center;
        }

        /* Content Text */
        .spec-text {
            flex: 1;
            min-width: 250px;
        }
        
        .spec-text h3 {
            margin-top: 0;
            color: #333;
        }

        .spec-paragraph {
            font-size: 15px;
            line-height: 1.6;
            color: #666;
            margin-bottom: 15px;
            text-align: justify;
        }

        .spec-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .spec-list li {
            margin-bottom: 30px;
            color: #555;
            font-size: 18px;
            display: flex;
            align-items: center;
            margin-left: 50px;
        }

        .spec-list li::before {
            content: "•";
            color: rgb(179, 212, 73);
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
        }

        /* Active State (When Open) */
        .nav-bar.active .nav-icon {
            transform: rotate(45deg);
            color: rgb(179, 212, 73);
        }
        
        .nav-bar.active {
            border-bottom-left-radius: 0;
            border-bottom-right-radius: 0;
            border-bottom: none;
        }

        .nav-content.open {
            opacity: 1;
        }

        /* Responsive Adjustment for Mobile */
        @media (max-width: 768px) {
            .content-inner {
                flex-direction: column;
            }
            .spec-image {
                width: 100%; /* Full width on mobile */
                height: auto;
                max-height: 300px;
                flex: none;
            }
        }

        /*  */
        .mudstopper-product {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
            color: #1f1f1f;
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 24px;
            display: flex;
            gap: 60px;
            background: #fcfafa;
        }

        /* Gallery */
        .gallery-box {
            flex: 1.1;
            min-width: 0;
        }

        .main-image-wrap {
            position: relative;
            width: 100%;
            aspect-ratio: 4 / 3;
            background: #fafafa;
            border-radius: 8px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        #mainImage {
            width: 100%;
            height: 100%;
            background-color: #ffffff;
            object-fit: contain;
            transition: opacity 0.2s ease;
        }

        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 44px;
            height: 44px;
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #555;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            z-index: 5;
            font-size: 24px;
            line-height: 1;
            user-select: none;
        }

        .nav-btn:hover {
            background: #f0f0f0;
        }

        .nav-btn.prev { left: 12px; }
        .nav-btn.next { right: 12px; }

        .zoom-btn {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 36px;
            height: 36px;
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #555;
            z-index: 5;
            font-size: 16px;
        }

        .zoom-btn:hover {
            background: #f0f0f0;
        }

        .thumb-list {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }

        .thumb-item {
            width: 70px;
            height: 70px;
            border: 2px solid transparent;
            border-radius: 6px;
            overflow: hidden;
            cursor: pointer;
            flex-shrink: 0;
            background: #eee;
        }

        .thumb-item.active {
            border-color: #111;
        }

        .thumb-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Info Panel */
        .info-panel {
            flex: 0.9;
        }

        .product-title {
            font-size: 36px;
            font-weight: 800;
            margin: 0 0 12px 0;
            line-height: 1.2;
        }

        .product-subtitle {
            font-size: 15px;
            font-weight: 700;
            margin: 0 0 24px 0;
        }

        .description p {
            font-size: 16.7px;
            line-height: 1.8;
            margin: 0 0 16px 0;
            color: #333;
        }

        .suitable-label {
            font-size: 14px;
            font-weight: 700;
            display: block;
            margin: 24px 0 12px 0;
        }

        .icon-row {
            display: flex;
            gap: 16px;
            align-items: center;
            margin-bottom: 28px;
        }

        .icon-row svg {
            height: 24px;
            fill: #000;
        }

        .accordion {
            border: 1px solid #ddd;
            border-radius: 6px;
            margin-bottom: 24px;
        }

        .accordion-header {
            width: 100%;
            background: transparent;
            border: none;
            text-align: left;
            padding: 16px 20px;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: inherit;
        }

        .accordion-header:hover {
            background: #fafafa;
        }

        .accordion-icon {
            font-size: 22px;
            font-weight: 300;
            line-height: 1;
        }

        .accordion-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .accordion-body-inner {
            padding: 0 20px 20px;
            font-size: 14px;
            line-height: 1.6;
            color: #444;
        }

        /* Buttons */
        .btn-stack {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-bottom: 28px;
        }

        .btn {
            width: 100%;
            padding: 16px;
            border-radius: 6px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            border: none;
            font-family: inherit;
        }

        .btn-hire {
            background-color: #fcce04;
            color: #000;
        }

        .btn-hire:hover {
            background-color: #ebc004;
        }

        .btn-sales {
            background-color: #f0f0f0;
            color: #111;
            border: 1px solid #ccc;
        }

        .btn-sales:hover {
            background-color: #e0e0e0;
        }

        /* Banner */
        .banner {
            background: #e9f7ef;
            border-radius: 8px;
            padding: 16px 48px 16px 16px;
            position: relative;
            display: flex;
            gap: 14px;
            align-items: flex-start;
        }

        .banner-icon {
            width: 24px;
            height: 24px;
            fill: #188038;
            flex-shrink: 0;
        }

        .banner-text {
            font-size: 13px;
            color: #137333;
            line-height: 1.5;
            margin: 0;
        }

        .banner-text strong {
            color: #0d652d;
        }

        .banner-close {
            position: absolute;
            top: 14px;
            right: 14px;
            background: none;
            border: none;
            color: #137333;
            font-size: 20px;
            cursor: pointer;
        }

        .preventing{
          justify-content: center;
        }
        
        .preventing h1 p{
          width: 400px;
        }

        .preventing img{
          min-width: 1500px;
          margin-left: 20%;
        }

        @media (max-width: 900px) {
            .mudstopper-product {
                flex-direction: column;
                padding: 16px;
            }
            .nav-btn {
                width: 36px;
                height: 36px;
            }
        }

        /*  */
      .ih-company-section {
            background: #ffffff;
            font-family: 'Inter', sans-serif;
            padding: 80px 5%;
            min-height: 500px;
            display: flex;
            align-items: center;
            overflow: hidden;
            position: relative;
        }

        .ih-company-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 60% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 40%);
            pointer-events: none;
        }

        .ih-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
            width: 100%;
        }

        .ih-content {
            animation: ihFadeInLeft 1s ease-out;
        }

        .ih-badge {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 30px;
            animation: ihFadeInDown 0.8s ease-out;
        }

        .ih-badge .ih-line {
            width: 60px;
            height: 2px;
            background: rgb(179, 212, 73);
            position: relative;
        }

        /* .ih-badge .ih-line::after {
            content: '';
            position: absolute;
            right: -8px;
            top: -2px;
            width: 6px;
            height: 6px;
            background: #d4af37;
            border-radius: 50%;
        } */

        .ih-badge span {
            font-size: 20px;
            font-weight: 700;
            letter-spacing: 4px;
            color: #feffff;
            text-transform: uppercase;
        }

        .ih-badge .ih-line-long {
            width: 60px;
        }

        .ih-title {
            font-size: clamp(32px, 4.5vw, 56px);
            font-weight: 900;
            line-height: 1.15;
            margin-bottom: 30px;
            color: #1a1a2e;
        }

        .ih-title .ih-accent {
            color: rgb(179, 212, 73);
            position: relative;
            display: inline-block;
        }

        .ih-title .ih-accent::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 0;
            width: 100%;
            height: 4px;
            background: rgb(179, 212, 73);
            opacity: 0.3;
            border-radius: 2px;
            animation: ihUnderlineGrow 1.2s ease-out 0.5s both;
        }

        .ih-description {
            font-size: 16px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 20px;
            animation: ihFadeInUp 0.8s ease-out 0.3s both;
        }

        .ih-description:nth-child(4) {
            animation-delay: 0.5s;
        }

        /* 8 Bullet Points */
        .ih-spec-list {
            list-style: none;
            padding: 0;
            margin: 0 0 35px 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px 24px;
        }

        .ih-spec-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            animation: ihFadeInUp 0.6s ease-out both;
        }

        .ih-spec-item:nth-child(1) { animation-delay: 0.1s; }
        .ih-spec-item:nth-child(2) { animation-delay: 0.2s; }
        .ih-spec-item:nth-child(3) { animation-delay: 0.3s; }
        .ih-spec-item:nth-child(4) { animation-delay: 0.4s; }
        .ih-spec-item:nth-child(5) { animation-delay: 0.5s; }
        .ih-spec-item:nth-child(6) { animation-delay: 0.6s; }
        .ih-spec-item:nth-child(7) { animation-delay: 0.7s; }
        .ih-spec-item:nth-child(8) { animation-delay: 0.8s; }

        .ih-spec-icon {
            flex-shrink: 0;
            width: 12px;
            height: 12px;
            margin-top: 6px;
            background: rgb(179, 212, 73);
            border-radius: 50%;
            box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
            position: relative;
        }

        .ih-spec-icon::after {
            content: '';
            position: absolute;
            top: 4px;
            left: 4px;
            width: 4px;
            height: 4px;
            background: #fff;
            border-radius: 50%;
        }

        .ih-spec-text h4 {
            margin: 0 0 4px 0;
            font-size: 15px;
            font-weight: 800;
            color: #1a1a2e;
        }

        .ih-spec-text p {
            margin: 0;
            font-size: 14px;
            line-height: 1.5;
            color: #777;
        }

        /* Buttons */
        .ih-actions {
            display: flex;
            gap: 20px;
            margin-top: 10px;
            flex-wrap: wrap;
            animation: ihFadeInUp 0.8s ease-out 0.95s both;
        }

        .ih-btn-gold {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 36px;
            background: linear-gradient(135deg, #d4af37, #c4a030);
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
        }

        .ih-btn-gold::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.6s ease;
        }

        .ih-btn-gold:hover::before {
            left: 100%;
        }

        .ih-btn-gold:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 8px 30px rgba(212, 175, 55, 0.45);
        }

        .ih-btn-gold .ih-arrow {
            transition: transform 0.3s ease;
        }

        .ih-btn-gold:hover .ih-arrow {
            transform: translateX(5px);
        }

        .ih-btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 36px;
            background: transparent;
            color: #1a1a2e;
            font-size: 16px;
            font-weight: 600;
            border: 2px solid #ddd;
            border-radius: 50px;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .ih-btn-outline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: #1a1a2e;
            transition: width 0.4s ease;
            z-index: 0;
        }

        .ih-btn-outline:hover::before {
            width: 100%;
        }

        .ih-btn-outline span {
            position: relative;
            z-index: 1;
            transition: color 0.4s ease;
        }

        .ih-btn-outline:hover span {
            color: #fff;
        }

        .ih-btn-outline:hover {
            border-color: #1a1a2e;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        /* Hexagon Gallery */
        .ih-gallery {
            position: relative;
            width: 100%;
            height: 600px;
            display: flex;
            justify-content: center;
            align-items: center;
            animation: ihFadeInRight 1s ease-out 0.3s both;
        }

        .ih-hex-grid {
            position: relative;
            width: 500px;
            height: 460px;
        }

        .ih-hex {
            position: absolute;
            width: 160px;
            height: 180px;
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            animation: ihHexFloat 3s ease-in-out infinite;
        }

        .ih-hex:hover {
            transform: scale(1.15);
            z-index: 10;
            filter: drop-shadow(0 10px 30px rgba(0,0,0,0.2));
        }

        .ih-hex img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .ih-hex:hover img {
            transform: scale(1.1);
        }

        .ih-hex .ih-hex-shade {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.8), rgba(212, 175, 55, 0.4));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .ih-hex:hover .ih-hex-shade {
            opacity: 1;
        }

        .ih-hex .ih-hex-shade span {
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            text-align: center;
            padding: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Hex positions */
        .ih-hex-1 { top: 340px; left: 390px; animation-delay: 0s; }
        .ih-hex-2 { top: 190px; left: 470px; animation-delay: 0.2s; }
        .ih-hex-3 { top: 40px; left: 390px; animation-delay: 0.4s; }
        .ih-hex-4 { top: 40px; left: 210px; animation-delay: 0.1s; }
        .ih-hex-5 { top: 340px; left: 210px; animation-delay: 0.3s; }
        .ih-hex-6 { top: 170px; left: 120px; animation-delay: 0.5s; }
        .ih-hex-7 { top: 190px; left: 300px; animation-delay: 0.2s; }
        .ih-hex-8 { top: 190px; left: 130px; animation-delay: 0.4s; }
        .ih-hex-9 { top:  340px; left: 40px; animation-delay: 0.1s; }
        .ih-hex-10 { top: 40px; left: 40px; animation-delay: 0.6s; }
        .ih-hex-11 { top: 40px; left: -130px; animation-delay: 0.3s; }
        .ih-hex-12 { top: 190px; left: -40px; animation-delay: 0.5s; }

        .ih-hex-core {
            position: absolute;
            top: 170px;
            left: 120px;
            width: 160px;
            height: 180px;
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
            background: linear-gradient(135deg, #d1fae5, #87d8ab);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 5;
            animation: ihHexPulse 2.5s ease-in-out infinite;
            box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
        }

        .ih-hex-core span {
            color: #fff;
            font-size: 14px;
            font-weight: 800;
            text-align: center;
            line-height: 1.4;
            padding: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Floating particles */
        .ih-dot {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgb(179, 212, 73);
            border-radius: 50%;
            opacity: 0.3;
            animation: ihParticleFloat 6s ease-in-out infinite;
        }

        .ih-dot:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
        .ih-dot:nth-child(2) { top: 20%; left: 90%; animation-delay: 1s; }
        .ih-dot:nth-child(3) { top: 80%; left: 5%; animation-delay: 2s; }
        .ih-dot:nth-child(4) { top: 90%; left: 85%; animation-delay: 3s; }
        .ih-dot:nth-child(5) { top: 50%; left: 50%; animation-delay: 1.5s; }
        .ih-dot:nth-child(6) { top: 30%; left: 70%; animation-delay: 2.5s; }

        

        /* Animations */
        @keyframes ihFadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-60px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes ihFadeInRight {
            from {
                opacity: 0;
                transform: translateX(60px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes ihFadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes ihFadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes ihHexFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }

        @keyframes ihHexPulse {
            0%, 100% { 
                transform: scale(1);
                box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
            }
            50% { 
                transform: scale(1.05);
                box-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
            }
        }

        @keyframes ihUnderlineGrow {
            from { width: 0; }
            to { width: 100%; }
        }

        @keyframes ihParticleFloat {
            0%, 100% { 
                transform: translate(0, 0) scale(1);
                opacity: 0.3;
            }
            25% { 
                transform: translate(20px, -30px) scale(1.5);
                opacity: 0.6;
            }
            50% { 
                transform: translate(-10px, -60px) scale(1);
                opacity: 0.2;
            }
            75% { 
                transform: translate(15px, -30px) scale(1.3);
                opacity: 0.5;
            }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .ih-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .ih-content {
                text-align: center;
            }

            .ih-badge {
                justify-content: center;
            }

            .ih-actions {
                justify-content: center;
            }

            .ih-gallery {
                height: 500px;
            }

            .ih-hex-grid {
                transform: scale(0.85);
            }

            .ih-spec-list {
                text-align: left;
            }
        }

        @media (max-width: 768px) {
            .ih-company-section {
                padding: 60px 4%;
            }

            .ih-title {
                font-size: clamp(28px, 6vw, 42px);
            }

            .ih-description {
                font-size: 15px;
            }

            .ih-gallery {
                height: 420px;
            }

            .ih-hex-grid {
                transform: scale(0.7);
            }

            .ih-actions {
                flex-direction: column;
                align-items: center;
            }

            .ih-btn-gold, .ih-btn-outline {
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }

            .ih-spec-list {
                grid-template-columns: 1fr;
                gap: 14px;
                text-align: left;
            }
        }

        @media (max-width: 480px) {
            .ih-company-section {
                padding: 40px 3%;
            }

            .ih-gallery {
                height: 360px;
            }

            .ih-hex-grid {
                transform: scale(0.55);
            }

            .ih-badge span {
                font-size: 12px;
                letter-spacing: 3px;
            }

            .ih-spec-list {
                gap: 12px;
            }
        }

        /* Hex entrance animation */
        .ih-hex {
            opacity: 0;
            animation: ihHexEntrance 0.6s ease-out forwards, ihHexFloat 3s ease-in-out infinite;
        }

        .ih-hex-1 { animation-delay: 0.1s, 0.1s; }
        .ih-hex-2 { animation-delay: 0.2s, 0.3s; }
        .ih-hex-3 { animation-delay: 0.3s, 0.5s; }
        .ih-hex-4 { animation-delay: 0.4s, 0.2s; }
        .ih-hex-5 { animation-delay: 0.5s, 0.4s; }
        .ih-hex-6 { animation-delay: 0.6s, 0.6s; }
        .ih-hex-7 { animation-delay: 0.7s, 0.3s; }
        .ih-hex-8 { animation-delay: 0.8s, 0.5s; }
        .ih-hex-9 { animation-delay: 0.9s, 0.2s; }
        .ih-hex-10 { animation-delay: 1.0s, 0.7s; }
        .ih-hex-11 { animation-delay: 1.1s, 0.4s; }
        .ih-hex-12 { animation-delay: 1.2s, 0.6s; }

        .ih-hex-core {
            opacity: 0;
            animation: ihHexCoreEntrance 0.8s ease-out 0.8s forwards, ihHexPulse 2.5s ease-in-out 1.6s infinite;
        }

        @keyframes ihHexEntrance {
            from {
                opacity: 0;
                transform: scale(0) rotate(60deg);
            }
            to {
                opacity: 1;
                transform: scale(1) rotate(0deg);
            }
        }

        @keyframes ihHexCoreEntrance {
            from {
                opacity: 0;
                transform: scale(0);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /*  */

        .inspiring-brand-section {
            background: #f2f2f2;
            font-family: 'Inter', sans-serif;
            padding: 80px 5%;
            min-height: 500px;
            display: flex;
            align-items: center;
            overflow: hidden;
            position: relative;
        }

        .inspiring-brand-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 60% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 40%);
            pointer-events: none;
        }

        .story-layout {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
            width: 100%;
        }

        /* Left column: Hexagons */
        .hex-showcase {
            position: relative;
            width: 100%;
            height: 600px;
            display: flex;
            justify-content: center;
            align-items: center;
            animation: showRight 1s ease-out 0.3s both;
            order: 1;
        }

        /* Right column: Content */
        .narrative-block {
            animation: showLeft 1s ease-out;
            order: 2;
        }

        .badge-line {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 30px;
            animation: fadeDown 0.8s ease-out;
        }

        .badge-line .dash {
            width: 40px;
            height: 2px;
            background: #d4af37;
            position: relative;
        }

        .badge-line .dash::after {
            content: '';
            position: absolute;
            right: -8px;
            top: -2px;
            width: 6px;
            height: 6px;
            background: #d4af37;
            border-radius: 50%;
        }

        .badge-line span {
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 4px;
            color: #d4af37;
            text-transform: uppercase;
        }

        .badge-line .dash-long {
            width: 60px;
        }

        .main-title {
            font-size: clamp(32px, 4.5vw, 56px);
            font-weight: 900;
            line-height: 1.15;
            margin-bottom: 30px;
            color: #1a1a2e;
        }

        .main-title .gold-highlight {
            color: rgb(179, 212, 73);
            position: relative;
            display: inline-block;
        }

        .main-title .gold-highlight::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 0;
            width: 100%;
            height: 4px;
            background: rgb(179, 212, 73);
            opacity: 0.3;
            border-radius: 2px;
            animation: underlineGrow 1.2s ease-out 0.5s both;
        }

        .body-copy {
            font-size: 16px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 20px;
            animation: fadeUp 0.8s ease-out 0.3s both;
        }

        .body-copy:nth-child(4) {
            animation-delay: 0.5s;
        }

        .feature-checklist {
            list-style: none;
            padding: 0;
            margin: 0 0 35px 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px 24px;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            animation: fadeUp 0.6s ease-out both;
        }

        .feature-item:nth-child(1) { animation-delay: 0.1s; }
        .feature-item:nth-child(2) { animation-delay: 0.2s; }
        .feature-item:nth-child(3) { animation-delay: 0.3s; }
        .feature-item:nth-child(4) { animation-delay: 0.4s; }
        .feature-item:nth-child(5) { animation-delay: 0.5s; }
        .feature-item:nth-child(6) { animation-delay: 0.6s; }
        .feature-item:nth-child(7) { animation-delay: 0.7s; }
        .feature-item:nth-child(8) { animation-delay: 0.8s; }

        .check-dot {
            flex-shrink: 0;
            width: 12px;
            height: 12px;
            margin-top: 6px;
            background: rgb(179, 212, 73);
            border-radius: 50%;
            box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
            position: relative;
        }

        .check-dot::after {
            content: '';
            position: absolute;
            top: 4px;
            left: 4px;
            width: 4px;
            height: 4px;
            background: #fff;
            border-radius: 50%;
        }

        .feature-copy h4 {
            margin: 0 0 4px 0;
            font-size: 15px;
            font-weight: 800;
            color: #1a1a2e;
        }

        .feature-copy p {
            margin: 0;
            font-size: 14px;
            line-height: 1.5;
            color: #777;
        }

        .action-row {
            display: flex;
            gap: 20px;
            margin-top: 10px;
            flex-wrap: wrap;
            animation: fadeUp 0.8s ease-out 0.95s both;
        }

        .btn-gold {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 36px;
            background: linear-gradient(135deg, #d4af37, #c4a030);
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
        }

        .btn-gold::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.6s ease;
        }

        .btn-gold:hover::before {
            left: 100%;
        }

        .btn-gold:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 8px 30px rgba(212, 175, 55, 0.45);
        }

        .btn-gold .arrow-icon {
            transition: transform 0.3s ease;
        }

        .btn-gold:hover .arrow-icon {
            transform: translateX(5px);
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 36px;
            background: transparent;
            color: #1a1a2e;
            font-size: 16px;
            font-weight: 600;
            border: 2px solid #ddd;
            border-radius: 50px;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-outline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: #1a1a2e;
            transition: width 0.4s ease;
            z-index: 0;
        }

        .btn-outline:hover::before {
            width: 100%;
        }

        .btn-outline span {
            position: relative;
            z-index: 1;
            transition: color 0.4s ease;
        }

        .btn-outline:hover span {
            color: #fff;
        }

        .btn-outline:hover {
            border-color: #1a1a2e;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        /* Hexagon Mesh */
        .hex-map {
            position: relative;
            width: 600px;
            height: 460px;
        }

        .hex-tile {
            position: absolute;
            width: 160px;
            height: 180px;
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            animation: hexFloat 3s ease-in-out infinite;
        }

        .hex-tile:hover {
            transform: scale(1.15);
            z-index: 10;
            filter: drop-shadow(0 10px 30px rgba(0,0,0,0.2));
        }

        .hex-tile img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .hex-tile:hover img {
            transform: scale(1.1);
        }

        .hex-shade {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.8), rgba(212, 175, 55, 0.4));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .hex-tile:hover .hex-shade {
            opacity: 1;
        }

        .hex-shade span {
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            text-align: center;
            padding: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .pos-1 { top: 340px; left: 390px; animation-delay: 0s; }
        .pos-2 { top: 190px; left: 470px; animation-delay: 0.2s; }
        .pos-3 { top: 40px; left: 390px; animation-delay: 0.4s; }
        .pos-4 { top: 40px; left: 210px; animation-delay: 0.1s; }
        .pos-5 { top: 340px; left: 210px; animation-delay: 0.3s; }
        /* .pos-6 { top: 300px; left:400px; animation-delay: 0.5s; } */
        .pos-7 { top: 190px; left: 300px; animation-delay: 0.2s; }
        .pos-8 { top: 190px; left: 130px; animation-delay: 0.4s; }
        .pos-9 { top:  340px; left: 40px; animation-delay: 0.1s; }
        .pos-10 { top: 40px; left: 40px; animation-delay: 0.6s; }
        .pos-11 { top: 40px; left: -130px; animation-delay: 0.3s; }
        .pos-12 { top: 190px; left: -40px; animation-delay: 0.5s; }

        .center-hex {
            position: absolute;
            top: 170px;
            left: 120px;
            width: 160px;
            height: 180px;
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
            background: linear-gradient(135deg, #d1fae5, #87d8ab);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 5;
            animation: hexPulse 2.5s ease-in-out infinite;
            box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
        }

        .center-hex span {
            color: #fff;
            font-size: 14px;
            font-weight: 800;
            text-align: center;
            line-height: 1.4;
            padding: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .sparkle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgb(179, 212, 73);
            border-radius: 50%;
            opacity: 0.3;
            animation: sparkleFloat 6s ease-in-out infinite;
        }

        .sparkle:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
        .sparkle:nth-child(2) { top: 20%; left: 90%; animation-delay: 1s; }
        .sparkle:nth-child(3) { top: 80%; left: 5%; animation-delay: 2s; }
        .sparkle:nth-child(4) { top: 90%; left: 85%; animation-delay: 3s; }
        .sparkle:nth-child(5) { top: 50%; left: 50%; animation-delay: 1.5s; }
        .sparkle:nth-child(6) { top: 30%; left: 70%; animation-delay: 2.5s; }

        @keyframes showLeft {
            from {
                opacity: 0;
                transform: translateX(-60px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes showRight {
            from {
                opacity: 0;
                transform: translateX(60px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes hexFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }

        @keyframes hexPulse {
            0%, 100% { 
                transform: scale(1);
                box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
            }
            50% { 
                transform: scale(1.05);
                box-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
            }
        }

        @keyframes underlineGrow {
            from { width: 0; }
            to { width: 100%; }
        }

        @keyframes sparkleFloat {
            0%, 100% { 
                transform: translate(0, 0) scale(1);
                opacity: 0.3;
            }
            25% { 
                transform: translate(20px, -30px) scale(1.5);
                opacity: 0.6;
            }
            50% { 
                transform: translate(-10px, -60px) scale(1);
                opacity: 0.2;
            }
            75% { 
                transform: translate(15px, -30px) scale(1.3);
                opacity: 0.5;
            }
        }

        @media (max-width: 1024px) {
            .story-layout {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .narrative-block {
                text-align: center;
            }

            .badge-line {
                justify-content: center;
            }

            .action-row {
                justify-content: center;
            }

            .hex-showcase {
                height: 500px;
                order: 1;
            }

            .narrative-block {
                order: 2;
            }

            .hex-map {
                transform: scale(0.85);
            }

            .feature-checklist {
                text-align: left;
            }
        }

        @media (max-width: 768px) {
            .inspiring-brand-section {
                padding: 60px 4%;
            }

            .main-title {
                font-size: clamp(28px, 6vw, 42px);
            }

            .body-copy {
                font-size: 15px;
            }

            .hex-showcase {
                height: 420px;
            }

            .hex-map {
                transform: scale(0.7);
            }

            .action-row {
                flex-direction: column;
                align-items: center;
            }

            .btn-gold, .btn-outline {
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }

            .feature-checklist {
                grid-template-columns: 1fr;
                gap: 14px;
                text-align: left;
            }
        }

        @media (max-width: 480px) {
            .inspiring-brand-section {
                padding: 40px 3%;
            }

            .hex-showcase {
                height: 360px;
            }

            .hex-map {
                transform: scale(0.55);
            }

            .badge-line span {
                font-size: 12px;
                letter-spacing: 3px;
            }

            .feature-checklist {
                gap: 12px;
            }
        }

        .hex-tile {
            opacity: 0;
            animation: hexEntrance 0.6s ease-out forwards, hexFloat 3s ease-in-out infinite;
        }

        .pos-1 { animation-delay: 0.1s, 0.1s; }
        .pos-2 { animation-delay: 0.2s, 0.3s; }
        .pos-3 { animation-delay: 0.3s, 0.5s; }
        .pos-4 { animation-delay: 0.4s, 0.2s; }
        .pos-5 { animation-delay: 0.5s, 0.4s; }
        .pos-6 { animation-delay: 0.6s, 0.6s; }
        .pos-7 { animation-delay: 0.7s, 0.3s; }
        .pos-8 { animation-delay: 0.8s, 0.5s; }
        .pos-9 { animation-delay: 0.9s, 0.2s; }
        .pos-10 { animation-delay: 1.0s, 0.7s; }
        .pos-11 { animation-delay: 1.1s, 0.4s; }
        .pos-12 { animation-delay: 1.2s, 0.6s; }

        .center-hex {
            opacity: 0;
            animation: hexCenterEntrance 0.8s ease-out 0.8s forwards, hexPulse 2.5s ease-in-out 1.6s infinite;
        }

        @keyframes hexEntrance {
            from {
                opacity: 0;
                transform: scale(0) rotate(60deg);
            }
            to {
                opacity: 1;
                transform: scale(1) rotate(0deg);
            }
        }

        @keyframes hexCenterEntrance {
            from {
                opacity: 0;
                transform: scale(0);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

/*  */
.projects-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .project-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background-color: #f0f0f0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.18);
  }

  .project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }

  .project-card:hover img {
    transform: scale(1.08);
  }

  .project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 20px;
    box-sizing: border-box;
    transition: opacity 0.3s ease;
  }

  .project-card:hover .project-overlay {
    opacity: 1;
  }

  .project-title {
    color: #ffffff;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 12px 0;
    transform: translateY(15px);
    transition: transform 0.3s ease;
  }

  .project-btn {
    display: inline-block;
    padding: 8px 16px;
    background-color: #ffffff;
    color: #111111;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transform: translateY(15px);
    transition: transform 0.3s ease, background-color 0.2s ease, color 0.2s ease;
  }

  .project-btn:hover {
    background-color: rgb(179, 212, 73);
    color: #ffffff;
  }

  .project-card:hover .project-title,
  .project-card:hover .project-btn {
    transform: translateY(0);
  }


