@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

nav{
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings:
    "wdth" 500;
}

#logo {
  width: 54px;
  border-radius: 50%;
  height: 52px !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
}

/* Hero Section */

body {
  font-family: Arial, sans-serif;
  background: #000;
  color: white;
}

#authbtn button {
  text-decoration: none;
}

/* Hero Section */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}
.hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

.content {
  position: relative;
  z-index: 1;
  padding: 20px;
  width: 94%;
  color: white;
}
.content h1 {
  font-size: 3rem;
}
.marquee {
  font-size: 1.5rem;
  margin-top: 10px;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 30s linear infinite;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/* Unique Styling for Motive Section */

.motive {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 60px 20px;
  background: #ffffff; /* White background */
}

.motive-wrapper {
  display: flex;
  align-items: center;
  max-width: 1150px;
  width: 100%;
  background: #001f3f; /* Navy blue */
  background: linear-gradient(
    135deg,
    #0f172a,
    #1e3a8a
  ); /* Navy Blue Background */
  backdrop-filter: blur(15px);
  border-radius: 15px;
  padding: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: 0.4s ease-in-out;
}

.motive-wrapper:hover {
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Left Side - Image */
.motive-img {
  flex: 1;
  border-radius: 15px;
  overflow: hidden;
}

.motive-img img {
  height: 300px;
  width: 100%;
  border-radius: 15px;
  transition: transform 0.4s ease-in-out;
}

.motive-img:hover img {
  transform: scale(1.05);
}

/* Right Side - Text Content */
.motive-content {
  flex: 1;
  padding-left: 40px;
}

.motive-title {
  font-size: 32px;
  font-weight: bold;
  color: #ffffff; /* White */
  margin-bottom: 10px;
  text-transform: uppercase;
}

.motive-title span {
  color: #b0c4de; /* Light Steel Blue */
}

.motive-text {
  font-size: 18px;
  line-height: 1.6;
  /* color: #dfe6ee/; Light Grayish Blue */
  margin-bottom: 20px;
  color: white;
}

/* Attractive Button */
.motive-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #b0c4de; /* Light Steel Blue */
  color: #001f3f; /* Navy Blue */
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(176, 196, 222, 0.4);
  border: 2px solid #ffffff;
}

.motive-btn:hover {
  background: #ffffff; /* White */
  color: #001f3f; /* Navy Blue */
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 900px) {
  .motive-wrapper {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .motive-content {
    padding-left: 0;
    padding-top: 20px;
  }

  .motive-title {
    font-size: 28px;
  }

  .motive-text {
    font-size: 16px;
  }

  .motive-img img {
    height: 160px;
    width: 100%;
    border-radius: 15px;
    transition: transform 0.4s ease-in-out;
  }
}

/* Happiness Section */

#full-happiness-section {
  position: relative;
  width: 100%;
  height: 100vh; /* Full screen height */
  overflow: hidden;
}

/* Video covers entire screen */
#full-happiness-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Overlay for better readability */
#full-happiness-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1); /* Semi-transparent overlay */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 20px;
}

/* Title styling */
#full-happiness-title {
  font-size: 40px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Description styling */
#full-happiness-text {
  font-size: 18px;
  max-width: 600px;
  margin-top: 10px;
}

/* About us */

.mission-container {
  background: linear-gradient(to right, #0a0f2c, #002855, #004e89);
  color: #fff;
  padding: 60px 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 5rem;
  height: 100vh;
  width: 100%;
}

.mission-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  width: 100%;
  gap: 50px;
  flex-wrap: wrap;
}

.mission-content {
  flex: 1;
  max-width: 600px;
}

.mission-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #00d4ff;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.mission-title::after {
  content: "";
  width: 80px;
  height: 5px;
  background: linear-gradient(to right, #00aaff, #0088cc);
  display: block;
  margin-top: 5px;
  border-radius: 3px;
}

.mission-text {
  font-size: 1.1rem;
  margin-bottom: 18px;
  line-height: 1.7;
  font-weight: 400;
  color: white;
}

