* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* marquee */
.marquee-container {
  overflow: hidden;
  background-color: #244cab;
  color: #00ffcc;
  padding: 10px 0;
  border-radius: 8px;
  width: 100%;
}

.marquee-text {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: marquee 15s linear infinite;
  font-weight: 500;
  font-size: 20px;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
/* end marquee */


/* Navbar background */
.custom-navbar {
    background: linear-gradient(90deg, #0f2027, #203a43, #2c5364);
}

/* Logo */
.logo-img {
    height: 45px;
    border-radius: 50%;
}

/* Nav links */
.custom-navbar .nav-link {
    color: #f1f1f1;
    font-weight: 500;
    margin: 0 6px;
    position: relative;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
    color: #00ffcc;
}

/* Underline hover animation */
.custom-navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #00ffcc;
    transition: width 0.3s ease;
}

.custom-navbar .nav-link:hover::after {
    width: 100%;
}

/* Dropdown */
.dropdown-menu {
    border-radius: 12px;
}

/* Search button */
.btn-pretty {
    background: #00ffcc;
    color: #000;
    font-weight: 600;
    border: none;
}

.btn-pretty:hover {
    background: #00ccaa;
}

/* White toggler icon */
.navbar-toggler-icon {
    filter: invert(1);
}



/* Footer */
.footer {
  font-family: Arial, sans-serif;
}

.footer h5 {
  font-weight: bold;
  margin-bottom: 15px;
}

.footer p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-link {
  color: #00ffcc;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
  margin-bottom: 6px;
}

.footer-link:hover {
  color: #ffffff;
  transform: translateY(-3px);
}

.social-icons a {
  font-size: 18px;
  margin-right: 15px;
}

.social-icons a:hover {
  color: #00ccaa;
  transform: scale(1.2);
  transition: all 0.3s;
}

hr.bg-light {
  opacity: 0.2;
}

/* end footer  */

/* About page css */

/* about er jonno  */
/* About Section */
.about-section {
  padding: 80px 0;
  background: #f4f9ff;
  color: #333;
  font-family: 'Segoe UI', sans-serif;
}

.about-title {
  font-size: 42px;
  font-weight: 900;
  color: #0d6efd;
}

.about-subtitle {
  font-size: 18px;
  color: #00c6ff;
  font-weight: 500;
}

.about-card {
  background: #ffffff;
  border-radius: 25px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  line-height: 1.8;
  color: #555;
  transition: transform 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
}

.about-heading {
  font-size: 28px;
  font-weight: 800;
  color: #0d6efd;
  margin-bottom: 20px;
}

.highlight-year {
  color: #00c6ff;
  font-weight: 700;
}

/* shesh */

/* Speech Section */
.speech-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.section-title {
  font-size: 40px;
  font-weight: 900;
  color: #0d6efd;
}

/* Speech Card */
.speech-card {
  display: flex;
  align-items: flex-start;
  background: #ffffff;
  border-radius: 25px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  padding: 30px;
  transition: transform 0.3s ease;
}

.speech-card:hover {
  transform: translateY(-8px);
}

/* Profile Image */
.speech-img {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 25px;
  border: 4px solid #00ffcc;
  background: linear-gradient(135deg, #0d6efd, #00c6ff);
}

.speech-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
}

/* Content */
.speech-content {
  flex: 1;
}

.speech-name {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 5px;
  color: #222;
}

.speech-role {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.speech-text {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .speech-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .speech-img {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

/* end speech  */



/* community member  */

.community-section {
  padding: 90px 0;
  background: #f8f9fa;
}

.community-title {
  font-size: 44px;
  font-weight: 900;
}

.community-title span {
  background: linear-gradient(90deg, #00ffcc, #00c6ff);
  -webkit-background-clip: text;
  background-clip: text; /* standard property for compatibility */
  -webkit-text-fill-color: transparent;
}

/* Social Card */
.social-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 35px 25px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
  transition: all 0.35s ease;
}

.social-card:hover {
  transform: translateY(-14px);
}

/* Profile image */
.profile-img {
  width: 140px;
  height: 140px;
  margin: auto;
  border-radius: 50%;
  padding: 5px;
  background: linear-gradient(135deg, #00ffcc, #00c6ff);
}

.profile-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
}

/* Text */
.member-name {
  margin-top: 18px;
  font-weight: 800;
  font-size: 18px;
}

.member-role {
  font-size: 14px;
  color: #666;
}

/* Social icons */
.social-links {
  margin-top: 15px;
}

.social-links a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 6px;
  background: #f1f1f1;
  color: #0d6efd;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: linear-gradient(135deg, #00ffcc, #00c6ff);
  color: #000;
  transform: translateY(-4px);
}

/* end  */

/* Join Community Section */

.join-community {
  padding: 90px 0;
  background: linear-gradient(90deg, #0f2027, #203a43, #2c5364);
  color: #ffffff;
}

.join-title {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 15px;
}

.join-text {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.8;
  color: #d1fdf3;
}

.btn-join {
  background: #00ffcc;
  color: #000;
  font-weight: 700;
  padding: 14px 35px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-join:hover {
  background: #00c6ff;
  color: #000;
  transform: translateY(-4px);
}

/* join our community css */

.join-form-section {
  padding: 90px 0;
  background: #f8f9fa;
}

.join-form-card {
  background: #ffffff;
  padding: 45px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.join-form-title {
  font-size: 36px;
  font-weight: 900;
  text-align: center;
  color: #0d6efd;
}

.join-form-text {
  text-align: center;
  margin-bottom: 30px;
  color: #555;
}

.btn-join-form {
  background: linear-gradient(90deg, #00ffcc, #00c6ff);
  color: #000;
  font-weight: 700;
  padding: 14px 40px;
  border-radius: 30px;
  border: none;
}

.btn-join-form:hover {
  transform: translateY(-4px);
}




































































/* Google Map location  */
.map-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.map-title {
  font-size: 32px;
  font-weight: 800;
  color: #0d6efd;
  margin-bottom: 15px;
}

.map-address {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  background: #ffffff;
  padding: 22px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.map-responsive {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  
}

.google-map {
    border: 0;
}

/* end of google map location  */






















