:root {
    --primary-blue: #1e3a8a;
    --secondary-blue: #2563eb;
    --golden-yellow: #f59e0b;
    --light-yellow: #fbbf24;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
}

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

body {
    font-family: "Inter", "Roboto", "Kantumruy Pro", sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* ========================================
   MODERN NAVBAR WITH LOGO + TEXT
   ======================================== */

.navbar,
.navbar.scrolled {
  padding: 0.5rem 0 !important;             /* keep base padding */
}

.navbar {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%) !important;
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px rgba(30, 58, 138, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar.scrolled {
     padding: 0.15rem 0;
}


/* Logo Container with Text */
.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    transition: all 0.3s ease;
    text-decoration: none;
}
/* White Background Container for Logo */
.navbar-brand-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.98);
    padding: 0.5rem 1.5rem 0.5rem 1rem;
    border-radius: 50px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(245, 158, 11, 0.15);
    border: 2px solid rgba(245, 158, 11, 0.3);
    transition: all 0.3s ease;
}

.navbar-brand:hover .navbar-brand-container {
    transform: translateY(-2px);
    border-color: var(--golden-yellow);
    box-shadow: 0 10px 35px rgba(245, 158, 11, 0.25);
}

/* Logo Image - Bigger */
.navbar-brand img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
}
/* Brand Text */
/* Brand Text Container */
.navbar-brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.1rem;
    line-height: 1;
}

/* Company Name - Enhanced */
.navbar-brand-text .brand-name {
    font-family: 'Inter', sans-serif;
    font-size: 2.35rem;
    font-weight: 800;
    color: #1e3a8a;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin: 0;
    padding-left: 1px;
}
/* Tagline - Enhanced */
.navbar-brand-text .brand-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    color: #f59e0b;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    margin: 0;
    padding: 0;
    line-height: 1;
}


.navbar-brand-text .brand-tagline::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--golden-yellow);
    transition: width 0.3s ease;
}

.navbar.scrolled .navbar-brand-container {
  padding: 0.5rem 1.5rem 0.5rem 1rem !important;
  border-width: 2px !important;
  gap: 1rem !important;
}

.navbar.scrolled .navbar-brand img {
  height: 60px !important;
}
.navbar.scrolled .navbar-brand-text .brand-name {
  font-size: 2.35rem !important;
  letter-spacing: -0.5px !important;
}

.navbar.scrolled .navbar-nav .nav-link {
  padding-top: 0.65rem !important;
  padding-bottom: 0.65rem !important;
}
.navbar.scrolled .language-switcher .dropdown-toggle {
  padding: 0.5rem 1rem !important;
  border-radius: 25px !important;
}
.navbar.scrolled .navbar-brand-text .brand-tagline {
  font-size: 0.65rem !important;
}
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Navigation Links */
.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.65rem 1.1rem !important;
    margin: 0;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.navbar-nav .nav-link i {
    font-size: 0.9rem;
}

.navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--golden-yellow);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 50%;
}


.navbar-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Dropdown Menu */
.dropdown-menu {
    background: var(--white);
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 0.75rem 0;
    margin-top: 0.5rem;
    min-width: 280px;
}

.dropdown-item {
    color: var(--text-dark);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.1) 0%, transparent 100%);
    color: var(--primary-blue);
    border-left-color: var(--golden-yellow);
    transform: translateX(5px);
}

.dropdown-item i {
    color: var(--golden-yellow);
    margin-right: 0.5rem;
    width: 20px;
}

.dropdown-divider {
    border-top: 1px solid rgba(245, 158, 11, 0.2);
}

/* Language Switcher - Better Alignment */
.language-switcher .dropdown-toggle {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid var(--golden-yellow);
    color: var(--white) !important;
    padding: 0.5rem 1rem !important;
    border-radius: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.language-switcher .dropdown-toggle:hover {
    background: var(--golden-yellow);
    color: var(--primary-blue) !important;
}
.language-switcher .dropdown-toggle::after {
    border-top-color: var(--golden-yellow);
}

/* Mobile Toggle */
.navbar-toggler {
    border: 2px solid var(--golden-yellow);
    padding: 0.5rem 0.75rem;
}

.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(251, 191, 36, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
    position: relative;
    height: 650px;
    overflow: hidden;
}

.slide-content {
    height: 650px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.slide-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(37, 99, 235, 0.7) 100%);
}

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

.slide-content h1 {
    color: var(--white);
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
}

.slide-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-hero {
    background: var(--golden-yellow);
    color: var(--primary-blue);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background: var(--light-yellow);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.5);
    color: var(--primary-blue);
}

