
body {
  background-color: #071b31;
  margin: 0 auto;
}

.main-header {
  max-width: 100%;
  position: sticky;
  top: 0;
  z-index: 999;
}

.top-navbar {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

.max-bound-header {
  max-width: 1600px;
  margin: 0 auto;
}

.main-bound {
  background-color: #fff;
  max-width: 1600px;
  margin: 0 auto;
  overflow: hidden;
}

/* topnav style */
.top-navbar .d-md-block .nav-item .nav-link {
  color: white !important;
  font-weight: 600;
  font-size: 1rem;
  text-transform: capitalize;
  position: relative;
  text-decoration: none;
  padding-bottom: 5px;
  display: inline-block;
}

.top-navbar .d-md-block .nav-link span {
  font-weight: 600;
  font-size: 1rem;
  text-transform: capitalize;
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
}

.top-navbar .d-md-block .nav-link span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: white;
  transition: height 0.3s ease;
}

.top-navbar .d-md-block .nav-item .nav-link:hover span::after {
  height: 2px;
}

@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1350px;
  }
}

/* navbar style starts */

.navbar-custom {
  background-color: #0a2240;
  overflow: visible !important;
  position: relative;
  z-index: 999;
}

.navbar-custom.scrolled {
  background-color: #cb980a !important;
  transition: background-color 0.3s ease;
}

.nav-item.dropdown {
  position: static;
}

.nav-link {
  color: white !important;
  font-weight: 800;
  text-transform: uppercase;
  padding: 15px 20px;
  position: relative;
}

/* carousel css started here */

.pihs-carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 80%;
  margin: 20px auto;
  overflow: hidden;
}

