@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Roboto:wght@400;500;700&display=swap");

/* Global Styles */

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

body {
  font-family: "Noto Sans", sans-serif;
  background-color: white;
  color: #1a1a1a;
}

nav {
  padding: 0.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(26, 26, 26, 0.8);
  color: white;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  height: 75px;
}

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

.logo img {
  height: 25px;
}

main {
  padding-top: 60px;
  min-height: auto;
  display: block;
  align-items: initial;
}

.home-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.home-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
  animation-delay: 3s; /* Adjust this delay to match your other animations */
}

.home-logo-img {
  width: 250px; /* Adjust size as needed */
  height: auto;
  transition: transform 0.3s ease;
}

.home-logo-img:hover {
  transform: scale(1.1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content {
  display: flex;
  width: 100%;
  padding: 2rem;
  justify-content: center; /* Center the content horizontally */
  align-items: center; /* Center the content vertically */
  min-height: 100vh; /* Make it take full viewport height */
}

.building-section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 440px;
  text-align: center;
}

.building {
  max-width: 400px;
  height: 200px;
}

.belowSymbol {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgb(185, 181, 181);
  margin-top: 1rem;
  max-width: 800px;
  opacity: 0;
  animation: fadeIn 1.5s ease-out forwards;
  animation-delay: 4.2s; /* Adjust delay to 3 seconds */
}

.text-section {
  flex: 0 1 800px; /* Instead of flex: 1, give it a max-width */
  background-color: rgba(26, 26, 26, 0.2);
  padding: 2rem;
  letter-spacing: -1px;
  text-align: center; /* Center the text */
  margin: 0 auto; /* Center the section */
}
.animated-text {
  display: inline-block;
  letter-spacing: -4px; /* Adjust as needed */
  animation: colorChange 3s;
  animation-delay: 3.9s; /* Add a delay for the animated text */
}
@media screen and (max-width: 768px) {
  /* Adjust max-width as needed */
  .animated-text {
    font-size: 19px; /* Reduce the font size for mobile screens */
    letter-spacing: -2px; /* Optional: Adjust letter-spacing for better readability */
  }
}

@keyframes colorChange {
  0% {
    color: #ea4335;
  }
  25% {
    color: #4285f4;
  }
  50% {
    color: #34a853;
  }
  75% {
    color: #fbbc05;
  }
  100% {
    color: white;
  }
}

h1 {
  font-size: 3.5rem;
  color: #ea4335;
  margin-bottom: 2rem;
}

.description,
.events {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.social-icons {
  display: flex;
  gap: 1.5rem;
  margin-left: 45%;
}

.social-icons img {
  width: 24px;
  height: 24px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.social-icons img:hover {
  opacity: 1;
}

.team-section {
  min-height: 100vh;
  padding: 4rem 2rem;
  color: white;
}

.team-title {
  text-align: center;
  color: white;
  margin-bottom: 3rem;
  font-size: 4rem;
  font-weight: bold;
  padding-top: 2rem;
  opacity: 1; /* Make sure it's fully visible */
  position: relative;
  font-family: "Josefin Sans", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.team-title.visible {
  animation: fadeInUp 1s ease forwards;
}

.team-container {
  max-width: 1200px;
  height: 450px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  padding: 2rem;
}

.team-container:active {
  cursor: grabbing; /* Changes cursor while scrolling */
}

.card-track {
  display: flex;
  gap: 2rem;
  padding: 1rem;
  width: fit-content;
  transition: transform 0.1s ease-out; /* Smooth manual scrolling */
}

.card {
  flex: 0 0 300px;
  min-width: 300px;
  height: 390px;
  background: #bdbdbd;
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  user-select: none; /* Prevent text selection while scrolling */
  cursor: grab; /* Show grab cursor only on cards */
  transition: transform 0.3s ease;
}

.card:active {
  cursor: grabbing;
}

@media (max-width: 768px) {
  .home-logo-img {
    width: 120px; /* Smaller size for mobile */
  }
  .content {
    padding: 1rem;
  }

  .building-section {
    height: auto;
    padding: 2rem 1rem;
  }

  .belowSymbol {
    font-size: 1.8rem;
  }

  h1 {
    font-size: 2.5rem;
    text-align: center;
  }

  .text-section {
    padding: 1rem;
    width: 100%;
  }

  .social-icons {
    justify-content: center;
  }

  .team-section {
    padding: 2rem 1rem;
  }

  .team-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }

  .team-container {
    padding: 1rem;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card-track {
  display: flex;
  gap: 2rem;
  padding: 1rem;
  width: fit-content;
}

.card {
  flex: 0 0 300px;
  min-width: 300px;
  height: 390px;
  background: #bdbdbd;
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 1rem;
  object-fit: cover;
}

.card h3 {
  color: #1a1a1a;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.card p {
  color: #666;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-links img {
  width: 24px;
  height: 24px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.social-links img:hover {
  opacity: 1;
}

/* Add this to your media queries */
@media (max-width: 768px) {
  .card {
    flex: 0 0 250px;
  }

  .card img {
    width: 120px;
    height: 120px;
  }

  .card h3 {
    font-size: 1.2rem;
  }
}

.nav-content {
  padding: 2rem;
}

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

.nav-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

/* Google colors for hover effects */
.nav-links a:nth-child(1)::after {
  background: #4285f4;
} /* Blue */
.nav-links a:nth-child(2)::after {
  background: #db4437;
} /* Red */
.nav-links a:nth-child(3)::after {
  background: #f4b400;
} /* Yellow */
.nav-links a:nth-child(4)::after {
  background: #0f9d58;
} /* Green */
.nav-links a:nth-child(5)::after {
  background: #4285f4;
} /* Blue */
.nav-links a:nth-child(6)::after {
  background: #db4437;
} /* Red */

/* Hover effect line */
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  opacity: 0;
  transform: translateX(-50%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover states */
.nav-links a:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.nav-links a:hover::after {
  width: 100%;
  opacity: 1;
}

/* Active state for current section */
.nav-links a.active {
  color: #ffffff;
}

.nav-links a.active::after {
  width: 100%;
  opacity: 1;
}

/* Glow effect on hover */
.nav-links a:hover {
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

/* Add this JavaScript to handle active states */

html {
  scroll-behavior: smooth; /* Add smooth scrolling */
}

/* Add these new styles */
.see-all-btn {
  display: block;
  margin: 2rem auto 0;
  padding: 0.8rem 2rem;
  background: white;
  color: #4285f4;
  border: none;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.see-all-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  background: #f8f8f8;
}

.see-all-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.events-section {
  min-height: auto;
  padding-top: 4rem;
}

.events-section h1 {
  color: whitesmoke;
}

.events-title {
  text-align: center;
  font-size: 4rem;
  margin-bottom: 1.6rem;
  margin-top: 4rem;
  transform: translateY(50px);
  opacity: 0.9;
  font-family: "Josefin Sans", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

/* .events-title.visible {
  animation: fadeInUp 1s ease forwards;
} */

.events-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 0 2rem;
}

.event-card,
.project-card {
  background: rgba(40, 40, 40, 0.8);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.event-card::before,
.project-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(66, 133, 244, 0.15),
    rgba(219, 68, 55, 0.15),
    rgba(244, 180, 0, 0.15),
    rgba(15, 157, 88, 0.15)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.event-card:hover,
.project-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.event-card:hover::before,
.project-card:hover::before {
  opacity: 1;
}

.event-image {
  margin: -1.5rem -1.5rem 1rem -1.5rem;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
}

.event-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.event-card:hover .event-image img,
.project-card:hover .event-image img {
  transform: scale(1.05);
}

.event-title {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 1;
}

.event-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Add subtle border glow on hover using Google colors */
.event-card:hover,
.project-card:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(66, 133, 244, 0.3),
    0 0 0 4px rgba(219, 68, 55, 0.1);
}

@media (max-width: 1200px) {
  .events-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .event-card {
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  .events-container {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }

  .event-card {
    min-height: 250px;
  }

  .event-image {
    height: 180px;
  }
}

/* Section Background and Title Styling */
#projects {
  padding: 50px 20px;
  color: #333333;
  text-align: center;
}

.projects-section h1 {
  color: black;
}

.projects-title {
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 30px;
}

/* Projects Container and Card Styling */
.projects-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.project-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.project-card:hover {
  transform: translateY(-10px); /* Hover effect: lift up */
}

.project-image img {
  width: 100%;
  height: auto;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.project-title {
  font-size: 1.2em;
  font-weight: bold;
  margin: 15px 0;
}

.project-description {
  font-size: 1em;
  padding: 0 20px 20px;
  color: #666666;
}

/* Footer Section Styling */
.footer-section {
  background-color: #db4437; /* Red background color */
  padding: 40px 0;
  color: #ffffff; /* White text color */
  font-family: Arial, sans-serif;
  height: 150px;
}

.footer-content {
  display: flex;
  justify-content: space-between; /* Space out the sections evenly */
  align-items: center; /* Align items vertically in the center */
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: left; /* Reset text alignment for individual sections */
}

.footer-section {
  flex: 1; /* Allow sections to take equal space */
  padding: 0 10px; /* Add some spacing between sections */
}

.footer-logo {
  text-align: left;
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px; /* Space between social icons */
  margin-top: 10px;
  width: 100%;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  color: #e0e0e0; /* Slightly lighter color for note */
}

.google-colors {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-center {
  text-align: center; /* Centers all text in this section */
  display: flex;
  flex-direction: column; /* Aligns children (heading and buttons) vertically */
  align-items: center; /* Ensures everything is horizontally centered */
}

.footer-social {
  display: flex;
  justify-content: center; /* Horizontally centers the buttons */
  gap: 15px; /* Adds even spacing between social icons */
  margin-top: 10px; /* Space between the heading and buttons */
}

.footer-social a img {
  max-width: 32px; /* Adjust the size of social icons (if needed) */
  height: auto;
}

/* Mobile Specific Styles */
.footer-section--mobile {
  display: none; /* Initially hide social links on larger screens */
}

/* Media Queries for Mobile Screens */
@media (min-width: 768px) {
  .footer-section {
    /* Remove padding on smaller screens */
    padding: 20px 0;
  }

  .footer-section--mobile {
    display: flex; /* Show social links on smaller screens */
    justify-content: center; /* Center social links horizontally */
    margin-top: 20px; /* Add spacing above social links */
  }
}

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

/* Canvas for the Particle Animation */
/* Canvas Background */
#particleCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #1a1a1a;
}

/* Main Content */
.content {
  position: relative;
  color: #ffffff;
  padding: 50px;
  text-align: center;
  z-index: 1;
}

h2 {
  color: white;
}

/* Add this breakpoint for tablets */
@media (min-width: 769px) and (max-width: 1024px) {
  .events-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Add these styles for the projects title */
#Projects .events-title {
  text-align: center;
  font-size: 4rem;
  margin-bottom: 5rem;
  transform: translateY(50px);

  transition: all 1s ease;
}

#Projects .events-title.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Footer Styles */
.footer {
  background-color: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  color: rgb(255, 255, 255);
  padding: 4rem 2rem 1rem;
  position: relative;
  z-index: 1;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  height: 40px;
}

.footer-section {
  background-color: #1a1a1a;
}

.footer-section h3 {
  color: #3a86ff;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-section p {
  color: #999;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  /* Adjust max-width as needed */
  .footer-section p {
    font-size: 15px; /* Reduce the font size for mobile screens */
    line-height: 1.4; /* Optional: Adjust line-height for better spacing */
  }
}

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

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #999;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #4285f4;
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #4285f4;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
  padding-left: 125px;
}

.footer-social img {
  width: 24px;
  height: 24px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.social-hover:hover img {
  opacity: 1;
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.google-colors {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0;
}

.google-colors span {
  width: 50px;
  height: 2px;
}

.google-colors span:nth-child(1) {
  background: #4285f4;
}
.google-colors span:nth-child(2) {
  background: #db4437;
}
.google-colors span:nth-child(3) {
  background: #f4b400;
}
.google-colors span:nth-child(4) {
  background: #0f9d58;
}

.footer-bottom p {
  color: #666;
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .google-colors span {
    width: 25px;
  }
}

/* Hamburger Menu Styles */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  z-index: 1000;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 2px 0;
  transition: all 0.3s ease;
}

/* Active state for hamburger */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu styles */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 75px; /* Match your nav height */
    right: -100%;
    width: 100%;
    height: calc(100vh - 75px);
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(8px);
    transition: 0.3s ease-in-out;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 2rem;
  }

  .nav-links a {
    font-size: 1.2rem;
  }
}

/* responsivity  */
/* Base styles update */
html,
body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
  /* Container width fixes */
  .content,
  .events-container,
  .team-container,
  .footer-content,
  .text-section,
  #contact-form {
    width: 100%;
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
  }

  /* Text content fixes */
  .description,
  .events,
  .belowSymbol {
    width: 100%;
    padding: 0;
    word-wrap: break-word;
    font-family: "Noto Sans", serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
    font-size: 16px;
  }

  /* Social icons container */
  .social-icons {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }

  /* Card fixes */
  .event-card,
  .project-card {
    width: 100%;
    margin: 0;
  }

  /* Image container fixes */
  .event-image {
    width: 100%;
    overflow: hidden;
  }

  .event-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  /* Team section fixes */
  .track {
    padding: 1rem 0;
    width: 100%;
    overflow-x: hidden;
  }

  /* Contact form fixes */
  #contact-form {
    width: 100%;
  }

  .container .btn {
    transform: scale(0.9);
    margin: 0 auto;
  }

  /* Footer adjustments */
  .footer {
    width: 100%;
  }

  .footer-social {
    padding-left: 0;
    justify-content: center;
  }

  /* Navigation menu fixes */
  .nav-menu.active {
    width: 100vw;
    left: 0;
  }
}

/* Additional fixes for very small devices */
@media (max-width: 360px) {
  .building-section {
    padding: 0;
  }

  .building {
    width: 80%;
    max-width: 200px;
  }

  .text-section {
    padding: 1rem 0.5rem;
  }
}

/* Team section responsive fixes */
@media (max-width: 768px) {
  .team-container {
    overflow: visible;
    padding: 0.5rem;
    height: auto;
  }

  .card-track {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    padding: 1rem;
    gap: 1.5rem;
  }

  .card-track::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Opera */
  }

  .team-card {
    flex: 0 0 80%;
    scroll-snap-align: center;
  }
}

/* Additional fixes for very small devices */
@media (max-width: 480px) {
  .team-container {
    padding: 0.3rem;
  }

  .card-track {
    gap: 0.6rem;
    padding: 0.3rem;
  }

  .card {
    height: 200px;
    padding: 0.4rem;
  }

  .card img {
    width: 80px;
    height: 80px;
  }

  .card h3 {
    font-size: 0.85rem;
  }

  .card p {
    font-size: 0.75rem;
  }
}

/* Add these new animation keyframes */
@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Update the building-section and building class */
.building-section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 440px;
  text-align: center;
}

.building {
  max-width: 400px;
  height: 200px;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Adjust animation for mobile */
@media (max-width: 768px) {
  .sym {
    animation-duration: 0.8s; /* Slightly faster on mobile */
  }

  .belowSymbol {
    animation-delay: 3.8s;
  }
}

/* Container for cards */
.cardd-container {
  display: flex; /* Use flexbox for horizontal layout */
  gap: 50px; /* Optional: adjust the gap between cards */
  flex-wrap: wrap; /* Allows the cards to wrap onto the next line if space is insufficient */
  justify-content: center;
}

/* Card styles */
.cardd {
  position: relative;
  width: 250px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  font-weight: bold;
  border-radius: 15px;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.5s;
}

.cardd::before,
.cardd::after {
  position: absolute;
  content: "";
  width: 20%;
  height: 20%;
  transition: all 0.5s;
  z-index: 1;
}

.cardd::before {
  top: 0;
  right: 0;
  border-radius: 0 15px 0 100%;
}

.cardd::after {
  bottom: 0;
  left: 0;
  border-radius: 0 100% 0 15px;
}

/* Hover effects for expanding background */
.cardd:hover::before,
.cardd:hover::after {
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

.cardd:hover {
  color: white; /* Change text color on hover */
}

/* Container for hover text */
.cardd .hover-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-size: 14px;
  color: white;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.7); /* Slight overlay for readability */
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: 2;
  border-radius: 15px;
  font-family: "Montserrat", serif;
  font-size: large;
  font-weight: 520;
  font-style: normal;
}

/* Show hover text on hover */
.cardd:hover .hover-text {
  opacity: 1;
}

/* Unique background colors for each card */
.odd-card-red {
  background-color: rgba(26, 26, 26, 0.5);
  color: #db4437;
  border: #db4437 solid;
}

.odd-card-red::before,
.odd-card-red::after {
  color: white;
  background-color: #db4437;
}

.odd-card-blue {
  color: #4285f4;

  background-color: rgba(26, 26, 26, 0.5);

  border: #4285f4 solid;
}

.odd-card-blue::before,
.odd-card-blue::after {
  background-color: #4285f4;
}

.odd-card-green {
  background-color: rgba(26, 26, 26, 0.5);
  border: #34a853 solid;
  color: #34a853;
}

.odd-card-green::before,
.odd-card-green::after {
  background-color: #34a853;
}

.odd-card-yellow {
  background-color: rgba(26, 26, 26, 0.5);

  border: #fbbc05 solid;
  color: #fbbc05;
}

.odd-card-yellow::before,
.odd-card-yellow::after {
  background-color: #fbbc05;
}

@media (max-width: 600px) {
  .cards-container {
    flex-direction: column; /* Stack cards vertically */
    align-items: center; /* Center cards */
  }

  .card {
    width: 100%; /* Make each card take the full width on small screens */
    max-width: 100%; /* Ensure cards take full width */
    margin-bottom: 20px; /* Add space between stacked cards */
  }
}

/* Ensure paragraph and button are treated as blocks inside hover-text */
.cardd .hover-text {
  display: flex;
  flex-direction: column; /* Stack children vertically */
  align-items: center; /* Align items in the center */
  gap: 10px; /* Add spacing between the paragraph and the button */
}

/* General Button Styling */
.cardd .hover-text button {
  padding: 10px 15px;
  font-size: 14px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  color: white;
  transition: background-color 0.3s ease;
}

.cardd .hover-text button a {
  text-decoration: none;
  color: inherit; /* Match the button text color */
}

/* Red Button */
.red-button {
  background-color: #db4437; /* Red */
}

.red-button:hover {
  background-color: #b03629; /* Darker Red */
}

/* Blue Button */
.blue-button {
  background-color: #4285f4; /* Blue */
}

.blue-button:hover {
  background-color: #3367c1; /* Darker Blue */
}

/* Green Button */
.green-button {
  background-color: #34a853; /* Green */
}

.green-button:hover {
  background-color: #27853c; /* Darker Green */
}

/* Yellow Button */
.yellow-button {
  background-color: #fbbc05; /* Yellow */
}

.yellow-button:hover {
  background-color: #e5a800; /* Darker Yellow */
}

/* Add an underline effect */
.team-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(
    to right,
    #4285f4,
    #db4437,
    #f4b400,
    #0f9d58
  ); /* Google colors */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .team-title {
    font-size: 3rem;
    margin-bottom: 2rem;
  }
}

/* Animation styles for events and projects sections */
.events-title {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.events-title.reveal {
  opacity: 1;
  /* transform: translateY(0); */
}

.event-card,
.project-card {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-card.reveal,
.project-card.reveal {
  opacity: 1;
  /* transform: translateY(0); */
}

/* Stagger effect for cards */
.events-container .event-card:nth-child(1),
.events-container .project-card:nth-child(1) {
  transition-delay: 0.1s;
}

.events-container .event-card:nth-child(2),
.events-container .project-card:nth-child(2) {
  transition-delay: 0.3s;
}

.events-container .event-card:nth-child(3),
.events-container .project-card:nth-child(3) {
  transition-delay: 0.5s;
}

.events-container .event-card:nth-child(4),
.events-container .project-card:nth-child(4) {
  transition-delay: 0.7s;
}

.events-container .event-card:nth-child(5),
.events-container .project-card:nth-child(5) {
  transition-delay: 0.9s;
}

.events-container .event-card:nth-child(6),
.events-container .project-card:nth-child(6) {
  transition-delay: 1.1s;
}

/* Update button styles */
.button-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  padding: 1rem;
}

.see-all-btn {
  background: #4285f4;
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.see-all-btn:hover {
  background: #3367d6;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Update team container styles if needed */
.team-container {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  padding: 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .button-container {
    margin-top: 1.5rem;
  }

  .see-all-btn {
    padding: 0.7rem 1.8rem;
    font-size: 0.9rem;
  }
}

/* Preloader styles */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1f1f1f;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
}

.preloader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.preloader video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%); /* Centers the video */
}

/* Hide scrollbar during preload */
body.preload {
  overflow: hidden;
}

/* Contact section styles */
.contact-section {
  background-color: transparent;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  padding: 4rem 2rem;
  color: white;
}

.contact-container {
  background: rgba(40, 40, 40, 0.8);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 800px;
  margin: 0 auto;
}

.contact-section h1 {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.contact-desc {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}
.department-email {
  color: yellow;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  color: #ffffff;
  display: block;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: white;
}

.submit-btn {
  background: #4285f4;
  color: white;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .contact-container {
    padding: 1.5rem;
    margin: 0 1rem;
  }
}

.alert-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  padding: 20px;
  width: 70%;
  margin: 0 auto;
  text-align: center;
  background-color: #1a1a1a;
  opacity: 0.8;
  margin-bottom: 20px;
  position: relative;
}

/* Base alert card styles */
.alert-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center; /* This line centers content horizontally */
  padding: 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100px;
  overflow: hidden;
  background-color: inherit;
  z-index: 1;
  transform-origin: center;
  margin: 0;
}

