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

body,
html {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* =================================
   HEADER & NAVIGATION
   ================================= */

.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: rgba(255, 255, 255, 0.98);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  z-index: 1001;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  transition: all 0.2s ease;
}

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

.social-icons {
  margin-left: auto;
  margin-right: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.social-icons img {
  width: 30px;
  height: 30px;
  background: white;
  border-radius: 50%;
  padding: 4px;
}

.menu-icons {
  display: flex;
  align-items: center;
}

.menu-toggle,
.close-btn {
  background: #2c3e50;
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  font-size: 18px;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
}

.menu-toggle:hover,
.close-btn:hover {
  background: #34495e;
}

.close-btn {
  display: none;
}

.side-menu {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  background: #2c3e50;
  overflow-x: hidden;
  transition: 0.3s ease;
  padding-top: 80px;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
}

.side-menu ul {
  list-style-type: none;
  padding: 0;
}

.side-menu ul li {
  padding: 25px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background-color 0.2s ease;
}

.side-menu ul li:hover {
  background: rgba(255, 255, 255, 0.05);
}

.side-menu ul li a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 300;
  transition: color 0.2s ease;
}

.side-menu ul li:hover a {
  color: #ecf0f1;
}

/* Legacy styles for compatibility */
.contact-page {
  background: url('assets/background.png') center/cover no-repeat;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  color: white;
  text-shadow: 1px 1px 4px #000;
}


/* =================================
   PAGE SECTIONS
   ================================= */

/* --- Home Page: Video Header --- */
.video-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.3) 1px, transparent 2px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 1px, transparent 2px);
  background-size: 2px 2px;

  pointer-events: none;

}

.video-background {
  position: relative;
  margin-top: 60px;
  height: 100vh;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-text {
  position: absolute;
  top: 35%;
  left: 10%;
  color: white;
  text-shadow: 2px 2px 4px #000;
}

.overlay-text h1 {
  font-size: 3rem;
  margin: 0.2em 0;
}

.overlay-text h2 {
  font-size: 2rem;
  margin: 0.2em 0;
}

.overlay-text p {
  font-size: 1.2rem;
}

/* --- Home Page: Vision Section --- */
.vision-section {
  min-height: 100vh;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 50px;
}

.vision-container {
  max-width: 1200px;
  width: 100%;
  text-align: center;
}

.vision-content {
  margin-bottom: 80px;
}

.vision-title {
  font-size: 4rem;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1.2;
  margin-bottom: 30px;
  letter-spacing: -1px;
}

.vision-subtitle {
  font-size: 1.4rem;
  color: #7f8c8d;
  font-weight: 300;
  margin-bottom: 80px;
  letter-spacing: 1px;
}

.vision-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.stat-circle {
  width: 220px;
  height: 220px;
  border: 2px solid #3498db;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  transition: all 0.3s ease;
}

.stat-circle.featured {
  background: #2980b9;
  color: white;
  transform: scale(1.1);
  border-color: #2980b9;
}

.stat-circle:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(52, 152, 219, 0.2);
}

.stat-circle.featured:hover {
  transform: scale(1.15);
}

.stat-number {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 10px;
}

.large-number {
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  margin: 5px 0;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0.9;
}

.section-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #3498db;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 15px 30px;
  border: 2px solid #3498db;
  border-radius: 50px;
  transition: all 0.3s ease;
  background: white;
}

.nav-link:hover {
  background: #3498db;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.nav-link svg {
  transition: transform 0.3s ease;
}

.nav-link:hover svg {
  transform: translateX(5px);
}

/* --- Home Page: Next Gen Section --- */
.next-gen-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.next-gen-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.next-gen-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.next-gen-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 40px;
}

.next-gen-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 50px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  letter-spacing: -1px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px 30px;
  min-width: 500px;
  text-align: left;
}

.feature-number {
  font-size: 1rem;
  font-weight: 400;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.feature-text {
  font-size: 1rem;
  font-weight: 400;
  flex: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  text-align: center;
}

/* --- Home Page: Expansion Section --- */
.expansion-section {
  min-height: 100vh;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 50px;
}

.expansion-container {
  max-width: 1200px;
  width: 100%;
  text-align: center;
}

.expansion-content {
  margin-bottom: 80px;
}

.expansion-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1.2;
  margin-bottom: 60px;
  letter-spacing: -1px;
}

.expansion-description p {
  font-size: 1.3rem;
  color: #2c3e50;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.6;
}

.expansion-images {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 80px 0;
  flex-wrap: wrap;
}

