/* Import Montserrat font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap');

body {
    background-color: #0f0f0f;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Navbar */
.navbar {
    background: #000;
    padding: 10px 5px;
    border-radius: 50px;
    display: flex;
    position: sticky;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 5px;
    padding: 0;
    margin: 0;
}

.navbar a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: 0.3s;
}

/* Hover effect */
.navbar li:hover a {
    transform: scale(0.8);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

/* Optional: Add a tooltip effect */
.navbar li::after {
    content: attr(data-title);
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    pointer-events: none;
}

.navbar li:hover::after {
    opacity: 1;
}

.back-button {
  position: relative;
  display: inline-block;
  margin: 50px 0; /* Adds spacing below navbar */
  background: transparent;
  border: 2px solid #111;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.back-button:hover {
  transform: scale(1.05);
}
.objective {
  text-align: justify;
  max-width: 800px; /* Ensures text doesn't stretch too much */
  margin: 0 auto; /* Centers the paragraph */
  line-height: 1.6; /* Improves readability */
}
.branding-section {
  text-align: left;
  padding: 50px 0;
}

.branding-section h1 {
  text-align: left;
  font-size: 36px;
  font-weight: bold;
  color: #fff;
}

.year {
  display: block;
  font-size: 20px;
  margin-top: 5px;
  opacity: 0.7;
  text-align: left;
}

.objective {
  font-size: 18px;
  margin: 50px 0px;
  width: 60%;
  opacity: 0.8;
  color: #ffffff;
  text-align: left;
}

.branding-gallery {
  display: flex;
  flex-direction: column; /* Stacks images vertically */
  align-items: center; /* Centers the images */
  gap: 50px; /* Adds spacing between cards */
  max-width: 800px; /* Restricts width for better alignment */
  margin: 0 auto; /* Centers the entire section */
}

.branding-card {
  background: #111; /* Dark background to match theme */
  padding: 20px;
  border-radius: 15px; /* Rounded corners */
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1); /* Soft shadow effect */
  max-width: 100%;
  text-align: center;
}

.branding-card img {
  width: 100%;
  border-radius: 8px; /* Slightly rounded image corners */
}

.branding-card-image-description {
  font-size: 16px;
  color: #aaa;
  margin-top: 10px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
.image-description{
  text-align: justify;
}
.branding-card:hover {
  box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .branding-card {
      padding: 15px; /* Reduce padding for smaller screens */
  }
}

@media (max-width: 480px) {
  .branding-gallery {
      gap: 15px; /* Reduce spacing between cards */
  }
  .branding-card {
      padding: 10px;
  }
}
/* footer sections strats from here*/
footer {
    background-color: #0f0f0f;
    color: white;
    padding: 20px;
    text-align: center;
  }
  .footer-container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    max-width: 1000px;
    margin: auto;
    border-top: 1px solid white;

  }
  .footer-section h4 {
    font-weight: bold;
  }
  .footer-section ul {
    a {
        color: white; /* Change this to any color you want */
        text-decoration: none; /* Removes the underline */
    }
    
    a:hover {
        color: gray; /* Change this to the hover color you prefer */
    }
    
    list-style: none;
    padding: 0;
  }
  .footer-section ul li {
    margin: 5px 0;
    font-weight: 800;
    text-align: left;
  }
  .footer-section ul li a {
    color: white;
    text-decoration: none;
  }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    max-width: 1000px;
    margin: auto;
    border-top: 1px solid white;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
  }