* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
:root {
  --dark-blue: #102a43;
  --secondary-color: #6d23e2;
  --text-color: #102a43;
  --bg-color: rgba(16, 42, 67, 0.08);
  --card-bg: rgba(255, 255, 255, 0.25);
  --border-color: rgba(255, 255, 255);
  --border-radius: 40px;
  --accent-color: #6d23e2;
  --section-margin: 5rem 0;
  --bg-gray: rgba(220, 220, 220, 0.25);
  --button-text: rgba(255, 255, 255);
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins";
  background-color: var(--bg-color);
  color: var(--text-color);
  transition: background-color 0.3s, color 0.3s;
  font-size: 16px;
}
img {
  object-fit: contain;
}
a {
  text-decoration: none;
  color: var(--text-color);
}
ul {
  list-style-type: none;
}
.box-gray {
  background-color: var(--bg-gray);
  width: 100%;
  height: 400px;
  position: relative;
  z-index: 0;
  border-radius: 20px;
}
.space-x {
  padding: 0 20px;
}
.accent-text {
  color: var(--accent-color);
}
.accent-circle-blurred {
  --circle-accent-color: rgba(109, 35, 226, 0.21);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: var(--circle-accent-color);
  filter: blur(100px);
}
.button {
  border: none;
  background-color: none;
  padding: 15px 50px;
  border-radius: 10px;
  font-weight: 500;
  transition: 0.3s ease;
}
.button-accent-color {
  background-color: var(--accent-color);
  color: var(--button-text);
  border: 1px solid var(--accent-color);
}
.button-accent-color:hover {
  background-color: transparent;
  color: var(--accent-color);
}
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.25);
  color: #000;
  overflow: hidden;
}
.blurred-header {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.dark-mode .sticky-header {
  background-color: #102a431f;
}
.navbar-button-primary {
  padding: 10px 30px;
  border-radius: 10px;
  font-weight: 500;
  transition: 0.3s ease;
}
.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
.navbar-links {
  display: flex;
  align-items: center;
}
.footer-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}
.footer-linklist,
.navbar-linklist {
  display: flex;
  align-items: center;
}
.footer-linklist li,
.navbar-linklist li {
  padding: 0 15px;
  font-weight: 500;
}
footer {
  margin-bottom: 3rem;
}
.social-icon {
  display: none;
  width: 20px; /* Adjust as needed */
}

.icon-light-mode {
  display: inline-block;
}

.icon-dark-mode {
  display: none;
}

.dark-mode .icon-light-mode {
  display: none;
}

.dark-mode .icon-dark-mode {
  display: inline-block;
}

.theme-switch {
  width: 80px;
  height: 40px;
  background: white;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
  font-size: 18px;
}

.theme-switch .icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}

.theme-switch .ball {
  width: 32px;
  height: 32px;
  background: rgba(16, 42, 67, 0.07);
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: 4px;
  transition: transform 0.3s ease;
  z-index: 1;
}

body.dark-mode .theme-switch {
  background: rgba(16, 42, 67, 0.93);
}
body.dark-mode .theme-switch .ball {
  background: rgba(235, 235, 235, 0.07);
}
body.dark-mode .theme-switch .ball {
  transform: translateX(40px);
}

.page-header {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  max-width: 65%;
  margin: auto;
  padding: 4rem 0;
}
.page-header h1 {
  font-size: 4rem;
}
.dark-mode .st0 {
  fill: #102a43;
  stroke: #102a43;
}

.dark-mode .st1 {
  fill: #89c6ff;
  stroke: #89c6ff;
}
.img-dark {
  display: none;
}
.dark-mode .img-light {
  display: none;
}
.dark-mode .img-dark {
  display: block;
}
.dark-mode {
  --secondary-color: #89c6ff;
  --bg-color: rgba(16, 42, 67, 0.93);
  --text-color: #e5e5e5;
  --accent-color: #89c6ff;
  --card-bg: rgba(21, 27, 35, 0.25);
  --border-color: rgba(183, 189, 200, 0.93);
  --bg-gray: rgba(21, 27, 35, 0.25);
  --button-text: rgba(21, 27, 35);
}
.container {
  width: 100%;
  padding-right: var(--bs-gutter-x, 1rem);
  padding-left: var(--bs-gutter-x, 1rem);
  margin-right: auto;
  margin-left: auto;
}