.image-container {
  width: 300px;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.image-container:hover {
  transform: translateY(-5px);
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expansion-info p {
  font-size: 1.1rem;
  color: #2c3e50;
  font-weight: 400;
  margin-bottom: 15px;
  line-height: 1.6;
}

.contact-nav-button {
  display: inline-block;
  background: #2980b9;
  color: white;
  padding: 20px 60px;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(41, 128, 185, 0.3);
}

.contact-nav-button:hover {
  background: #3498db;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(41, 128, 185, 0.4);
}

/* --- Home Page: Partners Section --- */
.partners-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 0;
}

.partners-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2980b9 100%);
  z-index: 1;
}

.partners-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.partners-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1400px;
  text-align: center;
  padding: 0 20px;
}

.partners-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 80px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  letter-spacing: -1px;
}

.partners-slogan {
  font-size: 1.5rem;
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  margin-bottom: 50px;
  letter-spacing: -1px;
}

.partners-scroll-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 40px 0;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: grab;
  user-select: none;
}

.partners-scroll-container:active {
  cursor: grabbing;
}

.partners-scroll-track {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: scroll-left 30s linear infinite;
  width: fit-content;
  padding: 0 30px;
}

.partners-scroll-track:hover {
  animation-play-state: paused;
}

.partner-logo {
  flex-shrink: 0;
  width: 200px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.partner-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  background: white;
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(0.3);
  transition: filter 0.3s ease;
}

