:root {
  --colorgd: linear-gradient(35deg, rgba(63, 94, 251, 1) 0%, rgba(252, 33, 78, 1) 100%);
  --color2d: rgba(63, 94, 251, 1);
  --color1d: rgba(252, 33, 78, 1);
  --bg1d: #0d1117;
  --bg2d: #202730; /* #e beff5 */
  --text1: #ffffff;
  --text2: #e9e9e9; 
  --logo: 100%;
  --p: #dfdcdc;
  --conbg: linear-gradient(180deg, #0d1117 45%, #0a0a0a 100%);
}

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

body {
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
  background: rgb(18, 24, 36);
  overflow-X: hidden;
  color: white;
}

@property --angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 135deg;
}

#intro-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(var(--angle), #004bad, #0d012c, #08011a, #08011a, #08011a, #0d012c, #e00069);
  animation: rotateGradient 4s forwards;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 100000000001;
}

#intro-screen .logo-l {
  width: 150px;
  margin-bottom: 20px;
}

#intro-screen .typewriter p {
  font-family: 'Courier New', monospace;
  font-size: 1.5rem;
  color: #ffffff;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid rgba(255, 255, 255, 0.75);
  animation: typing 3s steps(40) forwards, blink 0.8s step-end infinite;
}
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

@keyframes rotateGradient {
  from {
    --angle: 90deg;
  }
  to {
    --angle: 135deg;
  }
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.open {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
  transition: all 0.3s ease;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 1rem;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #21bbfd;
}

.register-btn {
  padding: 10px 20px;
  border: 1px solid white;
  border-radius: 5px;
  background: transparent;
  color: white;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.register-btn:hover {
  background: white;
  color: #000;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.menu-toggle .bar {
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translateY(15px);
}
.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translateY(-15px);
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background: transparent;
  border: none;
  color: white;
  font: inherit;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  z-index: 999;
  flex-direction: column;
  border-radius: 12px;
  padding: 10px;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease-in-out;
}

.dropdown:hover .dropdown-content {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-content a {
  color: white;
  padding: 8px 12px;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s;
}

.dropdown-content a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero {
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.8)), url('extras/background.png');
  background-size: cover;
  background-position: left;
  height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  padding: 0 60px;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.text {
  flex: 1;
  min-width: 70%;
}

.text h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.text p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #ddd;
  max-width: 70%;
}

.cta-btn {
  padding: 15px 30px;
  font-size: 1rem;
  background: #ffffff;
  color: #000;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.cta-btn:hover {
  background: linear-gradient(90deg, rgb(205 9 98 / 50%), rgb(0 0 0 / 40%)); 
  color: white;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* background-image: linear-gradient(90deg, #ffffff, #ffffff, #a06fff, #5a00e9); */


h1, h2, h3 {
  font-weight: bold;
  color: white;
  cursor: default;
  position: relative;
  display: inline-block;
  background-image: linear-gradient(90deg, #ffffff, #ffffff, #a06fff, #5a00e9); 
  background-size: 300% auto;
  background-position: 0% 50%;
  background-clip: text;
  -webkit-background-clip: text;
  color: white;
  transition: color 0.4s ease, background-position 1s ease;
}

h1:hover, h2:hover, h3:hover {
  color: transparent;
  background-position: 100% 50%;
}

@keyframes gradient-slide {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 100% 50%;
  }
}

.notification-button {
  position: fixed;
  bottom: 20px;
  right: 17px;
  z-index: 1000;
  cursor: pointer;
}

.circle {
  width: 55px;
  height: 55px;
  background: linear-gradient(35deg, rgb(17 48 203) 0%, rgb(160 33 252));;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.n-icon {
  font-size: 20px;
  color: white;
}

.notification-list {
  position: fixed;
  z-index: 99999;
  bottom: 80px;
  right: 80px;
  width: 340px;
  background-color: var(--bg1d);
  box-shadow: 0px 5px 20px rgb(47 59 117 / 39%);
  border-radius: 15px 15px 0px 15px;
  overflow: hidden;
  display: none;
  
}

.notification-list ul {
  list-style: none;
  margin: 0;
  padding: 10px;
}

.notification-list ul li {
  padding: 12px;
  border-bottom-color: var(--text1);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  font-size: 14px;
  color: var(--p);
}

.notification-list ul li:last-child {
  border-bottom: none;
}

.notification-list ul li:hover {
  background-color: var(--bg2d);
}

.notification-item h5 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text1);
}

.about-section {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0)), 
              url('extras/background2.png');
  background-size: cover;
  background-position: left;
  color: white;
  padding: 0px 20px;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(120deg, rgb(205 9 98 / 11%), rgb(0 0 0 / 40%)); 
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}


