/* Import Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

/* Global Reset and Basic Styling */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  scroll-behavior: smooth;
  font-family: 'Poppins', sans-serif;
}

/* Root Color Variables */
:root {
  --bg-color: #081b29;
  --second-bg-color: #323946;
  --text-color: #fff;
  --main-color: #0ef;
}

/* General layout and styling */
body {
  background: var(--bg-color);
  color: var(--text-color);
}

/* Header Section */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 25px 9%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  visibility: hidden;
  opacity: 0;
  animation: show-content 1.5s linear forwards;
  animation-delay: 1.2s;
}

.header .sticky {
  border-bottom: .1rem solid rgba(0, 0, 0, .2);
}

.logo {
  font-size: 30px;
  font-weight: 700;
  color: var(--main-color);
}
@media (max-width: 991px) {
  .header {
    padding: 2rem 3%;
  }}

.project-container {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 50px;
  text-align: center;
  padding-bottom: 5rem;
  display: flex;
  flex-wrap: wrap;
}

.project-title {
  font-size: 34px;
  font-weight: bold;
  color: var(--main-color);
  padding: 20px;
  /* padding-top: 5rem; */
  margin:0 auto;
}

/* Styling for the list */
.project-info-list {
  display: flex; 
  flex-wrap: wrap; 
  justify-content: center; 
  padding: 0;
  list-style-type: none; 
  margin: 0 auto;
  gap: 28px; 
  margin-bottom: 20px;
}

/* Style for each list item */
.project-info-list li {
  font-size: 16px;
  color: var(--text-color); 
}

/* Highlight the bold labels */
.project-info-list li strong {
  font-weight: bold;
  color: var(--main-color);
}

/* Grid styling */
.project-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

/* Block styling */
.block {
  padding: 20px;
  background-color: var(--second-bg-color);
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Floating effect */
.block:hover {
  transform: scale(1.02);
  border-color: var(--main-color);
  box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.15);
}

/* Left and right block styling */
.left-block {
  grid-column: 1;
}

.right-block {
  grid-column: 2;
}

.image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Responsive styling */
@media (max-width: 768px) {
  .project-grid {
      grid-template-columns: 1fr;
  }
  .left-block, .right-block {
      grid-column: 1;
  }
}
/* Style the text */

.left-block h2 {
  font-size: 18px;
  font-weight: bold;
  color: var(--main-color);
  text-align: center;
  margin-bottom: 20px;
}

/* Style for the Paragraph */
.left-block p {
  font-size: 15px; 
  line-height: 1.6; 
  text-align: justify; 
  margin-bottom: 20px; 
}

.equation {
  font-size: 12px;
  font-weight: bold;
  color: var(--main-color); 
  text-align: center; 
  margin: 16px 0; 
}

/* Style for Objectives Title (H3) */
.objectives h3 {
  font-size: 16px; 
  font-weight: bold; 
  color: var(--main-color); 
  margin-bottom: 20px; 
}

/* Style for the Objectives Section Title */
.objectives ul {
  list-style: none; 
  padding: 0;
  margin: 0;
}

.objectives li {
  margin-bottom: 10px; 
  font-size: 15px; 
  line-height: 1.6; 
  text-align: left;
  position: relative;
}

/* Add a custom bullet point for each list item */
.objectives li::before {
  content: "•"; 
  color: var(--main-color); 
  font-weight: bold; 
  font-size: 20px;
  display: inline-block;
  width: 1em;
  margin-left: 1em;
}
/* Style for the methodology */
/* Style for the Objectives Section Title */
.methodology ul {
  list-style: none; 
  padding: 0;
  margin: 0;
}

.methodology li {
  margin-bottom: 10px; 
  font-size: 14px; 
  line-height: 1.6; 
  text-align: left;
  position: relative;
}

.methodology li::before {
  content: "•"; 
  color: var(--main-color); 
  font-weight: bold; 
  font-size: 20px;
  display: inline-block;
  width: 1em;
  margin-left: 1em;
}

/* STYLE FOR THE RESULTS & DISCUSSION SECTION */

.results-discussion {
  width: 100%;
/*   max-width: 1200px; */
  text-align: center;
  margin: 0 auto;
  padding: 20px;
  background-color: var(--second-bg-color);
  border-radius: 10px;
}

.results-discussion h2 {
  font-size: 24px;
  color: var(--main-color);
  margin-bottom: 20px;
}

.results-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  gap: 15px;
  margin-bottom: 20px;
}

.results-images img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}

.results {
  display: flex;
  gap: 15px; 
  margin-bottom: 20px;
  justify-content: space-between;
  align-items: center;
}

.results img {
  max-width: 48%;
  height: auto; 
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}

/* .discussion p {
  margin-top: 10px;
  text-align: justify; 
  font-size: 16px; 
  line-height: 1.8; 
} */
.discussion {
  text-align: left;
  line-height: 1.8;
  font-size: 16px;
}

.discussion p {
  margin-bottom: 10px;
}
