@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Nanum+Myeongjo:wght@400;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Marcellus&display=swap');
:root {
  --primary: #0B1E4A;
  --secondary: #FF8800;
  --accent: #e67a00;
  --light: #f8f9fa;
  --gold: #FFD700;
  --text-light: #ffffff;
  --text-dark: #333333;
  --light-bg: #ffffff;
  --light-secondary: #f5f7fb;
}



html {
  scroll-padding-top: 100px; /* Match or slightly exceed the height of your .header-sticky */
  height: 100%;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Lato', serif;
  font-weight: 400; /* or 300, 700, 900 */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  letter-spacing: 1px;
}
h1, h2, h3, h4, h5, h6
{
  /*font-family: 'Nanum Myeongjo', serif;*/
  font-family: 'Marcellus', serif;
  font-weight: 700; /* or 300, 700, 900 */
}

p
{
  font-size: 17px;
}
.site-content {
  flex: 1;
}

.container
{
  max-width: 1450px;
}

#backToTop 
{
  display: none; /* Hidden initially */
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #333;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 50%;
  font-size: 15px;
  transition: background-color 0.3s;
}
#backToTop:hover {
  background-color: #555;
}

/*LOADER CSS START*/

#siteLoader {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader-circle {
  position: absolute;
  width: 70px;
  height: 70px;
  border: 2px solid var(--primary);
  border-top: 2px solid var(--secondary); /* Highlight color */
  border-radius: 50%;
  animation: spin 1.5s linear infinite;
  z-index: 1000;
}

.loader-image {
  position: relative;
  width: 80px;
  height: 62px;
  z-index: 1001;
  border-radius: 50%; /* optional: make image circular */
}

@keyframes spin {
  0% { 
    transform: rotate(0deg); 
  }
  100% { 
    transform: rotate(360deg); 
  }
}


/*LOADER CSS END*/

/*------------------------------------------------------------ Header CSS START ------------------------------------------------------------*/

.top-header {
  background-color: var(--primary);
  color: var(--text-light);
  padding: 8px 0;
  font-size: 14px;
}

.top-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-info {
  display: flex;
  gap: 25px;
}

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

.contact-item i {
  color: var(--secondary);
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: var(--text-light);
  transition: color 0.3s;
}

/*.social-icons a:hover {
  color: var(--secondary);
}
*/
.main-header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.main-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 5px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img
{
  height: 55px;
}

.logo-icon {
  background-color: var(--primary);
  color: var(--text-light);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
}

.navbar-brand
{
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

.logo-text span {
  color: var(--secondary);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 5px;
  margin: 0;
  position: relative;
}

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

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
  padding: 0.75em;
  transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a::after {
  content: '';
  width: 0%;
  height: 2px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s;
}

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

.nav-menu a:hover::after {
  width: 100%;
}

/* Submenu Styling with smooth reveal */
.sub-menu {
  display: none;
  position: absolute;
  left: 50px;
  top: calc(100% + 1px);
  min-width: 180px;
  background: #fff;
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
  border-radius: 5px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 99;
  padding: 0;
}

.menu-item-has-children:hover > .sub-menu,
.menu-item-has-children:focus-within > .sub-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.submenu-toggle {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1em;
  cursor: pointer;
  margin-left: 6px;
  user-select: none;
}

/*.menu-item-has-children > a {
  display: inline-block;
}*/

.sub-menu a {
  display: block;
  color: var(--text-dark);
  font-weight: 400;
  padding: 0.65em 1.2em;
  background: transparent;
  transition: color 0.3s, background 0.3s;
}

.sub-menu a:hover,
.sub-menu a:focus {
  background: var(--secondary);
  color: #fff;
  outline: none;
}

/* Arrow for parents */
.menu-item-has-children > a::after {
  font-family: 'Font Awesome 5 Free'; /* Make sure Font Awesome CSS is imported */
  content: "\f078"; /* Font Awesome arrow-down icon */
  font-weight: 900; /* for solid icons */
  margin-left: 6px;
  font-size: 0.75em;
  transition: color 0.3s;

}

.menu-item-has-children:hover > a::after,
.menu-item-has-children:focus-within > a::after {
  color: var(--primary);
}

.cta-button {
  background-color: var(--secondary);
  color: var(--text-light);
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #e67a00;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--primary);
  cursor: pointer;
  position: absolute;
  right: 8px;
}

@media (max-width: 992px) {
  .nav-menu {
    gap: 20px;
  }
  
  .contact-info {
    gap: 15px;
  }
}

@media (max-width: 991px) {
  .top-header {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 65px;
    left: 0;
    width: 100%;
    background-color: var(--text-light);
    flex-direction: column;
    padding: 20px 0;
    gap: 15px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
  }
  
  .nav-menu.active {
    transform: translateY(0);
  }
  
  .contact-info {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 991px) {
  .nav-menu {
    flex-direction: column;
  }

  .sub-menu {
    display: none;
    position: static;
    opacity: 1;
    transform: none;
    box-shadow: none;
    background: #fff;
    min-width: auto;
  }
  
  /* Show submenu when open */
  .menu-item-has-children.open > .sub-menu {
    display: block;
  }
}

@media(max-width: 991px)
{
  .main-header .cta-button
  {
    display: none;
  }

}

/*------------------------------------------------------------ Header CSS END ------------------------------------------------------------*/
/*------------------------------------------------------------ VIDEO SECTION CSS START ------------------------------------------------------------*/

.video-section {
  padding: 20px 0;
}
.video-inner-section {
  width: 100%;
  background: var(--light-bg);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(11, 30, 74, 0.15);
}

.video-section-header {
  padding: 30px;
  text-align: center;
  background: var(--primary);
  color: var(--text-light);
}

.video-section-header h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.video-section-header p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.content-columns {
  display: flex;
  flex-wrap: wrap;
}

.left-column {
  flex: 1;
  min-width: 300px;
  padding: 40px;
  background: var(--light-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.right-column {
  flex: 1;
  min-width: 300px;
  background: var(--primary);
  position: relative;
}

.video-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.video-feature-icon {
  width: 60px;
  height: 60px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.video-feature-content h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.video-feature-content p {
  color: var(--text-dark);
  font-size: 1rem;
}


.video-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
  background: var(--primary);
  overflow: hidden;
}

.video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 30, 74, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  text-align: center;
  padding: 20px;
  transition: opacity 0.3s ease;
}

.video-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.play-btn {
  width: 80px;
  height: 80px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 2rem;
  margin-bottom: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(255, 136, 0, 0.3);
}

.play-btn:hover {
  background: var(--accent);
  transform: scale(1.1);
}

.video-overlay h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--gold);
}

.video-overlay p {
  font-size: 1.1rem;
  max-width: 400px;
}

.video-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  align-items: center;
  background: rgba(11, 30, 74, 0.8);
  padding: 10px 20px;
  border-radius: 30px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-controls.visible {
  opacity: 1;
}

.control-btn {
  width: 45px;
  height: 45px;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid var(--gold);
}

.control-btn:hover {
  background: var(--secondary);
  transform: scale(1.1);
}

/* Responsive styles */
@media (max-width: 992px) {
  .content-columns {
    flex-direction: column-reverse;
  }
}
@media (max-width: 768px) {

  .left-column {
    padding: 20px 10px;
  }

  .video-section-header h1 {
    font-size: 1.8rem;
  }

  .video-container {
    min-height: 100%;
  }

  .play-btn {
    width: 70px;
    height: 70px;
    font-size: 1.7rem;
  }

  .video-overlay h3 {
    font-size: 1.5rem;
  }


}

@media (max-width: 474px) {
  .video-feature-item {
    gap: 15px;
  }

  .video-container {
    min-height: 100%;
  }

  .video-section-header h1 {
    font-size: 1.5rem;
  }

  .video-overlay h3 {
    font-size: 1.3rem;
  }

  .video-overlay p {
    font-size: 1rem;
  }
  .video-section-header p
  {
    font-size: 0.95rem;
  }
  .video-section-header 
  {
    padding: 20px 10px;

  }
  .video-feature-content p
  {
    font-size: 0.95rem;
  }
  .video-feature-content h3
  {
    font-size: 1.2rem;
  }
  .video-controls {
    bottom: 15px;
    padding: 8px 15px;
  }
  .video-feature-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .control-btn {
    width: 40px;
    height: 40px;
  }
}

#progressBarContainer {
  width: 100%;
  height: 8px;
  background: #e0e0e0;
  border-radius: 4px;
  margin: 10px 0;
  cursor: pointer;
  position: absolute;
  z-index: 99999;
  bottom: -10px;
}
#progressBar {
  width: 0;
  height: 100%;
  background: #1c7ed6;
  border-radius: 4px;
  transition: width 0.1s linear;
}


