/* =========================
   GLOBAL FIX Header and Hero
========================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;   /* 🔥 WIDTH SCROLL STOP */
  font-family: Arial, Helvetica, sans-serif;
}


/* =========================
   HEADER – CLEAN & FIXED
========================= */

.main-header{
  position: fixed;          /* 🔥 STICKY → FIXED */
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(23, 1, 54, 0.95);
  backdrop-filter: blur(6px);
  z-index: 2000;
}


.header-container{
  max-width: 1300px;
  margin: auto;
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* LOGO */
.logo-wrapper{
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-wrapper img{
  height: 52px;
  width: auto;
  display: block;
}

.logo-text{
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
}

.logo-text span{
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: #ff6a00;
  letter-spacing: 1px;
}

/* NAVIGATION */
.main-nav{
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a{
  color: #ddd;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

.main-nav a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #ff6a00;
  transition: 0.3s;
}

.main-nav a:hover::after,
.main-nav a.active::after{
  width: 100%;
}

/* QUOTE BUTTON */
.quote-btn{
  border: 2px solid #ff6a00;
  padding: 8px 18px;
  border-radius: 4px;
  color: #ff6a00 !important;
}

.quote-btn:hover{
  background: #ff6a00;
  color: #fff !important;
}

/* MOBILE MENU ICON */
.menu-toggle{
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span{
  width: 26px;
  height: 3px;
  background: #fff;
  margin: 4px 0;
}

/* RESPONSIVE HEADER */
@media (max-width: 900px){

  .menu-toggle{
    display: flex;
  }

  .main-nav{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(23, 1, 54, 0.98);
    flex-direction: column;
    padding: 25px 0;
    display: none;
    overflow-x: hidden;
  }

  .main-nav.active{
    display: flex;
  }

  .main-nav a{
    padding: 12px 0;
    font-size: 16px;
  }
}

/* =========================
   HERO SECTION – FIXED
========================= */

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;   /* 🔥 IMPORTANT */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

/* Background image wrapper */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

/* Background image */
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;        /* 🔥 FULL FIT */
  object-position: center;
  animation: zoomHero 15s ease-in-out infinite alternate;
  filter: brightness(1.05) contrast(1.05);
  display: block;
}

/* Overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: -1;
}

/* Content */
.hero-content {
  max-width: 800px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.6;
}
/* Mobile hero text */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
}
/* Zoom animation */
@keyframes zoomHero {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.15);
  }
}
/* =========================
   welcome SECTION – FIXED
========================= */

.projects-section{
  display: flex;
  flex-direction: column;
  align-items: center;     /* 🔥 horizontal center */
  justify-content: center; /* 🔥 vertical center (height இருந்தால்) */
  padding: 10px 20px;
  text-align: center;
}

.projects-title{
  font-size: 42px;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}

.title-underline{
  width: 80px;
  height: 4px;
  background: #ff6a00;
  border-radius: 2px;
}

/* Section */
.info-section{
  background: #f4f6f8;
  padding: 80px 30px;
}