.partner-logo:hover img {
  filter: grayscale(0);
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* --- About Page: Company Intro --- */
.company-intro-section {
  min-height: 100vh;
  background: url('assets/partner background.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 50px;
  position: relative;
  margin-top: 70px;
}

.company-intro-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.intro-container {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
  color: white;
}

.intro-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
  letter-spacing: -1px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.intro-subtitle {
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 50px;
  opacity: 0.9;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.intro-description {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 60px;
  opacity: 0.95;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.intro-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 60px;
}

.about-stat-item {
  text-align: center;
}

.about-stat-number {
  font-size: 3rem;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
  color: #ebe40a;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-stat-label {
  font-size: 1rem;
  font-weight: 300;
  opacity: 0.9;
}

/* --- About Page: Video Section --- */
.about-video-section {
  background: white;
  padding: 100px 20px;
  min-height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-video-container {
  max-width: 800px;
  width: 100%;
  text-align: center;
}

.about-video-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 40px;
}

.about-video-section video {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/*
=================================
About Page: History Timeline (V2 Style)
=================================
*/

.history-section {
  background: #ffffff;
  padding: 100px 20px;
}

.history-container {
  max-width: 900px;
  margin: 0 auto;
}

.history-title {
  position: relative;
  /* Needed for the ::after pseudo-element */
  display: inline-block;
  /* Ensures the line is only as wide as specified */
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
  letter-spacing: 1px;
  padding-bottom: 10px;
  /* Space between text and the new line */
}

/* The new decorative line under the title */
.history-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: #3498db;
}

.history-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
}

/* New container for the two-column layout */
.history-layout-container {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.history-timeline-v2 {
  position: relative;
  flex: 1;
  /* Timeline takes up the available space */
  padding-left: 150px;
  border-left: 2px solid #e0e0e0;
  /* The vertical line */
}

.timeline-entry {
  position: relative;
  margin-bottom: 50px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.timeline-date {
  position: absolute;
  left: -175px;
  top: -5px;
  width: 100px;
  text-align: right;
}

.timeline-date .year {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
  display: block;
}

.timeline-date .month {
  font-size: 1rem;
  color: #777;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #3498db;
  border: 3px solid #ffffff;
  position: absolute;
  left: -9px;
  top: 0;
}

.timeline-info {
  padding-left: 30px;
}

.timeline-info p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.7;
  font-weight: 500;
}

/* New styles for the image gallery on the right */
.timeline-image-gallery {
  flex-basis: 300px;
  /* Increased width to fit images side-by-side */
  padding-top: 60px;
  /* Adjusted alignment */
  display: flex;
  /* Arrange images with flexbox */
  flex-wrap: wrap;
  /* Allow images to wrap to the next line */
  gap: 20px;
  /* Spacing between images */
  justify-content: center;
  /* Center images in the column */
  align-content: flex-start;
  /* Align wrapped items to the top */
}

.gallery-image-wrapper {
  margin-bottom: 0;
  /* Removed margin as 'gap' now handles spacing */
}

.gallery-image-wrapper img {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border: 4px solid #fff;
}

/* Responsive adjustments for the new timeline */
@media (max-width: 768px) {
  .history-layout-container {
    flex-direction: column;
    /* Stack timeline and images on mobile */
  }

  .history-title,
  .history-subtitle {
    text-align: center;
  }

  .history-title::after {
    left: 50%;
    transform: translateX(-50%);
    /* Center the decorative line */
  }

  .timeline-image-gallery {
    display: flex;
    /* Display images side-by-side on mobile */
    gap: 20px;
    padding-top: 20px;
    justify-content: center;
    width: 100%;
  }

  .gallery-image-wrapper {
    margin-bottom: 20px;
  }

  .gallery-image-wrapper img {
    width: 120px;
    height: 120px;
  }
}

/* --- About Page: Media Network --- */
.network-section {
  padding: 100px 20px;
  position: relative;
  color: white;
  background-image: url('assets/networkbackground.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

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

.network-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  letter-spacing: -1px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.network-description {
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 80px;
  opacity: 0.95;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.network-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.network-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.network-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.network-country {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.network-cities {
  font-size: 1rem;
  font-weight: 300;
  opacity: 0.9;
  line-height: 1.6;
}

/* --- About Page: Awards Section --- */
.awards-section {
  background: #ffffff;
  padding: 100px 20px;
}

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

.awards-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 40px;
  letter-spacing: -1px;
}

.awards-line {
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 0 20px;
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}

.awards-line p {
  margin-bottom: 12px;
}

.awards-line strong {
  font-weight: bold;
  color: #000;
}

/* New scrolling container */
.awards-scroll-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  /* Adding a background to differentiate the scroll area */
  background: #f8f9fa;
  border-radius: 12px;
  padding: 40px 0;
}

/* The track that holds and animates the items */
.awards-scroll-track {
  display: flex;
  align-items: stretch;
  /* Ensures items have same height */
  gap: 40px;
  animation: scroll-left 45s linear infinite;
  /* Reusing the animation */
  width: fit-content;
  padding: 0 20px;
}

.awards-scroll-track:hover {
  animation-play-state: paused;
}

/* Updated styles for the individual award items */
.award-item {
  flex-shrink: 0;
  /* Prevents items from squishing */
  width: 350px;
  /* Sets a fixed width for each card */
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.award-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.award-image {
  width: 100%;
  height: 200px;
  object-fit: contain;
  border-radius: 6px;
  margin-bottom: 20px;
}

.award-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
}

.award-description {
  font-size: 1rem;
  color: #7f8c8d;
  line-height: 1.6;
}



/* =================================
   FOOTER
   ================================= */

.footer-section {
  background-color: #2a2a2a;
  color: #ffffff;
  padding: 60px 0 40px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-company {
  flex: 1;
  max-width: 600px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.footer-logo img {
  width: 120px;
}

.company-location {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #cccccc;
  text-transform: uppercase;
}

.company-details h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.company-details p {
  font-size: 14px;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 8px;
}

.address {
  margin: 20px 0;
}

.contact-info {
  margin: 20px 0;
}

.copyright {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #444444;
}

.copyright p {
  font-size: 12px;
  color: #999999;
}

.footer-navigation {
  flex: 0 0 auto;
  margin-top: 20px;
}

.nav-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nav-column a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.3s ease;
  position: relative;
}

.nav-column a:hover {
  color: #ffd700;
}

.nav-column a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #ffd700;
  transition: width 0.3s ease;
}

.nav-column a:hover::after {
  width: 100%;
}

.footer-actions {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 30px;
}

.back-to-top {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ffd700;
  border: none;
  color: #2a2a2a;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  background-color: #ffed4e;
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
  align-items: center;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #444444;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: #ffd700;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.footer-social a img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.footer-social a:hover img {
  filter: brightness(0) invert(0);
}


/* =================================
   MOBILE RESPONSIVE STYLES (CONSOLIDATED)
   ================================= */
@media (max-width: 768px) {

  /* --- General --- */
  .vision-section,
  .expansion-section,
  .partners-section,
  .next-gen-section,
  .company-intro-section,
  .about-video-section,
  .network-section,
  .awards-section,
  .service-intro-section {
    padding: 60px 20px;
  }

  /* --- Header --- */
  .fixed-header {
    padding: 0 16px;
    height: 60px;
  }

  .logo {
    height: 32px;
  }

  .social-icons {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .side-menu {
    padding-top: 60px;
  }

  /* --- Home Page --- */
  .video-background {
    margin-top: 60px;
    height: 60vh;
  }

  .overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    text-align: center;
  }

  .overlay-text h1 {
    font-size: 1.8rem;
  }

  .overlay-text h2 {
    font-size: 1.2rem;
  }

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

  .vision-title {
    font-size: 2.2rem;
  }

  .vision-stats {
    flex-direction: row;
    gap: 20px;
  }

  .stat-circle {
    width: 150px;
    height: 150px;
    padding: 10px;
    transform: scale(1) !important;
  }

  .stat-circle.featured {
    transform: scale(1.05) !important;
  }

  .large-number {
    font-size: 1.5rem;
  }

  .stat-number {
    font-size: 0.8rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .next-gen-section {
    height: auto;
    min-height: 80vh;
  }

  .next-gen-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .features-list {
    gap: 30px;
  }

  .feature-item {
    min-width: auto;
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 10px;
  }

  .feature-number {
    font-size: 1.5rem;
  }

  .feature-text {
    font-size: 1rem;
  }

  .expansion-title {
    font-size: 2.5rem;
  }

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

  .partners-title {
    font-size: 2.2rem;
  }

  .partners-scroll-track {
    gap: 20px;
  }

  .partner-logo {
    width: 100px;
    height: 60px;
    padding: 10px;
  }

  /* --- About Page --- */
  .company-intro-section,
  .about-video-section {
    margin-top: 60px;
  }

  .intro-title,
  .network-title,
  .awards-title,
  .service-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  .intro-subtitle,
  .service-subtitle {
    font-size: 1.1rem;
  }

  .intro-stats {
    flex-direction: row;
  }

  .about-stat-number {
    font-size: 2.5rem;
  }

  .about-video-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .network-section {
    background-attachment: scroll;
  }

  .network-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
  }

  .awards-grid {
    grid-template-columns: 1fr;
  }

  /* Timeline Mobile Styles */
  .timeline::before {
    left: 20px;
    /* Position line on the left */
    transform: translateX(0);
  }

  .timeline-item,
  .timeline-item.right,
  .timeline-item.left {
    width: 100%;
    left: 0;
    /* Reset desktop positioning */
    padding-left: 55px;
    /* Space for content */
    padding-right: 0;
    text-align: left;
    /* Ensure all text is left-aligned */
  }

  .timeline-year {
    top: 20px;
    left: 20px;
    /* Align bubble with the line */
    transform: translateX(-50%);
    /* Center bubble on the line */
    width: 60px;
    height: 60px;
    font-size: 0.9rem;
  }

  /* --- Footer --- */
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

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

  .footer-social {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .footer-social a {
    margin-top: 0;
  }
}

/*
=================================
PRODUCTS & SERVICES PAGE STYLES
=================================
*/

/* Main Showcase Section */
.network-showcase-section {
  width: 100%;
  padding: 80px 20px;
  background-color: #f8f9fa;
}

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

/* Tab System using Radio Inputs and Labels */
.product-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}


.specs-table td[colspan="3"] {
  text-align: left;
  padding-left: 15rem;
  /* Adjust this value to get the perfect position */
}

.tab-input {
  display: none;
  /* Hide the actual radio button */
}

.tab-label {
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 500;
  color: #34495e;
  background-color: #fff;
  border: 2px solid #e9ecef;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(243, 241, 241, 0.05);
}

.tab-label:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Style for the active tab label */
#tab-residential:checked~.product-tabs label[for="tab-residential"],
#tab-commercial:checked~.product-tabs label[for="tab-commercial"],
#tab-carpark:checked~.product-tabs label[for="tab-carpark"],
#tab-retail:checked~.product-tabs label[for="tab-retail"] {
  background-color: #3498db;
  color: #fff;
  border-color: #3498db;
  box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3);
}

/* Content Panel Visibility Logic */
.network-content-panel {
  display: none;
  /* Hide all content panels by default */
  animation: fadeIn 0.5s ease-in-out;
}

/* Show the content panel that corresponds to the checked radio button */
#tab-residential:checked~.network-content-area #residential-content,
#tab-commercial:checked~.network-content-area #commercial-content,
#tab-carpark:checked~.network-content-area #carpark-content,
#tab-retail:checked~.network-content-area #retail-content {
  display: block;
}


/* Network Grid and Card Styling */
.network-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.network-section-item {
  background: #ffffff;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #e9ecef;
  display: flex;
  flex-direction: column;
}

.network-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.network-section-item h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 25px 30px 15px;
}

.network-section-item p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin: 0 30px 30px;
  flex-grow: 1;
}

