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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: #c6edc3; /* Light Pink Background */
    text-align: center;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background-color:#c6edc3; ;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}
.image img{
	width:200px;
	height:200px;
	border-radius:50%;
	display:block;
	margin-left:auto;
	margin-right:auto;
	
}
/* Floating Letters Background */
.floating-letters {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.letter {
  position: absolute;
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: rgba(255, 255, 255); /* Brighter but still soft */
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  animation: float 12s infinite ease-in-out;
  animation-delay: calc(-1.5s * var(--i));
}
.letter:nth-child(1) { top: 5%; left: 10%; --i: 1; }
.letter:nth-child(2) { top: 20%; left: 70%; --i: 2; }
.letter:nth-child(3) { top: 35%; left: 25%; --i: 3; }
.letter:nth-child(4) { top: 45%; left: 85%; --i: 4; }
.letter:nth-child(5) { top: 10%; left: 50%; --i: 5; }
.letter:nth-child(6) { top: 55%; left: 5%; --i: 6; }
.letter:nth-child(7) { top: 70%; left: 30%; --i: 7; }
.letter:nth-child(8) { top: 65%; left: 75%; --i: 8; }
.letter:nth-child(9) { top: 80%; left: 15%; --i: 9; }
.letter:nth-child(10) { top: 25%; left: 60%; --i: 10; }
.letter:nth-child(11) { top: 90%; left: 40%; --i: 11; }
.letter:nth-child(12) { top: 15%; left: 80%; --i: 12; }
.letter:nth-child(13) { top: 30%; left: 10%; --i: 13; }
.letter:nth-child(14) { top: 60%; left: 45%; --i: 14; }
.letter:nth-child(15) { top: 75%; left: 90%; --i: 15; }
.letter:nth-child(16) { top: 40%; left: 20%; --i: 16; }
.letter:nth-child(17) { top: 85%; left: 65%; --i: 17; }
.letter:nth-child(18) { top: 5%; left: 35%; --i: 18; }
.letter:nth-child(19) { top: 50%; left: 55%; --i: 19; }
.letter:nth-child(20) { top: 95%; left: 25%; --i: 20; }
.letter:nth-child(21) { top: 33%; left: 77%; --i: 21; }
.letter:nth-child(22) { top: 22%; left: 12%; --i: 22; }
.letter:nth-child(23) { top: 73%; left: 42%; --i: 23; }
.letter:nth-child(24) { top: 60%; left: 15%; --i: 24; }
@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.2;
  }
  50% {
    transform: translateY(-40px) rotate(15deg);
    opacity: 0.35;
  }
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.2;
  }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    z-index: 1000;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo, .college-logo {
    width: 5 0px;
    height: 50px;
    border-radius: 50%;
}

.nav-brand span {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-item {
    text-decoration: none;
    color: black;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav-item:hover {
    color: blue;
}
img{
 	width:50px;
	height:50px;
	border-radius:50%;
}
/* Dropdown Styles */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  cursor: pointer;
  padding: 10px;
  color: #000;
  text-decoration: none;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 120px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 1;
  border-radius: 5px;
}

.dropdown-item {
  padding: 10px;
  display: block;
  text-decoration: none;
  color: #000;
}

.dropdown-item:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* Hero Section */
.letter-drop span {
  display: inline-block;
  opacity: 0;
  transform: translateY(-50px);
  animation: dropIn 0.5s forwards;
}

.letter-drop span:nth-child(1) { animation-delay: 0.05s; }
.letter-drop span:nth-child(2) { animation-delay: 0.1s; }
.letter-drop span:nth-child(3) { animation-delay: 0.15s; }
.letter-drop span:nth-child(4) { animation-delay: 0.2s; }
.letter-drop span:nth-child(5) { animation-delay: 0.25s; }
.letter-drop span:nth-child(6) { animation-delay: 0.3s; }
.letter-drop span:nth-child(7) { animation-delay: 0.35s; }
.letter-drop span:nth-child(8) { animation-delay: 0.4s; }
.letter-drop span:nth-child(9) { animation-delay: 0.45s; }
.letter-drop span:nth-child(10) { animation-delay: 0.5s; }
.letter-drop span:nth-child(11) { animation-delay: 0.55s; }
.letter-drop span:nth-child(12) { animation-delay: 0.6s; }
.letter-drop span:nth-child(13) { animation-delay: 0.65s; }
.letter-drop span:nth-child(14) { animation-delay: 0.7s; }
.letter-drop span:nth-child(15) { animation-delay: 0.75s; }
.letter-drop span:nth-child(16) { animation-delay: 0.8s; }
.letter-drop span:nth-child(17) { animation-delay: 0.85s; }
.letter-drop span:nth-child(18) { animation-delay: 0.9s; }
.letter-drop span:nth-child(19) { animation-delay: 0.95s; }

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


.hero {
    margin-top: 100px;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 36px;
    font-weight: bold;
    color: black;
}

.hero p {
    font-size: 18px;
    color: black;
}

/* Button */
.location-btn {
    background:#e4fde1;
    color: black;
    font-size: 16px;
    border: none;
    padding: 12px 20px;
    border-radius: 20px;
    cursor: pointer;
    margin-top: 20px;
}

.location-btn:hover {
    background:#e4fde1;
}
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ffcc00;
}
.team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 20px;
}

.member-card {
  background-color: #f4f4f4;
  border-radius: 15px;
  padding: 20px;
  width: 350px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

.member-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.member-card h3 {
  margin-bottom: 5px;
  font-size: 18px;
  color: #333;
}

.member-card p {
  font-size: 14px;
  color: #555;
}

section {
    padding: 60px 20px;
    text-align: center;
}

section:nth-child(even) {
    background-color: #f7f7f7;
}

h1, h2 {
    margin-bottom: 20px;
   }

p, li {
    font-size: 18px;
    line-height: 1.8;
}

ul, ol {
    text-align: left;
    max-width: 800px;
    margin: auto;
}

img {
    max-width: 90%;
    height: auto;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

footer {
  background-color: #121212;
  color: #fff;
  padding: 40px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1;
  min-width: 200px;
}

.footer-section h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #f2f2f2;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer-section ul li a:hover {
  color: #ffcc00;
}

.social-icons a img {
  width: 24px;
  margin-right: 10px;
  transition: transform 0.3s;
}

.social-icons a:hover img {
  transform: scale(1.1);
}


.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #aaa;
}
/* Responsive Design */
/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
    flex-direction: row;
    align-items: flex-start;
    padding: 10px;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
  }

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

  .content-text {
    max-width: 100%;
    margin-left: 0;
  }

  .images img {
    width: 50%;
    height: 50px;
    max-width: 300px;
  }

  .team-container {
    flex-direction: column;
    align-items: center;
  }

  .member-card {
    width: 90%;
    max-width: 300px;
    margin-bottom: 20px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-section {
    width: 100%;
    max-width: 300px;
    margin-bottom: 20px;
  }

  .hero h1 {
    font-size: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero img {
    width: 80%;
    height: auto;
  }
}

.shloka-scroll {
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  background-color: #c6edc3;
  padding: 10px 0;
  font-size: 1.5rem;
  color: #4a2f0b;
  text-align: center;
}

.shloka-scroll p {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 15s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