.pihs-carousel-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.pihs-carousel-slide {
  min-width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.pihs-carousel-slide img {
  width: 100%;
  height: auto;
  max-height: 700px;
  object-fit: cover;
}

.pihs-spotlight-text {
  color: #ff0000;
  font-size: 4em;
  font-weight: bold;
  text-align: center;
  padding-bottom: 70px;
}

.pihs-content-box {
  background: rgba(0, 51, 102, 0.8);
  color: white;
  padding: 20px;
  border-left: 5px solid #ff0000;
  transition: height 0.8s;
  overflow: hidden;
}

.pihs-content-box h2 {
  margin: 0;
  font-size: 1.5em;
  color: #ff0000;
}

.pihs-content-box p {
  margin: 10px 0;
  font-size: 1em;
  line-height: 1.5;
}

.pihs-content-box a {
  color: #ccc;
  text-decoration: underline;
  font-size: 0.9em;
}

.pihs-nav-controls {
  position: absolute;
  bottom: 20%;
  right: 20px;
  display: flex;
  align-items: flex-end;
  gap: 20px;
}

.pihs-nav-btn {
  background: #ffcc00;
  color: #000;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 1.2em;
  border-radius: 5px;
}

.nav-arrow {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pihs-nav-dots {
  display: flex;
  gap: 10px;
}

.pihs-dot {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.pihs-dot.active {
  background: #ffcc00;
}

.pihs-image-wrapper {
  position: relative;
}
/* carousel css ended here */

/* news section css started from here */
.news-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1350px;
  margin: 20px auto;
}

.news-section2 {
  display: flex;
  flex-wrap: wrap;
  padding-top: 30px;
  max-width: 1350px;
  margin: 10px auto;
}

.news-left,
.news-right {
  flex: 1 1 100%;
}

.news-title {
  color: #d71920;
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.news-image {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.highlight-date {
  color: #d71920;
  font-weight: bold;
  margin-top: 15px;
  font-size: 16px;
}

.highlight-title {
  font-size: 25px;
  font-weight: bold;
  margin: 10px 0;
  color: #600b13;
}

.highlight-text {
  font-size: 20px;
  color: #333;
}

.news-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-left: 2px solid #ccc;
  padding-left: 20px;
}

.news-item {
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.news-item:last-child {
  border-bottom: none;
}

.news-item-date {
  color: #d71920;
  font-size: 16px;
  font-weight: bold;
}

.news-item-title {
  color: #000;
  font-size: 20px;
  font-weight: bold;
  margin-top: 5px;
}

.more-news {
  margin-top: 10px;
  font-weight: bold;
  color: #d71920;
  border: 2px solid #d71920;
  padding: 5px 10px;
  width: fit-content;
  text-decoration: none;
}

/* Responsive Design */
@media (min-width: 768px) {
  .news-left {
    flex: 2;
  }
  .news-right {
    flex: 1;
  }
}
/* news section code ended here */

/* upcomig events css code started from here */
  .events-header {
    font-size: 3.5rem;
    font-weight: bold;
    color: #dc1a36;
    padding: 20px 0;
  }

  .date-box {
    background-color: #c22033;
    color: white;
    text-align: center;
    padding: 12px;
    width: 80px;
    height: 80px;
  }

  .date-box .month {
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
  }

  .date-box .day {
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
    line-height: 1;
  }

  .event-title {
    font-size: 1.5rem;
    color: #495057;
    font-weight: bold;
  }

  .event-details {
    font-size: 1rem;
    color: #6c757d;
  }

  .event-location {
    color: #6c757d;
  }

  .more-details {
    color: #dc1a36;
    font-weight: 600;
    text-decoration: none;
  }

  .more-details:hover {
    color: #dc1a36;
    text-decoration: none;
  }

  .event-card {
    background-color: white;
    padding: 15px;
    height: 100%;
  }

  .events-section {
    background-color: #f5f5f5;
    padding: 20px 0 40px;
  }

  .view-all {
    border: 2px solid #dc1a36;
    background-color: #dc1a36;
    color: white;
    padding: 8px 20px;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 20px;
  }

  .view-all:hover {
    background-color: white;
    color: #dc1a36;
    cursor: pointer;
  }

  .view-all-container {
    text-align: right;
    padding-top: 20px;
  }
/* upcoming events css code ended here */

/* Remove dropdown arrows for desktop */
.nav-link.mobile-dropdown-toggle::after {
  display: none;
}

/* Only show dropdown arrows on mobile */
@media (max-width: 991px) {
  .nav-link.mobile-dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    float: right;
    margin-top: 10px;
  }
}

/* ============= Mega Menu Styles ============= */
.mega-menu {
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-40%);
  width: 900px;
  max-width: 90%;
  background-color: white;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 1;
  margin-top: 0;
}

.information-for .mega-menu {
  position: absolute;
  top: 120%;
  left: 88%;
  transform: translateX(-70%);
  width: 300px;
  max-width: 90%;
  background-color: white;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 1;
  margin-top: 0;
}

.mega-menu-left {
  flex: 1; /* Take full height of the parent */
  background-position: center;
  background-size: cover;
  position: relative;
  min-height: 300px;
}

.row.no-gutters {
  display: flex;
  align-items: stretch;
}

.col-md-4,
.col-md-8 {
  display: flex;
  flex-direction: column;
}

.mega-menu-left {
  flex: 1;
  background-position: center;
  background-size: cover;
  position: relative;
}

.mega-menu-right {
  flex: 1;
  padding: 20px;
}

.mega-menu-columns {
  display: flex;
  flex-wrap: wrap;
}

.mega-menu-column {
  width: 50%;
  padding: 10px 20px;
}

.mega-menu-link {
  display: block;
  color: #c8102e !important;
  padding: 8px 0;
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
  font-weight: 500;
  font-size: medium;
}

.mega-menu-link:hover {
  color: #a50d26 !important;
  /* text-decoration: none; */
}

.spotlight {
  background-color: #0a2240;
  color: white;
  padding: 15px;
}

.spotlight h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.spotlight p {
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.mega-menu-footer {
  width: 100%;
  margin-top: 20px;
  text-align: center;
  padding: 15px;
}

.mega-menu-footer a {
  display: inline-block;
  padding: 8px 20px;
  background-color: white;
  color: #c8102e !important;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid #c8102e;
}

.mega-menu-footer a:hover {
  background-color: #f8f9fa;
}

/* Desktop Menu Triangle Indicator - Larger and Connected */
@media (min-width: 992px) {
  .nav-item.dropdown .nav-link {
    position: relative;
  }

  .nav-item.dropdown:hover .mega-menu {
    display: block !important;
  }

  .nav-item.dropdown:hover .nav-link:after {
    content: "";
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 30px solid white;
    z-index: 1;
    display: block; /* Ensure it's displayed */
  }
}

/* ============= Mobile Menu Adjustments ============= */
@media (max-width: 991px) {
  /* Hide desktop hover effect */
  .nav-item.dropdown:hover .nav-link:after {
    display: none;
  }

  /* Override the absolute positioning for mobile */
  .mega-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    transform: none;
    overflow-y: auto;
    background-color: white;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateX(100%);
    opacity: 0;
    z-index: 1;
  }

  /* Override for Information For dropdown */
  .information-for .mega-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    transform: translateX(100%);
  }

  /* When menu is active */
  .mega-menu.show {
    transform: translateX(0);
    opacity: 1;
    display: block !important;
  }

  /* Mobile menu header */
  .mobile-menu-header {
    background-color: #0a2240;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mobile-back-btn {
    color: white;
    border: none;
    background: transparent;
    font-size: 16px;
    padding: 5px 10px;
    cursor: pointer;
  }

  /* Adjust column layout for mobile */
  .mega-menu-columns {
    flex-direction: column;
  }

  .mega-menu-column {
    width: 100%;
    padding: 0 15px;
  }

  /* Information For dropdown styling for mobile */
  .information-for .mega-menu ul {
    margin-top: 15px;
  }

  .information-for .mega-menu .mega-menu-link {
    padding: 15px 0;
  }
}
/* navbar style ends */

.search-btn {
  background-color: #007ac2;
  color: white;
}

/* Hero section starts */
.hero-section {
  width: 100%;
  height: 0;
  padding-top: 56.2%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #002242;
  position: relative;
  margin-bottom: -1.5625rem;
}

.video-bg {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
  /* position: relative; */
  width: 100%;
  overflow: hidden;
  padding-top: 56.25%;
}

.video-bg iframe {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
  display: block;
}

.text-container {
  text-align: left;
  /* z-index: 2;  */
}

.animate-text {
  opacity: 0;
  transform: translateY(20px);
  position: absolute;
  animation: fadeInOut 9s infinite;
}

#text1 {
  animation-delay: 0s;
}

