
@charset "utf-8";
/* CSS Document */

   /* ---------------- BASE ---------------- */
    body, html { 
	margin:0; 
	padding:0; 
	min-height:100%;
	font-family: Arial,sans-serif; 
	width: 100%;
    overflow-x: hidden;
 }
    
	* { box-sizing:border-box; }

    :root {
      --bg:#0b0e13;
      --glass: rgba(255,255,255,0.06);
      --glass-border: rgba(255,255,255,0.12);
      --accent: #00e5ff;
      --muted: rgba(255,255,255,0.75);
    }

    /* ---------------- HEADER ---------------- */
    .site-header {
      width: 100%;
      height: 90px;
      position: fixed;
      top:0; left:0;
      z-index:1000;
      /*font-family: 'Orbitron',sans-serif;*/
      box-shadow:0 2px 12px rgba(0,0,0,0.6);
      background:#ffffff;
	  font-family:"Bricolage Grotesque",sans-serif;
    }

    .header-container { display:flex; width:100%; height:100%; }

    .logo-column {
      width:30%;
      background:#fff;
      display:flex;
      justify-content:center;
      align-items:center;
      border-right:0px solid rgba(16,74,41,0.4);
    }
    .logo-column img { max-height:65px; }

    .nav-column {
      width:70%;
      /*background: linear-gradient(135deg,#104a29 0%,#0d3a21 100%);*/
	  background:#fff;
      position:relative;
      padding:0 2.5rem;
      display:flex;
      align-items:center;
      justify-content:flex-end;
    }
   /* .nav-column::before {
      content:"";
      position:absolute;
      top:0; left:0;
      width:100%; height:100%;
      background-image:
        linear-gradient(to right, rgba(0,255,234,0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0,255,234,0.05) 1px, transparent 1px);
      background-size:10px 10px;
      pointer-events:none;
      z-index:0;
    }*/

    .nav-menu { display:flex; list-style:none; z-index:2; padding:0; margin:0; }
    .nav-item { position:relative; margin-left:2rem; }
    .nav-item:first-child { margin-left:0; }
    .nav-item a {
      text-decoration:none;
      /*color:#00ffea;*/
	  color:#003333;
      padding:0.6rem 0;
      display:inline-block;
      transition:0.3s;
      font-weight:200;
	  font-size:1.15em;
    }
    .nav-item a:hover { color:#ccc; }
    .nav-item a::after { content:""; display:block; width:0; height:2px; background:#00ffea; transition: width 0.3s; }
    .nav-item a:hover::after { width:100%; }
    .arrow { font-size:0.75rem; margin-left:0.2rem; }

    .dropdown-menu {
      display:none;
      position:absolute;
      top:100%;
      left:0;
      min-width:200px;
      background:rgba(16,74,41,0.95);
      border:1px solid rgba(0,255,234,0.25);
      border-radius:4px;
      box-shadow:0 4px 12px rgba(0,0,0,0.6);
      z-index:9999;
      padding:0;
    }
    .dropdown-menu li { list-style:none; }
    .dropdown-menu li a {
      display:block;
      padding:0.7rem 1rem;
      color:#00ffea;
      position:relative;
    }
    .dropdown-menu li a::after { content:"✦"; position:absolute; right:1rem; opacity:0.8; }
    .dropdown-menu li a:hover { background: rgba(0,255,234,0.15); }

    /* Desktop hover dropdown */
    .nav-item.dropdown:hover .dropdown-menu { display:block; }

    /* Mobile */
    .mobile-menu-toggle { display:none; cursor:pointer; color:#00ffea; font-weight:700; text-align:center; }
	
    @media(max-width:768px){
      .header-container{ flex-direction:column; height:auto; }
      .logo-column{ width:100%; padding:1rem 0; border-right:none; border-bottom:2px solid rgba(16,74,41,0.4); }
      .nav-column{ width:100%; padding:.65rem; display:block; text-align:left; height:auto; background:rgba(15,75,40,0.95);}
      .nav-column::before{ background-size:12px 12px;}
      .mobile-menu-toggle{ display:block; font-size:1.05rem; padding:0.2rem 0; }
      .nav-menu{ display:none !important; flex-direction:column !important; width:100%; margin-top:1rem; padding:0; }
      .nav-column.open .nav-menu{ display:flex !important; }
      .nav-item{ width:100%; margin:0; padding:0.2rem 0; }
      .nav-item a{ display:block; width:100%; padding:.5rem 1.5rem; font-size:1.15rem; color:#FFFFFF;}
      .nav-item a::after{ display:none; }
	  
      .dropdown-menu{ 
	  display:none; 
	  margin-left:1.2rem; 
	  padding-left:0.8rem; 
	  border-left:2px solid rgba(0,255,234,0.3); 
	  background:rgba(16,74,41,0.95); 
	  box-shadow:none; 
	  border-radius:0; 
	  }
      .dropdown.open > .dropdown-menu{ display:block; }
      .dropdown-menu li a{ padding:0.7rem 0; font-size:1rem; }
    }
	
  /* ---------------- SUBHERO ---------------- */
.subhero {
  position: relative;
  height: 20vh;
  width: 100%;
  overflow: hidden;
  color: white;
   margin-top: 90px; /* same as header height */
   font-family:"Bricolage Grotesque",sans-serif;
}

/* Absolute center container */
.subhero .content {
  position: absolute;
  outline: 3px solid red;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* ← vertical centering */
  text-align: center;
  z-index: 3;
}

/* Video */
.subhero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Overlay */
.subhero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(48, 113, 48, 0.45);
  z-index: 2;
}

/* Text */
.subhero h1 {
  margin: 0 0 0.5rem 0;
  font-size: clamp(1.5rem, 4vw, 2rem);
}

.subhero .spaced {
  margin: 0;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 0.5;
}


@media (max-width: 768px) {
  .subhero {
    height: 20dvh;
	 margin-top: 150px; /* same as header height */
   font-family:"Bricolage Grotesque",sans-serif;
  }
}

	

/* ---------------- HERO ---------------- */
/* Hero Section */

.hero {
  position: relative;
  height: 80vh;
  background-image: url('images/hero-about.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  font-family:"Bricolage Grotesque",sans-serif;
}

/* Full-width gradient overlay */
.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: .5rem 0;
  background: rgba(48, 113, 48, 0.45);
  backdrop-filter: blur(3px);
}

/* Content container */
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 2rem;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

/* Animate in when visible */
.hero-content.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-text {
  flex: 1 1 1200px;
  text-align:center;
}

.hero-text h1 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color:#fff;
  text-shadow: 0 0 10px rgba(0,0,0,0.8);
}

.hero-text p {
  font-size: 1rem;
  color: #fff;
  /*max-width: 800px;*/
}

.hero-buttons {
  flex: 1 1 250px;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  transition: 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: #2563eb;
  color: white;
}

.btn-primary:hover {
  background: #1e40af;
}

.btn-outline {
  border: 2px solid white;
  color: white;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
  /* Make hero taller and background better fit vertically */
  .hero {
    height: auto;
    min-height: 100vh;
    align-items: flex-start;

  }

  /* Overlay padding increased for text breathing space */
  .hero-overlay {
    padding: 0rem 0;
	max-height: 40vh;
  }

  /* Stack content vertically */
  .hero-content {
    flex-direction: column;
    align-items: center;
	text-align:left;
    gap: 1.5rem;
    padding: 1.25rem;

  }

  /* Allow text to take full width and increase contrast */
  .hero-text {
    flex: 1 1 auto;
    max-width: 100%;
	margin-top:1em;
  }

  .hero-text h1 {
    font-size: 1.4rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  }

  .hero-text p {
    font-size: 0.85rem;
    line-height: 1.2;
    color: #fff;
    max-width: 100%;

  }

  /* Center any buttons (if used) */
  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn {
    width: 100%;
    max-width: 250px;
  }
}

/*hero-press*/
.hero-press {
  position: relative;
  height: 120vh;
  background-image: url('images/hero-press.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
   font-family:"Bricolage Grotesque",sans-serif;
}

/* Full-width gradient overlay */
.hero-press-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: .5rem 0;
  background: linear-gradient(to top, rgba(255,255,255,0.8), rgba(204,204,204,0.4));
  backdrop-filter: blur(3px);
}

.hero-press-text h1 {
  font-size: 2rem;
  margin-bottom: 0rem;
  color:#555;
  text-shadow: 2px 2px 3px rgba(255,255,255,0.8);
}

.hero-press-text p {
  font-size: 1rem;
  color: #555;
  max-width: 800px;
}

/* Responsive */
@media (max-width: 768px) {
  /* Make hero taller and background better fit vertically */
  .hero-press {
    height: auto;
    min-height: 90vh;
    align-items: flex-end;

  }

  /* Overlay padding increased for text breathing space */
  .hero-press-overlay {
    padding: .5rem 0;
	max-height: 30vh;
  }

  
  /* Allow text to take full width and increase contrast */
  .hero-press-text {
    flex: 1 1 auto;
    max-width: 100%;
    margin-top:1em;
  }

  .hero-press-text h1 {
    font-size: 1.4rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
  }

  .hero-press-text p {
    font-size: 0.95rem;
    line-height: 1.2;
    color: #555;
    max-width: 100%;

  }
 }
 
 /*hero-news*/
.hero-news {
  position: relative;
  height: 120vh;
  background-image: url('images/hero-news.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
   font-family:"Bricolage Grotesque",sans-serif;
}

/* Full-width gradient overlay */
.hero-news-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: .5rem 0;
  background: linear-gradient(to top, rgba(255,255,255,0.8), rgba(204,204,204,0.4));
  backdrop-filter: blur(3px);
}

.hero-news-text h1 {
  font-size: 2rem;
  margin-bottom: 0rem;
  color:#555;
  text-shadow: 2px 2px 3px rgba(255,255,255,0.8);
}

.hero-news-text p {
  font-size: 1rem;
  color: #555;
  max-width: 800px;
}

/* Responsive */
@media (max-width: 768px) {
  /* Make hero taller and background better fit vertically */
  .hero-news {
    height: auto;
    min-height: 100vh;
    align-items: flex-start;

  }

  /* Overlay padding increased for text breathing space */
  .hero-news-overlay {
    padding: .5rem 0;
	max-height: 30vh;
  }

  
  /* Allow text to take full width and increase contrast */
  .hero-news-text {
    flex: 1 1 auto;
    max-width: 100%;
    margin-top:1em;
  }

  .hero-news-text h1 {
    font-size: 1.4rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
  }

  .hero-news-text p {
    font-size: 0.95rem;
    line-height: 1.2;
    color: #555;
    max-width: 100%;

  }
 }
 
/*HERO-RESEARCH*/

.hero-research {
  position: relative;
  height: 80vh;
  background-image: url('images/hero-research.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
   font-family:"Bricolage Grotesque",sans-serif;
}

/* Full-width gradient overlay */
.hero-research-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: .5rem 0;
  background: rgba(48, 113, 48, 0.45);
  backdrop-filter: blur(3px);
}


/* Content container */
.hero-research-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 2rem;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

/* Animate in when visible */
.hero-research-content.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-research-text {
  flex: 1 1 1200px;
  text-align:center;
}

.hero-research-text h1 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color:#fff;
  text-shadow: 0 0 10px rgba(0,0,0,0.8);
}

.hero-research-text p {
  font-size: 1rem;
  color: #fff;
  /*max-width: 800px;*/
}

.hero-research-buttons {
  flex: 1 1 250px;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-research .btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  transition: 0.3s ease;
  white-space: nowrap;
}

.hero-research .btn-primary {
  background: #2563eb;
  color: white;
}

.hero-research .btn-primary:hover {
  background: #1e40af;
}

.hero-research .btn-outline {
  border: 2px solid white;
  color: white;
}

.hero-research .btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Floating image above text */
/* Floating image above overlay */
.hero-research-image {
  position: absolute;
  top: 20%; /* adjust vertical position */
  left: 50%;
  transform: translateX(-50%);
  width: 700px; /* adjust size */
  animation: float 4s ease-in-out infinite;
  z-index: 5; /* make sure it's above overlay */
}

.hero-research-image img {
  width: 100%;
  display: block;
}

/* Floating animation */
@keyframes float {
  0% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-15px); }
  100% { transform: translateX(-50%) translateY(0); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-research-image {
    width: 380px;
    top: 28%;
  }
}



