/* ==========================================================================
   TABLE OF CONTENTS
   ==========================================================================
   01. Variables & Root
   02. Base & Reset
   03. Typography & Utilities
   04. Buttons
   05. Header & Navigation
   06. Hero Section
   07. About Section
   08. Categories & Services
   09. Related Content
   10. Call to Action (CTA)
   11. Pages & Miscellaneous (Breadcrumbs, Founder, Principles, Achieve)
   12. Blog & Articles
   13. Contact & Forms
   14. Modals
   15. Footer
   16. Animations & Keyframes
   17. Responsive (Media Queries)
   ========================================================================== */

/* ==========================================================================
   01. Variables & Root
   ========================================================================== */
:root {
  --green-deep: #144A2A;
  --green-light: #5E8646;
  --charcoal: #2b2d33;
  --offwhite: #f6f4ee;
  --gold: #e1af4a;
  --muted: #6e6e76;
  --border: #e3dfd6;
  --font-serif: "Fraunces", "Times New Roman", serif;
  --font-sans: "Sora", system-ui, sans-serif;
}

/* ==========================================================================
   02. Base & Reset
   ========================================================================== */
* {
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  letter-spacing: .01em;
  background: var(--offwhite);
  color: var(--green-deep);
  width: 100%;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -.01em;
}

p {
  color: #2f3339;
}

/* ==========================================================================
   03. Typography & Utilities
   ========================================================================== */
.eyebrow {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .32em;
  color: var(--gold);
}

.hairline {
  display: inline-block;
  width: 3.5rem;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
}

.text-gold {
  color: var(--gold) !important;
}
/* Duplicate rule preserved from original */
.text-gold {
  color: var(--gold) !important;
}

.text-offwhite {
  color: var(--offwhite) !important;
}

.text-muted-2 {
  color: var(--muted);
}

.bg-navy {
  background: var(--green-deep);
  color: var(--offwhite);
}

.bg-charcoal {
  background: var(--charcoal);
  color: var(--offwhite);
}

.bg-offwhite {
  background: var(--offwhite);
}

.serif {
  font-family: var(--font-serif);
}

.lh-rel {
  line-height: 1.85;
}

.section-space {
  padding-top: 70px;
  padding-bottom: 70px;
}

.heading-sub {
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--green-deep);
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 600;
  display: inline-flex;
}

.main-heading {
  font-size: 3rem;
  color: #000;
}

.heading-margin {
  margin-bottom: 50px;
}

.heading-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
.privacy-policy{
    padding:80px 0;
    background:var(--offwhite);
    color:var(--charcoal);
    font-family:var(--font-sans);
}

.privacy-policy h1{
    font-family:var(--font-serif);
    font-size:48px;
    margin-bottom:12px;
}

.privacy-policy h3{
    font-family:var(--font-serif);
    color:var(--green-deep);
    font-size:28px;
    margin:40px 0 18px;
}

.privacy-policy h5{
    color:var(--green-deep);
    font-weight:600;
    margin-bottom:15px;
}

.privacy-policy p{
    color:var(--muted);
    font-size:16px;
    line-height:1.9;
    margin-bottom:18px;
}

.privacy-policy ul{
    margin:0 0 25px;
    padding-left:22px;
}

.privacy-policy li{
    color:var(--muted);
    line-height:1.9;
    margin-bottom:10px;
}

.privacy-policy hr{
    border:none;
    border-top:1px solid var(--border);
    margin:35px 0;
}

.privacy-policy a{
    color:var(--green-light);
    text-decoration:none;
    transition:.3s;
}

.privacy-policy a:hover{
    color:var(--gold);
}

.privacy-policy .card{
    border:1px solid var(--border)!important;
    border-radius:18px;
    background:#fff;
    overflow:hidden;
}

.privacy-policy .card-body{
    padding:35px;
}

.privacy-policy .text-muted{
    color:var(--muted)!important;
}

@media (max-width:991px){

    .privacy-policy{
        padding:60px 0;
    }

    .privacy-policy h1{
        font-size:38px;
    }

    .privacy-policy h3{
        font-size:24px;
    }
}

@media (max-width:576px){

    .privacy-policy{
        padding:50px 0;
    }

    .privacy-policy h1{
        font-size:32px;
    }

    .privacy-policy h3{
        font-size:22px;
    }

    .privacy-policy p,
    .privacy-policy li{
        font-size:15px;
    }

    .privacy-policy .card-body{
        padding:25px;
    }
}
/* ==========================================================================
   04. Buttons
   ========================================================================== */