#text2 {
  animation-delay: 3s;
}

#text3 {
  animation-delay: 6s;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  11.11% {
    opacity: 1;
    transform: translateY(0);
  }
  33.33% {
    opacity: 1;
    transform: translateY(0);
  }
  44.44% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

.custom-svg {
  position: absolute;
  bottom: -30px;
  right: 20px;
  left: auto;
  z-index: 1;
}

.custom-svg img {
  width: 60%;
  height: auto;
  margin: 0 0 0 auto !important;
  display: block;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .hero-section {
    min-height: 30vh;
    margin: 0 auto;
  }

  /* .video-bg iframe {
    height: 30vh;
  } */

  .display-5 {
    font-size: 2rem;
  }

  .text-container {
    padding-left: 15px;
  }

  .custom-svg {
    position: absolute;
    bottom: -30px;
    right: 20px;
    left: auto;
    z-index: 1;
  }
}
/* Hero section ends */

.card-custom {
  border: none;
  transition: transform 0.3s;
}
.card-custom:hover {
  transform: translateY(-5px);
}
.btn-hartford {
  background-color: #c8102e;
  color: white;
}
.btn-hartford:hover {
  background-color: #a50d26;
  color: white;
}
.footer-dark {
  background-color: #333;
  color: white;
  padding: 3rem 0;
}
.footer-links a {
  color: #ccc;
  display: block;
  margin-bottom: 0.5rem;
}
.social-icon {
  background-color: #555;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
  color: white;
}

