/* FONT IMPORT */

/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@600&display=swap");

/* Local Font */
@font-face {
  font-family: "Conthrax";
  src: url("../fonts/conthrax-sb.ttf");
}

/* @font-face {
  font-family: "Conthrax Sb";
  src: url("..fonts/conthrax-sb.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "anus";
  src: url("..fonts/conthrax-sb.woff") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
} */
:root {
  --white: #fff;
  --black: #000;
  --primary: #a23a35;
  --secondary: #2e5d6c;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  position: relative;
  background: #fff;
  overflow-x: hidden;
  height: 100%;
  font-family: "Inter", sans-serif;
}

section {
  position: relative;
  padding: 6rem 0;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  color: #828282;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  font-family: "Bebas Neue", sans-serif;
}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

figure {
  margin: 0;
}

/* Cursor Start */

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  margin-left: 2px;
  margin-top: 2px;
  width: 7px;
  height: 7px;
  z-index: 10000001;
  background-color: var(--primary);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  opacity: 0.3;
}

/* Cursor End */

/* PRELOADER */

.preLoader {
  width: 100%;
  height: 100%;
  z-index: 1111;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.preLoader.black {
  background-color: var(--secondary);
  z-index: 11113;
}

.preLoader.white {
  z-index: 11112;
  background-color: var(--primary);
}

/* PRELOADER */

/* GLOBAL CSS */

.themeBtn {
  background: var(--primary);
  font-size: 1.125rem;
  color: var(--white);
  text-transform: capitalize;
  font-weight: 500;
  display: inline-block;
  padding: 1.04em 1.96em;
  border-radius: 6px;
  line-height: normal;
}

.themeBtn.borderBtn {
  background: transparent;
  border: 1px solid #fff;
  padding: 1.04em 2em;
}

/* Header Styles */
.gj-header {
  position: absolute;
  /* background-color: #000; */
  padding: 0.5rem 4rem;
  z-index: 2;
  left: 0;
  right: 0;
  /* margin: 7px 150px 0 150px; */
  border-radius: 50px;
}

header .navbar-expand-lg .navbar-collapse {
  background: #000;
  padding: 1rem;
  border-radius: 40px;
  z-index: 99;
  position: relative;
}

.navbar-brand img {
  width: 160px;
}

.gj-navbar {
  background: transparent;
  padding: 0;
}

.gj-brand .gj-logo-icon {
  border-radius: 4px;
}

.gj-nav-list .nav-link {
  color: #fff !important;
  font-size: 0.8rem;
  font-weight: 600;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
  transition: color 0.3s ease;
  /* font-family: "Oswald", sans-serif; */
  font-family: "Conthrax";
  text-transform: uppercase;
}

.w-126{
  width: 126px !important;
}

.gj-nav-list .nav-link:hover {
  color: #fff !important;
}

/* Buttons */
.gj-btn-primary {
  background-color: #a23a35;
  border: none;
  color: #fff;
  padding: 0.6rem 1.5rem;
  /* font-family: 'Roboto', sans-serif; */
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: capitalize;
}

.gj-btn-primary:hover {
  background-color: #d65548;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(185, 70, 58, 0.4);
  color: #fff;
}

/* Hero Section Styles */
.gj-hero-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background: url(../images/banner-bg.webp);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  padding-bottom: 0rem;
}

/* .gj-hero-section video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

.gj-hero-section .jet-img {
  position: absolute;
  top: 11%;
  right: 1%;
  z-index: 2;
  width: 10%;
  /* Starting width */
  animation: breathe 5s ease-in-out forwards;
}

.gj-jet-icon {
  width: 10%;
}

@keyframes breathe {
  0% {
    width: 10%;
  }

  100% {
    width: 70%;
  }
}

/* @keyframes jetimage {
  0% {
    width: 10%;
  }
  100% {
    width: 80%;
  }
} */

.gj-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(46, 93, 108, 0.9) 0%,
    rgba(46, 93, 108, 0) 18%,
    rgb(46, 93, 108) 100%
  );
  z-index: 1;
}

.gj-hero-container {
  position: relative;
  z-index: 3;
  /* width: 100%; */
}

.gj-hero-row {
  margin-bottom: 10rem;
}

