body {
  padding-top: 155px;
}

.material-symbols-outlined {
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
}
.hero-gradient {
  background: linear-gradient(
    to bottom,
    rgba(24, 28, 32, 0.4),
    rgba(24, 28, 32, 0.8)
  );
}

.hero-overlay {
  background: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.35) 100%
  ) !important;
}

.mega-menu {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transform: translateY(10px);
}
.group:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}
.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.mobile-drawer {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-drawer.closed {
  transform: translateX(-100%);
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.accordion-item.active .accordion-content {
  max-height: 500px;
}
.accordion-item.active .chevron-icon {
  transform: rotate(180deg);
}
.mega-content {
  display: none;
}
.mega-content.active {
  display: block;
}

.mobile-drawer {
  transform: translateX(-100%);
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
}

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

.mobile-drawer.closed {
  transform: translateX(-100%);
}

#mobile-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    opacity 0.35s ease;
  opacity: 0;
}

.accordion-content.open {
  max-height: 500px;
  opacity: 1;
}

.hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.45) 45%,
    rgba(0, 0, 0, 0.15) 100%
  );
}

.hero-content {
  opacity: 0;
  transform: translateY(60px) scale(0.96);
  transition:
    opacity 1s ease,
    transform 1s ease;
  pointer-events: none;
}

.active-content {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.hero-title,
.hero-desc {
  transition: all 1s ease;
}

.hero-slide img {
  animation: heroZoom 12s linear infinite;
}

@keyframes heroZoom {
  0% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1.15);
  }
}

.ts-control {
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  font-size: 14px;
  font-weight: 600;
}

.ts-wrapper.single .ts-control {
  background: transparent !important;
}

.hero-slide iframe {
  filter: brightness(1);
}

.hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.45) 45%,
    rgba(0, 0, 0, 0.15) 100%
  );
}

.hero-slide {
  transition: opacity 1.5s ease;
}

.hero-slide img {
  animation: heroZoom 14s linear infinite;
}

@keyframes heroZoom {
  0% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1.15);
  }
}

.hero-content {
  opacity: 0;
  transform: translateY(80px);
  pointer-events: none;
}

.active-content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-booking-engine {
  opacity: 0;
  transform: translateY(60px);
}

@media (max-width: 768px) {
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.35) 50%,
      rgba(0, 0, 0, 0.8) 100%
    );
  }

  body {
    padding-top: 27px !important;
  }
}

/* =========================
   PREMIUM FLATPICKR DESIGN
========================= */

.flatpickr-calendar {
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  border-radius: 28px !important;
  overflow: hidden;
  padding: 18px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.18),
    0 10px 30px rgba(0, 0, 0, 0.08) !important;
  width: 340px !important;
}

/* DAYS */
.flatpickr-day {
  border-radius: 14px !important;
  font-weight: 600;
  color: #111827;
  transition: all 0.2s ease;
}

/* HOVER */
.flatpickr-day:hover {
  background: rgba(16, 185, 129, 0.12) !important;
  color: #059669 !important;
}

/* TODAY */
.flatpickr-day.today {
  border-color: #10b981 !important;
  color: #10b981 !important;
}

/* SELECTED */
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: linear-gradient(135deg, #10b981, #059669) !important;

  border-color: transparent !important;
  color: white !important;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

/* RANGE */
.flatpickr-day.inRange {
  background: rgba(16, 185, 129, 0.12) !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

/* NAVIGATION */
.flatpickr-prev-month,
.flatpickr-next-month {
  border-radius: 12px;
  transition: all 0.2s ease;
}

.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
  background: rgba(16, 185, 129, 0.1);
}

/* INPUT */
#datePicker {
  box-shadow: none !important;
}

#datePicker:focus {
  outline: none !important;
  box-shadow: none !important;
}

#datePicker {
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.group {
  transition: all 0.2s ease;
}

.group:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.flatpickr-prev-month,
.flatpickr-next-month {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.04);
}

.destination-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.3) 60%,
    rgba(0, 0, 0, 0) 100%
  );
}

.cloud-mask {
  mask-image: url("../images/cloud.png fill='black'/%3E%3C/svg%3E");
  mask-size: 100% 100%;
}

.trek-slider-container {
  scroll-behavior: smooth;
}

.about-img {
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
  will-change: transform;
}

.about-img:hover {
  transform: scale(1.025) rotate(-0.5deg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}

.about-card {
  transition:
    transform 0.4s ease,
    background 0.4s ease;
  padding: 14px;
  border-radius: 18px;
}

.about-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
}

.about-badge {
  backdrop-filter: blur(10px);
}

