@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --navy: #0C2340;
  --navy-light: #163660;
  --blue: #0047AB;
  --blue-hover: #003685;
  --blue-light: #E8F0FE;
  --green: #00875A;
  --green-hover: #006B47;
  --green-light: #00A86B;
  --gold: #00875A;
  --gold-light: #00A86B;
  --accent-blue: #0047AB;
  --white: #ffffff;
  --grey-50: #F8F9FC;
  --grey-100: #F2F4F8;
  --grey-200: #E4E8F0;
  --grey-300: #C8CDD8;
  --text-primary: #0D1B2A;
  --text-muted: #5C6B84;
  --text-light: #8E9BAE;
  --success: #00875A;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(12, 35, 64, 0.08);
  --shadow-md: 0 8px 32px rgba(12, 35, 64, 0.12);
  --shadow-lg: 0 20px 60px rgba(12, 35, 64, 0.16);
  --shadow-gold: 0 8px 32px rgba(0, 135, 90, 0.25);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4,
h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}

p {
  line-height: 1.7;
  color: var(--text-muted);
}

/* LAYOUT */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 90px 0;
}

.section-alt {
  background: var(--grey-50);
}

.section-navy {
  background: var(--navy);
}

.section-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  margin-bottom: 16px;
  color: var(--navy);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
}

.section-header {
  margin-bottom: 56px;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-subtitle {
  margin: 0 auto;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0, 135, 90, 0.25);
}

.btn-gold:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 71, 171, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn-wa {
  background: #25D366;
  color: var(--white);
  font-weight: 600;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}

.btn-wa:hover {
  background: #1ebe5d;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-blue {
  background: #0e4a9e;
  color: var(--white);
  font-weight: 600;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(14, 74, 158, 0.25);
}

.btn-blue:hover {
  background: #093778;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 74, 158, 0.35);
}

.btn-lg {
  padding: 17px 36px;
  font-size: 1rem;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* CTA BANNER BUTTONS */
.btn-cta-navy {
  background: #0C2340;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(12, 35, 64, 0.25);
  text-decoration: none;
}

.btn-cta-navy:hover {
  background: #14355E;
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(12, 35, 64, 0.45);
}

.btn-cta-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-cta-outline:hover {
  background: #ffffff;
  color: #00875A;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* NAVBAR */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: #ffffff;
  border-bottom: 1px solid #eef2f6;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  border-radius: 0px 0px 20px 20px;
}

#navbar.scrolled {
  background: #ffffff;
  padding: 20px 0;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid #e2e8f0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links>li>a,
.nav-dropdown-toggle {
  padding: 8px 16px;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: #1e3860;
  transition: var(--transition);
}

.nav-links>li>a:hover,
.nav-links>li>a.active,
.nav-dropdown-toggle:hover,
.nav-dropdown.active .nav-dropdown-toggle {
  color: #0047AB;
  background: #f0f5ff;
}

.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: #0C2340;
  border-radius: 2px;
  transition: var(--transition);
}

/* MOBILE MENU OVERLAY & DRAWER */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 35, 64, 0.45);
  backdrop-filter: blur(4px);
  z-index: 1049;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 88vw;
  height: 100vh;
  height: 100dvh;
  background: #ffffff;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(12, 35, 64, 0.15);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-header {
  height: 70px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #edf2f7;
  background: #ffffff;
  flex-shrink: 0;
}

.mobile-menu-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.mobile-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #0C2340;
  border: none;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-close:hover {
  background: #e2e8f0;
  color: #0047AB;
}

.mobile-menu-body {
  padding: 20px;
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  color: #1e3860;
  text-decoration: none;
  transition: all 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: #f0f5ff;
  color: #0047AB;
}

.mobile-nav-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #f1f5f9;
  color: #0047AB;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.mobile-nav-link:hover .mobile-nav-icon,
.mobile-nav-link.active .mobile-nav-icon {
  background: #0047AB;
  color: #ffffff;
}

/* Services Accordion in Mobile */
.mobile-services-item {
  border-radius: 10px;
  transition: all 0.2s ease;
}

.mobile-services-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  color: #1e3860;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
}

.mobile-services-toggle:hover,
.mobile-services-item.active .mobile-services-toggle {
  background: #f0f5ff;
  color: #0047AB;
}

.mobile-services-toggle:hover .mobile-nav-icon,
.mobile-services-item.active .mobile-nav-icon {
  background: #0047AB;
  color: #ffffff;
}

.mobile-caret {
  margin-left: auto;
  font-size: 0.8rem;
  transition: transform 0.25s ease;
}

.mobile-services-sub {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 6px 0 6px 16px;
}

.mobile-services-sub.open {
  display: flex;
}

.mobile-sub-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  color: #334155;
  transition: all 0.2s ease;
}