/* Swiper Customization */
.swiper-button-next,
.swiper-button-prev {
    background: rgba(245, 158, 11, 0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--white) !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.5rem;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--white);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--golden-yellow);
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
    padding: 5rem 0;
}

.section-title {
    color: var(--primary-blue);
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--golden-yellow), var(--light-yellow));
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Service Cards */
.service-card {
    padding: 2.5rem;
    border-radius: 20px;
    background: var(--white);
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--golden-yellow));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.2);
    border-color: var(--golden-yellow);
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--golden-yellow), var(--light-yellow));
    transform: rotateY(360deg);
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.service-card:hover .service-icon i {
    color: var(--primary-blue);
}

.service-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.service-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.btn-outline-primary {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

/* ========================================
   PAGE HEADER
   ======================================== */

.page-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.page-header h1 {
    color: var(--white);
    font-weight: 800;
}

.breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--golden-yellow);
}

.breadcrumb-item.active {
    color: var(--golden-yellow);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   BUTTONS
   ======================================== */

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.4);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a2e5a 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--golden-yellow), var(--light-yellow));
}

.footer h5 {
    color: var(--golden-yellow);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    padding: 0.25rem 0;
}

.footer a:hover {
    color: var(--golden-yellow);
    padding-left: 5px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-links a:hover {
    background: var(--golden-yellow);
    color: var(--primary-blue) !important;
    border-color: var(--golden-yellow);
    transform: translateY(-3px);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 991px) {
    .navbar-brand-container {
          padding: 0.45rem 1.2rem 0.45rem 0.9rem;
     }

     .navbar-brand img {
          height: 40px;
          border-radius: 100px;
     }

     /* Hide brand text on <= 991px */
     .navbar-brand-text {
          display: none !important;
          visibility: hidden !important;
          width: 0 !important;
          height: 0 !important;
          overflow: hidden !important;
     }

     .navbar-brand-text .brand-name {
          font-size: 1.15rem;
     }

     .navbar-brand-text .brand-tagline {
          font-size: 0.6rem;
          letter-spacing: 1.5px;
     }

     .navbar-nav {
          padding: 1rem 0;
          gap: 0;
     }

     .navbar-nav .nav-link {
          padding: 0.7rem 1rem !important;
     }

     .navbar-nav .nav-link::before {
          display: none;
     }

     .hero-section,
     .slide-content {
          height: 500px;
     }
}

@media (max-width: 768px) {
    .navbar-brand-container {
        padding: 0.4rem 1rem 0.4rem 0.7rem;
        gap: 0.8rem;
    }

    .navbar-brand img {
        height: 45px;
    }

    .navbar-brand-text .brand-name {
        font-size: 1rem;
    }

    .navbar-brand-text .brand-tagline {
        font-size: 0.55rem;
    }

    .hero-section,
    .slide-content {
        height: 400px;
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand-container {
        padding: 0.35rem 0.9rem 0.35rem 0.6rem;
    }

    .navbar-brand img {
        height: 40px;
    }

    .navbar-brand-text .brand-name {
        font-size: 1rem;
    }

    .navbar-brand-text .brand-tagline {
        display: none;
    }
}

/* ========================================
   LOADING ANIMATION
   ======================================== */

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader-logo {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* ========================================
   SCROLL TO TOP BUTTON
   ======================================== */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(30, 58, 138, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--golden-yellow);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

/* Job card CTA sizing */
.job-card .btn {
    border-radius: 28px;
    padding: 0.55rem 1.1rem;
    font-weight: 600;
    line-height: 1.1;
}

/* Specific: View Details button */
.job-card .btn-outline-primary {
    border-width: 2px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

/* Icon nudge if you use an arrow */
.job-card .btn-outline-primary i {
    font-size: 0.9rem;
}

/* Mobile tweaks */
@media (max-width: 576px) {
    .job-card .btn-outline-primary {
        padding: 0.45rem 0.9rem;      /* smaller padding */
        font-size: 0.9rem;            /* smaller text */
        border-radius: 24px;
    }

    .job-card .card-body .d-flex.justify-content-between {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    /* Keep button and posted date on one line if possible */
    .job-card .card-body .d-flex.justify-content-between .btn {
        flex: 0 0 auto;
    }

    .job-card .card-body .d-flex.justify-content-between small {
        flex: 0 0 auto;
        white-space: nowrap;
    }
}

/* Extra small screens */
@media (max-width: 380px) {
    .job-card .btn-outline-primary {
        padding: 0.4rem 0.75rem;
        font-size: 0.85rem;
    }
}


/* Small icon badge at top */
.service-icon-badge{
  width: 56px; height: 56px; border-radius: 16px;
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
}
.service-icon-badge i{ color:#fff; font-size:1.4rem; }

/* Square 1:1 poster container */
.service-poster-hero{
  position: relative;
  width: 100%;
  padding-top: 100%;        /* 1:1 aspect ratio */
  overflow: hidden;
  border-radius: 16px;
}
.service-poster-hero img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: transform .35s ease, box-shadow .35s ease;
}
.service-card:hover .service-poster-hero img{
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
}

.service-card:hover .service-poster-hero img{
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0,0,0,.15);
}

/* Card polish to match sample look */
.service-card{
  padding: 1.25rem 1.25rem 2rem;
  border-radius: 22px;
  border: 2px solid transparent;
  box-shadow: 0 8px 28px rgba(0,0,0,.06);
  background: #fff;
}
.service-card:hover{
  border-color: var(--light-yellow);
  box-shadow: 0 10px 38px rgba(0,0,0,.10);
}
.service-title{ color: var(--primary-blue); font-weight: 800; margin-top: .5rem; }
.service-description{ color: var(--text-light); margin: .5rem 0 1.1rem; }

/* Bigger service cards and posters */
.service-card-lg {
  padding: 1.5rem 1.5rem 2rem;
  border-radius: 24px;
  max-width: 420px;            /* keeps cards visually bold without over-stretch */
  margin-inline: auto;
}

.service-poster-lg {
  padding-top: 90% !important; /* taller 1:1.11 look for prominence (was 100%) */
  border-radius: 18px;
}

.service-poster-lg img {
  border-radius: 18px;
}

/* Typography scale up slightly */
.service-card-lg .service-title {
  font-size: 1.5rem;           /* was 1.35rem */
  margin-top: .6rem;
}

.service-card-lg .service-description {
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: 36ch;             /* improve readability on larger cards */
  margin-inline: auto;
}

/* On very large screens, keep 3-per-row and center grid */
@media (min-width: 1200px) {
  .services-section .row.g-4 {
    justify-content: center;
  }
}

/* On tablets, keep 2-per-row and larger poster */
@media (max-width: 991.98px) {
  .service-card-lg { max-width: 520px; }
  .service-poster-lg { padding-top: 95% !important; }
}

/* On mobile, single column but still bold */
@media (max-width: 575.98px) {
  .service-card-lg { max-width: 100%; }
  .service-poster-lg { padding-top: 100% !important; }
}

/* Poster placeholder */
.service-poster-lg {
  position: relative;
  width: 100%;
  padding-top: 62.5%; /* 16:10 aspect */
  overflow: hidden;
  background: #f8fafc; /* subtle */
}

.service-poster-lg .placeholder-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb; /* primary */
  /* Base size for desktop */
  font-size: 84px;
}

/* Make it larger on big screens, smaller on phones */
@media (min-width: 1200px) {
  .service-poster-lg .placeholder-icon { font-size: 96px; }
}
@media (max-width: 767.98px) {
  .service-poster-lg .placeholder-icon { font-size: 72px; }
}
@media (max-width: 575.98px) {
  .service-poster-lg .placeholder-icon { font-size: 60px; }
}
/* Base styling for the hero tagline (desktop + tablet) */
.hero-section .hero-tagline {
    display: inline-block;
    margin-top: 0.4rem;
    margin-bottom: 0;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.28);
    color: rgba(255,255,255,0.96);
    font-size: 0.95rem;
    line-height: 1.35;
    max-width: 20rem;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0,0,0,0.45);
    backdrop-filter: blur(2px);
}

/* Mobile: reduce padding/margins so stack is tight but readable */
@media (max-width: 576px) {

    .hero-section .slide-content {
        padding: 5.2rem 3.8rem 4.4rem;     /* more breathing space left/right */
    }

    .hero-section .slide-content h1 {
        margin-bottom: 0.55rem;           /* closer to button */
    }

    .hero-section .btn-hero {
        padding: 0.55rem 1.5rem;
        font-size: 0.95rem;
        border-radius: 999px;
        margin-top: 0.1rem;
        margin-bottom: 0.25rem;           /* small gap before tagline */
    }

    .hero-section .hero-tagline {
        font-size: 0.85rem;
        line-height: 1.3;
        max-width: 16rem;
        padding: 0.25rem 0.8rem;
        margin-top: 0.2rem;
        margin-bottom: 0.2rem;            /* no big empty space under text */
    }
}