/* Responsive */
@media (max-width: 768px) {
  /* Make hero taller and background better fit vertically */
  .hero-research {
    height: auto;
    min-height: 100vh;
    align-items: flex-start;

  }

  /* Overlay padding increased for text breathing space */
  .hero-research-overlay {
    padding: 0rem 0;
	max-height: 40vh;
  }

  /* Stack content vertically */
  .hero-research-content {
    flex-direction: column;
    align-items: center;
	text-align:left;
    gap: 1.5rem;
    padding: 1.25rem;
  }

  /* Allow text to take full width and increase contrast */
  .hero-research-text {
    flex: 1 1 auto;
    max-width: 100%;
	margin-top:1em;
  }

  .hero-research-text h1 {
    font-size: 1.4rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  }

  .hero-research-text p {
    font-size: 0.85rem;
    line-height: 1.2;
    color: #fff;
    max-width: 100%;

  }

  /* Center any buttons (if used) */
  .hero-research-buttons {
    justify-content: center;
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn {
    width: 100%;
    max-width: 250px;
  }
}


/*HERO-AD-BNC*/

.hero-research-theraphy {
  position: relative;
  height: 100vh;
  background-image: url('images/hero-AD-BNCT.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
   font-family:"Bricolage Grotesque",sans-serif;
}

/* Full-width gradient overlay */
.hero-research-theraphy-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: .5rem 0;
  background: rgba(48, 113, 48, 0.45);
  backdrop-filter: blur(3px);
}


/* Content container */
.hero-research-theraphy-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 2rem;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

/* Animate in when visible */
.hero-research-theraphy-content.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-research-theraphy-text {
  flex: 1 1 1200px;
  text-align:center;
}

.hero-research-theraphy-text h1 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color:#fff;
  text-shadow: 0 0 10px rgba(0,0,0,0.8);
}