.about-top {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.video-container {
  flex: 1;
}

.video-container img {
  width: 90%;
  border-radius: 12px;
}

.legimg {
  width: 90%;
  border-radius: 12px;
}

.video-container .legimg {
  width: 90%;
  border-radius: 12px;
}

.video-container video {
  width: 100%;
  border-radius: 12px;
}

.text-container {
  flex: 1;
}

.text-container h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.text-container p {
  color: #ccc;
  font-size: 1.1rem;
  line-height: 1.6;
}

.about-middle {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.row {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.column {
  flex: 2;
}

.column h3 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.col-box {
  flex: 1;
  min-height: 100px;
}

.about-middle .row .row {
  max-width: 50%;
  display: block;
}

.about-middle .row .row .column {
  padding: 10px;
}

.about-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.stats-new {
  display: flex;
  flex: 2;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 20px 25px;
  text-align: center;
  flex: 1;
  min-width: 100px;
  transition: transform 0.3s, background 0.3s;
}

.stat-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
}

.stat-number {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.9rem;
  color: #aaa;
}

.side-text {
  flex: 1;
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
  min-width: 250px;
}


.logo-containerx {
  position: relative;
  width: 250px;
  height: 250px;
  transform: scale(0.75) rotateY(-30deg) rotateX(45deg) translateZ(4.5rem);
  transform-origin: 50% 100%;
  transform-style: preserve-3d;
  box-shadow: 1rem 1rem 2rem rgba(0, 0, 0, 0.25);
  transition: 0.6s ease transform;
  background: #060623;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  
  &:hover {
    transform: scale(1);
  }
}

.logox {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.logo-containerx::before,
.logo-containerx::after {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}

.logo-containerx::before {
  transform: translateZ(4rem);
  border: 5px solid transparent;
  border-image: linear-gradient(90deg, #3700ff, transparent,transparent,transparent, #3b0de3) 1;
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
  box-sizing: border-box;
  pointer-events: none;
}


.logo-containerx:hover::before {
  transform: translateZ(0);
}

.logo-containerx::after {
  transform: translateZ(-4rem);
  background: #599bf9;
  box-shadow: 1rem 1rem 2rem rgba(0, 0, 0, 0.25);
}

.logo-containerx:hover::after {
  transform: translateZ(-1px);
}

.divider {
  border: none;
  height: 2px;
  background: linear-gradient(to right, #9900ff, #c800ff, #9900ff);
  margin: 20px 0;
  border-radius: 50px;
  width: 70%;
  margin-left: 10px;
}

.events{
  display: block;
  position: relative;
  padding: 100px 20px;
  background: #121824;
  justify-self: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow-x: hidden;
}

.event-container {
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  justify-content: center;
  min-height: 80vh;
  height:80%;
}

.event-content {
  display: flex;
  flex-direction: row;
  gap: 40px;
  max-width: 95%;
  width: 100%;
  background: linear-gradient(300deg, rgb(99 5 143 / 58%), transparent);  /* rgba(100, 9, 153, 0.877)*/
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 0 20px rgb(102, 0, 255, 0.2);
  backdrop-filter: blur(10px);
}

.event-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-heading {
  font-size: 25px;
  margin-bottom: 10px;
  color: #8000ff;
}

.event-date {
  font-size: 18px;
  margin-bottom: 15px;
  color: #cccccc;
}

.event-text {
  font-size: 16px;
  line-height: 1.5;
  color: #eeeeee;
}

.event-controls {
  margin-top: 20px;
}

.event-controls button {
  background: #8c00ff;
  color: #fff;
  border: none;
  padding: 10px 20px;
  margin-right: 10px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.event-controls button:hover {
  background: #5324ff;
}

.event-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.event-image img {
  max-width: 100%;
  max-height: 400px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgb(128, 0, 255, 0.4);
}

.rotating-container {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 25vw;
  height: 25vw;
  opacity: 0.5;
}

.outer-ring, .inner-ring {
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.outer-ring {
  width: 100%;
  height: 100%;
  background-image: url('extras/outer.png');
  animation: spinClockwise 10s linear infinite;
}

.inner-ring {
  width: 50%;
  height: 50%;
  top: 25%;
  left: 25%;
  background-image: url('extras/inner.png');
  animation: spinCounterClockwise 6s linear infinite;
}

@keyframes spinClockwise {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spinCounterClockwise {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}


.gallery-con {
  position: relative;
  padding: 50px 20px;
  background: rgb(18, 24, 36);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  background: -webkit-linear-gradient(0deg, #ff0088, rgb(201, 26, 255), rgb(46, 98, 255),  #00aaff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  font-weight: bold;
  z-index: 2;
  pointer-events: none;
  filter: brightness(1.5);
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 95vw;
  overflow: hidden;
  position: relative;
/* filter: brightness(0.5); */
}

.rowx {
  display: flex;
  gap: 15px;
  white-space: nowrap;
  justify-content: center;
  position: relative;
}

.rowx img {
  height: 150px;
  width: auto;
  object-fit: cover;
  border-radius: 10px;
  /* box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);*/
  opacity: 0.4;
  transition: transform 0.3s ease;
}

.rowx img:hover {
  transform: scale(1.05);
}

.registration {
  padding: 0px 20px 0px 20px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.reg-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
  background-image: url('cat.jpg');
  background-size: cover;
  background-position: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(70deg, rgb(0 255 163 / 40%), rgb(133 0 255 / 40%));
  z-index: 1;
}

.reg-content {
  position: relative;
  display: flex;
  flex-direction: row;
  z-index: 2;
  backdrop-filter: blur(4px);
}

.volunteer, .member {
  flex: 1;
  padding: 60px 40px;
  color: white;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  transition: transform 0.4s ease, background-color 0.4s ease;
}

.volunteer:hover, .member:hover {
  background-color: rgba(0, 0, 0, 0.55);
  transform: translateY(-5px);
}

.volunteer {
  clip-path: polygon(0 0, 99.9% 0, 95.9% 100%, 0% 100%);
}

.member {
  clip-path: polygon(4.1% 0, 100% 0, 100% 100%, 0.1% 100%);
}

.reg-icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: #fff;
  transition: transform 0.4s ease, color 0.4s ease;
}

.volunteer:hover .reg-icon {
  color: #98fb98;
  transform: scale(1) rotate(-5deg);
}

.member:hover .reg-icon {
  color: #64b5f6;
  transform: scale(1) rotate(-5deg);
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top:10px
}

.btn-volunteer {
  background-color: #00c292;
}

.btn-volunteer:hover {
  background-color: #00a37d;
  transform: scale(1.05);
}

.btn-member {
  background-color: #1e88e5;
}

.btn-member:hover {
  background-color: #1976d2;
  transform: scale(1.05);
}


.features{
  background-image: url('extras/background3.png');
  background-size: cover;
  background-position: left;
  background-repeat: no-repeat;
  max-height: 100%;;
}

.features-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
  background-color: #0e0e11;
  color: #fff;
  border-radius: 15px;
  margin-top: 30px;
  margin-bottom: 30px;
  box-shadow: rgb(0, 0, 0, 0.25) 0px 30px 60px -12px inset, rgb(8, 8, 18, 0.3) 0px 18px 36px -18px inset;
  perspective: 1000px;
}


.card {
  background-color: #18181b;
  border: 1px solid #2a2a2d;
  padding: 2rem;
  border-radius: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
  position: relative;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform, opacity;
}

.card:hover {
  transform: translateY(-6px);
  border-color: #444;
  background-color: #1f1f23;
}

.icon {
  font-size: 2rem;
  color: #6c63ff;
  margin-bottom: 1.25rem;
}

.card h2 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: white;
}

.card p {
  font-size: 0.95rem;
  color: #c0c0c0;
  flex-grow: 1;
}

.go-icon {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  font-size: 1.4rem;
  color: #6c63ff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.go-icon:hover {
  transform: scale(1.2);
  color: #a39dff;
}


.executive-section {
  padding: 60px 5%;
  max-width: 100%;
  margin: auto;
  background: linear-gradient(180deg, rgb(18, 24, 36) 45%, #0d1117 100%);
}

.section-title {
  text-align: center;
  font-size: 2em;
  margin-bottom: 50px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00ffc8;
}

.executive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.exec-card {
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, #111423, #0e1120);
  border: 1px solid #1f243a;
  border-radius: 16px;
  overflow: hidden;
  padding: 18px 22px;
  transition: transform 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 255, 255, 0.08);
}

.exec-card:hover {
  transform: translateY(-5px);
}

.exec-image img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid #00ffc8;
}

.exec-details {
  margin-left: 20px;
}

.exec-details h4 {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 6px;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.exec-details p {
  font-size: 0.95em;
  color: #00ffc8;
  font-weight: 500;
}

.glass-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: skewX(-25deg);
  pointer-events: none;
  transition: all 0.7s ease;
}

.exec-card:hover .glass-shine {
  left: 100%;
}

.show-all-wrapper {
  margin-top: 50px;
  text-align: center;
}

.show-all-btn {
  display: inline-block;
  background: rgb(2, 204, 197);
  color: #000;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1em;
  text-decoration: none;
  transition: background 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 255, 255, 0.2);
}

.show-all-btn:hover {
  background: #00d9d0;
  color: #000;
}


.contact {
  padding: 0;
  margin: 0;
  padding-top: 10%;
  background: linear-gradient(180deg, #0d1117 45%, #0a0a0a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-container {
  width: 90%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 60px 40px;
  background: #101214;
  border: 1px solid #1e1e1e;
  border-radius: 16px;
  position: relative;
  isolation: isolate;
}

.contact-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.02) 2px,
    transparent 2px,
    transparent 10px
  );
  pointer-events: none;
  z-index: 0;
}

.contact-form,
.contact-info {
  z-index: 1;
}

.contact-form h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #00ffc8;
  font-weight: 600;
  border-bottom: 2px dashed #00ffc8;
  display: inline-block;
  padding-bottom: 4px;
}

.contact-form form label {
  display: block;
  margin-top: 20px;
  font-size: 0.95em;
  color: #999;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: #16181b;
  border: 1px solid #292c31;
  color: #00ffc8;
  border-radius: 8px;
  margin-top: 6px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #00ffc8;
  background: #1d1f23;
}

.contact-form button {
  margin-top: 25px;
  padding: 12px 30px;
  background: linear-gradient(135deg, #00ffc8, #02d1c5);
  color: #000;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  font-size: 1em;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 255, 238, 0.2);
}

.contact-form button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transform: skewX(-20deg);
  transition: 0.5s;
  z-index: 0;
}

.contact-form button:hover::before {
  left: 150%;
}

.contact-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 30px rgba(0, 255, 238, 0.4);
}


