* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Full-height body and html to cover the entire page */
html, body {
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: #000; /* Solid black background */
    color: white;
    text-align: center;
}

/* Centered content */
.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.content h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.content p {
    font-size: 1.2em;
}
/* Navbar - Now touching the top */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Navbar Styles */
/* Reset Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Navbar */
/* Reset Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #0f0f0f, #232323);
    padding: 15px 0;
    box-shadow: 0px 4px 20px rgba(255, 140, 0, 0.7);
    z-index: 1000;
    display: flex;
    justify-content: center; /* Centering Navbar */
    align-items: center;
}

/* Navbar Container */
.nav-container {
    display: flex;
    justify-content: center; /* Centering Links */
    align-items: center;
    width: 80%; /* Ensures it stays centered */
}

/* Navbar Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

/* Nav Items */
.nav-links li {
    display: inline-block;
    position: relative;
}

/* Navbar Text Styling */
.nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 15px;
    transition: 0.3s ease-in-out;
}

/* Hover Effect: Box with Shadow */
.nav-links li a:hover {
    color: black;
    background-color: rgba(255, 165, 0, 0.9);
    box-shadow: 0px 4px 10px rgba(255, 140, 0, 0.7);
    border-radius: 8px;
    padding: 12px 18px;
}

/* Hamburger Menu */
.hamburger {
    font-size: 28px;
    color: white;
    cursor: pointer;
    display: none;
}

/* Mobile Responsive Navbar */
@media (max-width: 768px) {
    .nav-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 0 20px;
    }

    /* Hamburger Icon Visible */
    .hamburger {
        display: block;
        padding: 10px;
    }

    /* Navbar Hidden Initially */
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        padding: 10px 0;
        text-align: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
    }

    /* Show menu when active */
    .nav-links.active {
        display: flex;
        max-height: 400px;
        overflow-y: auto;
    }

    .nav-links li {
        padding: 10px 0;
        width: 100%;
    }

    /* Remove Extra Black Line */
    .nav-links li a {
        display: block;
        width: 100%;
        padding: 12px;
        text-align: center;
    }

    /* Shadow Effect on Hover in Mobile */
    .nav-links li a:hover {
        background: rgba(255, 165, 0, 0.8);
        color: black;
        border-radius: 5px;
    }

    /* Fix Overlapping Content Issue */
    .content {
        margin-top: 80px;
        padding: 20px;
        text-align: center;
    }
}



.talks-section {
  padding: 50px 30px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.section-heading {
  font-size: 32px;
  color: #ffa851; /* Orange tone */
  margin-bottom: 10px;
  font-weight: bold;
  text-align: center;
}

.section-subheading {
  font-size: 20px;
  color: #ffa851; /* Same orange */
  font-weight: 500;
  text-align: center;
  margin-top: 0;
}


.ppt-container {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  overflow: hidden;
}

.talk-description {
  max-width: 800px;
  margin: auto;
  background: rgba(0, 0, 0, 0.6);
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.talk-message-box {
  max-width: 800px;
  margin: auto;
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 10px;
}

textarea {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border-radius: 6px;
  margin-top: 10px;
  margin-bottom: 10px;
  resize: vertical;
  background: #111;
  color: #fff;
  border: 1px solid #444;
}

button {
  background: #ffa851;
  color: #000;
  padding: 10px 20px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  border-radius: 6px;
}

#savedTalkDisplay {
  margin-top: 15px;
  color: #ccc;
}

.ppt-viewer {
  width: 100%;
  max-width: 780px;   /* adjust this to your liking (720–820px works well) */
  height: 600px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(255, 140, 0, 0.3);
  background-color: #111;
}

.ppt-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 40px 20px;
}
.talk-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Left & Right Column Styling */
.left-comments,
.right-description {
  flex: 1 1 48%;
  background: rgba(255, 255, 255, 0.03);
  padding: 25px 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 140, 0, 0.15);
  color: #ffffff;
  font-family: 'Segoe UI', sans-serif;
  min-height: 450px;
}

/* Comment Box Scroll Area */
.comments-box {
  max-height: 200px;
  overflow-y: auto;
  margin-bottom: 15px;
  padding-right: 10px;
}

/* Individual Comment Block */
.comment {
  background: rgba(255, 255, 255, 0.05);
  padding: 12px;
  margin-bottom: 10px;
  border-radius: 6px;
}

.reply-button {
  font-size: 12px;
  margin-top: 8px;
  background: none;
  color: #00ccff;
  border: none;
  cursor: pointer;
}

.replies {
  margin-top: 10px;
  padding-left: 15px;
}

.reply {
  background: rgba(255, 255, 255, 0.03);
  padding: 8px;
  border-radius: 5px;
  margin-top: 5px;
}

/* Inputs and Buttons */
textarea {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  background: #111;
  border: 1px solid #666;
  border-radius: 6px;
  color: #fff;
  resize: vertical;
  margin-top: 10px;
}

button {
  margin-top: 10px;
  padding: 10px 20px;
  font-weight: bold;
  background-color: #ffa851;
  color: #000;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

button:hover {
  background-color: #ff8c1a;
}

/* Mobile Responsive Layout */
@media (max-width: 768px) {
  .talk-section {
    flex-direction: column;
  }

  .left-comments,
  .right-description {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
.project-heading {
  color: #ffa851;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.project-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  color: #ffffff;
  line-height: 1.7;
  font-size: 16.5px;
}

.project-content p {
  margin-bottom: 20px;
}

.project-bullets {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}

.project-bullets li {
  margin-bottom: 14px;
  padding-left: 0;
}

/* Align project content inline */
.project-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  font-size: 1rem;
  color: #f0f0f0;
  line-height: 1.6;
}

/* Make bullet points align properly with text */
.project-bullets {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.project-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  line-height: 1.5;
  text-align: left;
}

/* Keep emoji bullets, no override with dots */
.project-content {
  padding: 1rem 0;
  text-align: left;
  font-size: 1rem;
  line-height: 1.6;
  color: #f0f0f0;
}

.project-content p {
  margin-bottom: 1.5rem;
  text-align: justify;
}

/* Inline aligned emoji bullets */
.project-bullets {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.project-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  text-align: left;
  margin-bottom: 0.8rem;
  line-height: 1.6;
  word-break: break-word;
}

/* Remove default bullets */
.project-bullets li::marker {
  content: "";
}
