:root {
  --default-font: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Montserrat", sans-serif;
  --nav-font: "Montserrat", sans-serif;
}

/* Global Colors */
:root { 
  --background-color: #ffffff;
  --default-color: #444444;
  --heading-color: #433f39;
  --accent-color: #47B54C;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

/* Nav Menu Colors */
:root {
  --nav-color: black;
  --nav-hover-color: #47B54C;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #444444;
  --nav-dropdown-hover-color: #47B54C;
}

.light-background {
  --background-color: #fffaf3;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #1e160d;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #42301c;
  --contrast-color: #ffffff;
}

:root {
  scroll-behavior: smooth;
}

body {
    background-color: white;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: transparent;
  --default-color: #000000;
  --heading-color: #000000;
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.header .topbar {
  background-color: var(--background-color);
  padding: 10px 0 0 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--accent-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {
  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .branding {
  min-height: 60px;
  padding: 5px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 60px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  --background-color: rgba(255, 255, 255, 0.90);
}

.hero li {
  list-style: none;
}

.hero span{
  color: white;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }
  
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 14px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: 100%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

@media (max-width: 768px) {
    body {
        background-position: center center;
        background-size: cover;
    }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* News Header with Image Backgrounds */
.news-header-container {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    margin-top: 40px;
}

.news-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 3em;
    color: white;
    text-align: center;
    margin: 0;
    padding: 20px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    background-image: url('imahe/Assets.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* Event Navigation Buttons */
.event-nav-buttons {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 40px 5%;
    z-index: 10;
    margin-top: 20px;
}

.event-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 500px;
    height: 180px;
    background: white;
    border-radius: 25px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.08),
        0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-3px);
    border: 2px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.event-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.event-btn:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.1),
        0 6px 16px rgba(0, 0, 0, 0.07);
}

.event-btn:hover img {
    transform: scale(1.15);
}

.event-btn:active {
    transform: translateY(0px);
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.08),
        inset 0 2px 6px rgba(0, 0, 0, 0.08);
}

.event-btn:active img {
    transform: scale(1.05);
}

.event-btn.active {
    border: 2px solid #ff8c42;
    box-shadow: 
        0 2px 8px rgba(255, 140, 66, 0.15),
        0 4px 12px rgba(255, 140, 66, 0.1);
}

.event-btn.active:hover {
    box-shadow: 
        0 4px 12px rgba(255, 140, 66, 0.18),
        0 6px 16px rgba(255, 140, 66, 0.12);
}

@media (max-width: 1024px) {
    .event-btn {
        width: 420px;
        height: 150px;
        padding: 18px;
    }
    
    .event-nav-buttons {
        gap: 30px;
        padding: 35px 3%;
    }
}

@media (max-width: 768px) {
    .event-nav-buttons {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 30px 5%;
        margin-top: 15px;
    }
    
    .event-btn {
        width: 90%;
        max-width: 450px;
        height: 140px;
        padding: 15px;
    }
    
    .news-header-container {
        margin-top: 30px;
    }
    
    .news-title {
        font-size: 1.8em;
        padding: 15px 10px;
        letter-spacing: 1px;
        min-height: 50px;
    }
}

@media (max-width: 480px) {
    .event-btn {
        width: 95%;
        height: 110px;
        padding: 12px;
        border-radius: 20px;
    }
    
    .event-nav-buttons {
        gap: 20px;
        padding: 25px 2%;
    }
    
    .event-btn img {
        transform: scale(1.05);
    }
    
    .news-header-container {
        margin-top: 20px;
    }
    
    .news-title {
        font-size: 1.4em;
        padding: 12px 10px;
        min-height: 40px;
    }
}

.news-title-text {
    position: relative;
    display: inline-block;
    text-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.4),
        0 8px 16px rgba(0, 0, 0, 0.3),
        0 12px 24px rgba(0, 0, 0, 0.2),
        0 2px 4px rgba(0, 0, 0, 0.5);
    transform: translateY(-3px);
    transition: all 0.3s ease;
}

.news-title-text:hover {
    transform: translateY(-5px);
    text-shadow: 
        0 6px 12px rgba(0, 0, 0, 0.5),
        0 12px 24px rgba(0, 0, 0, 0.35),
        0 18px 36px rgba(0, 0, 0, 0.25),
        0 3px 6px rgba(0, 0, 0, 0.6);
}

