* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #333;
}

/* Top purple logo section */
.top-header {
    padding: 10px 30px;
}

.logo {
  height: 80px;
}

/* White background nav */
.main-nav {
  background: white;
  padding: 15px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

.dropdown-menu {
  position: absolute;
  background: #fff;
  display: none;
  list-style: none;
  top: 30px;
  left: 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 1000; /* 👈 ADD THIS LINE */
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  white-space: nowrap;
}

/* Vertical Menu and Email */
/* Sidebar Menu */
.sidebar {
  position: fixed;
  top: 0;
  left: -300px; /* hide by default */
  width: 260px;
  height: 100%;
  background-color: #5e1d87;
  color: #fff;
  transition: left 0.3s ease;
  z-index: 9999;
  padding: 20px;
  overflow-y: auto;
}

/* Active State */
.sidebar.active {
  left: 0;
}

/* Close Button */
.sidebar .close-btn {
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  text-align: right;
  margin-bottom: 10px;
}

/* Logo */
/* Sidebar Logo Styling */
.sidebar .sidebar-logo {
  display: block;
  width: 120px;
  margin: 0 auto 20px;
  background-color: #540c3a; /* Purple background */
  padding: 20px;
}

.sidebar .sidebar-logo img {
  width: 100%;
  height: auto;
  display: block;
}


/* Sidebar Links */
.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar ul li {
  margin: 12px 0;
}

.sidebar ul li a {
  color: #fff; /* Ensure white text */
  text-decoration: none;
  font-weight: 500;
  display: block;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  transition: background 0.2s ease;
}


.sidebar ul li a:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Collaboration Box */
.sidebar .collaboration {
  margin-top: 30px;
  border-top: 1px solid #fff;
  padding-top: 20px;
}

.sidebar .collaboration h4 {
  margin-bottom: 5px;
  font-size: 16px;
}

.sidebar .collaboration p {
  font-size: 14px;
}
.vertical-email {
  position: fixed;
  top: 40%;
  left: 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
font-size: 16px; /* Increased from 13px */
  padding: 8px 14px; /* More space around text */
  color: #5e1d87;
  font-weight: 500;
  z-index: 10000;
  border-radius: 0 5px 5px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Social Icons Right */
.fixed-social-icons {
  position: fixed;
  top: 200px; /* Adjust vertical position */
  right: 15px; /* Right alignment */
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.social-circle {
  width: 50px;
  height: 50px;
   border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.social-circle img {
  width: 24px;
  height: 24px;
}

.social-circle:hover {
  transform: scale(1.1);
}


/* Slideshow */
.slider {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  animation: slideFade 15s infinite;
  opacity: 0;
}

.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 5s; }
.slide:nth-child(3) { animation-delay: 10s; }

@keyframes slideFade {
  0% { opacity: 0; }
  10% { opacity: 1; }
  30% { opacity: 1; }
  40% { opacity: 0; }
  100% { opacity: 0; }
}

.slider-overlay {
  position: absolute;
  bottom: 30px;
  left: 50px;
  color: white;
  z-index: 1;
}

.slider-overlay h1 {
  font-size: 36px;
}

.slider-overlay p {
  font-size: 18px;
}

/* Service Description */
.service-description {
  padding: 50px 20px;
}

.service-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.service-image img {
  width: 100%;
  max-width: 350px;
  border-radius: 8px;
}

.service-text {
  flex: 1;
}

.why-we {
  background: #f6f6f6;
  padding: 50px 20px;
  text-align: center;
}

.purple-heading {
  color: #5e1d87;
  font-size: 28px;
  margin-bottom: 15px;
}

.site-footer {
  background-color: #000;
  color: #fff;
  padding: 60px 30px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #fff;
}

.footer-logo {
  width: 120px;
  margin-bottom: 15px;
}

.footer-socials a {
  color: #ccc;
  display: inline-block;
  margin-right: 10px;
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 14px;
  border-top: 1px solid #444;
  margin-top: 30px;
  color: #999;
}


.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 250px;
  height: 100vh;
  background-color: white;
  border-right: 2px solid #ccc;
  padding: 20px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 999;
  overflow-y: auto;
}

.sidebar.active {
  transform: translateX(0);
}

.sidebar-logo {
  width: 150px;
  display: block;
  margin: 0 auto 20px;
}

.sidebar-services {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.sidebar-services li {
  margin-bottom: 10px;
}

.sidebar-services a {
  display: block;
  padding: 10px 15px;
  background-color: #5e1d87;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: background 0.3s;
}

.sidebar-services a:hover {
  background-color: #431063;
}
.sidebar a {
  color: black !important;
}

.collaboration {
  text-align: center;
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid #ddd;
}

.collaboration h4 {
  margin-bottom: 5px;
  font-size: 16px;
  color: #5e1d87;
}

.collaboration p {
  font-size: 14px;
  color: #333;
}


.vertical-menu-button {
  position: fixed;
  top: 30%; /* Move upward by reducing % */
  left: 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 16px; /* Bigger text */
  padding: 8px 14px; /* Bigger clickable area */
  color: #5e1d87;
  
  font-weight: 500;
  z-index: 10000;
  border-radius: 0 5px 5px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  cursor: pointer;
}
/* 🔑 Key Highlights Section */
.service-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 40px;
  padding: 20px 0;
}

.service-highlights .highlight {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  background: #fafafa;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-highlights .highlight img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.service-highlights .highlight h3 {
  font-size: 18px;
  color: #5e1d87;
  margin-bottom: 8px;
}

.service-highlights .highlight p {
  font-size: 14px;
  color: #555;
}

.service-highlights .highlight:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  background: #fff;
}
/* Corporate Event Icon Section */
.corporate-icons {
  padding: 60px 20px;
  background: #fff;
}

.icon-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
  gap: 30px;
}

