@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;
}



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;
  }
  
  
  .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);
  }  
  
}

@media (max-width: 991px) {
  .contact-info {
    flex-direction: column-reverse;
    gap: 10px;
  }
  .nav-menu {
    flex-direction: column;
  }
  .mobile-menu-btn {
    display: block;
  }

  .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 ------------------------------------------------------------*/


/*-------------------------------------------------- Main Hero Banner CSS Start -------------------------------------------------------*/

.hero-section {
  position: relative;
  height: 80vh;
  width: 100%;
  overflow: hidden;
}

.hero-slider {
  height: 80vh;
  position: relative;
}

.hero-slide {
  height: 80vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 35%, transparent 65%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
  top: 250px;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  font-weight: 700;
}

.hero-content h1 span {
  color: var(--secondary);
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  line-height: 1.6;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: var(--secondary);
  color: white;
  border: 2px solid var(--secondary);
}

.btn-primary:hover {
  background: transparent;
  color: var(--secondary);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #333;
}

.gujarati-text {
  font-family: 'Shruti', 'Nirmala UI', sans-serif;
  font-size: 1.8rem;
  margin: 15px 0;
  color: #ffcc00;
}

.hero-slider .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 3;
}

.hero-slider .owl-prev, .hero-slider .owl-next {
  background: rgba(255, 255, 255, 0.2) !important;
  width: 50px;
  height: 50px;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin: 0 20px !important;
  transition: all 0.3s ease;
  color: white;
}

.hero-slider .owl-prev:hover, .hero-slider .owl-next:hover {
  background: rgba(255, 153, 51, 0.8) !important;
}

.hero-slider .owl-dots {
  position: absolute;
  bottom: 30px;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 3;
}

.hero-slider .owl-dot span {
  background: rgba(255, 255, 255, 0.5) !important;
  transition: all 0.3s ease;
}

.hero-slider .owl-dot.active span {
  background: var(--secondary) !important;
  transform: scale(1.3);
}

.community-stats {
  width: 100%;
  background: var(--secondary);
  padding: 15px 0;
  z-index: 3;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  color: white;
  padding: 10px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.stat-label {
  font-size: 0.9rem;
  margin-top: 5px;
}

@media (max-width: 768px) {


  .gujarati-text {
    font-size: 1.5rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 1rem;
  }

  .stats-container {
    flex-direction: column;
  }
}

/*-------------------------------------------------- Main Hero Banner CSS END -------------------------------------------------------*/
/*-------------------------------------------------- VIDEO SECTION CSS START -------------------------------------------------------*/

.new-video-section
{
  padding: 20px 0;
}
.video-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.video-section-header h1 {
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.video-section-header h1:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary);
  border-radius: 2px;
}

.video-section-header p {
  font-size: 1.2rem;
  color: var(--text-dark);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.video-content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  flex-direction: column;
}

.video-card {
  flex: 1;
  min-width: 300px;
  background: var(--light-bg);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(11, 30, 74, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
  box-shadow: 0 20px 50px rgba(11, 30, 74, 0.2);
}

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
  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);
}

#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;
}




/* Responsive styles */
@media (max-width: 992px) {
  .video-content-wrapper {
    flex-direction: column;
  }

  .video-card {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .video-section-header h1 {
    font-size: 1.8rem;
  }

  .video-section-header p {
    font-size: 1.1rem;
  }

  .video-container {
    height: 350px;
  }

  .play-btn {
    width: 70px;
    height: 70px;
    font-size: 1.7rem;
  }

  .video-overlay h3 {
    font-size: 1.5rem;
  }


}

@media (max-width: 474px) {
  .video-section-header h1 {
    font-size: 1.5rem;
  }

  .video-section-header p {
    font-size: 1rem;
  }

  .video-container {
    height: 300px;
  }

  .video-overlay h3 {
    font-size: 1.3rem;
  }

  .video-overlay p {
    font-size: 1rem;
  }

  .video-controls {
    bottom: 15px;
    padding: 8px 15px;
  }

  .control-btn {
    width: 40px;
    height: 40px;
  }

}
/*-------------------------------------------------- VIDEO SECTION CSS END -------------------------------------------------------*/


/*-------------------------------------------------- Get Involved CSS START -------------------------------------------------------*/

.involve-section {
  margin: 0 auto;
  padding: 20px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 20px;
}

.section-title {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1.3rem;
  color: var(--text-dark);
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.card {
  background: var(--text-light);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(11, 30, 74, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(11, 30, 74, 0.15);
}

.card-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(11, 30, 74, 0.3), transparent);
}

.card-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 600;
}

.card-text {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 25px;
  flex-grow: 1;
  line-height: 1.7;
}