.header-bg-bottom {
    width: 100%;
    height: 46px;
    background-image: url('imahe/Assets1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 60px;
}

.features .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 768px) {
  .features .features-item+.features-item {
    margin-top: 40px;
  }
}

.features .features-item h3 {
  font-weight: 700;
  font-size: 26px;
}

.features .features-item ul {
  list-style: none;
  padding: 0;
}

.features .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.features .features-item ul li:last-child {
  padding-bottom: 0;
}

.features .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .features-item img {
  border: 6px solid var(--surface-color);
  width: 100%;
  height: auto;
  display: block;
}

.features .features-item .features-img-bg {
  position: relative;
  min-height: 500px;
  overflow: visible;
}

@media (max-width: 640px) {
  .features .features-item .features-img-bg {
    min-height: 300px;
  }
}

.features .features-item .features-img-bg img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Image Stack Styles */
.features .features-item .image-stack {
  display: grid;
  position: relative;
  grid-template-columns: repeat(12, 1fr);
  width: 100%;
}

.features .features-item .image-stack .stack-back {
  grid-column: 4/-1;
  grid-row: 1;
  width: 100%;
  z-index: 1;
  background: transparent;
}

.features .features-item .image-stack .stack-back img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border: none !important;
  box-shadow: none !important;
  background: transparent;
}

.features .features-item .image-stack .stack-front {
  grid-row: 1;
  grid-column: 1/span 8;
  margin-top: 20%;
  width: 100%;
  z-index: 2;
  background: transparent;
}

.features .features-item .image-stack .stack-front img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border: none !important;
  box-shadow: none !important;
  background: transparent;
}

/* Second Features Section */
#features-2 {
  margin-top: 60px;
}

#features-2 .row {
  display: flex;
  align-items: center;
  gap: 30px;
}

#features-2 .col-lg-6.features-img-bg {
  flex: 0 0 50%;
  max-width: 50%;
  padding-right: 0;
  overflow: hidden;
}

#features-2 .col-lg-5 {
  flex: 0 0 calc(50% - 30px);
  max-width: calc(50% - 30px);
  padding-left: 0;
  padding-right: 0;
}

#features-2 .features-img-bg {
  min-height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
}

#features-2 .features-img-bg img {
  position: relative;
  width: 100%;
  height: auto;
  object-fit: cover;
  transform: scale(1);
  margin-left: 0;
}

@media (max-width: 768px) {
  #features-2 {
    margin-top: 20px;
  }
  
  #features-2 .row {
    flex-direction: column;
    gap: 25px;
  }
  
  #features-2 .col-lg-6.features-img-bg,
  #features-2 .col-lg-5 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 10px;
  }
}

@media (max-width: 576px) {
  #features-2 .row {
    gap: 20px;
    padding: 0 5px;
  }
  
  #features-2 .col-lg-6.features-img-bg {
    padding: 0 5px;
  }
}

/*--------------------------------------------------------------
# MODERN CARD WITH CONTINUOUSLY COLOR-CHANGING ROTATING BORDER - OPTIMIZED
--------------------------------------------------------------*/

@property --card-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@property --hue-rotate {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.modern-card {
  position: relative;
  margin: 2.5rem 0;
  border-radius: 20px;
  isolation: isolate;
  transition: transform 0.3s ease;
  will-change: transform;
  transform: translateZ(0);
  padding: 2.5rem;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Rotating border that continuously changes colors */
.modern-card::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 24px;
  padding: 4px;
  background: conic-gradient(
    from var(--card-angle, 0deg),
    transparent 0deg,
    #ff8c42 30deg,
    #ff6b35 60deg,
    #ff4757 90deg,
    transparent 120deg,
    transparent 180deg,
    #a55eea 210deg,
    #8854d0 240deg,
    #6c5ce7 270deg,
    transparent 300deg,
    transparent 360deg
  );
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: 
    rotateCardBorder 4s linear infinite,
    changeColorBorder 8s linear infinite;
  filter: 
    drop-shadow(0 0 12px rgba(255, 140, 66, 0.5)) 
    drop-shadow(0 0 20px rgba(165, 94, 234, 0.4))
    hue-rotate(var(--hue-rotate, 0deg));
  z-index: -1;
  will-change: transform, filter;
  transform: translateZ(0);
}

/* White card background */
.modern-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #ffffff;
  border-radius: 20px;
  z-index: -2;
}

