@import url('https://fonts.googleapis.com/css2?family=Belleza&family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Comfortaa:wght@300..700&family=Libertinus+Serif+Display&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
/********** Template CSS **********/
.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}
*{
  margin: 0;
  padding: 0;
   font-family: "Belleza", sans-serif;
  font-weight: 400;
  font-style: normal;
}
/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover,
.btn.btn-dark,
.btn.btn-outline-dark:hover {
  color: var(--bs-white);
  font-weight: 500;
}

.btn.btn-primary:hover {
  background: var(--bs-dark);
  border-color: var(--bs-dark);
}

.btn.btn-dark:hover {
  background: var(--bs-primary);
  border-color: var(--bs-primary);
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/*** Navbar ***/
/* ===== TOPBAR ===== */
.topbar {
  background: linear-gradient(90deg, #00b4d8, #00b4d8);
  color: #fff;
  padding: 6px 0;
  font-size: 14px;

  letter-spacing: 0.5px;
  z-index: 1050;
}

.topbar .contact-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar .contact-info i {
  width: 30px;
  height: 30px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-right: 6px;
}

.topbar .social-icons a {
  width: 30px;
  height: 30px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  transition: 0.3s;
  text-decoration: none;
}

.topbar .social-icons a:hover {
  background: #000;
  color: #fff;
}

/* ===== NAVBAR ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1040;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.navbar-brand {
  margin-right: auto; /* logo on left */
}

.navbar-brand img {
  height: 80px;
  width: 80px;
  transition: 0.4s;
}

.nav-link {
  color: #070808 !important;
  margin: 0 10px;
  transition: 0.3s;
}

.nav-link:hover {
  color: #00b4d8 !important;
}

.search-bar input {
  border-radius: 25px 0 0 25px;
  border: 1px solid #00b4d8;
}

.search-bar button {
  border-radius: 0 25px 25px 0;
  background: #00b4d8;
  color: #fff;
  border: none;
}
.search-bar input {
  border-radius: 25px;
  padding-left: 15px;
}

#searchResults li:hover {
  background-color: #f0f0f0;
}

/* Active Link */
.nav-link.active {
  color: #ee4d9b !important;
  font-weight: 700;
}
/* Dropdowns */
.dropdown-menu {
  border-radius: 8px;
  border: 1px solid #eee;
  display: none;
  position: absolute;
  z-index: 2000;
  margin-top: 10px;
  opacity: 0;
  transition: all 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
}

.dropdown-item:hover {
  background-color: #00b4d8;
  color: #fff !important;
}

/* ===== Offcanvas Menu ===== */
.offcanvas {
  background: linear-gradient(135deg, #007bff, #00b4d8);
  color: #fff;
}

.offcanvas .nav-link {
  color: #fff !important;
  margin: 8px 0;
}

.offcanvas .nav-link:hover {
  color: #000 !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .topbar {
    display: none; /* Hide topbar on mobile */
  }

  .navbar {
    padding: 10px 0;
  }

  .navbar-brand img {
    height: 60px;
    width: 60px;
  }

  .search-bar {
    display: none;
  }

  .collapse.navbar-collapse {
    display: none !important; /* hide desktop navs */
  }
}

/* page header */
.custom-breadcrumb {
  position: relative;
  background: url("../images/pg-banner.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 215px 20px 60px;
  overflow: hidden;
}

/* Overlay for better readability */
.custom-breadcrumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 92, 150, 0.7) 0%,
    rgba(0, 54, 108, 0.85) 100%
  );
  z-index: 0;
}

.breadcrumb-content {
  position: relative;
  z-index: 1;
}

.breadcrumb-content h1 {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 70px;
  color: #fff;
}

/* Breadcrumb Nav at Bottom */
nav.breadcrumb-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

nav.breadcrumb-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
}

nav.breadcrumb-nav a:hover {
  color: #ffd700;
}

nav.breadcrumb-nav i {
  color: #fff;
  opacity: 0.7;
  font-size: 0.85rem;
}

