/* =====================
   GLOBAL SMOOTH SCROLL
   ===================== */
html {
  scroll-behavior: smooth; /* This handles the smooth click scrolling */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: rgb(47, 8, 66);
  color: white;
  overflow-x: hidden;
}

header {
  height: 90px;
  background: linear-gradient(-45deg, rgb(47, 8, 66), rgb(0, 91, 107), #16213e);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  border-bottom: 3px solid rgb(245, 222, 179);
  position: fixed;
  width: 100%;
  z-index: 100;
  box-shadow: 0 0 60px 20px rgba(0, 0, 0, 0.662);
  animation: bg-animation 3s infinite alternate;
  background-size: 400%;
  /* The Underline Effect */
  /* Hover State */
  /* Active State (Triggered by JS) */
}
header .logo_content {
  display: flex;
  align-items: center;
}
header .logo_content img {
  margin-right: 25px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2.223px solid teal;
  box-shadow: 7px 7px 10px black;
}
header .logo_content .brand-text h1 {
  font-family: "Courier New", monospace;
  color: rgb(245, 222, 179);
  font-size: 1.5rem;
  margin-bottom: 0;
}
header .logo_content .brand-text .subtitle {
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
}
header .navi1 ul {
  display: flex;
  gap: 50px;
}
header .navi1 ul li a {
  color: rgb(245, 222, 179);
  font-weight: bold;
  font-size: 1.1rem;
  transition: color 0.3s;
}
header .navi1 ul li a:hover {
  color: white;
  text-shadow: 0 0 10px rgb(245, 222, 179);
}
header .nav-link {
  /* Using Wheat color instead of undefined var */
  color: rgb(245, 222, 179);
  font-weight: 500;
  position: relative; /* Essential for the underline to stick to the text */
  padding: 5px 0;
  transition: color 0.3s;
}
header .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0; /* Start hidden */
  height: 2px;
  background: #04aa6d; /* Your Teal color */
  transition: width 0.3s ease-in-out; /* The smooth animation */
}
header .nav-link:hover::after {
  width: 100%;
}
header .nav-link.active::after {
  width: 100%;
  background: rgb(245, 222, 179); /* Wheat color when active */
}

main {
  padding-top: 90px;
}

.hero {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: radial-gradient(rgb(0, 91, 107) 10%, rgb(47, 8, 66) 90%);
  text-align: center;
}
.hero .hero_text {
  max-width: 800px;
}
.hero .hero_text h1 {
  font-size: 3.5rem;
  color: rgb(245, 222, 179);
  margin-bottom: 20px;
  line-height: 1.2;
}
.hero .hero_text p {
  font-size: 1.2rem;
  color: #ddd;
  margin-bottom: 40px;
  font-family: "Courier New", monospace;
}
.hero .hero_text .hero_buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.hero .hero_text .hero_buttons .btn-primary {
  background-color: rgb(245, 222, 179);
  color: rgb(47, 8, 66);
  padding: 15px 30px;
  font-weight: bold;
  border: 2px solid rgb(245, 222, 179);
  box-shadow: 8px 8px 0px 0px rgb(0, 0, 0);
  transition: transform 0.2s;
  border-radius: 7px;
}
.hero .hero_text .hero_buttons .btn-primary:hover {
  transform: translate(-2px, -2px);
}
.hero .hero_text .hero_buttons .btn-secondary {
  background-color: transparent;
  color: rgb(245, 222, 179);
  padding: 15px 30px;
  border: 2px solid rgb(245, 222, 179);
  box-shadow: 8px 8px 0px 0px rgb(0, 0, 0);
  border-radius: 7px;
}
.hero .hero_text .hero_buttons .btn-secondary:hover {
  background-color: rgba(245, 222, 179, 0.1);
}

@keyframes bg-animation {
  0% {
    background-position: left;
  }
  100% {
    background-position: right;
  }
}
/* ===================== */
/* ABOUT SECTION */
/* ===================== */
.about {
  background: #16213e;
  box-shadow: 0 0 60px 20px rgba(0, 0, 0, 0.662);
}
.about section {
  padding: 180px 0;
}
.about h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.2;
  justify-content: center;
}
.about p {
  margin-bottom: 1.5rem;
  color: wheat;
}
.about a {
  color: var(--accent-green);
  text-decoration: none;
  transition: var(--transition);
}

.about-container {
  max-width: 1700px;
  margin: 0 auto;
  padding: 0 20px;
  justify-content: center;
}

.about-content {
  display: grid;
  /* Change '1fr' to 'auto' so the left column shrinks to fit your image size exactly */
  grid-template-columns: auto 1.5fr;
  gap: 40px;
  align-items: start; /* Keeps text at the top */
  height: 140vh;
}