.mission-visual {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.mission-visual video {
  width: 100%;
  max-width: 500px;
  margin-top: 50px;
  /* height: 380px; */
  border-radius: 20px;
  box-shadow: 0px 8px 25px rgba(26, 173, 247, 0.4);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.overlay-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  height: 140px;
  background: radial-gradient(
    circle,
    rgba(0, 170, 255, 0.5),
    rgba(0, 136, 204, 0.3)
  );
  border-radius: 50%;
  filter: blur(70px);
  transform: translate(-50%, -50%);
  z-index: -1;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .mission-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .mission-title {
    font-size: 2.2rem;
  }

  .mission-text {
    font-size: 1rem;
  }

  .mission-visual video {
    max-width: 450px;
  }
}

@media (max-width: 768px) {
  .mission-container {
    padding: 60px 5%;
  }

  .mission-title {
    font-size: 2rem;
  }

  .mission-text {
    font-size: 1rem;
  }

  .mission-visual video {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .mission-container {
    padding: 50px 5%;
  }

  .mission-title {
    font-size: 1.8rem;
  }

  .mission-text {
    font-size: 0.95rem;
  }

  .mission-visual video {
    max-width: 100%;
  }
}

/* Call to Action Section */

.full-width-bg {
  width: 100%;
  background-color: white;
  padding: 50px 5%;
}

.container-unity {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.wrapper-unity {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.content-section-unity {
  flex: 1;
  max-width: 600px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centers text vertically */
}

.heading-unity {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.text-unity {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  text-align: justify;
}

.list-unity {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.list-unity li {
  font-size: 1rem;
  color: #444;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.actions-unity {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 15px;
}

.link-unity {
  text-decoration: none;
  padding: 10px 15px;
  background-color: #007bff;
  color: white;
  border-radius: 5px;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.link-unity:hover {
  background-color: #0056b3;
}

.visual-section-unity {
  margin-top: 50px;
  flex: 1;
  max-width: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  order: 2; /* Default order for larger screens */
}

.video-unity {
  width: 100%;
  height: 340px;
  max-height: 500px;
  border-radius: 10px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .wrapper-unity {
    flex-direction: column;
    align-items: center;
  }

  .content-section-unity {
    max-width: 90%;
    order: 1; /* Ensures text stays on top */
  }

  .visual-section-unity {
    max-width: 90%;
    order: 2; /* Moves video below text */
  }

  .video-unity {
    max-height: 350px;
  }
}

@media (max-width: 768px) {
  .heading-unity {
    font-size: 1.8rem;
  }

  .text-unity {
    font-size: 1rem;
  }

  .list-unity li {
    font-size: 0.95rem;
  }

  .actions-unity {
    flex-direction: column;
    gap: 10px;
  }

  .link-unity {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .video-unity {
    max-height: 300px;
  }
}

@media (max-width: 480px) {
  .heading-unity {
    font-size: 1.6rem;
  }

  .text-unity {
    font-size: 0.95rem;
  }

  .list-unity li {
    font-size: 0.9rem;
  }

  .video-unity {
    max-height: 250px;
  }
}

/* Complaint section */

.page-wrapper {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
}

.container-main {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
}

.header-section {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #2c3e50;
}

.title-main {
  font-size: 36px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.subtitle-text {
  color: #666;
  font-size: 16px;
}

.form-container {
  display: flex;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  margin-top: 40px;
  margin-bottom: 40px;
  transition: transform 0.3s ease;
}

.input-container {
  flex: 1;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 40px;
  padding-right: 40px;
  background-color: #ffffff;
  position: relative;
}

.image-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.illustration-img {
  max-width: 100%;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.input-group {
  margin-bottom: 25px;
  position: relative;
}

.label-text {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #2c3e50;
  font-size: 14px;
  text-transform: uppercase;
}

.name-field {
  width: 100%;
  padding: 12px;
  border: 2px solid #eee;
  border-radius: 5px;
  font-size: 16px;
  transition: all 0.3s ease;
  background-color: #f9f9f9;
}

.email-field {
  width: 100%;
  padding: 12px;
  border: 2px solid #eee;
  border-radius: 5px;
  font-size: 16px;
  transition: all 0.3s ease;
  background-color: #f9f9f9;
}

.complaint-box {
  width: 100%;
  padding: 12px;
  border: 2px solid #eee;
  border-radius: 5px;
  font-size: 16px;
  transition: all 0.3s ease;
  background-color: #f9f9f9;
  height: 120px;
  resize: vertical;
}

.name-field:focus {
  border-color: #007bff;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
  outline: none;
}

.email-field:focus {
  border-color: #007bff;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
  outline: none;
}

.complaint-box:focus {
  border-color: #007bff;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
  outline: none;
}

.file-upload {
  padding-top: 10px;
  padding-bottom: 10px;
  width: 100%;
  font-size: 16px;
  cursor: pointer;
}

.submit-button {
  background: linear-gradient(45deg, #007bff, #00c6ff);
  color: white;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 25px;
  padding-right: 25px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit-button:hover {
  background: linear-gradient(45deg, #0056b3, #009cff);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

.rating-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 15px;
}
.rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: left;
  gap: 8px; /* Proper spacing */
}
.rating input {
  display: none;
}
.rating label {
  font-size: 35px;
  color: gray;
  cursor: pointer;
  transition: color 0.3s ease;
}
.rating input:checked ~ label,
.rating label:hover,
.rating label:hover ~ label {
  color: gold;
}

#call{
  margin-top: 1rem;
}

.input-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.label-text {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: #333;
}

.name-field,
.contact-options input[type="radio"] {
  padding: 0.6rem 0.8rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
}

.name-field:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
}

.contact-options {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.contact-options label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1rem;
  cursor: pointer;
  color: #333;
}

.contact-options input[type="radio"] {
  accent-color: #007bff; /* Blue tick color */
  width: 1.2rem;
  height: 1.2rem;
}

.select-field {
  padding: 0.6rem 0.8rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  background-color: #fff;
  color: #333;
  appearance: none;
}

.select-field:focus {
  border-color: #e63946;
  box-shadow: 0 0 0 2px rgba(230, 57, 70, 0.2);
}


@media (max-width: 768px) {
  .form-container {
    flex-direction: column;
  }

  .input-container {
    padding-top: 25px;
    padding-bottom: 25px;
    padding-left: 25px;
    padding-right: 25px;
  }

  .image-container {
    min-height: 250px;
    /* padding: 20px; */
  }

  .title-main {
    font-size: 28px;
  }
}

/* What we do */

#what-we-do {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px;
}

.what-we-do {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 60px;
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transform: translateY(50px);
  opacity: 0;
  max-width: 1150px;
}
.what-we-do-image {
  flex: 1;
  /* max-width: 550px; */
}
.what-we-do-image video {
  height: 360px;
  margin-top: 40px;
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease-in-out;
}
.what-we-do-image img:hover {
  /* transform: scale(1.05); */
  cursor: pointer;
}
.what-we-do-content {
  flex: 1;
  max-width: 600px;
  text-align: left;
}
.what-we-do-content h2 {
  font-size: 28px;
  color: #004e89;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: center;
  font-weight: bold;
}
.what-we-do-content ul {
  list-style: none;
  padding: 0;
  width: 600px;
}

.what-we-do-content li {
  font-size: 18px;
  color: #fff;
  margin-bottom: 15px;
  padding: 12px;
  border-radius: 8px;
  background: linear-gradient(
    135deg,
    #1e3c72,
    #2a5298
  ); /* Deep Blue Gradient */
  font-weight: bold;
  transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
}

.what-we-do-content li:hover {
  transform: scale(1.05);
  background: linear-gradient(
    135deg,
    #2a5298,
    #1e3c72
  ); /* Reverse Deep Blue Gradient */
}

@media (max-width: 768px) {
  .what-we-do {
    display: block;
    flex-direction: column;
    text-align: center;
    padding: 12px;
  }

  .what-we-do video {
    width: 100%;
    max-height: fit-content;
  }

  .what-we-do-content {
    max-width: 100%;
  }

  .what-we-do-content h2 {
    max-width: 100%;
    margin: 20px 0;
  }

  .what-we-do-content ul {
    max-width: 100%;
    padding: 10px;
  }
}

/* religious-hate exist */

/* Modern Glassmorphism Wrapper */
[data-wrapper] {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  margin: 0;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

/* Glassmorphism Card */
[data-card-container] {
  max-width: 1150px;
  width: 100%;
  background: rgba(255, 255, 255, 0.01);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  text-align: center;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeIn 0.5s ease-in-out;
  text-align: left;
}

/* Smooth Fade-In Animation */
@keyframes fadeIn {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Modern Card Title */
[data-card-title] {
  font-size: 28px;
  font-weight: 600;
  color: #e0e7ff;
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
}

/* Highlighted Text */
[data-highlight] {
  color: #60a5fa;
  font-weight: bold;
}

/* Content Section */
[data-content] {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

[data-text-section] li {
  display: grid;
  grid-template-columns: 220px auto; /* First column for <strong>, second for text */
  align-items: start;
  gap: 10px;
  font-size: 17px;
  margin: 12px 0;
  color: #e0e7ff;
}

/* Making sure the icons and strong text align properly */
[data-text-section] li strong {
  color: #60a5fa;
  text-align: left;
}

/* Making sure text does not break alignment */
[data-text-section] li span {
  display: inline-block;
  width: 100%;
  text-align: left;
}

/* Glassmorphism Card with Navy Blue Background */
[data-card-container] {
  max-width: 1150px;
  width: 100%;
  background: linear-gradient(
    135deg,
    #0f172a,
    #1e3a8a
  ); /* Navy Blue Background */
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  text-align: center;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeIn 0.5s ease-in-out;
  text-align: left;
}

/* Responsive Styling */
@media (max-width: 1024px) {
  [data-card-container] {
    width: 95%;
    padding: 20px;
  }

  [data-card-title] {
    font-size: 24px;
  }

  [data-text-section] p {
    font-size: 16px;
  }

  [data-text-section] li {
    grid-template-columns: 180px auto;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  [data-card-container] {
    flex-direction: column;
    width: 100%;
    padding: 15px;
    text-align: center;
  }

  [data-content] {
    gap: 15px;
  }

  [data-text-section] ul {
    text-align: left;
    padding-left: 10px;
  }

  [data-text-section] li {
    display: block;
    text-align: center;
  }

  [data-text-section] li strong,
  [data-text-section] li span {
    display: block;
    text-align: center;
  }

  [data-card-title] {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  [data-wrapper] {
    padding: 30px;
  }

  [data-card-container] {
    padding: 10px;
  }

  [data-card-title] {
    font-size: 20px;
  }

  [data-text-section] p {
    font-size: 15px;
  }

  [data-text-section] li {
    font-size: 15px;
    text-align: center;
  }

  [data-text-section] li strong {
    font-size: 14px;
  }
}

/* WHAT WE AIM TO ACHIEVE */

.aim-section {
  background: #f9f9f9;
  padding: 80px 5%;
  display: flex;
  justify-content: center;
}

.aim-container {
  max-width: 1150px;
  width: 100%;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 0.7s ease-in-out forwards;
  text-align: center;
}

/* Title */
.aim-title {
  font-size: 26px;
  color: #1e3a8a;
  margin-bottom: 20px;
}

.subtitle {
  display: block;
  font-size: 18px;
  color: #2563eb;
  font-weight: bold;
}

/* Description */
.aim-description {
  font-size: 14px;
  color: #555;
  background: #f1f5f9;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: center;
}

/* Cards */
.aim-steps {
  display: grid;
  gap: 15px;
}

.aim-card {
  display: flex;
  align-items: center;
  text-align: left;
  background: white;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.aim-card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.aim-card img {
  width: 200px;
  height: 200px;
  margin-right: 15px;
}

.aim-card h3 {
  font-size: 18px;
  color: #1e3a8a;
  margin-bottom: 5px;
}

.aim-card p {
  font-size: 16px;
  color: #444;
}

/* Animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    display: flex;
    text-align: center;
    font-size: 1.2rem;
  }

  .aim-container{
    padding: 14px;
  }

  .aim-card {
    flex-direction: column;
    /* text-align: center; */
    padding: 10px;
  }

  .aim-section {
    padding: 0;
    margin: auto;
  }

  .aim-card img {
    height: 120px;
    width: 120px;
    margin-bottom: 10px;
  }

  .aim-description {
    font-size: 15px;
  }

  /* get evolved */

  #evolved {
    display: flex;
    flex-direction: column;
  }

  .auth-buttons {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  #evolvedcard{
    padding: 2px;
  }
  
}

/* Get Evolved */

#evolved {
  background: #f8f9fa;
  margin: 40px 0;
  max-width: 100%;
  padding: 60px 50px;
  border-radius: 10px;
}

#evolved h3 {
  font-size: 1.3rem;
  color: #004e89 !important;
  text-align: left;
  margin-bottom: 10px;
}

#evolved p {
  color: #333;
  font-weight: 500;
  font-size: 1rem;
  text-align: left;
}

.custom-img {
  max-width: 100%;
  margin-top: 120px;
  height: 420px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.involved-card {
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.involved-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Upcoming Series */

#upcomingSeriesSection {
  position: relative;
  width: 100%;
  height: 100vh;
  color: white;
  font-family: "Poppins", sans-serif;
}

/* Background Video */
#backgroundVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(80%);
}

/* Overlay Section */
#seriesOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

/* Heading Styling */
#seriesHeading {
  font-size: 3rem;
  font-weight: 700;
  /* margin-bottom: 30px; */
  text-transform: uppercase;
  letter-spacing: 2px;
  /* background: linear-gradient(90deg, #ff8a00, #da1b60); */
  /* background: linear-gradient(to right, #0a0f2c, #002855, #004e89); */
  background-color: white;
  color: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Series Cards Grid */
#seriesContainer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1000px;
  width: 90%;
}

/* Series Card Styling */
.series-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 12px;
  transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.series-card:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.25);
}

.series-card h3 {
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
}

.series-card p {
  margin-top: 10px;
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  #seriesHeading {
    font-size: 2.5rem;
  }

  #seriesContainer {
    max-height: 100%;
    grid-template-columns: 1fr;
  }
}

#upcomingSeriesSection {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  text-align: center;
}

#backgroundVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures video covers the section */
  z-index: -1;
}

#seriesOverlay {
  position: relative;
  z-index: 1;
  padding: 20px;
  background: rgba(0, 0, 0, 0.1); /* Add overlay for better text visibility */
  color: white;
}

#seriesContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.series-card {
  background: rgba(255, 255, 255, 0.2);
  padding: 15px;
  border-radius: 10px;
  width: 100%;
  max-width: 300px;
}