.contact-info .contact-details p {
  font-size: 1em;
  margin-bottom: 12px;
  border-left: 3px solid #00ffc8;
  padding-left: 12px;
}

.social-icons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}
.social-icons a {
  color: #00ffc8;
  font-size: 1.4em;
  border: 1px solid #00ffc8;
  border-radius: 50%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  transition: all 0.4s ease;
  background: #0f1115;
  box-shadow: 0 0 8px rgba(0, 255, 238, 0.1);
  text-decoration: none;
}

.social-icons a:hover {
  color: #000;
  background: #00ffee;
  border-color: #00ffee;
  transform: scale(1.2) rotate(5deg);
  box-shadow: 0 0 15px #00ffee88;
}


footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  color: #666;
  background: #0a0a0a;
}

.sbg-box{
  padding:0;
  margin:0;
}

.blur-circle1 {
  position: absolute;
  width: 600px;
  height: 600px;
  /* top: 50%; */
  left: 90%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 30% 30%, rgba(124, 0, 255, 0.3), transparent 60%),
              radial-gradient(circle at 70% 70%, rgba(0, 255, 198, 0.4), transparent 60%);
  filter: blur(150px);
  z-index: 0;
  animation: float 10s ease-in-out infinite alternate;
  pointer-events: none;
  overflow-x: hidden;
}

