/* =========================
   GOOGLE FONT
========================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* =========================
   ROOT VARIABLES
========================= */
:root {
  --font-primary: "Poppins", sans-serif;

  /* Brand Colors */
  --color-primary: #1D304B;
  --color-secondary: #717880;
  --color-accent: #E9B470;

  --color-white: #ffffff;
  --color-black: #000000;

  /* Font Weights */
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 50px;
}

/* =========================
   BASE STYLES
========================= */
body {
  font-family: var(--font-primary);
  margin: 0;
  padding: 0;
  color: var(--color-secondary);
}

/* =========================
   SECTION SPACING SYSTEM
========================= */
.section-sm {
  padding: 50px 0;
}

.section-md {
  padding: 80px 0;
}

.section-lg {
  padding: 60px 0;
}

/* Extra gap if needed */
.section-gap {
  margin-bottom: 30px;
}

/* =========================
   TOP BAR
========================= */
.top-bar {
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 14px;
  padding: 8px 0;
}

.top-bar i {
  margin-right: 6px;
}

.top-right i {
  margin-left: 15px;
  cursor: pointer;
}

/* =========================
   NAVBAR
========================= */
.navbar {
  position: absolute;
  width: 100%;
  z-index: 10;
}

.logo {
  width: 135px;
}

/* ================= NAV LINK UNDERLINE ================= */
.nav-link {
  position: relative;
  color: var(--color-primary);
  font-weight: var(--font-bold);
  margin: 0 10px;
  padding-bottom: 6px;
}

/* Underline */
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #E9B470 100%, #83653F 40%);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* Hover */
.nav-link:hover::after {
  width: 100%;
}

/* Active link */
.nav-link.active::after {
  width: 100%;
}


.btn-quote {
  border: 2px solid var(--color-white);
  border-radius: var(--radius-lg);
  padding: 6px 18px;
  color: var(--color-white);
  font-weight: var(--font-semibold);
  background: transparent;
}

.btn-quote:hover {
  background: var(--color-primary);
  color: var(--color-white);
}


.navbar-nav .nav-item {
  opacity: 0;
  transform: translateY(-10px);
  animation: navItemFade 0.6s ease-out forwards;
}

.navbar-nav .nav-item:nth-child(1) {
  animation-delay: 0.3s;
}

.navbar-nav .nav-item:nth-child(2) {
  animation-delay: 0.4s;
}

.navbar-nav .nav-item:nth-child(3) {
  animation-delay: 0.5s;
}

.navbar-nav .nav-item:nth-child(4) {
  animation-delay: 0.6s;
}

@keyframes navItemFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   HERO SECTION
========================= */
.hero-section {
  position: relative;

  overflow: hidden;
}

.hero-cont {
  margin-top: 85px;
}

/* Slide wrapper */
.hero-slide {
  position: relative;
  height: 95vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-repeat: no-repeat;
}

/* Render hero image on a pseudo-element to avoid border flicker during zoom */
.hero-slide::before {
  content: "";
  position: absolute;
  inset: -6px;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: var(--hero-position, center);
  background-repeat: no-repeat;
  transform: translateZ(0) scale(1.12);
  transform-origin: center;
  will-change: transform;
  backface-visibility: hidden;
}

.hero-slide>* {
  position: relative;
  z-index: 1;
}

.carousel-item.active .hero-slide::before {
  animation: heroZoomOut 2.8s ease-out forwards;
}

@keyframes heroZoomOut {
  from {
    transform: translateZ(0) scale(1.12);
  }

  to {
    transform: translateZ(0) scale(1);
  }
}

/* Background images for each slide */
.hero-slide-1 {
  --hero-image: url("../images/hero-img12.png");
  --hero-position: left top;
}

.hero-slide-2 {
  --hero-image: url("../images/hero-img2.png");
  --hero-position: center;
}

/* Text styling */
.hero-section h1 {
  font-size: 48px;
  font-weight: var(--font-bold);
  color: var(--color-primary);
}

.hero-section .services {
  margin: 20px 0;
  font-size: 16px;
  font-weight: var(--font-semibold);
  color: var(--color-black);
}

/* Button */
.btn-appointment {
  background: var(--color-primary);
  border-radius: var(--radius-lg);
  padding: 12px 28px;
  font-weight: var(--font-semibold);
  border: none;
  color: var(--color-white);
}

.btn-appointment:hover {
  border: 2px solid var(--color-white);
  color: var(--color-white);

}