@media screen and (max-width: 768px) {
  #backgroundVideo {
    height: 100vh;
    object-fit: cover;
  }

  #seriesContainer {
    flex-direction: column;
    align-items: center;
  }

  .series-card {
    width: 80%;
  }
}

/* General Section Styling */

.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #dde1e7, #f0f0f0, #ffffff);
  padding: 20px;
}

.contact-container {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1050px;
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

/* Contact Form */
.contact-form {
  flex: 1;
  padding: 25px;
  border-radius: 10px;
  width: 100%;
}

.contact-form h2 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  /* color: #004e89; */
  margin-bottom: 15px;
}

.contact-form label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 2px solid rgba(128, 128, 128, 0.175);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  font-size: 14px;
  outline: none;
  transition: 0.3s ease-in-out;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background: #01162a;
  /* background-color: #004e89; */
  border: none;
  border-radius: 5px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #2d80a3;
  transform: translateY(-2px);
}

/* Image Section */
.contact-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-image img {
  width: 100%;
  max-width: 350px;
  border-radius: 50% 50% 30% 70% / 60% 40% 70% 30%;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Footer */

.footer {
  /* background: #f8f9fa; Light background */
  /* color: #01162a; */
  background-color: #01162a;
  color: #f8f9fa;
  padding: 50px 0;
  font-family: "Poppins", sans-serif;
  transition: background 0.3s ease-in-out;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  background-color: #01162a;
}

.footer-box {
  flex: 1;
  min-width: 250px;
  transition: transform 0.3s ease-in-out;
}

.footer-box:hover {
  /* transform: translateY(-5px); */
}

.footer-box h3 {
  color: #f8f9fa;
  margin-bottom: 15px;
  font-weight: 500;
}

.footer-box p,
.footer-box ul,
.footer-box a {
  color: #419ec5;
  color: #f8f9fa;
  font-size: 14px;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 8px;
}

.footer-box ul li a {
  text-decoration: none;
  color: #f8f9fa;
  transition: color 0.3s ease-in-out;
}

.footer-box ul li a:hover {
  color: #f8f9fa;
  text-decoration: underline;
}

.social-links a {
  display: block;
  margin-right: 12px;
  color: #f8f9fa;
  font-size: 18px;
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
  text-decoration: none;
}

.social-links a:hover {
  color: #38a2cf;
  transform: scale(1.1);
  text-decoration: none;
}

/* Smooth Fade-in Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-box,
.footer-bottom {
  animation: fadeIn 0.6s ease-in-out;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  font-size: 14px;
  color: #f8f9fa;
}

/* Scroll to Top button */

#scrollToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  /* background: linear-gradient(135deg, #ff416c, #ff4b2b); */
  background-color: #3b7289;
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  color: white;
  font-size: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 0.4s, transform 0.4s, background 0.3s;
}

