
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
body {
    font-family: 'poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

body::-webkit-scrollbar{
  display: none;
}

.bg{
    background-size: cover; 
}
.main-header {
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px;
  height: 4.5em;
  position: fixed;
  top: 0;
  z-index: 100;
  box-shadow: 0 1em 2em rgba(80, 91, 160, 0.3);
  width: 100vw;
}
/* Logo Container */
.logo-container img {
  height: 3em;
}
.logo-container a {
  display: flex;
  align-items: center;
}
/* Navigation Links */
.navigation {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

.navigation-links {
  list-style: none;
  display: flex;
  width: 100%;
  justify-content: space-around;
  align-items: center;
}
@media (min-width:1025px) {
  .navigation-links{
    gap: 60px;
    justify-content: center;
  }
  
}
.silver-jublee{
  animation: alternate;
  -webkit-animation: alternate;
  animation-duration: 10s;
}

.navigation-links a {
  color: #122023;
  text-decoration: none;
}

.navigation-links a:hover {
  border-bottom: 2px solid #5d4ce6;
  color: #5d4ce6;
}

/* Action Buttons */
.action-buttons {
  display: flex;
  gap: 1em;
}

.button {
  padding: 0.5em 0.7em;
  border: 2px solid #5d4ce6;
  cursor: pointer;
  background-color: white;
  color: #5d4ce6;
  font-size: 1em;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #5d4ce6;
  color: white;
}
.notification-button{
  display:none;
}

/* Default styles */
.hamburger-menu {
  display: none;
  font-size: 24px;
  cursor: pointer;
}
.box{
  text-align: center;
  gap: 4;
  height: 500px;
  overflow: auto;
}

/* Close button for the mobile menu */
.close-menu {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .main-header {
    height: 3.5em;
  }
  .navigation {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    background-color: white;
    width: 50%;
    height: auto;
    padding: 42px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease-in-out;
    transform: translateX(100%);
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

  /* Slide-in effect when menu is active */
  .navigation.active {
    display: flex;
    transform: translateX(0);
  }

  .close-menu {
    display: block;
  }

  .navigation-links {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .action-buttons {
    flex-direction: column;
    margin-top: 50px;
  }

  .hamburger-menu {
    display: block;
  }
}

/* Button Styling */
button.btn {
  background-color: #5d4ce6;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

button.btn:hover {
  background-color:#5d4ce6;
}


/* Footer Styles */
.container {
  display: flex;
  margin: auto;
  width: 98%;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}


.footer {
  background-color: #ffffff;
  padding: 2em 0;
}

.footer-col {
  flex: 1 1 calc(25% - 1em);
  padding: 0 1em;
}

.footer-col h4 {
  font-size: 18px;
  color: #000000;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 600;
  position: relative;
}

.footer-col h4::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.5em;
  background-color: #5d4ce6;
  height: 2px;
  width: 3em;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 1em;
  text-transform: capitalize;
  color: #000000;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #000000;
  padding-left: 0.5em;
}

.footer-logo {
  max-width: 12.5em;
  margin-bottom: 15px;
}

.social-links{
  margin-top: 1em;
}
.contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.phone,
.email {
  display: flex;
  align-items: center;
}

.phone i,
.email i,
.location i {
  color: #5d4ce6;
  font-size: 1.2em;
}

.footer-col .social-links a{
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: #e9eaf5;
  margin:0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #5d4ce6;
  transition: all 0.5s ease;
  }
  .footer-col .social-links a:hover{
  color: #ffffff;
  background-color: #5d4ce6;
  }
  

/* Responsive Design */
@media (max-width: 768px) {
  .footer-col {
    flex: 1 1 calc(50% - 1em);
  }
}

@media (max-width: 480px) {
  .footer-col {
    flex: 1 1 100%;
  }
}

.copyright {
  text-align: center;
  margin-top: 1em;
}

/* Scroll to Top Button */
.scroll-to-top-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.scroll-to-top-btn {
  display: none;
  background-color: #5d4ce6;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5em;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
}


.scroll-to-top-btn:hover {
  background-color: #5d4ce6;
}
