 
 
 /* Contact Sidebar */
 .contact-sidebar {
    position: fixed;
    top: 35%;
    right: 0;
    display: flex;
    flex-direction: column;
    background-color: #1c272f;
    padding: 10px 0;
    border-radius: 0 10px 10px 0;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
  }
  
  .contact-sidebar a {
    color: #e8f3eb;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(47, 28, 116, 0.1);
  }
  
  .contact-sidebar a i {
    font-size: 20px;
    margin-right: 10px;
    transition: transform 0.3s ease, color 0.3s ease;
  }
  
  .contact-sidebar a span {
    display: inline-block;
    opacity: 0;
    width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: all 0.3s ease;
  }
  
  .contact-sidebar a:hover {
    background-color: #787896;
    color: #fff;
  }
  
  .contact-sidebar a:hover i {
    transform: scale(1.2);
    color: #9addbb;
  }
  
  .contact-sidebar a:hover span {
    opacity: 1;
    width: auto;
    margin-left: 8px;
  }
  
  /* Social Icons */
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
  }
  
  .social-icons a {
    font-size: 24px;
    color: #1c272f;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  .social-icons a:hover {
    color: #4589e2;
    transform: scale(1.2);
  }
  
  .social-icons i {
    margin: 0 10px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .contact-container {
      grid-template-columns: 1fr;
    }
  
    .contact-header h1 {
      font-size: 2rem;
    }
  
    .contact-method {
      padding: 0.75rem;
    }
  
    .contact-sidebar {
      display: none;
    }
  }
  
/* WhatsApp Floating Button */
.whatsapp-float {
position: fixed;
bottom: 100px;
right: 20px;
background-color: #25d366;
color: white;
border-radius: 50%;
padding: 15px;
font-size: 24px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
z-index: 1001;
transition: background-color 0.3s ease, transform 0.3s ease;
}

.whatsapp-float:hover {
background-color: #128c7e;
transform: scale(1.1);
}

/* Back to Top Button */
.back-to-top {
position: fixed;
bottom: 20px;
right: 20px;
background-color: #1c272f;
color: white;
border-radius: 50%;
padding: 15px;
font-size: 24px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
cursor: pointer;
z-index: 1000;
transition: background-color 0.3s ease, transform 0.3s ease;
opacity: 0;
visibility: hidden;
}

.back-to-top:hover {
background-color: #788a96;
transform: scale(1.1);
}

.back-to-top.show {
opacity: 1;
visibility: visible;
}

/* Smooth Scrolling */
html {
scroll-behavior: smooth;
}
.success-message {
  display: none;
  color: green;
  margin-top: 10px;
}