/* Hover Effect */
#scrollToTop:hover {
  background: linear-gradient(135deg, #3b7289, #419eca);
  box-shadow: 0 6px 15px #3b7289;
}

/* Show button when scrolling */
#scrollToTop.show {
  opacity: 1;
  transform: translateY(0);
}

/* Button Click Animation */
#scrollToTop:active {
  transform: scale(0.9);
}

/* Button Styling */
.ai-robo-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #4a90e2, #9013fe);
  border: none;
  border-radius: 30px;
  color: white;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Icon Styling */
.ai-robo-btn i {
  font-size: 22px;
  animation: roboMove 1.5s infinite alternate;
}

/* Hover Effect */
.ai-robo-btn:hover {
  background: linear-gradient(135deg, #9013fe, #4a90e2);
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(144, 19, 254, 0.5);
}

/* Click Effect */
.ai-robo-btn:active {
  transform: scale(0.95);
}

.section a {
  text-decoration: none;
  display: flex;
  justify-content: center;
}

/* safe comment checker */

.commentcontainer {
  display: flex;
  justify-content: center;
  padding: 50px;
  /* max-width: 1150px; */
}

/* Glassmorphism Container */
.comment-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  width: 1050px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease-in-out;
}

/* .comment-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
} */

/* Heading */
.comment-box h2 {
  font-size: 22px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  /* background: linear-gradient(to right, #ff8c00, #ff2a6d); */
  background-color: #3b7289;
  background: linear-gradient(45deg, #1e3c72, #2a5298);

  font-weight: 550;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Textarea */
.comment-input {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 2px solid #4a7c91;
  font-size: 16px;
  outline: none;
  background: rgba(255, 255, 255, 0.2);
  color: black;
  transition: 0.3s;
  resize: none;
}

.comment-input:focus {
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

/* Submit Button */
.comment-submit {
  margin-top: 12px;
  /* background: linear-gradient(45deg, #3b7289, #269bcd); */
  background: linear-gradient(45deg, #1e3c72, #2a5298);
  color: white;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  transition: 0.3s;
  box-shadow: 0px 5px 15px #3b7289;
}

.comment-submit:hover {
  /* background: linear-gradient(45deg, , #109cd8); */
  background: linear-gradient(45deg, #1b355f, #264b88);
  box-shadow: 0px 8px 20px rgb(83, 144, 182);
  transform: scale(1.05);
}

/* Alert Message */

.comment-alert {
  margin-top: 12px;
  padding: 12px;
  border-radius: 8px;
  font-weight: bold;
  display: none;
  transition: all 0.3s;
}

.alert-danger {
  background: rgba(255, 0, 0, 0.2);
  color: #ff4d4d;
  border-left: 5px solid #ff0000;
}

.alert-success {
  background: rgba(0, 255, 0, 0.2);
  color: #2ed573;
  border-left: 5px solid #00ff00;
}

.comment-box {
  max-width: 900px; /* Increased width */
  width: 90%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease-in-out;
}

.comment-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.comment-text {
  flex: 1;
}

.comment-image {
  width: 360px; /* Bigger image */
  height: auto;
  border-radius: 50% 0 50% 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .comment-content {
    flex-direction: column; /* Stack text and image */
    align-items: center;
  }

  .comment-image {
    max-width: 100%;
    height: 160px;
    margin-top: 20px;
  }

  .comment-box {
    padding: 20px; /* Reduce padding for smaller screens */
  }

  .commentcontainer {
    display: flex;
    justify-content: center;
    padding: 0px;
    margin: 40px 0px;
  }

  /* Get evolved */

  .custom-img {
    display: none;
    height: 160px;
    width: 100%;
    margin-top: 60px;
  }

  #evolved h2 {
    width: 100%;
    padding: 0 !important;
    font-size: 2em;
  }
}

/* Robot Icon Animation */
@keyframes roboMove {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-3px);
  }
}

/* Faqs */
.faq-section {
  max-width: 1050px;
  margin: 40px auto;
  text-align: center;
}

#faq-heading {
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  padding: 12px 24px;
  margin: 30px;
  display: inline-block;
  background: linear-gradient(45deg, #0a1931, #185adb, #00a6fb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Icon Styling */
#faq-heading i {
  font-size: 2rem;
  margin-right: 10px;
  background: linear-gradient(45deg, #00a6fb, #185adb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Underline Hover Effect */
#faq-heading::after {
  content: "";
  width: 100%;
  height: 4px;
  background: #00a6fb;
  position: absolute;
  left: 0;
  bottom: -5px;
  border-radius: 10px;
  transform: scaleX(0);
  transition: transform 0.5s ease-in-out;
}

#faq-heading:hover::after {
  transform: scaleX(1);
}

.faq-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.faq-item {
  background-color: white;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.faq-question {
  font-weight: bold;
  color: #1e3c72;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-answer {
  display: none;
  margin-top: 10px;
  font-size: 14px;
  color: #666;
}

.faq-section .icon {
  font-size: 32px;
  font-weight: 200;
}

#scrollToTop {
  position: fixed;
  bottom: 80px; /* Adjust this to place it above the AI Assistant button */
  right: 20px;
  background-color: #007bff;
  background: linear-gradient(45deg, #1b355f, #264b88);
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s;
  display: none; /* Initially hidden */
}

#scrollToTop:hover {
  background-color: #0056b3;
}

/* AI Assistant Button */
.ai-robo-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #28a745;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ai-robo-btn i {
  font-size: 20px;
}

.ai-robo-btn:hover {
  background-color: #218838;
}

/* Resources */

#resouces {
  width: 100%;
  max-width: 1150px;
  /* margin: 20px auto; */
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.header {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  color: #004e89;
}
.subtext {
  color: #555;
  text-align: center;
  margin-bottom: 20px;
}
.highlight-section {
  display: flex;
  align-items: center;
  background: #4b0082;
  background-color: #002855;
  color: #fff;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.highlight-text {
  flex: 1;
}
.highlight-text h2 {
  margin: 0 0 10px;
}
.highlight-text p {
  margin: 0 0 10px;
}
.latest {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
}
.latest-section {
  display: flex;
  gap: 20px;
}
.resource-item {
  background: #f9f9f9;
  padding: 10px;
  border-radius: 6px;
  flex: 1;
}
.resource-item img {
  width: 100%;
  border-radius: 4px;
}
.resource-content h3 {
  margin: 10px 0;
  font-size: 18px;
}
.resource-content p {
  font-size: 14px;
  color: #666;
}
.resource-link {
  color: #4b0082;
  color: #004e89;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}

/* Blog */

/* General Styles */
body {
  font-family: "Poppins", sans-serif;
  background: #f4f4f9;
  color: #333;
  margin: 0;
  padding: 0;
}

/* Section Styling */
.resources-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
}

/* Header Styles */
.resources-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #111;
}