.btn-bbn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .95rem 1.5rem;
  font-size: .78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0;
  border: 1px solid var(--offwhite);
  background: var(--green-deep);
  color: #fff;
  transition: all .4s ease;
  text-decoration: none;
  border-radius: 100px;
}

.btn-bbn:hover {
  background: #fff;
  color: var(--green-deep);
  border: 1px solid var(--green-deep);
}

.btn-bbn.btn-bbn-gold {
  margin-top: 50px;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-bbn.btn-bbn-gold:hover {
  background: var(--gold);
  color: #fff;
  border: 1px solid var(--gold);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .95rem 1.5rem;
  font-size: .78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: transparent;
  color: var(--green-deep);
  border: 1px solid var(--green-deep);
  border-radius: 0;
  transition: all .4s ease;
  text-decoration: none;
  border-radius: 100px;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: #fff;
  background: var(--green-deep);
}

.btn-dark-bbn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .95rem 2rem;
  font-size: .78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .2em;
  background: var(--green-deep);
  color: var(--offwhite);
  border: 1px solid var(--green-deep);
  border-radius: 0;
  transition: all .4s ease;
  text-decoration: none;
}

.btn-dark-bbn:hover {
  background: transparent;
  color: var(--green-deep);
}

/* ==========================================================================
   05. Header & Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  background: rgb(255 255 255 / 94%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(12, 22, 50, .08);
  transition: .4s ease;
  padding-top: 0px;
  padding-bottom: 0px;
}

.site-header.scrolled {
  background: #ffffff;
  box-shadow: 0 10px 30px rgb(160 160 160 / 15%);
}

.site-header .navbar {
  padding-top: 3px;
  padding-bottom: 3px;
}

.navbar-brand img {
  width: 180px;
  transition: .4s ease;
}

.site-header.scrolled .navbar-brand img {
  width: 140px;
  transition: .4s ease;
}

.nav-link-bbn {
  color: #000000 !important;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 500;
  transition: .3s;
}

.nav-link-bbn:hover {
  color: var(--green-deep) !important;
}

.enquire-link {
  color: var(--green-deep);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  text-decoration: none;
  border: 1px solid var(--green-deep);
  padding: .95rem 1.5rem;
  font-weight: 500;
  transition: .3s;
  border-radius: 100px;
}

.enquire-link:hover {
  color: var(--offwhite);
  background: var(--green-deep);
}

.navbar-toggler {
  padding: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Animated Mobile Menu Button */
.bbn-navbar-toggler {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 1100;
}

.bbn-toggler-line {
  width: 28px;
  height: 2px;
  background: #144a2a;
  border-radius: 10px;
  transition: all .35s ease;
  transform-origin: center;
}

.bbn-navbar-toggler.active .bbn-toggler-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.bbn-navbar-toggler.active .bbn-toggler-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.bbn-navbar-toggler.active .bbn-toggler-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.bbn-navbar-toggler:hover .bbn-toggler-line {
  background: var(--gold);
}

/* Dropdown */
.navbar .dropdown {
  position: relative;
}

.bbn-dropdown {
  margin-top: 18px;
  padding: 12px 0;
  min-width: 320px;
  border: none;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .12);
  overflow: hidden;
  animation: dropdownFade .25s ease;
}

.bbn-dropdown .dropdown-item {
  padding: 14px 24px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .05em;
  color: var(--charcoal);
  transition: .3s;
  white-space: normal;
}

.bbn-dropdown .dropdown-item:hover {
  background: var(--offwhite);
  color: var(--green-deep);
  padding-left: 30px;
}

.dropdown-toggle::after {
  margin-left: 2px;
  vertical-align: middle;
  transition: .3s;
}

.dropdown.show .dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown-view-all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: var(--primary);
  transition: .3s;
}

.dropdown-view-all i {
  transition: .3s;
}

.dropdown-view-all:hover i {
  transform: translateX(5px);
}