/* All content stays on top */
.modern-card > * {
  position: relative;
  z-index: 1;
}

@keyframes rotateCardBorder {
  to {
    --card-angle: 360deg;
  }
}

@keyframes changeColorBorder {
  0% {
    --hue-rotate: 0deg;
  }
  25% {
    --hue-rotate: 90deg;
  }
  50% {
    --hue-rotate: 180deg;
  }
  75% {
    --hue-rotate: 270deg;
  }
  100% {
    --hue-rotate: 360deg;
  }
}

.modern-card:hover {
  transform: translateY(-8px) translateZ(0);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.modern-card:hover::before {
  filter: 
    drop-shadow(0 0 18px rgba(255, 140, 66, 0.6)) 
    drop-shadow(0 0 30px rgba(165, 94, 234, 0.5))
    hue-rotate(var(--hue-rotate, 0deg));
}

/* Reduce animations on low-end devices */
@media (prefers-reduced-motion: reduce) {
  .modern-card::before {
    animation: none;
  }
  
  .modern-card {
    will-change: auto;
  }
}

/* Further optimize for mobile/low-end devices */
@media (max-width: 768px) {
  .modern-card::before {
    animation-duration: 6s, 10s;
    filter: 
      drop-shadow(0 0 10px rgba(255, 140, 66, 0.4))
      hue-rotate(var(--hue-rotate, 0deg));
  }
  
  .modern-card {
    padding: 2rem;
    margin: 1.5rem 0;
  }
}

/* Typography and Layout - FIXED ALIGNMENT */
.modern-card h4 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ff8c42;
  margin: 0 0 1.5rem 0;
  padding: 0;
  line-height: 1.4;
  text-align: left;
  position: relative;
  display: block;
  width: 100%;
}

.modern-card h4::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ff8c42 0%, #ff6b35 50%, #ff4757 100%);
  border-radius: 2px;
  animation: underlineExpand 0.6s ease-out forwards;
}

@keyframes underlineExpand {
  from { width: 0; opacity: 0; }
  to { width: 60px; opacity: 1; }
}

.modern-card p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444444;
  margin: 0 0 1.5rem 0;
  padding: 0;
  text-align: left;
  font-weight: 400;
}

.modern-card p b {
  color: #ff8c42;
  font-weight: 600;
}

.modern-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.modern-card ul li {
  margin-bottom: 1rem;
  padding-left: 0;
  list-style: none;
  display: flex;
  align-items: flex-start;
  text-align: left;
  animation: fadeIn 0.5s ease-out forwards;
  opacity: 0;
  color: #444444;
  font-size: 1.05rem;
  line-height: 1.6;
}

.modern-card ul li:nth-child(1) { animation-delay: 0.1s; }
.modern-card ul li:nth-child(2) { animation-delay: 0.2s; }
.modern-card ul li:nth-child(3) { animation-delay: 0.3s; }
.modern-card ul li:nth-child(4) { animation-delay: 0.4s; }
.modern-card ul li:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

