body {
  font-family: 'Poppins', Arial, sans-serif;
  margin: 0;
  background: #fff;
  color: #222;
  padding: 0;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

header {
  background: #000 !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  padding: 0.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  position: relative;
}

.header-logo {
  height: 50px;
  width: auto;
  z-index: 1001;
}

.hamburger {
  display: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #fff !important;
  margin: 5px 0;
  transition: all 0.3s ease;
}

nav {
  display: flex;
  align-items: center;
  background: #000 !important;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #fff !important;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover {
  color: #fbb040;
}

.btn-primary {
  background: #fbb040;
  color: #fff;
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 25px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(251,176,64,0.15);
}

.btn-primary:hover {
  background: #6c63ff;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #000 !important;
    flex-direction: column;
    justify-content: center;
    transition: right 0.3s ease;
    z-index: 1000;
    display: flex;
  }

  nav.active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  nav ul li {
    width: 100%;
  }

  nav a {
    display: block;
    padding: 1rem;
    font-size: 1.2rem;
  }

  .btn-primary {
    margin-top: 1rem;
  }

  /* Hamburger Animation */
  .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(7px, -6px);
  }

  /* Hide images on mobile */
  .services-images {
    display: none;
  }
}

/* Hero Section */
.hero {
    padding: 3rem 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    flex: none;
    max-width: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    padding: 0 20px;
}

.hero-content .highlight {
    color: #fbb040;
}

.hero-desc {
    max-width: 800px;
    margin: 0 auto;
    color: #444;
    font-size: 1.15rem;
    line-height: 1.8;
    padding: 0 20px;
}

.hero-image {
    display: block;
    max-width: 80%;
    height: auto;
    margin: 0 auto;
    margin-top: -1rem;
}