.icon-card {
  flex: 1 1 220px;
  background: #faf7fc;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.icon-card h3 {
  font-size: 1.2rem;
  color: #5a2d82;
  margin-bottom: 10px;
}

.icon-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.icon-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

/* Responsive */
@media (max-width: 900px) {
  .icon-container {
    flex-direction: column;
    align-items: center;
  }
  .icon-card {
    max-width: 300px;
    margin-bottom: 20px;
  }
}
/* Sports Event Icon Section */
.sports-icons {
  padding: 60px 20px;
  background: #fff;
}

.sports-icons .icon-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
  gap: 30px;
}

.sports-icons .icon-card {
  flex: 1 1 220px;
  background: #faf7fc;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sports-icons .icon-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.sports-icons .icon-card h3 {
  font-size: 1.2rem;
  color: #5a2d82;
  margin-bottom: 10px;
}

.sports-icons .icon-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.sports-icons .icon-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

/* Responsive */
@media (max-width: 900px) {
  .sports-icons .icon-container {
    flex-direction: column;
    align-items: center;
  }
  .sports-icons .icon-card {
    max-width: 300px;
    margin-bottom: 20px;
  }
}
/* Seminar & Conference Icon Section */
.seminar-icons {
  padding: 60px 20px;
  background: #fff;
}

.seminar-icons .icon-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
  gap: 30px;
}

.seminar-icons .icon-card {
  flex: 1 1 220px;
  background: #faf7fc;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.seminar-icons .icon-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.seminar-icons .icon-card h3 {
  font-size: 1.2rem;
  color: #5a2d82; /* purple theme */
  margin-bottom: 10px;
}

.seminar-icons .icon-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.seminar-icons .icon-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

/* Responsive */
@media (max-width: 900px) {
  .seminar-icons .icon-container {
    flex-direction: column;
    align-items: center;
  }
  .seminar-icons .icon-card {
    max-width: 300px;
    margin-bottom: 20px;
  }
}
/* Political Event Icon Section */
.political-icons {
  padding: 60px 20px;
  background: #fff;
}

.political-icons .icon-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
  gap: 30px;
}

.political-icons .icon-card {
  flex: 1 1 220px;
  background: #faf7fc;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.political-icons .icon-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.political-icons .icon-card h3 {
  font-size: 1.2rem;
  color: #5a2d82; /* purple theme */
  margin-bottom: 10px;
}

