/* General Styles */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/objective.jpg') no-repeat center center/cover;
  color: #fff; /* White text for contrast */
}
/* Navbar Section */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* background: #032a58; */
  color: #fff;
  padding: 1rem 2rem;
  
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .logo {
  
height: 50px;
width: auto;

}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
}

.navbar ul li {
  margin: 0;
}

.navbar ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  transition: color 0.3s ease;
}

.navbar ul li a:hover {
  color:white;
  text-shadow: 0 0 10px #f35e08,0 0 20px #b84807,0 0 30px #e44c06,0 0 40px #d65a12,0 0 50px #d65a12,0 0 60px #d83e17;
  border-radius:15px;
}

.navbar .menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Section */
.header {
  text-align: center;
  padding: 2rem 0;
  /* background-color: #8f0ae7; */
  color: white;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.header h1 {
  font-size: 2rem;
  color: orange;
  text-shadow: 1px 1px 0 #141212, 2px 2px 0 #111111, 3px 3px 0 #0f0f0f, 4px 4px 0 #0a0a0a, 5px 5px 0 #141313;
  font-weight: bold;
  margin: 0;
}

/* Key Points Section */
.key-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Three items per row */
  gap: 2rem;
  text-align: center;
}

/* Individual Key Point Cards */
.key-point {
  background: #1d1b1b; /* Dark background for cards */
  padding: 1.5rem;
  border-radius: 10px;
  border: 2px solid #9a1eece3; /* Highlighted purple border */
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1); /* Subtle white shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.key-point:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(255, 255, 255, 0.2); /* Enhanced shadow on hover */
  border-color: orange;
}

/* Icon Circle */
.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1rem; /* Centered and spaced from description */
}

.orange {
  background-color: #f9c066; /* Orange color for specific icons */
}

.icon-circle img {
  width: 100%; /* Ensure icons fit the circle */
  height: auto;
}

/* Icon Description */
.icon-description {
  font-size: 1rem;
  line-height: 1.6;
}

.icon-description b {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color:orange;
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar ul {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    background: #36033d;
    padding: 1rem;
    position: absolute;
    top: 100%;
    right: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.navbar ul.active {
    display: flex;
}

.navbar .menu-toggle {
    display: block;
    color: #fff;
}
  .key-points {
      grid-template-columns: repeat(2, 1fr); /* Two items per row on tablets */
  }
}

@media (max-width: 480px) {
  .navbar ul {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    background: #36033d;
    padding: 1rem;
    position: absolute;
    top: 100%;
    right: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.navbar ul.active {
    display: flex;
}

.navbar .menu-toggle {
    display: block;
    color: #fff;
}
  .key-points {
      grid-template-columns: 1fr; /* One item per row on small screens */
  }

  .key-point {
      padding: 1rem;
  }

  .icon-circle {
      width: 50px;
      height: 50px;
  }
}