.gj-hero-title {
  font-size: 90px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.gj-hero-desc {
  /* font-family: 'Roboto', sans-serif; */
  text-align: left;
  font-weight: 300;
  color: #e0e0e0;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

/* Large Background Text */
.gj-bg-text-wrapper {
  position: absolute;
  bottom: -2%;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 2;
  text-align: center;
  white-space: nowrap;
}

.gj-bg-text {
  font-size: 10rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.15);
  text-transform: uppercase;
  display: block;
  transform: scaleY(1.2);
  font-family: "Conthrax";
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .gj-hero-section {
    padding-top: 80px;
    /* Offset for fixed header */
    padding-bottom: 4rem;
  }

  .gj-hero-title {
    font-size: 2.5rem;
    text-align: center;
  }

  .gj-hero-desc,
  .gj-hero-cta {
    text-align: center;
    margin: 0 auto;
    display: block;
    width: fit-content;
  }

  .gj-bg-text {
    font-size: 6rem;
  }

  .gj-navbar {
    padding: 0.5rem 0;
  }
}

/* --- Section j9g9qj --- */

.gj-mission-wrapper {
  background-color: #ffffff;
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Top Mission Text */
.gj-top-statement {
  font-size: 1rem;
  color: #333232;
  line-height: 1.6;
  margin-bottom: 50px;
}

.gj-top-statement strong {
  font-weight: 600;
  color: #333232;
}

/* Main Heading Style */
.gj-primary-heading {
  font-weight: 400;
  font-size: 60px;
  line-height: 1.1;
  color: #0e0e0e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Established Subheading Style */
.gj-established-heading {
  font-weight: bold;
  font-size: 100px;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
  font-family: "Bebas Neue";
}

/* Paragraph Text */
.gj-description-text {
  font-size: 1rem;
  color: #333232;
  line-height: 1.8;
  font-weight: 400;
  width: 77%;
  margin: auto;
}

/* Image Styling & Animation */
.gj-jet-figure {
  margin: 0;
  padding: 0;
  display: inline-block;
  overflow: hidden;
}

.gj-jet-icon {
  transition: transform 0.5s ease, opacity 0.3s ease;
  opacity: 0.8;
  max-width: 200px;
}

.gj-jet-icon:hover {
  transform: scale(1.1) translateY(-5px);
  opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .gj-primary-heading {
    font-size: 28px;
  }

  .gj-established-heading {
    font-size: 36px;
  }

  .gj-description-text {
    font-size: 14px;
  }
}

section#section-j9g9qj {
  padding: 0;
}

/* --- Section bnyhf --- */

/* .club-access-section {
  background-color: #345b6b;
  padding: 100px 0;
  position: relative;
  border-top-left-radius: 48% 15vw;
  border-top-right-radius: 48% 15vw;
  overflow: hidden;
} */
/* .club-access-section {
  background-color: #345b6b;
  padding: 100px 0;
  position: relative;
  border-top-left-radius: 0; 
  border-top-right-radius: 0; 
  overflow: hidden;
  transition: border-top-left-radius 1.5s ease-out,
    border-top-right-radius 1.5s ease-out;
} */

.club-access-section {
  background-color: #345b6b;
  padding: 100px 0;
  position: relative;
  border-top-left-radius: 0;
  /* Initially 0 */
  border-top-right-radius: 0;
  /* Initially 0 */
  overflow: hidden;
  /* Transition ab nahi chahiye, GSAP handle karega */
}

/* Headings */
.ca-main-heading {
  font-size: 280px;
  font-weight: 400;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 0.9;
  margin-bottom: 5px;
}

.ca-sub-heading {
  font-size: 60px;
  font-weight: 400;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.ca-description {
  color: #fff;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
  margin-bottom: 3rem;
}

/* Card Styles */
.ca-card {
  background-color: #1a1a1a;
  padding: 20px;
  border-radius: 4px;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #2a2a2a;
}

.ca-image-wrapper {
  background-color: #3e6270;
  padding: 15px;
  border-radius: 2px;
  transition: background-color 0.4s ease;
}

.ca-image-wrapper img {
  display: block;
  border-radius: 2px;
}

.ca-content {
  margin-top: 20px;
  padding: 0 5px;
}

.ca-card-title {
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-weight: 400;
}

.ca-card-subtitle {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0;
  font-weight: 400;
}

/* Button/Icon */
.ca-action-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #000000;
  color: #ffffff;
  font-size: 0.7rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ca-action-btn:hover {
  text-decoration: none;
  color: #fff;
}

/* Hover Effects (CSS Only) */
.ca-card:hover .ca-image-wrapper {
  background-color: #b84a46;
  /* Red color on hover */
}

.ca-card:hover .ca-action-btn {
  background-color: #b84a46;
  transform: translateX(5px);
}

.ca-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .ca-main-heading {
    font-size: 3.5rem;
  }

  .club-access-section {
    border-top-left-radius: 50% 4vw;
    border-top-right-radius: 50% 4vw;
  }
}

section#section-bnyhf {
  padding: 0;
}

/* --- Section juxwij --- */

.flyin-experience-section {
  background-color: #fff;
  overflow: hidden;
}

/* Left Column Styles */
.flyin-main-heading {
  font-size: 75px;
  line-height: 1;
  color: #0e0e0e;
  letter-spacing: 1px;
  font-weight: 400;
}

.flyin-jet-img {
  max-width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.flyin-experience-section:hover .flyin-jet-img {
  transform: translateY(-10px) scale(1.02);
}

.flyin-view-btn {
  background-color: #9e3b34;
  border: none;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-size: 1.125rem;
}

.flyin-view-btn:hover {
  background-color: #7a2b25;
  transform: translateY(-2px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  color: #fff;
  text-decoration: none;
}

/* Right Column List Styles */
.flyin-events-list {
  border-top: 1px solid #e9ecef;
}

.flyin-event-item {
  border-bottom: 1px solid #e9ecef;
  padding: 25px 0;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.flyin-event-item:hover {
  background-color: #fcfcfc;
}

.flyin-event-title {
  font-size: 36px;
  font-weight: 400;
  color: #000;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex: 1;
  /* min-width: 200px; */
  font-weight: 400;
}

.flyin-event-meta {
  flex-shrink: 0;
}

.flyin-date-label {
  font-size: 1rem;
  color: #000;
  font-weight: 500;
  font-weight: 400;
}

.flyin-date-badge {
  background-color: #355c66;
  color: #fff;
  font-weight: 400;
  padding: 6px 12px;
  border-radius: 3px;
  font-size: 0.85rem;
  min-width: 100px;
  text-align: center;
  transition: background-color 0.3s ease;
  margin-right: 12rem;
}

.flyin-event-item:hover .flyin-date-badge {
  background-color: #26434b;
}

.flyin-arrow-icon {
  font-size: 1.2rem;
  color: #333;
  transition: transform 0.3s ease;
}

.flyin-event-item:hover .flyin-arrow-icon {
  transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .flyin-main-heading {
    font-size: 2.5rem;
  }

  .flyin-event-item {
    padding: 20px 0;
  }

  .flyin-event-meta {
    width: 100%;
    margin-top: 10px;
    justify-content: flex-end;
  }
}

/* Section Base Styles */
.georgia-jets-cta {
  position: relative;
  width: 100%;
  padding: 160px 0;
  overflow: hidden;
}

/* Background Image Handling */
.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.cta-background .bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Dark Overlay to match design contrast */
.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Content Typography */
.cta-subtitle {
  font-size: 75px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  color: #fff;
}

.cta-title {
  font-size: 160px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1;
  margin-top: 0;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
  color: #fff;
}

/* Responsive Typography */
@media (max-width: 768px) {
  .cta-subtitle {
    font-size: 1rem;
  }

  .cta-title {
    font-size: 3rem;
  }

  .georgia-jets-cta {
    padding: 100px 0;
  }
}

/* Custom Button Style */
.theme-btn {
  background-color: #a63e3b;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 30px;
  border-radius: 4px;
  border: 1px solid #a63e3b;
  transition: all 0.3s ease;
  text-transform: none;
}

.theme-btn:hover {
  background-color: #8c3230;
  border-color: #8c3230;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.theme-btn i {
  font-size: 0.9em;
  transform: rotate(-45deg);
}

/* Moment start */
.moment-head {
  text-align: center;
  margin-bottom: 30px;
}

.moment-head h2 {
  color: #000;
  font-size: 17.5rem;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1;
}

.moment-head h3 {
  font-size: 3.75rem;
  font-weight: 400;
  color: #000;
}

.moment-img {
  text-align: center;
  position: relative;
  margin: 50px 0;
}

.moment-img .play {
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #a23a35;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.view-full {
  text-align: center;
  margin-top: 50px;
}

/* Moment end */

/* exclusive start */
.exclusive {
  background-color: #2e5d6c;
}

.exclusive-head {
  text-align: center;
  margin-bottom: 42px;
}

.exclusive-head .mainHead {
  margin-bottom: 30px;
  font-size: 4.6875rem;
  text-transform: uppercase;
  font-weight: 400;
  color: #fff;
}

.exclusive-head p {
  color: #fff;
  font-size: 1rem;
}

.exclusive-card {
  padding: 0 20px 28px;
  background-color: #fff;
  border-radius: 6px;
}

.exclusive-card figure {
  background-color: #d9d9d9;
  text-align: center;
  padding: 20px 0 40px;
  border-radius: 0 0 148px 148px;
  margin-bottom: 32px;
}

.exclusive-card h4 {
  font-size: 2.25rem;
  font-weight: 400;
  text-align: center;
}

.login-to {
  text-align: center;
  margin-top: 50px;
}

/* exclusive end */

/* testimonial start */
.testimonial {
  padding: 8rem 0;
}

.testimonial-card {
  text-align: center;
}

.testimonial-card figure {
  margin-bottom: 36px;
}

.testimonial-card p {
  margin-bottom: 16px;
  font-size: 1.625rem;
  color: #333232;
}

.testimonial-card h5 {
  font-size: 14px;
  font-weight: 500;
  color: #0e0e0e;
  letter-spacing: 0.5px;
}

.testimonial_slide .swiper-slide {
  opacity: 30%;
}

.testimonial_slide .swiper-slide-active {
  opacity: 1;
}

.testimonial > img {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: -40%;
  transform: translateX(-50%);
}

/* testimonial end */

.ready {
  background-color: #2e5d6c;
  padding: 0;
  overflow: hidden;
}

/* .ready > img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
} */

.ready {
  position: relative;
  overflow: hidden;
}

/* .ready > img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
} */

.track {
  display: flex;
  width: fit-content;
  animation: marquee 20s linear infinite;
}

.track h1 {
  font-size: 10rem;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  font-weight: 400;
  padding: 0 40px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* footer css start  */
footer {
  background-color: #000000;
  padding-top: 130px;
}

.footerLogo img {
  width: 160px;
}

footer h3 {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 24px;
}

footer p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  line-height: 1.5;
  width: 20.3rem;
  margin-top: 34px;
}

footer .quiklists a {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}

footer .quiklists .telephone a {
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -1.2px;
}

footer .quicklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

footer .quicklist li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  font-weight: 400;
}

footer .calFoter ul li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

footer .calFoter ul li a i {
  color: #fcfcfc;
}

footer .calFoter {
  display: flex;
}

footer .copyRight p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  width: unset;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px 0;
}

/* footer css end  */

.gj-header .btn {
  border-radius: 50px;
}

.gj-btn-primary {
  background: var(--primary);
  font-size: 1.125rem;
  color: var(--white);
  text-transform: capitalize;
  font-weight: 500;
  display: inline-block;
  padding: 1.04em 1.96em;
  border-radius: 6px;
  line-height: normal;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  font-family: "Conthrax Sb", sans-serif;
  text-transform: uppercase;
}

.gj-btn-primary .fa-plane {
  display: inline-block;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.gj-btn-primary:hover {
  background: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.gj-btn-primary:hover .fa-plane {
  transform: translateX(100px) translateY(-30px) rotate(45deg);
  opacity: 0;
}

/* innerpages Start */

.innerBan .overlay {
  position: absolute;
  text-align: left;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
}

.innerBan h2 {
  font-size: 100px;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 400;
  text-align: center;
  font-family: "Conthrax", sans-serif;
  text-transform: uppercase;
  font-size: 60px !important;
  margin: 0;
}

.innerBan {
  position: relative;
}

.text-center.log-out {
  position: absolute;
  top: 8%;
  left: 50%;
  z-index: 999;
  transform: translateX(-50%);
}

.promtwraps1 {
  background: #d9d9d9;
  border-radius: 6px;
  padding: 60px 36px;
  text-align: center;
  transition: 0.5s ease;
}

.promtwraps1 h3 {
  color: #0e0e0e;
  font-size: 2rem;
  margin-top: 50px;
}

.promtwraps1:hover {
  background: #a23a35;
}

.promtwraps1:hover figure img {
  filter: brightness(0) invert(1);
}

.promtwraps1:hover h3 {
  color: #fff;
}
.media-sec figure img {
  width: 100%;
}

h2.mainHead {
  font-size: 75px;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  /* margin: 0 0 2.25rem 0; */
  line-height: 1.1;
}

.media-sec figure {
  margin: 1.85rem 0 0 0;
}

.media-sec .themeBtn {
  margin: 3rem auto 0;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  width: fit-content;
}

.media-sec {
  padding: 6rem 0 0 0;
}

.media-video {
  text-align: center;
  position: relative;
}

.media-video a {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  inset: 0;
  height: fit-content;
  width: fit-content;
  margin: auto;
}

.media-video a i {
  height: 72px;
  width: 72px;
  display: grid;
  place-items: center;
  border-radius: 50px;
  background-color: var(--primary);
  color: var(--white);
}

.weather-content .mainHead {
  margin: 0 0 0;
}

.weather-content p {
  color: var(--black);
  font-size: 1.25rem;
}

.weather-content figure {
  margin: 3.75rem 0 2rem;
}

.weather-content .btn-group {
  align-items: center;
  gap: 1.25rem;
}

.weather-sec .themeBtn {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  width: fit-content;
}

.weather-content .themeBtn {
  margin: 0 auto;
}

/* .weather-content .btn-group .themeBtn:last-child {
  background-color: transparent;
  border: 1px solid #000;
  color: #000;
} */

.weather-sec {
  padding: 6rem 0 8rem;
}

/* .weather-content .btn-group .themeBtn:last-child img {
  filter: brightness(0);
} */

.contact-main {
  border: 1px solid #ededed;
  border-radius: 10px;
  background-color: #fafafa;
  padding: 3.75rem 3.75rem 3.125rem 3.75rem;
}

.contact-form label {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #0e0e0e;
  letter-spacing: 0.5px;
  margin: 0 0 1rem 0;
}

.contact-form .form-control {
  height: 3.75rem;
  outline: unset;
  box-shadow: unset;
  border: 1px solid #ededed;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: capitalize;
  color: #0e0e0e;
  letter-spacing: 0.5px;
}

.contact-form .form-control::placeholder {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: capitalize;
  color: #0e0e0e;
  letter-spacing: 0.5px;
}
.contact-form textarea.form-control {
  height: 175px;
}

.contact-form button {
  width: 100%;
  border: unset;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  justify-content: center;
  height: 3.75rem;
  margin: 1.25rem 0 0 0;
}

.georgia-jets-section {
  padding: 2rem 0 6rem;
  /* background-color: #f8f9fa; */
}

.bg-theme-blue {
  background-color: #365b6d;
}

.sub-head {
  font-size: 32px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
  color: #fff;
}

.main-head {
  font-size: 75px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.5px;
  color: #fff;
}

.feature-list {
  list-style-type: disc;
  padding-left: 1.2rem;
  margin-bottom: 0;
}

.feature-list li {
  font-size: 28px;
  line-height: 1.8;
  margin-bottom: 0.25rem;
  font-weight: 400;
}

.object-fit-cover {
  object-fit: cover;
  min-height: 450px;
}

@media (max-width: 768px) {
  .main-head {
    font-size: 2rem;
  }

  .bg-theme-blue {
    padding: 3rem 1.5rem !important;
  }
}

.hiswrap figure img {
  position: relative;
}

.hiswrap h3 {
  position: absolute;
  bottom: 5rem;
  left: 0;
  right: 0;
  margin: auto;
  color: #fff;
  font-size: 60px;
}

.hiswrap {
  margin-bottom: 3rem;
  text-align: center;
}

section.history-section1 .mainHead {
  font-size: 200px;
  text-align: center;
}

section.history-section1 {
  padding: 0 0 6rem 0;
}

#supersection1 {
  background-color: #ffffff;
}

#supersection1 .event-card {
  border: 1px solid #e1e1e1 !important;
  border-radius: 8px;
  overflow: hidden;
  padding: 1rem;
}

/* Image Styling */
#supersection1 .img-wrapper {
  min-height: 300px;
  height: 100%;
}

#supersection1 .card-img {
  object-fit: cover;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  width: 100%;
}