.bg-dark{
    background-color: #343a40 !important;
}

.apply-btn {
  background-color: #cb980a;
  color: #0a2240 !important;
  font-weight: bold;
  padding: 10px 25px;
  border: 3px solid #cb980a;
  border-radius: 0%;
}
.apply-btn:hover {
  background-color: #0a2240;
  color: #cb980a !important;
  border: 3px solid #cb980a;
}

.main-heading {
  color: #dc1e32;
  font-weight: 700;
  font-size: 4.35rem;
  line-height: 1.1;
}

.bg-geometric {
  background-color: #2d3748;
}

.stat-number {
  font-size: 4rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.stat-label {
  color: white;
  font-size: 1.25rem;
}

.stat-divider {
  width: 60px;
  height: 3px;
  background-color: #ecc94b;
  margin: 10px auto;
}

.content-section {
  padding: 80px 0;
}

/* program section */
.step-indicator {
  color: #555;
  margin-top: 20px;
  font-style: italic;
}
.main-question {
  color: #0c2340;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 15px 0 25px;
}
.option-btn {
  border: 1px solid #c82333;
  color: #0c2340;
  background-color: white;
  padding: 15px;
  margin-bottom: 15px;
  font-weight: bold;
  width: 100%;
  text-align: center;
  transition: all 0.3s;
}
.option-btn:hover,
.option-btn.selected {
  background-color: #c82333;
  color: white;
}
.back-buttons {
  margin-top: 30px;
  padding-bottom: 20px;
}
.back-btn {
  color: #c82333;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
}
.back-btn svg {
  margin-right: 5px;
}
.back-btn:hover {
  text-decoration: underline;
}
.program-container {
  background-color: white;
  padding: 20px;
  margin-bottom: 20px;
  border-left: 5px solid #c82333;
}
.program-container h3 {
  color: #0c2340;
  font-size: 1.2rem;
  font-weight: bold;
}
.program-container p {
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.view-link {
  color: #c82333;
  font-size: 0.9rem;
  display: inline-block;
  margin-top: 5px;
}
.view-link:hover {
  text-decoration: underline;
}
.section-title {
  color: #0c2340;
  font-weight: bold;
  margin-bottom: 15px;
}
.section-subtitle {
  color: #0c2340;
  font-weight: bold;
  font-size: 1.4rem;
  margin-bottom: 15px;
}
.bg-pattern {
  background-image: url("../website/image.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.content-wrapper {
  position: relative;
  padding-top: 30px;
}
.underline-text p {
  display: inline-block;
  border-bottom: 2px solid #fff; /* Black underline */
  padding-bottom: 4px; /* Space between text and underline */
}

.animate-line {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards;
}

.animate-line:nth-child(1) {
  animation-delay: 0s;
}
.animate-line:nth-child(2) {
  animation-delay: 1.5s;
}
.animate-line:nth-child(3) {
  animation-delay: 3s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.video-bg iframe {
  object-fit: cover;
  pointer-events: none;
}

.program-triangle {
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 30px;
  background: #005fa3;
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
  z-index: 1;
}

.program-section::before {
  content: "";
  position: absolute;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 30px solid #cdc6bf;
  bottom: -33%;
  left: 7%;
}

/* .hero-section-triangle::before{
  content: "";
  position: absolute;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 30px solid #cdc6bf;
  bottom: -30px;
  left: 7%;
} */

/* follow us style started */
.follow-us-text {
    color: #e01a33;
    font-weight: bold;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    visibility: hidden;
}

.subtext {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.social-icons a {
    display: inline-block;
    margin-right: 5px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background-color: #e01a33;
    color: white;
    border-radius: 3px;
    font-size: 0.8rem;
}

.grid-carousel carousel-inner {
    min-height: 560px;
    max-height: 100vh; /* Prevent it from exceeding the viewport height */
    overflow: hidden; /* Hide any overflow */
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 185px;
    gap: 5px;
}

.grid-item {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.grid-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(224, 26, 51, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 15px;
    text-align: center;
}

.grid-item:hover .grid-item-overlay {
    opacity: 1;
}

.grid-item:hover img {
    transform: scale(1.1);
}

.grid-item-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.grid-item-overlay p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.carousel-control-prev, .carousel-control-next {
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    opacity: 0.8;
}

.carousel-control-prev {
    left: 10px;
}

.carousel-control-next {
    right: 10px;
}

/* Special layouts */
.column-span-1 {
    grid-column: span 1;
}

.intro-section {
    background-color: #f8f9fa;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    z-index: 10;
}

.grad-cap {
    grid-row: span 2;
}

.giving-tuesday {
    background-color: #e01a33;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.giving-tuesday h3 {
    font-weight: bold;
    margin-bottom: 15px;
}

.giving-tuesday p {
    font-size: 1.2rem;
    margin-bottom: 0;
}

/* Fixed column for "FOLLOW US" section */
.fixed-column {
    position: sticky;
    top: 0;
    z-index: 1020;
    height: 100%;
}

/* Layout for sticky implementation */
.layout-container {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    min-height: 100vh;
    height: 100%; /* Ensure it takes the full height of the viewport */
}

.follow-us-sidebar {
    flex: 0 0 30%;
    max-width: 30%;
    position: sticky;
    top: 0;
    height: 100vh; /* Keep this to match viewport height */
    overflow-y: hidden; /* Prevent scrolling */
    background-color: #f8f9fa;
    padding: 20px;
    z-index: 1;
}

.content-area {
    flex: 0 0 70%;
    max-width: 70%;
    min-height: 100vh; /* Ensure it matches the sidebar height */
    display: flex;
    flex-direction: column;
}

.follow-us-sidebar .img-fluid {
    max-height: calc(100vh - 200px); /* Adjust based on the space taken by text and padding */
    width: 100%;
    object-fit: cover; /* Ensure the image scales properly */
}

.grid-container-alt {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: calc(100vh / 3);
    max-height: 100vh; /* Constraint the grid height */
    overflow: hidden; /* Hide overflow */
    gap: 0;
}

/* Media queries for responsiveness */
@media (max-width: 991px) {
    .follow-us-sidebar {
        flex: 0 0 30%;
        max-width: 30%;
    }

    .content-area {
        flex: 0 0 70%;
        max-width: 70%;
    }

    .grid-container-alt {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: calc(100vh / 3); /* Maintain row height */
        gap: 0;
    }
}

@media (max-width: 767px) {
    .follow-us-sidebar {
        flex: 0 0 100%;
        max-width: 100%;
        height: auto; /* Allow it to size based on content */
        position: relative;
    }

    .content-area {
        flex: 0 0 100%;
        max-width: 100%;
        min-height: auto; /* Reset for smaller screens */
    }

    .carousel-inner {
        max-height: none; /* Allow natural height on smaller screens */
    }

    .grid-container-alt {
        max-height: none; /* Allow natural height on smaller screens */
    }
}

@media (max-width: 575px) {
  .grid-container-alt {
        grid-template-columns: 1fr;
        grid-auto-rows: calc(100vh / 3);
        gap: 0;
    }
}
/* follow us style ended */

/* footer style started */
.site-footer {
/* color: white; */
background-color: #0a2240;
position: relative;
overflow: hidden;
padding: 3rem 0;

}

.site-footer::before {
content: "";
position: absolute;
inset: 0;
background: url('../website/footer.jpg') center center / cover no-repeat;
opacity: 0.1; /* Adjust this for desired darkness */
z-index: 0;
}

.site-footer__background {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
opacity: 0.2;
z-index: 0;
background: inherit;
}

.site-footer__content {
position: relative;
z-index: 2;
}

.footer-logo {
max-width: 280px;
margin-bottom: 2rem;
}

.footer h2 {
font-size: 1.2rem;
font-weight: bold;
margin-bottom: 1.5rem;
}

.site-footer a {
color: white;
font-size: large;
text-decoration: none;
}

.h-logo {
color: #e31b23;
font-weight: bold;
font-size: 5rem;
margin-top: 2rem;
}

.location-marker {
position: relative;
color: #ffcc00;
font-weight: bold;
margin: 1rem 0;
}

.location-marker::before {
content: "●";
color: #ffcc00;
margin-right: 0.5rem;
}

.social-icons a {
color: white;
background-color: #e31b23;
width: 30px;
height: 30px;
display: inline-flex;
justify-content: center;
align-items: center;
margin-right: 0.5rem;
margin-bottom: 0.5rem;
text-decoration: none;
}

.social-icons a:hover {
opacity: 0.9;
text-decoration: none;
}

.footer-nav-link {
display: block;
margin-bottom: 0.8rem;
opacity: 0.7;
}

.footer-nav-link:hover {
display: block;
margin-bottom: 0.8rem;
text-decoration: none;
opacity: 1;
}

.footer-disclaimer {
font-size: large;
margin-top: 3rem;
line-height: 1.6;
color: #fff;
}

.footer-address {
font-size: 0.9rem;
line-height: 1.6;
margin-top: 2rem;
color: #fff;
}

.footer-policy {
font-style: italic;
margin: 1rem 0;
display: inline-block;
text-decoration: underline !important;
}

.text-gold {
color: #ffcc00;
}

.social-icons-row {
margin-top: 2rem;
margin-bottom: 2rem;
}

/* Mobile specific styles */
@media (max-width: 767.98px) {
.site-footer {
  padding: 2rem 0;
}

.map-section {
  display: none; /* Hide map on mobile */
}

.section-column {
  margin-bottom: 2rem;
  text-align: center;
}

.footer-links-column {
  text-align: left;
}

.footer-logo {
  margin-left: auto;
  margin-right: auto;
}
}

/* Small mobile devices */
@media (max-width: 575.98px) {
.footer-links-col {
  margin-bottom: 1.5rem;
}

.social-icons {
  margin-top: 1rem;
}
}
/* footer style ended */

/* pre footer style started */
.custom-callout {
  background-image: url('../website/home-footer.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 40.625rem;
  position: relative;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #1a2526;
}
.custom-callout__content {
  padding: 2rem;
}
.custom-callout__text {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #002242;;
}
/* pre footer style ended */

/* Button base style */
.btn-bracket {
position: relative;
color: #dc1a36;
background-color: transparent;
border: none;
font-weight: bold;
padding: 8px 12px;
transition: all 0.3s ease;
}

/* Bracket styling */
.btn-bracket::before,
.btn-bracket::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 10px;
  transition: all 0.3s ease;
}

/* Left bracket */
.btn-bracket::before {
  left: -5px;
  border-left: 2px solid #dc1a36;
  border-top: 2px solid #dc1a36;
  border-bottom: 2px solid #dc1a36;
}

/* Right bracket */
.btn-bracket::after {
  right: -5px;
  border-right: 2px solid #dc1a36;
  border-top: 2px solid #dc1a36;
  border-bottom: 2px solid #dc1a36;
}

/* Hover state */
.btn-bracket:hover {
  color: #fff;
  background-color: #dc1a36;
}

/* Bracket transition on hover */
.btn-bracket:hover::before {
  left: 0;
  border-left-color: #dc1a36;
}

.btn-bracket:hover::after {
  right: 0;
  border-right-color: #dc1a36;
}
