:root {
  --primary-color: #FFAF27;
  --text-color: black;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: popins, sans-serif;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding: 15px 24px;
  gap: 24px;
  flex-wrap: nowrap;
  max-width: 1500px;
  margin: 0 auto;
  height: auto;
  position: relative;
  z-index: 100;
}

.logo {
  font-size: 24px;
  font-family: "Baloo Chettan 2", sans-serif;
  font-weight: bold;
  color: var(--text-color);
  white-space: nowrap;
}

.contact {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  flex: 1;
  flex-wrap: nowrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.contact-item i {
  color: var(--primary-color);
  font-size: 25px;
}

.label {
  font-size: 12px;
  color: gray;
}

.value {
  font-size: 14px;
  color: var(--text-color);
}

.quote-btn-container {
  display: flex;
  justify-content: flex-end;
  white-space: nowrap;
}

.quote-btn {
  padding: 10px 30px;
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.quote-btn:hover {
  background: var(--primary-color);
  color: white;
}

/* Mobile view */
@media (max-width: 768px) {
  .header {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px;
    padding: 15px 20px;
    height: auto;
  }

  .contact {
    flex: 1 1 auto;
    justify-content: center;
    flex-wrap: wrap;
  }

  .quote-btn-container {
    flex: none;
  }
}



/* Second header - sticky with no gap */
.second-header {
  background-color: black;
  padding: 18px 36px;
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 999;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.location {
  color: white;
  font-weight: bold;
  font-size: 14px;
}

.contact-btn {
  display: none;
  background: white;
  color: #FFAF27;
  border: none;
  padding: 10px 24px;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
}

.nav-links {
  font-size: 25px;
  display: flex;
  align-items: left;
  gap: 24px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.separator {
  width: 1px;
  height: 14px;
  background-color: white;
  display: inline-block;
}

.menu-icon {
  display: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .location {
    display: none;
  }

  .contact-btn {
    display: inline-block;
  }

  .nav-links {
    display: none;
  }

  .menu-icon {
    display: inline-block;
  }

  .nav-links.mobile-visible {
    display: flex !important;
    flex-direction: column;
    background: #FFAF27;
    position: absolute;
    top: 50px;
    left: -40px;
    right: -40px;
    padding: 64px 48px;
    z-index: 999;
  }

  .nav-links.mobile-visible a {
    padding: 8px 0;
  }

  .nav-links.mobile-visible .separator {
    display: none;
  }
}





/* Hero section */
.hero-section {
  position: relative;
  background: url('image/hero1.jpg') center/cover no-repeat;
  color: white;
  min-height: 86vh;
  padding: 100px 24px 80px; /* Adjusted to account for sticky second-header only */
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
  backdrop-filter: blur(4px);
  z-index: 0;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1500px;
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 40px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.hero-left {
  flex: 1;
  text-align: left;
  min-width: 300px;
}

.subtitle {
  font-size: 16px;
  color: #FFAF27;
  font-weight: 600;
  margin-bottom: 10px;
}

.hero-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 15px;
}

.hero-description {
  font-size: 16px;
  margin-bottom: 25px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 24px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s ease;
}

.primary-btn {
  background: #FFAF27;
  color: black;
}

.primary-btn:hover {
  background: #e79e1e;
}

.secondary-btn {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.secondary-btn:hover {
  background: white;
  color: #FFAF27;
}

.hero-right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid #FFAF27;
  color: #FFAF27;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  animation: pulse 2s infinite;
  transition: 0.3s ease;
}

.video-btn:hover {
  background: #FFAF27;
  color: black;
  transform: scale(1.1);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 175, 39, 0.6);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 175, 39, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 175, 39, 0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
    gap: 32px;
  }

  .hero-left {
    width: 100%;
  }

  .hero-buttons {
    justify-content: flex-start;
  }

  .hero-right {
    align-self: center;
    margin-top: 20px;
  }

  .hero-section {
    padding-top: 140px;
  }
}



/* Section Layout */
.matsu-counter-section {
  position: relative;
  margin-top: -60px;
  z-index: 3;
  padding: 0 20px; /* reduced padding */
}

/* Wrapper to control max width */
.counter-wrapper {
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
}

/* Card Container */
.counter-container {
  display: flex;
  flex-wrap: wrap;
  min-height: 400px;
  background: white;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  overflow: hidden;
}

/* Left Side */
.counter-left {
  flex: 1;
  background-color: #FFAF27;
  color: white;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.counter-left h2 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.counter-left p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 35px;
  color: #fff;
  opacity: 0.95;
  max-width: 520px;
}

.learn-more-btn {
  background-color: white;
  color: #FFAF27;
  padding: 10px 20px;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
  border-radius: 20px;
  width: fit-content;
  border: 2px solid white;
}

.learn-more-btn:hover {
  background-color: transparent;
  color: white;
}

/* Right Side */
.counter-right {
  flex: 1;
  background-color: white;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
  padding: 60px 40px;
  align-items: center;
  text-align: center;
}

.counter-item i {
  font-size: 38px;
  color: #FFAF27;
  margin-bottom: 8px;
}

.counter-item h3 {
  font-size: 34px;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
}

.counter-item p {
  font-size: 15px;
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  .counter-container {
    flex-direction: column;
    border-radius: 0;
  }

  .counter-left,
  .counter-right {
    width: 100%;
    padding: 40px 20px;
  }

  .counter-left {
    text-align: left;
  }

  .counter-right {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .counter-left h2 {
    font-size: 26px;
  }

  .counter-item h3 {
    font-size: 28px;
  }
}




.mission-section {
  background-color: #ffffff;
  padding: 60px 40px;
  width: 100%;
}

.mission-content {
  max-width: 1500px;
  margin: 0 auto;
}

.mission-content h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #FFAF27;
  font-weight: bold;
}

.mission-content p {
  font-size: 1.0rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: #333;
  max-width: 900px;
}

.learn-btn {
  background-color: #FFAF27;
  color: #fff;
  padding: 0.7rem 1.4rem;
  text-decoration: none;
  display: inline-block;
  border-radius: 20px;
  margin-bottom: 2rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.learn-btn:hover {
  background-color: #14532d;
}

.mission-flex {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.mission-image {
  flex: 1 1 45%;
}

.mission-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.mission-paragraph {
  flex: 1 1 45%;
  font-size: 1.2rem;
  line-height: 2;
  color: #444;
}

.mission-paragraph h3 {
  font-size: 1.8rem;
  color: #FFAF27;
  margin-bottom: 1rem;
  font-weight: 700;
}

.mission-paragraph .learn-btn {
  margin-top: 1.5rem;
}

/* Mobile Layout */
@media (max-width: 768px) {
  .mission-flex {
    flex-direction: column;
  }

  .mission-image {
    order: 2;
    margin-bottom: 1.5rem;
  }

  .mission-paragraph {
    order: 3;
  }
}








.services-section {
  background-color: #001e28;
  padding: 60px 40px;
  color: black;
}

.services-content {
  max-width: 1500px;
  margin: 0 auto;
  text-align: center;
}

.services-content h2 {
  font-size: 2.8rem;
  color: #FFAF27;
  margin-bottom: 1rem;
  font-weight: 700;
}

.services-content p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  color: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  width: 100%;
}

.service-card {
  background-color: white;
  border-left: 6px solid #FFAF27;
  border-radius: 12px;
  padding: 2rem 1.5rem 2rem 2rem;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  color: black;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.service-card i {
  background-color: #FFAF27;
  color: white;
  font-size: 1.2rem;
  padding: 0.6rem;
  border-radius: 50%;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
}

.service-card h3 {
  font-size: 1.0rem;
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
}

@media (max-width: 768px) {
  .services-section {
    padding: 40px 20px; /* Reduce side padding */
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .service-card {
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
  }

  .service-card i {
    margin: 0 auto 1rem auto;
  }

  .service-card h3,
  .service-card p {
    text-align: center;
  }
}



.how-we-work-section {
  background-color: #fff;
  padding: 60px 5%;
}

.how-we-work-container {
  max-width: 1500px;
  margin: 0 auto;
  text-align: center;
}

.how-we-work-title {
  font-size: 2.5rem;
  color: #FFAF27;
  font-weight: 800;
  margin-bottom: 1rem;
}

.how-we-work-description {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Steps Grid */
.how-we-work-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: left;
}

.step i {
  font-size: 2.2rem;
  color: #FFAF27;
  margin-bottom: 10px;
  display: inline-block;
}

.step h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #222;
}

.step p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .how-we-work-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .how-we-work-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .how-we-work-title {
    font-size: 2rem;
  }

  .how-we-work-description {
    font-size: 1rem;
  }

  .step i {
    font-size: 1.8rem;
  }
}






.commitment-section {
  background: url('image/hero1.jpg') no-repeat center center/cover;
  position: relative;
  padding: 80px 20px;
  color: white;
  width: 100%;
}

.commitment-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 100px 60px;
}

.commitment-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  gap: 3rem;
  flex-wrap: wrap;
}

.commitment-text {
  flex: 1 1 500px;
  color: white;
}

.commitment-text h2 {
  font-size: 2.8rem;
  color: #FFAF27;
  font-weight: 800;
  margin-bottom: 1rem;
}

.commitment-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #f3f3f3;
}

