@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}



.navbar{
  background-color: #1abc9c;
  font-family:"Calibri", sans-serif;
}
 /* nav and  */
 .nav-link {
  position: relative;
  display: inline-block;
  padding: 10px 15px;
  text-transform: capitalize;
  color: #000;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #ffff;
}

.nav-link::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #ffff;
  transition: width 0.3s ease;
  margin: 5px auto 0; /* Add spacing for the line */
}

.nav-link:hover::after {
  width: 100%;
}

/* CSS for active button */
.active {
    background-color: darkgray; 
    color: black;
}

.nav-button {
    padding: 15px; /* Add padding for button appearance */
    border-radius: 5px; /* Rounded corners */
}

.nav1{
  list-style-type: none;
}


.brochure-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    width: 100%;
}

.brochure {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Important */
    align-items: center;
    text-align: center;
    
    min-height: 400px; /* Ensure consistent height */
    transition: transform 0.3s ease-in-out;
}


.brochure:hover {
    transform: scale(1.05);
}

.brochure img {
    max-width: 100%;
    height: 150px;
    object-fit: cover;
    margin-bottom: 10px;
    transition: transform 0.3s ease-in-out;
}

.brochure img:hover {
    transform: scale(1.1);
}

.brochure a {
    margin-top: auto; /* Push button to bottom */
    text-decoration: none;
    color: #fff;
    background-color: #0066cc;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
.brochure p {
    min-height: 50px; /* Forces equal height for text block */
}
.brochure button {
  text-decoration: none;
  color: #fff;
  background-color: #0066cc;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.brochure button:hover {
  background-color: #004499;
}


.brochure a:hover {
    background-color: #004499;
}


/*  ait */
/* Footer Styling */
footer {
  background-color: #1abc9c; /* Dark background */
  color: #000000;
  padding: 60px 0;
  font-family: 'Arial', sans-serif;
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}

.footer-logo {
  flex: 500px; /* Set a fixed width for the logo */
  text-align: left;
  animation: slideInFromLeft 3s ease-out; /* Animation for logo */
}

.footer-logo h2 {
  font-size: 24px;
  margin: 0;
}

.footer-logo p {
  font-size: 14px;
  margin-top: 5px;
  color: black;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  flex-grow: 1;
  margin-left: 40px;
}

.footer-column {
  margin: 0 20px;
  animation: fadeIn 2.5s ease-in; /* Animation for footer columns */
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
  
}

.footer-column ul li a {
  color: #000000;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease; /* Smooth hover transition */
}

.footer-column ul li a:hover {
  color: #ffff;
  text-decoration: underline;
}

/* Social Media Icons with hover animation */
.footer-social {
  text-align: center;
  margin-bottom: 20px;
  animation: bounceIn 3s ease-out; /* Animation for social icons */
}

.footer-social ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
}

.footer-social ul li {
  margin: 0 10px;
}

.footer-social ul li a {
  color: white;
  font-size: 30px;
  text-decoration: none;
  transition: transform 0.3s ease; /* Transition for hover effect */
}

.footer-social ul li a:hover {
  color: #000000;
  transform: scale(1.2); /* Enlarge icons on hover */
}

/* Bottom Copyright Section */
.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: #000000;
}

/* Animation Keyframes */
@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes bounceIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  60% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

/* Responsive Design */

/* For screens less than or equal to 768px */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
  }



  @media (max-width: 768px) {
    footer {
        padding: 15px 0; /* Small screens पर padding और कम की */
    }
}

@media (max-width: 480px) {
    footer {
        padding: 10px 0; /* Mobile screens पर padding और कम की */
    }
}




  .footer-links {
    flex-direction: column;
    margin-left: 0;
  }

  .footer-column {
    margin-bottom: 10px;
    text-align: center;
  }

  .footer-logo {
    text-align: center;
    margin-bottom: 0px;
  }
}

/* For screens less than or equal to 480px */
@media (max-width: 480px) {
  .footer-logo h2 {
    font-size: 20px;
  }

  .footer-column ul li a {
    font-size: 12px;
  }

  .footer-social ul {
    flex-direction: column;
  }

  .footer-social ul li {
    margin-bottom: 10px;
  }
}
 footer {
      background-image: url('858748.jpg'); /* Replace with your image path */
      background-size: cover; /* This will cover the entire footer */
      background-position: center; /* This centers the image */
      background-repeat: no-repeat; /* This prevents the image from repeating */
      padding: 20px; /* Adjust padding as needed */
      color: white; /* Change text color for better visibility */
  }
  .disabled-link {
    pointer-events: none;
    color: gray;
    text-decoration: none;
    cursor: default;
}
