<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Reset default body and html padding/margin */
/* html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
  background-color: #ffffff;
  overflow-x: hidden; 
} */

/* Apply box-sizing border-box globally */
*, *::before, *::after {
  box-sizing: border-box;
}
/* Container layout */
html {
    scroll-behavior: smooth;
  }
  .container-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 50px auto;
    max-width: 1200px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }
  body {
    background-color: #ffffff !important;
  }
  /* Contact Info section */
  .contactInfo {
    flex: 1;
    min-width: 280px;
    max-width: 40%;
    padding: 20px;
  }
  
  .contactInfo h2 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
  }
  
  .contactInfo ul.info,
  .contactInfo ul.sci {
    list-style: none;
    padding: 0;
  }
  
  .contactInfo ul.info li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    color: #444;
  }
  
  .contactInfo ul.info li img {
    width: 25px;
    margin-right: 10px;
  }
  
  .contactInfo ul.sci {
    margin-top: 15px;
    display: flex;
    gap: 10px;
  }
  
  .contactInfo ul.sci li img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
  }
  
  .contactInfo ul.sci li img:hover {
    transform: scale(1.2);
  }
  
  /* Contact Form section */
  .contactForm {
    flex: 1;
    min-width: 280px;
    max-width: 55%;
    padding: 20px;
  }
  
  .contactForm h2 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 25px;
  }
  
  .contactForm form {
    display: flex;
    flex-direction: column;
  }
  
  .contactForm form p {
    margin-bottom: 15px;
  }
  
  .contactForm label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #222;
  }
  
  .contactForm input,
  .contactForm textarea,
  .contactForm select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    background-color: #f9f9f9;
    transition: border-color 0.3s;
  }
  
  .contactForm input:focus,
  .contactForm textarea:focus,
  .contactForm select:focus {
    border-color: #007bff;
    outline: none;
    background-color: #fff;
  }
  
  .contactForm button.btn {
    align-self: flex-start;
    background-color: #007bff;
    border: none;
    padding: 10px 25px;
    color: white;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .contactForm button.btn:hover {
    background-color: #0056b3;
  }
  
  /* Modal Overrides */
  .modal-content {
    border-radius: 8px;
  }
  
  .modal-header,
  .modal-footer {
    border: none;
  }
  
  .modal-title {
    color: #007bff;
  }
  
  
  
  .scroll-down {
    display: flex;
    justify-content: center;
    /* margin-top: 40px; */
    animation: bounce 2s infinite;
  }
  
  .scroll-down img {
    width: 80px;
    height: 80px;
    cursor: pointer;
    /* filter: invert(1); makes dark arrow white */
    opacity: 0.8;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  .scroll-down img:hover {
    transform: scale(1.1);
    opacity: 1;
  }
  
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(15px);
    }
    60% {
      transform: translateY(10px);
    }
  }
  
.modal-backdrop,
.popup,
.overlay,
.form-lock {
  display: none !important;
  pointer-events: none !important;
  opacity: 0 !important;
}


.modal-success {
  border-left: 6px solid #28a745;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.2);
}

.modal-error {
  border-left: 6px solid #dc3545;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(220, 53, 69, 0.2);
}

.modal-content {
  border-radius: 18px;
  font-size: 1.6rem;
}

.modal-header {
  background-color: #f9f9f9;
  border-bottom: 1px solid #dee2e6;
}

.modal-title {
  font-weight: bold;
  font-size: 2rem;
}

.modal-footer {
  background-color: #f9f9f9;
  border-top: 1px solid #dee2e6;
}

.modal-body {
  padding: 1.5rem;
  font-size: 1.6rem;
}

.btn-outline-success, .btn-outline-danger {
  font-size: 1.6rem;
  padding: 0.5rem 1.2rem;
}

  </pre></body></html>