.alert-card .icon-text {
  display: flex;
  align-items: center;
  justify-content: center; /* Centers the icon and text horizontally */
  gap: 1rem;
  position: relative;
  z-index: 2;
  font-family: "Poppins", serif;
  font-weight: 600;
  font-style: normal;
}

.alert-card .icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.alert-card .text {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  line-height: 1.2; /* This line ensures the line height remains constant */
}

/* Enhanced hover effect */
.alert-card:hover {
  transform: scale(1.15);
  z-index: 100;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* Card type specific styles with hover states */
.alert-card.success {
  background-color: #4b3801;
  border: 2px solid #fbbc05;
  color: whitesmoke;
}

.alert-card.success:hover {
  background-color: #fbbc05;
  border-color: #e0aa00;
}

.alert-card.info {
  background-color: rgb(20, 40, 73);
  border: 2px solid #007bff;
  color: whitesmoke;
}

.alert-card.info:hover {
  background-color: #4285f4;
  border-color: #0056b3;
}

.alert-card.warning {
  background-color: rgb(16, 50, 25);
  border: 2px solid #34a853;
  color: whitesmoke;
}

.alert-card.warning:hover {
  background-color: #34a853;
  border-color: #2d8045;
}

.alert-card.error {
  background-color: rgb(65, 20, 16);
  border: 2px solid #dc3545;
  color: whitesmoke;
}

.alert-card.error:hover {
  background-color: #db4437;
  border-color: #bd2130;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .alert-cards {
    grid-template-columns: 1fr;
    width: 90%;
    gap: 0.3rem;
  }

  .alert-card:hover {
    transform: scale(1.1);
    /* font-size: 2px; */
    height: fit-content;
  }
}