.card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--text-light);
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  width: fit-content;
}

.card-button:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

.team-section {
  background: var(--primary);
  border-radius: 12px;
  padding: 50px 40px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.team-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transform: translate(30%, -30%);
}

.team-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transform: translate(-30%, 30%);
}

.team-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.team-title {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.team-text {
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 25px;
}

.team-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: var(--text-light);
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.team-button:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.team-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.team-image {
  width: 100%;
  max-width: 550px;
  height: 350px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 968px) {
  .cards-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .team-section {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .section-title {
    font-size: 2.3rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 2rem;
  }

  .card-content {
    padding: 25px 20px;
  }

  .team-section {
    padding: 40px 25px;
  }
}

/*-------------------------------------------------- Get Involved CSS END -------------------------------------------------------*/

/*-------------------------------------------------- Our Events CSS START -------------------------------------------------------*/

.events-section {
  padding: 20px 0;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, var(--secondary), var(--accent));
  border-radius: 2px;
}

.gujarati-subtitle {
  font-family: 'Shruti', 'Nirmala UI', sans-serif;
  font-size: 1.8rem;
  color: var(--accent);
  margin: 15px 0;
  font-weight: 600;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-dark);
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Featured Event Styles */
.featured-event {
  background: var(--text-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(11, 30, 74, 0.15);
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
}

@media (min-width: 992px) {
  .featured-event {
    flex-direction: row;
  }
}

.featured-image {
  flex: 1;
  min-height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
}

@media (min-width: 992px) {
  .featured-image {
    min-height: auto;
  }
}

.featured-image:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(11, 30, 74, 0.8), transparent);
}

@media (min-width: 992px) {
  .featured-image:after {
    background: linear-gradient(to right, rgba(11, 30, 74, 0.8), transparent 70%);
  }
}

.featured-content {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-badge {
  display: inline-block;
  background: var(--secondary);
  color: var(--text-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: max-content;
}

.featured-title {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.featured-gujarati {
  font-family: 'Shruti', 'Nirmala UI', sans-serif;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 600;
}

.featured-description {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.7;
}

.featured-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.featured-detail {
  display: flex;
  align-items: center;
  gap: 10px;
}

.featured-detail svg {
  color: var(--secondary);
  font-size: 1.2rem;
}

.featured-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--text-light);
  padding: 14px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  width: fit-content;
}

.featured-button:hover {
  background: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 136, 0, 0.3);
}

/* Other Events Slider */
.other-events {
  margin-bottom: 10px;
}

.slider-title {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
}

.events-slider {
  position: relative;
}

.event-card {
  background: var(--text-light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(11, 30, 74, 0.1);
  transition: all 0.4s ease;
  margin: 10px;
  height: 100%;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(11, 30, 74, 0.2);
}

.event-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.event-image:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(11, 30, 74, 0.5), transparent 60%);
}

.event-date {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: var(--text-light);
  padding: 10px 15px;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.event-date .day {
  font-size: 1.4rem;
  line-height: 1;
}

.event-date .month {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-content {
  padding: 20px;
}

.event-title {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 20px;
  font-weight: 600;
}

.event-gujarati {
  font-family: 'Shruti', 'Nirmala UI', sans-serif;
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 500;
}

.event-description {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

.event-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--text-light);
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
  font-size: 0.9rem;
}

.event-button:hover {
  background: var(--secondary);
}

.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 3;
  pointer-events: none;
}

.owl-prev, .owl-next {
  background: rgba(255, 255, 255, 0.9) !important;
  width: 45px;
  height: 45px;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin: 0 15px !important;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  pointer-events: all;
}

.owl-prev:hover, .owl-next:hover {
  background: var(--secondary) !important;
  color: var(--text-light) !important;
}

.owl-dots {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}

.owl-dot {
  width: 10px;
  height: 10px;
  background: #ccc !important;
  border-radius: 50%;
  margin: 0 4px;
  transition: all 0.3s ease;
}

.owl-dot.active {
  background: var(--secondary) !important;
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }

  .gujarati-subtitle {
    font-size: 1.5rem;
  }


  .featured-gujarati {
    font-size: 1.2rem;
  }

  .featured-details {
    grid-template-columns: 1fr;
  }

  .featured-content {
    padding: 30px 25px;
  }
}
.owl-theme .owl-dots .owl-dot span
{
  display: none;
}

/*-------------------------------------------------- Our Events CSS END -------------------------------------------------------*/

/*-------------------------------------------------- About Us Section CSS START -------------------------------------------------------*/