.commitment-btn {
  background-color: #FFAF27;
  color: black;
  padding: 0.8rem 1.6rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.commitment-btn:hover {
  background-color: #e69900;
}

.commitment-image {
  flex: 1 1 400px;
  text-align: center;
}

.commitment-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
  .commitment-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .commitment-text {
    flex: 1 1 100%;
  }

  .commitment-text h2 {
    font-size: 2rem;
  }

  .commitment-text p {
    font-size: 1rem;
  }

  .commitment-image {
    flex: 1 1 100%;
  }
}




.why-choose-section {
  background-color: white;
  padding: 80px 30px;
  color: black;
}

.why-choose-wrapper {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  flex-direction: row; /* Ensures left-to-right layout */
}

/* LEFT: Stats */
.why-stats {
  flex: 1 1 40%;
  order: 1; /* Always first */
}

.why-stats h3 {
  font-size: 2rem;
  color: #FFAF27;
  margin-bottom: 2rem;
}

.stat-bar {
  margin-bottom: 1.5rem;
}

.stat-bar p {
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
}

.bar {
  height: 10px;
  background-color: #eee;
  border-radius: 20px;
  overflow: hidden;
}

.bar-fill.red {
  height: 100%;
  background-color: red;
  border-radius: 20px;
  transition: width 0.6s ease-in-out;
}