/*IMPORTANT Mobile Responsive Styles for team section*/
@media screen and (max-width: 480px) {
  .card {
    flex: 0 0 220px !important;
    min-width: 220px !important;
    height: 230px !important;
  }

  .social-icons {
    gap: 0.8rem !important;
    margin-left: 30% !important;
  }

  .social-icons img {
    width: 18px !important;
    height: 18px !important;
  }

  .team-container {
    height: 280px !important;
  }

  .team-section {
    min-height: auto !important;
    padding: 2rem 1rem !important;
  }

  /* Reduce social icons size in team cards */
  .social-links img {
    width: 20px !important;
    height: 20px !important;
  }
}

/* From Uiverse.io by 0800Gonza */
.unique-card {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding: 25px;
}

/* For all social containers */
.unique-social-container {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: rgb(44, 44, 44);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition-duration: 1s;
}

/* WhatsApp container */
.whatsapp-container:hover {
  background-color: #128c7e;
  transition-duration: 0.3s;
}

/* LinkedIn container */
.linkedin-container:hover {
  background-color: #0072b1;
  transition-duration: 0.3s;
}

/* Instagram container */
.instagram-container:hover {
  background-color: #d62976;
  transition-duration: 0.3s;
}

/* Active state (when clicked) */
.unique-social-container:active {
  transform: scale(0.9);
  transition-duration: 0.3s;
}