/* Smooth fade effect */
.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-fade .carousel-item.active {
  opacity: 1;
}

/* Slide-up animation */
.slide-up {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 1s ease forwards;
}

.delay-1 {
  animation-delay: 0.3s;
}

.delay-2 {
  animation-delay: 0.6s;
}

.delay-3 {
  animation-delay: 0.9s;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ================= HERO SLIDE ANIMATION ================= */
.hero-content {
  overflow: hidden;
  height: 310px;
}

/* Initial state */
.slide-up {
  opacity: 0;
  transform: translateY(40px);
  animation: slideUp 1s ease-out forwards;
}

/* Delays */
.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

/* Keyframes */
@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* =========================
   WHY CHOOSE US
========================= */
.why-choose-section {
  background: var(--color-white);
}

.container-norm {
  margin: 0px 100px 0px 100px;
}

/* Labels */
.section-label {
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: var(--font-semibold);
  color: var(--color-secondary);
}

/* Titles */
.section-title {
  font-size: 36px;
  font-weight: var(--font-bold);
  color: var(--color-primary);
  margin-top: 10px;
}

/* Stats */
.stats-row {
  margin-bottom: 70px;
}

.stats-row h3 {
  font-size: 32px;
  font-weight: var(--font-bold);
  color: var(--color-primary);
}

.stats-row p {
  font-size: 14px;
  color: var(--color-secondary);
}

/* About */
.about-title {
  font-size: 34px;
  font-weight: var(--font-bold);
  color: var(--color-primary);
  margin: 15px 0;
}

.about-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-secondary);
  margin-bottom: 20px;
}

/* Learn More */
.learn-more {
  font-size: 14px;
  font-weight: var(--font-semibold);
  color: var(--color-accent);
  text-decoration: none;
}

.learn-more:hover {
  text-decoration: underline;
}

/* About Image */
.about-img-wrapper {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  overflow: hidden;
  margin: auto;
}

.about-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================= SERVICES ================= */
.services-section {
  background: #f9fafb;
}

.container-service {
  margin: 0px 150px 0px 150px;
}

/* Service Card Base */
.service-card {
  padding: 30px;
  border-radius: 20px;
  height: 100%;
}

/* Header */
.service-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.service-header h4 {
  font-size: 20px;
  font-weight: var(--font-bold);
  color: #000000;
}

/* Icons */
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
}

/* Lists */
.service-card ul {
  padding-left: 18px;
  margin-bottom: 15px;
}

.service-card ul li {
  font-size: 14px;
  color: #1D304B;
  margin-bottom: 8px;
  font-weight: var(--font-medium);
}

.service-management .learn-more {
  color: #3F91FF;
}

.service-tax .learn-more {
  color: #41B12A;
}

.service-accounting .learn-more {
  color: #BA56F8;
}

.service-other .learn-more {
  color: #F9474A;
}

/* Gradients / Backgrounds */
.service-audit {
  background: #F2DDC1;
}

.service-management {
  background: #CEDCEF;
}

.service-tax {
  background: #B6D6AF;
}

.service-accounting {
  background: #CFBDDA;
}

.service-other {
  background: #EEBDBD;
}

