* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer {
  background-color: black;
  color: white !important;
  padding: 40px 0;
  font-size: 1rem;
  font-family: 'SF Pro Display', sans-serif;
  text-align: left;
  margin-top: -3.5rem !important;
}

/* Information sections layout */
.info-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

.info-section {
  width: calc(25% - 20px);
  /*margin-bottom: 40px; /* Space between content and follow us on */
  padding: 0 10px;
}

.info-section h3 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #fff;
}

.info-section ul {
  list-style-type: none;
  padding-left: 0;
}

.info-section li {
  font-size: 1rem;
  color: #d1d1d1;
  margin-bottom: 8px;
  display: inline-block; /* Ensures list items stay on the same line */
}

.info-section a {
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s ease;
  white-space: nowrap; /* Prevents the email from breaking onto the next line */
}

.info-section a:hover {
  color: #d1d1d1; /* Hover effect */
}

/* Follow Us Section */
.follow-us {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #fff;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

/* Social icons styling */
.social-icons .icon {
  width: 42px;
  height: 42px;
  margin-right: 15px;
  cursor: pointer;
  transition: transform 0.3s ease;
  filter: none !important; /* Prevents any unwanted filters (e.g. grayscale) */
  background-color: transparent; /* Ensures no background color is applied */
  color: inherit; /* Ensures no color is applied to the icons */
}

/* Hover effect */
.social-icons .icon:hover {
  transform: scale(1.1); /* Slight zoom effect on hover */
}

/* Media queries for responsiveness */

/* For tablet screens */
@media (max-width: 768px) {
  .info-section {
    width: calc(50% - 20px);
    text-align: center;
  }

  .info-categories {
    justify-content: center;
  }

  .social-icons {
    flex-wrap: nowrap;
    justify-content: center;
  }

  .social-icons .icon {
    margin: 10px;
  }
}

/* For mobile screens */
@media (max-width:480px){
      .info-section {
        width: 100% !important;
        text-align: center !important;
        color: white !important;
        margin-bottom: 24px !important;
    }
    
    .social-icons{
        margin-top:-1rem !important;
    }
    .footer {
        margin-top:-3rem !important;
    }
}

/* Apply Google font to only the footer copyright section */
.footer-copyright p {
  font-family: 'Roboto', sans-serif;  /* Font for the footer text */
  font-weight: 500;  /* Semi-bold weight for subtle emphasis */
  font-size: 16px;  /* Adjust font size for readability */
  color: #f4f4f4 ;  /* Light color for subtle contrast (you can also use #fff) */
  text-align: center;  /* Center the text */
  letter-spacing: 1px;  /* Slight letter spacing for a modern, clean look */
  line-height: 1.5;  /* Improved line spacing for readability */
  text-transform: uppercase;  /* Makes it all caps for an elegant and structured look */
  margin-top: 30px;  /* Space above the copyright text */
  margin-bottom: 20px;  /* Space below the text */
  transition: all 0.3s ease;  /* Smooth transition for hover effects */
  
  /* Subtle Text Shadow for shine effect */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Light shadow for depth */
}

/* Optional: Add a hover effect to make the text glow or change color when hovered */
.footer-copyright p:hover {
  color: #f39c12;  /* Gold color for a glowing effect on hover */
  text-shadow: 0 0 10px rgba(243, 156, 18, 0.7), 0 0 20px rgba(243, 156, 18, 0.8);
  cursor: pointer; /* Changes cursor to pointer to indicate interactivity */
}




/* For mobile screens------------------------- */


/* start of media query 767px */

@media screen and (max-width: 767px) {

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.info-section li {
  font-size: 16px;
  color: #d1d1d1;
  margin-bottom: 8px;
  display: inline-block;
  line-height: 1.5;
  width:101%;
}
.info-section p {
  font-size: 1.04rem;
  color: #d1d1d1;
  margin-bottom: 8px;
  display: inline-block;
}
.info-categories {
  justify-content: center;
  margin: 0;
}
/* Apply Google font to only the footer copyright section */
.footer-copyright p {
  font-family: 'Roboto', sans-serif;  /* Font for the footer text */
  font-weight: 500;  /* Semi-bold weight for subtle emphasis */
  font-size: 16px;  /* Default font size for large screens */
  color: #f4f4f4;  /* Light color for subtle contrast (you can also use #fff) */
  text-align: center;  /* Center the text */
  letter-spacing: 1px;  /* Slight letter spacing for a modern, clean look */
  line-height: 1.5;  /* Improved line spacing for readability */
  text-transform: uppercase;  /* Makes it all caps for an elegant and structured look */
  margin-top: 30px;  /* Space above the copyright text */
  margin-bottom: 20px;  /* Space below the text */
  transition: all 0.3s ease;  /* Smooth transition for hover effects */
  
  /* Subtle Text Shadow for shine effect */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Light shadow for depth */
}

/* Optional: Add a hover effect to make the text glow or change color when hovered */
.footer-copyright p:hover {
  color: #f39c12;  /* Gold color for a glowing effect on hover */
  text-shadow: 0 0 10px rgba(243, 156, 18, 0.7), 0 0 20px rgba(243, 156, 18, 0.8);
  cursor: pointer; /* Changes cursor to pointer to indicate interactivity */
}

/* Media Queries for responsive design */

/* Tablet and Mobile Devices (portrait view) */
@media (max-width: 768px) {
  .footer-copyright p {
      font-size: 14px;  /* Reduce font size slightly for smaller devices */
      margin-top: 20px;  /* Slightly reduce the margin for a more compact look */
      margin-bottom: 15px;  /* Adjust bottom margin */
      letter-spacing: 0.5px;  /* Reduce letter spacing slightly for better fit */
  }

  /* Optional: You can reduce or simplify the hover effect for mobile devices */
  .footer-copyright p:hover {
      text-shadow: none;  /* Remove text shadow on hover for mobile */
  }
  .footer {
     margin-top: -3rem;
     line-height: 1;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  .footer-copyright p {
      font-size: 12px;  /* Further reduce font size for very small screens */
      letter-spacing: 0px;  /* Remove letter spacing for better readability on small screens */
      margin-top: 15px;  /* Reduce the margin above for smaller devices */
      margin-bottom: 10px;  /* Reduce the margin below for smaller screens */
  }

  .footer-copyright p:hover {
      color: #f39c12;  /* Maintain hover effect with glowing text */
      text-shadow: none;  /* Optional: Simplified text shadow */
  }
}


}
@media screen and (min-width: 767px) {
  .nav-dropdown{
    top:100px !important;
  }
}