/* styles.css */
:root {
  --primary: #b10020;
  /* Main brand red */
  --primary-dark: #a00;
  /* Hover/darker variant */
  --secondary: #0f0f0f;
  /* Black */
  --text-dark: #333;
  /* Main text */
  --text-medium: #666;
  /* Secondary text */
  --text-light: #aaa;
  /* Light text */
  --border-light: #eee;
  /* Light borders */
  --bg-light: #f9f9f9;
  /* Light backgrounds */
  --white: #fff;
  --border-color: #717171;
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  /* padding-left: 20px;
    padding-right: 20px; */
}

.container-fluid {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Top Bar */
.top-bar {
  background-color: var(--secondary);
  color: var(--white);
  font-size: 14px;
  padding: 8px 0;
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-item i {
  font-size: 12px;
}

.contact-item a {
  color: var(--white);
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

.top-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-link {
  color: var(--white);
  text-decoration: none;
}

.top-link:hover {
  text-decoration: underline;
}

.calendar-link i {
  margin-right: 5px;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  color: var(--white);
}

.language-switcher i {
  font-size: 16px;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 14px;
  /* font-weight: bold; */
  cursor: pointer;
  padding: 4px 6px;
  transition: white 0.3s, color 0.3s;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 1px;
}

.lang-btn.active {
  background: var(--white);
  color: var(--secondary);
  border-radius: 1px;
}

.separator {
  color: var(--text-light);
  font-weight: bold;
}

/* Header adjustments */
header {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 8px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 60px;
}

.logo {
  z-index: 999;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .top-bar-container {
    flex-direction: column;
    gap: 10px;
  }

  .top-left,
  .top-right {
    gap: 15px;
  }
}

/* =========================
   HEADER & NAV LAYOUT
========================= */

/* .header {
    position: relative;
    background: var(--white);
} */

.header .container {
  display: flex;
  align-items: center;
}

.logo {
  flex: 0 0 auto;
}

.nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav>ul {
  display: flex;
  align-items: center;
  gap: 25px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-weight: bold;
}

.nav ul li a {
  text-decoration: none;
  color: var(--secondary);
  font-size: 14px;
  text-transform: uppercase;

  /* padding: 15px 0; */
}

.nav a {
  text-decoration: none;
  color: var(--text-dark);
}

.nav a:hover {
  color: var(--primary);
}

.nav i {
  font-size: 10px;
  margin-left: 5px;
}

/* =========================
   DROPDOWN BASE
========================= */

.dropdown {
  position: static;
}

.dropdown>a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown>a i {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.dropdown:hover>a i {
  transform: rotate(180deg);
}

.dropdown>.search-toggle i {
  padding: 1.5px;
  /* font-size: 13px; */
}

.dropdown:hover>.search-toggle i {
  transform: rotate(0deg);
}

.nav .active {
  color: var(--primary);
}

/* =========================
   FULL WIDTH DROPDOWN MENU
========================= */

.dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 20px;
  /* top: 100%; */
  /* very imp  top*/
  left: 0;
  right: 0;
  width: 100vw;
  margin-left: 0;
  background: var(--white);
  /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); */
  z-index: 998;
}

.search-dropdown .dropdown-menu {
  padding-top: 50px;
}

/* Show on hover */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* Show on click */
.dropdown.open .dropdown-menu {
  display: block;
}

/* =========================
   DROPDOWN CONTENT CENTERING
========================= */

.dropdown-header,
.dropdown-menu ul {
  max-width: 1200px;
  /* site width */
  margin: 0 auto;
}

/* =========================
   DROPDOWN HEADER
========================= */

.dropdown-header {
  padding: 30px 20px 10px;
  font-size: 10px;
  letter-spacing: 1px;
  color: #555;
  font-weight: normal;
  text-transform: uppercase;
}

/* =========================
   DROPDOWN LINKS
========================= */

.dropdown-menu ul {
  list-style: none;
  padding: 0 20px 30px;
}

.dropdown-menu li a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--secondary);
  text-decoration: none;
}

.dropdown-menu li a:hover {
  color: var(--primary);
}