/* SVG styling */
.unique-social-svg {
  width: 17px;
}

.unique-social-svg path {
  fill: rgb(255, 255, 255);
}

/* Hover effect for SVGs */
.unique-social-container:hover .unique-social-svg {
  animation: slide-in-top 0.3s both;
}

/* Slide-in animation for SVG */
@keyframes slide-in-top {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* For the logo */
.logo a:first-child {
  display: flex;
  align-items: center;
  gap: 10px; /* Space between elements */
}

/* Add line between logos */
.logo a:first-child {
  position: relative;
}

.logo a:first-child img:first-child {
  margin-right: 20px; /* Space for the line */
}

/* The actual line */
.logo-divider {
  width: 1.5px;
  height: 25px;
  background-color: white;
  position: absolute;
  left: 49px; /* Adjust this value to position the line */
  top: 50%;
  transform: translateY(-50%);
}

.gdgLOGO {
  margin-left: -10px;
}

.clgLOGO {
  height: 35px !important; /* Increased from default size */
}

@media (max-width: 768px) {
  .event-card,
  .project-card {
    width: 100%; /* Full width on mobile */
    margin: 1rem 0; /* Add vertical spacing between cards */
  }

  .event-image {
    margin: -1.5rem -1.5rem 1rem -1.5rem;
    width: calc(100% + 3rem); /* Compensate for the negative margins */
  }

  .event-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
  }
}