.hero-research-theraphy-text p {
  font-size: 1rem;
  color: #fff;
  /*max-width: 800px;*/
}

.hero-research-theraphy-buttons {
  flex: 1 1 250px;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-research-theraphy .btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  transition: 0.3s ease;
  white-space: nowrap;
}

.hero-research-theraphy .btn-primary {
  background: #2563eb;
  color: white;
}

.hero-research-theraphy .btn-primary:hover {
  background: #1e40af;
}

.hero-research-theraphy .btn-outline {
  border: 2px solid white;
  color: white;
}

.hero-research-theraphy .btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-research-theraphy-image {
    width: 120px;
    top: 8%;
  }
}



/* Responsive */
@media (max-width: 768px) {
  /* Make hero taller and background better fit vertically */
  .hero-research-theraphy {
    height: auto;
    min-height: 100vh;
    align-items: flex-start;
  }

  /* Overlay padding increased for text breathing space */
  .hero-research-theraphy-overlay {
    padding: 0rem 0;
	max-height: 40vh;
  }

  /* Stack content vertically */
  .hero-research-theraphy-content {
    flex-direction: column;
    align-items: center;
	text-align:left;
    gap: 1.5rem;
    padding: 1.25rem;
  }

  /* Allow text to take full width and increase contrast */
  .hero-research-theraphy-text {
    flex: 1 1 auto;
    max-width: 100%;
	margin-top:1em;
  }

  .hero-research-theraphy-text h1 {
    font-size: 1.15rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  }
  
    .hero-research-theraphy-text h2 {
    font-size: 1rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  }


  .hero-research-theraphy-text p {
    font-size: 0.85rem;
    line-height: 1.2;
    color: #fff;
    max-width: 100%;

  }

  /* Center any buttons (if used) */
  .hero-research-theraphy-buttons {
    justify-content: center;
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-research-theraphy .btn {
    width: 100%;
    max-width: 250px;
  }
}	

/* FOR PRESS SITE */

.press-section-header {
  text-align: center;
  padding: 2rem 1rem;
}

.press-section-header h1 {
  margin-bottom: 0.5rem;
  font-size: 2rem;
}

.press-section-header h5 {
  color: #555;
  font-weight: 400;
}

.press-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 4rem;
}

