  /*Brand Name*/            
.site-branding {
 display: flex;
 align-items: center;
 gap: 10px;
 }
                
.brand-name {
font-size: 24px;
font-weight: bold;
color: #b87c5a; 
}

.site-branding .brand-name {
color: #b87c5a !important;  
 }


 /* icons img*/
 .icon-img {
  width: 60px;
  height: 60px;
}

.custom-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}



/**/
.event-management1 {
  padding: 30px 15px;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  max-width: 1200px;
  margin: auto;
}

.event-container1 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}

.event-image1 {
  flex-shrink: 0;
  width: 400px;
}

.event-image1 img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border: 5px solid #0c4b60;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.event-text1 {
  flex: 1;
  min-width: 300px;
}

.event-tag1 {
  color: #fbbc04;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
}

.event-title1 {
  font-size: 32px;
  font-weight: 500;
  color: #003a3a;
  line-height: 1.4;
  margin-bottom: 20px;
  text-align: left;
}

.event-title1 strong {
  font-weight: 800;
  color: #1a1a1a;
}

.event-description1 {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 10px;
  text-align: justify;
}

.event-description1 strong {
  font-weight: bold;
}

.event-bottom-text1 {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 10px; /* add this to match description */
  color: #333; /* match color of .event-description1 */
  text-align: justify;
}


@media (max-width: 768px) {
  .event-container1 {
    flex-direction: column;
    align-items: center;
  }

  .event-image1 {
    width: 80%;
    margin-bottom: 20px;
  }

  .event-image1 img {
    height: auto;
    width: 100%;
  }

  .event-title1 {
    font-size: 24px;
    text-align: left; /* Ensures heading stays left-aligned on small screens */
  }

  .event-description1,
  .event-bottom-text1 {
    text-align: justify; /* Keeps paragraphs justified on small screens */
  }

  .event-text1 {
    width: 90%;
  }
}


/*2*/

.event-management2 {
  padding: 30px 15px;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  max-width: 1200px;
  margin: auto;
}

.event-container2 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
}

.event-image2 {
  flex-shrink: 0;
  width: 400px;
}

.event-image2 img {
  width: 100%;
  height: 280px; /* Reduced from 350px */
  object-fit: cover;
  border: 5px solid #0c4b60;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}


.event-text2 {
  flex: 1;
  min-width: 300px;
}

.event-tag2 {
  color: #fbbc04;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
}

.event-title2 {
  font-size: 32px;
  font-weight: 500;
  color: #003a3a;
  line-height: 1.4;
  margin-bottom: 20px;
  text-align: left;
}

.event-title2 strong {
  font-weight: 800;
  color: #1a1a1a;
}

.event-description2 {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 10px;
  text-align: justify;
}

.event-description2 strong {
  font-weight: bold;
}

.event-bottom-text2 {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 10px;
  color: #333;
  text-align: justify;
}

@media (max-width: 768px) {
  .event-container2 {
    flex-direction: column;
    align-items: center;
  }

  .event-image2 {
    width: 80%;
    margin-bottom: 20px;
  }

  .event-image2 img {
    height: auto;
    width: 100%;
  }

  .event-title2 {
    font-size: 24px;
    text-align: left;
  }

  .event-description2,
  .event-bottom-text2 {
    text-align: justify;
  }

  .event-text2 {
    width: 90%;
  }
}


/**/

.stats-section1 {
  position: relative;
  background: url('../images/web-img/exp-bg.png') no-repeat center center / cover;
  background-attachment: fixed;
  padding: 60px 20px;
  text-align: center;
  color: white;
  font-family: 'Poppins', sans-serif;
}

.overlay1 {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.container1 {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  flex-direction: row;
}

/* Style for each stat box */
.stat-box1 {
  flex: 1 1 150px;
  min-width: 120px;
}

/* Stat heading and text */
.stat-box1 h2 {
  font-size: 48px;
  margin: 0;
  font-weight: 600;
}

.stat-box1 p {
  margin: 5px 0 0;
  font-size: 18px;
}

.divider-icon1 img {
  width: 60px;
  height: auto;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .container1 {
    flex-direction: column;
    gap: 20px;
  }

  .stat-box1 h2 {
    font-size: 36px;
  }

  .stat-box1 p {
    font-size: 16px;
  }

  .divider-icon1 img {
    width: 40px;
  }

  .stats-section1 {
    background-attachment: scroll; /* fallback for mobile devices */
  }
}


/*gap remove*/
.services-section {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}


/* Unified Base Styles for Event Company Section */
.event-company-section3 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

.event-header3 {
  text-align: center;
  margin-bottom: 30px;
}

.event-subtitle3 {
  color: #fbbc04;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}

.event-title3 {
  color: #003a3a;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px;
}

.event-title3 strong {
  font-weight: 800;
  color: #1a1a1a;
}

.event-description3 {
  max-width: 1000px;
  margin: 0 auto 50px;
  text-align: justify;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

.event-description3 strong {
  font-weight: bold;
}

.highlight3 {
  color: #3a7bd5;
  font-weight: 500;
}

.event-services3 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.event-card3 {
  flex: 1;
  min-width: 300px;
  background-color: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.event-card3:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #ddc123;
}

.event-image3 {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.event-card-title3 {
  padding: 20px 20px 10px;
  color: #0c4b60;
  font-size: 1.3rem;
  font-weight: 600;
}

.event-card-description3 {
  padding: 0 20px 20px;
  font-size: 0.95rem;
  color: #555;
  text-align: justify;
}

/* Responsive Styles */

@media (max-width: 992px) {
  .event-services3 {
    justify-content: center;
  }

  .event-card3 {
    flex: 0 0 calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .event-title3 {
    font-size: 24px;
  }

  .event-card3 {
    flex: 0 0 100%;
  }

  .event-description3 {
    text-align: justify;
  }
}

@media (max-width: 480px) {
  .event-subtitle3 {
    font-size: 1.3rem;
    text-align: center;
  }

  .event-title3 {
    font-size: 1.7rem;
    text-align: center; /* Align to left on mobile */
    margin: 0 0 20px 0; /* Remove auto margins */
  }

  .event-description3 {
    font-size: 0.95rem;
  }
}



/*Contact parallax effect */
.parallax-section {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