/* Icon Colors */
.bg-audit {
 background: linear-gradient(135deg, #1D304B, #2D4260);
}

.bg-management {
  /* background: #e9b470; */
  background: linear-gradient(135deg, #1D304B, #2D4260);
}

.bg-tax {
  background: linear-gradient(135deg, #1D304B, #2D4260);
}

.bg-accounting {
  background: linear-gradient(135deg, #1D304B, #2D4260);
}

.bg-other {
 background: linear-gradient(135deg, #1D304B, #2D4260);
}

/* ================= OUR VISION ================= */
.vision-section {
  background: var(--color-white);
}

/* Title */
.vision-title {
  font-size: 34px;
  font-weight: var(--font-bold);
  color: var(--color-primary);
  margin: 15px 0;
}

/* Text */
.vision-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-secondary);
  margin-bottom: 20px;
}

/* Image Wrapper */
.vision-img-wrapper {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  overflow: hidden;
  margin: auto;
}

.vision-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================= CARD HOVER EFFECT ================= */
.service-card {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Icon micro-interaction */
.service-card:hover .service-icon {
  transform: rotate(-6deg) scale(1.1);
}

.service-icon {
  transition: transform 0.35s ease;
}

/* ================= CARD SCROLL ANIMATION ================= */
.card-animate {
  opacity: 0;
  transform: scale(0.95) translateY(20px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.card-animate.show {
  opacity: 1;
  transform: scale(1) translateY(0);
}



/* ================= AUDIT & ADVISORY SUPPORT ================= */
.audit-support-section {
  background: #fff;
}

/* Card */
.audit-card {
  background: #faf8f4;
  border-radius: 16px;
  padding: 30px;
  height: 100%;
  text-align: center;
  border: 2px solid #00000010;
  border-radius: 30px 0px 30px 0px;
}

.audit-card h5 {
  position: relative;
  display: inline-block;
  font-weight: var(--font-bold);
  color: var(--color-primary);
  padding-bottom: 8px;
}

.audit-card h5::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background: linear-gradient(135deg, #E9B470 100%, #83653F 40%);
  border-radius: 2px;
}




.audit-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #000000;
}

/* Button */
.audit-btn {
  border-radius: var(--radius-lg);
  padding: 10px 28px;
  font-weight: var(--font-semibold);
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}

.audit-btn:hover {
  background: var(--color-accent);
  color: #fff;
  border: none !important;
}

/* ================= AUDIT CARD HOVER ================= */
.audit-card {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.audit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
  border-color: var(--color-accent);
  box-shadow: 0 18px 35px rgba(233, 180, 112, 0.35);
}

/* ================= AUDIT CARD ANIMATION ================= */
.audit-animate {
  opacity: 0;
  transform: perspective(800px) scale(0.9);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}

.audit-animate.show {
  opacity: 1;
  transform: perspective(800px) scale(1);
}


/* ================= GET A CALLBACK ================= */
.callback-section {
  background: #fff;
}

.callback-box {
  background: #f9ead6;
  border-radius: 24px;
  padding: 60px;
}

/* Text */
.callback-title {
  font-size: 32px;
  font-weight: var(--font-bold);
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 15px;
  text-align: right;
}

.callback-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-secondary);
  max-width: 480px;
  text-align: right;
}

/* Form */
.callback-form .form-label {
  font-size: 14px;
  font-weight: var(--font-semibold);
  color: var(--color-primary);
  margin-bottom: 10px;
}

.callback-form .form-label span {
  color: red;
}

.callback-form .form-control,
.callback-form .form-select {
  border-radius: 50px;
  padding: 10px 16px;
  font-size: 14px;
  border: 1px solid #ddd;
}

.callback-form .form-control:focus,
.callback-form .form-select:focus {
  border-color: var(--color-accent);
  box-shadow: none;
}

/* Submit Button */
.btn-submit {
  background: var(--color-primary);
  color: #fff;
  border-radius: 50px;
  padding: 10px 32px;
  font-weight: var(--font-semibold);
  border: none;
  margin-top: 10px;
}

.btn-submit:hover {
  background: #14243a;
}

/* ================= FORM STATUS MESSAGES ================= */
.form-status-wrap {
  width: 100%;
}

.form-status-card {
  position: relative;
  width: min(100%, 460px);
  border-radius: 20px;
  padding: 30px 26px;
  background: #ffffff;
  border: 1px solid rgba(29, 48, 75, 0.14);
  box-shadow: 0 18px 40px rgba(29, 48, 75, 0.12);
  text-align: center;
  overflow: hidden;
}

.form-status-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
}

.form-status-card--error {
  border-color: rgba(185, 28, 28, 0.3);
}

.form-status-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  box-shadow: 0 10px 22px rgba(29, 48, 75, 0.25);
}

.form-status-card--error .form-status-icon {
  background: linear-gradient(135deg, #9f1239, #ef4444);
  box-shadow: 0 10px 22px rgba(159, 18, 57, 0.22);
}

.form-status-title {
  font-size: 1.3rem;
  font-weight: var(--font-bold);
  color: var(--color-primary);
  margin-bottom: 10px;
}

.form-status-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-secondary);
  margin-bottom: 20px;
}

.form-status-btn {
  display: inline-block;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  background: var(--color-primary);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: var(--font-semibold);
  letter-spacing: 0.4px;
  padding: 10px 22px;
  transition: all 0.25s ease;
}

.form-status-btn:hover {
  background: #16263f;
  color: #ffffff;
}

.form-status-btn--outline {
  background: transparent;
  color: #9f1239;
  border: 1px solid #9f1239;
}