.bg-surface {
  --tw-bg-opacity: 1;
  background-color: rgb(247 249 255 / var(--tw-bg-opacity, 1) 1);
}

.cloud-divider {
  position: relative;
  height: auto;
  width: 100%;
  overflow: hidden;
  margin-top: -50px;
  z-index: 10;
}

.premium-package-card {
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
  will-change: transform;
}

.premium-package-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.12);
}

.premium-image {
  transition: transform 1s ease;
  will-change: transform;
}

.premium-package-card:hover .premium-image {
  transform: scale(1.08);
}

.premium-btn {
  transition:
    transform 0.35s ease,
    background 0.35s ease;
}

.premium-package-card:hover .premium-btn {
  transform: translateY(-2px);
}

.testimonial-track {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.dot.active {
  background-color: #a63b00;
  width: 1.5rem;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.partner-card {
  transition: all 0.4s ease;
}

.partner-card img {
  transition: all 0.5s ease;
  filter: grayscale(100%);
  opacity: 0.7;
}

.partner-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
}

.footer-social {
  @apply w-11 h-11 rounded-full flex items-center justify-center bg-white/10 border border-white/10 text-white hover:bg-primary hover:-translate-y-1 transition-all duration-300;
}

.footer-link {
  @apply text-white/75 hover:text-yellow-300 transition-colors duration-300;
}
.footer-img{
  top: -15rem;
}

footer{
  margin-top: 10rem;
}

/* =========================
     CKEDITOR CONTENT DESIGN
  ========================== */

.ck-content {
  color: var(--on-surface, #1e293b);
  line-height: 1.9;
  font-size: 17px;
}

.ck-content > *:first-child {
  margin-top: 0 !important;
}

.ck-content > *:last-child {
  margin-bottom: 0 !important;
}

/* Headings */
.ck-content h1,
.ck-content h2,
.ck-content h3,
.ck-content h4,
.ck-content h5,
.ck-content h6 {
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.ck-content h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.ck-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.ck-content h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.ck-content h4 {
  font-size: 1.5rem;
}

.ck-content h5 {
  font-size: 1.25rem;
}

.ck-content h6 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Paragraph */
.ck-content p {
  margin-bottom: 1.6rem;
  color: #475569;
}

/* Links */
.ck-content a {
  color: #0f766e;
  font-weight: 600;
  text-decoration: none;
  position: relative;
}

.ck-content a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.ck-content a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Lists */
.ck-content ul,
.ck-content ol {
  margin: 2rem 0;
  padding-left: 1.5rem;
}

.ck-content ul li,
.ck-content ol li {
  margin-bottom: 1rem;
  color: #475569;
}

.ck-content ul li::marker {
  color: #0f766e;
}

.ck-content ol li::marker {
  color: #0f766e;
  font-weight: 700;
}

/* Blockquote */
.ck-content blockquote {
  margin: 3rem 0;
  padding: 2rem;
  border-left: 5px solid #0f766e;
  background: #f8fafc;
  border-radius: 1rem;
  font-size: 1.2rem;
  color: #334155;
  font-style: italic;
}

/* Images */
.ck-content figure {
  margin: 3rem 0;
}

.ck-content figure img,
.ck-content img {
  width: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
  object-fit: cover;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.08),
    0 8px 20px rgba(0, 0, 0, 0.04);
}

.ck-content figcaption {
  margin-top: 1rem;
  text-align: center;
  color: #64748b;
  font-size: 0.95rem;
}

/* Tables */
.ck-content table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 1.5rem;
  margin: 3rem 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.ck-content thead {
  background: #0f172a;
}

.ck-content thead th {
  color: white;
  padding: 1.25rem;
  text-align: left;
  font-weight: 700;
}

.ck-content tbody td {
  padding: 1.25rem;
  border-bottom: 1px solid #e2e8f0;
  background: white;
  color: #475569;
}

.ck-content tbody tr:hover td {
  background: #f8fafc;
}

/* Code */
.ck-content pre {
  background: #0f172a;
  color: #f8fafc;
  padding: 2rem;
  border-radius: 1.25rem;
  overflow-x: auto;
  margin: 2rem 0;
}

.ck-content code {
  background: #f1f5f9;
  padding: 0.2rem 0.45rem;
  border-radius: 0.45rem;
  font-size: 0.95rem;
}

/* iframe */
.ck-content iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: 0;
  border-radius: 1.5rem;
  overflow: hidden;
  margin: 3rem 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* HR */
.ck-content hr {
  margin: 4rem 0;
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, #cbd5e1, transparent);
}

/* =========================
     MODERN TABS
  ========================== */

.tab-btn.active {
  color: white;
  background: linear-gradient(135deg, #1d326d, #1f42a1);
  box-shadow: 0 10px 30px rgba(22, 19, 185, 0.3);
}

/* =========================
     SHOW MORE BUTTON
  ========================== */

.modern-load-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.modern-load-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1d326d, #1f42a1);
  opacity: 0;
  transition: 0.4s ease;
  z-index: -1;
}

.modern-load-btn:hover::before {
  opacity: 1;
}

.modern-load-btn:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(22, 19, 185, 0.3);
}

/* =========================
     HERO OVERLAY
  ========================== */

.hero-overlay {
  background:
    linear-gradient(to top, rgba(2, 6, 23, 0.85), rgba(2, 6, 23, 0.2)),
    linear-gradient(to right, rgba(15, 118, 110, 0.2), rgba(0, 0, 0, 0));
}

/* =========================
     CUSTOM SCROLLBAR
  ========================== */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

.tab-btn.active {
  color: white;
  background: linear-gradient(135deg, #1d326d, #1f42a1);
  border-color: transparent;
  box-shadow: 0 10px 30px rgba(20, 184, 166, 0.25);
}

.modern-load-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.modern-load-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1d326d, #1f42a1);
  opacity: 0;
  transition: 0.4s;
  z-index: -1;
}

.modern-load-btn:hover::before {
  opacity: 1;
}

.modern-load-btn:hover {
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(31, 20, 184, 0.2);
}

/* CKEDITOR CONTENT */

.ck-content {
  color: #475569;
  font-size: 17px;
  line-height: 1.9;
}

.ck-content h1,
.ck-content h2,
.ck-content h3,
.ck-content h4,
.ck-content h5,
.ck-content h6 {
  color: #1d326d;
  font-weight: 800;
  line-height: 1.15;
  margin-top: 3rem;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.ck-content h1 {
  font-size: clamp(2.7rem, 6vw, 5rem);
}

.ck-content h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.ck-content h3 {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
}

.ck-content p {
  margin-bottom: 1.5rem;
}

.ck-content ul,
.ck-content ol {
  margin: 2rem 0;
  padding-left: 1.5rem;
}

.ck-content li {
  margin-bottom: 1rem;
}

.ck-content blockquote {
  margin: 3rem 0;
  padding: 2rem;
  border-left: 4px solid #1d326d;
  background: #f8fafc;
  border-radius: 1.5rem;
  font-size: 1.2rem;
  font-style: italic;
  color: #334155;
}

.ck-content img {
  width: 100%;
  border-radius: 1.5rem;
  margin: 2rem 0;
}

.ck-content figure {
  margin: 3rem 0;
}

.ck-content figcaption {
  margin-top: 1rem;
  text-align: center;
  color: #64748b;
  font-size: 0.95rem;
}

.ck-content table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 1.5rem;
  margin: 3rem 0;
}

.ck-content thead {
  background: #1d326d;
}

.ck-content thead th {
  color: white;
  padding: 1.2rem;
  text-align: left;
}

.ck-content tbody td {
  padding: 1.2rem;
  border-bottom: 1px solid #e2e8f0;
  background: white;
}

.ck-content iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: 0;
  border-radius: 1.5rem;
  margin-top: 2rem;
}