.modern-card ul li i {
  color: #ff8c42;
  margin-right: 0.75rem;
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.modern-card ul li span {
  color: #444444;
  font-weight: 400;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .modern-card {
    padding: 2.25rem;
  }
  
  .modern-card h4 {
    font-size: 1.6rem;
  }
  
  .modern-card p,
  .modern-card ul li {
    font-size: 1rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .modern-card {
    padding: 2rem;
    margin: 1.5rem 0;
    border-radius: 16px;
  }
  
  .modern-card::before {
    inset: -3px;
    border-radius: 19px;
  }
  
  .modern-card::after {
    border-radius: 16px;
  }
  
  .modern-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
  }
  
  .modern-card p,
  .modern-card ul li {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .modern-card ul li i {
    font-size: 1.15rem;
  }
}

/* Small Mobile */
@media (max-width: 576px) {
  .modern-card {
    padding: 1.5rem;
    margin: 1rem 0;
    border-radius: 14px;
  }
  
  .modern-card::before {
    inset: -3px;
    border-radius: 17px;
  }
  
  .modern-card::after {
    border-radius: 14px;
  }
  
  .modern-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .modern-card h4::after {
    width: 50px;
    bottom: -10px;
  }
  
  .modern-card p,
  .modern-card ul li {
    font-size: 0.9rem;
    line-height: 1.65;
  }
  
  .modern-card ul li {
    margin-bottom: 0.85rem;
  }
  
  .modern-card ul li i {
    font-size: 1.1rem;
    margin-right: 0.6rem;
  }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
  .modern-card {
    padding: 1.25rem;
    border-radius: 12px;
  }
  
  .modern-card::after {
    border-radius: 12px;
  }
  
  .modern-card h4 {
    font-size: 1.15rem;
  }
  
  .modern-card p,
  .modern-card ul li {
    font-size: 0.875rem;
  }
}

/* Moving Logo Marquee Section */
.logo-marquee-section {
  width: 100%;
  background-color: #FFDAB3;
  padding: 30px 0;
  overflow: hidden;
}

.logo-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logo-marquee .logo-track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: scrollLogos 15s linear infinite;
}

.logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-item img {
  height: 60px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.logo-item img[src*="dinagyanglogo"] {
  height: 90px;
}

.logo-item img[src*="Assets6"] {
  height: 50px;
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% / 3));
  }
}

@media (max-width: 768px) {
  .logo-marquee-section {
    padding: 20px 0;
  }
  
  .logo-item img {
    height: 40px;
  }
  
  .logo-item img[src*="dinagyanglogo"] {
    height: 300px;
  }
  
  .logo-item img[src*="Assets6"] {
    height: 35px;
  }
  
  .logo-marquee .logo-track {
    gap: 50px;
  }
}

/* Video Highlights Section */
.video-highlights-section {
  width: 100%;
  padding: 60px 0;
  background-image: url('imahe/Assets2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 60px 0;
}

.video-highlights-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.video-highlights-section .video-container {
  max-width: 1200px;
  margin: 0 auto;
}

.video-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(46, 125, 50, 0.25);
  transition: all 0.3s ease;
  border: 2px solid rgba(76, 175, 80, 0.3);
}

.video-wrapper {
  position: relative;
  background: #000;
  height: 0;
  padding-bottom: 56.25%;
}

.video-wrapper video {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  width: 100%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  background: #000;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  z-index: 3;
  transition: opacity 0.3s ease;
  opacity: 1;
  pointer-events: all;
}

.video-overlay.inactive {
  pointer-events: none;
}

.play-button {
  position: relative;
  z-index: 4;
}

.play-button i {
  font-size: 5rem;
  color: #ff9800;
  text-shadow: 0 0 20px rgba(255, 152, 0, 0.8);
  animation: pulse-orange 1.5s infinite;
  cursor: pointer;
}

@keyframes pulse-orange {
  0% {
    transform: scale(1);
    color: #ff9800;
    text-shadow: 0 0 20px rgba(255, 152, 0, 0.8);
  }
  50% {
    transform: scale(1.15);
    color: #ffb74d;
    text-shadow: 0 0 35px rgba(255, 183, 77, 1);
  }
  100% {
    transform: scale(1);
    color: #ff9800;
    text-shadow: 0 0 20px rgba(255, 152, 0, 0.8);
  }
}

