:root{
    --background-color: #1b4053;
    --font-colour:#d8c4b1;
   
}



.about-hero {
  height: 100vh;
  background: url("office-building.jpg") no-repeat center center/cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6); /* light overlay */
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-title {
  font-size: 3.5rem;
  color: #ffffff;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}
/* ===== TEXT-UP ANIMATION ===== */
.text-up {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease-out;
}

.text-up.show {
  opacity: 1;
  transform: translateY(0);
}
/* ============================
   PRODUCT OVERVIEW SECTION
============================ */
.product-overview {
  padding: 100px 50px;
  background: #f8f9fa;
  text-align: center;
}

.section-subtitle {
  font-size: 1rem;
  color: #0b3c45;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 70px;
}

.section-title span {
  color: #0b3c45;
}

/* Product Grid */
.product-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Product Item */
.product-item {
  display: flex;
  align-items: center;
  gap: 40px;
  background:var(--background-color) ;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 40px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.product-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Alternate layout for variation */
.product-item:nth-child(even) {
  flex-direction: row-reverse;
}

/* Product Image */
.product-image img {
  width: 420px;
  height: 280px;
  object-fit: cover;
  border-radius: 10px;
  border: 5px solid transparent;
  background: linear-gradient(135deg, #2f2f2f, white);
  padding: 4px;
}

/* Product Text */
.product-text {
  text-align: left;
  flex: 1;
}

.product-text h3 {
  font-size: 1.6rem;
  color: var(--font-colour);
  font-weight: 700;
  margin-bottom: 15px;
}

.product-text p {
  font-size: 1rem;
  color: whitesmoke;
  line-height: 1.7;
}

/* Text-up animation */
.text-up {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease-out;
}

.text-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .product-item {
    flex-direction: column;
    text-align: center;
  }

  .product-item:nth-child(even) {
    flex-direction: column;
  }

  .product-image img {
    width: 100%;
    height: 250px;
  }

  .product-text {
    text-align: center;
  }
}
.glass-cta-section {
  position: relative;
  text-align: center;
  padding-top: 100px;
  background: #f8f8f8;
}

/* Glass-style container */
.glass-cta-container {
  width: 80%;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 40px;
  color: #f5e6b3; /* sand yellow */
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  transform: translateY(60px);
  opacity: 0;
  transition: all 1s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);

  /* Patterned teal gradient background */
  background: 
    repeating-linear-gradient(
      45deg,
      rgba(0, 77, 77, 0.35) 0,
      rgba(0, 77, 77, 0.35) 20px,
      rgba(0, 128, 128, 0.25) 20px,
      rgba(0, 128, 128, 0.25) 40px
    ),
    linear-gradient(
      135deg,
      rgba(0, 77, 77, 0.5),
      rgba(0, 128, 128, 0.4)
    );
}

/* Scroll animation effect */
.glass-cta-container.show {
  opacity: 1;
  transform: translateY(0);
}

.glass-cta-container h2 {
  font-size: 1.9rem;
  line-height: 1.4;
  font-weight: 600;
}

.glass-cta-container h2 span {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

/* CTA BUTTON */
.glass-cta-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 35px;
  font-weight: 600;
  font-size: 1rem;
  color: #004d4d;
  background: #f5e6b3;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.3s ease;
}

.glass-cta-btn:hover {
  background: #004d4d;
  color: #f5e6b3;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;   /* transparent at the top */
  padding: 15px 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  transition: all 0.3s ease;
  color: white;
}

/* Navbar when scrolled */
header.scrolled {
  background: var(--background-color); /* add your color on scroll */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  padding: 8px 7%; /* shrink effect */
  color: var(--background-color);

}

header.scrolled .logo,
header.scrolled .navbar ul li a {
  color: var(--font-colour); /* light text on dark background */
}



header .logo{
    font-weight: bolder;
    font-size: 25px;
    color: white;
    transition: color 0.3s ease;
    

}
header .navbar ul{
    list-style: none;
   
}
header .navbar ul li{
    position: relative;
    float: left;
}

header .navbar ul li a{
    font-size: 20px;
    padding: 20px;
    color: var(--font-colour);
    display: block;
    color: var(--font-colour); /* dark text on transparent background */
  transition: color 0.3s ease;
}

header .navbar ul li a:hover{
    background: var(--font-colour);
    color: var(--background-color);

}

header .navbar ul li ul{
    position: absolute;
    left: 0;
    width: 200px;
    background: var(--background-color);
    display: none;
}
header .navbar ul li ul li{
    width: 100%;
    
}
header .navbar ul li:hover >ul{
    display: initial;
}
#menu-bar{
    display: none;
}
header label{
    font-size: 20px;
    color: var(--font-colour);
    cursor: pointer;
    display: none;
  }

 @media (max-width:999px){
  header{
    padding: 10px 20px;
  }

  header label{
    display: initial;
  }

  header .navbar{
    position: fixed;       /* changed from absolute */
    top: 0;                /* ensures it starts at very top */
    left: 0;
    right: 0;
    background: var(--background-color);
    border-top: none;      /* no unwanted line */
    display: block;
    z-index: 999;          /* keeps it above everything */
    height: 100vh;         /* full screen for nice overlay effect */
    padding-top: 80px;     /* space for logo/header area */
  }

  #menu-bar:checked ~ .navbar{
    display: block;
  }

  header .navbar ul li{
    width: 100%;
  }

  header .navbar ul li ul{
    position: relative;
    width: 100%;
  }

  header .navbar ul li ul li{
    background: #1b4053;
  }
}




header .navbar ul li{
  width: 100%;
}
header .navbar ul li ul{
  position: relative;
  width: 100%;
}
header .navbar ul li ul li{
  background: #1b4053;
}
#menu-bar:checked ~ .navbar{
  display: initial;
}

  
  /* Default (before scroll): make logo white */
/* Default: Black logo before scrolling */
.site-logo {
  height: 120px;
  width: auto;
  filter: brightness(0) saturate(100%) invert(0%); /* pure black */
  transition: filter 0.4s ease, transform 0.3s ease;
}

header.scrolled .site-logo {
  filter: invert(73%) sepia(91%) saturate(731%) hue-rotate(360deg) brightness(103%) contrast(98%);
}

  


/* ================================
   Mobile Menu Toggle Buttons
=================================*/

.menu-toggle,
.close-menu {
  font-size: 26px;
  color: var(--font-colour);
  cursor: pointer;
  display: none;
  z-index: 1001;
  position: absolute;
  right: 25px;
  top: 20px;
}

/* Show only hamburger by default */
.menu-toggle {
  display: none;
}

/* When checkbox not checked — show hamburger */
#menu-bar:not(:checked) ~ .menu-toggle {
  display: block;
}

/* When menu open — show close button instead */
#menu-bar:checked ~ .close-menu {
  display: block;
}

/* Optional hover style */
.menu-toggle:hover,
.close-menu:hover {
  color: #ffcc00;
}

/* For smaller devices */
@media (max-width:999px) {
  .menu-toggle,
  .close-menu {
    display: none;
  }

  #menu-bar:not(:checked) ~ .menu-toggle {
    display: block;
  }

  #menu-bar:checked ~ .close-menu {
    display: block;
  }
}
header .navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background: var(--background-color);
  display: none;
  z-index: 999;
  padding-top: 100px; /* space for logo & close button */
}

.close-menu {
  top: 25px;
  right: 25px;
  position: fixed;
}
/* ====== Vision, Mission, and Values Image Spacing ====== */
.modern-info-image img {
  margin: 20px; /* adds margin around the pictures */
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