.about-img1 {
  /* CONTROL SIZE HERE */
  width: 500px; /* Change this number to resize width */
  height: 800px; /* Change this number to resize height */
  /* PREVENT DISTORTION */
  -o-object-fit: cover;
     object-fit: cover;
  /* STYLING */
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-hard);
  box-shadow: 8px 8px 0px 0px rgb(0, 0, 0);
}

/* --- IMAGE 2 (Bottom Right) --- */
.about-img2 {
  /* CONTROL SIZE HERE - Make it different from img1 */
  width: 650px; /* Change this number to resize width */
  height: 420px; /* Specific height */
  /* PREVENT DISTORTION */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right; /* Focuses on center of image */
  /* STYLING */
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-hard);
  box-shadow: 8px 8px 0px 0px rgb(0, 0, 0);
}

.about-text {
  width: 700px;
}

.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--accent-green);
}

.about-text p {
  margin-bottom: 1.5rem;
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.skill-tag {
  background: var(--card-bg);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.skill-tag:hover {
  cursor: crosshair;
  color: wheat;
}

.showcase-section {
  padding: 80px 10%;
  background-color: rgb(245, 222, 179);
  color: rgb(47, 8, 66);
}
.showcase-section .section-title {
  margin-bottom: 50px;
}
.showcase-section .section-title h2 {
  font-size: 2.5rem;
  text-transform: uppercase;
}
.showcase-section .section-title .line {
  justify-content: center;
  width: 430px;
  height: 5px;
  background: rgb(0, 91, 107);
}
.showcase-section .research-card {
  display: flex;
  border: 4px solid rgb(47, 8, 66);
  background: white;
  box-shadow: 8px 8px 0px 0px rgb(0, 0, 0);
}
.showcase-section .research-card .research-visual {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: black;
}
.showcase-section .research-card .research-visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.6;
}
.showcase-section .research-card .research-visual .code-overlay {
  position: absolute;
  top: 10px;
  left: 2px;
  font-family: "Courier New", monospace;
  color: #0f0;
  background: rgba(0, 0, 0, 0.534);
  padding: 10px;
  z-index: 2;
}
.showcase-section .research-card .research-info {
  flex: 1;
  padding: 40px;
}
.showcase-section .research-card .research-info h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}
.showcase-section .research-card .research-info .tag {
  background: rgb(0, 91, 107);
  color: rgb(0, 0, 0);
  padding: 5px 10px;
  font-size: 0.8rem;
  margin-right: 5px;
  font-weight: bold;
}
.showcase-section .research-card .research-info p {
  margin: 20px 0;
  line-height: 1.6;
}
.showcase-section .research-card .research-info .btn-small {
  background: rgb(0, 91, 107);
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 8px 8px 0px 0px rgb(0, 0, 0);
  border-radius: 7px;
}
.showcase-section .research-card .research-info .btn-small:hover {
  background: rgb(53.4783783784, 9.1027027027, 75.0972972973);
  transform: translateY(-3px);
  transition: all 0.3s ease;
}

.grid-section {
  padding: 80px 10%;
  background-color: rgb(47, 8, 66);
}
.grid-section .section-title h2 {
  color: rgb(245, 222, 179);
  font-size: 1.8rem;
  margin-bottom: 2px;
}
.grid-section .line {
  justify-content: center;
  width: 250px;
  height: 5px;
  background: rgb(0, 91, 107);
  margin-bottom: 40px;
}
.grid-section .grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.grid-section .project-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgb(0, 91, 107);
  padding: 30px;
  text-align: center;
  transition: 0.3s;
  height: 50vh;
}
.grid-section .project-card .icon-large {
  font-size: 3rem;
  color: rgb(245, 222, 179);
  margin-bottom: 20px;
}
.grid-section .project-card h3 {
  color: wheat;
  margin-bottom: 10px;
}
.grid-section .project-card p {
  color: #aaa;
  margin-bottom: 20px;
}
.grid-section .project-card a {
  color: rgb(0, 91, 107);
  font-weight: bold;
}
.grid-section .project-card:hover {
  background: rgb(0, 91, 107);
  transform: translateY(-5px);
}
.grid-section .project-card:hover h3, .grid-section .project-card:hover p, .grid-section .project-card:hover a, .grid-section .project-card:hover .icon-large {
  color: white;
}