.video-caption {
  margin-top: 25px;
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  z-index: 4;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.video-overlay:hover .video-caption {
  opacity: 1;
  transform: translateY(-5px);
}

.video-stats {
  display: flex;
  justify-content: space-around;
  background-image: url('imahe/Assets.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 25px 20px;
  color: white;
}

.stat-item {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 600;
  position: relative;
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-item i {
  margin-right: 10px;
  font-size: 1.5rem;
  color: #ffffff;
  text-shadow: 
    0 3px 6px rgba(0, 0, 0, 0.4),
    0 6px 12px rgba(0, 0, 0, 0.3),
    0 9px 18px rgba(0, 0, 0, 0.2);
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
  transition: all 0.3s ease;
}

.stat-item:hover i {
  text-shadow: 
    0 4px 8px rgba(0, 0, 0, 0.5),
    0 8px 16px rgba(0, 0, 0, 0.35),
    0 12px 24px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

.stat-item span {
  position: relative;
  display: inline-block;
  text-shadow: 
    0 3px 6px rgba(0, 0, 0, 0.4),
    0 6px 12px rgba(0, 0, 0, 0.3),
    0 9px 18px rgba(0, 0, 0, 0.2),
    0 1px 2px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.stat-item:hover span {
  text-shadow: 
    0 4px 8px rgba(0, 0, 0, 0.5),
    0 8px 16px rgba(0, 0, 0, 0.35),
    0 12px 24px rgba(0, 0, 0, 0.25),
    0 2px 4px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
  .video-highlights-section {
    margin: 30px auto;
  }
  
  .video-stats {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px 15px;
  }
  
  .stat-item {
    font-size: 1rem;
  }
  
  .stat-item i {
    font-size: 1.3rem;
  }
  
  .play-button i {
    font-size: 3.5rem;
  }
  
  .video-caption {
    font-size: 1.2rem;
  }
}

/* Footer */
.footer {
    z-index: 100;
}

.footer h4 {
  color:white;
}

.footer p{
  color: white;
}

.footer .wave {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url(waves2.png);
  background-size: 1000px 100px;
}

.footer .wave#wave1 {
  z-index: 1000;
  opacity: 1;
  animation: animateWave 5s linear infinite;
}

.footer .wave#wave2 {
  z-index: 999;
  opacity: 0.5;
  animation: animateWave_02 5s linear infinite;
}

.footer .wave#wave3 {
  z-index: 1000;
  opacity: 0.2;
  animation: animateWave 3s linear infinite;
}

.footer .wave#wave4 {
  z-index: 999;
  opacity: 0.7;
  animation: animateWave_02 3s linear infinite;
}

@keyframes animateWave {
  0% {
    background-position-x: 1000px;
  }
  100% {
    background-position-x: 0px;
  }
}

@keyframes animateWave_02 {
  0% {
    background-position-x: 0px;
  }
  100% {
    background-position-x: 1000px;
  }
}

/* Confetti Effect Styles */
.confetti-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9998;
  overflow: hidden;
}

.confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  opacity: 0;
  animation: confetti-fall linear forwards;
}

.confetti.square {
  border-radius: 2px;
}

.confetti.rectangle {
  width: 8px;
  height: 16px;
  border-radius: 2px;
}

@keyframes confetti-fall {
  0% {
    opacity: 1;
    transform: translateY(0) rotate(0deg) scale(1);
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: translateY(100vh) rotate(720deg) scale(0.5);
  }
}

@keyframes confetti-fall-sway-left {
  0% {
    opacity: 1;
    transform: translateY(0) translateX(0) rotate(0deg);
  }
  25% {
    transform: translateY(25vh) translateX(-30px) rotate(180deg);
  }
  50% {
    transform: translateY(50vh) translateX(20px) rotate(360deg);
  }
  75% {
    transform: translateY(75vh) translateX(-20px) rotate(540deg);
  }
  100% {
    opacity: 0;
    transform: translateY(100vh) translateX(10px) rotate(720deg);
  }
}

@keyframes confetti-fall-sway-right {
  0% {
    opacity: 1;
    transform: translateY(0) translateX(0) rotate(0deg);
  }
  25% {
    transform: translateY(25vh) translateX(30px) rotate(-180deg);
  }
  50% {
    transform: translateY(50vh) translateX(-20px) rotate(-360deg);
  }
  75% {
    transform: translateY(75vh) translateX(20px) rotate(-540deg);
  }
  100% {
    opacity: 0;
    transform: translateY(100vh) translateX(-10px) rotate(-720deg);
  }
}

.cannon-left, .cannon-right {
  position: fixed;
  top: 0;
  width: 150px;
  height: 150px;
  pointer-events: none;
  z-index: 9999;
}

.cannon-left {
  left: 0;
}

.cannon-right {
  right: 0;
}

.cannon-burst {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 2px;
  opacity: 0;
}

@keyframes burst-left {
  0% {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(var(--burst-x), var(--burst-y)) rotate(360deg) scale(0.3);
  }
}

@keyframes burst-right {
  0% {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(var(--burst-x), var(--burst-y)) rotate(-360deg) scale(0.3);
  }
}

@media (max-width: 768px) {
  .confetti {
    width: 8px;
    height: 8px;
  }
  
  .confetti.rectangle {
    width: 6px;
    height: 12px;
  }
}

@media (min-width: 360px){
    .header {
        left: -10px;
    }
}