@media (max-width: 768px) {
    .hero-image {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .hero-image {
        max-width: 95%;
    }
}

.services {
  padding: 4rem 0;
  background: #fff;
}
.services-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.services h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.services-group {
  margin-bottom: 3rem;
}
.services-label {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  gap: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.label-bar {
  display: inline-block;
  width: 4px;
  height: 28px;
  background: #fbb040;
  border-radius: 2px;
}
.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  justify-items: center;
  margin-bottom: 3rem;
}
.service-card {
  border: 1.5px solid #d9d9d9;
  border-radius: 16px;
  padding: 1.5rem;
  background: #fff;
  box-shadow: 0 4px 12px rgba(108,99,255,0.08);
  position: relative;
  min-height: 200px;
  width: 100%;
  max-width: 360px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(251,176,64,0.2);
  transform: translateY(-10px) scale(1.03);
}
.service-card h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.25rem;
  font-weight: 700;
}
.service-card p {
  color: #444;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
.service-icon {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  font-size: 2.5rem;
  color: #fbb040;
}

.services-images {
  display: flex;
  gap: 30px;
  flex-direction: column;
  align-items: center;
}
.services-images img {
  width: 350px;
  height: 650px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  object-fit: cover;
  max-width: 100%;
}
.services-management ul {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 280px;
  font-size: 1.2rem;
  color: #555;
  font-weight: 400;
  line-height: 2.4;
  letter-spacing: 0.02em;
  margin: 0;
  padding: 0;
  text-align: left;
  order: 1;
}
.services-management ul li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
}
.services-management ul li .label-bar {
  display: inline-block;
  width: 20px;
  height: 4px;
  background: #fbb040;
  border-radius: 2px;
  margin-right: 0.8rem;
}
@media (max-width: 900px) {
  .services-management {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
  .services-images {
    flex-direction: row;
    width: 100%;
    max-width: 500px;
    justify-content: center;
    gap: 1.5rem;
  }
  .services-images img {
    width: 48%;
    height: auto;
    max-width: 220px;
    max-height: 280px;
  }
  .services-images img:last-child {
    display: none;
  }
  .services-management ul {
    order: 1;
    text-align: center;
    min-width: 100%;
  }
}
@media (max-width: 600px) {
  .services-management {
    gap: 1.5rem;
  }
  .services-images {
    flex-direction: column;
    max-width: 300px;
  }
  .services-images img {
    width: 100%;
    max-width: 300px;
    height: auto;
    max-height: 180px;
  }
  .services-management ul {
    text-align: center;
  }
}

.about-contact {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4rem;
  max-width: 1200px;
  margin: 5rem auto 4rem auto;
  padding: 0 20px;
}
.about {
  flex: 1.5;
}
.about h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.about h2 .highlight {
  color: #fbb040;
}
.about-bold {
  font-weight: 600;
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  line-height: 1.6;
}
.about p {
  color: #444;
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  background-color: #fff;
  border-radius: 32px;
  padding: 60px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 0 30px rgba(0,0,0,0.08);
  max-width: 1200px;
  margin: 0 auto;
}

.left-section {
  flex: 1;
  text-align: center;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.logo {
  width: 280px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.brand-name {
  font-size: 20px;
  letter-spacing: 6px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 10px;
}

.brand-name span {
  display: inline-block;
  transition: transform 0.3s ease;
}

.brand-name span:hover {
  transform: translateY(-2px);
}

.right-section {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 550px;
  width: 100%;
  min-width: 300px;
}

.right-section h3 {
  text-align: center;
  color: #18181a;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
}

.right-section h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #f4af37;
  border-radius: 2px;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

input, textarea {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  padding: 16px;
  border-radius: 12px;
  font-size: 16px;
  flex: 1;
  box-sizing: border-box;
  width: 100%;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #f4af37;
  box-shadow: 0 0 0 3px rgba(244, 175, 55, 0.1);
}

input::placeholder, textarea::placeholder {
  color: #999;
}

textarea {
  height: 140px;
  resize: none;
}

button {
  background-color: #f4af37;
  color: #000;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  max-width: 200px;
  align-self: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

button:hover {
  background-color: #e59b1b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(244, 175, 55, 0.2);
}

.full-width {
  width: 100%;
}

/* Responsive styles for the contact form */
@media (max-width: 992px) {
  .contact-container {
    padding: 40px;
    gap: 40px;
  }
  
  .right-section {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    padding: 30px;
    gap: 30px;
  }

  .form-row {
    flex-direction: column;
    gap: 16px;
  }

  .logo {
    width: 220px;
  }

  .brand-name {
    font-size: 18px;
    letter-spacing: 4px;
  }

  .right-section h3 {
    font-size: 1.8rem;
  }

  input, textarea {
    padding: 14px;
  }

  button {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .contact-container {
    padding: 20px;
    border-radius: 20px;
  }

  .logo {
    width: 180px;
  }

  .brand-name {
    font-size: 16px;
    letter-spacing: 3px;
  }

  .right-section h3 {
    font-size: 1.6rem;
  }
}

.purple { color: #5E2CA5; }
.orange { color: #FFA726; }
.blue { color: #42A5F5; }

footer {
  background-color: #f8f8f8;
  color: #333;
  padding: 60px 20px 30px;
  text-align: left;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}
.footer-column {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
  text-align: left;
}
.footer-column h4 {
  color: #555;
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
}
.footer-column h3 {
  margin-top: 5px;
  margin-bottom: 15px;
  font-size: 1.3em;
  color: #1a1a1a;
}
.footer-column ul {
  list-style: none;
  padding: 0;
}
.footer-column ul li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #666;
}
.footer-column p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}
.footer-logo {
  width: 120px;
  height: auto;
  margin-bottom: 15px;
  display: block;
  margin-left: 0;
  margin-right: auto;
}
.footer-column.logo-col {
  text-align: left;
}
.highlight {
  color: #1a1a1a;
}
.footer-bottom {
  border-top: 1px solid #eee;
  margin-top: 40px;
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: #666;
  max-width: 1000px;
  margin: 40px auto 0 auto;
}
.footer-links a {
  color: #666;
  text-decoration: none;
  margin-left: 20px;
}
.footer-links a:first-child {
  margin-left: 0;
}
.footer-links a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  header {
    padding: 15px 40px;
  }
  .logo-container {
    margin-right: 20px;
  }
  .logo {
    width: 100px;
  }
  nav a {
    margin: 0 15px;
  }
  .hero-content h1 {
    font-size: 2.4rem;
  }
  .hero-desc {
    font-size: 1.1rem;
  }
  .services-section {
    padding: 0 20px;
  }
  .services h2 {
    font-size: 1.8rem;
  }
  .services-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .service-card {
    max-width: 340px;
  }
  .services-management {
    gap: 3rem;
    margin-top: 3rem;
  }
  .services-images img {
    width: 250px;
    height: 320px;
  }
  .services-management ul {
    min-width: 250px;
    font-size: 1.1rem;
  }
  .about-contact {
    gap: 3rem;
    margin: 4rem auto 3rem auto;
    padding: 0 20px;
  }
  .about h2 {
    font-size: 1.6rem;
  }
  .about-bold {
    font-size: 1.05rem;
  }
  .contact-form {
    padding: 2rem;
    max-width: 400px;
  }
  .form-row {
    gap: 1rem;
  }
  .contact-form input,
  .contact-form textarea {
    padding: 0.9rem 1rem;
  }
  .contact-form button {
    padding: 0.9rem;
  }
  footer {
    padding: 50px 20px 25px;
  }
  .footer-container {
    gap: 30px;
  }
  .footer-column h3 {
    font-size: 1.2em;
  }
  .footer-logo {
    width: 100px;
  }
  .footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
  }
}
@media (max-width: 768px) {
  header {
    padding: 15px 20px;
  }
  .logo-container {
    margin-right: 15px;
  }
  .logo {
    width: 90px;
  }
  .hamburger {
    display: block;
  }
  nav {
    display: none;
    width: 100%;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
  }
  nav.active {
    display: flex;
  }
  nav a {
    margin: 10px 0;
    width: 100%;
    text-align: center;
    color: #1a1a1a;
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
  }
  nav a.active-link {
    color: #f4b53f;
    font-weight: 700;
  }
  nav a:last-child {
    border-bottom: none;
  }
  .btn {
    margin-top: 15px;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-desc {
    font-size: 1rem;
  }
  .services h2 {
    font-size: 1.6rem;
  }
  .services-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .service-card {
    max-width: 100%;
    padding: 1.5rem;
  }
  .service-card h3 {
    font-size: 1.2rem;
  }
  .service-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }
  .services-management {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
  }
  .services-images {
    display: none;
  }
  .services-management ul {
    order: 1;
    text-align: center;
    min-width: 100%;
    font-size: 1.1rem;
    line-height: 2;
  }
  .services-management ul li {
    justify-content: center;
  }
  .about-contact {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.5rem;
    margin: 3rem auto 2.5rem auto;
    padding: 0 20px;
  }
  .about {
    text-align: center;
  }
  .contact-form {
    width: 100%;
    max-width: 400px;
    padding: 2rem;
  }
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
  .footer-column {
    min-width: 100%;
    text-align: center;
  }
  .footer-column.logo-col {
    text-align: center;
  }
  .footer-logo {
    margin: 0 auto 15px auto;
  }
  .footer-column h4,
  .footer-column h3,
  .footer-column ul,
  .footer-column p {
    text-align: center;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .footer-links a {
    margin: 0 10px;
  }
}
@media (max-width: 600px) {
  .header-container, .about-contact, .footer-container, .services-section {
    padding: 0 0.5rem;
  }
  .services-cards {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }
  .service-card {
    max-width: 100%;
  }
  .services-images {
    width: 100%;
    max-width: 320px;
    height: auto;
    gap: 1rem;
  }
  .services-images img {
    width: 100%;
    max-width: 320px;
    height: 200px;
  }
  .contact-form {
    min-width: 0;
    max-width: 100%;
    padding: 1rem 0.5rem;
  }
  .services-management {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }
}
footer {
  padding: 40px 15px 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.footer-links a {
  display: block;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.social-icons a img {
  margin-right: 0.5rem;
}

/* Removed Event Management Section styles */
/* Deleted selectors: .services-management, .services-management-label, .label-bar, .event-images, .event-img, and related media queries */

/* Responsive */
@media (max-width: 768px) {
  .event-management-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .event-images {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .services-section {
    padding: 0 1.5rem;
  }
  
  .services-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 0 0.5rem;
  }
  
  .about-contact {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 0 1rem;
  }
  
  .services-cards {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 0 0.5rem;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-desc {
    font-size: 1rem;
  }

  .services h2 {
    font-size: 1.5rem;
  }

  .service-card {
    max-width: 100%;
  }

  .about-contact {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    padding: 0 20px;
  }

  .about {
    text-align: center;
  }

  .contact-form {
    width: 100%;
    max-width: 100%;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .footer-column {
    min-width: 100%;
    text-align: center;
  }

  .footer-column h4,
  .footer-column h3,
  .footer-column ul,
  .footer-column p {
    text-align: center;
  }

  .logo-container {
    margin-right: 15px;
  }

  .logo {
    width: 80px;
    height: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-links a {
    margin: 0 10px;
  }

  .event-images {
    flex-direction: column;
    align-items: center;
  }

  .event-images img {
    width: 100%;
    max-width: 400px;
    margin: 10px 0 !important;
  }

  /* Service Card Image Repositioning */
  .service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    margin-bottom: 0;
  }

  .service-card .service-icon {
    position: static;
    order: -1;
    margin-bottom: 1rem;
    width: 120px;
    height: 120px;
    object-fit: contain;
  }

  .service-card h3 {
    margin: 0.5rem 0;
  }

  .service-card p {
    margin-bottom: 0;
  }

  /* Event Management Section Image Repositioning */
  .services-management {
    position: relative;
    padding-top: 200px; /* Space for the first image */
    padding-bottom: 200px; /* Space for the second image */
    gap: 2rem;
  }

  .event-images img:first-child {
    top: 0;
    margin-top: 0;
    margin-left: 0;
    width: 90%;
    max-width: 300px;
  }

  .event-images img:last-child {
    bottom: 0;
    margin-top: 0;
    margin-left: 0;
    width: 90%;
    max-width: 300px;
  }

  .services-management ul {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 0 0.8rem;
  }
  
  .services-cards {
    gap: 1rem;
    padding: 0 0.3rem;
  }

  header {
    padding: 10px 15px;
  }

  .logo-container {
    margin-right: 10px;
  }

  .logo {
    width: 70px;
    height: auto;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-desc {
    font-size: 0.95rem;
  }

  .services h2 {
    font-size: 1.3rem;
  }

  .service-card {
    padding: 1rem;
  }

  .service-card h3 {
    font-size: 1rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }

  .about h2 {
    font-size: 1.2rem;
  }

  .about p {
    font-size: 0.95rem;
  }

  .contact-form {
    padding: 1rem;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 0.95rem;
    padding: 0.6rem 0.8rem;
  }

  .contact-form button {
    font-size: 1rem;
  }

  .footer-column h4 {
    font-size: 15px;
  }

  .footer-column h3 {
    font-size: 1.1em;
  }

  .footer-column ul li,
  .footer-column p {
    font-size: 13px;
  }

  .footer-bottom {
    font-size: 12px;
  }

  .service-card .service-icon {
    width: 100px;
    height: 100px;
  }

  .services-management {
    padding-top: 180px;
    padding-bottom: 180px;
  }

  .event-images img:first-child,
  .event-images img:last-child {
    width: 85%;
    max-width: 250px;
  }
}

/* Fix for services images */
.services-images {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 1.2rem;
  width: auto;
  height: auto;
}

.services-images img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 300px;
  object-fit: contain;
}

/* Fix for event images */
.event-images {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}

.event-images img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Animation for mobile menu */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

nav.active {
  animation: slideDown 0.3s ease-out;
}

/* Smooth transitions */
.service-card,
.btn,
nav a,
.footer-links a,
.contact-form input,
.contact-form textarea,
.contact-form button {
  transition: all 0.3s ease;
}

/* Fix for form responsiveness */
.form-row {
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .form-row {
    flex-direction: row;
  }
}

/* Form Responsive Styles */
@media (max-width: 768px) {
  .contact-form {
    padding: 1.5rem;
    margin: 0 1rem;
  }

  .form-row {
    flex-direction: column;
    gap: 0.8rem;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 0.7rem 0.8rem;
  }

  .contact-form button {
    padding: 0.8rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .contact-form {
    padding: 1rem;
    margin: 0 0.5rem;
  }

  .form-row {
    gap: 0.6rem;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 0.6rem 0.7rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Base style for elements that will animate */
.animate-on-scroll {
  opacity: 0;
  /* Initial transform will be set by specific animation class */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Final state when element is visible */
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0); /* Default: fade in up */
}

/* Specific animation directions */
.animate-on-scroll.fade-in-up {
  transform: translateY(20px);
}

.animate-on-scroll.fade-in-left {
  transform: translateX(-50px);
}

.animate-on-scroll.fade-in-right {
  transform: translateX(50px);
}

.animate-on-scroll.is-visible.fade-in-up,
.animate-on-scroll.is-visible.fade-in-left,
.animate-on-scroll.is-visible.fade-in-right {
  transform: translate(0, 0);
}
.event-images {
  display: flex;
  gap: 1rem;
  flex: 1 1 400px;
  justify-content: center;
  align-items: flex-start;
}