.resources-description {
  font-size: 1.1rem;
  color: #555;
  margin-top: 10px;
  width: 70%;
  margin: auto;
}

/* Navigation Tabs */
.resource-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
}

.resource-btn {
  background: #d3d3d3;
  color: #333;
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.resource-btn.active,
.resource-btn:hover {
  background: #2b6cb0;
  color: #fff;
}

/* Card Grid */
.resource-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

/* Individual Card */
.resource-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.2);
}

/* Tags and Date */
.resource-tag {
  font-size: 0.9rem;
  font-weight: bold;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 10px;
}

[data-tag="education"] {
  background: #2b6cb0;
}
[data-tag="guide"] {
  background: #38a169;
}
[data-tag="community"] {
  background: #d69e2e;
}

.resource-date {
  display: block;
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 5px;
}

/* Card Content */
.resource-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #222;
}

.resource-text {
  font-size: 1rem;
  color: #555;
}

/* Read More Link */
.resource-link {
  display: inline-block;
  margin-top: 10px;
  font-weight: bold;
  color: #2b6cb0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.resource-link:hover {
  color: #1e4f91;
}

.blog-box {
  background-color: white;
  color: black;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  display: flex;
  gap: 20px;
}
.blog-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

#sharebtn {
  display: flex;
  justify-content: right;
  text-decoration: none;
  margin-top: -24px;
}