/* ==========================================================================
   06. Hero Section
   ========================================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 850px;
  overflow: hidden;
}

.hero .hero-con-div {
  padding-top: 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../../site_assets/img/hero-bg.jpg') center center/cover no-repeat;
  animation: heroZoom 18s ease-in-out infinite alternate;
  transform-origin: center center;
}

.hero .overlay-1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #2e7d3287 0%, #13461542 45%, #144a2acf 100%);
}

.hero .overlay-2 {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, #0000004f 80%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.hero h1 {
  color: var(--offwhite);
  font-size: clamp(3.5rem, 6vw, 5rem);
  line-height: 1.05;
}

.hero .btn-bbn {
  background-color: #fff;
  color: var(--green-deep);
}

.hero .btn-bbn:hover {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.hero .btn-ghost {
  border: 1px solid #fff;
  color: #ffff;
}

.hero .btn-ghost:hover {
  border: 1px solid var(--gold);
  color: var(--gold);
  background-color: transparent;
}

.hero h1 .sub {
  display: ;
  font-style: italic;
  color: var(--gold);
}

.hero p.lead-c {
  color: rgb(255 255 255);
  font-weight: 300;
  max-width: 52rem;
}

.hero-banner {
  position: relative;
}

.hero-features {
  width: 100%;
  z-index: 10;
  background: rgb(0 0 0 / 0%);
  margin-bottom: 30px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 30px;
  min-height: 100px;
  border-right: 1px solid rgba(255, 255, 255, .2);
}

.hero-feature-item img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}

.hero-feature-item h5 {
  color: var(--gold);
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  font-family: var(--font-serif);
}

/* ==========================================================================
   07. About Section
   ========================================================================== */
.abt-sec {
  background: #efeadb;
}

.bbn-about {
  position: relative;
  background: #f8f4e7;
  overflow: hidden;
}

.bbn-circle {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(94, 134, 70, .08);
  top: -150px;
  right: -100px;
}

.bbn-about-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 70px;
  align-items: center;
}

.bbn-about-content .heading-sub {
  color: var(--green-light);
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 600;
  text-transform: uppercase;
}

.bbn-about-content p {
  line-height: 1.8;
  max-width: 560px;
}

.bbn-stats {
  display: flex;
  gap: 40px;
  margin: 35px 0;
}

.bbn-stats h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--green-deep);
}

.bbn-stats span {
  font-size: 13px;
  color: var(--muted);
}

.bbn-about-image {
  position: relative;
}

.bbn-about-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 35px;
}

.bbn-card {
  position: absolute;
  bottom: 35px;
  left: -45px;
  display: flex;
  align-items: center;
  gap: 15px;
  background: white;
  padding: 22px 28px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

.bbn-card i {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-deep);
  color: white;
  border-radius: 50%;
  font-size: 22px;
}

.bbn-card strong {
  display: block;
  font-family: var(--font-serif);
  color: var(--charcoal);
}

.bbn-card span {
  font-size: 13px;
  color: var(--muted);
}

/* ==========================================================================
   08. Categories & Services
   ========================================================================== */
.category-card {
  background: #fff;
  border: 1px solid #d8ddd6;
  border-radius: 26px;
  overflow: hidden;
  height: 100%;
  transition: .35s;
  display: block;
  text-decoration: none;
  color: #000;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
}

.category-img {
  overflow: hidden;
}

.category-img img {
  width: 100%;
  height: 215px;
  object-fit: cover;
  transition: .5s;
}

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

.category-content {
  padding: 26px;
}

.category-content h3 {
  font-size: 19px;
  font-weight: 600;
  color: #111;
  line-height: 1.3;
  margin-bottom: 15px;
}

.category-card:hover h3 {
  color: var(--green-deep);
}

.category-content p {
  font-size: 15px;
  color: #2f3339;
  line-height: 1.6;
  margin: 0;
}

.category-detail-sec {
  padding: 100px 0;
  background: #f8fafc;
}

.category-detail-sec .main-heading {
  font-size: 34px;
}

.category-image {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  height: 100%;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: .6s;
}

.category-image:hover img {
  transform: scale(1.05);
}

.category-intro {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 30px;
  margin-top: 30px;
}

.category-info-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.info-box {
  background: #fff;
  border-radius: 18px;
  padding: 17px;
  display: flex;
  gap: 22px;
  border: 1px solid #ececec;
  transition: .35s;
  box-shadow: 0 12px 35px rgba(0, 0, 0, .05);
}

.info-box:hover {
  transform: translateY(-6px);
  border-color: var(--green-light);
  box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
}

.info-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--green-deep), var(--green-light));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.info-box h5 {
  font-size: 19px;
  margin-bottom: 6px;
  font-weight: 700;
  color: #091321;
}

.info-box p {
  margin: 0;
  color: #666;
  line-height: 1.9;
  font-size: 14px;
}

.category-detail-sec .btn {
  padding: 15px 34px;
  border-radius: 12px;
  font-weight: 600;
  margin-top: 35px !important;
}