.press-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem; 
}

.press-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  width: calc(33.333% - 4rem);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.2s;
  min-height: 400px;
  font-family: 'Lato', sans-serif;
}

.press-card-image {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.press-card-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.press-card-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.press-card-content h3 {
  margin: 0.5rem 0;
  font-size: 1.5rem;
  color: #555;
}

.press-card-content p.date {
  font-size: .95rem;
  color: rgba(0,0,0,0.8);
  margin: 1.5rem 0 0.5rem;
}

.press-card-content p.description {
  flex: 1;
  font-size: 1.2rem;
  margin-top: 1.85rem;
  color: #555;
}

.press-btn {
  margin-top: 2rem;
  padding: 0.4rem 0.8rem;
  font-size: 1rem;
  color: #000;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Pagination wrapper */
.pagination {
  display: flex;
  justify-content: center;   /* center on page */
  align-items: center;
  padding: 1.5rem 0;
  gap: 0.35rem;
}

/* Pagination buttons */
.pagination button {
  min-width: 32px;
  height: 32px;
  padding: 0;
  font-size: 0.85rem;        /* smaller numbers */
  line-height: 1;
  color: #777;               /* soft grey text */
  background: transparent;
  border: 1px solid #ddd;    /* light grey border */
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

/* Hover state */
.pagination button:hover {
  background: #f3f3f3;
  color: #555;
  border-color: #ccc;
}

/* Active page */
.pagination button.active {
  background: #e6e6e6;
  color: #444;
  border-color: #bbb;
  font-weight: 600;
}

@media (max-width: 992px) {
  .press-card {
    width: calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .press-card {
    width: 100%;
  }
  /* Mobile tweak */

  .pagination {
   display: flex;
  justify-content: center;   /* center on page */
  align-items: center;
  padding: 1.5rem 0;
  gap: 0.35rem;
  }

.pagination button {
    width: 30px;
    height: 30px;
    line-height: 30px;  /* ✅ keeps it square */
    font-size: 0.8rem;
  }

}
  
  
  /*hero-science*/
  
  .hero-science {
  position: relative;
  height: 80vh;
  background-image: url('images/hero-science.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
   font-family:"Bricolage Grotesque",sans-serif;
}

/* Full-width gradient overlay */
.hero-science-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: .5rem 0;
  background: linear-gradient(to top, rgba(8,78,22,0.8), rgba(2,34,23,0.4));
  backdrop-filter: blur(3px);
}

.hero-science-text h1 {
  font-size: 2rem;
  margin-bottom: 0rem;
  color:#fff;
  text-shadow: 2px 2px 3px rgba(255,255,255,0.8);
}

.hero-science-text p {
  font-size: 1rem;
  color: #ccc;
  max-width: 800px;
}

/* Responsive */
@media (max-width: 768px) {
  /* Make hero taller and background better fit vertically */
  .hero-science {
    height: auto;
    min-height: 90vh;
    align-items: flex-end;

  }

  /* Overlay padding increased for text breathing space */
  .hero-science-overlay {
    padding: .5rem 0;
	max-height: 35vh;
  }

  
  /* Allow text to take full width and increase contrast */
  .hero-science-text {
    flex: 1 1 auto;
    max-width: 100%;
    margin-top:1em;
  }

  .hero-science-text h1 {
    font-size: 1.4rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
  }

  .hero-science-text p {
    font-size: 0.95rem;
    line-height: 1.2;
    color: #fff;
    max-width: 100%;
  }
}

  /*footer section*/
/* === FOOTER === */
footer {
  background: #104a29 ;
   background-image:
        linear-gradient(to right, rgba(0,255,234,0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0,255,234,0.05) 1px, transparent 1px);
      background-size:10px 10px;
  color: #fff;
  padding: 60px 40px;
  font-family: "Poppins", sans-serif;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr; /* Column 1: 2x width, others equal */
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* Column 1: Logo + Description */
.footer-logo img {
  width: 300px;
  margin-bottom: 15px;
}
.footer-logo p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Column Titles */
.footer-logo h4,
.footer-links h4,
.footer-contact h4 {
  color: #c89b00;
  margin-bottom: 15px;
  font-size: 1.35rem;
}

.footer-links h6{
  color: #ccc;
  margin-bottom: 5px;
  margin-top:10px;
  font-size: 1.15rem;
  font-weight:normal;
}

/* Column logo */
.footer-logo ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-logo ul li {
  margin-bottom: 8px;
}
.footer-logo ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-logo ul li a:hover {
  color: #c89b00;
}

/* Column 2: Quick Links */
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links ul li {
  margin-bottom: 8px;
}
.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;

}
.footer-links ul li a:hover {
  color: #c89b00;
}

/* Column 3: Contact Info */
.footer-contact p {
  margin: 8px 0;
  display: flex;
  align-items: flex-start; /* align icons to top line */
  gap: 10px;
  color: #eee;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Icons - clickable only */
.footer-contact i {
  font-size: 1.1rem;
  color: #c89b00;
  transition: color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  margin-top: 2px;
}
.footer-contact i:hover {
  color: #f4b400;
  transform: scale(1.15);
}

/* Address icon (map link) */
.footer-contact .map-link {
  margin-left: 6px;
  color: #c89b00;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}
.footer-contact .map-link:hover {
  color: #f4b400;
  transform: scale(1.15);
}

/* Bottom strip */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 40px;
  padding-top: 20px;
  font-size: 1rem;
  color: #bbb;
}

.footer-grid .adds {
width:250px;
}


/* === RESPONSIVE === */
@media (max-width: 768px) {
footer {

  padding: 60px 20px;
  font-family: "Poppins", sans-serif;
}

  .footer-grid {
    grid-template-columns: 1fr; /* stack columns vertically on smaller screens */
    gap: 30px;
  }
}


/* ===== BACK TO TOP ===== */
#backToTop {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: #006633;
  color: #fff;
  font-size: 32px; /* bigger = plumper */
  font-weight: 900; /* if font supports heavy weights */
  font-family: "Arial Black", sans-serif;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 999;
}

#backToTop:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

#backToTop.show {
  opacity: 1;
  pointer-events: auto;
}

#backtotop2 {
  position: fixed;
  display: flex;
justify-content: center; /* horizontal align */
align-items: center;     /* vertical align */

  bottom: 25px;
  right: 25px;
  z-index: 9999;

  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;

  background-color: #0b5d4a; /* adjust to match your theme */
  color: #fff;
  font-size: 22px;
  cursor: pointer;

  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#backtotop2.show {
  opacity: 1;
  visibility: visible;
}

#backtotop2:hover {
  background-color: #08806a;
}



/* === FLOATING WHATSAPP BUTTON === */
.whatsapp-float {
  position: fixed;
  bottom: 85px;
  right: 25px;
  background-color: #25D366; /* WhatsApp green */
  color: white;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration:none;
}

.whatsapp-float:hover {
  background-color: #1ebe5b;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.whatsapp-float i {
  line-height: 0;
}

.whatsapp-float::after {
  content: "Chat with us";
  position: absolute;
  right: 70px;
  bottom: 15px;
  background: var(--deepblue, #003333);
  color: #fff;
  font-size: 0.8rem;
  padding: 6px 10px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}
.whatsapp-float:hover::after {
  opacity: 1;
}


/* RESPONSIVE POSITION ADJUSTMENT */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 26px;
    bottom: 80px;
    right: 20px;
  }
}