@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    display: block;
    overflow-x: hidden;
  }

  .flex {
    flex-direction: column;
    align-items: center;
  }

  /* Call */

  .content-section-unity h3 {
    font-size: 1.01rem;
  }

  .video-unity {
    height: 160px;
    max-width: 100%;
  }

  .what-we-do-content h2 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #004e89;
  }

  #evolved h2 {
    font-size: 1.5rem;
    text-align: center;
  }

  /* faqs */

  #faq-heading {
    width: 100%;
    padding: 0;
    margin: 20px 0;
    font-size: 1.3rem;
  }

  .faq-section {
    width: 100%;
    padding: 10px;
    text-align: left;
  }

  .faq-item {
    padding: 12px 16px;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-answer {
    font-size: 14px;
  }

  .icon {
    font-size: 20px;
  }

  /* Contact */

  .contact-container {
    display: flex;
    flex-direction: column;
  }

  #what-we-do {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }

  [data-wrapper] {
    padding: 6px;
  }

  /* Blog */

  .main-bg {
    font-family: Arial, sans-serif;
    background-color: #0a1f44;
    color: white;
    margin: 10px;
    padding: 10px;
    border-radius: 20px;
  }

  .blog-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .blog-box img {
    width: 100%;
    height: auto;
  }

  /* About */

  #identity-section {
    height: 100%;
  }

  #resources-title {
    font-size: 1.6rem;
    color: #004e89;
  }

  #seriesHeading {
    font-size: 2rem;
    margin: auto;
  }
}

