* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "jost";
}

/* 🔹 Navigation */
nav {
  width: 100%;
  height: 70px;
  position: fixed;
  top: 20;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: grey;
  padding: 0 40px;
  z-index: 1000;
}

/* Logo */
nav img {
  height: 50px;
}

/* Navigation Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
  margin: 0;
  padding: 0;
}

/* List Items */
.nav-links li a {
  text-decoration: none;
  font-size: 18px;
  color: beige;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: red;
}

/* Hamburger Icon */
.hamburger {
  display: none;        /* Display it on small screens with media query */
  font-size: 26px;
  cursor: pointer;
  color: white;
  position: absolute;
  top: 20px;            /* Adjust as needed */
  right: 20px;          /* Adjust as needed */
  z-index: 1000;        /* Ensures it appears on top */
}

/* Responsive: show hamburger and hide links on small screens */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    right: 0;
    flex-direction: column;
    background-color: grey;
    width: 100%;
    padding: 20px;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

/* 🔹 Responsive Styles */
@media (max-width: 1068px) {
  nav {
    flex-direction: column;
    height: auto;
    padding: 10px 0;
  }

  nav a {
    display: block;
    margin: 10px 0;
    font-size: 18px;
  }
} 

h2 {
  font-size: 64px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 2px 2px 5px #000;
}

h3{
  font-size: 45px;
  font-weight : bold;
  text-align: center;
  font-family: 'Courier New', Courier, monospace;
}

h4{
  font-size: 30px;
  margin-left: 6%;
}

nav img{
  padding-right: 30%;
  margin-left: 0;
}

#event{
  display: flex;
  flex-direction : column;
  justify-content : flex-start;
}

#event_manage{
  width: 35%;
  height: 80%;
  margin-left: 7%;
  margin-top: 3%;
}

#title-1{
  font-size: 30px;
  color: #fff;
}

.content-1 {
  display: flex;
  flex-direction: row;
  gap: 5%; /* Adjusted for better alignment */
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  box-shadow: 15px 15px 30px #d9d9d9, -15px -15px 30px #ffffff;
  border-radius: 24px; /* Larger border radius for a softer look */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 90%; /* Larger width */
  padding: 40px; /* Added padding for more space inside */
}

.content-2 {
  display: flex;
  flex-direction: row-reverse;
  gap: 5%; /* Adjusted for better alignment */
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  box-shadow: 15px 15px 30px #d9d9d9, -15px -15px 30px #ffffff;
  border-radius: 24px; /* Larger border radius for a softer look */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 90%; /* Larger width */
  padding: 40px; /* Added padding for more space inside */
}

.content-1:hover {
  transform: translateY(-8px);
  box-shadow: 15px 15px 30px #d9d9d9, -15px -15px 30px #ffffff;
}

.content-2:hover {
  transform: translateY(-8px);
  box-shadow: 15px 15px 30px #d9d9d9, -15px -15px 30px #ffffff;
}


h4 {
  font-size: 28px;
  color: #007bff;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.content-1 {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
  margin-top: 20px;
}

/* 👇 Mobile View: Stack vertically */
@media screen and (max-width: 768px) {
  .content-1,.content-2 {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .content-1 img , .content-2 img{
    max-width: 100%;
    height: auto;
  }

  .content-1 article , .content-2 article{
    padding: 10px;
  }
}

article {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  text-align: justify;
}

article::first-letter {
  font-size: 40px;
  font-weight: bold;
  color: #007bff;
  line-height: 0.2;
}

article::selection {
  background-color: #007bff;
  color: white;
}

#para-1{

  font-size: 18px;
  line-height: 1.8;
  color: #333;
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  box-shadow: 10px 10px 20px #d9d9d9, -10px -10px 20px #ffffff;
  padding: 40px;
  border-radius: 20px;
  max-width: 800px;
  text-align: justify;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
}

#para-1:hover {
  transform: translateY(-5px);
  box-shadow: 15px 15px 30px #d9d9d9, -15px -15px 30px #ffffff;
}

#para-1::first-letter {
  font-size: 40px;
  font-weight: bold;
  color: #007bff;
  line-height : 0.7;
}

#para-1::selection {
  background-color: #007bff;
  color: white;
}

section {
  width: 100%;
  height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  background-image: linear-gradient(
      rgba(0, 0, 0, 0.3),
      rgba(0, 0, 0, 0.3)
    ),
    url("front_img.PNG");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-attachment: fixed;
}

.section-2 {
  background-repeat: no-repeat;
  background-size: 100% 50%;
  background-image: linear-gradient(
      rgba(0, 0, 0, 0.3),
      rgba(0, 0, 0, 0.3)
    ),
    url("services.PNG");
}

footer {
  background-color: #12002b;
  padding: 40px 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1;
  padding: 20px;
  min-width: 250px;
}

.footer-section h2 {
  color: #ff7300;
  font-size: 28px;
  margin-bottom: 15px;
}

.footer-section ul {
  list-style:circle;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
  color: #ddd;
  font-size: 20px;
}

.footer-section p, .footer-section a {
  color: #ccc;
  font-size: 20px;
}

.footer-section a {
  text-decoration: none;
}

.footer-section a:hover {
  color: #ff7300;
}

.social-links a {
display: inline-block;
margin: 0 10px;
color: white;
font-size: 24px;
}

.social-links a:hover {
color: #ff7300;
}

.download-btn {
  background-color: #ff7300;
  color: white;
  padding: 10px 15px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  margin-top: 10px;
  border-radius: 5px;
}

.download-btn:hover {
  background-color: #e66000;
}

@media (max-width: 768px) {
  .footer-container {
      flex-direction: column;
      text-align: center;
  }
}