.dropdown-list {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.dropdown-menu li a i {
  color: gray;
  padding-right: 8px;
}

/* Arrow */
.arrow {
  margin-right: 10px;
  font-size: 16px;
  font-weight: bold;
}

/* =========================
   sub directors 
========================= */

.sub-directors {
  display: none;
  padding-left: 20px;
}

.menu-item.active .sub-directors {
  display: block;
}

/* .toggle-sub.selected {
    color: gray;
} */



@media (hover: hover) and (pointer: fine) {
  .menu-item:hover>.sub-directors {
    display: block;
  }

  .toggle-sub .chevron {
    transition: transform 0.25s ease;
  }

  .menu-item:hover>.toggle-sub .chevron {
    transform: rotate(90deg);
  }

  .menu-item.active>.toggle-sub {
    color: var(--primary);
  }



  /* Active (mobile click) */
  .menu-item.active>.sub-directors {
    display: block;
  }
}

/* =========================
   SEARCH ICON
========================= */

.search-item a {
  font-size: 16px;
}

/* Search Dropdown Styles */
/* .search-dropdown {
    position: relative;
}

.search-dropdown>a {
    font-size: 18px;
    padding: 10px;
    display: block;
}

.search-dropdown>a i {
    transition: color 0.3s;
}

.search-dropdown:hover>a i,
.search-dropdown.open>a i {
    color: var(--primary);
 } */

/* Search Menu - Wide and aligned to the right */
.search-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100vw;

  background: var(--white);
  /* border: 1px solid var( --border-light); */
  /* border-top: 3px solid var(--primary);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); */
  z-index: 999;
  padding: 20px;
}

/* Search Input */
.search-input-wrapper {
  position: relative;
  margin-bottom: 20px;
  max-width: 1230px;
  margin: 0 auto;
}

.search-input-wrapper input {
  width: 100%;
  padding: 12px 12px 12px 40px;
  font-size: 16px;
  border: 0px solid #ddd;
  border-radius: 4px;
  outline: none;
}

.search-input-wrapper input:focus {
  border-color: var(--primary);
}

.search-icon-inside {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 27px;
}

/* Suggestions */
.suggestions-header {
  text-transform: uppercase;
  font-weight: normal;
  font-size: 10px;
  color: var(--text-dark);
  padding-top: 10px;
  padding-right: 10px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  /* border-bottom: 1px solid var( --border-light); */
  max-width: 1150px;
  margin: 0 auto;
}

.search-suggestions ul {
  list-style: none;
}

.search-suggestions a {
  display: block;
  padding: 10px 0;
  color: var(--text-dark);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  transition: color 0.3s;
}

.search-suggestions a:hover {
  color: var(--primary);
}

.search-suggestions .arrow {
  margin-right: 10px;
  font-weight: bold;
  font-size: 16px;
  color: var(--primary);
}

.dropdown-inner {
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 0 20px; */
}

.dropdown-columns {
  display: flex;
  /* align-items: flex-start; */
  gap: 165px;
  /* max-width: 900px; */

  /* margin: 0 auto 30px; */
  /* padding: 0 0px; */
}

.dropdown-columns ul {
  /* max-width: 700px; */
  margin: 0px;
}

.dropdown-column li a {
  /* display: block; */
  /* padding: 0px auto 200px; */
}

/* Mobile Support (≤992px) */
@media (max-width: 992px) {
  .search-menu {
    width: 100%;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    position: static;
    box-shadow: none;
    border: none;
    border-top: none;
    background: var(--bg-light);
  }

  .search-input-wrapper input {
    font-size: 18px;
    /* Prevent zoom on iOS */
  }
}

/* Hero */
.hero {
  background: var(--primary);
  height: 100vh;
  display: flex;
  /* align-items: center; */
  justify-content: center;
  position: relative;
  color: var(--white);
  /* padding-top: 20vh; */
}

.carousel {
  text-align: center;
  width: 100%;
  position: relative;
  touch-action: pan-y;
}

.slide.active {
  display: block;
}