/* Custom Cursor */
.custom-cursor {
  width: 10px;
  height: 10px;
  margin-top: -8px;
  background-color: rgb(255, 0, 0);
  background-color: red;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, background-color 0.3s ease;
  mix-blend-mode: difference;
  z-index: 9999;
}

/* Cursor Animation on Hover */
body:hover .custom-cursor {
  transform: scale(1.3);
  /* background-color: rgb(255, 50, 50); */
  background-color: red;
}

/* Click Effect */
.click-effect {
  animation: clickAnimation 0.2s ease-out;
}

/* Smooth Click Animation */
@keyframes clickAnimation {
  0% {
    transform: scale(1.8);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.3);
    opacity: 1;
  }
}

/* Parallex Effect */

.parallax {
  color: white;
  position: relative;
  height: 100vh;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.parallax-1 {
  background-image: url("/assets/communism.jpg");
}

.parallax-2 {
  background-image: url("/assets/freedom.jpg");
}

.parallax-3 {
  background-image: url("/assets/learnfromhistory.jpg");
}

#parallexSection .content {
  /* padding: 50px 20px; */
  width: 100%;
  text-align: center;
  font-size: 1.2rem;
  background: linear-gradient(
    135deg,
    #0f172a,
    #1e3a8a
  ); /* Navy Blue Background */
}

