    /* ─── TOKENS ─────────────────────────────────────────────────────────── */
    :root {
      --db-navy: #0D2B4E;
      --db-gold: #C8922A;
      --db-gold-lt: #E8B54A;
      --db-cream: #F7F4EE;
      --db-slate: #3A4A5C;
      --db-mist: #EAF0F6;
      --db-dark: #0A1E35;
      --ff-display: 'Roboto Slab', serif;
      --ff-body: 'Inter', sans-serif;
      --radius: 6px;
      --shadow-card: 0 8px 32px rgba(13, 43, 78, .10);
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--ff-body);
      color: var(--db-slate);
      background: #fff;
      overflow-x: hidden;
    }

    /* ─── TYPOGRAPHY ──────────────────────────────────────────────────────── */
    h1,
    h2,
    h3,
    h4,
    h5 {
      font-family: var(--ff-display);
    }


    .section-eyebrow {
      display: block;

      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--db-gold);
      margin-bottom: .6rem;
      text-align: center !important;
    }


    .section-title {
      font-size: clamp(1.6rem, 4vw, 2.4rem);
      color: var(--db-navy);
      font-weight: 700;
      line-height: 1.2;
    }

    .courses-section .section-title {
      font-size: clamp(1.5rem, 3vw, 2rem);
    }

    .section-title span {
      color: var(--db-gold);
    }

    /* ─── BUTTONS ─────────────────────────────────────────────────────────── */
    .btn-db {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      padding: .65rem 1.6rem;
      border-radius: var(--radius);
      font-size: .88rem;
      font-weight: 600;
      letter-spacing: .04em;
      transition: all .25s ease;
      cursor: pointer;
      border: none;
      text-decoration: none;
    }

    .btn-db-gold {
      background: var(--db-gold);
      color: #fff;
    }

    .btn-db-gold:hover {
      background: var(--db-gold-lt);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(200, 146, 42, .35);
    }

    .btn-db-outline {
      background: transparent;
      color: var(--db-gold);
      border: 2px solid var(--db-gold);
    }

    .btn-db-outline:hover {
      background: var(--db-gold);
      color: #fff;
    }

    .btn-db-white {
      background: #fff;
      color: var(--db-navy);
    }

    .btn-db-white:hover {
      background: var(--db-cream);
      color: var(--db-navy);
    }

    /* ─── NAVBAR ──────────────────────────────────────────────────────────── */
    #mainNav {
      background: #fff;
      position: sticky;
      top: 0;
      z-index: 1050;
      transition: box-shadow .3s;
      padding: 0px;
    }

    #mainNav.scrolled {
      box-shadow: 0 4px 24px rgba(0, 0, 0, .25);
    }

    /* Top bar */
    .nav-topbar {
      background: #0d2b4e;
      padding: .35rem 0;
      font-size: .78rem;
      color: #fff;
    }

    .nav-topbar a {
      color: #fff;
      text-decoration: none;
    }

    .nav-topbar a:hover {
      color: var(--db-gold);
    }

    .navbar-brand {
      display: flex;
      align-items: center;
      gap: .75rem;
      text-decoration: none;
    }

    /* ─── NAVBAR LOGO ───────────────────────────────────────────────────── */
    .navbar-brand img {
      width: 150%;
      height: 90px;
      object-fit: contain;
      display: block;
    }

    .brand-icon {
      width: 46px;
      height: 46px;
      background: var(--db-gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--ff-display);
      font-size: 1.2rem;
      font-weight: 900;
      color: #fff;
      flex-shrink: 0;
    }

    .brand-text {
      line-height: 1.1;
    }

    .brand-text strong {
      display: block;
      font-family: var(--ff-display);
      font-size: 1.5rem;
      font-weight: 700;
      color: #0350a0;
    }

    .brand-text span {
      font-weight: 600;
      font-size: .8em;
      color: #000;
      letter-spacing: .06em;
      text-transform: capitalize;
    }

    .navbar-toggler {
      border: 1px solid rgba(255, 255, 255, .3);
      color: #fff;
    }

    .navbar-toggler-icon {
      filter: invert(1);
    }

    .navbar-nav .nav-link {
      color: #093364 !important;
      font-size: .86rem;
      font-weight: 500;
      padding: .6rem .85rem !important;
      border-radius: 4px;
      transition: color .2s, background .2s;
      white-space: nowrap;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
      color: #fff !important;
      background: rgb(73 116 161);
    }

    /* Dropdown */
    .dropdown-menu {
      background: var(--db-dark);
      border: 1px solid rgba(255, 255, 255, .08);
      border-radius: var(--radius);
      padding: .4rem 0;
      min-width: 200px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, .3);
    }

    .dropdown-item {
      color: #fff;
      font-size: .83rem;
      padding: .5rem 1.1rem;
      transition: background .2s;
    }

    .dropdown-item:hover {
      background: rgba(200, 146, 42, .15);
      color: #fff;
    }

    /* Child submenu */
    .dropdown-submenu {
      position: relative;
    }

    .dropdown-submenu>.dropdown-menu {
      top: 0;
      left: 100%;
      margin-top: -4px;
      display: none;
    }

    /* show nested submenu on hover (desktop) */
    @media (min-width: 992px) {
      .dropdown-submenu:hover>.dropdown-menu {
        display: block;
      }
    }


    .dropdown-submenu>a::after {
      content: '\f054';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      font-size: .65rem;
      float: right;
      margin-top: 3px;
    }

    /* ─── SLIDER ──────────────────────────────────────────────────────────── */
    #heroCarousel {
      position: relative;
    }

    .iti-hero-slide {
      height: 580px;
      background-size: cover;
      background-position: center;
      position: relative;
      display: flex;
      align-items: center;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 650px;
          top: 130px;
        padding:30px 50px;
    }

    .hero-content::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(105deg, rgba(10, 30, 53, 0.596) 40%, rgba(10, 30, 53, 0.219) 100%);
      pointer-events: none;
      z-index: -1;
      border-radius:50px;
    }

    .hero-tag {
      display: inline-block;
      background: var(--db-gold);
      color: #fff;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      padding: .3rem .85rem;
      border-radius: 3px;
      margin-bottom: 1rem;
    }

    .hero-title {
      font-family: var(--ff-display);
      font-size: clamp(1.8rem, 5vw, 3rem);
      font-weight: 900;
      color: #fff;
      line-height: 1.15;
      margin-bottom: 1rem;
    }

    .hero-sub {
      color: #fff;
      font-size: 1rem;
      line-height: 1.65;
      margin-bottom: 1.8rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
      width: 50px;
      height: 50px;
      top: 50%;
      transform: translateY(-50%);
          background: rgb(255 255 255 / 16%);
      border-radius: 50%;
      opacity: 1;
      margin: 0 1rem;
    }

    .carousel-control-prev {
      left: 1rem;
    }

    .carousel-control-next {
      right: 1rem;
    }

    .carousel-control-prev:hover,
    .carousel-control-next:hover {
          background: #c8922a36;
    }

    .carousel-indicators [data-bs-target] {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .5);
      border: none;
    }

    .carousel-indicators .active {
      background: var(--db-gold);
    }

    /* ─── ABOUT ───────────────────────────────────────────────────────────── */
    .about-section {
      padding: 80px 0;
      background: url('../img/founder-bg.jpg') center/cover no-repeat;
      position: relative;
      isolation: isolate;
      pointer-events: auto;
      user-select: text;
      -webkit-user-select: text;
    }

    .about-section::before,
    .about-section::after {
      pointer-events: none;
    }

    .about-section>.container {
      position: relative;
      z-index: 2;
      pointer-events: auto;
    }

    .about-img-wrap {
      position: relative;
      border-radius: 10px;
      overflow: hidden;
    }

    .about-img-wrap img {
      width: 100%;
      height: 400px;
      object-fit: cover;
      display: block;
    }

    .about-badge {
      position: absolute;
      bottom: 24px;
      left: -16px;
      background: var(--db-gold);
      color: #fff;
      padding: 1rem 1.4rem;
      border-radius: var(--radius);
      box-shadow: var(--shadow-card);
      text-align: center;
    }

    .about-badge strong {
      display: block;
      font-size: 2rem;
      font-weight: 900;
      line-height: 1;
    }

    .about-badge span {
      font-size: .75rem;
      font-weight: 600;
      letter-spacing: .06em;
    }

    .about-body {
      padding: 1.5rem 0 1.5rem 2rem;
      position: relative;
      z-index: 3;
      pointer-events: auto;
      user-select: text;
      -webkit-user-select: text;
    }

    .about-body p,
    .about-body h2,
    .about-body span {
      user-select: text;
      -webkit-user-select: text;
    }

    .about-body .btn-db {
      position: relative;
      z-index: 4;
      pointer-events: auto;
    }

    .about-body p {
      color: #000;
      line-height: 1.8;
      margin-bottom: 1rem;
      font-size: .95rem;
    }

    .about-highlights {
      list-style: none;
      margin: 1.2rem 0;
    }

    .about-highlights li {
      display: flex;
      align-items: flex-start;
      gap: .7rem;
      margin-bottom: .6rem;
      font-size: .9rem;
      color: var(--db-slate);
    }

    .about-highlights li i {
      color: var(--db-gold);
      margin-top: 2px;
      flex-shrink: 0;
    }

    /* ─── DIRECTOR MESSAGE & VISION ───────────────────────────────────────── */
    .message-section {
      padding: 80px 0;
      background: linear-gradient(180deg, rgba(238, 234, 227, .95) 0%, rgba(255, 255, 255, .98) 100%);
    }

    .message-card {
      background: #fff;
      border-radius: 18px;
      box-shadow: 0 25px 60px rgba(13, 43, 78, .08);
      padding: 2rem;
      height: 100%;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .message-card-left {
      border-top: 4px solid var(--db-gold);
    }

    .message-card-right {
      border-top: 4px solid #0d2b4e;
      padding-top: 2.2rem;
    }

    .message-card-icon {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: var(--db-gold);
      color: #fff;
      display: grid;
      place-items: center;
      font-size: 1.2rem;
      box-shadow: 0 12px 30px rgba(200, 146, 42, .18);
    }

    .message-card h3 {
      font-size: 1.75rem;
      color: var(--db-navy);
      margin: 0;
      line-height: 1.2;
    }

    .message-card p {
      color: #4a5a6a;
      line-height: 1.85;
      font-size: .95rem;
    }

    .message-signature {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-top: auto;
    }

    .message-signature img {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid rgba(200, 146, 42, .3);
    }

    .message-signature strong {
      display: block;
      color: var(--db-navy);
      font-size: 1rem;
      margin-bottom: .2rem;
    }

    .message-signature span {
      display: block;
      color: #6a7a8a;
      font-size: .85rem;
    }

    .vision-item {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 1rem;
      align-items: flex-start;
      padding: 1.4rem 1.5rem;
      border-radius: 14px;
      background: #f7f4ee;
      border: 1px solid rgba(13, 43, 78, .08);
    }

    .vision-icon {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: #0d2b4e;
      color: #fff;
      display: grid;
      place-items: center;
      font-size: 1.1rem;
    }

    .vision-item h4 {
      margin: 0 0 .5rem;
      font-size: 1.1rem;
      color: var(--db-navy);
      display: flex;
      align-items: center;
      gap: .55rem;
    }

    .vision-item h4 i {
      color: var(--db-gold);
      font-size: 1rem;
    }

    .vision-item p {
      margin: 0;
      color: #4a5a6a;
      font-size: .94rem;
      line-height: 1.7;
    }

    .vision-highlight {
      border-radius: 14px;
      padding: 1.4rem 1.5rem;
      background: linear-gradient(180deg, rgba(200, 146, 42, .12) 0%, rgba(255, 255, 255, .8) 100%);
      border: 1px solid rgba(200, 146, 42, .25);
    }

    .vision-highlight h5 {
      margin: 0 0 1rem;
      color: var(--db-navy);
      font-size: 1.05rem;
    }

    .vision-highlight ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: .75rem;
    }

    .vision-highlight li {
      display: flex;
      align-items: center;
      gap: .65rem;
      color: #4a5a6a;
      font-size: .94rem;
      margin-bottom: .25rem;
    }

    .vision-highlight li i {
      color: var(--db-gold);
      font-size: .85rem;
      min-width: 20px;
      text-align: center;
    }

    /* ─── COURSES ─────────────────────────────────────────────────────────── */
    .courses-section {
      padding: 30px 0;
      background: #fff;
    }

    .courses-section-alt {
      background: var(--db-cream);
    }

    .course-card {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,0.06);
      transition: all 0.3s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 2rem 1.2rem;
      border: 1px solid rgba(13, 43, 78, 0.06);
    }

    .courses-section-alt .course-card {
      background: #fff;
    }

    .course-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 30px rgba(13, 43, 78, 0.12);
      border-color: rgba(200, 146, 42, 0.3);
    }

    .course-card-icon {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--db-navy), #1a3f6f);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 1.2rem;
      flex-shrink: 0;
      transition: all 0.3s ease;
    }

    .course-card:hover .course-card-icon {
      background: linear-gradient(135deg, var(--db-gold), var(--db-gold-lt));
      transform: scale(1.05);
    }

    .course-card-body {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      flex: 1;
    }

    .course-card h5 {
      color: var(--db-navy);
      font-size: 1rem;
      font-weight: 700;
      margin: 0;
      line-height: 1.3;
    }

    .course-duration {
      display: inline-block;
      background: rgba(200, 146, 42, 0.1);
      color: var(--db-gold);
      font-size: 0.78rem;
      font-weight: 700;
      padding: 0.3rem 0.9rem;
      border-radius: 50px;
      letter-spacing: 0.04em;
    }

    /* ─── EVENTS ──────────────────────────────────────────────────────────── */
    .events-section {
    padding: 30px 0;
    background: #fff3f1;
    }
  
    .news-card {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,0.06);
      transition: all 0.3s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .news-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 30px rgba(13, 43, 78, 0.12);
    }

    .news-card-img {
      overflow: hidden;
      position: relative;
    }

    .news-card-img img {
      width: 100%;
      height: 210px;
      object-fit: cover;
      display: block;
      transition: transform 0.45s ease;
    }

    .news-card:hover .news-card-img img {
      transform: scale(1.05);
    }

    .news-card-body {
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .news-date {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      color: var(--db-gold);
      font-size: 0.78rem;
      font-weight: 600;
      margin-bottom: 0.6rem;
    }

    .news-card h5 {
      color: var(--db-navy);
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 2px;
      line-height: 1.4;
      flex: 1;
    }

    .news-excerpt {
color: #000000;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    }

    .courses-section .news-excerpt {
    -webkit-line-clamp: 2;
    }

    .news-read-more {
      font-size: 0.85rem;
      color: var(--db-gold);
      text-decoration: none;
      font-weight: 600;
      margin-top: auto;
      align-self: flex-start;
      transition: color 0.2s;
    }

    .news-read-more:hover {
      color: var(--db-gold-lt);
      text-decoration: none;
    }

    .events-nav-btn {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 2px solid var(--db-gold);
      background: #fff;
      color: var(--db-gold);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
      cursor: pointer;
    }

    .events-nav-btn:hover {
      background: var(--db-gold);
      color: #fff;
    }

    .courses-nav-btn {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 2px solid var(--db-gold);
      background: #fff;
      color: var(--db-gold);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
      cursor: pointer;
    }

    .courses-nav-btn:hover {
      background: var(--db-gold);
      color: #fff;
    }

    /* ─── SERVICES ────────────────────────────────────────────────────────── */
    .services-section {
      padding: 30px 0;
      background: var(--db-navy);
      position: relative;
      overflow: hidden;
    }

    .services-section::before {
      content: '';
      position: absolute;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      border: 80px solid rgba(200, 146, 42, .06);
      top: -150px;
      right: -150px;
      pointer-events: none;
    }

    .services-section::after {
      content: '';
      position: absolute;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      border: 60px solid rgba(200, 146, 42, .05);
      bottom: -100px;
      left: -100px;
      pointer-events: none;
    }

    .service-orbit {
      position: relative;
    }

    .service-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 2rem 1.2rem;
      border-radius: 50%;
      width: 180px;
      height: 180px;
      border: 2px solid rgba(200, 146, 42, .3);
      background: rgba(255, 255, 255, .04);
      margin: 0 auto;
      justify-content: center;
      transition: all .3s ease;
      cursor: default;
    }

    .service-card:hover {
      background: rgba(200, 146, 42, .12);
      border-color: var(--db-gold);
      transform: scale(1.06);
      box-shadow: 0 0 40px rgba(200, 146, 42, .2);
    }

    .service-card .svc-icon {
      width: 52px;
      height: 52px;
      background: var(--db-gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      color: #fff;
      margin-bottom: .8rem;
      flex-shrink: 0;
    }

    .service-card h6 {
      color: #fff;
      font-size: .85rem;
      font-weight: 600;
      margin: 0;
      line-height: 1.3;
    }

    .service-card p {
      color: #fff;
      font-size: .72rem;
      margin-top: .3rem;
    }

    .connector-line {
      position: absolute;
      top: 50%;
      left: 50%;
      width: calc(50% - 90px);
      height: 1px;
      background: rgba(200, 146, 42, .2);
      transform-origin: left center;
    }

    .years {
      display: inline-block;
      color: #f4c542;
      font-weight: 700;
      animation: glowPulse 2s ease-in-out infinite;
    }

    @keyframes glowPulse {

      0%,
      100% {
        transform: scale(1);
        text-shadow: 0 0 5px rgba(244, 197, 66, 0.5),
          0 0 10px rgba(244, 197, 66, 0.4);
      }

      50% {
        transform: scale(1.08);
        text-shadow: 0 0 10px rgba(244, 197, 66, 0.8),
          0 0 20px rgba(244, 197, 66, 0.7),
          0 0 30px rgba(244, 197, 66, 0.6);
      }
    }

    @keyframes marquee {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    /* ─── GALLERY ─────────────────────────────────────────────────────────── */
    .gallery-section {
      padding: 30px 0;
      background: url('../img/latest-news-bg.png') center/cover no-repeat;
    }

    .gallery-list-card p,
    .gallery-album-card p {
      font-size: 15px !important;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      aspect-ratio: 4/3;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .5s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.08);
    }

    .gallery-item-overlay {
      position: absolute;
      inset: 0;
      background: rgba(13, 43, 78, .65);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity .35s;
    }

    .gallery-item:hover .gallery-item-overlay {
      opacity: 1;
    }

    .gallery-item-overlay i {
      color: #fff;
      font-size: 1.8rem;
    }

    .gallery-album-details {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: .35rem;
      color: #fff;
      text-align: center;
      padding: 1rem;
    }

    .gallery-album-details strong {
      font-family: var(--ff-display);
      font-size: 1rem;
    }

    .gallery-album-details span {
      font-size: .75rem;
      opacity: .85;
    }

    /* ─── CONTACT ─────────────────────────────────────────────────────────── */
    .contact-section {
      padding: 30px 0;
      background: #fff;
    }

    .contact-form-wrap {
      background: var(--db-mist);
      border-radius: 12px;
      padding: 2.4rem;
    }

    .contact-alert {
      padding: .8rem 1rem;
      margin-bottom: 1rem;
      border-radius: 6px;
      font-size: .88rem;
    }

    .contact-alert-success {
      color: #155724;
      background: #d4edda;
      border: 1px solid #c3e6cb;
    }

    .contact-alert-error,
    .contact-field-error {
      color: #b42318;
    }

    .contact-alert-error {
      background: #f8d7da;
      border: 1px solid #f5c6cb;
    }

    .contact-field-error {
      font-size: .78rem;
      margin-top: .35rem;
    }

    .contact-recaptcha {
      min-height: 78px;
    }

    .contact-form-wrap button:disabled {
      cursor: not-allowed;
      opacity: .7;
    }

    @media (max-width: 420px) {
      .contact-recaptcha {
        transform: scale(.86);
        transform-origin: left top;
        margin-bottom: -10px;
      }
    }

    .contact-info-wrap {
      padding-left: 2rem;
    }

    .contact-info-wrap h3 {
      font-size: 1.5rem;
      color: var(--db-navy);
      margin-bottom: 1.2rem;
    }

    .info-item {
      display: flex;
      gap: 1rem;
      margin-bottom: 1.3rem;
    }

    .info-icon {
      width: 42px;
      height: 42px;
      background: var(--db-navy);
      color: #fff;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: .95rem;
    }

    .info-item h6 {
      font-size: .8rem;
      font-weight: 700;
      color: var(--db-navy);
      margin-bottom: .15rem;
      text-transform: uppercase;
      letter-spacing: .06em;
    }

    .info-item p {
      font-size: .88rem;
      color: var(--db-slate);
      margin: 0;
    }

    .form-control,
    .form-select {
      border: 1.5px solid #d5dfe8;
      border-radius: var(--radius);
      font-size: .88rem;
      padding: .65rem .9rem;
      color: var(--db-slate);
      transition: border-color .2s;
    }

    .form-control:focus,
    .form-select:focus {
      border-color: var(--db-gold);
      box-shadow: 0 0 0 3px rgba(200, 146, 42, .15);
    }

    .form-label {
      font-size: .8rem;
      font-weight: 600;
      color: var(--db-navy);
      letter-spacing: .04em;
      margin-bottom: .35rem;
    }

    /* ─── FOOTER ──────────────────────────────────────────────────────────── */
    .footer-main {
      background: var(--db-dark);
      padding: 60px 0 30px;
    }

    .footer-brand {
      margin-bottom: 1.2rem;
    }

    .footer-brand p {
      color: #fff;
      font-size: .85rem;
      line-height: 1.8;
      margin-top: .8rem;
    }

    .footer-social a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, .15);
      color: #fff;
      text-decoration: none;
      font-size: .85rem;
      transition: all .2s;
      margin-right: .4rem;
    }

    .footer-social a:hover {
      background: var(--db-gold);
      border-color: var(--db-gold);
      color: #fff;
    }

    .footer-heading {
      color: #fff;
      font-family: var(--ff-display);
      font-size: .95rem;
      font-weight: 600;
      margin-bottom: 1.1rem;
      padding-bottom: .6rem;
      border-bottom: 2px solid var(--db-gold);
      display: inline-block;
    }

    .footer-links {
      list-style: none;
      padding-left: 0;
    }

    .footer-links li {
      margin-bottom: .5rem;
    }

    .footer-links a {
      color: #fff;
      text-decoration: none;
      font-size: .85rem;
      transition: color .2s;
      display: flex;
      align-items: center;
      gap: .5rem;
    }

    .footer-links a:hover {
      color: var(--db-gold);
    }

    .footer-links a i {
      font-size: .6rem;
    }

    .footer-contact-line {
      display: flex;
      gap: .7rem;
      margin-bottom: .7rem;
      align-items: flex-start;
    }

    .footer-contact-line i {
      color: var(--db-gold);
      font-size: .9rem;
      margin-top: 2px;
      flex-shrink: 0;
    }

    .footer-contact-line span {
      color: #fff;
      font-size: .84rem;
      line-height: 1.5;
    }

    .footer-bottom {
      background: #060f1a;
      padding: 1rem 0;
      text-align: center;
      color: #fff;
      font-size: .8rem;
    }

    .footer-bottom a {
      color: #fff;
      text-decoration: none;
    }

    .footer-bottom a:hover {
      color: var(--db-gold);
    }

    /* ─── UTILITIES ───────────────────────────────────────────────────────── */
    .bg-cream {
      background: var(--db-cream);
    }

    .text-gold {
      color: var(--db-gold);
    }

    .divider-gold {
      width: 50px;
      height: 3px;
      background: var(--db-gold);
      border-radius: 2px;
      margin: .8rem 0 1.4rem;
    }

    /* Scroll-reveal */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .6s ease, transform .6s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    /* Mobile nav override */
    @media (max-width: 991px) {
      .dropdown-submenu>.dropdown-menu {
        position: static;
        display: none;
        margin-left: 1rem;
        box-shadow: none;
      }

      .dropdown-submenu.open>.dropdown-menu {
        display: block;
      }

      /* Keep brand (logo + title) one line */
      .navbar-brand {
        gap: .5rem;
      }

      .navbar-brand img {
        width: 72px;
        height: 52px;
      }

      .brand-text strong {
        font-size: 1.35rem;
      }

      .brand-text span {
        font-size: .72em;
      }

      .brand-text {
        white-space: nowrap;
      }

      /* Make toggler and content fit in one header row */
      .navbar {
        padding-top: .25rem;
        padding-bottom: .25rem;
      }

      .navbar-toggler {
        padding: .45rem .65rem;
      }

      #mainNav .container {
        align-items: center;
      }

      .about-body {
        padding-left: 0;
        margin-top: 2rem;
      }

      .about-badge {
        left: 12px;
      }

      .contact-info-wrap {
        padding-left: 0;
        margin-top: 2rem;
      }

      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .iti-hero-slide {
        height: 480px;
      }

      .service-card {
        width: 150px;
        height: 150px;
      }
    }

    @media (max-width: 575px) {

      /* Extra tight screens */
      .navbar-brand img {
        width: 62px;
        height: 46px;
      }

      .brand-text strong {
        font-size: 1.15rem;
      }

      .brand-text span {
        font-size: .68em;
      }

      .brand-text {
        max-width: 145px;
      }

      .navbar-nav .nav-link {
        padding: .55rem .6rem !important;
      }

      .iti-hero-slide {
        height: 400px;
      }

      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .service-card {
        width: 140px;
        height: 140px;
      }
    }

    .footer-brand img {
      width: 80px
    }

    .brand-text-one strong {
      display: block;
      font-family: var(--ff-display);
      font-size: 2rem;
      font-weight: 700;
      color: #fff;
    }

    .brand-text-one span {
      font-weight: 600;
      font-size: .8em;
      color: #fff;
      letter-spacing: .06em;
      text-transform: capitalize;
    }

    .footer-bottom a:hover {
      color: #fff;
    }
     .stats-card{
        box-shadow: 0 0 10px #c1c1c1;
    border-radius: 20px;
    background-color: #fff;
    padding: 25px;
   }