/* For even smaller screens */
@media (max-width: 480px) {
  .event-card,
  .project-card {
    padding: 1.25rem; /* Slightly reduce padding */
  }

  .event-image {
    margin: -1.25rem -1.25rem 1rem -1.25rem;
    width: calc(100% + 2.5rem);
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0.5rem 1rem;
  }

  .logo span {
    font-size: 0.9rem;
    max-width: 200px;
  }

  .clgLOGO {
    display: none !important; /* Hide college logo */
  }

  .gdgLOGO {
    height: 15px !important;
    margin-left: 0 !important; /* Remove margin since no college logo */
  }

  .logo-divider {
    display: none !important; /* Hide divider */
  }

  .nav-links a {
    font-size: 0.9rem;
    padding: 0.3rem 0;
  }
}

/* For even smaller screens */
@media (max-width: 480px) {
  .logo span {
    font-size: 0.8rem;
    max-width: 180px;
  }
}

@media (max-width: 768px) {
  .cardd-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 15px;
    padding-left: 32px;
    width: 90%;
  }

  .cardd {
    width: 100%;
    height: 225px;
    margin: 0;
    font-size: 18px;
  }

  .cardd .hover-text {
    padding: 12px;
    font-size: 14px;
  }

  .cardd .hover-text button {
    padding: 6px 12px;
    font-size: 12px;
  }
}

