@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;
  }
  
  
  .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 Banner Styles */
.hero {
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0 5%;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background: linear-gradient(135deg, var(--primary) 0%, #070e24 100%);*/

  z-index: -2;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
  radial-gradient(circle at 20% 30%, rgba(255, 136, 0, 0.1) 0%, transparent 50%),
  radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
  radial-gradient(circle at 40% 80%, rgba(230, 122, 0, 0.05) 0%, transparent 50%);
  z-index: -1;
}

.hero-content {
  max-width: 1200px;
  text-align: center;
  z-index: 1;
}

.hero-title {
  font-size: 3rem;
  color: var(--light);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-title span {
  color: var(--secondary);
  position: relative;
}

.hero-title span::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 5px;
  background: var(--gold);
  bottom: -5px;
  left: 0;
  border-radius: 3px;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.btn-primary {
  background: var(--secondary);
  color: var(--text-light);
  padding: 15px 35px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: 0.3s;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 136, 0, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  padding: 15px 35px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: 0.3s;
  border: 2px solid var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-secondary:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 60px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Cultural Images */
.cultural-images {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  animation: float 6s ease-in-out infinite;
}

.culture-img {
  position: absolute;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  opacity: 0.8;
  transition: transform 0.5s, opacity 0.5s;
}

.culture-img:hover {
  opacity: 1;
  transform: scale(1.05);
}

.img-1 {
  top: 15%;
  left: 5%;
  width: 180px;
  height: 120px;
  object-fit: cover;
  border: 2px solid var(--gold);
  animation-delay: 0s;
}

.img-2 {
  top: 10%;
  right: 8%;
  width: 160px;
  height: 200px;
  object-fit: cover;
  border: 2px solid var(--secondary);
  animation-delay: 1.5s;
}

.img-3 {
  bottom: 20%;
  left: 8%;
  width: 200px;
  height: 140px;
  object-fit: cover;
  border: 2px solid var(--gold);
  animation-delay: 3s;
}

.img-4 {
  bottom: 15%;
  right: 5%;
  width: 170px;
  height: 170px;
  object-fit: cover;
  border: 2px solid var(--secondary);
  border-radius: 50%;
  animation-delay: 4.5s;
}

/* Floating animation keyframes */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .cultural-images {
    display: none;
  }
}


@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary, .btn-secondary {
    width: 250px;
    justify-content: center;
  }

  .hero-stats {
    gap: 30px;
  }

}

@media (max-width: 474px) {
  .hero-title {
    font-size: 1.5rem;
    line-height: 1.5;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }

  .hero-stats {
    gap: 20px;
  }
  .hero 
  {
    height: 75vh;
  }
}

/*-------------------------------------------------- Main Hero Banner CSS END -------------------------------------------------------*/
/*-------------------------------------------------- VIDEO SECTION CSS START -------------------------------------------------------*/
.new-video-section {
  padding: 20px 0;
}

.video-inner-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

/* Content Column Styles */
.video-content-column {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.video-section-header {
  margin-bottom: 30px;
}

.video-section-header h1 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.video-section-header h1:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--secondary);
  border-radius: 2px;
}

.video-section-header p {
  font-size: 1.2rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin-top: 20px;
}

.video-community-features {
  margin-top: 30px;
}

.video-feature-list {
  list-style: none;
  margin-top: 15px;
  padding: 0;
}

.video-feature-list li {
  padding: 10px 0;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.video-feature-list li svg {
  color: var(--secondary);
  margin-right: 10px;
  font-size: 1.2rem;
}

/* Video Column Styles */
.video-column {
  flex: 1;
  min-width: 300px;
}

.video-card {
  background: var(--light);
  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-inner-section {
    flex-direction: column;
    gap: 10px;
  }

  .video-content-column, .video-column {
    width: 100%;
  }

  .video-section-header h1 {
    font-size: 2.2rem;
  }
}

@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-community-features h3
  {
    font-size: 1.2rem;
  }
  .video-feature-list li
  {
    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 -------------------------------------------------------*/
/*-------------------------------------------------- EVENTS SECTION CSS START -------------------------------------------------------*/

.event-highlight {
  padding: 20px 0;
}

.event-inner-box {
  width: 100%;
  background: var(--light-bg);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(11, 30, 74, 0.15);
  display: flex;
  flex-direction: column;
  border: 2px solid var(--gold);
}

.event-header {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  padding: 25px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.event-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100" opacity="0.1"><path d="M30,30 Q50,10 70,30 T90,50 T70,70 T50,90 T30,70 T10,50 T30,30 Z" fill="white"/></svg>');
  background-size: 80px;
}

.event-header h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
}

.event-header p {
  font-size: 1.2rem;
  color: var(--text-light);
  opacity: 0.9;
  position: relative;
}

.event-content {
  display: flex;
  flex-wrap: wrap;
}

.event-image {
  flex: 1;
  min-width: 300px;

  position: relative;
  display: flex;
  align-items: flex-end;
}

.event-countdown {
  width: 100%;
  background: rgba(11, 30, 74, 0.85);
  padding: 20px;
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.countdown-item {
  display: flex;
  flex-direction: column;
}

.countdown-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.countdown-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--text-light);
  opacity: 0.9;
}

