/* bootstrap strat */


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  color: #fff;
}

p {
  font-family: var(--font-s);
  font-size: clamp(15px, 3vw, 20px);
  color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
  /* all: unset; */
  font-weight: unset;
  line-height: inherit;
}

button {
  outline: none;
  background: none;
  background-color: none;
  border: none;
  color: inherit;
  font-size: inherit;
  transition: all 0.3s ease-in-out;
}

/* 
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  border: 2px solid #cb188b;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease, transform 0.2s ease;
  opacity: 1;
}

.custom-cursor.dissolve {
  opacity: 0;
  transform: scale(0.8) translate(-50%, -50%);
}

@media screen and (max-width:992px){
	.custom-cursor {
		display:none;
	}
} */

input:hover,
input:focus,
textarea:hover,
textarea:focus,
input,
textarea {
  outline: none;
  /* border: none; */
}

dl,
ol,
ul {
  margin-bottom: 0;
}

ol,
ul {
  padding-left: 0;
}

p {
  margin-bottom: 0;
}

a:hover {
  text-decoration: none !important;
}

a {
  text-decoration: none;
}

.upper {
  text-transform: uppercase;
}

.mt-50px {
  margin-top: 50px;
}

.mx-80px {
  margin-top: 80px;
  margin-bottom: 80px;
}

.mx-20px {
  margin-top: 20px;
  margin-bottom: 20px;
}

.mb-50px {
  margin-bottom: 50px;
}

.mb-80px {
  margin-bottom: 80px;
}

.mb-20px {
  margin-bottom: 20px;
}

.px-15px {
  padding-left: 15px;
  padding-right: 15px;
}

a:focus {
  outline: none !important;
}

.w-80 {
  width: 80%;
}

.w-60 {
  width: 60%;
}

.align-center {
  align-items: center;
}

.img-wp img {
  width: 100%;
}

.img-wp {
  width: 100%;
}

.mt-80px {
  margin-top: 80px;
}

.mt-30px {
  margin-top: 30px;
}

.mt-60px {
  margin-top: 60px;
}

.mb-30px {
  margin-bottom: 30px;
}

.pb-10px {
  padding-bottom: 10px;
}

.pb-20px {
  padding-bottom: 20px;
}

.px-150 {
  padding: 0 150px;
}

img {
  height: auto;
}

/* bootstrap end */

/* fonts */

@font-face {
  font-family: 'georgia';
  src: url('../fonts/georgia.ttf') format('truetype');
}

@font-face {
  font-family: 'effra';
  src: url('../fonts/Effra.ttf') format('truetype');
}


:root {
  --font-p: "effra", sans-serif;
  --font-sec: "georgia", sans-serif;
  --p-color: #fff;
  --gray: #555555;
  --black: #000000;
  --blue: #1A3C6B;
  --sec-color: #cd2128;
  --background: #ffffff;
  --light: #e6baba;
  --dark: #cd2128;
}

/* 
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background-color: var(--dark);
    border-radius: 6px;
    border: 3px solid var(--light);
}

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

* {
    scrollbar-width: thin;
    scrollbar-color: var(--dark) var(--background);
} */

/* @supports (-ms-overflow-style: none) {
    * {
        -ms-overflow-style: scrollbar;
    }
} */


a {
  color: #2685CB;
  text-decoration: none;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

a:hover {
  cursor: pointer;
  color: var(--sec-color);
}

body {
  background-color: var(--background) !important;
  scroll-behavior: smooth;
}

html,
body {
  font-family: var(--font-p);
  background-color: var(--background);
  max-width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  margin-bottom: 0 !important;
  padding: 0 !important;
}

/* Home page header */

#homehead {
  background-color: transparent;
  padding: 40px 20px;
  z-index: 999;
}

.site-header,
#masthead2 {
  background-color: var(--background);
  color: var(--black);
  transition: all 0.4s ease;
  backdrop-filter: none;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.site-header.scrolled::before,
#masthead2.scrolled::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.781);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: -1;
  pointer-events: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}