.slide {
  /* position: relative; */
  /* height: 100vh; */
  display: none;
}

.slide.active {
  display: block;
}

.slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

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

.hero-content {
  position: absolute;
  top: 30vh;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 900px;
  width: 90%;
  z-index: 2;
}

.member-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 900px;
  width: 90%;
}

.hero-content h1,
.member-content h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
  /* text-transform: uppercase; */
}

.hero-paragraph {
  margin: 0 auto 40px;
  font-size: 20px;
  font-weight: 200;
  line-height: 1.6;
  max-width: 1000px;
  /* Controls paragraph width - fits nicely in middle */
  padding: 0 20px;
}

.hero-container {
  margin-top: 20px;
  height: 340px;
  width: 100%;
  background-color: var(--white);
}

/* BUTTONS */
.hero-buttons {
  display: flex;

  gap: 30px;
  justify-content: center;
}

.btn {
  /* padding: 14px 28px; */
  padding: 14px;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  z-index: 9;
}

.btn-light {
  background: var(--white);
  color: #b3001b;
}

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

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

/* ARROWS */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--white);
  font-size: 20px;
  /* slightly smaller so it fits inside */
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;

  /* centers the icon */
}

.arrow.left {
  left: 30px;
}

.arrow.right {
  right: 30px;
}