/* 3 Column Grid */
.info-grid{
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Card */
.info-card{
  background: #ffffff;
  border-radius: 12px;
  padding: 20px 20px 30px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  text-align: left;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}

.info-card:hover{
  transform: translateY(-8px);
}

/* Image */
.info-card img{
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

/* Title */
.info-card h2{
  font-size: 22px;
  color: #7b1f1f;
  margin-bottom: 12px;
}

/* Text */
.info-card p{
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Button */
.btn{
  display: inline-block;
  width: fit-content;
  padding: 10px 20px;
  background: #162c43;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.btn:hover{
  background: #3f6d8d;
}

/* =========================
   Mining SECTION – FIXED
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #f5f5f5;
}

/* SECTION */
.mining-section {
  background: #ffffff;
  padding: 80px 60px;
}

/* CONTAINER */
.mining-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* LEFT CONTENT */
.mining-content {
  flex: 1;
}

.mining-content h2 {
  font-size: 36px;
  color: #000;
  margin-bottom: 10px;
}

.mining-content .line {
  display: block;
  width: 60px;
  height: 4px;
  background: #d4a017; /* gold line */
  margin-bottom: 25px;
}

.mining-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
}

/* RIGHT IMAGE */
.mining-image {
  flex: 1;
}

.mining-image img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .mining-container {
    flex-direction: column;
  }

  .mining-section {
    padding: 60px 20px;
  }
}
/* =========================
   year establish SECTION – FIXED
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #f2f2f2;
}

/* SECTION */
.stats-section {
  background: #f8ee25; /* gold background */
  padding: 60px 20px;
}

/* CONTAINER */
.stats-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* STAT BOX */
.stat-box {
  flex: 1;
  text-align: center;
}

.stat-box h2 {
  font-size: 48px;
  color: #1a1a1a;
  margin-bottom: 10px;
  font-weight: 700;
}

.stat-box p {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

/* DIVIDER */
.divider {
  width: 1px;
  height: 70px;
  background: rgba(255, 255, 255, 0.6);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .stats-container {
    flex-direction: column;
    gap: 30px;
  }

  .divider {
    width: 60px;
    height: 1px;
  }
}
/* =========================
   Projects SECTION – FIXED
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}
/* SECTION */
.photo-section {
  max-width: 1400px;
  margin: auto;
}

/* GRID */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* CARD – SAME SIZE */
.photo-card {
  width: 100%;
  height: 400px;              /* 🔥 SAME HEIGHT */
  background: #000;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* IMAGE */
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* 🔥 SAME MODEL LOOK */
  display: block;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-card {
    height: 220px;
  }
}
/* =========================
  clients SECTION – FIXED
========================= */


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #f6f6f4;
  color: #1f2d3d;
}

/* LOGO STRIP */
.logo-strip {
  padding: 40px 20px;
}

.logo-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.logo-container img {
  max-height: 40px;
  opacity: 0.85;
  transition: 0.3s;
}

.logo-container img:hover {
  opacity: 1;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #fff;
}

/* =========================
   over veiw SECTION – FIXED
========================= */

.overview-blue {
  min-height: 50vh;
  padding: 80px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #0b2a5a, #0f5ea8);
  color: #fff;
}

/* LEFT */
.content-left {
  max-width: 420px;
}

.brand {
  color: #f4c430;
  font-size: 14px;
  letter-spacing: 2px;
}

.brand.sub {
  color: #fff;
  margin-bottom: 30px;
}

.content-left h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.desc {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 30px;
}

.content-left h4 {
  margin-bottom: 15px;
  font-size: 18px;
}

.list {
  list-style: none;
}

.list li {
  font-size: 15px;
  margin-bottom: 10px;
}

/* RIGHT */
.content-right {
  text-align: center;
}

.content-right h5 {
  margin-bottom: 25px;
  font-size: 14px;
  opacity: 0.9;
}

/* DONUT CHART */
.donut {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: conic-gradient(
    #f4a641 0% 82%,
    #f1d04b 82% 90%,
    #3fa9f5 90% 96%,
    #b56bdc 96% 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.center {
  width: 140px;
  height: 140px;
  background: #0f5ea8;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.center span {
  font-size: 28px;
  font-weight: bold;
}

.center small {
  font-size: 14px;
  opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .overview-blue {
    flex-direction: column;
    padding: 60px 30px;
    text-align: center;
  }

  .content-left {
    margin-bottom: 50px;
  }
}
/* =========================
   FOOTER
========================= */
.footer-bottom {
  margin-top: 0px;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  background:  rgba(23, 1, 54, 0.98);
  color: #90a4ae;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .main-footer {
    padding: 50px 20px 0;
  }

  .footer-container {
    text-align: center;
  }

  .footer-col h4::after {
    margin-left: auto;
    margin-right: auto;
  }
}
/* =========================
   mobile veiw SECTION – FIXED
========================= */
@media (max-width: 576px) {

  /* HEADER */
  .header-container{
    padding: 14px 20px;
  }

  .logo-text{
    font-size: 18px;
  }

  .logo-text span{
    font-size: 12px;
  }

  /* HERO */


  .hero-content h1{
    font-size: 1.9rem;
  }

  .hero-content p{
    font-size: 14px;
  }

  /* PROJECT TITLE */
  .projects-title{
    font-size: 28px;
  }

  /* INFO GRID → 1 COLUMN */
  .info-grid{
    grid-template-columns: 1fr;
    gap: 25px;
  }

  /* MINING */
  .mining-section{
    padding: 50px 20px;
  }

  .mining-content h2{
    font-size: 26px;
  }

  /* STATS */
  .stat-box h2{
    font-size: 34px;
  }

  /* PHOTO GRID */
  .photo-card{
    height: 220px;
  }

  /* OVERVIEW */
  .overview-blue{
    padding: 50px 20px;
  }

  .content-left h1{
    font-size: 28px;
  }

  .donut{
    width: 200px;
    height: 200px;
  }

  .center{
    width: 110px;
    height: 110px;
  }
}
/* =========================
   Tablet veiw SECTION – FIXED
========================= */
@media (min-width: 577px) and (max-width: 992px) {

  /* HEADER */
  .header-container{
    padding: 16px 30px;
  }

  /* HERO */
  .hero-content h1{
    font-size: 2.4rem;
  }

  /* INFO GRID → 2 COLUMNS */
  .info-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  /* MINING */
  .mining-container{
    gap: 40px;
  }

  .mining-content h2{
    font-size: 30px;
  }

  /* STATS */
  .stat-box h2{
    font-size: 42px;
  }

  /* PHOTO GRID */
  .photo-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-card{
    height: 320px;
  }

  /* OVERVIEW */
  .overview-blue{
    padding: 70px 50px;
  }

  .content-left h1{
    font-size: 36px;
  }
}

/* =========================
   ABOUT US PAGE
========================= */
#about-hero {
    height: 50vh;
}

