
/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap");
@import url('https://fonts.googleapis.com/css?family=Montserrat:500'); 
/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3rem;

  /*========== Colors ==========*/
  --hue: 174;
  --sat: 63%;
  --first-color: hsl(var(--hue), var(--sat), 40%);
  --first-color-alt: hsl(var(--hue), var(--sat), 36%);
  --title-color: hsl(var(--hue), 12%, 15%);
  --text-color: hsl(var(--hue), 8%, 35%);
  --body-color: hsl(var(--hue), 100%, 99%);
  --container-color: #171414;

  /*========== Font and typography ==========*/
  --body-font: 'Open Sans', sans-serif;
  --h1-font-size: 1.5rem;
  --normal-font-size: .938rem;
  --tiny-font-size: .625rem;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

@media screen and (min-width: 968px) {
  :root {
    --h1-font-size: 2.25rem;
    --normal-font-size: 1rem;
  }
}

/*=============== BASE ===============*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
  }
  
  html {
    scroll-behavior: smooth;
  }
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #f8f9fa;
}
header {
    padding: 10px 20px;
    color: #fff;

}
header h1 {
    font-size: 2.5em;
}
.tabs {
    background-color: #2a2d30;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Distribute space between items */
    padding: 5px 10px; /* Add padding for better spacing */
    flex-wrap: wrap;
}
.logo-container {
    display: flex;
    align-items: center;
}
.logo-container svg {
    margin-right: 10px;
}
.logo-text {
    font-family: 'Arial', sans-serif;
    font-size: 20px;
    background: -webkit-linear-gradient(left, #e0200ff0, #ea4b3de0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.tab-links {
    display: flex;
    align-items: center;
}
.tab {
    margin: 0 5px;
}
.tab a {
    display: block;
    padding: 10px 15px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: 500; /* Improve text readability */
    background-color: #2e3339; /* Background color for tabs */
    border-radius: 20px;
    transition: background-color 0.3s;
}
.tab a:hover, .tab a.active {
    background-color: #2e3339; /* Darker shade on hover */
    color: #fff; /* Ensure text remains visible */
}
.tab-links {
    display: flex;
    align-items: center;
}
.tab {
    margin: 0 10px;
}
.tab a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}
.tab a.active {
    font-weight: bold;
}
.auth-links {
    display: flex;
    align-items: center;
}
.container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.auth-links a {
    color: #fff;
    text-decoration: none;
    margin-left: 15px;
    font-size: 16px;
    background-color: #2e3339; /* Background color for auth links */
    padding: 8px 12px; /* Padding for better clickable area */
    border-radius: 20px; /* Rounded corners */
    transition: background-color 0.3s, color 0.3s;
}

.auth-links a:hover {
    background-color: #2e3339; /* Darker shade on hover */
    color: #fff;
}
.tabcontent {
    display: none;
    padding: 20px;
}
.tabcontent .main-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.tab a:hover, .tab a.active {
    background-color: #2e3339;
}
.main-container {
    padding: 20px;
}
.service-container {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.service-container h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    font-weight: bold; /* Added for bold text */
    color: #000; /* Added for black color */
}
.login-box {
    width: 300px;
    padding: 40px;
    position: relative;
    background: #fff;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    text-align: center;
    animation: fadeIn 1s ease;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-box h2 {
    margin: 0 0 20px;
    padding: 0;
    color: #333;
}

.textbox {
    position: relative;
    margin-bottom: 30px;
}

.textbox input {
    width: 100%;
    padding: 10px;
    background: #f2f2f2;
    border: none;
    outline: none;
    color: #333;
    border-radius: 5px;
}

.btn {
    width: 100%;
    background: #333;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    color: #fff;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #555;
}
.service-container p {
    font-size: 1em;
    color: #666;
}
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  overflow: hidden;
  background: #000; /* Black background for better contrast */
}
.mySlides {
  display: none;
  background-size: cover;
  background-position: center;
  position: relative;
  opacity: 0; /* Start with opacity 0 */
  transition: opacity 1s ease;
}
.mySlides.active {
  display: block;
  opacity: 1; /* When active, set opacity to 1 */
}
.slideshow-container img {
  width: 100%;
  height: 400px; /* Set a fixed height */
  object-fit: cover; /* Ensure the image covers the container while maintaining aspect ratio */
}
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  z-index: 1; /* Ensure they are above other content */
}
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
  font-weight: bold;
}
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.active, .dot:hover {
  background-color: #717171;
}
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}
@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
.login-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 0;
    background: #f7f7f7;
}
.login-box {
    width: 300px;
    padding: 40px;
    position: relative;
    background: #fff;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    text-align: center;
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-box h2 {
    margin: 0 0 20px;
    padding: 0;
    color: #333;
}

.textbox {
    position: relative;
    margin-bottom: 30px;
}

.textbox input {
    width: 100%;
    padding: 10px;
    background: #f2f2f2;
    border: none;
    outline: none;
    color: #333;
    border-radius: 5px;
}

.btn {
    width: 100%;
    background: #333;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    color: #fff;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #555;
}
.signup-page {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.signup-form {
    width: 300px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
}

.signup-form h2 {
    text-align: center;
}

.signup-form input[type="text"],
.signup-form input[type="email"],
.signup-form input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.signup-form button {
    width: 100%;
    background-color: #007bff; /* Same color as login button */
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.signup-form button:hover {
    background-color: #0056b3; /* Darker shade on hover */
}

.signup-form p {
    text-align: center;
    margin-top: 10px;
}

.signup-form p a {
    color: #007bff;
    text-decoration: none;
}

.signup-form p a:hover {
    text-decoration: underline;
}
/* Custom modal styles */
.custom-modal-backdrop {
    background-color: rgba(248, 249, 250, 0.8);
}
.modal .modal-header{
    border-bottom: none;
}
.modal .modal-header {
    border-top: none;
}
/* Custom modal styles */
.modal-header {
    border-bottom: 1px solid #dee2e6;
}

.modal-title {
    font-size: 1.5em;
    color: #007BFF;
}

.modal-body ul {
    list-style-type: none;
    padding: 0;
}

.modal-body ul li {
    margin: 10px 0;
}

.modal-body ul li a {
    text-decoration: none;
    color: #007BFF;
    transition: color 0.3s;
}

.modal-body ul li a:hover {
    color: #0056b3;
}


#servicesContainer {
    margin: 0 auto;
    max-width: 600px;
    text-align: center;
    padding: 20px;
}

.tab {
    display: inline-block;
    margin-bottom: 20px;
}

.tab a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    background-color: #2e3339;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.tab a:hover {
    background-color: #2e3339;
}

/* Modal styles */
.modal-header {
    border-bottom: 1px solid #dfdee6;
}

.modal-title {
    font-size: 1.5em;
    color: #100113;
}

.modal-body ul {
    list-style-type: none;
    padding: 0;
}

.modal-body ul li {
    margin: 10px 0;
}

.modal-body ul li a {
    text-decoration: none;
    color: #161717;
    transition: color 0.3s;
}

.modal-body ul li a:hover {
    color: #0b0c0c;
}
/* Dark Theme Styles */
body.dark-theme {
    background-color: #181818;
    color: #e0e0e0;
}
body.dark-theme .tabs {
    background-color: #333;
}
body.dark-theme .tab a {
    color: #e0e0e0;
}
body.dark-theme .tab a:hover, body.dark-theme .tab a.active {
    background-color: #555;
}
body.dark-theme .service-container {
    background-color: #333;
    border-color: #555;
}
body.dark-theme .service-container h2 {
    color: #e0e0e0;
}
body.dark-theme .service-container p {
    color: #bbb;
}
body.dark-theme .collapsible {
    background-color: #444;
}
body.dark-theme .collapsible:hover, body.dark-theme .collapsible.active {
    background-color: #555;
}
body.dark-theme .collapsible-content {
    background-color: #282828;
}
body.dark-theme footer {
    background-color: #222;
}

.form-check {
    display: flex;
    align-items: center;
    color: #fff;
}
.form-check-label {
    margin-left: 8px;
    color: #fff;
}

/* Popup Styles */
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 600px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    z-index: 1000;
    overflow: hidden;
}