/* For very small screens */
@media (max-width: 480px) {
  .cardd-container {
    gap: 10px;
    padding: 10px;
    padding-left: 32px;
    width: 95%;
  }

  .cardd {
    height: 225px; /* Increased from 150px */
    font-size: 16px;
  }

  .cardd .hover-text {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .image-gallery-wrapper {
    width: 100%;
    padding: 10px;
  }

  .image-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .image-gallery img {
    width: 90%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
  }

  /* Remove horizontal scrolling */
  .image-gallery-wrapper {
    overflow-x: hidden;
  }

  /* Ensure proper spacing */
  .event-details-container {
    padding: 15px;
  }
}

/* For smaller screens */
@media (max-width: 480px) {
  .image-gallery img {
    width: 95%;
    max-height: 220px;
  }
}

/* Custom scrollbar for modern browsers */
::-webkit-scrollbar {
  width: 8px; /* Width of the scrollbar */
}

::-webkit-scrollbar-track {
  background: #1f1f1f; /* Dark background for the scroll space */
  border-radius: 10px; /* Rounded corners for the track (scroll space) */
}

::-webkit-scrollbar-thumb {
  background-color: #c000009c; /* Initially matching the track color */
  border-radius: 50px; /* Smooth and fully rounded corners for the thumb */
  border: 2px solid #1f1f1f; /* Border to blend with the track */
  /* transition: background-color 0.3s ease; Smooth transition for color changes */
}
/*
.styled-button {
    position: relative;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    color: #ffffff;
    background: linear-gradient(to bottom, #171717, #242424);
    border-radius: 9999px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 1), 0 10px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #292929;
    width: fit-content;
    height: fit-content;
  }
  
  .styled-button::before {
    content: "";
    position: absolute;
    top: -2px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    background: linear-gradient(to bottom, #292929, #000000);
    z-index: -1;
    border-radius: 9999px;
    transition: all 0.2s ease;
    opacity: 1;
  }
  
  .styled-button:active {
    transform: translateY(2px);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 1), 0 5px 10px rgba(0, 0, 0, 0.4);
  }
  
  .styled-button .inner-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #171717, #242424);
    width: 40px;
    height: 40px;
    margin-left: 10px;
    border-radius: 50%;
    box-shadow: 0 0 1px rgba(0, 0, 0, 1);
    border: 1px solid #252525;
    transition: all 0.2s ease;
  }
  
  .styled-button .inner-button::before {
    content: "";
    position: absolute;
    top: -2px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    background: linear-gradient(to bottom, #292929, #000000);
    z-index: -1;
    border-radius: 9999px;
    transition: all 0.2s ease;
    opacity: 1;
  }
  .styled-button .inner-button .icon {
    filter: drop-shadow(0 10px 20px rgba(26, 25, 25, 0.9))
      drop-shadow(0 0 4px rgba(0, 0, 0, 1));
    transition: all 0.4s ease-in-out;
  }
  .styled-button .inner-button .icon:hover {
    filter: drop-shadow(0 10px 20px rgba(50, 50, 50, 1))
      drop-shadow(0 0 20px rgba(2, 2, 2, 1));
    transform: rotate(-35deg);
  }
   */
body {
  user-select: none; /* Prevent text selection */
  -webkit-user-select: none; /* For Safari */
  -ms-user-select: none; /* For Internet Explorer */
}

/* Optional: Disable dragging images */
img {
  pointer-events: none; /* Prevent dragging */
}
.notify-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 140px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(to left, rgb(173, 154, 255), rgb(149, 110, 255));
  border-radius: 30px;
  color: rgb(255, 255, 255);
  font-weight: 600;
  border: none;
  position: fixed;
  cursor: pointer;
  transition-duration: 0.2s;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.116);
  display: none;
  z-index: 1000;
}