/*------------------------------------------------------------ VIDEO SECTION CSS END ------------------------------------------------------------*/


/*-------------------------------------------------- Main Hero Banner CSS Start -------------------------------------------------------*/


.hero-banner {

  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 2rem 0;
  position: relative;
}

.hero-container {
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.hero-content {
  flex: 1;
  min-width: 300px;
  padding-right: 2rem;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--primary);
}

.hero-title span {
  color: var(--secondary);
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 600px;
  color: var(--text-dark);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn {
  padding: 0.9rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
  border: none;
  font-size: 1.1rem;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: #0a1a40;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(11, 30, 74, 0.3);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--text-light);
}

.btn-secondary:hover {
  background-color: #e67a00;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 136, 0, 0.3);
  color: var(--primary);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.hero-stats .stat-label {
  font-size: 1rem;
  color: var(--primary);
}

.hero-visual {
  flex: 1;
  min-width: 300px;
  position: relative;
  height: 400px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 15px;
  height: 100%;
  width: 100%;
}

.image-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  background-size: cover;
  background-position: center;
  position: relative;
}

.image-item:hover {
  transform: translateY(-5px);
}

.image-item:nth-child(1) {
  grid-column: 1;
  grid-row: 1;

}

.image-item:nth-child(2) {
  grid-column: 2;
  grid-row: 1 / span 2;

}

.image-item:nth-child(3) {
  grid-column: 1;
  grid-row: 2;

}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(11, 30, 74, 0.7));
  color: white;
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.image-overlay p
{
  margin: 0;
  font-weight: 600;
}

.image-item:hover .image-overlay {
  transform: translateY(0);
}

.hero-pattern {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--secondary) 0%, rgba(255, 136, 0, 0.3) 100%);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  z-index: 1;
  opacity: 0.7;
}

@media (max-width: 991px) 
{
  .hero-container 
  {
    flex-direction: column;
    text-align: center;    
    padding: 0 1rem;
  }  
  .hero-stats
  {
    justify-content: center;
  }
  .cta-buttons {
    justify-content: center;
  }

}
@media (max-width: 768px) {  

  .hero-content {
    padding-right: 0;
  }

  .hero-title {
    font-size: 1.8rem;
  }
  .hero-subtitle
  {
    font-size: 1rem;
  }

  

}

/*-------------------------------------------------- Main Hero Banner CSS END -------------------------------------------------------*/

/*-------------------------------------------------- Mission & Vision CSS START -------------------------------------------------------*/

.feature-gswa-sections {
  margin: 0 auto;
  padding: 20px 0;
}

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

.section-header h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary);
  border-radius: 2px;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-dark);
  max-width: 700px;
  margin: 0 auto;
}

.vision-mission-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

.vision-card, .mission-card {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(11, 30, 74, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.vision-card:hover, .mission-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(11, 30, 74, 0.15);
}

.vision-card::before, .mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
}

.vision-card::before {
  background: linear-gradient(90deg, var(--primary), #1a3a7a);
}

.mission-card::before {
  background: linear-gradient(90deg, var(--secondary), #ffaa44);
}

.card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 2rem;
}

.vision-card .card-icon {
  background: rgba(11, 30, 74, 0.1);
  color: var(--primary);
}

.mission-card .card-icon {
  background: rgba(255, 136, 0, 0.1);
  color: var(--secondary);
}

.vision-card h3, .mission-card h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.mission-card h3 {
  color: var(--secondary);
}

.vision-card p, .mission-card p {
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.8;
}

.heritage-section {
  background: linear-gradient(135deg, var(--primary) 0%, #0d265c 100%);
  border-radius: 20px;
  padding: 60px 40px;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.heritage-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 136, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.heritage-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.heritage-text h3 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: var(--text-light);
  position: relative;
  display: inline-block;
}

.heritage-text h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
}

.heritage-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.9);
}

.heritage-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.heritage-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.heritage-feature i {
  color: var(--secondary);
  font-size: 1.5rem;
  margin-top: 5px;
}

.heritage-feature div h4 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--text-light);
}

.heritage-feature div p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.heritage-visual {
  position: relative;
}

.heritage-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 15px;
  height: 350px;
}

.heritage-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease;
  background-size: cover;
  background-position: center;
  position: relative;
}

.heritage-image:hover {
  transform: scale(1.05);
  z-index: 2;
}


.heritage-image:nth-child(2) {

  grid-row: 1 / span 2;
}


.image-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(11, 30, 74, 0.8);
  color: white;
  padding: 15px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.heritage-image:hover .image-label {
  transform: translateY(0);
}

@media (max-width: 992px) {
  .vision-mission-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .heritage-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .heritage-image-grid {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2.2rem;
  }

  .vision-card, .mission-card {
    padding: 30px;
  }

  .heritage-section {
    padding: 40px 25px;
  }

  .heritage-image-grid {
    height: 250px;
  }
}

/* Animation for elements on load */
.vision-card, .mission-card, .heritage-content > div {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.vision-card { animation-delay: 0.2s; }
.mission-card { animation-delay: 0.4s; }
.heritage-text { animation-delay: 0.6s; }
.heritage-visual { animation-delay: 0.8s; }

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

/*-------------------------------------------------- Mission & Vision CSS END -------------------------------------------------------*/

/*-------------------------------------------------- Our Events CSS START -------------------------------------------------------*/

.events-section {
  margin: 0 auto;
  padding: 20px 0;
}

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

.section-header h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary);
  border-radius: 2px;
}


.events-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.event-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(11, 30, 74, 0.1);
  transition: all 0.4s ease;
  position: relative;
}

.event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(11, 30, 74, 0.15);
}

.event-card.featured {
  border: 3px solid var(--secondary);
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--secondary);
  color: var(--text-light);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 2;
}

.event-image {
  height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.event-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(transparent, rgba(11, 30, 74, 0.7));
}

.event-date {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--primary);
  color: var(--text-light);
  padding: 12px;
  border-radius: 10px;
  text-align: center;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(11, 30, 74, 0.3);
}

.event-date .day {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.event-date .month {
  font-size: 0.9rem;
  font-weight: 500;
}

.event-content {
  padding: 20px;
}


.event-content h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.event-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.event-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.event-meta-item svg {
  color: var(--secondary);
  font-size: 1rem;
}

.event-description {
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.6;
}

.event-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.event-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

.event-price.free {
  color: var(--secondary);
}

.btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: none;
  font-size: 0.9rem;
}