.form-status-btn--outline:hover {
  background: #9f1239;
  color: #ffffff;
}

@media (max-width: 767px) {
  .form-status-card {
    padding: 24px 18px;
    border-radius: 16px;
  }

  .form-status-icon {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }

  .form-status-title {
    font-size: 1.1rem;
  }
}

/* ================= CALLBACK SLIDE-UP ================= */
.callback-animate {
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}

.callback-animate.show {
  opacity: 1;
  transform: translateY(0);
}

/* Inner stagger */
.slide-inner {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.callback-animate.show .slide-inner {
  opacity: 1;
  transform: translateY(0);
}

/* Delay reuse */
.delay-1 {
  transition-delay: 0.2s;
}

.delay-2 {
  transition-delay: 0.4s;
}

/* ================= FOOTER ================= */
.site-footer {
  --footer-text: rgba(255, 255, 255, 0.88);
  --footer-muted: rgba(255, 255, 255, 0.72);
  --footer-line: rgba(255, 255, 255, 0.16);
  /* max-width: 1320px; */
  margin: 71px 28px 30px;
  border-radius: 26px;
  overflow: hidden;
  background: #5B4831;
  background: linear-gradient(166deg, rgba(91, 72, 49, 1) 28%, rgba(29, 48, 75, 1) 84%, rgba(29, 48, 75, 1) 56%);
  color: var(--footer-text);
  box-shadow: 0 24px 56px rgba(16, 27, 42, 0.2);
}

/* Top */
.site-footer .footer-top {
  position: relative;
  padding: 64px 52px 44px;
  border-top: none;
}

.site-footer .footer-top::after {
  content: "";
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: 33.333%;
  width: 1px;
  background: var(--footer-line);
  pointer-events: none;
}

.site-footer .footer-top .row {
  row-gap: 18px;
}

.footer-logo {
  width: 165px;
  margin-bottom: 24px;
}

/* Social */
.footer-social {
  margin-top: 24px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-right: 10px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
  transition: all 0.25s ease;
}

.footer-social a:hover {
  color: var(--color-primary);
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

/* Titles */
.footer-title {
  font-size: clamp(1.15rem, 1.2vw, 1.9rem);
  font-weight: var(--font-bold);
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 11px;
}

.footer-links a {
  text-decoration: none;
  font-size: clamp(0.95rem, 0.85vw, 1.18rem);
  color: var(--footer-text);
  line-height: 1.55;
  font-weight: var(--font-medium);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--color-accent);
}

/* Contact */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  font-size: clamp(0.95rem, 0.85vw, 1.12rem);
  margin-bottom: 16px;
  color: var(--footer-text);
  line-height: 1.65;
}

.footer-contact i {
  color: var(--color-accent);
  margin-top: 7px;
  font-size: 15px;
}

/* Divider */
.footer-divider {
  margin: 0 52px;
  border-top: 1px solid var(--footer-line);
}

/* Bottom */
.footer-bottom {
  text-align: right;
  padding: 20px 52px 28px;
  font-size: clamp(0.9rem, 0.75vw, 1.1rem);
  color: var(--footer-text);
}

.footer-bottom p {
  margin: 0;
}

/* ================= FADE IN ANIMATION ================= */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* Delays */
.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

.delay-6 {
  transition-delay: 0.6s;
}

/* ================= BREADCRUMB ================= */
.breadcrumb-section {
  /* background: #f8f9fa; */
  padding: 14px 0;
  /* border-bottom: 1px solid #e9ecef; */
  text-align: center;
}

.breadcrumb {
  font-size: 14px;
  font-weight: 600;
}

.breadcrumb-item a {
  text-decoration: none;
  color: var(--color-primary);
  transition: 0.3s ease;
}

.breadcrumb-item a:hover {
  color: var(--color-accent);
}

.breadcrumb-item.active {
  color: var(--color-secondary);
}

/* Change slash color */
.breadcrumb-item+.breadcrumb-item::before {
  color: #b5b5b5;
}

.alert-success {
  background: rgba(40, 167, 69, 0.12);
  color: #1D304B;
  border: none;
  border-left: 4px solid #28a745;
}

@media (max-width: 768px) {
  .hero-cont {
    align-self: center;
  }
}