.event-details {
  flex: 1.2;
  min-width: 300px;
  padding: 40px;
  background: var(--light-bg);
}

.event-info {
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: var(--primary);
  gap: 5px;
}

.info-item i {
  width: 30px;
  color: var(--secondary);
  font-size: 1.2rem;
}

.event-description {
  margin-bottom: 30px;
  line-height: 1.6;
  color: var(--text-dark);
  font-size: 1.05rem;
}

.event-highlights {
  margin-bottom: 25px;
}

.event-highlights h3 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.3rem;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 5px;
  display: inline-block;
}

.highlight-list {
  list-style-type: none;
  padding: 0;
}

.highlight-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.highlight-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: bold;
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.event-tag {
  background: rgba(255, 136, 0, 0.1);
  color: var(--secondary);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(255, 136, 0, 0.3);
}

.event-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.event-inner-box .btn {
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.event-inner-box .btn-primary {
  background: var(--secondary);
  color: var(--text-light);
  flex: 1;
  justify-content: center;
}

.event-inner-box .btn-primary:hover {
  background: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 7px 15px rgba(255, 136, 0, 0.3);
}

.event-inner-box .btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.event-inner-box .btn-secondary:hover {
  background: var(--primary);
  color: var(--text-light);
  transform: translateY(-3px);
}


/* Gujarati cultural elements */
.cultural-decoration {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.7;
}

.gujarati-text {
  font-family: 'Arial', sans-serif;
  font-style: italic;
  color: var(--primary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .event-header h1 {
    font-size: 2rem;
  }

  .event-content {
    flex-direction: column;
  }

  .event-image {
    min-height: 250px;
  }

  .event-details {
    padding: 30px 25px;
  }

  .event-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    justify-content: center;
  }
}

@media (max-width: 474px) {
  .event-header {
    padding: 20px;
  }

  .event-header h1 {
    font-size: 1.5rem;
  }

  .countdown-value {
    font-size: 1.2rem;
  }

  .event-header p, .info-item
  {
    font-size: 1rem;
  }
}

/*-------------------------------------------------- EVENTS SECTION CSS END -------------------------------------------------------*/
/*-------------------------------------------------- About Us Section CSS START -------------------------------------------------------*/

.about-us {
  padding: 20px 0;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  color: var(--primary);
}

.section-title span {
  color: var(--secondary);
}

.section-title::after {
  content: '';
  position: absolute;
  width: 80%;
  height: 4px;
  background: linear-gradient(to right, var(--secondary), var(--gold));
  bottom: -10px;
  left: 10%;
  border-radius: 3px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-dark);
  max-width: 700px;
  margin: 20px auto 0;
  opacity: 0.8;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text {
  padding-right: 20px;
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 25px;
  color: var(--text-dark);
}

.highlight-box {
  background: rgba(255, 136, 0, 0.08);
  border-left: 4px solid var(--secondary);
  padding: 25px;
  border-radius: 0 8px 8px 0;
  margin: 30px 0;
  position: relative;
}

.highlight-box p {
  font-style: italic;
  margin: 0;
  color: var(--primary);
  font-size: 1.2rem;
  line-height: 1.6;
}

.quote-icon {
  position: absolute;
  top: 15px;
  left: 20px;
  color: var(--gold);
  font-size: 1.5rem;
  opacity: 0.5;
}

.about-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(11, 30, 74, 0.1);
  transition: transform 0.5s;
}

.about-image:hover {
  transform: translateY(-10px);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s;
}

.about-image:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(11, 30, 74, 0.8), transparent);
  padding: 30px 20px 20px;
  color: white;
}