.human-section {
  padding: 80px 10%;
  background-color: rgb(28.6785714286, 43.0178571429, 80.8214285714);
  border-top: 2px solid rgb(245, 222, 179);
}
.human-section .section-title h2 {
  color: wheat;
}
.human-section .human-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}
.human-section .stat-card {
  background: rgb(30, 30, 30);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
  position: relative;
  transition: 0.3s;
  overflow: hidden;
}
.human-section .stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: rgb(245, 222, 179);
  transition: width 0.3s;
}
.human-section .stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}
.human-section .stat-card:hover::before {
  width: 100%;
}
.human-section .stat-card:hover .icon-box i {
  color: rgb(245, 222, 179);
  transform: scale(1.1);
}
.human-section .stat-card .icon-box {
  margin-bottom: 20px;
}
.human-section .stat-card .icon-box i {
  font-size: 2.5rem;
  color: rgb(0, 91, 107);
  transition: 0.3s;
}
.human-section .stat-card h3 {
  font-family: "Fjall One", sans-serif;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.human-section .stat-card p {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 20px;
}
.human-section .stat-card .skill-bars .bar-container {
  margin-bottom: 10px;
}
.human-section .stat-card .skill-bars .bar-container span {
  font-size: 0.8rem;
  color: rgb(245, 222, 179);
  display: block;
  margin-bottom: 3px;
  font-family: "Courier New", monospace;
}
.human-section .stat-card .skill-bars .bar-container .bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}
.human-section .stat-card .skill-bars .bar-container .bar .fill {
  height: 100%;
  background: rgb(0, 91, 107);
  border-radius: 3px;
}

.evidence-section {
  padding: 50px 10%;
  background-color: rgb(47, 8, 66);
  border-top: 4px solid rgb(0, 91, 107);
}
.evidence-section .section-title h2 {
  color: rgb(245, 222, 179);
}
.evidence-section .section-title .line {
  background: rgb(0, 91, 107);
}
.evidence-section .evidence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.evidence-section .evidence-card {
  background: rgb(37.2824324324, 6.3459459459, 52.3540540541);
  border: 2px solid rgb(245, 222, 179);
  box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s;
}
.evidence-section .evidence-card:hover {
  transform: translateY(-5px);
  box-shadow: 8px 8px 0px rgb(0, 91, 107);
}
.evidence-section .evidence-card:hover .status-light {
  background: #0f0;
  box-shadow: 0 0 10px #0f0;
}
.evidence-section .evidence-card .card-header {
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.05);
  color: rgb(0, 91, 107);
  font-family: "Courier New", monospace;
  font-size: 0.85rem;
  font-weight: bold;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
}
.evidence-section .evidence-card .card-header .status-light {
  width: 8px;
  height: 8px;
  background: red;
  border-radius: 50%;
  display: inline-block;
  transition: 0.3s;
}
.evidence-section .evidence-card .video-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  background: black;
  overflow: hidden;
}
.evidence-section .evidence-card .video-wrapper video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.evidence-section .evidence-card .video-wrapper .scanlines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%);
  background-size: 100% 4px;
  pointer-events: none;
  z-index: 2;
  opacity: 0.7;
}
.evidence-section .evidence-card .card-footer {
  padding: 15px;
}
.evidence-section .evidence-card .card-footer p {
  color: #bbb;
  font-size: 0.9rem;
  font-family: sans-serif;
}

footer {
  background: linear-gradient(-45deg, rgb(47, 8, 66) 5%, rgb(0, 91, 107), #16213e);
  background-size: 400%;
  animation: bg-animation 3s infinite alternate;
  padding: 40px;
  text-align: center;
  justify-content: left;
  color: rgba(255, 255, 255, 0.5);
}
@keyframes bg-animation {
  0% {
    background-position: left;
  }
  50% {
    background-position: right;
  }
}
footer .socials {
  margin-top: 10px;
}
footer .socials a {
  color: rgb(245, 222, 179);
  font-size: 1.5rem;
  margin: 0 10px;
}

.footerimg {
  width: 100px;
  height: 100px;
  border-radius: 7px;
  margin-bottom: 15px;
  box-shadow: 15px 5px 15px black;
}

/* ===================== */
/* MEDIA QUERIES */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .research-card {
    flex-direction: column;
  }
  header {
    padding: 0 20px;
  }
  .navi1 {
    display: none;
  }
}
/* ===================== */
/* RESPONSIVE STYLES */
/* ===================== */
@media (max-width: 992px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2rem;
  }
  .about-content {
    grid-template-columns: 1fr;
  }
  .contact-content {
    grid-template-columns: 1fr;
  }
  .timeline::after {
    left: 31px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  .timeline-item:nth-child(even) {
    left: 0;
  }
  .timeline-item::after {
    left: 21px;
  }
  .timeline-item:nth-child(even)::after {
    left: 21px;
  }
}
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    right: -100%;
    flex-direction: column;
    background: var(--primary-blue);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    gap: 0;
  }
  .nav-menu.active {
    right: 0;
  }
  .nav-item {
    margin: 15px 0;
  }
  .mobile-toggle {
    display: block;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=Main_page.css.map */