/* Services */
.service-sec {
  background-color: #efeadb;
}

.service-sec .sub-p {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  position: relative;
  height: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  transition: .35s ease;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--green-deep), var(--green-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: .35s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(20, 74, 42, .12);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(20, 74, 42, .08);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.service-icon i {
  font-size: 22px;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.service-subtitle {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 48px;
  line-height: 1.6;
  height: 70px;
}

.service-card ul {
  margin: 0 0 22px;
  padding-left: 18px;
  display: none;
}

.service-card ul li {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 6px;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 50px;
  background: var(--green-deep);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: .3s;
}

.service-btn:hover {
  background: var(--green-light);
  color: #fff;
}

.service-btn i {
  font-size: 13px;
  transition: .3s;
}

.service-btn:hover i {
  transform: translateX(4px);
}

/* Service Overview */
.service-overview {
  background: #fff;
}

.service-overview-content .main-heading {
  font-size: 31px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  gap: 10px;
}

.service-overview-content .main-heading .count-span {
  color: #fff;
  width: 35px;
  background: var(--green-deep);
  height: 35px;
  border-radius: 100%;
  text-align: center;
  align-items: center;
  font-size: 24px;
  display: flex;
  justify-content: center;
}

.service-overview-content > p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 20px;
}

.service-feature {
  display: flex;
  gap: 20px;
  padding: 25px 0;
  border-top: 1px solid var(--border);
}

.service-feature:last-child {
  border-bottom: 1px solid var(--border);
}

.service-feature-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--offwhite);
  color: var(--green-deep);
  border-radius: 16px;
  font-size: 34px;
}

.service-feature h4 {
  margin-bottom: 10px;
  font-family: var(--font-serif);
  color: var(--green-deep);
  font-size: 24px;
}

.service-feature p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.service-overview-image img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  border-radius: 25px;
}

/* ==========================================================================
   09. Related Content
   ========================================================================== */
/* Duplicate rules preserved from original */
.rel-div {
  display: flex;
  gap: 50px;
}

.rel-div {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 50px;
}

.rel-img {
  flex-shrink: 0;
  width: 300px;
  height: 190px;
  border-radius: 16px;
}

.rel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
}

.rel-content {
  width: 100%;
  border-left: 1px solid var(--green-deep);
  padding-left: inherit;
  padding: 40px 0px 40px 50px;
  height: 100%;
}

.rel-content h3 {
  font-size: 19px;
  font-weight: 600;
  color: #111;
  line-height: 1.3;
  margin-bottom: 15px;
}

.rel-content p {
  font-size: 15px;
  color: #2f3339;
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   10. Call to Action (CTA)
   ========================================================================== */
.cta-section {
  padding: 80px 0;
}

.cta-box {
  background: var(--green-deep);
  border-radius: 32px;
  padding: 70px 70px;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  right: -180px;
  top: -180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .03);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-family: var(--font-serif);
  color: #fff;
  font-size: 37px;
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 600;
}

.cta-content p {
  color: rgba(255, 255, 255, .75);
  font-size: 15px;
  line-height: 1.7;
  max-width: 70%;
  margin: 0;
  font-family: var(--font-sans);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--gold);
  color: var(--green-deep);
  padding: .95rem 1.5rem;
  border-radius: 60px;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  transition: .35s;
  position: relative;
  z-index: 2;
}

.cta-btn:hover {
  background: #f0bd56;
  color: var(--green-deep);
  transform: translateY(-3px);
}

.cta-btn i {
  font-size: 22px;
  transition: .3s;
}

.cta-btn:hover i {
  transform: translateX(6px);
}

/* ==========================================================================
   11. Pages & Miscellaneous (Breadcrumbs, Founder, Principles, Achieve)
   ========================================================================== */
.bread-page-header {
  padding: 120px 0 50px;
  background-color: var(--navy-deep);
  background-image: url(../../site_assets/img/bread-bg.webp);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  border-bottom: 1px solid #ececec;
  position: relative;
  overflow: hidden;
}

.bread-page-header::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(260deg, rgba(12, 22, 50, 0) 0%, rgb(5 21 38 / 36%) 40%, rgb(20 74 42 / 85%) 100%);
}

.bread-page-header-content {
  position: relative;
  z-index: 2;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .18em;
}

.breadcrumb-nav a {
  color: #c0c0c0;
  text-decoration: none;
  transition: .3s;
}

.breadcrumb-nav a:hover {
  color: var(--gold);
}

.breadcrumb-nav span {
  color: #ffffff;
}