.bento-card {
  transition: all 0.5s ease;
}

.bento-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.legacy-image img {
  transition: transform 1s ease;
}

.cta-box {
  backdrop-filter: blur(12px);
}

.hero-gradient {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.75)
  );
}

.stat-box {
  transition: all 0.4s ease;
}

.stat-box:hover {
  transform: translateY(-8px);
}

#nab-bar {
  transition: all;
}
.nav-scrolled {
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.85);
}

.gallery-card img {
  will-change: transform;
}

.masonry-grid {
  column-count: 1;
  column-gap: 24px;
}
@media (min-width: 768px) {
  .masonry-grid {
    column-count: 2;
  }
}

@media (max-width: 768px) {


  .footer-img{
    top: -9rem !important;
  }

  footer{
    margin-top: 0;
  }
}
@media (min-width: 1024px) {
  .masonry-grid {
    column-count: 3;
  }
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 24px;
}
.lightbox-active {
  overflow: hidden;
}
.form-input-focus:focus {
  border-color: #a63b00;
  outline: none;
  box-shadow: 0 0 0 2px rgba(166, 59, 0, 0.1);
}
.glass-effect {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
}

.input {
  @apply w-full border border-gray-200 rounded-lg px-3 py-2 text-sm focus:outline-none focus:ring-2 focus:ring-blue-400;
}