.relative {
  position: relative;
}

.logo-white {
  display: none;
}
.dark-mode .logo-gradient {
  display: none;
}
.dark-mode .logo-white {
  display: block;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  margin-top: 20px;
}

.contact-form {
}
.contact-sidebar {
  display: flex;
  flex-direction: column;
}
.contact-sidebar h2 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.contact-sidebar a {
  margin-bottom: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.contact-sidebar a svg {
  margin-right: 10px;
}
.contact-form .form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact-form .form-row .w-50 {
  width: 48%;
}

.contact-form input,
.contact-form select {
  border: 1px solid var(--bg-gray);
  padding: 20px;
  width: 100%;
  margin-top: 10px;
  font-size: 1rem;
}
.contact-form input:focus,
.contact-form select:focus {
  outline: 1px solid var(--accent-color);
}
.contact-form .form-group {
  margin: 20px 0;
}
.contact-form .wpcf7-submit {
  width: fit-content;
  padding: 15px 60px;
  background-color: var(--dark-blue);
  border-radius: 10px;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
  border: 1px solid var(--dark-blue);
  transition: 0.2s ease;
}
.contact-form .wpcf7-submit:hover {
  background-color: transparent;
  color: var(--dark-blue);
  cursor: pointer;
}
.wpcf7-response-output {
  width: 80%;
  margin: 2em auto 1em !important;
}
.dark-mode .contact-form .wpcf7-submit {
  background-color: white;
  color: var(--dark-blue);
  border-color: white;
}
.dark-mode .contact-form .wpcf7-submit:hover {
  background-color: transparent;
  color: white;
}

/* Mobile Button burger menu */

#openBtn {
  display: none;
  background-color: transparent;
  border: none;
}
.dark-mode #openBtn svg {
  fill: white;
}
.dark-mode #openBtn * {
  stroke: white;
}
.sidebar {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background-color: #e5e5e5;
  padding: 20px;
  transition: right 0.3s ease-in-out;
  z-index: 1000;
}
.sidebar .navbar-linklist a {
  color: var(--dark-blue);
}
.sidebar .navbar-linklist .button-accent-color {
  color: var(--button-text);
}
.sidebar.active {
  right: 0;
}

.sidebar-closeBtn {
  background: none;
  border: none;
  color: var(--dark-blue);
  font-size: 30px;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 999;
}

.overlay.active {
  display: block;
}
.menu-switch {
  display: none;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

@media (max-width: 1200px) {
  #openBtn {
    display: block;
  }
  .navbar-links {
    display: none;
  }
  .menu-switch {
    display: flex;
  }
  .mobile-theme-switch {
    margin-right: 10px;
  }
}
@media screen and (max-width: 765px) {
  :root {
    --section-margin: 2rem 0;
  }
  .navbar-container {
    padding: 20px 0;
  }
  .navbar-links {
    display: none;
  }
  .page-header {
    max-width: 100%;
  }
  .page-header h1 {
    font-size: 2.5rem;
  }
  .space-x {
    padding: 0 5px;
  }
  .footer-links {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-linklist li,
  .navbar-linklist li {
    padding: 15px 0;
  }
  .footer-linklist,
  .navbar-linklist {
    flex-direction: column;
    align-items: flex-start;
  }
  footer {
    margin-bottom: 3rem;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .contact-form {
    width: 100%;
    max-width: 100%;
  }
  .contact-form .form-row {
    flex-direction: column;
  }
  .contact-form .form-row .w-50 {
    width: 100%;
  }
}
/* .footer-linklist,
.navbar-linklist {
  display: none;
} */


.service-icon .icon-dark {
  display: none;
}
body.dark-mode .service-icon .icon-light {
  display: none;
}
body.dark-mode .service-icon .icon-dark {
  display: inline-block;
}