.cta-container {
  max-width: 900px;               /* shrink container for better center alignment */
  margin: 0 auto;                 /* horizontal center */
  display: flex;
  flex-wrap: wrap;
  align-items: center;            /* vertically center button with text */
  justify-content: center;        /* horizontally center everything */
  gap: 1.5rem;                    /* spacing between text and button */
  text-align: center;             /* center text inside container */
}

.cta-content {
  flex: 0 0 auto;                 /* let content size naturally */
  max-width: 600px;               /* keep text readable */
  padding: 2em 1em 2em 1em;       /* padding all around */
}

.cta-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-content p {
  font-size: 1.15rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
  text-align:left;
}

.cta-action {
  flex: 0 0 auto;
  margin-left: 0;                 /* no extra left margin since everything is centered */
}

.cta-button {
  display: inline-block;
  padding: 1.2rem 3rem;           /* nice big button */
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  background-color: #003300;
  color: #fff;
  transition: all 0.25s ease;
  text-align: center;
}

.cta-button:hover {
  background-color: #339933;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .cta-container {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-content {
    max-width: 100%;
    padding: 1.5em 1em;
  }

  .cta-action {
    margin-top: 1rem;
  }
}

/*career page */

/* Basic Hero Section */
.hero-career {
  position: relative;
  height: 100vh;
  background-image: url('images/hero-career.jpg'); /* Replace with career image */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end; /* content aligns at bottom */
  justify-content: center;
  font-family: "Bricolage Grotesque", sans-serif;
}