/* Unique Solution Section */
.unique-solution-section {
  padding: 100px 20px;
  background-color: #ffffff;
  text-align: center;
}

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

.solution-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 60px;
}

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

.solution-item {
  background: #f8f9fa;
  padding: 40px 30px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.solution-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-color: #3498db;
}

.solution-icon {
  margin-bottom: 20px;
  color: #3498db;
}

.solution-item h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*
=================================
PRODUCTS & SERVICES PAGE STYLES (V2)
=================================
*/

/* Main wrapper for the new networks section */
.network-showcase-section-v2 {
  width: 100%;
}

/* New Dark Tab Bar */
.product-tabs-bar {
  width: 100%;
  background-color: #1f1f1f;
  padding: 0 20px;
  border-bottom: 1px solid #333;
}

.tabs-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.tab-label {
  background: transparent;
  border: none;
  border-bottom: 4px solid transparent;
  color: #a0a0a0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 20px 25px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.tab-label:hover {
  color: #ffffff;
}

/* Style for the active tab label */
#tab-residential:checked~.product-tabs-bar label[for="tab-residential"],
#tab-commercial:checked~.product-tabs-bar label[for="tab-commercial"],
#tab-carpark:checked~.product-tabs-bar label[for="tab-carpark"],
#tab-retail:checked~.product-tabs-bar label[for="tab-retail"] {
  color: #ffffff;
  border-bottom-color: #f0ad4e;
}