.mobile-sub-link:hover,
.mobile-sub-link.active {
  background: #f8fafc;
  color: #0047AB;
}

.mobile-sub-link i {
  color: #0047AB;
  margin-top: 3px;
  font-size: 0.9rem;
}

.sub-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: #1e293b;
}

.sub-desc {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 2px;
}

.mobile-menu-ctas {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #edf2f7;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-mobile {
  width: 100%;
  justify-content: center;
  padding: 12px;
  font-size: 0.92rem;
  border-radius: 8px;
}

/* NAV DROPDOWN */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  user-select: none;
}

.dropdown-caret {
  font-size: 0.7rem;
  transition: transform 0.25s ease;
  display: inline-block;
}

.nav-dropdown:hover .dropdown-caret {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(11, 31, 58, 0.18);
  border: 1px solid var(--grey-200);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  transform: translateX(-50%) translateY(-8px);
  z-index: 999;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--white);
  border-left: 1px solid var(--grey-200);
  border-top: 1px solid var(--grey-200);
  rotate: 45deg;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-decoration: none;
  color: var(--text-primary);
  border-bottom: 1px solid var(--grey-100);
  margin-bottom: 4px;
}

.nav-dropdown-item:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.nav-dropdown-item:hover {
  background: var(--blue-light);
}

.nav-dropdown-item:hover .nav-dd-title,
.nav-dropdown-item:hover .nav-dd-icon {
  color: var(--blue);
}

.nav-dd-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--blue);
}

.nav-dd-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy);
  margin-bottom: 3px;
}

.nav-dd-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.nav-dd-cta {
  padding: 12px 4px 4px;
  border-top: 1px solid var(--grey-200);
  margin-top: 8px;
}

.nav-dd-cta a {
  background: var(--blue) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 14px rgba(0, 71, 171, 0.3) !important;
  transition: all 0.3s ease !important;
}

.nav-dd-cta a:hover {
  background: var(--blue-hover) !important;
  color: var(--white) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(0, 71, 171, 0.45) !important;
}

/* CARDS */
.card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(12, 35, 64, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1.5px solid var(--grey-200);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 71, 171, 0.14);
  border-color: var(--blue);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 20px;
  background: var(--blue);
  color: var(--white);
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 71, 171, 0.22);
}

.card:hover .card-icon {
  background: var(--blue-hover);
  color: var(--white);
  transform: scale(1.06);
  box-shadow: 0 6px 20px rgba(0, 71, 171, 0.35);
}

.card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* GLASS CARD */
.glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
}

/* BADGE */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

.badge-gold {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold);
}

.badge-green {
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
}

.badge-navy {
  background: rgba(11, 31, 58, 0.1);
  color: var(--navy);
}

/* STAR RATING */
.stars {
  color: #FFC107;
  font-size: 1rem;
  letter-spacing: 2px;
}

/* DIVIDER */
.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 16px 0 24px;
}

.center .divider {
  margin: 16px auto 24px;
}

/* GRID HELPERS */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* FLOATING WA BUTTON */
#wa-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 900;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  cursor: pointer;
}

#wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5);
}

#wa-float svg {
  width: 30px;
  height: 30px;
  fill: white;
}

#wa-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  animation: wa-pulse 2s infinite;
  opacity: 0.6;
}

@keyframes wa-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: .6
  }

  50% {
    transform: scale(1.4);
    opacity: 0
  }
}

/* SCROLL TO TOP */
#scroll-top {
  position: fixed;
  bottom: 100px;
  right: 32px;
  z-index: 900;
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
}

#scroll-top.show {
  opacity: 1;
  pointer-events: all;
}

#scroll-top:hover {
  background: var(--navy-light);
  transform: translateY(-3px);
}

#scroll-top svg {
  width: 18px;
  height: 18px;
  stroke: white;
  fill: none;
}

/* FOOTER */
footer {
  background: #FFF;
  color: rgb(22, 66, 149);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin: 16px 0 24px;
}

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

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgb(1, 61, 142);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: #fff;
  font-size: 0.9rem;
}

.footer-social a:hover {
  background: #00875A;
  color: #fff;
}

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0d8752;
  margin-bottom: 20px;
}

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

.footer-col ul li a {
  font-size: 0.875rem;
  transition: var(--transition);
}

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

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 0.875rem;
}

.footer-contact-item .icon {
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.825rem;
}

/* PAGE HERO (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 100%);
  padding: 140px 0 80px;
  color: var(--white);
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  max-width: 600px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

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

.breadcrumb-sep {
  opacity: 0.4;
}

/* FORM */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 6px;
  font-family: 'Poppins', sans-serif;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

.form-control::placeholder {
  color: var(--text-light);
}

select.form-control {
  cursor: pointer;
}

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

/* TAG */
.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--grey-100);
  color: var(--text-muted);
}

/* Responsive rules are in css/responsive.css */