#about-hero .hero-bg img {
    height: 100%;
    object-fit: cover;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background: #f7f7f7;
}

/* SECTION */
.our-story {
  padding: 60px 80px;
  background: #ffffff;
}

/* CONTAINER */
.story-container {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

/* LEFT CONTENT */
.story-content {
  flex: 1;
}

.story-content h2 {
  font-size: 36px;
  color: #6b1d1d;
  margin-bottom: 20px;
}

.story-content p {
  font-size: 15px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* BUTTON */
.learn-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 22px;
  background: #012643;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  border-radius: 3px;
}

.learn-btn:hover {
  background: #7fa7c6;
}

/* RIGHT IMAGE */
.story-image {
  flex: 1;
}

.story-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
}

.image-section {
  padding: 60px 40px;
}

.image-container {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

.image-box {
  width: 48%;
  text-align: center;
}

.image-box img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.caption {
  margin-top: 12px;
  font-size: 14px;
  color: #444;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 900px) {
  .image-box {
    width: 100%;
  }
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.6;
}

/* Header */
.page-header {
  background: #ecf2f0;
  color: #100101;
  padding: 40px 20px;
  text-align: center;
}

.page-header h1 {
  font-size: 36px;
}

/* Container */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}

.container h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 26px;
  border-bottom: 2px solid #ddd;
  padding-bottom: 10px;
  color: #0b3d2e;
}

/* Member Card */
.member {
  background: #fff;
  padding: 25px;
  margin-bottom: 25px;
  border-left: 4px solid #0b3d2e;
  transition: transform 0.3s ease;
}

.member:hover {
  transform: translateY(-5px);
}

.member h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.member span {
  display: block;
  font-weight: bold;
  color: #555;
  margin-bottom: 10px;
}

.member p {
  color: #666;
}

/* Footer */
footer {
  background:rgba(23, 1, 54, 0.95);
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 50px;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .page-header h1 {
    font-size: 28px;
  }

  .container h2 {
    font-size: 22px;
  }
}



/* Responsive */
@media (max-width: 768px) {
  .page-header h1 {
    font-size: 28px;
  }

  .container h2 {
    font-size: 22px;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 58px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text .neo {
  font-size: 22px;
  font-weight: 700;
  color: #000;
}

.logo-text .materials {
  font-size: 16px;
  font-weight: 500;
  color: #c9a24d; /* gold color */
  letter-spacing: 1px;
}
/* =========================
   board of managment US PAGE
========================= */

/* TITLE */
.page-title {
  text-align: center;
  padding: 0px 0px;
  background: #fff;
}

.page-title h1 {
  font-size: 34px;
}

.underline {
  width: 60px;
  height: 3px;
  background: #c8a24b;
  display: block;
  margin: 15px auto 0;
}

/* CONTENT */
.content {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

.content h2 {
  font-size: 24px;
  margin: 60px 0 20px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

/* MEMBER CARD */
.member {
  background: #eee;
  padding: 25px;
  margin-bottom: 20px;
  display: flex;
  gap: 20px;
}

.member .line {
  width: 4px;
  background: #0a3c45;
}

.member h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.member p {
  font-size: 14px;
  color: #555;
}
/* =========================
   Contact US PAGE
========================= */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
}

.title {
  text-align: center;
  margin: 20px 0;
}

.map-container {
  width: 100%;
  max-width: 1000px;
  height: 450px;
  margin: auto;
  border: 2px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}


/* CONTACT */
.contact{
  max-width:700px;
  margin:auto;
}

.contact input,
.contact textarea{
  width:100%;
  padding:14px;
  margin-bottom:15px;
  border:1px solid #ccc;
}

.contact button{
  background:#111;
  color:#fff;
  padding:14px;
  border:none;
  width:100%;
}


body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f7f7f7;
}

.contact-section {
  display: flex;
  max-width: 1100px;
  margin: 40px auto;
  gap: 40px;
  background: #fff;
  padding: 30px;
}

.contact-form,
.contact-info {
  flex: 1;
}

h2, h3 {
  margin-bottom: 15px;
}

label {
  display: block;
  margin-top: 15px;
  font-size: 14px;
}

input, textarea {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
}

button {
  margin-top: 20px;
  padding: 10px 25px;
  background-color: #000;
  color: #fff;
  border: none;
  cursor: pointer;
}

button:hover {
  background-color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
  }
}
/* mobile tab veiw*/
/* MOBILE + TABLET MENU FIX */
@media (max-width: 1024px) {

  .menu-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
  }

  .menu-toggle span {
    height: 3px;
    width: 26px;
    background: #000;
    margin: 5px 0;
    display: block;
  }

  .main-header {
    position: relative;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background:  rgba(23, 1, 54, 0.95);
    flex-direction: column;
    display: none;
    z-index: 999;
  }

  .main-nav a {
    padding: 15px 20px;
    border-bottom: 1px solid #e0e0e0;
  }

  .main-nav.active {
    display: flex;
  }
}

