
    :root {
      --navy:   #0b1e3d;
      --navy2:  #112347;
      --gold:   #c9a84c;
      --gold2:  #e4c675;
      --cream:  #f5f0e8;
      --white:  #ffffff;
      --muted:  #6c7a8d;
      --body-bg:#f7f5f1;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

    body {
      font-family: 'Jost', sans-serif;
      background: var(--body-bg);
      color: var(--navy);
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5 {
      font-family: 'Cormorant Garamond', serif;
    }

    /* ===== NAVBAR ===== */
    .navbar-custom {
      background: #fff;
      padding: 0.9rem 0;
      position: sticky;
      top: 0;
      z-index: 999;
      border-bottom: 2px solid var(--gold);
      box-shadow: 0 4px 24px rgba(0,0,0,0.25);
    }
    .navbar-brand-wrap img {
        max-width: 130px;
    }
    .navbar-brand-wrap {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .brand-icon {
      width: 42px;
      height: 42px;
      background: linear-gradient(135deg, var(--gold), var(--gold2));
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .brand-icon svg { width: 24px; height: 24px; }

    .brand-text-main {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.45rem;
      font-weight: 700;
      color: var(--white);
      letter-spacing: 0.02em;
      line-height: 1.1;
    }

    .brand-text-sub {
      font-family: 'Jost', sans-serif;
      font-size: 0.62rem;
      font-weight: 400;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .nav-link-custom {
      font-family: 'Jost', sans-serif;
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #000 !important;
      padding: 0.5rem 1.1rem !important;
      position: relative;
      transition: color 0.25s;
    }

    .nav-link-custom::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 2px;
      background: var(--gold);
      transition: width 0.3s ease;
    }

    .nav-link-custom:hover,
    .nav-link-custom.active {
      color: var(--gold) !important;
    }

    .nav-link-custom:hover::after,
    .nav-link-custom.active::after {
      width: 60%;
    }

    .navbar-toggler {
      border-color: var(--gold) !important;
    }

    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28201%2C168%2C76%2C1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }

    /* ===== PAGE SECTIONS ===== */
    .page-section { animation: fadeSlide 0.5s ease forwards; }
    .page-section.active { display: block; }

    @keyframes fadeSlide {
      from { opacity: 0; transform: translateY(18px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ===== HOME - HERO ===== */
    .hero {
      min-height: 90vh;
      background:
        linear-gradient(160deg, rgba(11,30,61,0.91) 0%, rgba(11,30,61,0.72) 60%, rgba(11,30,61,0.55) 100%),
        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1600&q=80') center/cover no-repeat;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 80px,
        rgba(201,168,76,0.04) 80px,
        rgba(201,168,76,0.04) 81px
      );
    }

    .hero-badge {
      display: inline-block;
      background: rgba(201,168,76,0.15);
      border: 1px solid rgba(201,168,76,0.5);
      color: var(--gold2);
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      padding: 0.45rem 1.2rem;
      border-radius: 2px;
      margin-bottom: 1.8rem;
    }

    .hero-title {
      font-size: clamp(2.8rem, 6vw, 5.2rem);
      font-weight: 600;
      color: var(--white);
      line-height: 1.08;
      margin-bottom: 1.4rem;
    }

    .hero-title span {
      color: var(--gold);
      font-style: italic;
    }

    .hero-subtitle {
      font-size: 1.05rem;
      font-weight: 300;
      color: rgba(255,255,255,0.75);
      max-width: 520px;
      line-height: 1.75;
      margin-bottom: 2.8rem;
    }

    .btn-gold {
      background: linear-gradient(135deg, var(--gold), var(--gold2));
      color: var(--navy);
      font-family: 'Jost', sans-serif;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      border: none;
      padding: 0.85rem 2.2rem;
      border-radius: 2px;
      transition: all 0.3s ease;
      box-shadow: 0 6px 24px rgba(201,168,76,0.3);
      text-decoration: none;
      display: inline-block;
    }

    .btn-gold:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(201,168,76,0.45);
      color: var(--navy);
      background: linear-gradient(135deg, var(--gold2), var(--gold));
    }

    .btn-outline-gold {
      background: transparent;
      color: var(--white);
      font-family: 'Jost', sans-serif;
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      border: 1.5px solid rgba(255,255,255,0.5);
      padding: 0.83rem 2.2rem;
      border-radius: 2px;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
    }

    .btn-outline-gold:hover {
      border-color: var(--gold);
      color: var(--gold);
      background: rgba(201,168,76,0.08);
    }

    .hero-stat {
      text-align: center;
      padding: 1.4rem 2rem;
      border-left: 1px solid rgba(255,255,255,0.12);
    }

    .hero-stat:first-child { border-left: none; }

    .hero-stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.6rem;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
    }

    .hero-stat-label {
      font-size: 0.72rem;
      font-weight: 400;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
      margin-top: 0.3rem;
    }

    .hero-stats-row {
      margin-top: 3.5rem;
      padding-top: 2.5rem;
      border-top: 1px solid rgba(255,255,255,0.1);
      display: flex;
      flex-wrap: wrap;
    }

    /* ===== SECTION TITLES ===== */
    .section-label {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.8rem;
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 600;
      color: var(--navy);
      line-height: 1.15;
    }

    .section-title span { color: var(--gold); font-style: italic; }

    .title-underline {
      width: 52px;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--gold2));
      margin: 1.2rem 0 1.8rem 0;
      border-radius: 2px;
    }

    .title-underline.center { margin-left: auto; margin-right: auto; }

    /* ===== SERVICES SECTION ===== */
    .services-section {
      background: var(--white);
      padding: 6rem 0;
    }

    .service-card {
      border: 1px solid rgba(11,30,61,0.1);
      border-top: 3px solid var(--gold);
      padding: 2.2rem 1.8rem;
      border-radius: 4px;
      background: var(--white);
      transition: all 0.35s ease;
      height: 100%;
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 48px rgba(11,30,61,0.1);
      border-top-color: var(--navy);
    }

    .service-icon {
      width: 52px;
      height: 52px;
      background: linear-gradient(135deg, var(--navy), var(--navy2));
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: 1.4rem;
      margin-bottom: 1.4rem;
    }

    .service-card h5 {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 0.8rem;
    }

    .service-card p {
      font-size: 0.9rem;
      line-height: 1.75;
      color: var(--muted);
    }

    /* ===== WHY CHOOSE US ===== */
    .why-section {
      padding: 6rem 0;
      background: var(--cream);
    }

    .why-img-wrap {
      position: relative;
    }

    .why-img-wrap img {
      border-radius: 6px;
      width: 100%;
      height: 460px;
      object-fit: cover;
    }

    .why-img-badge {
      position: absolute;
      bottom: -24px;
      right: -24px;
      background: var(--navy);
      border: 2px solid var(--gold);
      color: var(--white);
      padding: 1.6rem 2rem;
      border-radius: 4px;
      text-align: center;
      min-width: 160px;
    }

    .why-img-badge .num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3rem;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
    }

    .why-img-badge .txt {
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.7);
      margin-top: 0.3rem;
    }

    .why-list-item {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      margin-bottom: 1.6rem;
    }

    .why-check {
      width: 36px;
      height: 36px;
      flex-shrink: 0;
      background: rgba(201,168,76,0.12);
      border: 1.5px solid var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: 0.9rem;
      margin-top: 2px;
    }

    .why-item-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 0.25rem;
    }

    .why-item-desc {
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.7;
    }

    /* ===== TESTIMONIALS ===== */
    .testimonials-section {
      background: var(--navy);
      padding: 6rem 0;
      position: relative;
      overflow: hidden;
    }

    .testimonials-section::before {
      content: '"';
      position: absolute;
      top: -40px;
      left: 5%;
      font-family: 'Cormorant Garamond', serif;
      font-size: 28rem;
      color: rgba(201,168,76,0.05);
      line-height: 1;
      pointer-events: none;
    }

    .testimonial-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-left: 3px solid var(--gold);
      padding: 2.2rem;
      border-radius: 4px;
      height: 100%;
    }

    .testimonial-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem;
      font-style: italic;
      color: rgba(255,255,255,0.85);
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .author-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold), var(--gold2));
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--navy);
    }

    .author-name {
      font-weight: 600;
      color: var(--white);
      font-size: 0.9rem;
    }

    .author-role {
      font-size: 0.76rem;
      color: var(--gold);
      letter-spacing: 0.1em;
    }

    .stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 1rem; }

    /* ===== CTA STRIP ===== */
    .cta-strip {
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
      padding: 4rem 0;
    }

    .cta-strip h2 {
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 700;
      color: var(--navy);
    }

    .cta-strip p {
      color: rgba(11,30,61,0.72);
      font-size: 0.95rem;
    }

    .btn-navy {
      background: var(--navy);
      color: var(--white);
      font-family: 'Jost', sans-serif;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      border: none;
      padding: 0.85rem 2.2rem;
      border-radius: 2px;
      transition: all 0.3s;
      text-decoration: none;
      display: inline-block;
    }

    .btn-navy:hover {
      background: #061224;
      color: var(--gold);
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(0,0,0,0.25);
    }

    /* ===== ABOUT PAGE ===== */
    .about-hero {
      background:
        linear-gradient(160deg, rgba(11,30,61,0.93) 0%, rgba(11,30,61,0.78) 100%),
        url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600&q=80') center/cover no-repeat;
      padding: 6rem 0;
      text-align: center;
    }

    .about-hero h1 {
      font-size: clamp(2.4rem, 5vw, 4rem);
      color: var(--white);
      font-weight: 600;
      margin-bottom: 1rem;
    }

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

    .about-hero p {
      color: rgba(255,255,255,0.72);
      font-size: 1rem;
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.8;
    }

    .about-breadcrumb {
      color: rgba(255,255,255,0.5);
      font-size: 0.78rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 1.4rem;
    }

    .about-breadcrumb span { color: var(--gold); }

    .mission-section { padding: 6rem 0; background: var(--white); }

    .mission-card {
      padding: 2.8rem 2.2rem;
      border: 1px solid rgba(11,30,61,0.1);
      border-radius: 4px;
      height: 100%;
      text-align: center;
      transition: all 0.3s;
    }

    .mission-card:hover {
      border-color: var(--gold);
      box-shadow: 0 16px 40px rgba(201,168,76,0.1);
    }

    .mission-icon-wrap {
      width: 68px;
      height: 68px;
      background: linear-gradient(135deg, var(--navy), var(--navy2));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: 1.6rem;
      margin: 0 auto 1.4rem;
      border: 3px solid var(--gold);
    }

    .mission-card h4 {
      font-size: 1.4rem;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 0.8rem;
    }

    .mission-card p {
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.75;
    }

    /* TEAM */
    .team-section { padding: 6rem 0; background: var(--cream); }

    .team-card {
      background: var(--white);
      border-radius: 6px;
      overflow: hidden;
      transition: all 0.35s;
      height: 100%;
      box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    }

    .team-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 48px rgba(11,30,61,0.12);
    }

    .team-img {
      width: 100%;
      height: 240px;
      object-fit: cover;
    }

    .team-img-placeholder {
      width: 100%;
      height: 240px;
      background: linear-gradient(135deg, var(--navy), var(--navy2));
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 4rem;
      font-weight: 700;
      color: rgba(201,168,76,0.4);
    }

    .team-body { padding: 1.6rem; }

    .team-name {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 0.25rem;
    }

    .team-role {
      font-size: 0.76rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 500;
      margin-bottom: 0.8rem;
    }

    .team-desc { font-size: 0.86rem; color: var(--muted); line-height: 1.7; }

    .team-socials { margin-top: 1.2rem; display: flex; gap: 0.6rem; }

    .social-btn {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(11,30,61,0.07);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--navy);
      font-size: 0.85rem;
      text-decoration: none;
      transition: all 0.25s;
    }

    .social-btn:hover {
      background: var(--navy);
      color: var(--gold);
    }

    /* VALUES */
    .values-section { padding: 6rem 0; background: var(--navy); }

    .value-item {
      padding: 0.5rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      display: flex;
      align-items: flex-start;
      gap: 1.2rem;
      margin-bottom: 1.4rem;
    }

    .value-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      font-weight: 700;
      color: rgba(201,168,76,0.35);
      line-height: 1;
      min-width: 44px;
    }

    .value-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 0.3rem;
    }

    .value-desc { font-size: 0.86rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

    /* ===== CONTACT PAGE ===== */
    .contact-hero {
      background:
        linear-gradient(160deg, rgba(11,30,61,0.93) 0%, rgba(11,30,61,0.8) 100%),
        url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?w=1600&q=80') center/cover no-repeat;
      padding: 6rem 0;
      text-align: center;
    }

    .contact-hero h1 {
      font-size: clamp(2.4rem, 5vw, 4rem);
      color: var(--white);
      font-weight: 600;
      margin-bottom: 1rem;
    }

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

    .contact-hero p { color: rgba(255,255,255,0.72); font-size: 1rem; max-width: 500px; margin: 0 auto; line-height: 1.8; }

    .contact-section { padding: 6rem 0; background: var(--body-bg); }

    /* FORM */
    .contact-form-wrap {
      background: var(--white);
      border-radius: 6px;
      padding: 3rem;
      box-shadow: 0 8px 40px rgba(11,30,61,0.09);
      border-top: 3px solid var(--gold);
    }

    .form-label-custom {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--navy);
      margin-bottom: 0.5rem;
    }

    .form-control-custom {
      border: 1.5px solid rgba(11,30,61,0.15);
      border-radius: 3px;
      padding: 0.75rem 1rem;
      font-size: 0.9rem;
      font-family: 'Jost', sans-serif;
      color: var(--navy);
      background: var(--body-bg);
      transition: all 0.25s;
    }

    .form-control-custom:focus {
      border-color: var(--gold);
      background: var(--white);
      box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
      outline: none;
    }

    .form-control-custom::placeholder { color: rgba(11,30,61,0.35); }

    textarea.form-control-custom { resize: vertical; min-height: 140px; }

    /* INFO CARDS */
    .info-card {
      background: var(--white);
      border-radius: 6px;
      padding: 1.8rem;
      display: flex;
      align-items: flex-start;
      gap: 1.2rem;
      margin-bottom: 1.2rem;
      box-shadow: 0 4px 16px rgba(0,0,0,0.06);
      transition: all 0.3s;
    }

    .info-card:hover {
      transform: translateX(4px);
      box-shadow: 0 8px 28px rgba(11,30,61,0.1);
    }

    .info-icon {
      width: 46px;
      height: 46px;
      flex-shrink: 0;
      background: linear-gradient(135deg, var(--navy), var(--navy2));
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: 1.1rem;
    }

    .info-label {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.25rem;
    }

    .info-value {
      font-size: 0.9rem;
      color: var(--navy);
      font-weight: 500;
    }

    .info-value a { color: var(--navy); text-decoration: none; transition: color 0.2s; }
    .info-value a:hover { color: var(--gold); }

    .map-wrap {
      border-radius: 6px;
      overflow: hidden;
      height: 260px;
      background: linear-gradient(135deg, var(--navy), var(--navy2));
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(11,30,61,0.1);
      margin-top: 1.4rem;
    }

    .map-placeholder {
      text-align: center;
      color: rgba(255,255,255,0.5);
    }

    .map-placeholder i { font-size: 2.5rem; color: var(--gold); margin-bottom: 0.8rem; }

    .map-placeholder p { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; }

    /* FORM RESPONSE */
    .form-success {
      display: none;
      background: rgba(25,135,84,0.1);
      border: 1px solid #198754;
      border-radius: 4px;
      padding: 1rem 1.4rem;
      color: #198754;
      font-size: 0.88rem;
      margin-top: 1rem;
    }

    /* ===== FOOTER ===== */
    footer {
      background: #060f1e;
      border-top: 2px solid var(--gold);
      padding: 4rem 0 2rem;
    }

    .footer-brand {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 0.5rem;
    }

    .footer-brand span { color: var(--gold); }

    .footer-desc {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.45);
      line-height: 1.8;
      max-width: 280px;
    }

    .footer-title {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.2rem;
    }

    .footer-link {
      display: block;
      font-size: 0.87rem;
      color: rgba(255,255,255,0.5);
      text-decoration: none;
      margin-bottom: 0.6rem;
      transition: color 0.22s;
    }

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

    .footer-divider {
      border-color: rgba(255,255,255,0.08);
      margin: 2rem 0 1.5rem;
    }

    .footer-bottom {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.3);
    }

    .footer-socials { display: flex; gap: 0.7rem; margin-top: 1.4rem; }

    .footer-social {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.5);
      font-size: 0.9rem;
      text-decoration: none;
      transition: all 0.25s;
    }

    .footer-social:hover {
      border-color: var(--gold);
      color: var(--gold);
      background: rgba(201,168,76,0.1);
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      .why-img-badge { right: 0; bottom: -16px; }
      .contact-form-wrap { padding: 2rem 1.5rem; }
    }

    /* ANIMATE ON ENTER */
    .anim-up { opacity: 0; transform: translateY(28px); transition: opacity 0.55s ease, transform 0.55s ease; }
    .anim-up.visible { opacity: 1; transform: translateY(0); }

    .delay-1 { transition-delay: 0.1s; }
    .delay-2 { transition-delay: 0.2s; }
    .delay-3 { transition-delay: 0.3s; }