.page-title {
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 300;
  color: var(--offwhite);
  margin: 0;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.section-subtitle {
  display: inline-block;
  color: var(--brass);
  font-size: .72rem;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* Founder Note */
.founder-note {
  padding: 70px 0;
  background: var(--offwhite);
}

.founder-inner {
  max-width: 1020px;
  margin: auto;
  text-align: center;
  padding: 40px 50px;
  background: #fff;
  border-radius: 25px;
  border: 1px solid var(--border);
}

.founder-inner .heading-sub {
  color: var(--green-light);
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
}

.quote-mark {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 70px;
  line-height: 20px;
  margin: 35px 0 10px;
}

.founder-inner p {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 15px;
  font-style: italic;
}

.founder-name {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.founder-name strong {
  display: block;
  color: var(--green-deep);
  font-family: var(--font-serif);
  font-size: 20px;
}

.founder-name span {
  color: var(--muted);
  font-size: 13px;
}

/* Principles */
.principles-section {
  background-color: #efeadb;
}

.principles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.principle-item {
  display: flex;
  gap: 25px;
  padding: 35px;
  background: var(--offwhite);
  border-radius: 20px;
  transition: .3s;
}

.principle-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(20, 74, 42, .08);
}

.number {
  font-family: var(--font-serif);
  font-size: 42px;
  color: var(--gold);
  line-height: 1;
}

.principle-item h3 {
  margin: 0 0 12px;
  font-family: var(--font-serif);
  color: var(--green-deep);
  font-size: 24px;
}

.principle-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

/* Achievements */
.bbn-achieve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.bbn-achieve-card {
  position: relative;
  padding: 40px 35px;
  background: var(--offwhite);
  border-radius: 25px;
  border: 1px solid var(--border);
  transition: .35s ease;
}

.bbn-achieve-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(20, 74, 42, .10);
}

.bbn-achieve-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-deep);
  color: var(--gold);
  border-radius: 50%;
  font-size: 24px;
  margin-bottom: 25px;
}

.bbn-achieve-card h3 {
  font-family: var(--font-serif);
  font-size: 25px;
  line-height: 1.3;
  color: var(--green-deep);
  margin-bottom: 15px;
}

.bbn-achieve-card p {
  font-family: var(--font-sans);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

/* ==========================================================================
   12. Blog & Articles
   ========================================================================== */
.blog-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(227, 223, 214, .8);
  box-shadow: 0 10px 35px rgba(20, 74, 42, .06);
  transition: .45s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(20, 74, 42, .14);
}

.blog-image {
  height: 250px;
  position: relative;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .6s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.08);
}

.blog-category {
  position: absolute;
  left: 25px;
  bottom: 22px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  color: var(--green-deep);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 9px 18px;
  border-radius: 50px;
}

.blog-content {
  padding: 20px 20px 20px;
}

.blog-content h3 {
  font-family: var(--font-serif);
  font-size: 27px;
  line-height: 1.35;
  margin-bottom: 15px;
}

.blog-content h3 a {
  color: var(--charcoal);
  text-decoration: none;
  transition: .3s ease;
}

.blog-content h3 a:hover {
  color: var(--green-deep);
}

.blog-content p {
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-deep);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.read-more i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #fff;
  transition: .3s ease;
}

.read-more:hover i {
  transform: rotate(45deg);
}

.blog-detail {
  background: var(--offwhite);
}

.article-wrapper {
  background: #fff;
  padding: 40px;
  border-radius: 32px;
  border: 1px solid var(--border);
}

.article-header {
  margin-bottom: 35px;
}

.article-tag {
  display: inline-block;
  background: rgba(94, 134, 70, .12);
  color: var(--green-light);
  padding: 8px 18px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.article-header h1 {
  font-family: var(--font-serif);
  font-size: 48px;
  line-height: 1.2;
  font-weight: 500;
  color: var(--green-deep);
  margin-bottom: 20px;
}

.article-intro {
  font-family: var(--font-sans);
  color: var(--muted);
  line-height: 1.8;
  font-size: 16px;
}

.article-info {
  display: flex;
  gap: 25px;
  margin-top: 25px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--muted);
}

.article-cover {
  height: 450px;
  overflow: hidden;
  border-radius: 25px;
  margin-bottom: 40px;
}

.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-content p {
  font-family: var(--font-sans);
  color: var(--muted);
  line-height: 1.9;
}

.article-content h2 {
  font-family: var(--font-serif);
  font-size: 34px;
  color: var(--green-deep);
  margin: 40px 0 20px;
}