/* DOTS */
.dots {
  position: absolute;
  top: 75vh;
  /* distance from bottom of hero */
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.dot {
  height: 8px;
  width: 8px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: inline-block;
  margin: 0 4px;
}

.dot.active {
  background: var(--white);
}

/* CTA CARDS */
.cta-cards {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: -120px;
  z-index: 3;
}

.card {
  background: var(--white);
  width: 280px;
  padding: 40px 20px;
  text-align: center;
  border: 1px solid #ccc;
}

.card i {
  font-size: 75px;
  color: #b3001b;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.card p {
  font-size: 14px;
  color: var(--text-medium);
}

/* Quick Links */
.quick-links {
  background: var(--white);
  padding: 50px 0;
  text-align: center;
}

.quick-links .container {
  display: flex;
  justify-content: space-around;
}

.link-item {
  width: 30%;
}

/* Programs */
.programs-services {
  background: var(--white);
  /* White background as preferred */
  color: var(--text-dark);
  padding: 200px 0px 120px;
  text-align: center;
}

.programs-services h2 {
  font-size: 40px;
  margin-bottom: 10px;
  color: var(--text-dark);
  /* Dark text on white */
  /* text-transform: uppercase; */
  /* letter-spacing: 1px; */
}

.programs-services .subtitle {
  font-size: 16px;
  color: var(--border-color);
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}



/* Main Event Feature  */
.main-event-feature {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  color: var(--text-dark);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.main-event-feature::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: rgba(177, 0, 32, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.main-event-feature::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 350px;
  height: 350px;
  background: rgba(177, 0, 32, 0.03);
  border-radius: 50%;
  z-index: 0;
}

.main-event-feature .container {
  position: relative;
  z-index: 1;
}

.main-event-feature .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.main-event-feature .section-tag {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.main-event-feature h2 {
  font-size: 42px;
  margin-bottom: 16px;
  color: var(--text-dark);
  font-weight: 700;
}

.main-event-feature .section-subtitle {
  font-size: 18px;
  color: var(--text-medium);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}
/* Carousel Container */
.programs-carousel {
  position: relative;
  max-width: 2000px;
  margin: 0 auto;
}

.programs-viewport {
  overflow: hidden;
  /* max-width: 1100px; */
  padding: 0 100px;

  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

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

.programs-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s ease;
  will-change: transform;
}

/* Program Card */
.program-card {
  background: var(--white);
  color: var(--text-dark);
  flex: 0 0 320px;
  min-height: 380px;
  padding: 40px 16px 16px;
  text-align: center;
  border: 1px solid var(--border-light);
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
  display: flex;
  flex-direction: column;
  /* IMPORTANT */
}

.program-card:hover {
  background: #b3001b;
  color: var(--white);
}

.red-circle {
  width: 100px;
  height: 100px;
  background: var(--primary);
  border-radius: 50%;
  margin: 0 auto;
  overflow: hidden;
  /* clip image to circle */
  display: flex;
  /* center image if needed */
  align-items: center;
  justify-content: center;
}

/* Make the image fill the circle */
.red-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* crop to circle */
  display: block;
}

/* change circle color on hover */
.program-card:hover .red-circle {
  background: var(--white);
}

.program-icon {
  margin-bottom: 30px;
}

.program-card h3 {
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: bold;
  /* letter-spacing: 1px; */
}

.program-card p {
  flex-grow: 1;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 200;
}

.learn-more-btn {
  display: block;
  background: var(--secondary);
  color: var(--white);
  width: 100%;
  text-decoration: none;
  text-transform: uppercase;
  /* font-weight: bold; */
  font-size: 0.9rem;
  padding: 12px 30px;
  /* transition: background 0.3s; */
  margin-top: auto;
  /* sticks button to bottom */
  align-self: center;
}

/* when card is hovered */
.program-card:hover .learn-more-btn {
  background: var(--white);
  color: var(--primary);
  /* red text */
}

/* Navigation - Bottom Right */
.programs-services .container {
  position: relative;
}

/* Nav bar matches container width & aligns right */
.programs-nav {
  position: absolute;
  bottom: -60px;
  left: 0;
  right: 0;
  /* makes it same width as container */
  display: flex;
  justify-content: flex-end;
  /* push arrows to the right */
  gap: 10px;
}

.programs-arrow,
.updates-arrow {
  background: var(--border-light);
  color: var(--border-color);
  border: none;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.programs-arrow :hover,
.updates-arrow :hover {
  /* background: var(--white); */
  color: var(--primary);
  /* width: 25px;
  height: 25px;
  border-radius: 50%; */
}

.programs-arrow.left {
  left: -25px;
}

.programs-arrow.right {
  right: -25px;
}

.programs-track::-webkit-scrollbar {
  display: none;
}

.programs-track {
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

hr {
  border: none;
  height: 1px;
  background-color: #e9e9e9;
}

.icon {
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.mid-banner {
  width: 100%;
  overflow: hidden;
  padding-bottom: 80px;
  padding-top: 80px;
}

.mid-banner img {
  width: 100%;
  height: auto;
  /* height: 200px; */
  /* fixed height */
  display: block;
  object-fit: cover;
  /* fills area without distortion */
}

/* Optional fixed height style */
/* @media (min-width: 768px) {
    .mid-banner img {
        height: 100px;
    }
} */
/* 
@media (max-width: 767px) {
    .mid-banner img {
        height: 180px;
    }
} */

/* Events */
.upcoming-events {
  background: var(--white);
  color: var(--secondary);
  padding: 80px 0;
  text-align: center;
  border-top: 2px solid var(--border-light);
  border-bottom: 2px solid var(--border-light);
}

.upcoming-events h2 {
  font-size: 40px;
  /* color: #999; */
  margin-bottom: 10px;
  /* text-transform: uppercase; */
}

.upcoming-events .subtitle {
  font-size: 16px;
  color: var(--border-color);
  margin-bottom: 40px;
}

/* Filters */
.event-filters {
  display: flex;
  justify-content: flex-end;
  /* move filters to the right */
  gap: 20px;
  /* padding-bottom: 8px; */
  margin-bottom: 15px;

  border-bottom: 2px solid var(--border-light);
  /* bottom border bar */
}

.event-filters .filter {
  color: var(--text-light);
  text-decoration: none;
  font-size: 1rem;
  text-transform: uppercase;

  padding-bottom: 8px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
}

.event-filters .filter.active,
.event-filters .filter:hover {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

/* Layout */
.events-layout {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* Calendar */
.event-calendar {
  background: var(--white);
  color: var(--text-dark);
  padding: 20px;
  width: 350px;
  flex-shrink: 0;
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); */
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.calendar-header h3 {
  /* font-size: 1.4rem; */
  text-transform: uppercase;
}

.calendar-nav button {
  border: none;
  color: var(--text-dark);
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  /* width: 48px;
    height: 48px; */
  padding: 5px;
}

.calendar-table {
  width: 100%;
  border-collapse: collapse;
}

.calendar-table td {
  position: relative;
  text-align: center;
  padding: 14px 0;
  font-size: 1rem;
  transition: background 0.3s;
}

.calendar-table td:hover {
  background: #f0f0f0;
  /* border-radius: 50%; */
}

.calendar-table .today {
  background: #000 !important;
  color: var(--white);
  font-weight: bold;
  /* border-radius: 8px; */
}

.calendar-table .has-event {
  color: var(--white);
  font-weight: bold;
  background: var(--primary);
}

.calendar-table .has-event:hover {
  background: var(--primary);
  color: var(--white);
  /* border-radius: 8px; */
}

.event-tooltip {
  margin-top: 14px;
  background: var(--white);
  border: 1px solid #ddd;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  padding: 14px 16px;
  width: 100%;
  font-size: 0.85rem;
  display: none;
  justify-items: start;
}

.event-tooltip .calendar-event-date {
  color: var(--text-medium);
  font-size: 0.7rem;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.event-tooltip .calendar-event-title {
  font-weight: 700;
  margin-bottom: 6px;
}

.event-tooltip .calendar-event-location {
  color: var(--text-medium);
  display: flex;
  gap: 6px;
  align-items: center;
}

/* Event List */
/* Updated Layout & Event List Wrapper */
.events-layout {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* Calendar remains unchanged - stays fixed */
.event-calendar {
  background: var(--white);
  color: var(--text-dark);
  padding: 20px;
  width: 360px;
  flex-shrink: 0;
  border: 1px solid #e8e8ed;
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); */
}

/* New: White Scrollable Event List Container */
.events {
  width: 100%;
}

.event-details {
  display: flex;
  gap: 20px;
}

.event-list-wrapper {
  flex: 1;
  /* background: var(--white); */
  color: var(--text-dark);
  /* padding: 10px; */
  max-height: 580px;
  /* Adjust height as needed */
  overflow-y: auto;
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); */
  /* border-radius: 8px; */
}

.event-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Event Item - Updated for White Background */
.event-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-light);
}

.event-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: start;
  /* gap: 10px; */
}

.event-image {
  width: 72px;
  height: 72px;
  border-radius: 1px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--primary);
}

/* make the image fill the box */
.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.day {
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
}

.event-title {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--text-dark);
}

.event-location {
  font-size: 12px;
  color: var(--text-medium);
}

.view-event-btn {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 12px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  border-radius: 1px;
  transition: all 0.3s;
  min-width: 140px;
  text-align: center;
}

.view-event-btn:hover {
  background: var(--primary);
  color: var(--white);
}

/* Scrollbar Styling (Webkit) */
.event-list-wrapper::-webkit-scrollbar {
  width: 8px;
}

/* .event-list-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.event-list-wrapper::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
} */

.event-list-wrapper::-webkit-scrollbar-thumb:hover {
  background: #a00;
}

/* Updates */
.latest-updates {
  background: var(--white);
  color: #000;
  padding: 80px 0;
}

.latest-updates .container {
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-header h2 {
  font-size: 40px;
  /* color: #999; */
  /* text-transform: uppercase; */
  margin-bottom: 10px;
}

.section-header .subtitle {
  font-size: 16px;
  color: var(--border-color);
  margin-bottom: 0;
}

.view-more-link {
  position: absolute;
  bottom: 0;
  right: 0;
  color: var(--primary);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 0.9rem;
}

.view-more-link:hover {
  /* text-decoration: underline; */
  font-weight: bold;
}

/* Carousel */
.updates-carousel {
  position: relative;
}

.updates-viewport {
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.updates-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s ease-in-out;
}

/* Update Card */
.update-card {
  background: var(--white);
  color: var(--text-dark);
  flex: 0 0 420px;
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); */
  overflow: hidden;
  right: 0;
  border: 2px solid #e5e5e5;
}

.update-image-wrapper {
  position: relative;
}

.update-image-wrapper img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  padding: 10px;
}

.update-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--white);
  color: var(--text-dark);
  padding: 5px 12px;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 500;
}