/* Responsive Image Radius fix for mobile */
@media (max-width: 991px) {
  #supersection1 .card-img {
    border-radius: 8px 8px 0 0;
    max-height: 300px;
  }
}

/* Badge Styling */
#supersection1 .date-badge {
  background-color: #375363;
  /* Dark Slate Blue from design */
  color: #fff;
  padding: 8px 12px;
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 4px;
  display: inline-block;
}

/* Title Styling */
#supersection1 .event-title {
  font-weight: 400;
  font-size: 60px;
  text-transform: uppercase;
  color: #000;
  margin-top: 5px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.event-description.text-secondary p {
  color: #000;
  font-size: 1rem;
}

.event-description.text-secondary p a {
  color: #000;
}

section#supersection1 .row + .row {
  margin-top: 3rem;
}

#flexablesection {
  background-color: #fff;
  font-family: "Roboto", sans-serif;
  padding: 60px 0;
}

/* Header Styles */
#flexablesection .main-heading {
  font-weight: 400;
  font-size: 90px;
  color: #000;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#flexablesection .sub-text {
  max-width: 500px;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Toggle Button */
#flexablesection .toggle-container {
  border: 1px solid #eee;
  padding: 5px;
  border-radius: 4px;
  display: inline-flex;
  background: #fff;
}

