@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; }
    }

    /* ---------------- HERO ---------------- */
   .hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

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

.hero-content {
  position: relative;
  z-index: 3;
  text-align: left;
  padding: 1rem;
  max-width: 1200px;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.hero-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: #ff6b6b;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.hero-btn:hover {
  background: #ff4c4c;
}

	
.scifi-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 14px 40px;
  margin-top: 25px;

  font-size: 1.2rem;
  font-weight: 700;               /* BOLDER text */
  color: #ffffff;                 /* WHITE text */
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;

  border: 3px solid #fff;      /* golden-green */
  border-radius: 10px;

  overflow: hidden;
  backdrop-filter: blur(4px);

  /* Golden-green glow */
  box-shadow:
    0 0 12px #b6ff4d,
    0 0 28px #b6ff4d inset,
    0 0 16px rgba(182,255,77,0.6);

  transition: 0.35s ease-in-out;
}

/* Icon with no glow */
.scifi-btn .about-icon {
  stroke: #b6ff4d;
  transition: 0.3s ease;
}

/* On hover: icon dark for contrast */
.scifi-btn:hover .about-icon {
  stroke: #1a1a1a;
}

/* BUTTON HOVER EFFECT */
.scifi-btn:hover {
  background: rgba(182,255,77,0.22);
  box-shadow:
    0 0 28px #b6ff4d,
    0 0 65px #b6ff4d inset,
    0 0 60px rgba(182,255,77,1);
  transform: scale(1.07);
}

/* Top + Bottom animated scan lines */
.scifi-btn::before,
.scifi-btn::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 140%;
  left: -120%;
  background: linear-gradient(90deg, transparent, #b6ff4d, transparent);
  opacity: 0.85;
  animation: scanline 3s linear infinite;
}

.scifi-btn::before { top: 0; }
.scifi-btn::after  { bottom: 0; animation-delay: 1.5s; }

/* Brackets restored */
.scifi-btn .label {
  position: relative;
}

.scifi-btn .label::before,
.scifi-btn .label::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid #b6ff4d;
  opacity: 0.6;
  transition: 0.3s ease;
}

.scifi-btn .label::before {
  top: -10px;
  left: -22px;
  border-right: none;
  border-bottom: none;
}

.scifi-btn .label::after {
  bottom: -10px;
  right: -22px;
  border-left: none;
  border-top: none;
}

.scifi-btn:hover .label::before,
.scifi-btn:hover .label::after {
  opacity: 1;
  transform: scale(1.25);
}

/* Animations */
@keyframes scanline {
  0%   { left: -120%; }
  50%  { left: 20%; }
  100% { left: 120%; }
}