.update-content {
  padding: 15px 12px;
  flex-grow: 1;
}

.update-date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: var(--text-medium);
  margin-bottom: 10px;
}

.update-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.3;
  color: var(--text-dark);
}

.update-content p {
  font-size: 12px;
  line-height: 1.6;
  margin: 12px 0;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--border-color);
  margin-bottom: 20px;
}

.update-footer {
  display: flex;
  padding-top: 12px;
  margin-top: auto;
  justify-content: space-between;
  align-items: center;
}

.show-more-btn {
  background: #000;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 10px;
  padding: 8px 18px;
  transition: background 0.3s;
}

.show-more-btn:hover {
  background: var(--primary);
}

.update-social-icons a {
  color: var(--text-medium);
  margin-left: 10px;
  /* font-size: 1.1rem; */
  transition: color 0.3s;
}

.update-social-icons a:hover {
  color: var(--primary);
}

/* Navigation Arrows - Bottom Right */
.updates-nav {
  position: absolute;
  bottom: -60px;
  right: 0;
  display: flex;
  /* justify-content: flex-end; */
  gap: 10px;
}

/* .updates-arrow {
    background: var(--text-dark);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.3s;
}

.updates-arrow:hover {
    background: var(--primary);
} */

/* Directors */
/* Board of Directors Section - Black Background */
.board-directors {
  background-color: var(--primary);
  /* background: var(--white); */
  /* color: var(--text-dark); */
  color: var(--white);
  padding-top: 50px;
  padding-bottom: 70px;
  text-align: center;
}