.btn-primary {
  background: var(--primary);
  color: var(--text-light);
}

.btn-primary:hover {
  background: #0a1a40;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(11, 30, 74, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: rgba(11, 30, 74, 0.05);
  transform: translateY(-2px);
  color: var(--primary);
}

.events-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--primary) 0%, #0d265c 100%);
  border-radius: 15px;
  padding: 50px 40px;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.events-cta::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 136, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.events-cta h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.events-cta p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 2;
}

.btn-large {
  padding: 15px 30px;
  font-size: 1.1rem;
  background: var(--secondary);
  color: var(--text-light);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.btn-large:hover {
  background: #e67a00;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 136, 0, 0.3);
}

.calendar-view {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.calendar-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--primary);
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(11, 30, 74, 0.1);
  transition: all 0.3s ease;
}

.calendar-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11, 30, 74, 0.15);
  color: var(--secondary);
}

@media (max-width: 768px) {
  .events-container {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .events-cta {
    padding: 40px 25px;
  }


}

/* Animation for elements */
.event-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.event-card:nth-child(1) { animation-delay: 0.2s; }
.event-card:nth-child(2) { animation-delay: 0.4s; }
.event-card:nth-child(3) { animation-delay: 0.6s; }
.events-cta { animation-delay: 0.8s; }

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

/*-------------------------------------------------- Our Events CSS END -------------------------------------------------------*/

/*-------------------------------------------------- About Us Section CSS START -------------------------------------------------------*/

.about-section {
  margin: 0 auto;
  padding: 20px 0;
}


.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  margin-bottom: 50px;
}

.about-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(11, 30, 74, 0.15);
  height: 400px;
}

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

.about-image:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(11, 30, 74, 0.9));
  color: var(--text-light);
  padding: 25px;
}

.image-overlay h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: var(--text-light);
}

.members-only {
  background: var(--secondary);
  color: var(--text-light);
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
}

.website-link {
  margin: 10px 0;
}

.website-link a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  opacity: 0.9;
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 15px 0;
}

.member-highlight {
  background: rgba(255, 136, 0, 0.9);
  color: var(--text-light);
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  margin-top: 15px;
}

.member-highlight h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.member-highlight p {
  font-size: 0.95rem;
  opacity: 0.95;
  margin: 0;
}

.about-content h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 15px;
  line-height: 1.3;
}

.about-content p {
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.5;
}

.highlight-text {
  color: var(--secondary);
  font-weight: 600;
}

.features-grid {
  display: grid;
  grid-template-columns: 2fr 2fr;
  gap: 15px;
  margin-top: 25px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(11, 30, 74, 0.08);
  transition: transform 0.2s ease;
  border-left: 3px solid var(--secondary);
}

.feature-item:hover {
  transform: translateY(-2px);
}

.feature-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 136, 0, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  font-size: 1.4rem;
  color: var(--secondary);
}

.feature-content h4 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 5px;
}

.feature-content p {
  font-size: 0.9rem;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.4;
}