/* 🔹 Responsive */
@media (max-width: 768px) {
  .custom-breadcrumb {
    padding: 109px 15px 50px;
  }

  .breadcrumb-content h1 {
    font-size: 1.7rem;
    margin-bottom: 50px;
  }

  nav.breadcrumb-nav {
    bottom: 15px;
    gap: 8px;
  }

  nav.breadcrumb-nav a {
    font-size: 0.9rem;
  }
}
/*** Appointment ***/
@media (min-width: 992px) {
  .container.appointment {
    max-width: 100% !important;
  }

  .container.appointment .appointment-text {
    padding-left: calc(((100% - 960px) / 2) + 0.75rem);
  }

  .container.appointment .appointment-form {
    padding-right: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .container.appointment .appointment-text {
    padding-left: calc(((100% - 1140px) / 2) + 0.75rem);
  }

  .container.appointment .appointment-form {
    padding-right: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .container.appointment .appointment-text {
    padding-left: calc(((100% - 1320px) / 2) + 0.75rem);
  }

  .container.appointment .appointment-form {
    padding-right: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

.container.appointment .appointment-text {
  background: linear-gradient(rgba(205, 95, 55, 0.95), rgba(205, 95, 55, 0.95)),
    url(../img/service-4.jpg) center center no-repeat;
  background-size: cover;
}

.container.appointment .appointment-form {
  background: linear-gradient(rgba(72, 30, 11, 0.95), rgba(72, 30, 11, 0.95)),
    url(../img/service-1.jpg) center center no-repeat;
  background-size: cover;
}

.container.appointment .appointment-text .h-100,
.container.appointment .appointment-form .h-100 {
  padding: 6rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* about us page */
.about-section {
  background: linear-gradient(135deg, #f8fbff, #e8f5ff);
  padding: 60px 20px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.about-content {
  flex: 1 1 520px;
  animation: fadeInLeft 1s ease forwards;
}

.about-content p {
  font-size: 1.05rem;
  color: #020202;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 20px;
}

.about-image {
  flex: 1 1 400px;
  text-align: center;
  animation: fadeInRight 1s ease forwards;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  height: 500px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 120, 215, 0.2);
  transition: all 0.4s ease;
}

.about-image img:hover {
  box-shadow: 0 12px 30px rgba(0, 120, 215, 0.3);
}

/* ✨ Animations */
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 📱 Responsive Design */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-content h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .about-content,
  .about-image {
    flex: 1 1 100%;
    animation: fadeInUp 1s ease forwards;
  }

  .about-image img {
    max-width: 360px;
  }
  .carousel {
    margin-top: 92px;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Highlights Section */
.about-highlights {
  text-align: center;
}

.highlight-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.highlight-card {
  background: #fff;
  border-radius: 14px;
  padding: 25px 20px;
  flex: 1 1 220px;
  max-width: 280px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  animation: fadeUp 1s ease forwards;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 230px;
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ✅ Icon Fix */
.highlight-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #00a8e8, #0056b3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  margin-bottom: 15px;
  line-height: 1;
  transition: all 0.4s ease;
}

.highlight-card:hover .highlight-icon {
  transform: rotate(10deg) scale(1.1);
}

.highlight-card h4 {
  color: #0056b3;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}

.highlight-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  text-align: center;
}

.about-goal {
  margin-top: 40px;
  font-size: 1.1rem;
  color: #333;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-content h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 600px) {
  .highlight-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .about-content h2 {
    font-size: 2rem;
  }
}

/* why choose us */
section.why-choose {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 80px 10%;
  flex-wrap: wrap;
}

.why-left {
  flex: 1 1 450px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-left h2 {
  text-align: center;
  font-size: 2rem;
  color: #002c66;
  margin-bottom: 20px;
  font-weight: 700;
}

.why-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 25px;
  transition: all 0.4s ease;
  border-left: 5px solid transparent;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* White circular icon background */
.why-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background: linear-gradient(135deg, #e0f5ff, #b3e5ff);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.why-card:hover .why-icon {
  transform: scale(1.1);
}

.why-card h2 {
  margin: 0;
  color: #002c66;
  font-size: 1.1rem;
  font-weight: 600;
}

.why-card p {
  font-size: 0.95rem;
  color: #555;
  margin-top: 6px;
  line-height: 1.5;
}

/* Accent colors */
.icon-blue {
  border-left-color: #007bff;
}
.icon-blue .why-icon i {
  color: #007bff;
}

.icon-purple {
  border-left-color: #9b59b6;
}
.icon-purple .why-icon i {
  color: #9b59b6;
}

.icon-orange {
  border-left-color: #ff8a00;
}
.icon-orange .why-icon i {
  color: #ff8a00;
}

.icon-green {
  border-left-color: #00c896;
}
.icon-green .why-icon i {
  color: #00c896;
}

.icon-red {
  border-left-color: #e74c3c;
}
.icon-red .why-icon i {
  color: #e74c3c;
}

.why-right {
  flex: 1 1 400px;
  position: relative;
}

.why-right img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  /* border: 5px solid #e8f2ff; */
  border-radius: 10px 100px / 120px;
}

/* Responsive Design */
@media (max-width: 992px) {
  section.why-choose {
    flex-direction: column-reverse;
    padding: 60px 6%;
  }
  .why-left h2 {
    text-align: center;
  }
  .why-right {
    margin-bottom: 40px;
  }
}

@media (max-width: 600px) {
  .why-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  .why-icon {
    margin-bottom: 10px;
  }
}
.read-more-btn {
  display: inline-block;
  padding: 10px 25px;
  background: #007bff;
  color: #fff;
  font-size: 16px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

/* counter */
.facts-section {
  position: relative;
  background-attachment: fixed;
}

.facts-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.fact-box {
  border-radius: 10px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.fact-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
}

.fact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  font-size: 1.3rem;
}

.counter {
  font-weight: 700;
  color: #0d6efd;
}

@media (max-width: 992px) {
  .facts-section h2 {
    text-align: center;
    margin-bottom: 20px;
  }

  .fact-box {
    text-align: center !important;
  }

  .fact-icon {
    margin-right: 0;
  }
}

/* our presence */
.team-section {
  position: relative;
  background: #f8f9fa;
}

.team-section h4 {
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-description {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.8;
  text-align: justify;
}

.country-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #007bff, #00c6ff);
  color: #fff;
  padding: 8px 15px;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.country-badge i {
  color: #fff;
}

.country-badge:hover {
  background: linear-gradient(135deg, #00c6ff, #007bff);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.global-image {
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.5s ease;
}

.global-image:hover {
  transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .team-section h4 {
    font-size: 2rem;
  }
  .global-image {
    margin-top: 20px;
    width: 100%;
  }
  .country-badge {
    font-size: 0.9rem;
  }
}

/* faq content */
.appointment-section {
  background: linear-gradient(135deg, #f9fafc, #e6f0f8);
  padding: 80px 0;
}

/* Image Styling */
.img-box img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.img-box img:hover {
  transform: scale(1.03);
}

/* Accordion Styling */
.custom-accordion .accordion-button {
  background-color: #fff;
  color: #1a449d;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 8px;
  margin-bottom: 10px;
  padding: 18px 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.custom-accordion .accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(197, 46, 51, 0.3);
}

.custom-accordion .accordion-button:not(.collapsed) {
  background-color: #1a449d;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.custom-accordion .accordion-body {
  background-color: #fff;
  border-radius: 0 0 8px 8px;
  padding: 20px;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Smooth Hover & Collapse Animation */
.custom-accordion .accordion-button::after {
  font-size: 1.2rem;
  color: #1a449d;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
  color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
  .accordion-button {
    font-size: 1rem;
    padding: 16px 18px;
  }

  .accordion-body {
    font-size: 0.9rem;
    padding: 15px;
  }
}

@media (max-width: 576px) {
  .img-box {
    margin-bottom: 30px;
  }
}

/* our products */
.service-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: all 0.4s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  background: #fff;
}

.service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-item .service-icon {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #a8c7e5;
  transition: 0.4s ease;
}

.service-item:hover .service-icon {
  transform: rotate(15deg);
}

.service-item .service-text {
  min-height: 90px;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.service-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.service-item a.btn {
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  background-color: #0056b3;
  color: white;
}

/* Image Flip Effect */
.service-img-wrapper {
  perspective: 1000px;
}

.service-img-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  border-radius: 10px;
}

.service-item:hover .service-img-inner {
  transform: rotateY(180deg);
}

.service-img-wrapper {
  perspective: 1000px;
  position: relative;
  width: 100%;
  height: 260px;
}

.service-img-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease;
  transform-style: preserve-3d;
}

.service-item:hover .service-img-inner {
  transform: rotateY(180deg);
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
}

.service-img.back {
  transform: rotateY(180deg);
}
/* Responsive Adjustments */
@media (max-width: 768px) {
  .service-item .service-text h3 {
    font-size: 18px;
  }
  .topbar {
    display: none;
  }
}
.contactus-info {
  background: #e3e8e9;
  padding: 60px 0;
  text-align: center;
}

.contactus-card {
  background: #fff;
  color: #333;
  border-radius: 12px;
  margin: 15px 0;
  padding: 30px 20px;
  transition: all 0.4s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.contactus-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contactus-card i {
  font-size: 2.2rem;
  color: #00a8cc;
  margin-bottom: 15px;
}

.contactus-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.contactus-card p,
.contactus-card a {
  font-size: 0.95rem;
  color: #333;
  margin: 0;
  text-decoration: none;
}

.contactus-card a:hover {
  color: #00a8cc;
  text-decoration: underline;
}

/* 🔹 Contact Section */
.contactus-section {
  background: #00a8cc;
  color: #fff;
  padding: 60px 0;
}

.contactus-section h3 {
  font-weight: 700;
  margin-bottom: 20px;
}

.contactus-section p {
  color: #e6f9ff;
  font-size: 0.95rem;
}

.contactus-section .form-control,
.contactus-section .form-select {
  background: transparent;
  border: none;
  border-bottom: 2px solid #fff;
  border-radius: 0;
  color: #fff;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.contactus-section .form-control::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.contactus-section .form-control:focus,
.contactus-section .form-select:focus {
  border-color: #fff;
  box-shadow: none;
}

.contactus-btn {
  background: #fff;
  color: #00a8cc;
  border: none;
  padding: 10px 40px;
  font-weight: 600;
  border-radius: 50px;
  transition: 0.3s ease;
}

.contactus-btn:hover {
  background: #f8f9fa;
  color: #007a99;
}

.contactus-img {
  width: 513px;
  height: 475px;
  border-radius: 12px;
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* 🔹 Map */
.contactus-map iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* 🔹 Responsive */
@media (max-width: 991px) {
  .contactus-section {
    text-align: center;
  }

  .contactus-img {
    margin: 30px auto 0;
  }
}

/* mission and vision */
.mission-vision-section {
  text-align: center;
  padding: 70px 20px;
}

.mv-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 60px;
  animation: fadeInUp 1.5s ease-in-out;
}
.mv-card {
  background: #fff;
  border-radius: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  width: 600px;
  position: relative;
  padding: 60px 25px 35px 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}
.mv-label {
  position: absolute;
  top: -25px;
  left: 0;
  right: 0;
  margin: auto;
  background: #ffa937;
  width: 60%;
  height: 45px;
  border-radius: 15px 15px 0 0;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vision .mv-label {
  background: #71c89c;
}
.mv-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e0f5ff, #b3e5ff);
  border: 3px solid #ffa937;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffa937;
  font-size: 28px;
  margin: 15px auto;
  box-shadow: 0 0 10px rgba(255, 169, 55, 0.3);
  transition: transform 0.4s ease;
}

.vision .mv-icon {
  border-color: #71c89c;
  color: #71c89c;
  box-shadow: 0 0 10px rgba(113, 200, 156, 0.3);
}

.mv-card:hover .mv-icon {
  transform: rotate(15deg) scale(1.1);
}
.mv-content p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: justify;
}

/* === FLAG === */
.mv-flag {
  position: absolute;
  top: -12px;
  right: 40px;
  font-size: 1.2rem;
}

/* === ANIMATION === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .mv-card {
    width: 100%;
    max-width: 420px;
  }
}

/* future section */
.section-bg {
  max-width: 1560px;
  margin: 60px auto;
  padding: 40px 20px;
}
/* Layout Blocks */
.content-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}

.content-block.reverse {
  flex-direction: row-reverse;
}

.content-text {
  flex: 1 1 55%;
  font-size: 1rem;
  color: #444;
  text-align: justify;
}

/* Icon Replacement */
.content-icon {
  flex: 1 1 35%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e0f5ff, #b3e5ff);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 136, 255, 0.25);
  transition: all 0.4s ease;
  position: relative;
}

.icon-circle i {
  font-size: 3.5rem;
  color: #0078d7;
  transition: all 0.4s ease;
}

.icon-circle:hover {
  transform: rotate(10deg) scale(1.05);
  background: linear-gradient(135deg, #0078d7, #00c2ff);
}

.icon-circle:hover i {
  color: #fff;
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 992px) {
  .content-block {
    flex-direction: column;
    text-align: center;
  }
  .content-block.reverse {
    flex-direction: column;
  }
  .content-icon {
    margin-bottom: 20px;
  }
  .content-text {
    flex: 1 1 100%;
  }
}

/* 💬 Call to Action */
.cta-section {
  background: linear-gradient(135deg, #0078d7, #00aaff);
  color: #fff;
  text-align: center;
  padding: 60px 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.cta-section h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-section p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 25px;
  line-height: 1.7;
}

.cta-section a {
  display: inline-block;
  padding: 12px 30px;
  background: #fff;
  color: #0078d7;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-section a:hover {
  background: #0056b3;
  color: #fff;
}

/* 📱 Responsive */
@media (max-width: 992px) {
  .content-block {
    flex-direction: column;
    text-align: center;
  }
  .content-block.reverse {
    flex-direction: column;
  }
  .content-image img {
    max-width: 90%;
  }
}

/*** Features ***/
.feature .feature-item .btn-square {
  width: 90px;
  height: 90px;
  background: var(--bs-primary);
  border: 15px solid var(--bs-white);
}

.twentytwenty-wrapper {
  height: 100%;
}

.footer-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}

.footer-menu a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: #007bff;
}

.footer-menu span {
  color: #888;
}

@media (max-width: 600px) {
  .footer-menu {
    font-size: 13px;
    gap: 8px;
  }
}

/* ===== Footer Section ===== */
.footer {
  position: relative;
  background: url("../images/footer_bg.jpeg") no-repeat center center/cover;
  color: #fff;
  overflow: hidden;
}

/* ===== Floating Medical Icons ===== */
.fab-icon {
  position: absolute;
  color: rgba(0, 200, 255, 0.15);
  font-size: 40px;
  animation: floatIcons 20s linear infinite;
  z-index: 0;
}

@keyframes floatIcons {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0.3;
  }

  50% {
    opacity: 0.8;
  }

  100% {
    transform: translateY(-10vh) rotate(360deg);
    opacity: 0.3;
  }
}

/* Random positions and speeds */
.fab-icon:nth-child(1) {
  left: 8%;
  font-size: 50px;
  animation-duration: 23s;
}

.fab-icon:nth-child(2) {
  left: 20%;
  font-size: 60px;
  animation-duration: 27s;
}

.fab-icon:nth-child(3) {
  left: 35%;
  font-size: 45px;
  animation-duration: 25s;
}

.fab-icon:nth-child(4) {
  left: 50%;
  font-size: 55px;
  animation-duration: 28s;
}

.fab-icon:nth-child(5) {
  left: 65%;
  font-size: 48px;
  animation-duration: 24s;
}

.fab-icon:nth-child(6) {
  left: 80%;
  font-size: 52px;
  animation-duration: 26s;
}

.fab-icon:nth-child(7) {
  left: 92%;
  font-size: 42px;
  animation-duration: 22s;
}

/* === Product Section === */
.product-main-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 80px 10%;
  position: relative;
}

.product-image-box {
  flex: 1;
  min-width: 300px;
  text-align: center;
  animation: floatImage 5s ease-in-out infinite;
}

.product-image-box img {
  width: 90%;
  max-width: 420px;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  transition: transform 0.4s ease;
}

.product-image-box img:hover {
  transform: scale(1.05);
}

@keyframes floatImage {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.product-text-content {
  flex: 1;
  min-width: 320px;
  padding: 20px 40px;
  animation: fadeInRight 1s ease forwards;
  opacity: 0;
}

@keyframes fadeInRight {
  0% {
    transform: translateX(80px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.product-text-content p {
  line-height: 1.7;
  font-size: 1rem;
  color: #0b0c0d;
}

/* === Info Cards === */
.product-info-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 42px;
  margin-top: 40px;
}
.unique-heading-title {
  background: linear-gradient(90deg, #ee4d9b, #1b449c, #00aeed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: 36px;
  text-align: center;
}

.product-info-card {
  flex: 1 1 calc(33.33% - 20px);
  background: #f1f3f6;
  color: #0d0e0e;
  border-radius: 12px;
  padding: 25px;
  border-top: 5px solid #00c6ff;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset,
    rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
  transition: all 0.4s ease;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.product-info-card:hover {
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.product-icon-box {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, #012e7d, #0044ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.product-info-card:hover .product-icon-box {
  transform: rotate(360deg);
}

.product-card-content h4,
.product-card-content h5,
.product-card-content h6 {
  font-size: 1.2rem;
  color: #00234d;
  margin-bottom: 10px;
}

.product-card-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-card-content li {
  margin: 10px 0;
  position: relative;
  padding-left: 25px;
  font-size: 0.95rem;
  color: #0d0e0e;
  line-height: 1.5;
}

.product-card-content li::before {
  content: "★";
  position: absolute;
  left: 0;
  color: #00234d;
  font-size: 0.9rem;
}
/* ===========================
   Responsive Design Starts
=========================== */

/* Tablets and small laptops */
@media (max-width: 1024px) {
  .product-main-section {
    flex-direction: column-reverse;
    text-align: center;
    padding: 60px 6%;
  }

  .product-text-content {
    padding: 15px 25px;
    animation: fadeInUp 1s ease forwards;
  }

  @keyframes fadeInUp {
    0% {
      transform: translateY(50px);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .product-image-box img {
    max-width: 380px;
  }

  .unique-heading-title {
    font-size: 30px;
  }

  .product-info-row {
    gap: 30px;
  }

  .product-info-card {
    flex: 1 1 calc(50% - 20px);
  }
}

/* Mobile Devices */
@media (max-width: 768px) {
  .product-main-section {
    flex-direction: column;
    padding: 50px 5%;
    text-align: center;
  }

  .product-image-box {
    animation: none;
    margin-bottom: 20px;
  }

  .product-image-box img {
    width: 85%;
    max-width: 320px;
  }

  .product-text-content {
    padding: 10px 15px;
  }

  .product-text-content p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .unique-heading-title {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .product-info-row {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .product-info-card {
    flex: 1 1 100%;
    max-width: 95%;
    padding: 20px;
    align-items: center;
    text-align: left;
  }

  .product-icon-box {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .product-card-content h4,
  .product-card-content h5,
  .product-card-content h6 {
    font-size: 1.05rem;
  }

  .product-card-content li {
    font-size: 0.9rem;
  }
}

/* Extra Small Devices (Phones under 480px) */
@media (max-width: 480px) {
  .product-main-section {
    padding: 35px 4%;
  }

  .unique-heading-title {
    font-size: 22px;
  }

  .product-image-box img {
    max-width: 260px;
  }

  .product-info-card {
    padding: 15px;
  }

  .product-card-content p,
  .product-card-content li {
    font-size: 0.85rem;
  }

  .product-icon-box {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

.btn-quote {
  background-color: #00c6ff;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  padding: 10px 30px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-quote:hover {
  background-color: #00234d;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.btn-quote:active {
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.btn-quote:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(193, 11, 93, 0.4);
}


/* ========== MARKET AREA SECTION ========== */
.market-area {
  text-align: center;
  padding: 60px 20px;
  max-width: 1300px;
  margin: 0 auto;
}

.market-area h2 {
  font-size: 2.4rem;
  background: linear-gradient(90deg, #00aeed, #ee4d9b, #18459d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 50px;
}

/* ========== COUNTRY GRID ========== */
.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px;
  padding: 0 30px;
  justify-items: center;
}

/* ========== COUNTRY CARD ========== */
a.country-card {
  text-decoration: none;
  color: inherit;
  text-align: center;
  transition: transform 0.3s ease;
}

a.country-card:hover {
  transform: translateY(-8px);
}

/* FLAG CIRCLE */
.flag-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid transparent;
  background: linear-gradient(135deg, #00aeed, #ee4d9b, #18459d);
  padding: 3px;
  display: inline-block;
  transition: all 0.3s ease;
}

.flag-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  filter: brightness(0.9);
  transition: all 0.3s ease;
}

a.country-card:hover .flag-circle {
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(0, 174, 237, 0.5);
}

/* COUNTRY NAME */
.market-area-label {
 display: inline-block;
  background: linear-gradient(135deg, #00aeed, #ee4d9b, #18459d);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 20px;
  border-radius: 25px;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .market-area h2 {
    font-size: 1.8rem;
  }

  .flag-circle {
    width: 100px;
    height: 100px;
  }

  .market-area-label {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .market-area {
    padding: 40px 10px;
  }

  .country-grid {
    gap: 25px;
  }

  .flag-circle {
    width: 85px;
    height: 85px;
  }

  .market-area-label {
    font-size: 0.85rem;
    padding: 4px 10px;
  }
}

/* ========== CONTENT ========== */
.market-area {
  max-width: 1300px;
  margin: 0 auto;
}
.market-content {
  background: #fff;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  margin-bottom: 60px;
  padding: 50px 40px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: fadeUp 1s ease forwards;
}
.market-content:hover {
  transform: translateY(-8px);
}

/* ========== HEADING STYLE (Uniform) ========== */
.market-heading {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.market-heading span {
  display: flex;
  align-items: center;
}

.market-heading span h2,
.market-heading span h3 {
  color: #00aeed;
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  position: relative;
}

/* Icon styling */
.market-heading i {
  font-size: 1.9rem;
  background: #ffe6e6;
  color: #00234d;
  padding: 10px;
  border-radius: 50%;
  transition: background 0.3s ease, color 0.3s ease;
}

/* Hover effect */
.market-heading:hover i {
  background: #00aeed;
  color: #fff;
}
.market-heading span h2::after,
.market-heading span h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 3px;
  background: #00aeed;
  transition: width 0.3s ease;
}

.market-heading:hover span h2::after,
.market-heading:hover span h3::after {
  width: 100%;
}


/* ========== TEXT CONTENT ========== */
.market-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: justify;
}
.market-text b {
  color: #00aeed;
}

/* ========== ANIMATION ========== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 992px) {
  .market-area {
    padding: 60px 15px;
  }
  .market-heading {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .market-heading {
    justify-content: center;
    text-align: center;
  }
  .market-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .market-text p {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .market-heading {
    font-size: 1.6rem;
  }
  .market-heading i {
    font-size: 1.5rem;
  }
  .market-text p {
    font-size: 14px;
  }
}

/* sitemap */
.sitemap-section {
  padding: 80px 20px;
}

.sitemap-title {
  text-align: center;
  font-size: 2.2rem;
  color: #17459c;
  font-weight: 700;
  margin-bottom: 40px;
  text-transform: uppercase;
  position: relative;
}

.sitemap-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #00aeed;
  margin: 10px auto 0;
  border-radius: 3px;
}

/* Tree structure */
.sitemap-tree {
  list-style: none;
  padding-left: 0;
  position: relative;
  max-width: 800px;
  margin: auto;
}

.sitemap-tree li {
  position: relative;
  padding: 10px 0 10px 25px;
  font-size: 1.05rem;
  color: #333;
}

.sitemap-tree li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10px;
  width: 2px;
  height: 100%;
  background: #00aeed;
}
.sitemap-header {
  background: linear-gradient(90deg, #00aeed, #17459c);
  color: #fff;
  text-align: center;
}

.sitemap-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}
.sitemap-tree li::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 10px;
  width: 15px;
  height: 2px;
  background: #00aeed;
}

.sitemap-tree ul {
  list-style: none;
  padding-left: 25px;
  margin-top: 10px;
  border-left: 2px solid #ee4d9b;
}

.sitemap-tree a {
  color: #17459c;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.sitemap-tree a:hover {
  color: #ee4d9b;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .sitemap-title {
    font-size: 1.8rem;
  }

  .sitemap-tree {
    padding-left: 10px;
  }

  .sitemap-tree li {
    padding-left: 20px;
    font-size: 0.95rem;
  }

  .sitemap-tree ul {
    padding-left: 15px;
  }
}

#product1 {
  color: black;
}

#product1 option {
  color: black;
  background-color: white;
}

/* ===== Footer Content ===== */
.footer-content {
  position: relative;
  z-index: 2;
}

.footer h2 {
  color: #00c6ff;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.footer h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #00c6ff;
  margin-top: 6px;
}

.footer p,
.footer a {
  color: #ddd;
  transition: all 0.3s ease;
}

.footer a:hover {
  color: #00c6ff;
  transform: translateX(5px);
}

.footer .btn-primary {
  background: #00c6ff;
  border: none;
  transition: 0.3s ease;
}

.footer .btn-primary:hover {
  background: #008ccc;
}

.footer .btn-lg-square {
  background: #00c6ff;
  border: none;
  color: #fff;
  transition: 0.3s ease;
}

.footer .btn-lg-square:hover {
  background: #008ccc;
  transform: scale(1.1);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.8);
  color: #ccc;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 15px 0;
  font-size: 0.9rem;
}

@media (max-width: 992px) {
  .footer .row > div {
    margin-bottom: 2rem;
  }
}

/* ========== GENERAL SECTION STYLE ========== */
.important-section {
  background: #fff;
  line-height: 1.8;
  color: #0d0b0b;
  animation: fadeIn 1s ease forwards;
}

.important-section .container {
  padding: 40px 30px;
    max-width: 1100px;
   box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

/* ========== HEADINGS STYLE (h2 to h6 same CSS) ========== */
.important-section h2,
.important-section h3,
.important-section h4,
.important-section h5,
.important-section h6 {
  color: #00aeed;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}

.important-section h2 {
  font-size: 2rem;
  text-align: center;
  border-bottom: 2px solid #00aeed;
  display: inline-block;
}

.important-section h3,
.important-section h4,
.important-section h5,
.important-section h6 {
  font-size: 1.25rem;
}

/* ========== PARAGRAPH & LIST ========== */
.important-section p,
.important-section li {
  font-size: 1rem;
  margin-bottom: 12px;
}

.important-section ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
  .important-section .container {
    padding: 40px 20px;
  }

  .important-section h2 {
    font-size: 1.7rem;
  }

  .important-section h3,
  .important-section h4,
  .important-section h5,
  .important-section h6 {
    font-size: 1.1rem;
  }

  .important-section p,
  .important-section li {
    font-size: 0.95rem;
  }
}

/* ========== ANIMATION ========== */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