#flexablesection .toggle-btn {
  border: none;
  background: transparent;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 2px;
  letter-spacing: 1px;
  color: #333;
  transition: all 0.3s ease;
}

#flexablesection .toggle-btn.active {
  background-color: #9e3533;
  color: #fff;
}

#flexablesection .toggle-btn:focus {
  box-shadow: none;
}

/* Pricing Card Base */
#flexablesection .pricing-card {
  background: #fff;
  border: 1px solid #eaeaea;
  text-align: left;
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

#flexablesection .card-body-top {
  padding: 30px 30px 10px 30px;
}

#flexablesection .plan-title {
  font-weight: 400;
  font-size: 41px;
  margin-bottom: 10px;
  color: #000;
}

#flexablesection .plan-desc {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 20px;
  min-height: 40px;
}

/* Price Strip */
#flexablesection .price-strip {
  background-color: #f3e3e3;
  padding: 15px 30px;
  transition: background-color 0.4s ease;
}

#flexablesection .price {
  font-weight: 400;
  margin: 0;
  font-size: 41px;
  color: #000;
  transition: color 0.4s ease;
}

/* Bottom Content */
#flexablesection .card-body-bottom {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

#flexablesection .feature-list li {
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: #333;
  display: flex;
  align-items: center;
  transition: color 0.4s ease;
}

#flexablesection .feature-list li i {
  margin-right: 10px;
  font-size: 1rem;
}

#flexablesection .feature-list li i.fa-check-circle {
  color: #000;
  transition: color 0.4s ease;
}

#flexablesection .feature-list li.disabled {
  color: #aaa;
  text-decoration: line-through;
}

#flexablesection .feature-list li.disabled i {
  color: #aaa;
}

#flexablesection .btn-purchase {
  background-color: #9e3533;
  color: #fff;
  border: none;
  width: 100%;
  padding: 12px;
  border-radius: 4px;
  margin-top: auto;
  font-weight: 500;
  transition: all 0.3s ease;
}

#flexablesection .btn-purchase:hover {
  background-color: #7d2a28;
}

/* HOVER EFFECT (Transform to Ultimate Style) */
#flexablesection .pricing-card:hover {
  background-color: #355c6e;
  border-color: #355c6e;
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 10;
  border-radius: 10px;
}

#flexablesection .pricing-card:hover .plan-title,
#flexablesection .pricing-card:hover .plan-desc,
#flexablesection .pricing-card:hover .feature-list li {
  color: #fff;
}

#flexablesection .pricing-card:hover .price-strip {
  background-color: #9e3533;
}

#flexablesection .pricing-card:hover .price {
  color: #fff;
}

#flexablesection .pricing-card:hover .feature-list li i.fa-check-circle {
  color: #fff;
}

#flexablesection .pricing-card:hover .feature-list li.disabled {
  color: rgba(255, 255, 255, 0.5);
}

#flexablesection .pricing-card:hover .feature-list li.disabled i {
  color: rgba(255, 255, 255, 0.5);
}

#flexablesection .pricing-card:hover .btn-purchase {
  background-color: #ab4442;
  /* Slight variation on hover inside the card to distinct it from background, or keep standard red */
}

.membership-section {
  background-color: #f8f9fa;
}

.membership-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  margin-top: 2rem;
}

/* Image Styling */
.membership-img {
  object-fit: cover;
  border-radius: 3px;
  min-height: 300px;
}

/* Typography */
.membership-title {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #000;
  letter-spacing: 0.5px;
}

.membership-desc {
  font-family: "Roboto", sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333;
  margin-bottom: 1.5rem;
}

.select-label {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  color: #000;
}