/* Bottom overlay */
.hero-career-overlay {
  position: absolute;
  bottom: 0;          /* stick to bottom */
  left: 0;
  width: 100%;
  background: rgba(48, 113, 48, 0.55);
  backdrop-filter: blur(3px);
  display: flex;
  justify-content: center;
  padding: 2rem;      /* space for content */
  box-sizing: border-box;
}

/* Content container */
.hero-career-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  color: white;
  gap: 2rem;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

/* Animate in when visible */
.hero-career-content.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Text block on left */
.hero-career-text {
  flex: 1;
}

.hero-career-text h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(0,0,0,0.8);
}

.hero-career-text p {
  font-size: 1rem;
  line-height: 1.5;
}

/* Button on right */
.hero-career-buttons {
  flex-shrink: 0;
}

/* Special-shaped button with animation */
.hero-career .btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.hero-career .btn-primary {
  background: #006600;
  color: white;
  animation: pulse 2s infinite;
}

.hero-career .btn-primary:hover {
  background: #1e40af;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* Pulse animation */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* Moving arrow inside button */
.hero-career .btn-primary::after {
  content: '→';
  display: inline-block;
  margin-left: 0.5rem;
  animation: moveArrow 1s infinite;
}

@keyframes moveArrow {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-career {
    height: auto;
    min-height: 100vh;
    align-items: flex-end;
  }
  .hero-career-overlay {
    padding: 1.5rem;
  }
  .hero-career-content {
    flex-direction: column;
    text-align: left;
    gap: 1.5rem;
  }
  .hero-career-buttons {
    width: 50%;
    display: flex;
    justify-content: flex-start;
  }
  
  .hero-career-text h1 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(0,0,0,0.8);
}

.hero-career-text p {
  font-size: .85rem;
  line-height: 1.25;
}
.hero-career .btn {
  padding: 1rem 0.5rem;
  font-size: .85rem;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
}