/* Content Area */
.network-content-area-v2 {
  width: 100%;
  padding: 80px 20px;
  background-color: #ffffff;
}

.network-content-panel {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

/* Show the content panel that corresponds to the checked radio button */
#tab-residential:checked~.network-content-area-v2 #residential-content,
#tab-commercial:checked~.network-content-area-v2 #commercial-content,
#tab-carpark:checked~.network-content-area-v2 #carpark-content,
#tab-retail:checked~.network-content-area-v2 #retail-content {
  display: block;
}

/* New Two-Column Layout for Network Items */
.network-item-v2 {
  display: flex;
  gap: 40px;
  align-items: center;
  background: #f8f9fa;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.network-item-image {
  flex: 1 1 50%;
  max-width: 50%;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
}

.network-item-content {
  flex: 1 1 50%;
  max-width: 50%;
  text-align: left;
}

.network-item-content h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
}

.network-item-content p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* New Stat Boxes */
.network-stats {
  display: flex;
  gap: 15px;
}

.network-stats .stat {
  padding: 15px 25px;
  border-radius: 6px;
  text-align: center;
}

.network-stats .stat.light {
  background-color: #e9ecef;
  color: #2c3e50;
}

.network-stats .stat.dark {
  background-color: #343a40;
  color: #ffffff;
}

.network-stats .stat span {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 5px;
  opacity: 0.9;
}

.network-stats .stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
}


/*
=================================
Product Specifications Section
=================================
*/

.product-specs-section {
  width: 100%;
  padding: 80px 20px;
  background-color: #ffffff;
}

.specs-title {
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
}

.specs-subtitle {
  color: #555;
  margin-bottom: 50px;
}

.specs-images-container {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.spec-image-item-wide {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

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

.specs-table-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c3e50;
  margin-top: 60px;
  margin-bottom: 30px;
  text-align: center;
}

.specs-table-wrapper {
  overflow-x: auto;
}

.specs-table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-collapse: collapse;
  text-align: left;
}

.specs-table th,
.specs-table td {
  padding: 15px;
  border-bottom: 1px solid #e9ecef;
  font-size: 1rem;
}

.specs-table thead {
  background-color: #f8f9fa;
}

.specs-table th {
  font-weight: 600;
  color: #2c3e50;
}

.specs-table tbody tr:hover {
  background-color: #f1f3f5;
}

.specs-table td:first-child {
  font-weight: 500;
  color: #34495e;
}