/* Radio Buttons Styling */
.custom-radio .custom-control-label {
  font-family: "Roboto", sans-serif;
  font-size: 0.95rem;
  color: #444;
  cursor: pointer;
  padding-top: 2px;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label {
  color: #2c5a75;
  font-weight: 500;
}

.opt-price {
  font-weight: 500;
}

/* Cart Button Styling */
.btn-cart-action {
  background-color: #a63d35;
  border: none;
  color: white;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-cart-action:hover {
  background-color: #8a322b;
  color: #fff;
}

.btn-cart-action i {
  font-size: 1.2rem;
}

/* Custom Radio Color Override for Bootstrap */
.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #3b6f94;
  background-color: #3b6f94;
}

/* Mobile spacing adjustments */
@media (max-width: 991px) {
  .membership-img {
    min-height: auto;
    height: 250px;
    width: 100%;
  }

  .membership-card {
    padding: 0;
  }

  .img-container {
    padding: 10px 10px 0 10px;
  }
}

.membership-section-new {
  padding: 4rem 0 6rem 0;
}

.donate-section {
  padding: 20px 0 6rem;
  background-color: #fff;
}

.note-box {
  background-color: #000000;
  color: #ffffff;
  padding: 80px 40px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 2px;
  /* Ensure the box doesn't get too wide on very large screens if needed, though col-lg-11 controls it mostly */
  max-width: 100%;
  margin: 0 auto;
}

.note-title {
  font-size: 75px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
}

.note-text {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 35px;
  color: #f1f1f1;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.note-text strong {
  font-weight: 700;
  color: #ffffff;
}

.btn-donate {
  background-color: #9e3b33;
  border: 1px solid #9e3b33;
  color: #ffffff;
  padding: 10px 35px;
  font-size: 15px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-donate:hover {
  background-color: #b5453b;
  border-color: #b5453b;
  color: #ffffff;
}

.btn-donate i {
  font-size: 0.9rem;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .note-title {
    font-size: 2.5rem;
  }

  .note-box {
    padding: 40px 20px;
  }
}

/* Flying section start */
/* Flying Site Section */
.flying {
  background: #f9f9f9;
}

.flying-site,
.airfield {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flying-site:hover,
.airfield:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(162, 58, 53, 0.1);
}

/* Paragraph Styling */
.flying-site p,
.airfield p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

/* List Styling */
.flying-site ul {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.flying-site ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  color: #444;
  line-height: 1.7;
  font-size: 1.02rem;
}

.flying-site ul li:before {
  content: "•";
  position: absolute;
  left: 10px;
  color: var(--primary, #a23a35);
  font-size: 1.5rem;
  font-weight: bold;
  top: -5px;
}

/* Airfield Subheading */
.airfield h3 {
  color: var(--secondary, #2e5d6c);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 20px 0 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(162, 58, 53, 0.2);
  letter-spacing: 0.5px;
}

/* Image Styling */
.airfield figure {
  margin: 25px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.airfield figure:hover {
  box-shadow: 0 12px 30px rgba(46, 93, 108, 0.25);
}

.airfield figure img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.airfield figure:hover img {
  transform: scale(1.02);
}

/* Responsive Design */
@media (max-width: 992px) {
  .flying {
    padding: 60px 0;
  }

  .flying-site,
  .airfield {
    padding: 30px;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .flying {
    padding: 40px 0;
  }

  .flying-site,
  .airfield {
    padding: 25px;
  }

  .flying-site p,
  .airfield p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .flying-site ul li {
    font-size: 0.98rem;
    padding-left: 25px;
  }

  .airfield h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .flying-site,
  .airfield {
    padding: 20px;
  }

  .flying-site ul li {
    padding-left: 22px;
  }

  .flying-site ul li:before {
    font-size: 1.3rem;
    left: 5px;
  }
}

/* Optional: Add subtle animation on page load */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.flying-site,
.airfield {
  animation: fadeInUp 0.8s ease;
}
/* Flying section end */

/* Georgia form start */
.membership {
  padding: 60px 0;
  background: #f8f9fa;
}

.membership > .container > div:first-of-type {
  text-align: center;
  margin-bottom: 30px;
  padding: 25px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--primary);
  border-right: 4px solid var(--secondary);
}

.membership > .container > div p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 5px;
}

.membership > .container > div p:first-child {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}

.georgia-form {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.georgia-form .form-group {
  margin-bottom: 20px;
}

.georgia-form .form-control {
  height: 50px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 0 15px;
  font-size: 1rem;
  transition: 0.3s;
}

.georgia-form .form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 3px 10px rgba(162, 58, 53, 0.1);
}

.georgia-form .col-md-12 > p {
  color: var(--secondary);
  font-weight: 600;
  margin: 20px 0 10px;
  padding-bottom: 5px;
  border-bottom: 2px solid rgba(162, 58, 53, 0.1);
}

.affirm {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 12px;
  margin: 20px 0;
  border-left: 4px solid var(--primary);
  border-right: 4px solid var(--secondary);
}

.affirm p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.affirm p:last-child {
  margin-bottom: 0;
}

.affirm p strong {
  color: var(--primary);
}

@media (max-width: 768px) {
  .georgia-form {
    padding: 20px;
  }

  .affirm {
    padding: 20px;
  }
}

/* Membership & Rules Section */
.member,
.rules {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.member ul,
.rules ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.member h3,
.rules h3 {
  color: var(--primary, #a23a35);
  font-size: 1.4rem;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid #ddd;
}

.member ul,
.rules ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.member ul li,
.rules ul li {
  margin-bottom: 8px;
}

.pdf,
.rule-pdf {
  display: block;
  padding: 8px 12px;
  background: white;
  border-radius: 5px;
  text-decoration: none;
  color: #333;
  font-size: 0.95rem;
  border: 1px solid #e0e0e0;
}

.pdf i,
.rule-pdf i {
  float: right;
  color: var(--secondary, #2e5d6c);
  font-size: 0.9rem;
  margin-top: 3px;
}

.pdf:hover,
.rule-pdf:hover {
  background: #f0f0f0;
  border-color: #ccc;
}

@media (max-width: 768px) {
  .member,
  .rules {
    padding: 15px;
  }

  .member h3,
  .rules h3 {
    font-size: 1.2rem;
  }

  .pdf,
  .rule-pdf {
    padding: 8px 10px;
    font-size: 0.9rem;
  }
}
/* Georgia form end */

/* .contact Page start */
/* Main Container */
.contact-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 50px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

/* Decorative Elements */
.contact-container::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: var(--primary);
  opacity: 0.1;
  border-radius: 50%;
}

.contact-container::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: var(--secondary);
  opacity: 0.1;
  border-radius: 50%;
}

/* Title */
.contact-title-wrapper {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.contact-title {
  color: var(--primary);
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  padding: 0 20px;
}

.contact-title::before,
.contact-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.contact-title::before {
  right: 100%;
}

.contact-title::after {
  left: 100%;
}

/* Contact Cards - No grid styling, using Bootstrap columns */
/* .contact-card {
  background: var(--white);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  border: 1px solid rgba(162, 58, 53, 0.1);
  overflow: hidden;
  height: 100%;
} */

.contact-email {
  padding: 5rem 0 0;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(162, 58, 53, 0.05),
    rgba(46, 93, 108, 0.05)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(162, 58, 53, 0.15);
  border-color: transparent;
}

.contact-card:hover::before {
  opacity: 1;
}

/* Card Header */
.card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  position: relative;
}

.card-header i {
  font-size: 3rem;
  color: var(--secondary);
  background: linear-gradient(
    135deg,
    rgba(162, 58, 53, 0.1),
    rgba(46, 93, 108, 0.1)
  );
  padding: 15px;
  border-radius: 15px;
}

.header-info {
  flex: 1;
}

.header-info h3 {
  color: var(--primary);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.badge {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: inline-block;
  text-transform: uppercase;
}

/* Card Body */
.card-body {
  position: relative;
}

.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.info-item:hover {
  background: linear-gradient(
    135deg,
    rgba(162, 58, 53, 0.05),
    rgba(46, 93, 108, 0.05)
  );
  transform: scale(1.02);
}

.info-item i {
  color: var(--secondary);
  font-size: 1.2rem;
  min-width: 25px;
  margin-top: 3px;
}

.info-content {
  flex: 1;
}

.info-content strong {
  display: block;
  color: var(--primary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.info-content a {
  color: var(--secondary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
  word-break: break-all;
}

.info-content a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.info-content address {
  font-style: normal;
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Decorative Line */
.decorative-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary),
    var(--secondary),
    transparent
  );
  margin: 40px 0;
}

/* Footer Note */
.contact-note {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  background: linear-gradient(
    135deg,
    rgba(162, 58, 53, 0.05),
    rgba(46, 93, 108, 0.05)
  );
  border-radius: 15px;
}

.contact-note p {
  color: var(--secondary);
  font-size: 1rem;
  font-weight: 500;
}

.contact-note i {
  color: var(--primary);
  margin: 0 5px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .contact-container {
    padding: 30px;
  }

  .contact-title {
    font-size: 2.2rem;
  }

  .contact-title::before,
  .contact-title::after {
    width: 30px;
  }
}

@media (max-width: 768px) {
  .contact-container {
    padding: 20px;
  }

  .contact-title {
    font-size: 1.8rem;
  }

  .header-info h3 {
    font-size: 1.4rem;
  }

  .card-header i {
    font-size: 2.5rem;
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .contact-title::before,
  .contact-title::after {
    display: none;
  }

  .info-item {
    flex-direction: column;
    gap: 10px;
  }

  .info-item i {
    margin-left: 0;
  }

  .badge {
    font-size: 0.75rem;
    padding: 4px 12px;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-card {
  animation: fadeInUp 0.6s ease;
}

.contact-card:nth-child(2) {
  animation-delay: 0.2s;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

/* Address Section */
.georgia-form .themeBtn {
  outline: unset;
  border: unset;
}
.georgia-form .address {
  text-align: center;
  margin-bottom: 40px;
  padding: 25px;
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(162, 58, 53, 0.08);
  border-left: 4px solid var(--primary, #a23a35);
  border-right: 4px solid var(--secondary, #2e5d6c);
}

.georgia-form .address p {
  margin: 10px 0;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.georgia-form .address address {
  font-style: normal;
  color: var(--secondary, #2e5d6c);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.8;
  margin: 15px 0;
  padding: 15px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
}

.georgia-form .address p:last-child {
  color: var(--primary, #a23a35);
  font-weight: 500;
  font-size: 0.95rem;
  background: rgba(162, 58, 53, 0.05);
  padding: 8px 15px;
  border-radius: 50px;
  display: inline-block;
  margin-top: 10px;
}
/* .contact Page end */

/* The Club section start */
:root {
  --primary: #a23a35;
  --secondary: #2e5d6c;
  --light-bg: #f8f9fa;
  --border-color: #dee2e6;
}

/* Dues Sections */
.dues-section {
  background: white;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 25px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  border-left: 3px solid var(--primary);
  transition: transform 0.3s ease;
}

.dues-section:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(162, 58, 53, 0.1);
}

.dues-title {
  color: var(--primary);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--secondary);
  position: relative;
}

.dues-title:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 80px;
  height: 2px;
  background: var(--primary);
}

/* Tables */
.dues-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.dues-table th {
  background: var(--secondary);
  color: white;
  padding: 12px 8px;
  text-align: left;
  font-weight: 500;
  font-size: 0.9rem;
}

.dues-table td {
  padding: 10px 8px;
  border-bottom: 1px solid var(--border-color);
  color: #555;
}

.dues-table tr:last-child td {
  border-bottom: none;
}

.dues-table tr:hover td {
  background: rgba(162, 58, 53, 0.03);
}

/* Notes */
.note {
  background: var(--light-bg);
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #555;
  border-left: 3px solid var(--secondary);
  margin: 15px 0 0;
  line-height: 1.5;
}

.note strong {
  color: var(--primary);
}

/* Payment Section */
.payment-section {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  border-right: 3px solid var(--secondary);
}

.address-box {
  background: var(--light-bg);
  padding: 18px;
  border-radius: 8px;
  margin: 15px 0;
  border-left: 3px solid var(--primary);
}

.address-box p {
  color: #555;
  line-height: 1.7;
  margin: 0;
  font-size: 0.95rem;
}

.address-box strong {
  color: var(--secondary);
}

.payment-options {
  margin-top: 20px;
}

.payment-options p {
  background: var(--light-bg);
  padding: 12px 15px;
  border-radius: 8px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  border-right: 3px solid var(--secondary);
  width: 100%;
  display: flex;
  align-items: center;
}

.payment-options p:last-child {
  margin-bottom: 0;
  border-right-color: var(--primary);
}

.payment-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.payment-link:hover {
  color: var(--secondary);
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .col-md-6 {
    margin-bottom: 20px;
  }

  .dues-title {
    font-size: 1.2rem;
  }

  .dues-table {
    font-size: 0.9rem;
  }

  .dues-table th,
  .dues-table td {
    padding: 8px 5px;
  }

  .note {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .dues-section,
  .payment-section {
    padding: 15px;
  }

  .dues-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* Print Styles */
@media print {
  .dues-section {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ddd;
  }
}

/* Bylaws Specific Styles */
.bylaws-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 20px;
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(162, 58, 53, 0.08);
  border-left: 4px solid var(--primary, #a23a35);
  border-right: 4px solid var(--secondary, #2e5d6c);
  margin-top: 4rem;
}

.bylaws-title {
  margin: 40px 0 20px;
}

.bylaws-title .dues-title {
  font-size: 1.8rem;
  padding-bottom: 12px;
}

.bylaws-section {
  background: white;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  border-left: 3px solid var(--primary, #a23a35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bylaws-section:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(162, 58, 53, 0.1);
}

.bylaws-subtitle {
  color: var(--secondary, #2e5d6c);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(162, 58, 53, 0.15);
}

.bylaws-section p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 0.98rem;
}

.bylaws-section p:last-child {
  margin-bottom: 0;
}

/* Subsection styling */
.subsection {
  margin-left: 20px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.subsection-num {
  color: var(--primary, #a23a35);
  font-weight: 600;
  margin-right: 8px;
  display: inline-block;
  min-width: 45px;
}

.sub-subsection {
  margin-left: 40px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 15px;
  border-left: 2px solid rgba(46, 93, 108, 0.2);
}

.sub-subsection p {
  margin-bottom: 8px;
  font-size: 0.96rem;
}

/* Strong tags inside paragraphs */
.bylaws-section strong {
  color: var(--secondary, #2e5d6c);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .bylaws-header {
    padding: 15px;
  }

  .bylaws-title .dues-title {
    font-size: 1.5rem;
  }

  .bylaws-section {
    padding: 20px;
  }

  .bylaws-subtitle {
    font-size: 1.1rem;
  }

  .subsection {
    margin-left: 10px;
  }

  .sub-subsection {
    margin-left: 20px;
  }
}

@media (max-width: 576px) {
  .bylaws-section {
    padding: 15px;
  }

  .bylaws-section p {
    font-size: 0.95rem;
  }

  .subsection-num {
    min-width: 35px;
    font-size: 0.95rem;
  }

  .sub-subsection {
    margin-left: 10px;
    padding-left: 10px;
  }
}

/* Rules Section Specific Styles */
.rule-link {
  color: var(--secondary, #2e5d6c);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.rule-link:hover {
  color: var(--primary, #a23a35);
  text-decoration: underline;
}

.bylaws-section .bylaws-subtitle {
  color: var(--primary, #a23a35);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.bylaws-section p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 0;
  font-size: 1rem;
}

.rules-footer {
  margin-top: 30px;
  margin-bottom: 2rem;
  padding: 15px 25px;
  background: linear-gradient(
    135deg,
    rgba(162, 58, 53, 0.05),
    rgba(46, 93, 108, 0.05)
  );
  border-radius: 10px;
  text-align: center;
  border-left: 4px solid var(--primary, #a23a35);
  border-right: 4px solid var(--secondary, #2e5d6c);
}

.rules-footer p {
  color: var(--secondary, #2e5d6c);
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}

.rules-footer i {
  color: var(--primary, #a23a35);
  margin-right: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .bylaws-section .bylaws-subtitle {
    font-size: 1.2rem;
  }

  .bylaws-section p {
    font-size: 0.95rem;
  }

  .rules-footer {
    padding: 12px 20px;
  }
}

/* Enforcement Section */
.enforcement-section {
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(162, 58, 53, 0.08);
  border: 1px solid rgba(162, 58, 53, 0.1);
  position: relative;
  overflow: hidden;
}

.enforcement-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary, #a23a35),
    var(--secondary, #2e5d6c)
  );
}

.enforcement-section p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.enforcement-section p:last-child {
  margin-bottom: 0;
}

.enforcement-section .highlight {
  color: var(--primary, #a23a35);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 15px 20px;
  background: rgba(162, 58, 53, 0.05);
  border-radius: 10px;
  border-left: 4px solid var(--primary, #a23a35);
  margin-top: 10px;
}

/* Subsection styling for rules */
.subsection {
  margin-left: 25px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.subsection-num {
  color: var(--secondary, #2e5d6c);
  font-weight: 600;
  margin-right: 8px;
  display: inline-block;
  min-width: 25px;
}

/* Responsive */
@media (max-width: 768px) {
  .enforcement-section {
    padding: 20px;
  }

  .enforcement-section p {
    font-size: 1rem;
  }

  .enforcement-section .highlight {
    font-size: 1rem;
    padding: 12px 15px;
  }

  .subsection {
    margin-left: 15px;
  }
}

@media (max-width: 576px) {
  .enforcement-section {
    padding: 15px;
  }

  .subsection {
    margin-left: 10px;
  }
}

/* Introduction Section */
.intro-section {
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border-radius: 12px;
  padding: 20px 30px;
  margin-bottom: 30px;
  border-left: 4px solid var(--primary, #a23a35);
  border-right: 4px solid var(--secondary, #2e5d6c);
}

.intro-section p {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

/* Rules Column */
.rules-column {
  background: white;
}

.rule-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.rule-item:hover {
  transform: translateX(5px);
  border-left-color: var(--primary, #a23a35);
  box-shadow: 0 5px 15px rgba(162, 58, 53, 0.08);
}

.rule-number {
  color: var(--primary, #a23a35);
  font-weight: 700;
  font-size: 1.2rem;
  min-width: 30px;
}

.rule-item p {
  color: #555;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

/* Fees Column */
.fees-column {
  background: white;
  height: 100%;
}

.fee-table {
  background: linear-gradient(
    145deg,
    var(--primary, #a23a35),
    var(--secondary, #2e5d6c)
  );
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 25px;
  color: white;
}

.fee-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.fee-row:last-child {
  border-bottom: none;
}

.fee-type {
  font-weight: 500;
  font-size: 1.1rem;
}

.fee-amount {
  font-weight: 700;
  font-size: 1.3rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 5px 15px;
  border-radius: 50px;
}

.fee-note {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  border-left: 3px solid var(--secondary, #2e5d6c);
}

.fee-note p {
  color: #555;
  line-height: 1.6;
  margin: 0;
  display: flex;
  gap: 10px;
}

.note-icon {
  color: var(--secondary, #2e5d6c);
  font-size: 1.2rem;
}

.fee-details {
  margin-bottom: 25px;
}

.detail-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 10px;
  border-right: 3px solid var(--primary, #a23a35);
}

.detail-item i {
  color: var(--primary, #a23a35);
  font-size: 1.1rem;
  margin-top: 3px;
}

.detail-item p {
  color: #555;
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

.payment-methods {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.payment-methods h4 {
  color: var(--secondary, #2e5d6c);
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.payment-options {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.payment-link {
  background: #0070ba;
  color: white;
  padding: 10px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.payment-link:hover {
  background: #005ea6;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 112, 186, 0.3);
  color: white;
  text-decoration: none;
}

.payment-separator {
  color: #999;
  font-weight: 500;
}

.payment-check {
  background: var(--primary, #a23a35);
  color: white;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .intro-section {
    padding: 15px 20px;
  }

  .intro-section p {
    font-size: 1rem;
  }

  .rule-item {
    padding: 12px;
    gap: 10px;
  }

  .rule-number {
    font-size: 1.1rem;
    min-width: 25px;
  }

  .fee-row {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .payment-options {
    flex-direction: column;
  }

  .payment-separator {
    display: none;
  }
}

@media (max-width: 576px) {
  .fee-table {
    padding: 15px;
  }

  .fee-amount {
    font-size: 1.1rem;
    padding: 5px 12px;
  }

  .detail-item {
    flex-direction: column;
    gap: 8px;
  }
}

/* Info Cards */
.info-card {
  background: white;
  border-radius: 15px;
  padding: 35px;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(162, 58, 53, 0.1);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(162, 58, 53, 0.12);
}

/* Hunting Card Specific */
.hunting-card {
  border-left: 4px solid var(--primary, #a23a35);
  background: linear-gradient(145deg, #ffffff, #f9f5f0);
}

.hunting-card::before {
  content: "🦌";
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 3rem;
  opacity: 0.1;
  transform: rotate(15deg);
}

/* Guest Card Specific */
.guest-card {
  border-right: 4px solid var(--secondary, #2e5d6c);
  background: linear-gradient(145deg, #ffffff, #f0f5f9);
}

.guest-card::before {
  content: "✈️";
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 3rem;
  opacity: 0.1;
  transform: rotate(-15deg);
}

/* Paragraph Styling */
.info-card p {
  color: #555;
  line-height: 1.8;
  margin: 20px 0 25px;
  font-size: 1.05rem;
  position: relative;
  z-index: 2;
}

/* Guest Card Special Paragraph */
.guest-card p {
  font-family: "Courier New", monospace;
  background: rgba(46, 93, 108, 0.05);
  padding: 20px;
  border-radius: 10px;
  border-left: 3px solid var(--secondary, #2e5d6c);
}

/* Signature Line in Guest Agreement */
.guest-card p u {
  text-decoration: none;
  font-weight: 600;
  color: var(--primary, #a23a35);
  border-bottom: 2px dashed var(--secondary, #2e5d6c);
  padding: 0 5px;
}

/* Button Styling */
.info-card .themeBtn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(
    135deg,
    var(--primary, #a23a35),
    var(--secondary, #2e5d6c)
  );
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.info-card .themeBtn:hover {
  background: transparent;
  color: var(--primary, #a23a35);
  border-color: var(--primary, #a23a35);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(162, 58, 53, 0.2);
}

.guest-card .themeBtn:hover {
  color: var(--secondary, #2e5d6c);
  border-color: var(--secondary, #2e5d6c);
}

/* Responsive Design */
@media (max-width: 992px) {
  .info-card {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .info-card {
    padding: 25px;
    margin-bottom: 25px;
  }

  .info-card p {
    font-size: 1rem;
    margin: 15px 0 20px;
  }

  .guest-card p {
    padding: 15px;
  }

  .info-card .themeBtn {
    padding: 10px 25px;
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .info-card {
    padding: 20px;
  }

  .hunting-card::before,
  .guest-card::before {
    font-size: 2.5rem;
  }
}

/* Animation on Page Load */
@keyframes fadeInCard {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.info-card {
  animation: fadeInCard 0.6s ease;
}

.guest-card {
  animation-delay: 0.2s;
}

/* History Card */
.history-card {
  background: white;
  border-radius: 20px;
  padding: 50px;
  margin: 30px 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(162, 58, 53, 0.1);
}

/* Decorative Elements */
.history-card::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: var(--primary, #a23a35);
  opacity: 0.03;
  border-radius: 50%;
}

.history-card::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: var(--secondary, #2e5d6c);
  opacity: 0.03;
  border-radius: 50%;
}

/* History Content */
.history-content {
  position: relative;
  z-index: 2;
}

/* Paragraph Styling */
.history-text {
  color: #555;
  line-height: 1.9;
  margin-bottom: 25px;
  font-size: 1.08rem;
  text-align: justify;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.history-text:hover {
  border-left-color: var(--primary, #a23a35);
  padding-left: 25px;
}

/* First Paragraph - Special Style */
.history-text:first-of-type {
  font-weight: 400;
  background: linear-gradient(to right, rgba(162, 58, 53, 0.02), transparent);
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid var(--primary, #a23a35);
}

/* Highlighted Last Paragraph */
.history-text.highlight {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--secondary, #2e5d6c);
  background: linear-gradient(
    135deg,
    rgba(162, 58, 53, 0.05),
    rgba(46, 93, 108, 0.05)
  );
  padding: 30px;
  border-radius: 15px;
  margin-top: 30px;
  border-left: 4px solid var(--secondary, #2e5d6c);
  border-right: 4px solid var(--primary, #a23a35);
  text-align: center;
  font-style: italic;
}

/* Email Styling */
.history-text a {
  color: var(--primary, #a23a35);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px dotted var(--secondary, #2e5d6c);
  transition: all 0.3s ease;
}

.history-text a:hover {
  color: var(--secondary, #2e5d6c);
  border-bottom-color: var(--primary, #a23a35);
}

/* Bullet Points for Benefits (if you want to add) */
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.benefits-list li {
  padding: 10px 15px;
  background: #f8f9fa;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.benefits-list li:hover {
  transform: translateX(5px);
  background: linear-gradient(
    135deg,
    rgba(162, 58, 53, 0.05),
    rgba(46, 93, 108, 0.05)
  );
}

.benefits-list i {
  color: var(--primary, #a23a35);
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .history-card {
    padding: 40px;
  }

  .history-text {
    font-size: 1.05rem;
  }

  .history-text.highlight {
    font-size: 1.1rem;
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .history-card {
    padding: 30px;
    margin: 20px 0;
  }

  .history-text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 15px;
  }

  .history-text:first-of-type {
    padding: 15px;
  }

  .history-text.highlight {
    font-size: 1.05rem;
    padding: 20px;
  }

  .benefits-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .history-card {
    padding: 20px;
  }

  .history-text {
    padding-left: 10px;
  }

  .history-text:hover {
    padding-left: 15px;
  }

  .history-text.highlight {
    padding: 15px;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.history-card {
  animation: fadeInUp 0.8s ease;
}

.history-text {
  animation: fadeInUp 0.8s ease;
  animation-fill-mode: both;
}

.history-text:nth-child(1) {
  animation-delay: 0.1s;
}

.history-text:nth-child(2) {
  animation-delay: 0.3s;
}

.history-text:nth-child(3) {
  animation-delay: 0.5s;
}

.the-club .row:nth-child(2) {
  margin-bottom: 2rem;
}

.payment-options p a {
  margin-left: auto;
}
/* The Club section end */

#loginBox {
  max-width: 400px;
  margin: 100px auto;
  text-align: center;
  padding: 30px;
  border: 1px solid #ddd;
  border-radius: 10px;
}

#protectedContent {
  display: none;
}

.testimonial.event-plan img {
  bottom: -16rem;
}

.testimonial.member-plan img {
  bottom: -19rem;
}