/* RIGHT: Cards */
.why-cards {
  flex: 1 1 55%;
  order: 2; /* Always second */
}

.why-cards h2 {
  font-size: 2.4rem;
  color: #FFAF27;
  margin-bottom: 2rem;
  text-align: center;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.why-card {
  background: #fdf7ea;
  border-left: 6px solid #FFAF27;
  border-radius: 12px;
  padding: 1.8rem 1.2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
}

.why-card i {
  font-size: 2rem;
  color: #FFAF27;
  margin-bottom: 0.8rem;
}

.why-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

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

/* Responsive (Mobile) */
@media (max-width: 768px) {
  .why-choose-wrapper {
    flex-direction: column;
  }

  .why-stats,
  .why-cards {
    flex: 1 1 100%;
  }

  .stat-bar p {
    font-size: 0.95rem;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .why-cards h2 {
    font-size: 1.8rem;
  }
}








/* === Services Section Styles (Scoped) === */
.modern-services-section {
  padding: 60px 20px;
  max-width: 1600px;
  margin: auto;
  font-family: 'Segoe UI', sans-serif;
}

/* Section Title */
.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #333;
}

/* Service Tabs Container */
.service-tabs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  white-space: nowrap;
  justify-content: flex-start;
  padding-bottom: 10px;
  margin-bottom: 30px;
  scrollbar-width: none; /* Firefox */
}