.container-custom-gap {
  padding-left: clamp(1rem, 7vw, 160px);
  padding-right: clamp(1rem, 7vw, 160px);
  width: 100%;
  max-width: 100%;
}

/* Main menu links only */
.nav>li>a {
  font-family: var(--font-p);
  font-weight: 600;
  color: var(--background) !important;
  font-size: clamp(15px, 3vw, 18px);
  transition: color 0.3s ease-in-out;
  text-decoration: none;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}

.nav>li>a:hover {
  color: var(--dark) !important;
}





/* Active state */
.nav>li.current-menu-item>a,
.nav>li.current_page_item>a,
.nav>li.current-menu-ancestor>a,
.nav>li.current_page_ancestor>a {
  color: var(--dark) !important;
}

.nav>li.current-menu-item>a::after,
.nav>li.current_page_item>a::after,
.nav>li.current-menu-ancestor>a::after,
.nav>li.current_page_ancestor>a::after {
  width: 100%;
  color: var(--dark);
}




.nav>li.menu-item-has-children:hover>a::after {
  color: var(--dark);
}

.main-nav {
  background-color: transparent !important;
}

.main-nav>li>a {
  font-family: var(--font-p);
  font-weight: 600;
  color: var(--blue) !important;
  font-size: clamp(15px, 3vw, 18px);
  transition: color 0.3s ease-in-out;
  text-decoration: none;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}





.menu-gap {
  gap: 2rem;
  background-color: rgba(26, 60, 107, 0.47);
}

.menu-gap.home {
  padding: 10px 20px;
}

.nav .sub-menu {
  background-color: #f0f2f5;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  min-width: 250px;
  max-width: 450px;
  width: max-content;
  position: absolute;
  top: 59px;
  right: -7px;
  z-index: 999;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  padding: 5px 20px;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  overflow-wrap: break-word;
  /* ✅ handle long words */
  word-break: break-word;
  /* ✅ prevent overflow */
}

.nav .sub-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


.nav .sub-menu li {
  position: relative;
  padding-right: 20px;
}

.nav .sub-menu li:not(:last-child) {
  border-bottom: 1px solid var(--blue);
}

.nav .sub-menu li:hover::after {
  content: "\f072";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%) rotate(360deg);
  font-size: 14px;
  color: var(--blue);
  transition: all 0.3s ease;
}



.nav .sub-menu::after {
  content: "";
  position: absolute;
  right: 20px;
  top: -12px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 12px solid #fff;
}

.nav li {
  position: relative;
}

.nav .sub-menu li {
  list-style: none;
}