.article-content img {
  width: 100%;
  border-radius: 22px;
  margin: 30px 0;
}

.article-sidebar {
  position: sticky;
  top: 100px;
}

.side-card,
.side-cta {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 25px;
  padding: 30px;
  margin-bottom: 25px;
}

.side-card h3,
.side-cta h3 {
  font-family: var(--font-serif);
  font-size: 25px;
  color: var(--green-deep);
}

.side-card a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--charcoal);
}

.mini-post {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.mini-post img {
  width: 70px;
  height: 70px;
  border-radius: 15px;
  object-fit: cover;
}

.mini-post a {
  color: var(--charcoal);
  font-size: 14px;
  text-decoration: none;
}

/* ==========================================================================
   13. Contact & Forms
   ========================================================================== */
.contact-section {
  position: relative;
  padding: 100px 0;
  background: var(--offwhite);
  overflow: hidden;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.map-wrapper {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(20, 74, 42, .10);
  border: 1px solid var(--border);
  margin-top: 40px;
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  border: 0;
  border-radius: inherit;
}

.contact-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.contact-shape1 {
  width: 260px;
  height: 260px;
  background: rgba(20, 74, 42, .08);
  top: -100px;
  left: -100px;
}

.contact-shape2 {
  width: 180px;
  height: 180px;
  background: rgba(225, 175, 74, .12);
  right: -70px;
  bottom: -70px;
}

.contact-tag {
  display: inline-block;
  letter-spacing: 2px;
  color: var(--green-light);
  font-weight: 600;
  margin-bottom: 40px;
}

.contact-info h2 {
  font-family: var(--font-serif);
  color: var(--charcoal);
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 25px;
}

.contact-info h2 span {
  color: var(--green-deep);
  font-style: italic;
}

.contact-info p {
  color: var(--muted);
  font-family: var(--font-sans);
  line-height: 1.8;
  max-width: 500px;
}

.contact-details {
  margin-top: 40px;
}

.contact-item {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 25px;
}

.contact-icon {
  width: 55px;
  height: 55px;
  background: var(--green-deep);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
}

.contact-item h5 {
  margin: 0 0 5px;
  font-family: var(--font-serif);
  color: var(--charcoal);
}

.contact-item p {
  margin: 0;
  font-size: 14px;
}

.contact-form-box {
  background: #fff;
  padding: 45px;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(20, 74, 42, .10);
}

.contact-form-box input,
.contact-form-box textarea, 
.contact-form-box select {
  width: 100%;
  border: 1px solid var(--border);
  padding: 10px 10px;
  border-radius: 12px;
  outline: none;
  font-family: var(--font-sans);
  color: var(--charcoal);
  transition: .3s;
  font-size: 14px;
  height: 55px;
}
.contact-form-box input.btn-bbn{
	color: #fff
}
.contact-form-box input.btn-bbn:hover{
	color: var(--green-deep)
}
.contact-form-box input:focus,
.contact-form-box textarea:focus {
  border-color: var(--green-light);
  box-shadow: 0 0 0 4px rgba(94, 134, 70, .12);
}

.contact-form-box textarea {
  resize: none;
  height: 90px !important;
}

.custom-request-box {
  background: #ffffff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--green-deep);
  border-radius: 12px;
  padding: 35px;
}

.custom-request-box h3 {
  font-family: var(--font-serif);
  color: var(--green-deep);
  margin-bottom: 15px;
}

.custom-request-box p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 15px;
}

.custom-request-box .btn-bbn {
  margin-top: 10px;
}

/* ==========================================================================
   14. Modals
   ========================================================================== */
#quoteModal .modal-dialog {
  max-width: 620px;
}

#quoteModal .modal-content {
  border: none;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .12);
}

.quote-body {
  padding: 45px;
  background: #fff;
}

.quote-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 10;
  opacity: 1;
  width: 34px;
  height: 34px;
  padding: 0;
  background-size: 12px;
  border-radius: 50%;
  transition: .3s;
}

.quote-close:hover {
  transform: rotate(90deg);
}

.quote-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--gold);
  font-weight: 600;
}

.quote-tag span {
  width: 36px;
  height: 2px;
  background: var(--gold);
}

.quote-body h2 {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  color: #111;
  margin: 18px 0 12px;
}

.quote-text {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 35px;
}