/* Style for the left-aligned header */
.specs-header-container {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.product-specs-section .specs-title {
  font-size: 2.2rem;
  margin-bottom: 5px;
}

.product-specs-section .specs-subtitle {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 0;
}

.installation-header {
  margin-top: 80px;
}

/*
=================================
NEW: Engagement Hero Section
=================================
*/

.engagement-hero-section {
  position: relative;
  padding: 120px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  color: #ffffff;
  background-image: url('assets/product-background.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.engagement-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.engagement-content {
  position: relative;
  max-width: 900px;
  text-align: left;
}

.engagement-title {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.cursive-highlight {
  font-family: "Brush Script MT", "Brush Script Std", cursive;
  color: #f0ad4e;
  font-weight: 400;
  font-size: 4.5rem;
}

.engagement-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Service Introduction Section - Recommended */
.service-intro-section {
  background-color: #ffffff;
  padding: 120px 40px;
  text-align: center;
  background-image: url('assets/partner background.png');
  background-size: cover;
  background-position: center;
}

.service-container {
  max-width: 900px;
  margin: 0 auto;
}

.service-title {
  font-size: 4.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.2;
}

.service-subtitle {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 60px;
  letter-spacing: 1px;
}

.service-description p {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}


/*
=================================
MOBILE RESPONSIVE STYLES (Consolidated & Corrected)
=================================
*/
@media (max-width: 768px) {

  /* General */
  body {
    line-height: 1.5;
  }

  .vision-section,
  .expansion-section,
  .partners-section,
  .next-gen-section,
  .company-intro-section,
  .about-video-section,
  .network-section,
  .awards-section,
  .product-specs-section,
  .engagement-hero-section,
  .service-intro-section {
    padding: 60px 20px;
  }

  /* Header */
  .fixed-header {
    padding: 0 16px;
    height: 60px;
    justify-content: space-between;
  }

  .logo {
    height: 32px;
    margin-right: auto;
  }

  .menu-toggle {
    display: flex;
    background-color: #333;
    width: 36px;
    height: 36px;
    border-radius: 4px;
    border: none;
    position: relative;
    z-index: 1002;
    font-size: 1.5rem;
  }

  .social-icons {
    display: none;
  }

  .side-menu {
    padding-top: 60px;
  }

  /* Hero Video & Overlay Text */
  .video-background {
    margin-top: 60px;
    height: 60vh;
  }

  .overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  }

  .overlay-text h1 {
    font-size: 1.75rem;
    line-height: 1.2;
  }

  .overlay-text h2 {
    font-size: 1.2rem;
    line-height: 1.3;
  }

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

  /* Vision Section */
  .vision-title {
    font-size: 2.2rem;
  }

  .vision-stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .stat-circle {
    width: 160px;
    height: 160px;
    padding: 10px;
    transform: scale(1) !important;
  }

  .stat-circle.featured {
    transform: scale(1.05) !important;
  }

  .large-number {
    font-size: 1.8rem;
  }

  .stat-number {
    font-size: 0.8rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  /* Next Gen Section */
  .next-gen-section {
    height: auto;
    min-height: 80vh;
  }

  .next-gen-content {
    padding: 0 20px;
  }

  .next-gen-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .feature-item {
    min-width: auto;
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 20px;
  }

  .feature-number {
    font-size: 2rem;
  }

  .feature-text {
    font-size: 1.1rem;
  }

  /* Expansion Section */
  .expansion-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }

  .expansion-description p {
    font-size: 1.1rem;
  }

  .expansion-images {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .image-container {
    width: 280px;
    height: 180px;
  }

  .expansion-info p {
    font-size: 1rem;
  }

  .contact-nav-button {
    padding: 18px 40px;
    font-size: 1.1rem;
  }

  /* Partners Section (Index Page) */
  .partners-section {
    min-height: 60vh;
    padding: 60px 0;
  }

  .partners-title {
    font-size: 2.2rem;
    margin-bottom: 50px;
  }

  .partners-scroll-track {
    gap: 20px;
    padding: 0 20px;
  }

  .partner-logo {
    width: 100px;
    height: 60px;
    padding: 10px;
  }

  /* About Page Specific */
  .company-intro-section {
    margin-top: 60px;
  }

  .intro-title,
  .network-title,
  .awards-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  .intro-subtitle {
    font-size: 1.1rem;
  }

  .intro-description,
  .network-description {
    font-size: 1.1rem;
  }

  .intro-stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }

  .about-stat-number {
    font-size: 2.5rem;
  }


  /* Network Section (About Page) */
  .network-section {
    background-attachment: scroll;
    /* Fixes background on mobile */
  }

  .network-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
  }

  /* Products Page Specific */
  .service-title {
    font-size: 2.5rem;
    /* Reduced from 4.5rem */
  }

  .service-subtitle {
    font-size: 1.1rem;
    /* Reduced from 1.3rem */
  }

  .page-hero {
    margin-top: 60px;
    height: 30vh;
  }

  .page-hero h1 {
    font-size: 2.2rem;
  }

  .product-tabs {
    flex-direction: column;
    gap: 10px;
  }

  .network-item-v2 {
    flex-direction: column;
    padding: 25px;
  }

  .network-item-image {
    max-width: 100%;
    max-height: 250px;
    /* Constrain image height on mobile */
  }

  .network-item-content {
    max-width: 100%;
  }

  .tabs-container {
    justify-content: space-around;
    flex-wrap: wrap;
    /* Allow tabs to wrap on small screens */
  }

  .tab-label {
    padding: 15px 10px;
    font-size: 0.9rem;
  }

  .network-section-item h3 {
    font-size: 1.3rem;
  }

  .specs-header-container,
  .product-specs-section .specs-title,
  .product-specs-section .specs-subtitle {
    text-align: center;
  }

  /* Awards */
  .awards-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .award-item {
    padding: 20px;
  }

  .award-image {
    height: 180px;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

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

  .footer-social {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .footer-social a {
    margin-top: 0;
  }
}

/* =================================
   ABOUT PAGE: VIDEO SECTION (CORRECTED)
   ================================= */

/* Mobile-First Styles (Default) */
.about-video-section {
  background: white;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-video-container {
  max-width: 800px;
  width: 100%;
  text-align: center;
}

.about-video-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  text-align: center;
}

.about-video-section video {
  width: 100%;
  height: auto;
}

/* Desktop Styles */
@media (min-width: 769px) {
  .about-video-section {
    min-height: 60vh;
    padding: 100px 20px;
  }

  .about-video-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }
}

.contact-form-section {
  background: #ffffff;
  padding: 80px 20px;
  max-width: 960px;
  margin: 0 auto;
}

.contact-intro {
  text-align: center;
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
}

.contact-form textarea {
  min-height: 120px;
}

.contact-form button {
  width: fit-content;
  padding: 12px 24px;
  background-color: white;
  color: orange;
  border: 1px solid orange;
  font-weight: bold;
  border-radius: 2px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: orange;
  color: white;
}


@media (max-width: 768px) {
  .timeline::before {
    left: 32px;
    transform: translateX(0);
  }

  .timeline-item,
  .timeline-item.left,
  .timeline-item.right {
    width: 100%;
    padding-left: 70px;
    text-align: left;
  }

  .timeline-year {
    left: 32px;
    transform: translateX(-50%);
    top: 25px;
  }
}

@media (max-width: 768px) {
  .timeline::before {
    left: 32px;
    transform: translateX(0);
  }

  .timeline-item,
  .timeline-item.left,
  .timeline-item.right {
    width: 100%;
    left: 0 !important;
    padding: 0 0 0 60px;
    margin-bottom: 40px;
    text-align: left;
    justify-content: flex-start !important;
  }

  .timeline-content {
    width: calc(100% - 80px);
  }

  .timeline-year {
    left: 32px !important;
    transform: translateX(-50%) !important;
    top: 0 !important;
    margin-bottom: 10px;
  }
}

/*
=================================
About Page - Chairman Section
=================================
*/

.chairman-section {
  padding: 100px 40px;
  background-color: #f8f9fa;
  display: flex;
  justify-content: center;
  align-items: center;
}

.chairman-container {
  display: flex;
  max-width: 1200px;
  width: 100%;
  gap: 60px;
  background-color: #333;
  color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.chairman-image-col {
  flex-basis: 40%;
  background-color: #2a2a2a;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.chairman-title-box {
  border-bottom: 2px solid #f0ad4e;
  margin-bottom: 30px;
  padding-bottom: 15px;
}

.chairman-title-box h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

.chairman-photo {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 50%;
  border: 4px solid #444;
}

.chairman-details-col {
  flex-basis: 60%;
  padding: 60px 40px;
}

.chairman-name {
  font-size: 2.2rem;
  font-weight: 700;
  color: #f0ad4e;
  /* Gold accent color */
  margin-bottom: 5px;
}

.chairman-role {
  font-size: 1.2rem;
  font-weight: 400;
  color: #ccc;
  margin-bottom: 40px;
  font-style: italic;
}

.chairman-awards-list {
  list-style: none;
  padding-left: 0;
}

.chairman-awards-list li {
  font-size: 1rem;
  line-height: 1.8;
  color: #ddd;
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}

.chairman-awards-list li::before {
  content: '•';
  color: #f0ad4e;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

/* Mobile Responsive Styles for Chairman Section */
@media (max-width: 768px) {
  .chairman-container {
    flex-direction: column;
    gap: 0;
  }

  .chairman-details-col {
    padding: 40px 20px;
  }

  .chairman-name {
    font-size: 1.8rem;
  }

  .chairman-role {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .chairman-awards-list li {
    font-size: 0.9rem;
  }
}

/* Responsive Styles for Scrolling Awards */
@media (max-width: 768px) {
  .awards-title {
    font-size: 2.5rem;
  }

  .awards-scroll-track {
    gap: 20px;
  }

  .award-item {
    width: 300px;
    /* Slightly smaller cards on mobile */
  }
}

/*
=================================
NEW: Product Screen Tab Styles
=================================
*/

.product-screen-tabs-bar {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  border-bottom: 1px solid #dee2e6;
}

.product-screen-tabs-bar .tabs-container {
  display: flex;
  gap: 5px;
}

.product-screen-tabs-bar .tab-label {
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 500;
  color: #34495e;
  background-color: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: -1px;
  /* Aligns the bottom border with the container's border */
}

.product-screen-tabs-bar .tab-label:hover {
  background-color: #f8f9fa;
  color: #2980b9;
}

#tab-screen-25:checked~.product-screen-tabs-bar label[for="tab-screen-25"],
#tab-screen-32:checked~.product-screen-tabs-bar label[for="tab-screen-32"],
#tab-screen-55:checked~.product-screen-tabs-bar label[for="tab-screen-55"] {
  color: #2980b9;
  border-bottom-color: #2980b9;
}

.product-screen-content-area {
  padding-top: 40px;
}

.product-screen-content-panel {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
  gap: 40px;
  align-items: center;
  justify-content: center;
  /* This is the new property to center the content */
  background-color: #fdfdfd;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

#tab-screen-25:checked~.product-screen-content-area #panel-screen-25,
#tab-screen-32:checked~.product-screen-content-area #panel-screen-32,
#tab-screen-55:checked~.product-screen-content-area #panel-screen-55 {
  display: flex;
}

.product-screen-image-wrapper {
  /* flex property removed to allow content to dictate size */
  flex-shrink: 0;
  /* Prevents the image from shrinking */
  text-align: center;
}

.product-screen-image-wrapper img {
  max-width: 100%;
  height: auto;
  max-height: 400px;
  border-radius: 6px;
}

.product-screen-details {
  /* flex property removed */
  max-width: 450px;
  /* Added max-width to keep details from becoming too wide */
}

.product-screen-details h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
}

.product-screen-details ul {
  list-style: none;
  padding: 0;
}

.product-screen-details li {
  font-size: 1.1rem;
  color: #333;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

.product-screen-details li:last-child {
  border-bottom: none;
}

.product-screen-details li strong {
  color: #34495e;
  min-width: 120px;
  display: inline-block;
}

/* Responsive adjustments for new product tabs */
@media (max-width: 768px) {
  .product-screen-tabs-bar .tabs-container {
    flex-direction: column;
    width: 100%;
  }

  .product-screen-tabs-bar .tab-label {
    text-align: center;
    border-bottom: 1px solid #dee2e6;
  }

  #tab-screen-25:checked~.product-screen-tabs-bar label[for="tab-screen-25"],
  #tab-screen-32:checked~.product-screen-tabs-bar label[for="tab-screen-32"],
  #tab-screen-55:checked~.product-screen-tabs-bar label[for="tab-screen-55"] {
    border-bottom-color: #2980b9;
    border-width: 3px;
  }

  .product-screen-content-panel {
    flex-direction: column;
    padding: 20px;
  }

  .product-screen-details h3 {
    text-align: center;
    font-size: 1.5rem;
  }
}

/* Styling for the new network item links */
.network-item-link {
  text-decoration: none;
  /* Removes the underline from links */
  color: inherit;
  /* Makes the text color match its container */
  display: block;
  /* Ensures the link takes up the full space of the grid item */
}

/* Preloader Container Styles */
#preloader {
  background: #ffffff;
  /* White background to hide page content */
  position: fixed;
  /* Sits on top of everything */
  top: 0;
  left: 0;
  width: 100vw;
  /* Full viewport width */
  height: 100vh;
  /* Full viewport height */
  z-index: 9999;
  /* Ensures it's on top */

  /* Center the square using Flexbox */
  display: flex;
  justify-content: center;
  align-items: center;

  /* For the fade-out effect */
  transition: opacity 0.75s, visibility 0.75s;
}

/* Class to hide the preloader after loading */
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}


/* The Flipping Square */
.flipping-square {
  width: 50px;
  height: 50px;
  background-color: #a57d51;
  /* The brown color from your image */

  /* Link to the animation */
  animation: flip 1.5s infinite ease-in-out;
}


/* The Animation Keyframes */
@keyframes flip {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }

  50% {
    transform: perspective(120px) rotateX(-180deg) rotateY(0deg);
  }

  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-180deg);
  }
}