.political-icons .icon-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.political-icons .icon-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

/* Responsive */
@media (max-width: 900px) {
  .political-icons .icon-container {
    flex-direction: column;
    align-items: center;
  }
  .political-icons .icon-card {
    max-width: 300px;
    margin-bottom: 20px;
  }
}
/* Business Management Icon Section */
.business-icons {
  padding: 60px 20px;
  background: #fff;
}

.business-icons .icon-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
  gap: 30px;
}

.business-icons .icon-card {
  flex: 1 1 220px;
  background: #faf7fc;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.business-icons .icon-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.business-icons .icon-card h3 {
  font-size: 1.2rem;
  color: #5a2d82; /* purple theme */
  margin-bottom: 10px;
}

.business-icons .icon-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.business-icons .icon-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

/* Responsive */
@media (max-width: 900px) {
  .business-icons .icon-container {
    flex-direction: column;
    align-items: center;
  }
  .business-icons .icon-card {
    max-width: 300px;
    margin-bottom: 20px;
  }
}
/* Wedding Event Icon Section */
.wedding-icons {
  padding: 60px 20px;
  background: #fff;
}

.wedding-icons .icon-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
  gap: 30px;
}

.wedding-icons .icon-card {
  flex: 1 1 220px;
  background: #faf7fc;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wedding-icons .icon-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.wedding-icons .icon-card h3 {
  font-size: 1.2rem;
  color: #5a2d82; /* purple theme */
  margin-bottom: 10px;
}

.wedding-icons .icon-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.wedding-icons .icon-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

/* Responsive */
@media (max-width: 900px) {
  .wedding-icons .icon-container {
    flex-direction: column;
    align-items: center;
  }
  .wedding-icons .icon-card {
    max-width: 300px;
    margin-bottom: 20px;
  }
}
/* College & School Event Icon Section */
.school-icons {
  padding: 60px 20px;
  background: #fff;
}

.school-icons .icon-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
  gap: 30px;
}

.school-icons .icon-card {
  flex: 1 1 220px;
  background: #faf7fc;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.school-icons .icon-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.school-icons .icon-card h3 {
  font-size: 1.2rem;
  color: #5a2d82; /* purple theme */
  margin-bottom: 10px;
}

.school-icons .icon-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.school-icons .icon-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

/* Responsive */
@media (max-width: 900px) {
  .school-icons .icon-container {
    flex-direction: column;
    align-items: center;
  }
  .school-icons .icon-card {
    max-width: 300px;
    margin-bottom: 20px;
  }
}
/* Team Building Icon Section */
.team-icons {
  padding: 60px 20px;
  background: #fff;
}

.team-icons .icon-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
  gap: 30px;
}

.team-icons .icon-card {
  flex: 1 1 220px;
  background: #faf7fc;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-icons .icon-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.team-icons .icon-card h3 {
  font-size: 1.2rem;
  color: #5a2d82; /* purple theme */
  margin-bottom: 10px;
}

.team-icons .icon-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.team-icons .icon-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

/* Responsive */
@media (max-width: 900px) {
  .team-icons .icon-container {
    flex-direction: column;
    align-items: center;
  }
  .team-icons .icon-card {
    max-width: 300px;
    margin-bottom: 20px;
  }
}
/* Social Events Icon Section */
.social-icons {
  padding: 60px 20px;
  background: #fff;
}

.social-icons .icon-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
  gap: 30px;
}

.social-icons .icon-card {
  flex: 1 1 220px;
  background: #faf7fc;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icons .icon-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.social-icons .icon-card h3 {
  font-size: 1.2rem;
  color: #5a2d82; /* purple theme */
  margin-bottom: 10px;
}

.social-icons .icon-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.social-icons .icon-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

/* Responsive */
@media (max-width: 900px) {
  .social-icons .icon-container {
    flex-direction: column;
    align-items: center;
  }
  .social-icons .icon-card {
    max-width: 300px;
    margin-bottom: 20px;
  }
}

