/* Ensure basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Header Styling */
.site-header {
  background-color: #fff;
  padding: 15px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header img {
  height: 60px;
}

/* Main navbar styles */
.navbar ul {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
}

.navbar ul li {
  position: relative;
}

.navbar ul li a {
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  color: #000;
  font-size: 16px;
  padding: 10px 15px;
  display: block;
  transition: 0.3s ease;
}


.navbar ul li a:hover {
  color: #5e1d87;
}

/* Dropdown menu styles */
/* Dropdown Menu - Attractive Style */
.navbar ul li ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: linear-gradient(145deg, #f3e5f5, #e1bee7); /* soft gradient */
  border-radius: 10px;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  min-width: 220px;
  z-index: 10;
  padding: 10px 0;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease-in-out;
}

/* Show on Hover */
.navbar ul li:hover ul {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

/* Dropdown Links */
.navbar ul li ul li a {
  color: #540c3a; /* purple shade */
  padding: 12px 25px;
  white-space: nowrap;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

/* Hover Effect - Underline Animation */
.navbar ul li ul li a::after {
  content: '';
  position: absolute;
  left: 20px;
  bottom: 8px;
  width: 0;
  height: 2px;
  background-color: #9c27b0;
  transition: 0.3s;
}

.navbar ul li ul li a:hover::after {
  width: calc(100% - 40px);
}

/* Hover Background */
.navbar ul li ul li a:hover {
  background-color: rgba(156, 39, 176, 0.1);
  color: #9c27b0;
  border-radius: 5px;
}

/* Optional - add small arrow indicator for dropdown */
.navbar ul li.dropdown > a::after {
  content: ' ▼';
  font-size: 12px;
  margin-left: 5px;
  transition: transform 0.3s;
}

.navbar ul li.dropdown:hover > a::after {
  transform: rotate(-180deg);
}

/* Header */
/* Make the header white */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: white;
  padding: 0 20px;
  z-index: 1000;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo size */
.site-header img {
  height: 65px;
  width: auto;
}

/* Remove white color from all nav links globally */
.navbar a {
  font-weight: 500;
  text-decoration: none;
  /* Remove color: white; */
}

/* Center the menu in About page */
/* Force black menu text only on About Us page */
body.about-page .nav-links a {
  color: #000 !important;
}


/* Make menu items black on About page */
body.about-page .navbar ul li a {
  color: #000 !important; /* Force black */
}

/* Optional: Align header items */
.site-header {
  display: flex;
  justify-content: space-between;
}

.navbar {
  display: flex;
  flex-grow: 1;
  justify-content: center;
}

/* About Page */
.about-header {
  text-align: center;
  padding: 120px 20px 30px;
}

.about-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #800080;
  margin-bottom: 20px;
}

.about-text {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px 50px;
  font-size: 1.1rem;
  color: #222;
}

/* Image Gallery */
.about-gallery {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 30px 20px;
}

.about-gallery img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.about-gallery img:hover {
  transform: scale(1.05);
}

/* Mission & Vision */
.mission-vision-section {
  display: flex;
  flex-wrap: wrap;
  padding: 60px 20px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
  gap: 30px;
}

.mv-image {
  flex: 1 1 400px;
}

.mv-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.mv-content {
  flex: 1 1 500px;
}

.mv-content h2 {
  color: #800080;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 20px;
}

.mv-content p {
  font-size: 1.05rem;
  margin-bottom: 15px;
  color: #444;
}

/* Responsive */
@media (max-width: 768px) {
  .about-gallery img {
    width: 100%;
  }

  .mission-vision-section {
    flex-direction: column;
    text-align: center;
  }
}



/* Left side vertical email */
.vertical-email {
  position: fixed;
  top: 50%;
  left: 20px; /* 🔄 Move slightly to the right */
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  font-size: 14px;
  color: #1c003b;
  font-weight: 500;
  letter-spacing: 1px;
  z-index: 10000;
  background: #ffffff;
  padding: 10px 15px;
}

.fixed-social-icons {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 10000;
}

/* Social icons without background, slightly bigger */
.fixed-social-icons a img {
  width: 45px;
  height: 45px;
  border-radius: 50%; /* Optional if icons are circular */
  transition: transform 0.3s ease;
}

.fixed-social-icons a:hover img {
  transform: scale(1.1);
}


.collaboration-section {
  background-color: #f5f5f5; /* Light gray or white */
  padding: 80px 20px;
  text-align: center;
}

.collab-container {
  max-width: 800px;
  margin: 0 auto;
}

.collab-container h2 {
  font-size: 36px;
  color: #5e1d87; /* Your Nineties purple */
  margin-bottom: 20px;
}

.collab-container p {
  font-size: 18px;
  color: #333;
  margin-bottom: 30px;
}

.collab-btn {
  background-color: #5e1d87;
  color: white;
  text-decoration: none;
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.collab-btn:hover {
  background-color: #4a147a;
}


.site-footer {
  background-color: #000;
  color: #fff;
  padding: 60px 20px 20px;
  font-family: 'Arial', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.footer-col {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 15px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #9b4dff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.footer-socials img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

.footer-socials img:hover {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #444;
  padding-top: 15px;
  font-size: 14px;
  color: #aaa;
}
.site-header img {
 
  padding: 6px 10px;
  border-radius: 8px;
  height: 100px; /* Keep original image height */
  max-height: 100px; /* Control height if needed */
}
/* ================= Our Team Section (Index Preview) ================= */
.our-team-preview {
  padding: 70px 20px;
  background: #fafafa;
  text-align: center;
}

.our-team-preview h2 {
  font-size: 2rem;
  margin-bottom: 50px;
  color: #540c3a;
  position: relative;
  display: inline-block;
}

.our-team-preview h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #540c3a;
  margin: 10px auto 0;
  border-radius: 2px;
}

.team-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.team-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 15px;
  width: 250px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.team-img {
  width: 140px;
  height: 140px;
  margin: 0 auto 15px;
  border-radius: 50%;
  border: 5px solid #5a2a83;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
  color: #333;
  font-weight: 600;
}

.team-card p {
  color: #777;
  font-size: 0.95rem;
}

.view-team-btn {
  margin-top: 40px;
}

.view-team-btn a {
  display: inline-block;
  padding: 12px 28px;
  background: #5a2a83;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.view-team-btn a:hover {
  background: #7d47ad;
}

/* ================= Our Team Page (Full Page) ================= */
.our-team-page {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.our-team-page h2 {
  font-size: 2.2rem;
  margin-bottom: 60px;
  color: #540c3a; /* Changed to your desired purple shade */
  position: relative;
  display: inline-block;
}

.our-team-page h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #540c3a; /* Match the heading color */
  margin: 12px auto 0;
  border-radius: 2px;
}


.team-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  justify-content: center;
}

.team-page-grid .team-card {
  background: #fafafa;
  padding: 30px 20px;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.team-page-grid .team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.team-page-grid .team-img {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid #540c3a; /* Updated to your new purple shade */
}


.team-page-grid .team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.4s ease;
}

.team-page-grid .team-card:hover .team-img img {
  filter: grayscale(0%);
}

.team-page-grid h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
  color: #333;
  font-weight: 600;
}

.team-page-grid .designation {
  color: #7d47ad;
  font-weight: 500;
  margin-bottom: 12px;
}

.team-page-grid .bio {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}
/* Intro paragraph styling */
.team-intro {
  max-width: 800px;
  margin: 20px auto 50px;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  text-align: center;
}

/* Social icons under each team member */
.team-socials {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.team-socials a img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s, filter 0.3s;
  filter: grayscale(100%);
}

.team-socials a:hover img {
  transform: scale(1.2);
  filter: grayscale(0%);
}

/* Collaboration section at bottom */
.team-collaboration {
  background-color: #f5f5f5;
  padding: 80px 20px;
  text-align: center;
  margin-top: 80px;
}

.team-collaboration h2 {
  font-size: 2rem;
  color: #540c3a; /* match your team heading */
  margin-bottom: 20px;
}

.team-collaboration p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 30px;
}

.team-collaboration .collab-btn {
  background-color: #540c3a; /* match team circle / heading */
  color: #fff;
  text-decoration: none;
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.team-collaboration .collab-btn:hover {
  background-color: #7d1d5a;
}