.stats-section {
  background: linear-gradient(135deg, var(--primary) 0%, #0d265c 100%);
  border-radius: 15px;
  padding: 40px 30px;
  color: var(--text-light);
  text-align: center;
  margin-top: 20px;
}

.stats-section h2 {
  font-size: 1.8rem;
  margin-bottom: 25px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.stat-item {
  padding: 15px;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 5px;
  line-height: 1;
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .about-content h2 {
    font-size: 1.4rem;
  }

  .about-image {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 30px 15px;
  }

  .about-header {
    margin-bottom: 30px;
  }

  .about-header h1 {
    font-size: 2rem;
  }

  .about-image {
    height: 300px;
  }

  .image-overlay {
    padding: 20px;
  }

  .image-overlay h2 {
    font-size: 1.5rem;
  }

  .feature-item {
    padding: 12px;
  }

  .stats-section {
    padding: 30px 20px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .stat-number {
    font-size: 1.5rem;
  }
}

/* Compact animations */
.about-image, .about-content, .feature-item, .stat-item {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.about-image { animation-delay: 0.1s; }
.about-content { animation-delay: 0.2s; }
.feature-item:nth-child(1) { animation-delay: 0.3s; }
.feature-item:nth-child(2) { animation-delay: 0.4s; }
.feature-item:nth-child(3) { animation-delay: 0.5s; }
.feature-item:nth-child(4) { animation-delay: 0.6s; }

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

/*-------------------------------------------------- About Us Section CSS END -------------------------------------------------------*/
/*-------------------------------------------------- Sponsors Section CSS START -------------------------------------------------------*/

.sponsors-section {
  margin: 0 auto;
  padding: 20px 0;
}


.sponsors-container {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(11, 30, 74, 0.1);
  position: relative;
  overflow: hidden;
}

.sponsors-intro {
  text-align: center;
  margin-bottom: 40px;
}

.sponsors-intro h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.sponsors-intro p {
  color: var(--text-dark);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1rem;
}

/* Owl Carousel Custom Styling */
.sponsor-slider {
  position: relative;
  margin: 30px 0;
}

.sponsor-item {
  background: white;
  border-radius: 12px;
  padding: 25px;
  margin: 10px;
  box-shadow: 0 5px 15px rgba(11, 30, 74, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(11, 30, 74, 0.1);
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sponsor-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(11, 30, 74, 0.15);
  border-color: var(--secondary);
}

.sponsor-logo {
  max-width: 100%;
  max-height: 80px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.sponsor-item:hover .sponsor-logo {
  filter: grayscale(0%);
  opacity: 1;
}

/* Custom Owl Nav */
.owl-theme .owl-nav
{
  margin: 0;
}
.owl-nav {
  position: absolute;
  top: 40%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.owl-prev, .owl-next {
  width: 50px;
  height: 50px;
  background: var(--primary) !important;
  color: var(--text-light) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  pointer-events: all;
  box-shadow: 0 5px 15px rgba(11, 30, 74, 0.2);
}

.owl-prev:hover, .owl-next:hover {
  background: var(--secondary) !important;
  transform: scale(1.1);
}

.owl-prev {
  margin-left: -25px !important;
}

.owl-next {
  margin-right: -25px !important;
}

/* Custom Owl Dots */
.owl-dots {
  margin-top: 30px;
  text-align: center;
}

.owl-dot {
  width: 12px;
  height: 12px;
  background: rgba(11, 30, 74, 0.2) !important;
  border-radius: 50%;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.owl-dot.active {
  background: var(--secondary) !important;
  transform: scale(1.2);
}

.owl-dot:hover {
  background: var(--primary) !important;
}


.owl-theme .owl-dots .owl-dot span
{
  display: none;
}
.become-sponsor {
  background: linear-gradient(135deg, var(--primary) 0%, #0d265c 100%);
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  color: var(--text-light);
  margin-top: 50px;
  position: relative;
  overflow: hidden;
}

.become-sponsor::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 136, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.become-sponsor h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.become-sponsor p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 2;
}

.sponsor-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--secondary);
  color: var(--text-light);
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.sponsor-btn:hover {
  background: #e67a00;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 136, 0, 0.3);
}

@media (max-width: 768px) {
  .sponsors-section {
    padding: 40px 15px;
  }

  .section-header h2 {
    font-size: 1.4rem;
  }

  .sponsors-container {
    padding: 30px 20px;
  }

  .sponsor-item {
    height: 120px;
    padding: 20px;
  }

  .owl-prev, .owl-next {
    width: 40px;
    height: 40px;
  }

  .owl-prev {
    margin-left: -15px !important;
  }

  .owl-next {
    margin-right: -15px !important;
  }

  .become-sponsor {
    padding: 30px 20px;
  }
}

/* Animation for elements */
.sponsors-intro, .become-sponsor {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.sponsors-intro { animation-delay: 0.2s; }
.become-sponsor { animation-delay: 0.8s; }

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

/*-------------------------------------------------- Sponsors Section CSS END -------------------------------------------------------*/

/*-------------------------------------------------- Footer CSS START -------------------------------------------------------*/
.footer-section
{
  background: linear-gradient(135deg, var(--primary) 0%, #0d265c 100%);  
}

.footer-logo
{
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer-logo img
{
  height: 90px;
}

.gswa-footer-body {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}


.gswa-footer-main {
  color: var(--text-light);
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}

.gswa-footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 2fr;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.gswa-footer-logo {
  position: relative;
}

.gswa-footer-logo h2 {
  font-size: 2rem;
  color: var(--text-light);
  position: relative;
  display: inline-block;
}

.gswa-footer-logo p {
  line-height: 1.7;
  margin-bottom: 25px;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
}

.gswa-footer-social {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.gswa-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}


.gswa-footer-social a i {
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}


.gswa-footer-social a:hover i {
  transform: rotate(360deg);
}

.gswa-footer-section h3 {
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.gswa-footer-section h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
}

.gswa-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gswa-footer-links li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 0;
  transition: padding-left 0.3s ease;
}

.gswa-footer-links li:hover {
  padding-left: 8px;
}

.gswa-footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.gswa-footer-links a:hover {
  color: var(--secondary);
}

.gswa-footer-links a i {
  margin-right: 12px;
  font-size: 0.9rem;
  color: var(--secondary);
  transition: transform 0.3s ease;
}

.gswa-footer-links a:hover i {
  transform: translateX(5px);
}

.gswa-footer-contact p {
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-size: 1.05rem;
}

.gswa-contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gswa-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.3s ease;
  border-radius: 8px;
}

.gswa-contact-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(5px);
}

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

.gswa-contact-details {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.gswa-contact-label {
  font-weight: 600;
  color: var(--text-light);
  font-size: 1rem;
}

.gswa-contact-value {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.gswa-contact-hours {
  margin-top: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}


.gswa-footer-bottom {
  background: linear-gradient(135deg, #0a1835 0%, #09142c 100%);
  color: rgba(255, 255, 255, 0.7);
  padding: 25px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
}

.gswa-footer-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
}

.gswa-copyright {
  font-size: 1rem;
}

.gswa-footer-bottom-links {
  display: flex;
  gap: 25px;
}

.gswa-footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.gswa-footer-bottom-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.gswa-footer-bottom-links a:hover {
  color: var(--secondary);
}

.gswa-footer-bottom-links a:hover::after {
  width: 100%;
}

@media (max-width: 1100px) {
  .gswa-footer-content {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .gswa-footer-logo {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .gswa-footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .gswa-footer-main {
    padding: 10px;
  }
  .footer-logo img
  {
    height: 65px;
  }

  .gswa-footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }

  .gswa-footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .gswa-footer-logo h2 {
    font-size: 1.5rem;
  }
}

/* Animation for elements on load */
.gswa-footer-section, .gswa-footer-logo, .gswa-footer-contact {
  opacity: 0;
  transform: translateY(20px);
  animation: gswaFadeInUp 0.6s ease forwards;
}

.gswa-footer-logo { animation-delay: 0.1s; }
.gswa-footer-section:nth-child(2) { animation-delay: 0.2s; }
.gswa-footer-section:nth-child(3) { animation-delay: 0.3s; }
.gswa-footer-contact { animation-delay: 0.4s; }

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

/*-------------------------------------------------- Footer CSS END -------------------------------------------------------*/

/*-------------------------------------------------- Breadcrumb CSS START -------------------------------------------------------*/

.breadcrumb-container {
  /*background-color: var(--text-light);*/
  background: 
  linear-gradient(
    to right,
    rgba(255, 136, 0, 0.72) 0%,
    rgba(11, 30, 74, 0.86) 70%,
    rgba(248, 249, 250, 0.6) 100%
  ),
  url('../images/diwali.png') center/cover no-repeat;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  justify-content: center;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 20px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb-link:hover {
  background-color: rgba(11, 30, 74, 0.1);
  transform: translateY(-2px);
}

.breadcrumb-link.active {
  background-color: var(--secondary);
  color: var(--text-light);
  box-shadow: 0 4px 8px rgba(255, 136, 0, 0.3);
}

.separator {
  margin: 0 8px;
  color: #fff;
  opacity: 0.5;
}        

/* Responsive Design */
@media (max-width: 768px) {

  .breadcrumb ul {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }

}

/*-------------------------------------------------- Breadcrumb CSS END -------------------------------------------------------*/

/*-------------------------------------------------- Event 1 Page CSS START -------------------------------------------------------*/
.our-event-1-section .page-header {
  text-align: center;
  padding: 20px 0;
}

.our-event-1-section .page-title {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.our-event-1-section .page-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary);
  border-radius: 2px;
}

.our-event-1-section .page-subtitle {
  color: var(--text-dark);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 20px auto 0;
}

/* Search Section */

.our-event-1-section .search-container {
  display: flex;
  position: relative;
}

.our-event-1-section .search-input {
  flex: 1;
  padding: 10px 25px;
  border: 2px solid #e0e0e0;
  border-radius: 30px;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s;
  padding-left: 50px;
}

.our-event-1-section .search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(11, 30, 74, 0.1);
}

.our-event-1-section .search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 1.2rem;
}

.our-event-1-section .search-button {
  background: var(--secondary);
  color: var(--text-light);
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
  margin-left: 10px;
}

.our-event-1-section .search-button:hover {
  background: #e67a00;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 136, 0, 0.3);
}

/* Featured Event */
.our-event-1-section .featured-event {
  background: linear-gradient(135deg, var(--primary) 0%, #1a3a7a 100%);
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  position: relative;
}

.our-event-1-section .featured-event-image {
  height: 500px;  
  position: relative;
}

.our-event-1-section .featured-badge {
  background: var(--secondary);
  color: var(--text-light);
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  display: inline-block;
  width: fit-content;
  margin: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.our-event-1-section .featured-event-content {
  padding: 30px;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.our-event-1-section .featured-title {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.our-event-1-section .featured-description {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 15px;
}

.our-event-1-section .event-details {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 15px 0;
}

.our-event-1-section .event-detail {
  display: flex;
  align-items: center;
  gap: 10px;
}

.our-event-1-section .event-detail i {
  color: var(--secondary);
  font-size: 1.2rem;
}

.our-event-1-section .featured-actions {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.our-event-1-section .btn {
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.our-event-1-section .btn-primary {
  background: var(--secondary);
  color: var(--text-light);
}

.our-event-1-section .btn-primary:hover {
  background: #e67a00;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 136, 0, 0.4);
}

.our-event-1-section .btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.our-event-1-section .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* Events Grid */
.our-event-1-section .events-section {
  margin-bottom: 50px;
}

.our-event-1-section .section-title {
  color: var(--primary);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.our-event-1-section .section-title i {
  color: var(--secondary);
}

.our-event-1-section .events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 25px;
}

.our-event-1-section .event-card {
  background: var(--text-light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.our-event-1-section .event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.our-event-1-section .event-image {
  height: 380px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.our-event-1-section .event-date {
  background: var(--primary);
  color: var(--text-light);
  padding: 10px 15px;
  text-align: center;
  position: absolute;
  top: 15px;
  left: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.our-event-1-section .event-day {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.our-event-1-section .event-month {
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-top: 3px;
}

.our-event-1-section .event-content {
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.our-event-1-section .event-head
{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px; 
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(11, 30, 74, 0.1);
}

.our-event-1-section .event-title {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.our-event-1-section .event-description {
  color: var(--text-dark);
  margin-bottom: 15px;
  font-size: 0.95rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.our-event-1-section .event-meta {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}

.our-event-1-section .event-location, .our-event-1-section .event-time {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
  color: #666;
}

.our-event-1-section .event-location i, .our-event-1-section .event-time i {
  color: var(--secondary);
}

.our-event-1-section .event-actions {
  display: flex;
  justify-content: space-between;
  
}

.our-event-1-section .btn-small {
  padding: 8px 15px;
  font-size: 0.9rem;
}

.our-event-1-section .no-events {
  text-align: center;
  padding: 40px;
  color: #666;
  font-size: 1.1rem;
  grid-column: 1 / -1;
  background: var(--text-light);
  border-radius: 10px;
}

.our-event-1-section .no-events i {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {


  .our-event-1-section .featured-event-content {
    padding: 20px;
    gap: 10px;
  }
  
  .our-event-1-section .featured-title {
    font-size: 1.3rem;
  }
  
  .our-event-1-section .search-container {
    flex-direction: column;
  }

  .our-event-1-section .search-input {
    margin-bottom: 10px;
    padding-left: 20px;
  }
  
  .our-event-1-section .search-icon {
    display: none;
  }
  
  .our-event-1-section .search-button {
    margin-left: 0;
    border-radius: 30px;
  }
  
  .our-event-1-section .featured-actions {
    flex-direction: column;
  }
  
  .our-event-1-section .events-grid {
    grid-template-columns: 1fr;
  }
}

/*-------------------------------------------------- Event 1 Page CSS END -------------------------------------------------------*/

/*-------------------------------------------------- Event 2 Page CSS START -------------------------------------------------------*/

.events-masonry-section
{
  padding: 20px 0;
}
.events-masonry-section .container {
  margin: 0 auto;
}

/* Header Styles */
.events-masonry-section .page-header {
  text-align: center;
  margin-bottom: 60px;
}

.events-masonry-section .page-title {
  color: var(--primary);
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 800;
  position: relative;
  display: inline-block;
}

.events-masonry-section .page-title span {
  color: var(--secondary);
}

.events-masonry-section .page-subtitle {
  color: var(--text-dark);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.8;
}

/* Featured Event - Different Style */
.events-masonry-section .featured-event {
  background: linear-gradient(135deg, var(--primary) 0%, #1a3a7a 100%);
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  margin-bottom: 50px;
}

.events-masonry-section .featured-content {
  position: relative;
  padding: 50px;
  color: var(--text-light);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.events-masonry-section .featured-text {
  padding-right: 20px;
}

.events-masonry-section .featured-badge {
  background: var(--secondary);
  color: var(--text-light);
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 20px;
  font-size: 0.9rem;
  letter-spacing: 1px;
  top: -20px;
}

.events-masonry-section .featured-title {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 800;
}

.events-masonry-section .featured-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.7;
  opacity: 0.9;
}

.events-masonry-section .featured-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 30px;
}

.events-masonry-section .featured-detail {
  display: flex;
  align-items: center;
  gap: 12px;
}

.events-masonry-section .featured-detail i {
  color: var(--secondary);
  font-size: 1.2rem;
}

.events-masonry-section .featured-actions {
  display: flex;
  gap: 15px;
}

.events-masonry-section .featured-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.events-masonry-section .featured-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* Filter and Search Section */
.events-masonry-section .filter-search-section {
  margin-bottom: 50px;

}



/* Filter Tabs */
.events-masonry-section .filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.events-masonry-section .filter-tab {
  padding: 12px 25px;
  background: var(--card-bg);
  border: 2px solid var(--primary);
  border-radius: 30px;
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.events-masonry-section .filter-tab.active,
.events-masonry-section .filter-tab:hover {
  background: var(--primary);
  color: var(--text-light);
}

/* Search Section */
.events-masonry-section .search-container {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.events-masonry-section .search-input {
  flex: 1;
  padding: 15px 20px 15px 50px;
  border: 2px solid #e0e0e0;
  border-radius: 15px 0 0 15px;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s;
  background: var(--light-bg);
}

.events-masonry-section .search-input:focus {
  border-color: var(--primary);
}

.events-masonry-section .search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 1.2rem;
}

.events-masonry-section .search-button {
  background: var(--secondary);
  color: var(--text-light);
  border: none;
  padding: 15px 30px;
  border-radius: 0 15px 15px 0;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.events-masonry-section .search-button:hover {
  background: #e67a00;
}

/* Masonry Grid */
.events-masonry-section .masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  align-items: start;
}

.events-masonry-section .masonry-item {
  break-inside: avoid;
  margin-bottom: 30px;
  height: 100%;
}

.events-masonry-section .event-card {
  background: var(--card-bg);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.events-masonry-section .event-header {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.events-masonry-section .event-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.events-masonry-section .event-card:hover .event-image {
  transform: scale(1.1);
}

.events-masonry-section .event-date {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--primary);
  color: var(--text-light);
  padding: 10px 15px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.events-masonry-section .event-day {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.events-masonry-section .event-month {
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-top: 3px;
  letter-spacing: 1px;
}

.events-masonry-section .event-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--secondary);
  color: var(--text-light);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.events-masonry-section .event-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.events-masonry-section .event-title {
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 5px;
  line-height: 1.3;
  font-weight: 700;
  margin-top: 0;
}

.events-masonry-section .event-description {
  color: var(--text-dark);
  margin-bottom: 10px;
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.8;
  flex-grow: 1;
}

.events-masonry-section .event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.events-masonry-section .event-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #666;
}

.events-masonry-section .event-meta-item svg {
  color: var(--secondary);
  font-size: 1rem;
}

.events-masonry-section .event-actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.events-masonry-section .btn {
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}

.events-masonry-section .btn-primary {
  background: var(--secondary);
  color: var(--text-light);
}

.events-masonry-section .btn-primary:hover {
  background: #e67a00;
  transform: translateY(-2px);
}

.events-masonry-section .event-content .btn-outline {
  color: var(--primary);
  border: 2px solid var(--primary);
}
.events-masonry-section .btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.events-masonry-section .btn-outline:hover {
  background: var(--primary);
  color: var(--text-light);
  transform: translateY(-2px);
}

.events-masonry-section .no-events {
  text-align: center;
  padding: 60px 40px;
  color: #666;
  font-size: 1.1rem;
  grid-column: 1 / -1;
  background: var(--card-bg);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.events-masonry-section .no-events i {
  font-size: 4rem;
  margin-bottom: 20px;
  color: #ddd;
}

.events-masonry-section .no-events h3 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .events-masonry-section .masonry-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 992px) {
  .events-masonry-section .featured-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .events-masonry-section .featured-text {
    padding-right: 0;
  }

  .events-masonry-section .featured-image img {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .events-masonry-section {
    padding: 20px 0;
  }

  .events-masonry-section .page-title {
    font-size: 1.8rem;
  }
  .events-masonry-section .page-subtitle, .events-masonry-section .featured-description
  {
    font-size: 1rem;
  }

  .events-masonry-section .filter-tabs {
    gap: 10px;
  }

  .events-masonry-section .filter-tab {
    padding: 8px;
    font-size: 0.8rem;
  }

  .events-masonry-section .search-container {
    flex-direction: column;
  }

  .events-masonry-section .search-input {
    border-radius: 15px;
    margin-bottom: 10px;    
    padding: 10px;
  }

  .events-masonry-section .search-icon {
    display: none;
  }

  .events-masonry-section .search-button {
    border-radius: 15px;
    padding: 10px;
  }

  .events-masonry-section .masonry-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .events-masonry-section .featured-content {
    padding: 30px;
  }

  .events-masonry-section .featured-title {
    font-size: 1.8rem;
  }

  .events-masonry-section .featured-details {
    grid-template-columns: 1fr;
  }

  .events-masonry-section .featured-actions {
    flex-direction: column;
  }
  .events-masonry-section .page-header
  {
    margin-bottom: 20px;
  }

}

@media (max-width: 474px) {
  .events-masonry-section .container {
    padding: 0 15px;
  }

  .events-masonry-section .page-title {
    font-size: 1.5rem;
  }

  .events-masonry-section .featured-content {
    padding: 20px;
  }

  .events-masonry-section .featured-title {
    font-size: 1.5rem;
  }

  .events-masonry-section .event-content {
    padding: 10px;
  }
  .events-masonry-section .featured-detail
  {
    font-size: 0.9rem;
  }
  .events-masonry-section .event-actions 
  {
    flex-direction: row;
    align-items: center;
  }
}

/*-------------------------------------------------- Event 2 Page CSS END -------------------------------------------------------*/


/*-------------------------------------------------- BOD 1 Page CSS START -------------------------------------------------------*/

.board-directors-section{
  padding: 20px 0;
}
.board-directors-section .container {
  margin: 0 auto;
}

/* Header Styles */
.board-directors-section .page-header {
  text-align: center;
  margin-bottom: 20px;
}

.board-directors-section .page-title {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 800;
  position: relative;
  display: inline-block;
}

.board-directors-section .page-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--secondary);
  border-radius: 2px;
}

.board-directors-section .page-subtitle {
  color: var(--text-dark);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 30px auto 0;
  line-height: 1.6;
  opacity: 0.8;
}

/* Core Team Section */
.board-directors-section .core-team {
  margin-bottom: 40px;
}

.board-directors-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.board-directors-section .section-title {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: 700;
  display: inline-block;
  position: relative;
}        

.board-directors-section .section-subtitle {
  color: var(--text-dark);
  font-size: 1.1rem;
  opacity: 0.7;
}

/* Core Team Grid */
.board-directors-section .core-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.board-directors-section .core-member {
  background: var(--text-light);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
  text-align: center;
  padding: 30px 20px;
  position: relative;
  border-top: 5px solid var(--secondary);
}

.board-directors-section .core-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.board-directors-section .member-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 5px solid var(--light-bg);
  overflow: hidden;
  position: relative;
}

.board-directors-section .member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.board-directors-section .member-name {
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 5px;
  font-weight: 700;
}

.board-directors-section .member-role {
  color: var(--secondary);
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.board-directors-section .member-bio {
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.8;
}

.board-directors-section .member-contact {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.board-directors-section .contact-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light-bg);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  text-decoration: none;
}

.board-directors-section .contact-link:hover {
  background: var(--secondary);
  color: var(--text-light);
  transform: translateY(-3px);
}

/* Board of Directors Section */
.board-directors-section .board-members {
  margin-bottom: 50px;
}

.board-directors-section .board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.board-directors-section .board-member {
  background: var(--text-light);
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
  border-left: 4px solid var(--primary);
}

.board-directors-section .board-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.board-directors-section .board-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 15px;
  border: 4px solid var(--light-bg);
  overflow: hidden;
}

.board-directors-section .board-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.board-directors-section .board-name {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.board-directors-section .board-role {
  color: var(--text-dark);
  font-size: 0.95rem;
  opacity: 0.8;
}

/* Empty State */
.board-directors-section .empty-position {
  background: var(--text-light);
  border-radius: 12px;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  border: 2px dashed #e0e0e0;
}

.board-directors-section .empty-icon {
  font-size: 3rem;
  color: #e0e0e0;
  margin-bottom: 15px;
}

.board-directors-section .empty-text {
  color: #999;
  font-size: 1rem;
}

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

  .board-directors-section .page-title {
    font-size: 1.5rem;
  }

  .board-directors-section .section-title {
    font-size: 1.3rem;
  }

  .board-directors-section .section-title::before,
  .board-directors-section .section-title::after {
    display: none;
  }

  .board-directors-section .core-team-grid {
    grid-template-columns: 1fr;
  }

  .board-directors-section .board-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 480px) {
  .board-directors-section .container {
    padding: 0 15px;
  }

  .board-directors-section .page-title {
    font-size: 1.8rem;
  }

  .board-directors-section .member-image {
    width: 120px;
    height: 120px;
  }

  .board-directors-section .board-image {
    width: 100px;
    height: 100px;
  }
}

/*-------------------------------------------------- BOD 1 Page CSS END -------------------------------------------------------*/
/*-------------------------------------------------- BOD 2 Page CSS START -------------------------------------------------------*/

.professional-leadership-section{
  padding: 20px 0;
}
.professional-leadership-section .container {
  margin: 0 auto;
}

/* Header Styles */
.professional-leadership-section .page-header {
  text-align: center;
  margin-bottom: 30px;
}

.professional-leadership-section .page-title {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.1;
  position: relative;
}

.professional-leadership-section .page-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
}

.professional-leadership-section .page-subtitle {
  color: var(--text-dark);
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.8;
  font-weight: 400;
}

/* Executive Leadership Grid */
.professional-leadership-section .executive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.professional-leadership-section .executive-card {
  background: var(--text-light);
  border-radius: 12px;
  padding: 40px 30px;
  position: relative;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.professional-leadership-section .executive-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-color: var(--secondary);
}

.professional-leadership-section .executive-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--text-light);
  padding: 8px 25px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(11, 30, 74, 0.2);
}

.professional-leadership-section .executive-image {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 25px;
  border: 4px solid var(--light-bg);
  overflow: hidden;
  background: var(--light-bg);
  position: relative;
}

.professional-leadership-section .executive-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.professional-leadership-section .executive-card:hover .executive-image img {
  transform: scale(1.05);
}

.professional-leadership-section .executive-content {
  width: 100%;
}

.professional-leadership-section .executive-name {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 8px;
  font-weight: 600;
  line-height: 1.2;
}

.professional-leadership-section .executive-role {
  color: var(--secondary);
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: 0.3px;
}


.professional-leadership-section .executive-divider {
  width: 60px;
  height: 2px;
  background: var(--border);
  margin: 0 auto 25px;
}

.professional-leadership-section .executive-contact {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.professional-leadership-section .contact-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--light-bg);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid var(--border);
}

.professional-leadership-section .contact-link:hover {
  background: var(--secondary);
  color: var(--text-light);
  transform: translateY(-2px);
  border-color: var(--secondary);
}

/* Board Members Section */
.professional-leadership-section .board-section {
  margin-top: 40px;
}

.professional-leadership-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.professional-leadership-section .section-title {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.professional-leadership-section .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
}

.professional-leadership-section .section-subtitle {
  color: var(--text-dark);
  font-size: 1.1rem;
  opacity: 0.7;
  font-weight: 400;
}

.professional-leadership-section .board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.professional-leadership-section .board-member {
  background: var(--text-light);
  border-radius: 10px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.professional-leadership-section .board-member:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.professional-leadership-section .board-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 3px solid var(--light-bg);
  overflow: hidden;
  background: var(--light-bg);
}

.professional-leadership-section .board-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.professional-leadership-section .board-name {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.professional-leadership-section .board-role {
  color: var(--text-dark);
  font-size: 0.9rem;
  opacity: 0.7;
  font-weight: 400;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .professional-leadership-section .executive-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .professional-leadership-section {
    padding: 20px 0;
  }

  .professional-leadership-section .page-title {
    font-size: 2rem;
  }

  .professional-leadership-section .page-subtitle {
    font-size: 1rem;
  }

  .professional-leadership-section .executive-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 20px;
  }

  .professional-leadership-section .executive-card {
    padding: 35px 25px;
  }

  .professional-leadership-section .executive-image {
    width: 120px;
    height: 120px;
  }

  .professional-leadership-section .section-title {
    font-size: 1.8rem;
  }

  .professional-leadership-section .board-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 480px) {
  .professional-leadership-section .container {
    padding: 0 15px;
  }

  .professional-leadership-section .page-title {
    font-size: 1.5rem;
  }

  .professional-leadership-section .executive-name {
    font-size: 1.3rem;
  }

  .professional-leadership-section .executive-card {
    padding: 30px 20px;
  }

  .professional-leadership-section .board-member {
    padding: 25px 20px;
  }
}

/*-------------------------------------------------- BOD 2 Page CSS END -------------------------------------------------------*/
/*-------------------------------------------------- BOD 3 Page CSS START -------------------------------------------------------*/

.professional-leadership-section-3 {
  padding: 20px 0;
}
.professional-leadership-section-3 .container {
  margin: 0 auto;
}

.professional-leadership-section-3 .page-header {
  text-align: center;
  margin-bottom: 60px;
}

.professional-leadership-section-3 .page-title {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.professional-leadership-section-3 .page-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary);
  border-radius: 2px;
}

.professional-leadership-section-3 .page-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 700px;
  margin: 25px auto 0;
  line-height: 1.6;
}

/* Executive Grid Layout */
.professional-leadership-section-3 .executive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.professional-leadership-section-3 .executive-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(11, 30, 74, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.professional-leadership-section-3 .executive-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(11, 30, 74, 0.15);
}

.professional-leadership-section-3 .executive-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--secondary);
  color: white;
  padding: 8px 15px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(255, 136, 0, 0.3);
}

.professional-leadership-section-3 .executive-image {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.professional-leadership-section-3 .executive-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(transparent, rgba(11, 30, 74, 0.7));
}

.professional-leadership-section-3 .executive-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.professional-leadership-section-3 .executive-card:hover .executive-image img {
  transform: scale(1.05);
}

.professional-leadership-section-3 .executive-content {
  padding: 25px;
  position: relative;
}

.professional-leadership-section-3 .executive-name {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 5px;
  font-weight: 700;
}

.professional-leadership-section-3 .executive-role {
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1rem;
}

.professional-leadership-section-3 .executive-divider {
  height: 2px;
  background: linear-gradient(to right, var(--secondary), transparent);
  margin: 15px 0;
  border-radius: 1px;
}

.professional-leadership-section-3 .executive-contact {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.professional-leadership-section-3 .contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.professional-leadership-section-3 .contact-link:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

/* Board Section */
.professional-leadership-section-3 .board-section {
  margin-top: 20px;
}

.professional-leadership-section-3 .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.professional-leadership-section-3 .section-title {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 10px;
  font-weight: 700;
}

.professional-leadership-section-3 .section-subtitle {
  color: #666;
  font-size: 1.1rem;
}

.professional-leadership-section-3 .board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

.professional-leadership-section-3 .board-member {
  background: white;
  border-radius: 10px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(11, 30, 74, 0.08);
  transition: all 0.3s ease;
}

.professional-leadership-section-3 .board-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(11, 30, 74, 0.15);
}

.professional-leadership-section-3 .board-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 15px;
  border: 3px solid var(--secondary);
  padding: 3px;
}

.professional-leadership-section-3 .board-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.professional-leadership-section-3 .board-name {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 5px;
  font-weight: 600;
}

.professional-leadership-section-3 .board-role {
  color: #666;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .professional-leadership-section-3 .page-title {
    font-size: 1.5rem;
  }

  .professional-leadership-section-3 .executive-grid {
    grid-template-columns: 1fr;
  }

  .professional-leadership-section-3 .board-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

/*-------------------------------------------------- BOD 3 Page CSS END -------------------------------------------------------*/
/*-------------------------------------------------- BOD 4 Page CSS START -------------------------------------------------------*/

.professional-leadership-section-4
{
  padding: 20px 0;
}
.professional-leadership-section-4 .container {
  margin: 0 auto;
}

.professional-leadership-section-4 .page-header {
  text-align: center;
  margin-bottom: 20px;
}

.professional-leadership-section-4 .page-title {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 20px;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.professional-leadership-section-4 .page-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 300;
  color: var(--text-dark);
}

/* Executive Grid - Asymmetric Layout */
.professional-leadership-section-4 .executive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.professional-leadership-section-4 .executive-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(11, 30, 74, 0.15);
  transition: all 0.4s ease;
  display: flex;
  position: relative;
}

.professional-leadership-section-4 .executive-card:nth-child(odd) {
  flex-direction: row;
}

.professional-leadership-section-4 .executive-card:nth-child(even) {
  flex-direction: row-reverse;
}

.professional-leadership-section-4 .executive-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(11, 30, 74, 0.25);
}


.professional-leadership-section-4 .executive-image {
  flex: 0 0 45%;
  overflow: hidden;
  position: relative;
}

.professional-leadership-section-4 .executive-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(11, 30, 74, 0.1), transparent);
  z-index: 1;
}

.professional-leadership-section-4 .executive-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.professional-leadership-section-4 .executive-card:hover .executive-image img {
  transform: scale(1.1);
}

.professional-leadership-section-4 .executive-content {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.professional-leadership-section-4 .executive-name {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 10px;
  font-weight: 800;
}

.professional-leadership-section-4 .executive-role {
  color: var(--secondary);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.professional-leadership-section-4 .executive-bio {
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 1.05rem;
}

.professional-leadership-section-4 .executive-divider {
  height: 3px;
  width: 60px;
  background: linear-gradient(to right, var(--secondary), transparent);
  margin: 20px 0;
  border-radius: 2px;
}

.professional-leadership-section-4 .executive-contact {
  display: flex;
  gap: 15px;
}

.professional-leadership-section-4 .contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 1.2rem;
}

.professional-leadership-section-4 .contact-link:hover {
  background: var(--secondary);
  transform: translateY(-5px) rotate(10deg);
}

/* Board Section - Circular Layout */
.professional-leadership-section-4 .board-section {
  margin-top: 30px;
  position: relative;
}

.professional-leadership-section-4 .section-header {
  text-align: center;
  margin-bottom: 30px;
}

.professional-leadership-section-4 .section-title {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 800;
  position: relative;
  display: inline-block;
}

.professional-leadership-section-4 .section-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: var(--secondary);
  border-radius: 3px;
}

.professional-leadership-section-4 .section-subtitle {
  color: #666;
  font-size: 1.2rem;
  max-width: 600px;
  margin: 25px auto 0;
}

.professional-leadership-section-4 .board-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

.professional-leadership-section-4 .board-member {
  background: white;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(11, 30, 74, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}


.professional-leadership-section-4 .board-member:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 50px rgba(11, 30, 74, 0.2);
}

.professional-leadership-section-4 .board-avatar {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 25px;
  position: relative;
  box-shadow: 0 10px 25px rgba(11, 30, 74, 0.2);
}

.professional-leadership-section-4 .board-avatar::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  transform: scale(0.95);
}

.professional-leadership-section-4 .board-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.professional-leadership-section-4 .board-member:hover .board-avatar img {
  transform: scale(1.1);
}

.professional-leadership-section-4 .board-name {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 700;
}

.professional-leadership-section-4 .board-role {
  color: var(--secondary);
  font-weight: 600;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .professional-leadership-section-4 .board-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .professional-leadership-section-4 .executive-grid {
    grid-template-columns: 1fr;
  }

  .professional-leadership-section-4 .executive-card {
    flex-direction: column !important;
  }

  .professional-leadership-section-4 .executive-image {
    flex: 0 0 300px;
  }

  .professional-leadership-section-4 .board-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .professional-leadership-section-4 .page-title {
    font-size: 2.8rem;
  }

  .professional-leadership-section-4 .section-title {
    font-size: 2.2rem;
  }

  .professional-leadership-section-4 .board-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
  }

  .professional-leadership-section-4 .executive-content {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .professional-leadership-section-4 .board-grid {
    grid-template-columns: 1fr;
  }
  .professional-leadership-section-4 .page-title {
    font-size: 1.5rem;
  }

  .professional-leadership-section-4 .section-title {
    font-size: 1.5rem;
  }

  .professional-leadership-section-4 .executive-image {
    flex: 0 0 250px;
  }
  .professional-leadership-section-4 .contact-link
  {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/*-------------------------------------------------- BOD 4 Page CSS END -------------------------------------------------------*/
/*-------------------------------------------------- Contact Us 1 Page CSS START -------------------------------------------------------*/
.contact-page-section {
  padding: 20px 0;
  background-color: white;
}

.contact-page-section h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.contact-page-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-page-info {
  flex: 1;
  min-width: 300px;
  background: var(--primary);
  color: var(--text-light);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-page-info h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: var(--gold);
}

.contact-page-details {
  margin-bottom: 20px;
}

.contact-page-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-page-icon {
  width: 50px;
  height: 50px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.contact-text h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.social-links, .contact-image
{
  margin-top: 10px;
}
.contact-image img
{
  height: 300px;
  width: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.social-links h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--gold);
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--secondary);
  transform: translateY(-5px);
}

.contact-form {
  flex: 1;
  min-width: 300px;
  background: var(--light);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 5px;
}
.form-group p{
  margin-bottom: 0;
}        
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--primary);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border 0.3s ease;
}

.form-control:focus {
  border-color: var(--secondary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 136, 0, 0.2);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  background: var(--secondary);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.submit-btn:hover {
  background: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 7px 15px rgba(255, 136, 0, 0.3);
}

/* Map Section */
.map-section {
  padding: 0 0 20px;
}

.map-container {
  height: 450px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

#map {
  width: 100%;
  height: 100%;
}

/* FAQ Section */
.faq-section {
  padding: 20px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
}

.faq-section h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 30px;
}

.faq-container {
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(11, 30, 74, 0.05);
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 500px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}


/* Responsive Styles */
@media (max-width: 992px) {
  .contact-page-container {
    flex-direction: column-reverse;
  }


  .contact-page-section h2, .faq-section h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {



  .contact-page-section h2, .faq-section h2, .contact-page-info h3 {
    font-size: 1.8rem;
  }

  .contact-page-info, .contact-form {
    padding: 30px;
  }

  .map-container {
    height: 350px;
  }
}

@media (max-width: 474px) {

  .contact-page-section h2, .faq-section h2 {
    font-size: 1.5rem;
  }

  .contact-page-info, .contact-form {
    padding: 15px;
  }

  .map-container {
    height: 300px;
  }
  .faq-question, .contact-text h4
  {
    font-size: 1.1rem;
  }
  .social-icons {
    justify-content: center;
  }
  .contact-page-info h3
  {
    font-size: 1.3rem;
  }
}
/*-------------------------------------------------- Contact Us 1 Page CSS END -------------------------------------------------------*/
/*-------------------------------------------------- Support Us 1 Page CSS START -------------------------------------------------------*/

/*-------------------------------------------------- Support Us 1 Page CSS END -------------------------------------------------------*/
/*-------------------------------------------------- All Responsive CSS START -------------------------------------------------------*/


@media(max-width: 991px)
{
  .hero-visual {
    display: none;
  }
}
@media(max-width: 767px)
{
  .features-grid
  {
    grid-template-columns: 2fr;
  }
  .our-event-1-section .event-head
  {
    flex-direction: column;
  }
  .stats-section h2, .event-content h3, .events-cta h3, .vision-card h3, .mission-card h3, .heritage-text h3, .sponsors-intro h3, .become-sponsor h3, .our-event-1-section .page-title, .our-event-1-section .section-title
  {
    font-size: 1.8rem;
  }
}
@media(max-width: 474px)
{
  .card-icon
  {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  .hero-stats
  {
    gap: 1rem;
    justify-content: space-around;
  }
  .hero-stats .stat-label
  {
    color: var(--primary);
  }
  .stats-section h2, .event-content h3, .events-cta h3, .vision-card h3, .mission-card h3, .heritage-text h3, .sponsors-intro h3, .become-sponsor h3, .our-event-1-section .page-title, .our-event-1-section .section-title
  {
    font-size: 1.5rem;
  }
  .section-header p, .event-description, .events-cta p, .become-sponsor p, .gswa-footer-logo p, .our-event-1-section .page-subtitle, .our-event-1-section .featured-description
  {
    font-size: 1rem;
  }
  .heritage-feature div h4, .gswa-footer-section h3
  {
    font-size: 1.1rem;
  }
  .our-event-1-section .featured-description
  {
    margin-bottom: 0;
  }
  .our-event-1-section .featured-badge
  {
    margin: 0;
  }
  .our-event-1-section .btn, .our-event-1-section .search-input, .our-event-1-section .search-button, .events-masonry-section .event-content .btn-outline
  {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  .our-event-1-section .event-content
  {
    padding: 10px;
  }
  .our-event-1-section .events-section
  {
    margin-bottom: 0;
  }
  .board-directors-section .page-subtitle, .board-directors-section .section-subtitle, .professional-leadership-section .section-subtitle, .professional-leadership-section-3 .page-subtitle, .professional-leadership-section-3 .section-subtitle, .professional-leadership-section-4 .page-subtitle, .professional-leadership-section-4 .executive-bio, .professional-leadership-section-4 .section-subtitle
  {
    font-size: 1rem;
  }
  .professional-leadership-section .executive-badge
  {
    font-size: 0.80rem;
  }
  .professional-leadership-section .board-section
  {
    margin-top: 0;
  }
  .breadcrumb-link.active
  {
    font-size: 0.8rem;
  }
  .professional-leadership-section-3 .section-title, .professional-leadership-section-4 .executive-name, .professional-leadership-section-4 .board-name
  {
    font-size: 1.3rem;
  }
  .professional-leadership-section-4 .executive-role
  {
    font-size: 1.1rem;
  }
}
@media(max-width: 353px)
{
  .event-actions 
  {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }  
}