/* MOBILE + TABLET MENU aboutus FIX */
/* FIX: Our Story heading breaking */
.story-content h2 {
  word-break: normal;
  white-space: normal;
  line-height: 1.2;
}
/* FIX: Paragraph text width issue */
.story-content p {
  max-width: 100%;
  width: 100%;
  line-height: 1.7;
  word-break: normal;
}
@media (max-width: 768px) {

  .story-container {
    flex-direction: column;
    padding: 20px;
  }

  .story-content {
    width: 100%;
    text-align: left;
  }

  .story-content h2 {
    font-size: 32px;
    text-align: center;
  }

  .story-image {
    width: 100%;
    margin-top: 20px;
  }

  .story-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 768px) {
  .learn-btn {
    display: block;
    margin: 20px auto;
    text-align: center;
  }
}

/* =========================
   FINAL ABOUT US MOBILE FIX
========================= */

.our-story,
.story-container,
.story-content,
.story-content * {
  max-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {

  .our-story {
    padding: 40px 20px !important;
  }

  .story-container {
    flex-direction: column;
    gap: 25px;
  }

  .story-content {
    width: 100%;
  }

  .story-content h2 {
    font-size: 32px;
    text-align: center;
    line-height: 1.3;
    white-space: normal;
  }

  .story-content p {
    width: 100%;
    line-height: 1.7;
  }

  .story-image {
    width: 100%;
  }

  .story-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }

  .learn-btn {
    display: block;
    margin: 20px auto;
  }
}

/* Header overlap fix */
#about-hero {
  margin-top: 90px;
}
/* =========================
   FINAL MOBILE FIX – ABOUT US
========================= */

@media (max-width: 768px) {

  /* Fix narrow padding issue */
  .our-story {
    padding: 30px 16px !important;
  }

  /* Force full width */
  .story-container {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .story-content,
  .story-image {
    width: 100%;
    max-width: 100%;
  }

  /* Heading fix */
  .story-content h2 {
    font-size: 30px;
    text-align: center;
    line-height: 1.3;
    white-space: normal;
    word-break: normal;
  }

  /* Paragraph fix */
  .story-content p {
    width: 100%;
    max-width: 100%;
    font-size: 15px;
    line-height: 1.7;
    white-space: normal;
    word-break: normal;
  }

  /* Image fix */
  .story-image img {
    width: 100%;
    height: auto;
  }

  /* Button center */
  .learn-btn {
    display: block;
    margin: 20px auto 0;
    text-align: center;
  }
}

/* Header overlap fix for About page */

/* FINAL HERO MOBILE FIX */
@media (max-width: 768px) {
  .hero {
    height: 90vh;
  }

  .hero-bg img {
    object-position: center top;
  }
}
/* ===== HERO MOBILE FIX (FINAL) ===== */
.hero {
  min-height: 100vh;
  height: auto;           /* 🔥 FIX */
  padding-top: 80px;      /* header height compensate */
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* MOBILE VIEW FIX */
@media (max-width: 768px) {
  .hero {
    min-height: calc(100vh - 80px);  /* 🔥 FIX */
  }

  .hero-bg img {
    object-position: center;         /* 🔥 */
  }
}
/* =========================
   HERO HEIGHT CONTROL
========================= */

/* INDEX PAGE */
#home {
  height: 100vh;          /* full screen */
}

/* INNER PAGES */
#about-hero,
#board-hero,
#contact-hero {
  height: 55vh;           /* 👈 change here */
  min-height: 400px;
}