/* Values Section */
.values-section {
  padding: 20px 0;
  border-radius: 15px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.value-card {
  background: var(--light-bg);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(11, 30, 74, 0.1);
  position: relative;
  overflow: hidden;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(11, 30, 74, 0.1);
}

.value-icon {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 20px;
  background: rgba(255, 136, 0, 0.1);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
}

.value-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.value-description {
  color: var(--text-dark);
  line-height: 1.6;
  opacity: 0.8;
}

/* Stats Section */
.stats-section {
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.stat-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  background: var(--light-secondary);
  transition: transform 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stats-grid .stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
  display: block;
}

.stat-card .stat-label {
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 600;
}

/* Mission Vision Section */
.mission-vision {
  padding: 40px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.mission-card, .vision-card {
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(11, 30, 74, 0.08);
  background: var(--light-bg);
  position: relative;
  overflow: hidden;
}

.mission-card::before, .vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
}

.mission-card::before {
  background: var(--secondary);
}

.vision-card::before {
  background: var(--gold);
}

.mission-card h3, .vision-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.mission-card p, .vision-card p {
  line-height: 1.7;
  color: var(--text-dark);
  opacity: 0.9;
}

.mission-icon, .vision-icon {
  color: var(--secondary);
  font-size: 1.5rem;
}

.vision-icon {
  color: var(--gold);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #0a1435 100%);
  padding: 40px 6px;
  text-align: center;
  border-radius: 15px;  
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  top: -100px;
  right: -100px;
}

.cta-section::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(255, 136, 0, 0.1);
  border-radius: 50%;
  bottom: -75px;
  left: -75px;
}

.cta-title {
  font-size: 2rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  color: white;
}

.cta-text {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.btn-primary {
  background: var(--secondary);
  color: var(--text-light);
  padding: 15px 35px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: 0.3s;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 136, 0, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  padding: 15px 35px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: 0.3s;
  border: 2px solid var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-secondary:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-content, .mission-vision {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-text {
    padding-right: 0;
  }

  .section-title, .about-text h3
  {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .section-title, .cta-title
  {
    font-size: 1.8rem;
  }

  .about-text h3 {
    font-size: 1.6rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary, .btn-secondary {
    width: 250px;
    justify-content: center;
    padding: 10px 25px;
    font-size: 1rem;
  }

  .values-grid, .stats-grid {
    grid-template-columns: 1fr;
  }
  .cta-text {
    font-size: 1rem;
  }

}

@media (max-width: 474px) {
  .section-title {
    font-size: 1.5rem;
  }

  .about-text h3 {
    font-size: 1.4rem;
  }

  .mission-card, .vision-card {
    padding: 25px;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .section-header
  {
    margin-bottom: 10px;
  }
  .value-icon
  {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  .value-description, .mission-card p, .vision-card p
  {
    font-size: 1rem;
  }
  .stats-grid .stat-number
  {
    font-size: 2rem;
  }
  .mission-card h3, .vision-card h3
  {
    font-size: 1.4rem;
  }
}

/*-------------------------------------------------- About Us Section CSS END -------------------------------------------------------*/
/*-------------------------------------------------- Sponsor Section CSS START -------------------------------------------------------*/

.sponsor-section
{
  padding: 20px 0;
}

.sponsors-inner-section {
  background: var(--light-secondary);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.sponsors-slider {
  position: relative;
  margin: 40px 0;
}

.sponsor-item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
  padding: 20px;
  transition: all 0.3s ease;
}

.sponsor-logo {
  max-width: 180px;
  max-height: 80px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.sponsor-item:hover .sponsor-logo {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Owl Carousel Navigation */
.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.owl-prev, .owl-next {
  width: 40px;
  height: 40px;
  background: rgba(44, 62, 80, 0.8) !important;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: white !important;
  font-size: 20px !important;
  pointer-events: all;
  transition: all 0.3s ease;
}

.owl-prev:hover, .owl-next:hover {
  background: #2c3e50 !important;
  transform: scale(1.1);
}

.owl-dots {
  margin-top: 20px;
  text-align: center;
}

.owl-dot span {
  width: 12px;
  height: 12px;
  margin: 5px;
  background: #bdc3c7 !important;
  display: block;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.owl-dot.active span {
  background: #3498db !important;
  transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2rem;
  }

  .sponsor-item {
    height: 100px;
  }

  .sponsor-logo {
    max-width: 140px;
  }

  .owl-nav {
    display: none;
  }
}

/*-------------------------------------------------- Sponsor 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)
{
}
@media(max-width: 767px)
{
  .gswa-footer-logo p, .gswa-footer-contact p, .section-header p, .about-text p
  {
    font-size: 1rem;
  }

}
@media(max-width: 474px)
{
  .breadcrumb-link.active
  {
    font-size: 0.8rem;
  }
  .stats-section , .mission-vision
  {
    padding: 20px 0;
  }
}