.notify-bell {
  width: 13px;
}

.notify-bell path {
  fill: rgb(255, 255, 255);
}

.notify-button:hover {
  background: linear-gradient(to left, rgb(154, 131, 255), rgb(135, 91, 255));
}

.notify-button:active {
  transform: scale(0.97);
  transition-duration: 0.2s;
}

.notify-button:hover .notify-bell {
  animation: notifyBellRing 0.9s both;
}

@keyframes notifyBellRing {
  0%,
  100% {
    transform-origin: top;
  }
  15% {
    transform: rotateZ(10deg);
  }
  30% {
    transform: rotateZ(-10deg);
  }
  45% {
    transform: rotateZ(5deg);
  }
  60% {
    transform: rotateZ(-5deg);
  }
  75% {
    transform: rotateZ(2deg);
  }
}

.notify-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 50%;
  background: white;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  padding: 20px;
  border-radius: 10px;
  z-index: 1000;
}

.notify-close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
}
.notify-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  max-width: 500px;
  height: auto;
  max-height: 70%;
  background: white;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-radius: 12px;
  z-index: 1000;
  text-align: center;
  overflow-y: auto;
  border: 2px solid rgba(149, 110, 255, 0.7);
  animation: fadeInn 0.3s ease-in-out;
}

/* @keyframes fadeInn {
  from {
    opacity: 0;
    transform: translate(-50%, -55%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
} */
.notify-close {
  position: absolute;
  top: 12px;
  right: 15px;
  cursor: pointer;
  font-size: 22px;
  font-weight: bold;
  color: rgb(135, 91, 255);
  transition: 0.2s ease-in-out;
}