/* MOBILE VIEW */
@media (max-width: 768px) {

  #home {
    height: 90vh;
  }

  #about-hero,
  #board-hero,
  #contact-hero {
    height: 35vh;         /* 👈 change here */
    min-height: 260px;
  }
}
/* ABOUT HERO GAP FIX */
#about-hero {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* =========================
   MOBILE MENU – FINAL FIX
========================= */
@media (max-width: 1024px) {

  /* remove underline animation */
  .main-nav a::after {
    display: none !important;
  }

  /* remove divider / underline */
  .main-nav a {
    border-bottom: none !important;
    color: #ffffff !important;
  }

  /* hamburger menu icon → WHITE */
  .menu-toggle span {
    background: #ffffff !important;
  }
}
/* introduction */
/* WHY NEO EARTH MATERIALS */
.why-neo-earth {
  background: #f6f6f6;
  padding: 80px 20px;
}

.why-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: center;
}

.why-content {
  flex: 1;
}

.why-content h2 {
  font-size: 34px;
  margin-bottom: 20px;
}

.why-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #444;
}

.why-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.why-content ul li {
  margin-bottom: 10px;
  padding-left: 22px;
  position: relative;
}

.why-content ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #c40000;
  font-size: 14px;
}

.why-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #c40000;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
}

.why-btn:hover {
  background: #9e0000;
}

.why-image {
  flex: 1;
}

.why-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* STATS */
.why-stats {
  max-width: 1200px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-box {
  background: #fff;
  padding: 30px 20px;
  text-align: center;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.stat-box h3 {
  color: #c40000;
  font-size: 26px;
  margin-bottom: 6px;
}

.stat-box span {
  font-size: 14px;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .why-container {
    flex-direction: column;
  }

  .why-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .why-stats {
    grid-template-columns: 1fr;
  }
}
.our-story {
  padding: 80px 0;
}

.story-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: stretch; /* 🔥 IMPORTANT */
  padding: 0 20px;
}

.story-content {
  flex: 1.2;
}

.story-image {
  flex: 0.8;
  display: flex;
}

.story-image img {
  width: 100%;
  height: 100%;        /* 🔥 KEY FIX */
  object-fit: cover;  /* 🔥 Image crop without distortion */
  border-radius: 8px;
}

/* INTRODUCTION – RIGHT SIDE TWO IMAGES (TOP & BOTTOM) */
.story-image.two-images {
  flex: 0.8;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* 🔥 KEY */
}

.story-image.two-images img {
  width: 100%;
  height: 48%;              /* 🔥 Top & bottom equal height */
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Company Profile */

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #333;
}

/* SECTION */
.values-section {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px;
}

/* TITLE */
.section-title {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 40px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}

/* ROW */
.value-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: start;
  margin-bottom: 30px;
}

/* LEFT TITLE */
.value-title {
  font-size: 22px;
  font-weight: bold;
  color: #8b0000; /* dark red like image */
}

/* RIGHT TEXT */
.value-text {
  font-size: 16px;
  color: #4a4a4a;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .value-row {
    grid-template-columns: 1fr;
  }

  .value-title {
    margin-bottom: 8px;
  }
}
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #333;
}

/* SECTION */
.timeline-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

/* ROW */
.timeline-row {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 30px;
  align-items: center;
}

/* LEFT CONTENT */
.timeline-content {
  padding-right: 20px;
}

.year {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

.timeline-content p {
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 16px;
}

/* CENTER LINE */
.timeline-line {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
}

.timeline-line::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background: #ccc;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  background: #b30000;
  border-radius: 50%;
  position: relative;
  top: 40%;
}

/* RIGHT IMAGE */
.timeline-image img {
  width: 100%;
  border-radius: 4px;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .timeline-row {
    grid-template-columns: 1fr;
  }

  .timeline-line {
    display: none;
  }

  .timeline-content {
    padding-right: 0;
  }
}
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #333;
}

/* SECTION */
.timeline-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

/* ROW */
.timeline-row {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 30px;
  align-items: center;
}

/* IMAGE */
.timeline-image img {
  width: 100%;
  display: block;
  border-radius: 4px;
}

/* CONTENT */
.timeline-content {
  padding-left: 20px;
}

.year {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

.timeline-content p {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.6;
}

/* CENTER LINE */
.timeline-line {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
}

.timeline-line::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background: #ccc;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  background: #b30000;
  border-radius: 50%;
  position: relative;
  top: 40%;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .timeline-row {
    grid-template-columns: 1fr;
  }

  .timeline-line {
    display: none;
  }

  .timeline-content {
    padding-left: 0;
    margin-top: 20px;
  }
}