.quote-input {
  width: 100%;
  height: 54px;
  border: none;
  border-bottom: 1px solid #ddd;
  background: transparent;
  padding: 0;
  font-size: 15px;
  transition: .35s;
  outline: none;
  color: #222;
}

.quote-input::placeholder {
  color: #888;
}

.quote-input:focus {
  border-color: var(--green-deep);
}

.quote-textarea {
  height: 120px;
  resize: none;
  padding-top: 16px;
}

.quote-body .btn-bbn {
  margin-top: 10px;
}

.modal-backdrop.show {
  opacity: .78;
}

/* ==========================================================================
   15. Footer
   ========================================================================== */
.footer {
  background: linear-gradient(180deg, #144A2A 0%, #103d22 100%);
  color: #fff;
  padding: 90px 0 30px;
  margin-top: 30px;
  border-radius: 60px 60px 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  width: 550px;
  height: 550px;
  background: rgba(255, 255, 255, .04);
  border-radius: 50%;
  right: -220px;
  top: -220px;
}

.footer-logo-txt {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 35px;
}

.footer-logo-txt h4 {
  letter-spacing: -0.5px;
  transition: .3s;
  margin-bottom: 10px !important;
}

.footer-logo-txt span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .72);
}

.footer-logo-txt span::before {
  content: "";
  width: 45px;
  height: 2px;
  background: var(--gold);
  border-radius: 10px;
}

.footer-logo-txt:hover h4 {
  color: var(--gold);
}

.footer-logo-txt:hover span {
  color: #fff;
}

.footer-logo-txt:hover span::before {
  width: 60px;
  transition: .35s;
}

.footer-about {
  color: rgba(255, 255, 255, .75);
  line-height: 1.9;
  margin-bottom: 35px;
  max-width: 360px;
  font-size: 15px;
}

.footer h4 {
  font-family: var(--font-serif);
  font-size: 28px;
  margin-bottom: 25px;
  color: #fff;
}

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

.footer ul li {
  margin-bottom: 15px;
}

.footer ul li a {
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
  transition: .3s;
  font-size: 14px;
}

.footer ul li a:hover {
  color: var(--gold);
  padding-left: 8px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .75);
  line-height: 1.8;
  font-size: 14px;
}

.footer-contact i {
  color: var(--gold);
  font-size: 16px;
  margin-top: 4px;
}

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

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: .35s;
  text-decoration: none;
  font-size: 13px;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--green-deep);
  transform: translateY(-5px);
}

.footer-bottom {
  margin-top: 70px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, .65);
  font-size: 14px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, .65);
  text-decoration: none;
  transition: .3s;
  font-size: 14px;
}

.footer-bottom a:hover {
  color: var(--gold);
}

.footer-bottom span {
  color: rgba(255, 255, 255, .35);
  margin: 0 12px;
}

/* ==========================================================================
   16. Animations & Keyframes
   ========================================================================== */
@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   17. Responsive (Media Queries)
   ========================================================================== */

/* --- Desktop & Up (Min 992px) --- */
@media (min-width: 992px) {
  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/* --- Large Devices (Max 1199px) --- */
@media (max-width: 1199px) {
  .category-content h3 {
    font-size: 28px;
  }
  .category-content p {
    font-size: 18px;
  }
  .category-img img {
    height: 220px;
  }
}

/* --- Tablets & Mid-size Devices (Max 991px) --- */
@media (max-width: 991px) {
    .enquire-link{
        display: inline-block;
        margin-bottom : 20px;
    }
    .navbar-brand img{
        width: 120px;
    }
    .site-header.scrolled .navbar-brand img {
    width: 100px;
    transition: .4s ease;
}
.hairline {
    width: 1.5rem;
}
.hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.2;
}
.hero p.lead-c{
    font-size: 14px;
}
.section-space {
    padding-top: 50px;
    padding-bottom: 50px;
}
.main-heading {
    font-size: 2rem;
}
.heading-margin {
    margin-bottom: 30px;
}
.heading-flex {
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: start;
    gap: 10px;
    margin-bottom: 30px;
}
.service-sec .sub-p {
    width: 100%;
}
.service-card{
    padding: 20px;
}
.service-card h3{
    font-size: 17px;
}
.bbn-stats h3 {
    font-size: 20px;
}
  /* Dropdowns */
  .bbn-dropdown {
    box-shadow: none;
    border: 1px solid var(--border);
    border-radius: 12px;
    margin: 10px 0 0;
    min-width: 100%;
  }
  .bbn-dropdown .dropdown-item {
    padding: 12px 18px;
  }

  /* About */
  .bbn-about-grid {
    grid-template-columns: 1fr;
  }
  .bbn-about-image img {
    height: 420px;
  }
  .bbn-card {
    left: 20px;
  }
  .bbn-stats {
    gap: 20px;
    flex-wrap: wrap;
  }

  /* Blog / Articles */
  .article-wrapper {
    padding: 25px;
  }
  .article-header h1 {
    font-size: 36px;
  }
  .article-cover {
    height: 320px;
  }
  .blog-image {
    height: 240px;
  }
  .blog-content h3 {
    font-size: 24px;
  }

  /* Service Overview */
  .service-overview-image {
    margin-top: 40px;
  }
  .service-overview-image img {
    height: 420px;
  }

  /* Hero */
  .hero-features {
    position: relative;
    background: #091321;
  }
  .hero-feature-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
    min-height: auto;
    padding: 15px;
  }
  .hero-feature-item.border-0 {
    border-bottom: none;
  }
  .hero-feature-item h5 {
    font-size: 20px;
  }