/* Dashboard styling */

.dashboardContainer {
  display: flex;
  height: 100vh;
  background: #f4f7fc;
  /* overflow: hidden; */
}

#dashboardh2 {
  text-decoration: none;
  font-weight: 500;
  color: white;
}

.navIcons i {
  color: white;
  margin: 0 16px;
  font-size: 1.3rem;
}

.sidebarMenu {
  width: 260px;
  /* background: linear-gradient(to right, #0a0f2c, #002855, #004e89); */
  background-color: #004e89;
  color: white;
  padding: 20px;
  position: fixed;
  height: 100%;
  transition: all 0.3s ease-in-out;
}
.sidebarTitle {
  text-align: center;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: bold;
}
.menuList {
  list-style: none;
  padding: 0;
}

.menuList a{
  text-decoration: none;
  color: white;
}

.menuItem {
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.menuItem:hover {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  transform: scale(1.05);
}
.contentSection {
  margin-left: 260px;
  flex: 1;
  padding: 20px;
  transition: all 0.3s ease-in-out;
}
.topNavbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #004e89;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.cardsContainer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.card {
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  text-align: center;
  font-size: 28px;
  color: #0056b3 !important;
  /* font-weight: bold; */
  transition: transform 0.3s;
}
.card:hover {
  transform: scale(1.08);
}
.chartContainer canvas {
  max-width: 100%;
  height: auto;
}

/* Table Styling for Dashboard */
.tableContainer {
  margin-top: 30px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  scroll-behavior: smooth;
  /* overflow-y: scroll !important; */
}

.tableContainer:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.tableTitle {
  color: #004e89;
  font-size: 26px;
  margin-bottom: 25px;
  font-weight: 600;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

.tableTitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #004e89, #0056b3);
  border-radius: 3px;
}

.tableWrapper {
  overflow-x: auto;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05) inset;
}

.reportsTable {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.reportsTable th {
  background: linear-gradient(135deg, #004e89, #0056b3);
  color: white;
  padding: 16px;
  text-align: left;
  font-weight: 500;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.reportsTable th:first-child {
  border-top-left-radius: 8px;
}

.reportsTable th:last-child {
  border-top-right-radius: 8px;
}

.reportsTable tr:nth-child(even) {
  background-color: #f4f7fc;
}

.reportsTable tr:hover {
  background-color: #e6f0ff;
  transition: background-color 0.3s;
}

.reportsTable tr:last-child td:first-child {
  border-bottom-left-radius: 8px;
}

.reportsTable tr:last-child td:last-child {
  border-bottom-right-radius: 8px;
}

.reportsTable td {
  padding: 14px 16px;
  border-bottom: 1px solid #e0e0e0;
  transition: all 0.2s ease;
}

.loading-message {
  text-align: center;
  padding: 25px;
  color: #666;
  font-style: italic;
  font-size: 16px;
}

.loading-message i {
  margin-right: 8px;
  color: #004e89;
}

.evidence-link {
  color: #004e89;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 4px;
  transition: all 0.2s ease;
  background-color: rgba(0, 78, 137, 0.1);
}

.evidence-link:hover {
  background-color: rgba(0, 78, 137, 0.2);
  transform: translateY(-2px);
}

.status-badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  text-align: center;
  min-width: 80px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.status-badge:hover {
  transform: scale(1.05);
}

.status-pending {
  background-color: #fff3cd;
  color: #856404;
  border: 1px solid #ffeeba;
}

.status-solved {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.details-cell {
  max-width: 250px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: help;
  transition: all 0.3s ease;
}

.details-cell:hover {
  background-color: #f0f8ff;
}

@media (max-width: 768px) {
  .dashboardContainer {
    flex-direction: column;
    overflow-y: scroll !important;
  }

  .sidebarMenu {
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 10px;
    text-align: center !important;
  }

  .sidebarTitle {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .menuList {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .menuItem {
    padding: 10px;
    font-size: 14px;
  }

  .contentSection {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .sidebarMenu {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .menuList {
    flex-direction: column;
    align-items: center;
  }

  .menuItem {
    width: 100%;
    text-align: center;
  }
}