@keyframes pulseGlow {
  0%   { box-shadow: 0 0 12px #b6ff4d; }
  50%  { box-shadow: 0 0 26px #b6ff4d; }
  100% { box-shadow: 0 0 12px #b6ff4d; }
}

.scifi-btn {
  animation: pulseGlow 3s infinite ease-in-out;
}

    @media(max-width:768px){
	.hero {
      position:relative;
      height:100vh;
	  height: 100dvh; 
	  }
      h1{ font-size:2.2rem; }
      p{ font-size:1rem; }
	  
	  
  .scifi-btn {
    padding: 12px 28px;
    font-size: 1rem;
    gap: 10px;
    border-width: 1.8px;
  }

  .scifi-btn .about-icon {
    width: 20px;
    height: 20px;
  }

  .scifi-btn .label::before,
  .scifi-btn .label::after {
    width: 12px;
    height: 12px;
  }

  .scifi-btn .label::before {
    top: -8px;
    left: -18px;
  }
  .scifi-btn .label::after {
    bottom: -8px;
    right: -18px;
  }
 }
 
    @media(max-width:480px){
		.hero {
      position:relative;
      height:100vh;
	  height: 100dvh; 
	  }
      h1{ font-size:2.2rem; }
      p{ font-size:1rem; }
	  
      .hero-content{ 
	  margin:.35em 1.25em;
	  	top:50px; 
		 }
	  
	  .scifi-btn {
    padding: 10px 22px;
    font-size: 0.9rem;
    gap: 8px;

    border-width: 1.6px;
    border-radius: 8px;

    /* Slightly reduce glow for mobile */
    box-shadow:
      0 0 6px #b6ff4d,
      0 0 14px #b6ff4d inset,
      0 0 8px rgba(182,255,77,0.5);
  }

  .scifi-btn:hover {
    transform: scale(1.04); /* less jumpy on small screens */
    box-shadow:
      0 0 14px #b6ff4d,
      0 0 32px #b6ff4d inset,
      0 0 22px rgba(182,255,77,1);
  }

  .scifi-btn .about-icon {
    width: 18px;
    height: 18px;
  }

  .scifi-btn::before,
  .scifi-btn::after {
    height: 1.5px;
    opacity: 0.65;
  }

  /* Brackets smaller & closer */
  .scifi-btn .label::before,
  .scifi-btn .label::after {
    width: 10px;
    height: 10px;
    border-width: 1.4px;
  }

  .scifi-btn .label::before {
    top: -6px;
    left: -16px;
  }
  .scifi-btn .label::after {
    bottom: -6px;
    right: -16px;
  }
  
    }

    /* ---------------- TECH BOXES ---------------- */
    .tech-boxes {
      position:absolute;
      bottom:0rem;
      right:2rem;
      display:flex;
      gap:1rem;
      flex-wrap:wrap;
      z-index:3;
    }
    .box {
      position:relative;
      width:230px;
      height:280px;
      border-radius:16px;
      padding:1rem;
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:space-between;
      overflow:hidden;
      cursor:pointer;
      transition:transform 0.3s;
    }
    .box:hover{ transform:scale(1.05); }
    .box::before{
      content:"";
      position:absolute;
      inset:0;
      background: rgba(255,255,255,0.08);
      backdrop-filter:blur(15px);
      border-radius:16px;
      z-index:0;
    }
    .box *{ position:relative; z-index:1; }
    .box h3{ text-align:center; color:#ccc; font-size:1.15rem; font-weight:200; margin: .55em .85em}
    .box img{ width:180px; height:180px; object-fit:contain; }
    .link{ color:#ccc; text-decoration:none; display:flex; align-items:center; gap:0.3rem; font-weight:700; font-size:1.35em; }

    @media(max-width:768px){ .tech-boxes{ flex-direction:column; right:1rem; bottom:1rem; } .box{ width:180px; height:220px; } }
    @media(max-width:480px){ .tech-boxes{ display:none; } }
	
	
	
 /* ======================
     VIDEO SECTION
====================== */
.video-section {
  background: url(images/videobgnew.jpg);
  height:100vh;
  height: 100dvh;
  padding: 4rem 1%;
  color: var(--text-light);
  position: relative;
  font-family: 'Lato', sans-serif;
}

/* ---- Centered main title ---- */
.video-main-title {
  text-align: center;
  font-size: 1.85rem;
  font-weight: 700;
  color: #104a29;
  font-family: 'Lato', sans-serif;
  margin-top:-2px;
  margin-right:3em;
  margin-bottom:2.5em;
}

/* ---- 2 column layout (TEXT LEFT, VIDEO RIGHT) ---- */
.video-content {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr; /* left wider */
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* remove original H2 inside column */
.video-text h2 {
  display: none;
}

.video-text p {
  color: rgba(0,0,0,1);
  line-height: 1;
  font-size: 1.25rem;
  margin-bottom: 0rem;
  font-family: 'Lato', sans-serif;
  margin-left:6em;
  margin-right:.85em;
  margin-top:1.5em;
}

/* Initial animation state */
.video-text p {
  transform: scale(0.9);
  opacity: 0;
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
  transform-origin: center center;
}

/* animate on visible */
.video-text.visible p {
  transform: scale(1);
  opacity: 1;
}

/* ---- VIDEO THUMBNAIL ---- */
.video-thumbnail {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 480px;            /* fixed width */
  aspect-ratio: 16/9;
  margin-left: auto;       /* push to right */
  margin-right:1em;
}

.video-thumbnail:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.video-thumbnail video {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/9;
  border-radius: 20px;
}

.video-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  transition: background 0.3s ease;
}
.video-thumbnail:hover .video-overlay {
  background: rgba(0,0,0,0.1);
}

.video-overlay svg {
  width: 5vw;
  height: 5vw;
  max-width: 100px;
  max-height: 100px;
  stroke: #fff;
  stroke-width: 1.5;
}

/* ---- VIDEO MODAL ---- */
.video-modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}
.video-modal.active {
  display: flex;
}
.video-backdrop {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(10,15,26,0.8);
  backdrop-filter: blur(12px);
}
.video-frame {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 90%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}
.video-frame video {
  width: 100%;
  height: auto;
  display: block;
}
.close-btn {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(0,0,0,0.4);
  border: none;
  color: #fff;
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}
.close-btn:hover {
  background: rgba(0,0,0,0.7);
}

/* ======================
     RESPONSIVE
====================== */
@media (min-width: 1600px) {

.video-section {
  background: url(images/videobgnew1680.jpg);
  height:100vh;
  height: 100dvh;
  padding: 4rem 2%;
  color: var(--text-light);
  position: relative;
  font-family: 'Lato', sans-serif;
}
/* ---- 2 column layout (TEXT LEFT, VIDEO RIGHT) ---- */
.video-content {
  display: grid;
  grid-template-columns: 2fr 1fr; /* left wider */
  align-items: center;
  gap: 3rem;
  max-width: 1700px;
  margin: 0 auto;
}

/* remove original H2 inside column */
.video-text h2 {
  display: none;
}

.video-text p {
  color: rgba(0,0,0,1);
  line-height: 1;
  font-size: 1.85rem;
  margin-bottom: 0rem;
  font-family: 'Lato', sans-serif;
  margin-left:5.5em;
  margin-right:1.25em;
  margin-top:1.95em;
}

.video-frame {
  position: relative;
  z-index: 2;
  max-width: 1600px;
  width: 90%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}
.video-frame video {
  width: 100%;
  height: auto;
  display: block;
}
}

@media (max-width: 768px) {

.video-section {
  background: url(images/videobgnewvt.jpg);
  height:100vh;
  height: 100dvh;
  padding: 2rem 1%;
  color: var(--text-light);
  position: relative;
  font-family: 'Lato', sans-serif;
}

  .video-content {
    grid-template-columns: 1fr;
    text-align: left;
  }
  
  
  .video-thumbnail {
    width: 80%;
    margin: 0 auto;
  }

.video-main-title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: #104a29;
  font-family: 'Lato', sans-serif;
  margin-top:2px;
  margin-right:1em;
  margin-left:1em;
  margin-bottom:0.5em;
}

.video-text p {
  color: rgba(0,0,0,1);
  line-height: 1;
  font-size: .95rem;
  margin-bottom: 0rem;
  font-family: 'Lato', sans-serif;
  margin-left:2em;
  margin-right:1.25em;
  margin-top:.85em;
}

  .video-overlay svg {
    width: 14vw;
    height: 14vw;
  }
}



/* Make the section relative so the overlay can be absolute */
.research-section {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 60px 20px 60px 10px;
  background: url("images/techgreenbgs2.jpg") center/cover no-repeat;
  position: relative; /* important for absolute positioning */
  gap: 80px;
  flex-wrap: wrap;
  height:100vh;
  height: 100dvh;
}

/* Overlay image positioned at top-left corner of the section */
.overlay-image {
  position: absolute; /* absolute relative to .research-section */
  top: 50px;
  left: 40px;
  width: 390px;
  height: 390px;
  background: url("images/researchcaptionsm.png") no-repeat center/contain;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay-title {
  color: #00ffbf;
  font-size: 58px;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 0 10px #00ff9d;
  margin-bottom:1em;
}

/* Adjust button to be just below the overlay */
.research-btn {
  display: inline-block;
  margin-top: 420px;
  margin-left:120px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #fff, #ccc);
  border: 2px solid #00ff33;
  color: #006633;
  font-weight: 600;
  font-size: 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 12px rgba(0,255,51,0.3);
}

.research-btn:hover {
  background: linear-gradient(135deg, #00ff33, #006633);
  box-shadow: 0 0 20px rgba(0,255,51,0.5);
  transform: translateY(-2px);
  color:#FFFFFF;
}


/* Adjust right content spacing */
.research-right {
  margin-left: 160px; /* leave space for overlay + button */
  margin-right:0px;
  flex: 1;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.research-img img {
  width: 70%;
  display: block;
  margin: 0 auto;
  border-radius: 14px;
  margin-left:auto;
  margin-right:auto;



  /* Floating animation */
  animation: subtleFloat 5s ease-in-out infinite;
}

@keyframes subtleFloat {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}


.research-right .short-title{
color:#CCCCCC;
font-size:2.25em;
  margin-left:auto;
  margin-right:auto;
}

.research-right .research-desc{
color:#fff;
font-size:1.35em;
  margin-left:auto;
  margin-right:auto;
}

/* Responsive adjustments */
/* =============================== */
/* RESPONSIVE: MOBILE (max-width: 768px) */
/* =============================== */
@media screen and (max-width: 768px) {

  .research-section {
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    height: auto;
    gap: 20px;
  }

  /* Overlay image shrinks and centers */
  .overlay-image {
    position: relative;
    top: 0;
    left: 0;
    width: 280px;
    height: 280px;
    margin: 0 auto;
  }

  .overlay-title {
    font-size: 42px;
  }

  /* Right content full width */
  .research-right {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    text-align: center;
    padding-top: 20px;
  }

  /* Image centered */
  .research-img img {
    width: 85%;
  }

  .short-title {
    font-size: 1.75em;
  }

  .research-desc {
    font-size: 1em;
    padding: 0 10px;
  }

  /* BUTTON MOVED BELOW DESCRIPTION */
  .research-btn {
    position: relative;
    margin: 20px auto 0 auto;
    display: block;
    top: auto !important;
    left: auto !important;
    width: fit-content;
  }
}

/* New mirrored version */
.researchon-section {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 60px 20px 60px 10px;
  background: url("images/techgreenbgsrv.jpg") center/cover no-repeat;
  position: relative;
  gap: 60px;
  flex-wrap: wrap;
  height: 100vh;
  height: 100dvh;
}

/* OVERLAY MOVED TO RIGHT */
.researchon-right {
  position: relative;
}

/* Overlay image positioned at top-right */
.researchon-overlay-image {
  position: absolute;
  top: -10px;
  right: 0px;
  width: 420px;
  height: 420px;
  background: url("images/researchcaptionsm.png") no-repeat center/contain;
  display: flex;
  align-items: center;
  justify-content: center;
}

.researchon-overlay-title {
  color: #00ffbf;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 0 10px #00ff9d;
}

/* MIRRORED BUTTON: BELOW OVERLAY ON RIGHT */
.researchon-btn {
  display: inline-block;
  margin-top: 480px;
  margin-right: 80px;
  padding: 12px 28px;
  /*background: linear-gradient(135deg, #006633, #00ff33);*/
  background: linear-gradient(135deg, #fff, #ccc);
  border: 2px solid #00ff33;
  color: #006633;
  font-weight: 600;
  font-size: 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 12px rgba(0,255,51,0.3);
  float: right;
}

.researchon-btn:hover {
  background: linear-gradient(135deg, #00ff33, #006633);
  box-shadow: 0 0 20px rgba(0,255,51,0.5);
  transform: translateY(-2px);
  color:#FFFFFF;
}

/* LEFT CONTENT — MIRRORED */
.researchon-left {
  margin-right: 90px; 
  margin-left: 30px;
  flex: 1;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.researchon-left .short-title {
  color: #CCCCCC;
  font-size: 2.25em;
}

.researchon-left .research-desc {
  color: #fff;
  font-size: 1.35em;
}

/* Image effects identical to original */
.researchon-left img {
  width: 70%;
  display: block;
  margin: 0 auto;
  border-radius: 14px;
  animation: subtleFloat 5s ease-in-out infinite;

}

@keyframes subtleFloat {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

/* RESPONSIVE */
/* MOBILE + TABLET RESPONSIVE ---------------------------- */
@media screen and (max-width: 768px) {

  /* stack everything vertically */
  .researchon-section {
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 40px 10px;
    gap: 20px;
  }

  /* ---------- REORDER ELEMENTS ON MOBILE ---------- */

  /* overlay block becomes FIRST */
  .researchon-right {
    order: 1;
    width: 100%;
    text-align: center;
  }

  .researchon-overlay-image {
    position: relative;
    margin: 0 auto;
    right: auto;
    top: 0;
    width: 330px;
    height: 330px;
  }
  
  .researchon-overlay-title {
  color: #00ffbf;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 0 10px #00ff9d;
}

  /* button becomes SECOND — below the overlay */
.researchon-btn {
    position: relative;
    float: none;
    margin: 15px auto !important;
    display: inline-block;   /* <<< FIX — shrink to text size */
    width: auto;             /* ensure width follows text */
    padding: 12px 28px;      /* keeps spacing consistent */
  }

  /* image becomes THIRD */
  .researchon-left .research-img {
    order: 3;
  }

  /* description becomes FOURTH */
  .researchon-left .research-desc {
    order: 4;
  }

  /* short title stays with the left block but moves below overlay (if needed) */
  .researchon-left .short-title {
    order: 3;
  }

  .researchon-left {
    order: 3;
    margin: 0;
    text-align: center;
    width: 100%;
  }

  .researchon-left img {
    width: 95%;
    max-width: 360px;
  }
}


/* TABLETS LANDSCAPE (769px – 1024px) ---------------------------- */
@media screen and (min-width: 769px) and (max-width: 1024px) {

  .researchon-section {
    gap: 30px;

    padding: 60px 20px;
    height: auto;
  }

  .researchon-overlay-image {
    width: 300px;
    height: 300px;
  }

  .researchon-btn {
    margin-top: 320px;
    margin-right: 20px;
  }

  .researchon-left {
    max-width: 500px;
  }
}


/* Horizon Ads Section */
.horizonads {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5rem 2%;
  background: linear-gradient(to bottom left, rgba(0,153,102,0.25), rgba(0,102,0,0.35)),
              url("images/vidbg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Content box */
.horizonads .content-box {
  position: relative;
  background: rgba(255,255,255,0.85);
  border-radius: 2rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  padding: 3rem;
  max-width: 1200px;
  width: 100%;
  margin: 0;
  text-align: left;
  z-index: 1;
}

/* Title */
.horizonads .content-box h2 {
  font-size: 3em;
  margin-bottom: 1rem;
  color: #222;
}

/* Description */
.horizonads .content-box p {
  font-size: 1.25em;
  line-height: 1.6em;
  color: #555;
  margin-bottom: 2rem;
    margin-right:15em;
}

/* Button with go icon */
.horizonads .content-box a.button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background-color: #007bff;
  color: #fff;
  font-weight: bold;
  border-radius: 1rem;
  text-decoration: none;
  transition: background 0.3s ease;
  width: auto;
  max-width: fit-content;
  align-self: flex-start;
}
.horizonads .content-box a.button:hover {
  background-color: #0056b3;
}

/* Overlay image */
.horizonads .overlay-image-1 {
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translateY(-50%);
  width: 35%;
  max-width: 400px;
  height: auto;
  z-index: 2; /* higher than content-box */
  pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .horizonads {
    flex-direction: column;
    padding: 6rem 1.5rem;
  }

  .horizonads .content-box {
    padding: 13rem 2rem 2rem 2rem; /* top padding makes space for overlay image */
    text-align: left;
    margin: 0 1.5rem;
    padding-right: 2rem;
  }

  .horizonads .overlay-image-1 {
    position: absolute;
    top: 20px; /* top half above box */
    right: 20px; /* adjust for overlap */
    width: 60%;
    max-width: 250px;
    transform: none;
    z-index: 2;
  }

  .horizonads .content-box a.button {
    align-self: flex-start;
  }
  
  /* Title */
.horizonads .content-box h2 {
  font-size: 1.65em;
  color: #222;
}

/* Description */
.horizonads .content-box p {
  font-size: 1.05em;
  color: #555;
  width:100%;
}
}


 /* ======================
     SECTION STYLING
  ===================== */
  .ads-section {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* two columns */
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1rem;
    font-family: 'Lato', sans-serif;
    min-height: 60vh;
	min-height: 60dvh;
	height:100vh;
	  background: url(images/adbncbg.jpg);
  }

  /* LEFT COLUMN (TITLE) */
  .ads-title {
    writing-mode: horizontal-tb;
    text-align: center;
    font-size: 4.5rem;
    font-weight: 700;
    color: #006633;
	text-shadow: 5px 5px 10px #00ff9d;
  }
  
 .ads-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(145deg, #e0e0e0, #c8c8c8);
  color: #333;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  border: 1px solid #aaa;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.ads-button:hover {
  background: linear-gradient(145deg, #d0d0d0, #b8b8b8);
  transform: translateY(-2px);
  box-shadow: 4px 4px 8px rgba(0,0,0,0.15);
}

.ads-button svg {
  width: 22px;
  height: 22px;
  fill: #555;
  transition: transform 0.3s ease;
}

.ads-button:hover svg {
  transform: rotate(10deg) scale(1.1);
}

/* Sparkle effect */
.ads-button::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  top: 10%;
  left: 10%;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}

.ads-button:hover::after {
  opacity: 1;
  transform: scale(1);
  top: 5%;
  left: 85%;
}

  /* RIGHT COLUMN (CONTENT + IMAGE) */
  .ads-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
	margin-top:6em;
  }

  .ads-content p {
    font-size: 1.35rem;
    line-height: 1.2;
    color: rgba(0,0,0,0.9);
	margin-left:1em;
	margin-right:1.5em;
  }

  .ads-content img {
    width: 55%;
    border-radius: 12px;
    object-fit: cover;
	margin-left:auto;
	margin-right:auto;
	
  }

  /* ======================
     RESPONSIVE
  ===================== */
  /*  @media (min-width: 1600px) {
	 .ads-section {
height:80vh;
	background: url(images/adbncbg.jpg);
	}*/
  
   @media (max-width: 768px) {
  .ads-section {
    display: flex;
    flex-direction: column;
    padding: 2rem 1rem;
    text-align: center;
	min-height: 110vh;
	min-height: 110dvh;
	background: url(images/adbncbgrv.jpg);
  }

  .ads-left {
    align-items: center;
    justify-content: flex-start; /* stack top */
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .ads-title {
    font-size: 3.25rem;
  }

  .ads-content img {
    width: 80%;
    margin: 0 auto;
  }
  
    .ads-content p {
    font-size: .85rem;
	text-align:justify;
  }
}	


 


/* ===== 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;
}


/* === 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;
}

.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, #002D62);
  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;
  }
}