.notify-close:hover {
  color: red;
  transform: scale(1.2);
}

.notify-modal h3 {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  color: rgb(135, 91, 255);
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(149, 110, 255, 0.5);
  padding-bottom: 10px;
}

.notify-modal p {
  font-size: 16px;
  line-height: 1.5;
  color: #444;
  margin-bottom: 15px;
  padding: 0 10px;
}

/* Responsive Styling for Mobile */
@media (max-width: 768px) {
  .notify-modal {
    width: 90%;
    max-width: 95%;
    padding: 15px;
    max-height: 80%;
  }

  .notify-modal h3 {
    font-size: 20px;
  }

  .notify-modal p {
    font-size: 14px;
  }

  .notify-close {
    font-size: 18px;
    top: 10px;
    right: 12px;
  }

  .notify-image {
    max-height: 200px;
  }
}
/* Wrapper for centering the button */
.popup-button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 20px;
}

/* Button styling */
.custom-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #f77737);
  border-radius: 50%;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-social-btn:hover {
  transform: scale(1.1);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
}

/* Instagram icon */
.social-icon {
  width: 28px;
  height: 28px;
  fill: white;
}

/* Responsive adjustments for mobile screens */
@media (max-width: 768px) {
  .custom-social-btn {
    width: 50px;
    height: 50px;
  }

  .social-icon {
    width: 24px;
    height: 24px;
  }
}