.nav .sub-menu a {
  font-family: var(--font-p);
  font-weight: 600;
  font-size: 17px;
  color: var(--blue) !important;
  padding: 12px 16px;
  display: block;
  position: relative;
  text-transform: uppercase;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.nav .sub-menu li:first-child>a {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.nav .sub-menu li:last-child>a {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

/* .nav li:hover>.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
} */





.nav .sub-menu .sub-menu {
  background-color: var(--sec-color);
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  min-width: 180px;
  position: absolute;
  left: 100%;
  top: 0;
  z-index: 999;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav .sub-menu li:hover>.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav .sub-menu .sub-menu a {
  font-family: var(--font-p);
  font-weight: 500;
  font-size: 15px;
  color: var(--black) !important;
  padding: 8px 16px;
  display: block;
  position: relative;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.nav .sub-menu .sub-menu li:first-child>a {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.nav .sub-menu .sub-menu li:last-child>a {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.nav .sub-menu .sub-menu a:hover {
  color: var(--black) !important;
  background-color: #f0c396;
}

.nav .sub-menu .sub-menu li.current-menu-item>a,
.nav .sub-menu .sub-menu li.current_page_item>a {
  color: var(--background) !important;
  background-color: var(--dark);
}

.top-header {
  background-color: #1a3c6b;
  min-height: 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.location {
  color: #fff;
  font-family: var(--font-p);
  font-weight: 500;
  font-size: clamp(14px, 3vw, 18px);
}

.location:hover {
  color: #e0d7ca;
}


.header-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
  text-decoration: none;
  z-index: 2;
}

.header-social a i {
  color: var(--background);
  font-size: 25px;
  transition: transform 0.3s ease;
}

/* Hover Effect */






@media (min-width: 1250px) {
  .menu-gap {
    gap: 1.5rem;
  }
}

@media (min-width: 1650px) {
  .menu-gap {
    gap: 3rem;
  }
}

@media (min-width: 1900px) {
  .menu-gap {
    gap: 4rem;
  }
}

.custom-logo {
  height: auto;
  max-width: 100%;
  transition: all 0.3s ease-in-out;
}

.custom-logo {
  width: 350px;
  transition: all 0.3s ease-in-out;
}

.site-header .custom-logo {
  width: 312px;
  padding: 20px 0 !important;
}

.site-header.scrolled .custom-logo {
  width: 250px;
  padding: 10px 0 !important;
}

#masthead2 .custom-logo {
  width: 250px;
  padding: 20px 0;
}

#masthead2.scrolled .custom-logo {
  width: 200px;
  padding: 15px 0;
}


#masthead.scrolled::after,
#masthead2.scrolled::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.753);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  z-index: -1;
}

#masthead,
#masthead2 {

  z-index: 10;
}

.button1 {
  width: 192px;
  height: 50px;
  display: flex !important;
  justify-content: start !important;
  align-items: center !important;
  background-color: var(--blue) !important;
  border-radius: 3px !important;
  border: 2px solid transparent !important;
  color: #fff !important;
  font-family: var(--font-p) !important;
  font-size: clamp(14px, 3vw, 18px) !important;
  cursor: pointer;
  text-transform: uppercase !important;
  transition: all 0.3s ease;
  position: relative;
  padding: 0 24px;
}

.button1::after {
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.button1:hover {
  background-color: #fff !important;
  color: var(--blue) !important;
  border: 2px solid var(--blue) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2) !important;
}




/* Home design */

.banner_heading {
  font-size: clamp(35px, 6vw, 70px);
  font-weight: 900;
  font-family: var(--font-sec);
  color: #fff;
}


.home-banner {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.home-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(22, 57, 107, 0.301);
  z-index: 0;
}

.home-banner .container,
.home-banner .row,
.home-banner .col-lg-8,
.home-banner .col-md-10 {
  position: relative;
  z-index: 2;
}

.white-banner-divider {
  height: 1px;
  background-color: #fff;
  position: relative;
}

.white-banner-divider:before {
  content: "";
  position: absolute;
  left: 0;
  top: -3px;
  width: 192px;
  height: 7px;
  background-color: #2685CB;
}

.lead p {
  font-family: var(--font-p);
  color: #fff;
  font-size: clamp(18px, 3vw, 32px);
  font-weight: 700;
}

.banner-row {
  height: 700px !important;
}

@media (min-width: 1600px) {
  .banner-row {
    height: 700px !important;
    display: flex !important;
    align-items: end !important;
  }
}



.banner-social {
  margin-bottom: 200px;
}

.banner-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
  text-decoration: none;
  z-index: 2;
}

.banner-social a i {
  color: var(--background);
  font-size: 40px;
  transition: transform 0.3s ease;
}

/* Hover Effect */

.inner-section {
  max-width: 80%;
  background-color: #f0f2f5;
  padding: 40px 20px;
  margin: 0 30px 0 auto;
}

.our_mission {
  position: relative;
  bottom: 55px;
  z-index: 1;
}

.mission_title {
  font-family: var(--font-p);
  font-weight: 400;
  font-size: clamp(16px, 3vw, 18px);
  color: #2685CB;
  line-height: 18px;
  margin: 0;
  text-transform: uppercase;
}

.mission_subheading {
  font-family: var(--font-sec);
  font-size: clamp(28px, 4vw, 48px);
  color: #1A3C6B;
  line-height: 32px;
  margin-top: 0;
  font-weight: 700;
  margin-bottom: 10px;
}

.mission_desc,
.mission_desc p {
  font-family: var(--font-p);
  font-size: clamp(16px, 3vw, 24px);
  color: #222326;
  line-height: 32px;
  margin-top: 0;
  font-weight: 400;
  margin-bottom: 10px;
}




/* WATF Priorities Section */
.watf-section {
  background: #fff;
}

.watf-heading {
  font-family: var(--font-sec);
  font-size: clamp(28px, 4vw, 48px);
  color: #1A3C6B;
  font-weight: 900;
  line-height: 1.2;
}



.black-banner-divider {
  height: 1px;
  background-color: #222326;
  position: relative;
}

.black-banner-divider:before {
  content: "";
  position: absolute;
  left: 0;
  top: -3px;
  width: 192px;
  height: 7px;
  background-color: #cd2128;
}


.watf-tagline {
  font-family: var(--font-p);
  font-weight: 400;
  font-size: clamp(14px, 3vw, 18px);
  color: #2685CB;
}

.watf-title {
  font-family: var(--font-sec);
  font-weight: 600;
  font-size: clamp(18px, 3vw, 24px);
  color: #222326;
}

.watf-desc p {
  font-family: var(--font-p);
  font-weight: 400;
  font-size: clamp(18px, 3vw, 24px);
  color: #222326;
  margin-bottom: 12px;
	line-height:30px;
}

.watf-btn {
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: 6px;
  background: #0d2d64;
  border: none;
  transition: 0.3s;
}

.watf-btn:hover {
  background: #c92728;
}


.watf-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  height: 330px;
}

.watf-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.watf-img-wrapper:hover .watf-img {
  transform: scale(1.2);
}

.home-event-section{
	background:#1a3c6b;
	min-height:250px;
	display:flex;
	align-items:center;
}

/* Upcoming Events Section */
.home-event-section .card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-event-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Featured Image */
.home-event-section .card-img-top {
  width: 100%;
    height: auto;          
    max-height: 400px;     
    object-fit: contain;   
    background: #f9f9f9;   
    border-bottom: 1px solid #eee;
    display: block;
    margin: 0 auto;
    height: 300px;   
    object-fit: contain;
    border-bottom: 1px solid #eee;
}

/* Card Body */
.home-event-section .card-body {
    padding: 20px;
}

.home-event-section .card-title {
   font-weight: 400;
  font-family: var(--font-sec);
  font-size: clamp(23px, 3vw, 28px);
  line-height: 24px;
  color: #1A3C6B;
}

.home-event-section .card-text {
    font-weight: 400;
  font-family: var(--font-p);
  font-size: clamp(16px, 3vw, 18px);
  line-height: 30px;
  color: #222326;
}



.race-sponsors .sponsor-img {
max-width: 300px;
  aspect-ratio: 16/9;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid gainsboro;
  background: #fff;
  padding: 0 15px;
}

/* Hover effect */
.race-sponsors .sponsor-img:hover {
    transform: scale(1.03);      /* slight zoom */
    box-shadow: 0 8px 20px rgba(0,0,0,0.2); /* subtle shadow */
}

.custom-border {
  border-top: 2px solid #cd2128;
}

/* In the News */

.latest-news .section-title {
  font-weight: 700;
  font-size: 28px;
  border-bottom: 3px solid #0071bc;
  display: inline-block;
  padding-bottom: 5px;
}

.news-thumb img {
  border-radius: 15px;
  aspect-ratio: 4/2.6;
  object-fit: cover;
  object-position: center;
}

.news-thumb-right img {
  border-radius: 15px;
  width: 191px;
  aspect-ratio: 1/0.92;
  object-fit: cover;
}

.news-card-right {
  border-bottom: 1px solid #222326;
  padding-bottom: 30px;
}

.col-12:last-child .news-card-right {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}


.latest-news .news-card.large .news-title {
  font-weight: 400;
  font-family: var(--font-sec);
  font-size: clamp(18px, 3vw, 24px);
  line-height: 24px;
  color: #222326;
  margin: 10px 0;
}

.latest-news .news-card .news-title {
  font-weight: 400;
  font-family: var(--font-sec);
  font-size: clamp(18px, 3vw, 24px);
  line-height: 24px;
  color: #222326;
}

.latest-news .news-card .news-date {
  color: #2685CB;
  font-size: clamp(14px, 3vw, 18px);
  font-weight: 600;
  text-transform: uppercase;
}

.latest-news .news-card .news-excerpt {
  font-weight: 400;
  font-family: var(--font-p);
  font-size: clamp(18px, 3vw, 24px);
  line-height: 30px;
  color: #222326;
  margin: 10px 0;
}

.latest-news .read-more {
  color: #CD2128;
  font-weight: 600;
  font-family: var(--font-p);
  font-size: clamp(14px, 3vw, 18px);
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.latest-news .read-more:hover {
  color: var(--blue);
}

.latest-news .read-more:hover {
  text-decoration: underline;
}


.history-title {
  font-family: var(--font-sec);
  font-size: clamp(28px, 4vw, 48px);
  color: #1A3C6B;
  line-height: clamp(30px, 3vw, 50px);
  font-weight: 900;
  margin-top: 0;
  margin-bottom: 10px;
}

.history-desc p {
  font-weight: 400;
  font-family: var(--font-p);
  font-size: clamp(18px, 3vw, 24px);
  line-height: 30px;
  color: #222326;
  margin: 20px 0;
}

.history-image img {
  width: 100%;
  object-fit: cover;
  max-height: 650px;
  border-radius: 20px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}


.grantors-section {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.section-title {
  font-weight: 700;
  font-size: 1.8rem;
  border-bottom: 2px solid #0056a3;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

.grantor-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}


.grantor-logo img {
  max-height: 100px;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.grantor-logo img:hover {
  transform: scale(1.05);
}

.slick-track {
  display: flex;
  justify-content: center;
  align-items: center;
}

.entry-header .entry-title {
  font-family: var(--font-sec);
  font-weight: Bold;
  color: #1A3C6B;
  font-size: clamp(25px, 3vw, 40px);
}

.entry-content p {
  font-family: var(--font-p);
  font-weight: 400;
  font-size: clamp(18px, 3vw, 24px);
  line-height: 30px;
  color: #222326;
}

.entry-content h2 {
  font-family: var(--font-sec);
  font-weight: Bold;
  color: #1A3C6B;
  font-size: clamp(22px, 3vw, 32px);
}

.entry-content h3 {
  font-family: var(--font-sec);
  font-weight: Bold;
  color: #1A3C6B;
  font-size: clamp(18px, 3vw, 28px);
}

.entry-content h1 {
  font-family: var(--font-sec);
  font-weight: Bold;
  color: #1A3C6B;
  font-size: clamp(28px, 3vw, 40px);
}

.entry-content ul,
.entry-content ol {
  margin-left: 1.5rem;
}

.entry-content ul li {
  font-family: var(--font-p);
  font-weight: 400;
  font-size: clamp(18px, 3vw, 24px);
  line-height: 30px;
  color: #222326;
}

.entry-content ol li {
  font-family: var(--font-p);
  font-weight: 400;
  font-size: clamp(18px, 3vw, 24px);
  line-height: 30px;
  color: #222326;
}

#breadcrumbs {
  font-family: var(--font-p);
  font-weight: 400;
  font-size: clamp(16px, 3vw, 20px);
  line-height: 30px;
  color: #222326;
}
#breadcrumbs a{
	font-size: clamp(16px, 3vw, 20px) !important;
}

#breadcrumbs span{
	text-transform:uppercase;
}

/* Slick dots - pill style */

.history-slider .slick-slide img {
  width: 100% !important;
}

.history-slider .slick-dots {
  bottom: 0px;
  margin-left: 0;
}

.history-slider .slick-dots li {
  margin: 0 2px;
}

.history-slider .slick-dots li button:before {
  font-size: 0;
  /* hide default circle */
  width: 15px;
  height: 8px;
  border-radius: 999px;
  background: #fff;
  /* white pill */
  content: '';
  display: block;
  opacity: 1;
  transition: all 0.3s ease;
}

.history-slider .slick-dots li.slick-active button:before {
  background: #163a6b;
  width: 15px;
}

:where(.wp-block-columns) {
  margin-bottom: 0.8em !important;
}

.listing_img {
  border-radius: 20px;
  aspect-ratio: 4/2.6;
  object-fit: cover;
  object-position: center;
  width: 100%;
}


.related-news {
  padding-left: 20px;
  border-left: 1px solid #bdbfc2;
}

.entry-title {
  font-family: var(--font-sec);
  color: #1A3C6B;
  font-weight: 600;
  font-size: clamp(22px, 3vw, 38px);
}


.meta-desc {
  color: #9b9c9e;
  font-weight: 300;
  font-family: var(--font-p);
  font-size: clamp(16px, 3vw, 21px);
  display: flex;
  gap: 15px;
}


.custom_hr {
  margin: 20px 0;
  height: 1px !important;
  width: 100%;
  background-color: #bdbfc2;
  opacity: 1;
}

.share-link {
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

.share-link:hover {
  color: var(--blue);
}


.news-heading {
  font-weight: 300;
  font-size: clamp(14px, 3vw, 20px);
  margin-bottom: 20px;
  color: #bdbfc2;
}


.releated_heading {
  font-family: var(--font-sec);
  font-weight: Bold;
  color: #1A3C6B;
  font-family: clamp(16px, 3vw, 18px);
  line-height: 1.2;
}

.related_excerpt {
  font-family: var(--font-p);
  font-size: clamp(14px, 3vw, 21px);
  color: #222326;
  font-weight: 400;
}

.related_time {
  font-family: var(--font-p);
  font-size: clamp(14px, 3vw, 20px);
  color: #222326;
  font-weight: 300;
  opacity: 0.8;
}

.page-id-132 p,
.page-id-121 p {
  font-family: var(--font-p);
  font-weight: 400;
  font-size: clamp(16px, 3vw, 24px);
  color: #222326;
}

.page-id-132 h2,
.page-id-121 h2 {
  font-family: var(--font-sec);
  font-weight: Bold;
  color: #1A3C6B;
  font-size: clamp(22px, 3vw, 32px);
}

.page-id-121 h1 {
  font-family: var(--font-sec);
  font-weight: Bold;
  color: #1A3C6B;
  font-size: clamp(25px, 3vw, 40px);
}

.page-id-121 ol {
  margin-left: 1rem;
}

.page-id-121 ol li {
  font-family: var(--font-p);
  font-weight: 400;
  font-size: clamp(18px, 3vw, 24px);
  line-height: 30px;
  color: #222326;
}


.contact_details a {
  color: #000;
  transition: all 0.3s ease-in-out;
}

.contact_details a:hover {
  color: var(--blue);
}

.team_member {
  color: #2685CB;
  font-weight: 700;
}


.wpcf7 form input[type="email"],
.wpcf7 form input[type="tel"] {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Focus effect */
.wpcf7 form input:focus,
.wpcf7 form textarea:focus {
  border-color: #0d6efd;
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.2);
}

/* Submit button */
.wpcf7 form input[type="submit"] {
  background: #0d6efd;
  /* Bootstrap blue */
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  padding: 10px 25px;
  width: 192px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


.wpcf7 form input[type="submit"]:hover {
  background: #0056b3;

}


.wpcf7 form .row .col-12 {
  margin-bottom: 15px;
}

.wpcf7-textarea {
  height: 150px;
  padding: 10px 14px;
  resize: vertical;
}


.bod_img {
  border-radius: 15px;
}

.name {
  font-family: var(--font-sec);
  font-weight: Bold;
  color: #1A3C6B;
  font-size: clamp(14px, 3vw, 21px);
}

.page-id-121 .role {
  color: #212529 !important;
  font-family: var(--font-p) !important;
  font-size: clamp(14px, 3vw, 17px);
}

/* Header clickable area */
.header-toggle {
  cursor: pointer;
  transition: background-color 0.15s linear;
  /* faster, no lag */
}

/* Active background */
.header-toggle.open {
  background-color: #cfe2ff !important;
}

/* Chevron rotation */
.chevron {
  transition: transform 0.15s linear;
  /* match background timing */
}

.chevron.rotated {
  transform: rotate(180deg);
}

/* Optional: hover effect */
.header-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
}

.header-toggle {
  cursor: pointer;
  transition: background-color 0.2s linear;
}

.header-toggle.open {
  background-color: #cfe2ff !important;
}

.chevron {
  transition: transform 0.2s linear;
}

.chevron.rotated {
  transform: rotate(180deg);
}



.bio,
.bio p {
  color: #212529;
  font-family: var(--font-p);
  font-size: clamp(14px, 3vw, 21px);
  font-weight: 300;
}


.mem_details {
  text-transform: uppercase;
  font-family: var(--font-p);
  font-size: 14px;
  font-weight: normal;
  color: #212529;
}


/* Events page */

.event-banner {
  position: relative;
  overflow: hidden;
}

.event-banner img {
  max-height: 400px;
  object-fit: cover;
  object-position: center;
  width: 100%;
  display: block;
}

.event-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.event-section h2, .sponsors_heading p{
  font-family: var(--font-sec) !important;
  font-weight: Bold !important;
  color: #1A3C6B !important;
  font-size: clamp(22px, 3vw, 40px) !important;
  line-height: 1.3 !important;
}

.event-section h5 {
  font-family: var(--font-sec);
  font-weight: Bold;
  color: #1A3C6B;
  font-size: clamp(16px, 3vw, 23px);
  line-height: 1.3;
}

.event-section h3 {
  font-family: var(--font-sec);
  font-weight: Bold;
  color: #1A3C6B;
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.3;
}

.event-section p {
  font-family: var(--font-p);
  font-weight: 400;
  font-size: clamp(18px, 3vw, 24px);
  color: #222326;
}

.error-head {
  font-family: var(--font-sec);
  font-weight: Bold;
  color: #1A3C6B;
  font-size: clamp(40px, 6vw, 80px);
  margin: 10px 0;
}

.error-subhead {
  font-family: var(--font-sec);
  font-weight: Bold;
  color: #1A3C6B;
  font-size: clamp(30px, 6vw, 50px);
  margin: 10px 0;
}

.error-desc{
  font-family: var(--font-p);
  font-weight: 400;
  font-size: clamp(18px, 3vw, 24px);
  color: #222326;
}


.sponsor-logo {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.sponsors_heading {
  font-family: var(--font-sec);
  font-weight: Bold;
  color: #1A3C6B;
  font-size: clamp(22px, 3vw, 35px);
}








/* Footer design */

.footer-top {
  background-color: #c8e2f5;
  padding: 42px 36px;
}

.footer-description {
  color: #1A3C6B;
  font-family: var(--font-p);
  font-weight: 500;
  line-height: 1.4;
  font-size: clamp(18px, 3vw, 24px);
}

.footer-menu {
  margin-left: 0;
}

.footer-heading {
  font-family: var(--font-sec);
  font-size: clamp(22px,3vw,30px);
  font-weight: 600;
  color: var(--blue);
}

.footer-menu li a {
  font-family: var(--font-p);
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 500;
  color: var(--blue);
  transition: all 0.3s ease-in-out;
}

.footer-menu li a:hover {
  text-decoration: underline !important;
  color: #0B2345;
}

.footer-bottom {
  background-color: #1A3C6B;
  padding: 10px 36px;
}

.social_icon i {
  font-size: clamp(18px, 3vw, 24px);
}

.footer-social .social_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social .social_icon i {
  font-size: 25px !important;
  transition: transform 0.3s ease;
}

.footer-social a{
	display:flex;
	justify-content:center;
	align-items:center;
}

.page-id-130 .wp-block-image {
  text-align: center;
}

.history-img img{
	width:100% !important;
}

.modal-desc p{
	    font-family: var(--font-sec);
    font-weight: 300;
    color: #1A3C6B;
	    font-size: calc(1.275rem + .3vw);
}