.filter-shadow {
  box-shadow: 0px 4px 20px rgba(29, 50, 109, 0.05);
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.custom-range::-webkit-slider-thumb {
  appearance: none;
  width: 16px;
  height: 16px;
  background: #a63b00;
  cursor: pointer;
  border-radius: 50%;
}

.bg-inverse-surface {
  --tw-bg-opacity: 1;
  background-color: rgb(45 49 53 / var(--tw-bg-opacity, 1));
}

.from-background {
  --tw-gradient-from: #000 var(--tw-gradient-from-position) !important;
  --tw-gradient-to: rgb(247 249 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.nav-link {
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 8px;
  color: #444;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover {
  background: rgba(0, 0, 0, 0.05);
  color: black;
}

html {
  scroll-behavior: smooth;
}

#questionModal .overflow-y-auto::-webkit-scrollbar {
  width: 6px;
}

#questionModal .overflow-y-auto::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 999px;
}

#questionModal .overflow-y-auto::-webkit-scrollbar-track {
  background: transparent;
}

.cloud-partition {
  clip-path: ellipse(100% 60% at 50% 100%);
}
.glass-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: repeat(2, 300px);
  gap: 16px;
}
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 400px repeat(2, 200px);
  }
}

.side-nav-wrapper {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
}

/* TAB (visible always) */
.side-tab {
  width: 52px;
  height: 52px;
  background: #111;
  color: white;
  border: none;
  border-radius: 0 12px 12px 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 5px;
  cursor: pointer;
  box-shadow: 4px 4px 20px rgba(0,0,0,0.25);
  transition: 0.3s;
}

.side-tab:hover {
  width: 60px;
}

/* PANEL (hidden by default, attached to tab) */
.side-panel {
  position: absolute;
  left: -19px;
  top: 0;
  width: auto;

  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(14px);

  border-radius: 0 14px 14px 0;
  border-left: 1px solid rgba(0,0,0,0.08);

  padding: 12px;

  transform: translateX(-110%);
  opacity: 0;
  pointer-events: none;

  transition: all 0.35s ease;
}

/* OPEN STATE */
.side-nav-wrapper.open .side-panel {
    transform: translateX(1%);
    opacity: 1;
    pointer-events: auto;

    max-height: 50vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
    width: 350px;
}

.side-panel {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.side-nav-wrapper.open .side-tab{
  width: 400px;
}

.side-nav-wrapper.open .side-tab:hover{
  width: 380px;
}


/* LINKS */
.side-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  color: #222;
  transition: 0.2s;
}

.side-panel a:hover {
  background: rgba(0,0,0,0.06);
  transform: translateX(4px);
}



.container-fluid{
      padding-left: 150px;
    padding-right: 150px;
}

@media (max-width: 1399.98px) {
    .container-fluid {
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media (max-width: 991.98px) {
    .container-fluid {
        padding-left: 5px;
        padding-right: 5px;
    }
}

#utility-bar{
  background-color: #1d305c !important;
  color: #fff;
}

#utility-bar span{
  color: #fff !important;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 2rem;
  }
}

.keywords-section{
    max-width:1100px;
    padding:15px;
    border-radius:25px;
    background:linear-gradient(135deg,#ffffff,#eef4ff);
    box-shadow:0 15px 45px rgba(0,0,0,.08);
}

.keywords-section h2{
    text-align:center;
    margin-bottom:15px;
    font-size:27px;
    color:#222;
    font-weight:700;
}

.keywords-container{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:18px;
}

.keyword{
    text-decoration:none;
    color:#333;
    padding:12px 24px;
    border-radius:50px;
    font-weight:600;
    font-size:15px;
    background:rgba(255,255,255,.7);
    border:1px solid rgba(255,255,255,.4);
    backdrop-filter:blur(12px);
    box-shadow:
        0 10px 20px rgba(0,0,0,.08),
        inset 0 1px 1px rgba(255,255,255,.8);
    transition:.35s ease;
    position:relative;
    overflow:hidden;
}

.keyword::before{
    content:'';
    position:absolute;
    width:0;
    height:100%;
    left:0;
    top:0;
    background:linear-gradient(90deg,#f16522,#e65d1e);
    transition:.35s;
    z-index:-1;
}

.keyword:hover::before{
    width:100%;
}

.keyword:hover{
    color:#fff;
    transform:translateY(-6px) scale(1.05);
    box-shadow:0 15px 35px rgba(79,70,229,.35);
}

@media(max-width:768px){

    .keywords-section{
        padding:25px;
    }

    .keywords-section h2{
        font-size:28px;
    }

    .keyword{
        padding:10px 18px;
        font-size:14px;
    }

}