/* Responsive */
@media (max-width: 991px) {
  .site-footer {
    margin: 54px 14px 22px;
    border-radius: 20px;
  }

  .site-footer .footer-top {
    padding: 46px 28px 30px;
  }

  .site-footer .footer-top::after {
    display: none;
  }

  .footer-divider {
    margin: 0 28px;
  }

  .footer-bottom {
    text-align: center;
    padding: 18px 28px 22px;
  }
}

@media (max-width: 768px) {
  .site-footer .footer-top {
    padding: 40px 22px 24px;
  }

  .site-footer .footer-top .row {
    row-gap: 26px;
  }

  .footer-social {
    margin-top: 18px;
  }

  .footer-contact li {
    justify-content: flex-start;
    margin-bottom: 12px;
  }

  .footer-divider {
    margin: 0 22px;
  }

  .footer-bottom {
    padding: 16px 22px 20px;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .callback-box {
    padding: 40px 25px;
  }

  .callback-title {
    text-align: center;
  }

  .callback-text {
    text-align: center;
    margin: 0 auto 20px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .audit-card {
    padding: 25px;
  }

  .audit-card h5 {
    font-size: 16px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .vision-title {
    font-size: 28px;
    text-align: center;
  }

  .vision-text {
    text-align: center;
  }

  .vision-img-wrapper {
    width: 300px;
    height: 300px;
  }

  .learn-more {
    display: block;
    text-align: center;
  }
}


/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .hero-section {
    padding: 0px 0;
  }

  .hero-section h1 {
    font-size: 40px;
    margin-top: 80px;
  }

  .navbar-collapse {
    text-align: center;
    background: var(--color-primary);
    border-radius: 0px 0px 20px 20px;
    height: 170px;
    width: 100% !important;
  }

  .nav-link {
    color: var(--color-secondary)
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .hero-section {
    text-align: center;
    padding: 0px 0;
  }

  .hero-section h1 {
    font-size: 34px;
  }

  .section-title,
  .about-title {
    font-size: 28px;
    text-align: center;
  }

  .about-text {
    text-align: center;
  }

  .learn-more {
    display: block;
    text-align: center;
  }

  .about-img-wrapper {
    width: 300px;
    height: 300px;
  }

  .container-norm {
    margin: 0px 40px 0px 40px;

  }

  .why-choose-section {
    text-align: center;
  }

  .vision-section {
    text-align: center;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .service-card {
    padding: 25px;
  }

  .service-header h4 {
    font-size: 18px;
  }
}

@media (max-width: 768px) {

  .navbar-animate,
  .navbar-nav .nav-item {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 768px) {
  .nav-link::after {
    display: none;
  }
}

/* ========== RESPONSIVE HERO ========== */

/* Large screens (Default already 700px) */
@media (max-width: 1199px) {

  .hero-section,
  .hero-slide {
    height: 650px;
  }

  .hero-section h1 {
    font-size: 42px;
  }
}

/* Tablets */
@media (max-width: 991px) {

  .hero-section,
  .hero-slide {
    height: 600px;
  }

  .hero-slide-1 {
    --hero-position: center;
  }

  .hero-content {
    text-align: center;
    margin: 0 auto;
  }

  .hero-section h1 {
    font-size: 36px;
    line-height: 1.2;
  }

  .hero-section .services {
    font-size: 15px;
  }

  .btn-appointment {
    padding: 11px 24px;
    font-size: 15px;
  }
}

/* Mobile */
@media (max-width: 767px) {

  .hero-section,
  .hero-slide {
    height: 520px;
  }

  .hero-slide-1 {
    --hero-position: center;
  }

  .hero-section h1 {
    font-size: 28px;
    line-height: 1.25;
  }

  .hero-section .services {
    margin: 14px 0;
    font-size: 14px;
  }


}

/* Small mobile */
@media (max-width: 480px) {

  .hero-section,
  .hero-slide {
    height: 470px;
  }

  .hero-section h1 {
    font-size: 24px;
  }


}

/* Shared hero typing animation for inner pages */
.hero-typing {
  display: inline-block;
  min-height: 1.2em;
  position: relative;
  padding-right: 0.22em;
}

.hero-typing::after {
  content: "|";
  position: absolute;
  right: 0;
  top: 0;
  color: #e9b470;
  opacity: 0;
  pointer-events: none;
}

.hero-typing.is-typing::after {
  opacity: 1;
  animation: heroTypingCaret 0.8s steps(1, end) infinite;
}

@keyframes heroTypingCaret {
  50% {
    opacity: 0;
  }
}