/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: #f8f9fa;
  color: #000000;
}
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

/* Header Base */
.header {
  background-color: #FFFFFF;
  color: #000000;
  padding: 10px 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.header-flex {
  display: flex;
  flex-direction: column; /* stack logo row + bottom row */
  gap: 10px;
}

/* Logo Area */
.logo {
  display: flex;
  align-items: center;
  min-width: 0;
}
.logo img {
  width: 400px;
  height: 180px;
  object-fit: contain;
}

/* Row 2: Tagline + Nav */
.header-bottom {
  display: flex;
  justify-content: space-between; /* tagline left, nav right */
  align-items: center;
  flex-wrap: wrap;
}

/* Tagline */
.tagline {
  font-size: 2rem;
  color: #370403;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Nav Styling */
nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
nav ul li {
  margin-left: 25px;
}
nav a {
  text-decoration: none;
  color: #370403;
  font-weight: bold;
  font-size: 0.89rem;
  transition: color 0.3s ease;
}
nav a:hover {
  color: #A4CE38;
}

/* Responsive Design */
@media (max-width: 768px) {
  .logo {
    justify-content: center;
  }
  .logo img {
    width: min(85%, 420px);
    height: auto;
  }
  .header-bottom {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .tagline {
    font-size: 1.1rem;
    text-align: center;
    white-space: normal;
  }
  nav {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  nav ul {
    flex-direction: column;
    gap: 10px;
    align-items: center;
    width: auto;
  }
  nav ul li {
    margin: 0;
    width: 100%;
    max-width: 260px;
  }
  nav a {
    display: block;
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #1f2f40;
    border-radius: 6px;
    background: white;
    color: #1f2f40;
    font-weight: bold;
    text-align: center;
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  nav a:hover {
    background-color: #A4CE38;
    color: white;
    border-color: #A4CE38;
  }
}




/* hero hero */
/* hero */

.hero {
  background-color: #B4D233;
  height: 100vh; /* Full screen height */
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-flex {
  width: 100%;
  height: 80%; /* 👈 80% of the hero section */
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.hero-text {
  color: #fff9db; /* soft yellowish white */
  flex: 1;
}

.hero h2 {
  color: #fffae5; /* warm creamy yellow */
  margin-bottom: 10px;
}


/* Section Headings */
section h2 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 15px;
  font-size: 1.8rem;
}
section p, blockquote {
  margin-bottom: 15px;
}
.center-button {
  text-align: center;
}


@media (max-width: 768px) {
  .hero {
    height: auto;             /* Allow height to adjust */
    padding: 20px;
    flex-direction: column;   /* stack content vertically */
    align-items: center;      /* center horizontally */
  }

  .hero-flex {
    height: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;      /* center children horizontally */
    width: 100%;
    max-width: 400px;         /* limit max width on mobile */
  }

  .hero img {
    width: 95%;              /* fill container width */
    height: auto;             /* maintain aspect ratio */
    object-fit: contain;      /* contain to avoid cropping */
    border-radius: 11px;
    display: block;
    margin: 0 auto;           /* center image horizontally */
  }
}


/* Hero */







/* Global Icons Section */


/* Global Icons Section */


/* colabrations */
/* Collaborations Section */
/* Collaborations Section */
/* clients testmonials */

.client-testimonials {
  background: linear-gradient(135deg, #f6f7f9 0%, #e4e6eb 100%);
  padding: 80px 20px;
  text-align: center;
}

.client-testimonials h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
  max-width: 600px;
  margin-inline: auto;
}

.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial-cards .card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  flex: 1 1 280px;
  max-width: 320px;
  text-align: center;
  transition: all 0.3s ease;
}

.testimonial-cards .card:hover {
  transform: translateY(-8px) scale(1.03);
}

.testimonial-cards .card img {
  width: 150px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 4px solid #b4d233;
}

.testimonial-cards .card h3 {
  font-size: 18px;
  margin: 10px 0 6px;
  color: #222;
  font-weight: 600;
}

.testimonial-cards .card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* Button */
.btn {
  text-align: center;
  display: inline-block;
  margin-top: 30px;
  padding: 12px 28px;
  background-color: #A4CE38;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #A4CE38;
}

/* Hidden class */
.hidden {
  display: none;
}

/* footer  */
/*  */
/*  */
/* Footer */

.footer {
  background: #A4CE38;
  color: #fff;
  padding: 50px 20px;
  font-size: 14px;
}

.footer-container {
  max-width: 960px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

/* Left Section */
.footer-left {
  flex: 1 1 280px;
  line-height: 1.6;
}

.footer-left h3 {
  margin-bottom: 8px;
  color: #fff;
}

.footer-left a {
  color: #fff;
  text-decoration: underline;
}

.footer-left p,
.footer-left address {
  margin: 4px 0 15px;
}

/* Right Section */
.footer-right {
  flex: 0 1 200px;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap; 
}

.social-links {
  display: flex;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.social-links li {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  transition: transform 0.3s ease;
}

.social-links li:hover {
  transform: scale(1.1);
  background-color: #ddd;
}

.social-links img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures full fill */
}



/* Footer bottom */
.footer-right .copyright {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  margin-top: auto;
  white-space: nowrap;  
}

/* fotter */
/* fotter */











/*  */
/*  */
/* Wrapper section */







/* global-seenario */


/* global-seenario */
/*  */
/*  */
/* Branded Gifting Section Styles */

/* Branded Gifting Section - Updated with Vertical Centering */

.branded-gifting {
  background: #f4f4f4;
  min-height: 100vh; /* full screen height */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  text-align: center; /* ensures text inside is centered */
}

.gifting-box {
  background: #ffffff;
  color: #333333;
  border-radius: 12px;
  max-width: 900px;
  padding: 60px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center; /* ✅ center content inside the box */
  margin: 0 auto;      /* ✅ center the box itself if needed */
}

.gifting-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.gifting-box h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #000000;
  position: relative;
}

.gifting-box h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #A4CE38;
  margin: 12px auto 0;
  border-radius: 2px;
}

.gifting-box p {
  font-size: 20px;
  line-height: 1.8;
  color: #333333;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .gifting-box {
    padding: 40px;
  }

  .gifting-box h2 {
    font-size: 28px;
  }

  .gifting-box p {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .gifting-box {
    padding: 25px;
  }

  .gifting-box h2 {
    font-size: 24px;
  }

  .gifting-box p {
    font-size: 16px;
  }
}

/* what we offer */

/* What We Offer Section Styles */

/* What We Offer Section Styles - Centered Layout with Hover */

.four-box-section {
  background: linear-gradient(135deg, #f5f7fa, #e8f5e9);
  padding: 100px 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 10px;
  position: relative;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background-color: #A4CE38;
  margin: 16px auto 0;
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.feature-box {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #A4CE38;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.feature-box h3 {
  font-size: 1.6rem;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.feature-box p {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .feature-box h3 {
    font-size: 1.4rem;
  }

  .feature-box p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .feature-box {
    padding: 30px 20px;
  }
}



/* our process */
/* Section background and padding */
.process-section {
  background: linear-gradient(135deg, #fffef5, #eef7f1);
  padding: 100px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.process-header {
  text-align: center;
  margin-bottom: 60px;
}

.process-header h2 {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.process-header h2::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background-color: #A4CE38;
  margin: 16px auto 0;
  border-radius: 2px;
}

.process-subtitle {
  font-size: 1.1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: auto;
}

.process-box {
  background: #ffffff; /* fallback if image not found */
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #A4CE38;
  position: relative; /* needed for overlay */
  overflow: hidden;   /* clip overlay corners */
}

/* Dark overlay for image boxes */
.process-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.25), rgba(0,0,0,.55));
  border-radius: inherit;
  z-index: 0;
  opacity: 0; /* hidden by default */
  transition: opacity .25s ease;
}

/* Make content sit above overlay */
.process-box * {
  position: relative;
  z-index: 1;
}

.process-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.process-icon {
  font-size: 2.2rem;
  display: inline-block;
  margin-bottom: 15px;
}

.process-box h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.process-box p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* === Step-specific background images === */
.step-consult {
  background: url("../images/consultation.png") center/cover no-repeat;
  color: #f1f1f1;
  border-top-color: #A4CE38;
}
.step-design {
  background: url("../images/concept\ design.png") center/cover no-repeat;
  color: #f1f1f1;
  border-top-color: #2da7df;
}
.step-approval {
  background: url("../images/approved.png") center/cover no-repeat;
  color: #f1f1f1;
  border-top-color: #f9a825;
}
.step-production {
  background: url("../images/production.png") center/cover no-repeat;
  color: #f1f1f1;
  border-top-color: #b388eb;
}
.step-delivery {
  background: url("../images/delivery.png") center/cover no-repeat;
  color: #f1f1f1;
  border-top-color: #ec407a;
}

/* Show overlay only for image boxes */
.step-consult::before,
.step-design::before,
.step-approval::before,
.step-production::before,
.step-delivery::before {
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-header h2 {
    font-size: 2rem;
  }

  .process-subtitle {
    font-size: 1rem;
  }
}


/* Key Services Section Styles */

/* Key Services Section Styles - Five Boxes */

/* Key Services Section Styles - Five Boxes */

/* Key Services Section Styles */


.key-services-section {
  background: linear-gradient(to bottom right, #ffffff, #f5f9fd);
  padding: 100px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.key-services-container {
  max-width: 1300px;
  margin: auto;
  text-align: center;
}

.key-services-container h2 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.key-services-subtitle {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 60px;
  max-width: 720px;
  margin-inline: auto;
  line-height: 1.6;
}

.key-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: #ffffff;
  border-top: 5px solid #A4CE38;
  border-radius: 20px;
  padding: 30px 25px;
  text-align: left;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.service-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.service-icon {
  font-size: 2rem;
  color: #A4CE38;
}

.service-card h3 {
  font-size: 1.4rem;
  color: #222;
  margin: 0;
}

.service-card ul {
  padding-left: 20px;
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
}

.service-card ul li {
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .key-services-container h2 {
    font-size: 2.2rem;
  }

  .key-services-subtitle {
    font-size: 1rem;
  }

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

  .service-card ul {
    font-size: 0.95rem;
  }
}








/* Why WeSix for Gifting Section */

.why-wesix-gifting {
  background: linear-gradient(to bottom right, #ffffff, #f6f9fc);
  padding: 100px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 60px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.why-container h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #1a1a1a;
  position: relative;
}

.why-container h2::after {
  content: '';
  width: 70px;
  height: 4px;
  background: #A4CE38;
  display: block;
  margin: 16px auto 0;
  border-radius: 2px;
}

.why-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 50px;
  max-width: 700px;
  margin-inline: auto;
  line-height: 1.6;
}

.why-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.why-item {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: left;
  border-top: 5px solid #A4CE38;
}

.why-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.why-icon {
  font-size: 2rem;
  color: #A4CE38;
  display: inline-block;
  margin-bottom: 10px;
}

.why-item p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.why-item p strong {
  display: block;
  font-size: 1.1rem;
  color: #111;
  margin-bottom: 5px;
}

/* CTA Button */
.cta-button {
  margin-top: 30px;
}

.btn-request {
  display: inline-block;
  padding: 16px 36px;
  background-color: #A4CE38;
  color: #000;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(164, 206, 56, 0.3);
}

.btn-request:hover {
  background-color: #8dbf2b;
  transform: scale(1.04);
}

/* Responsive */
@media (max-width: 768px) {
  .why-container {
    padding: 40px 20px;
  }

  .why-container h2 {
    font-size: 2.2rem;
  }

  .why-subtitle {
    font-size: 1rem;
  }

  .btn-request {
    padding: 14px 24px;
    font-size: 0.95rem;
  }
}


/* Our Process Vertical Section */



/* Shared Styles  about , contac*/
/* ABOUT WESIX */
.about-wesix {
  background-color: #f0f8ff;
  padding: 60px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #34495e;
}

.about-wesix .container {
  max-width: 960px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-wesix .container:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.about-wesix h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #2c3e50;
  text-align: center;
}

.about-wesix p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #2c3e50;
}

/*  */
/* programs training */






/* After hero in home page */
.c2c-section {
  background: #ffffff;
  padding: 60px 20px;
}

.c2c-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.c2c-section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #333;
}

.c2c-description {
  font-size: 2rem;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #555;
}

.c2c-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.c2c-card {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
  flex: 1 1 45%;
  min-width: 300px;
  max-width: 500px;
  text-align: left;
  transition: transform 0.3s ease;
}

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

.c2c-card h3 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 15px;
}

.c2c-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.r2r-logo {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-right: 10px;
  border-radius: 4px;
}

.c2c-image {
  width: 100%;
  height: 500px;
  border-radius: 18px;
  object-fit: cover;
}

.core-offerings-list {
  list-style-type: disc;
  padding-left: 20px;
  color: #444;
  font-size: 1.5rem;
  line-height: 1.8;
}

.core-offerings-list li {
  margin-bottom: 10px;
}

/* ========== HERO CARD STYLES ========== */
.c2c-hero-card {
  background: linear-gradient(to right, #ffffff, #f2f8ff);
  text-align: center;
  padding: 40px 30px;
}

.c2c-headline {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 10px;
  line-height: 1.4;
}

.c2c-subheadline {
  font-size: 1.8rem;
  color: #555;
  margin-bottom: 25px;
}

.c2c-cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}

.c2c-btn-outline {
  display: inline-block;
  padding: 12px 24px;
  font-size: 2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #A4CE38;
  color: #A4CE38;
  background-color: transparent;
}

.c2c-btn-outline:hover {
  background-color: #A4CE38;
  color: #005fa3;
  font-weight: 500;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .c2c-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .c2c-grid {
    flex-direction: column;
  }

  .c2c-card:nth-child(1) { order: 1; }
  .c2c-card:nth-child(2) { order: 2; }
  .c2c-card:nth-child(4) { order: 3; }
  .c2c-card:nth-child(3) { order: 4; }
  .c2c-card:nth-child(5) { order: 5; } /* Why Choose WeSix Text Card */
  .c2c-card:nth-child(6) { order: 6; }

  .c2c-headline {
    font-size: 1.5rem;
  }

  .c2c-subheadline {
    font-size: 1rem;
  }

  .c2c-btn-outline {
    font-size: 0.95rem;
    padding: 10px 20px;
  }
   .c2c-image {
    height: auto;       /* let height adjust naturally */
    max-height: 400px;  /* optional: limit very tall images */
    border-radius: 10px;
  }
}


/*  */



/* ======= Trusted by Leading Brands Section ======= */

/* === Trusted by Leading Brands (Square Box Style) === */

/* .trusted-brands {
  background: radial-gradient(circle at top left, #f0f4f9, #dce4ee);
  padding: 100px 20px;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.trusted-container {
  max-width: 1300px;
  margin: auto;
  position: relative;
  z-index: 1;
}

.trusted-brands h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 60px;
  max-width: 620px;
  margin-inline: auto;
  line-height: 1.6;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  justify-items: center;
  align-items: center;
}

.brand-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 260px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 20px;
}

.brand-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

.brand-card img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: grayscale(0.2);
}

.brand-card:hover img {
  transform: scale(1.08);
  filter: grayscale(0);
} */

/* Optional subtle SVG or background animation can go here */
/* Example: .trusted-brands::before {...} */

/* Responsive */
/* @media (max-width: 768px) {
  .trusted-brands h2 {
    font-size: 2.2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }
} */







/*  */
/* Services Offered — world-class style */
/* Services Offered — unique WeSix styles */
.wesix-services-section {
  background: linear-gradient(to bottom right, #ffffff, #f1f7f9);
  padding: 100px 20px;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.wesix-services-container {
  max-width: 1200px;
  margin: auto;
}

.wesix-services-container h2 {
  font-size: 2.6rem;
  color: #1a1a1a;
  margin-bottom: 10px;
  position: relative;
}

.wesix-services-container h2::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background-color: #A4CE38;
  margin: 16px auto 0;
  border-radius: 2px;
}

.wesix-services-subtitle {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 60px;
  max-width: 700px;
  margin-inline: auto;
  line-height: 1.6;
}

.wesix-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.wesix-service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border-top: 5px solid #A4CE38;
  text-align: center;
}

.wesix-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.wesix-service-card h3 {
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 8px;
}

.wesix-service-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .wesix-services-container h2 {
    font-size: 2rem;
  }
  .wesix-services-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  .wesix-service-card {
    padding: 28px 22px;
  }
  .wesix-service-card h3 {
    font-size: 1.1rem;
  }
  .wesix-service-card p {
    font-size: 0.95rem;
  }
}




/* why choos us */
.why-choose-us {
  background: linear-gradient(to bottom right, #fdfdfd, #f1f7f9);
  padding: 100px 20px;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.why-container {
  max-width: 1200px;
  margin: auto;
}

.why-choose-us h2 {
  font-size: 2.6rem;
  color: #1a1a1a;
  margin-bottom: 10px;
  position: relative;
}

.why-choose-us h2::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background-color: #A4CE38;
  margin: 16px auto 0;
  border-radius: 2px;
}

.why-subtitle {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 60px;
  max-width: 700px;
  margin-inline: auto;
  line-height: 1.6;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.why-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #A4CE38;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.why-icon {
  font-size: 2.4rem;
  color: #A4CE38;
  margin-bottom: 16px;
  display: inline-block;
}

.why-card h3 {
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .why-choose-us h2 {
    font-size: 2rem;
  }

  .why-subtitle {
    font-size: 1rem;
  }

  .why-card h3 {
    font-size: 1.1rem;
  }

  .why-card p {
    font-size: 0.95rem;
  }
}


/* ===== Event Gallery Section ===== */
/* ===== World-Class Event Gallery ===== */
.gallery-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.gallery-section .section-title {
  text-align: center;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 8px;
  color: #111827;
}

.gallery-section .section-subtitle {
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #6b7280;
  margin-bottom: 50px;
}

/* Masonry-style responsive grid */
.gallery-grid {
  column-count: 3;
  column-gap: 20px;
}

@media (max-width: 992px) {
  .gallery-grid { column-count: 2; }
}
@media (max-width: 576px) {
  .gallery-grid { column-count: 1; }
}

/* Gallery item styling */
.gallery-item {
  position: relative;
  margin-bottom: 20px;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

/* Hover effects */
.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.gallery-item:hover img {
  transform: scale(1.08);
}

/* Overlay caption */
.gallery-item::after {
  content: attr(data-caption);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
  padding: 12px 16px;
  font-size: 0.95rem;
  opacity: 0;
  transform: translateY(20%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