/* ===== Cases / Landmark Marquee ===== */
.cases-section { padding: 80px 5%; background:#f7f7f7; }
.cases-wrap { display:grid; grid-template-columns: 1fr 2fr; gap:48px; align-items:center; }
@media (max-width: 980px){ .cases-wrap{ grid-template-columns:1fr; } }

.cases-title{ font-weight:800; line-height:1.1; font-size:clamp(2rem,5vw,3.5rem); }
.cases-title span{ color:#f09a1a; }
.cases-underline{ width:64px; height:3px; background:#111; margin:16px 0 12px; }
.cases-desc{ color:#444; line-height:1.7; }

/* marquee */
.cases-scroll-container{ position:relative; overflow:hidden; width:100%;
  mask-image:linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%); }
.cases-scroll-track{ display:flex; gap:24px; width:max-content; animation:cases-marquee 28s linear infinite; }
.cases-scroll-container:hover .cases-scroll-track{ animation-play-state:paused; }
@keyframes cases-marquee{ from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* cards */
.case-card {
  position: relative;
  width: clamp(240px, 26vw, 320px);
  aspect-ratio: 3/4;
  border-radius: 10px;
  overflow: hidden;
  background: #000; /* fallback */
  box-shadow: 0 10px 24px rgba(0,0,0,.12);

  /* background image settings */
  background-size: cover;       /* fills box fully */
  background-position: center;  /* centers */
  background-repeat: no-repeat;
}



.building-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  color: #fff;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.65) 0%,   /* solid dark at the bottom */
    rgba(0,0,0,0) 100%     /* fade to transparent upwards */
  );

  padding: 16px 20px;
}


/* font + sizes */
.building-title{ font-family:'Roboto Condensed', sans-serif; font-weight:700; font-size:1.25rem; margin:0; }
.building-subtitle{ font-family:'Roboto Condensed', sans-serif; font-weight:400; font-size:.95rem; margin:.2rem 0 0; opacity:.95; }