.service-tabs::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

/* Buttons */
.service-tabs button {
  background-color: #f1f1f1;
  color: #333;
  border: none;
  padding: 10px 18px;
  font-size: 15px;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  flex-shrink: 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.service-tabs button:hover {
  background-color: #ddd;
}

/* Gallery Grid Container */
.gallery-wrapper .gallery-grid {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  animation: fadeIn 0.4s ease-in-out;
}

/* Gallery Images */
.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

/* Optional: Larger cards for big screens */
@media (min-width: 1200px) {
  .gallery-wrapper .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

/* Fade-in Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}










.matsu-industry-section {
  background-color: #003241;
  color: white;
  padding: 80px 40px;
  font-family: 'Segoe UI', sans-serif;
}

.matsu-industry-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: auto;
  gap: 50px;
}

.matsu-text-block {
  flex: 1 1 60%;
  min-width: 500px;
}

.matsu-text-block h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.matsu-text-block h2 span {
  color: #f97316;
  font-weight: bold;
}

.matsu-text-block p {
  font-size: 1.1rem;
  color: #d1d5db;
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 600px;
}

.matsu-banner {
  background-color: #f97316;
  padding: 30px 40px;
  clip-path: polygon(0 0, 96% 0, 100% 50%, 96% 100%, 0 100%);
  color: #fff;
  max-width: 700px;
}

.matsu-banner-content ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 60px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.matsu-banner-content li {
  font-size: 1.1rem;
  font-weight: 600;
}

.matsu-image-block {
  flex: 1 1 35%;
  min-width: 300px;
}

.matsu-image-block img {
  width: 100%;
  max-width: 450px;
  border-radius: 10px;
  object-fit: cover;
}








 .action-section {
    padding: 3rem 1rem;
    background: #fff;
    text-align: center;
  }

  .action-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #FFAF27;
  }

  .action-header p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
  }

  .join-btn {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    background: #FFAF27;
    color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .join-btn:hover {
    background: #0056b3;
  }

  /* Desktop Grid */
  .desktop-view {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    animation: fadeIn 1s ease-in-out;
  }

  .desktop-view img {
    width: calc(33.33% - 1rem);
    max-width: 300px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }

  .desktop-view img:hover {
    transform: scale(1.03);
  }

  /* Mobile Carousel */
  .mobile-view {
    display: none;
    position: relative;
    margin-top: 2rem;
    max-width: 400px;
    margin-inline: auto;
  }

  .carousel-images {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }

  .carousel-images img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }

  .carousel-images img.active {
    opacity: 1;
  }

  .carousel-dots {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
  }

  .carousel-dots .dot {
    width: 6px;
    height: 6px;
    background: #ccc;
    border-radius: 50%;
    transition: background 0.3s ease;
  }

  .carousel-dots .dot.active {
    background: #007bff;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @media (max-width: 768px) {
    .desktop-view {
      display: none;
    }

    .mobile-view {
      display: block;
    }
  }





.matsu-footer {
  background-color: #001e28;
  color: #ffffff;
  padding: 60px 20px 30px;
  font-family: 'Segoe UI', sans-serif;
}

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

.footer-column {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #f97316;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-column a {
  text-decoration: none;
  color: #d1d5db;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #f97316;
}

.footer-column i {
  margin-right: 8px;
  color: #f97316;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: #888;
  border-top: 1px solid #2a4c58;
  padding-top: 20px;
}