.about-container {
  margin: 0 auto;
  padding: 20px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h1 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h1: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;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.highlight {
  color: var(--accent);
  font-weight: 600;
}

.about-image {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(11, 30, 74, 0.2);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.values-section {
  padding: 20px 0;
  border-radius: 10px;
}

.values-header {
  text-align: center;
  margin-bottom: 40px;
}

.values-header h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.values-header p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  opacity: 0.9;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid var(--secondary);
}

.value-card:hover {
  transform: translateY(-10px);
}

.value-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary);
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column-reverse;
    margin-bottom: 20px;
  }
  .sponsors-section .owl-prev, .sponsors-section .owl-next
  {
    display: none !important;
  }


}

/*-------------------------------------------------- About Us Section CSS END -------------------------------------------------------*/
/*-------------------------------------------------- Sponsors Section CSS START -------------------------------------------------------*/

.sponsors-section {
  padding: 20px 0;
}
.sponsors-container {
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h1 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h1:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary);
  border-radius: 2px;
}



.tier-header {
  text-align: center;
  margin-bottom: 40px;
}

.tier-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  display: inline-block;
  padding: 0 20px;
}

.platinum .tier-title {
  color: #E5E4E2;
  background: linear-gradient(90deg, #B9F2FF, #E5E4E2, #B9F2FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(185, 242, 255, 0.5);
}

.gold .tier-title {
  color: var(--gold);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.silver .tier-title {
  color: #C0C0C0;
  text-shadow: 0 0 10px rgba(192, 192, 192, 0.5);
}

.logo-container {
  background: white;
  border-radius: 12px;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
}

.logo-container:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.platinum .logo-container {
  border-top: 5px solid #B9F2FF;
}

.gold .logo-container {
  border-top: 5px solid var(--gold);
}

.silver .logo-container {
  border-top: 5px solid #C0C0C0;
}

.sponsor-logo {
  max-width: 100%;
  max-height: 100px;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.logo-container:hover .sponsor-logo {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.sponsors-section .owl-nav {
  text-align: center;
}

.sponsors-section .owl-prev, .sponsors-section .owl-next {
  background: var(--primary) !important;
  color: white !important;
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  margin: 0 10px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.sponsors-section .owl-prev:hover, .sponsors-section .owl-next:hover {
  background: var(--secondary) !important;
}

.sponsors-section .owl-dots {
  text-align: center;
  margin-top: 20px;
}

.sponsors-section .owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd !important;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.sponsors-section .owl-carousel .owl-stage {
  padding: 20px 0;
}
.sponsors-section .owl-dot.active {
  background: var(--secondary) !important;
  transform: scale(1.2);
}



@media (max-width: 768px) {


  .tier-title {
    font-size: 1.8rem;
  }

  .logo-container {
    height: 150px;
    padding: 30px 15px;
  }

  .sponsor-logo {
    max-height: 80px;
  }
}
/*-------------------------------------------------- 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 -------------------------------------------------------*/


/*All Responsive CSS*/

@media(max-width: 991px)
{
  .community-stats
  {
    display: none;
  }
  .hero-slider .owl-dots
  {
    display: none;
  }
  .hero-content h1
  {
    font-size: 2.5rem;
  }
  .section-header h1
  {
    font-size: 2rem;
  }
}
@media(max-width: 767px)
{
  .hero-section, .hero-slider, .hero-slide
  {
    height: 60vh;
  }
  .hero-content
  {
    top: 160px;
  }
  .hero-content p
  {
    font-size: 1rem;
  }
  .hero-content h1, .section-header h1
  {
    font-size: 1.5rem;
    margin-bottom: 0;
  }

  .hero-content p, .section-header p
  {
    font-size: 1rem;
    margin-top: 10px;
  }
  .section-header
  {
    margin-bottom: 20px;
  }
  
  .about-text h2, .value-card h3, .featured-title, .slider-title, .card-title, .team-title
  {
    font-size: 1.3rem;
  }
  .about-text p
  {
    font-size: 1rem;
  }
  .value-icon {
    font-size: 2rem;
  }
  .featured-badge
  {
    font-size: 0.7rem;
    padding: 6px 15px;
  }
  .featured-button, .card-button, .team-button
  {
    font-size: 0.9rem;
    padding: 10px 30px;
  }
  .featured-event
  {
    margin-bottom: 30px;
  }
  .slider-title
  {
    margin-bottom: 10px;
  }
  .gswa-footer-section h3
  {
    font-size: 1.1rem;
  }
  .hero-slider .owl-prev, .hero-slider .owl-next 
  {
    width: 40px;
    height: 40px;
  }
  .team-text, .card-text, .gswa-footer-logo p, .gswa-footer-contact p
  {
    font-size: 1rem;
  }

}
@media(max-width: 474px)
{
  .breadcrumb-link.active
  {
    font-size: 0.8rem;
  }
}