.popup-content {
    padding: 20px;
    background-color: #fff;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #007BFF;
    color: #fff;
}

.popup-header h2 {
    margin: 0;
}

.popup-header .close {
    cursor: pointer;
    font-size: 24px;
}
/* Responsive Design */
@media (max-width: 768px) {
    .tabs {
        flex-direction: column;
    }
    .tab a {
        padding: 10px;
    }
}
@media (max-width: 576px) {
    .service-container h2 {
        font-size: 1.2em;
    }
    .service-container p {
        font-size: 0.9em;
    }
    .text, .numbertext {
        font-size: 12px;
    }
    .prev, .next {
        font-size: 16px;
        padding: 12px;
    }
}
/* Responsive Design */
@media (max-width: 768px) {
    .tabs {
        flex-direction: column;
    }
    .tab a {
        padding: 10px;
    }
}
@media (max-width: 576px) {
    .service-container h2 {
        font-size: 1.2em;
    }
    .service-container p {
        font-size: 0.9em;
    }
    .text, .numbertext {
        font-size: 12px;
    }
    .prev, .next {
        font-size: 16px;
        padding: 12px;
    }
}
@media only screen and  (min-width: 576px) {
    .container {
        width: 540px;
    }
    
}
@media only screen and (min-width: 1200px) {
    .container {
        width: 1140px;
    }
    
}
@media screen and (min-width: 80rem) {
    .container {
      margin: 1em 2em;
    }
  }
.sitemap-link {
    display: none;
}
footer {
    background: #2c2c2c;
    color: #fff;
    padding: 40px 0;
    font-size: 14px;
    margin-top: 20px;
    margin-left: auto; /* Add margin-left:auto */
    margin-right: auto; /* Add margin-right:auto */
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 50px;
    margin-right: 15px;
}

.footer-logo-text {
    font-size: 18px;
    font-weight: bold;
}

.footer-column {
    flex: 1 1 auto; /* Allow columns to grow and shrink equally */
    max-width: calc(25% - 20px); /* Set maximum width for each column */
    margin-bottom: 20px; /* Add spacing between columns */
    padding: 0 20px; /* Add internal padding for content */
    text-align: left; /* Align text to the left within each column */
}

.footer-column h5 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: bold;
}

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

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

.footer-column ul li a {
    color: #ffffff;
}

.footer-column ul li a:hover {
    color: #dddddd;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    color: #ffffff;
    margin-right: 15px;
    font-size: 20px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #aaaaaa;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    margin-top: 20px;
}

.footer-bottom p {
    margin: 0;
    color: #ffffff;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        max-width: calc(50% - 20px);
    }
    .footer-logo {
        justify-content: center;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .footer-column {
        max-width: calc(33.33% - 20px); /* Adjust column width for screens from 769px to 1024px */
    }
}

/* Adjust column widths for larger screens (desktops) */
@media (min-width: 1025px) {
    .footer-column {
        max-width: calc(25% - 20px); /* Adjust column width for screens larger than 1024px */
    }
}