.blur-circle2 {
  position: absolute;
  width: 600px;
  height: 600px;
  /* top: 50%; */
  left: 10%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 30% 30%, rgb(153, 0, 255, 0.4), transparent 60%),
              radial-gradient(circle at 70% 70%, rgba(124, 0, 255, 0.3), transparent 60%);
  filter: blur(150px);
  z-index: 0;
  animation: float 10s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes float {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-48%, -52%) scale(1.05);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}


@media (max-width: 780px) {
  .notification-list {
    position: fixed;
    z-index: 999;
    bottom: 30%;
    left: 0%;
    width: 340px;
    background-color: var(--bg1d);
    box-shadow: 0px 5px 20px rgb(47 59 117 / 39%);
    border-radius: 15px 15px 15px 0px;
    overflow: hidden;
    display: none;
  }

  .dropdown-content {
    margin-left: 100%;
  }

  .hero {
    background-position: right;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-content .text {
    margin-top:10px;
    padding-top: 20px;
  }

  .text p{
    font-size: 1rem;
    justify-self: center;
    min-width: fit-content;
  }

  .text h1 {
    font-size: 1.8rem;
  }

  .hero-image {
    margin-top: 30px;
  }

  .about-section {
    background-position: right;
  }

  .about-top, .row, .about-bottom {
    flex-direction: column;
  }

  .about-middle .row .row {
    max-width: 90%;
    display: flex;
    flex-direction: row;
  }

  .stats {
    justify-content: space-around;
  }

  .stats-new {
    flex-direction: row;
    gap: 15px;
  }

  .stat-card {
    width: 100%;
  }

  .about-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .event-content {
    flex-direction: column;

  }
  .gallery-title {
    font-size: 2.7rem;
  }

  .reg-content {
    flex-direction: column;
  }

  .volunteer {
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0% 100%);
    border-radius: 10px 10px 0 0;
  }

  .member {
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0% 100%);
    border-radius: 0 0 10px 10px;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .nav-links {
    overflow: hidden;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-height: 0;
    opacity: 0;
    padding: 0;
    gap: 0;
    transition: all 0.4s ease;
  }
  
  .dropdown:hover {
      margin-bottom: 35%;
  }

  .nav-links.active {
    padding: 20px 0;
    max-height: 500px;
    opacity: 1;
    gap: 15px;
  }

  .nav-links a,
  .register-btn {
    width: 100%;
  }

  .register-btn {
    text-align: center;
  }

  .blur-circle2 {
    display: none;
  }
  .blur-circle1 {
    display: none;
  }

  .contact-container {
        display: flex;
        flex-direction: column;
  }

  iframe {
    width: 100%;
  }

  .notification-list {
    top: 50%;
    right: 10px;
  }

  .event-controls button {
    padding: 10px 10px;
  }

  .event-content {
    height: 100%;
  }

  .event-container {
    padding-left: 0px;
    padding-right: 0px;
  }

  #intro-screen .typewriter p {
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    color: #ffffff;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid rgba(255, 255, 255, 0.75);
    animation: typing 3s steps(40) forwards, blink 0.8s step-end infinite;
  }
}


::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: transparent;
  backdrop-filter: blur(5px);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, rgb(205 9 98 / 50%), rgb(190 1 188 / 50%));
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg,#00c3ff, #0072ff);
}

::selection {
  color: rgb(205 9 98 / 50%);
}  