.rel-content{
        padding: 20px 0px 20px 20px;
}
  /* Related Section */
  .rel-div {
    flex-direction: column;
    gap: 30px;
  }
  .rel-img,
  .rel-content {
    width: 100%;
  }
  .rel-img img {
    height: 190px;
  }
  .rel-content h3 {
    font-size: 32px;
  }

  /* CTA */
  .cta-box {
    padding: 50px 35px;
    border-radius: 24px;
  }
  .cta-content h2 {
    font-size: 40px;
  }
  .cta-content p {
    font-size: 18px;
  }
  .cta-btn {
  
    justify-content: center;
  }

  /* Footer */
  .footer {
    border-radius: 35px 35px 0 0;
    padding: 70px 0 25px;
  }
  .footer-bottom {
    text-align: center;
    justify-content: center;
  }

  /* Contact */
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-info h2 {
    font-size: 40px;
  }
  .contact-form-box {
    padding: 30px;
  }

  /* Achievements */
  .bbn-achieve-grid {
    grid-template-columns: 1fr;
  }

  /* Categories */
  .category-detail-sec {
    padding: 70px 0;
  }
  .category-detail-sec h2 {
    font-size: 34px;
  }
  .category-image img {
    height: 380px;
  }
  .info-box {
    padding: 22px;
  }
  .info-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    font-size: 22px;
  }
}

/* --- Mobile Portrait & Smaller (Max 768px) --- */
@media (max-width: 768px) {
    .hero {
    height: fit-content;
    min-height: fit-content;
}
.hero-feature-item{
    display: block;
        text-align: center;
}
    .hero-feature-item h5 {
        font-size: 14px;
    }
    .hero-feature-item img {
    width: 38px;
    height: 38px;
    margin-bottom: 15px;
    }
    .hero-features{
        margin-top: 20px;
        margin-bottom: 20px;
    }
  .custom-request-box {
    padding: 25px;
  }
  .bbn-achieve-section {
    padding: 70px 0;
  }
  .bbn-achieve-card {
    padding: 30px 25px;
  }
  .principles-grid {
    grid-template-columns: 1fr;
  }
  .principle-item {
    padding: 25px;
  }
  .founder-inner {
    padding: 35px 20px;
  }
  footer .row.gy-5 {
    --bs-gutter-y: 1rem;
}
}

/* --- Mobile Landscape (Max 767px) --- */
@media (max-width: 767px) {
  .category-img img {
    height: 200px;
  }
  .category-content {
    padding: 22px;
  }
  .category-content h3 {
    font-size: 24px;
  }
  .category-content p {
    font-size: 17px;
  }
  .quote-body {
    padding: 30px 22px;
  }
  .quote-body h2 {
    font-size: 1.9rem;
  }
  .quote-text {
    margin-bottom: 25px;
    font-size: 14px;
  }
  .quote-body .btn-bbn {
    width: 100%;
  }
}

/* --- Small Mobile (Max 576px / 575px) --- */
@media (max-width: 576px) {
  .blog-card {
    border-radius: 22px;
  }
  .blog-content {
    padding: 25px;
  }
  .service-feature {
    gap: 15px;
  }
  .service-feature-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  .service-feature h4 {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .cta-box {
    padding: 40px 25px;
  }
  .cta-content h2 {
    font-size: 32px;
  }
  .cta-content p {
    font-size: 16px;
    max-width: 100%;
  }
  .cta-btn {
    font-size: 17px;
    padding: 16px 28px;
  }
}