.board-directors h2 {
  text-transform: uppercase;
}

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

.section-header h2 {
  font-size: 40px;
  font-weight: bold;

  margin-bottom: 15px;
}

.header-subtitle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 300;
}

.current-directors {
  font-weight: bold;
}

.view-all-link {
  position: absolute;
  bottom: 0;
  right: 0;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 0.9rem;
}

/* .view-all-link:hover {
    background: var(--white);
    color: #000;
} */

.brand-logos {
  padding: 40px 0;
}

.logos-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;

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

/* Logo card style */
.logo-card {
  background: var(--white);
  border-radius: 14px;
  /* box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06); */
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-card img {
  max-width: 140px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Tablet */
@media (max-width: 992px) {
  .logos-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile landscape */
@media (max-width: 768px) {
  .logos-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .logos-container {
    grid-template-columns: 1fr;
  }
}

/* directors */
.directors-carousel {
  position: relative;
  padding-left: 100px;
  /* margin: 0 auto; */
}

/* Make it horizontally scrollable */
.directors-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  /* scrollbar-width: thin; */
  /* Firefox */
}

/* Optional — show nice scroll on WebKit */
/* .directors-viewport::-webkit-scrollbar {
    height: 6px;
} */

.directors-viewport::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.directors-viewport::-webkit-scrollbar {
  display: none;
}

.directors-track {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
}

/* Director Card */
.director-card {
  flex: 0 0 220px;
  background: var(--white);
  color: var(--text-dark);
  overflow: hidden;
  min-width: 260px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.director-image {
  height: 280px;
  overflow: hidden;
}

.director-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.director-card:hover .director-image img {
  transform: scale(1.1);
}

.director-info {
  background: var(--primary);
  color: var(--white);
  border: 1px solid var(--border-light);
  padding: 20px 15px;
  text-align: center;
}

.position {
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 8px;
  opacity: 0.9;
}

.director-info h3 {
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0;
}

/* Navigation Arrows - Bottom Right */
.directors-nav {
  position: absolute;
  bottom: -60px;
  right: 0;
  display: flex;
  gap: 10px;
}

.directors-arrow {
  background: var(--text-dark);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.3s;
}

.directors-arrow:hover {
  background: var(--primary);
}

/* Newsletter */
.newsletter {
  background: var(--white);
  color: #000;
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid #e5e5e5;
}

.newsletter .container {
  max-width: 800px;
}

.newsletter h2 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 15px;
  text-transform: uppercase;
  /* color: #000; */
}

.newsletter .subtitle {
  font-size: 16px;
  color: var(--border-color);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Form */
.newsletter-form {
  display: flex;
  justify-content: center;
  align-items: stretch;
  /* Ensures both parts have same height */
  gap: 0;
  /* No gap - they should touch */
  max-width: 800px;
  margin: 0 auto;
  height: 100px;
  /* Increased height for better proportions */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  /* Optional: subtle shadow for depth */
}

.input-wrapper {
  position: relative;
  flex: 1;
  max-width: 550px;
  background: var(--primary);
  /* Solid red background */
  height: 100%;
}

.input-wrapper i {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 1.6rem;
  pointer-events: none;
  /* Prevent icon from blocking input */
  z-index: 2;
}

.input-wrapper input {
  width: 100%;
  height: 100%;
  padding: 0 30px 0 80px;
  /* More left padding to clear the icon */
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  outline: none;
}

.input-wrapper input::placeholder {
  color: var(--white);
  opacity: 0.8;
  font-weight: 500;
  text-transform: uppercase;
}

/* .input-wrapper input:focus {
    box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.3);
} */

/* Subscribe Button */
.newsletter-form button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 50px;
  height: 100%;
  background: var(--white);
  color: var(--primary);
  border: 20px solid var(--primary);
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: #f0f0f0;
  color: var(--primary);
}

/* Footer */
/* Footer Styles */
.footer {
  background: #111;
  color: var(--text-light);
  font-size: 0.95rem;
}

.footer-container {
  display: flex;
  padding: 80px 0 60px;
  gap: 60px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-logo-desc {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
}

.footer-logo img {
  height: 80px;
  /*  */
}

.footer-description {
  margin-top: 20px;
  line-height: 1.7;
  color: var(--white);
}

.footer-columns {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}

.footer-column {
  min-width: 180px;
}

.footer-column h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 25px;
  text-transform: capitalize;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: var(--primary);
}

/* Contact specific */
.address,
.phone,
.email a,
.hours {
  display: block;
  margin-bottom: 12px;
  color: var(--white);
}

.email a {
  color: var(--white);
  text-decoration: none;
}

.email a:hover,
.phone:hover {
  color: var(--primary);
}

/* Social Icons */
.social-icons {
  /* margin-top: 40px; */
}

.social-icons a {
  color: var(--text-light);
  font-size: 1.4rem;
  margin-right: 20px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: var(--primary);
}

/* Bottom Bar */
.footer-bottom {
  background: var(--white);
  padding: 25px 0;
  border-top: 1px solid #222;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  color: var(--text-medium);
  font-size: 0.9rem;
}

.legal-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.legal-links a {
  color: var(--text-medium);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.legal-links a:hover {
  color: var(--primary);
}

.brand,
.footer-brand {
  display: flex;
  align-items: flex-end;
  /* bottom-align both */
  gap: 6px;
}

.footer-brand {
  color: white;
}

.footer-logo {
  max-width: 120px;
  height: auto;
}

.powered-near {
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
}

.powered-by {
  font-size: 12px;
  padding-bottom: 12px;
}

/* Mobile */
@media (max-width: 480px) {
  .footer-brand {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    align-items: center;
    /* look nicer on very small screens */
  }
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-columns {
    justify-content: center;
    gap: 50px;
  }

  .social-icons {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .footer-column {
    text-align: center;
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }

  .legal-links {
    margin-top: 15px;
    gap: 20px;
  }
}
/* Himalayan Mela Main Event Feature - Two Column Layout */
.main-event-feature {
  background: var(--bg-light);
  padding: 80px 0;
}

.main-event-layout {
  display: flex;
  gap: 60px;
  align-items: center;
}

.main-event-date {
  flex: 0 0 200px;
}

.date-box {
  background: var(--primary);
  color: var(--white);
  padding: 40px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  border-radius: 4px;
}

.date-day {
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.date-month {
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.date-year {
  font-size: 20px;
  font-weight: 400;
  opacity: 0.9;
}

.main-event-content {
  flex: 1;
  display: flex;
  gap: 30px;
  align-items: center;
  background: var(--white);
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.main-event-image {
  flex: 0 0 280px;
}

.main-event-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 4px;
}

.main-event-info {
  flex: 1;
}

.main-event-info h2 {
  font-size: 32px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.event-date-text {
  font-size: 14px;
  color: var(--text-medium);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.event-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-medium);
  margin-bottom: 24px;
}

@media (max-width: 992px) {
  .main-event-layout {
    flex-direction: column;
    gap: 30px;
  }
  
  .main-event-date {
    flex: 0 0 auto;
  }
  
  .date-box {
    width: 180px;
    padding: 30px 20px;
  }
  
  .main-event-content {
    flex-direction: column;
  }
  
  .main-event-image {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .main-event-feature {
    padding: 50px 0;
  }
  
  .main-event-content {
    padding: 20px;
  }
  
  .main-event-info h2 {
    font-size: 24px;
  }
  
  .date-day {
    font-size: 56px;
  }
  
  .date-month {
    font-size: 20px;
  }
}
/* ============================================
   NEPAL TRAVEL RESOURCES SECTION
   ============================================ */

.nepal-travel-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  position: relative;
  overflow: hidden;
}

.nepal-travel-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(177, 0, 32, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.nepal-travel-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(177, 0, 32, 0.03);
  border-radius: 50%;
  z-index: 0;
}

.nepal-travel-section .container {
  position: relative;
  z-index: 1;
}

.nepal-travel-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.nepal-travel-section .section-tag {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.nepal-travel-section .section-header h2 {
  font-size: 42px;
  color: var(--text-dark);
  margin-bottom: 16px;
  font-weight: 700;
}

.nepal-travel-section .section-subtitle {
  font-size: 18px;
  color: var(--text-medium);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Travel Categories */
.travel-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.travel-category {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.travel-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.category-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border-light);
}

.category-header i {
  font-size: 32px;
  color: var(--primary);
}

.category-header h3 {
  font-size: 24px;
  color: var(--text-dark);
  font-weight: 700;
  margin: 0;
}

/* Resource Links */
.resource-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.resource-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--bg-light);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.resource-link:hover {
  background: #fff;
  border-left-color: var(--primary);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transform: translateX(5px);
}

.resource-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.resource-content {
  flex: 1;
}

.resource-content h4 {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 4px;
  font-weight: 600;
}

.resource-content p {
  font-size: 14px;
  color: var(--text-medium);
  margin: 0;
  line-height: 1.5;
}

.resource-link > i {
  flex-shrink: 0;
  color: var(--primary);
  font-size: 18px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.resource-link:hover > i {
  opacity: 1;
}

/* Travel CTA */
.travel-cta {
  background: linear-gradient(135deg, var(--primary) 0%, #d32f2f 100%);
  border-radius: 16px;
  padding: 50px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(177, 0, 32, 0.2);
}

.cta-content h3 {
  font-size: 32px;
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 700;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.travel-cta .btn-primary {
  background: var(--white);
  color: var(--primary);
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.travel-cta .btn-primary:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
  .travel-categories {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .nepal-travel-section .section-header h2 {
    font-size: 36px;
  }
  
  .travel-cta {
    padding: 40px 30px;
  }
  
  .cta-content h3 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .nepal-travel-section {
    padding: 60px 0;
  }
  
  .nepal-travel-section .section-header h2 {
    font-size: 32px;
  }
  
  .nepal-travel-section .section-subtitle {
    font-size: 16px;
  }
  
  .travel-category {
    padding: 24px;
  }
  
  .category-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .category-header h3 {
    font-size: 20px;
  }
  
  .resource-link {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
  }
  
  .resource-link > i {
    display: none;
  }
  
  .travel-cta {
    padding: 30px 20px;
  }
  
  .cta-content h3 {
    font-size: 24px;
  }
  
  .cta-content p {
    font-size: 16px;
  }
}