@charset "UTF-8";

/* css style */
/* light or default theme */
:root {
  --primary-color: #fbb034;
  --secondary-color: #00a4f5;
  --bg-color: #fff;
  --heading-color: #060606;
  --a-color: #0089cd;
  --font-color: #6f6f6f;
  --border-radius: 8px;
  --border-radius-full: 30px;
  --border-color-light: #eee;
  --iframe-filter: grayscale(0%);
  --bg-grey: #f4f4f4;
  --bg-light: #fbfbfb;
  --box-shadow: 0 0.5rem 1rem rgb(12 12 12 / 5%);
  --banner-layer: rgb(255 255 255 / 90%);
  --gradient-color: linear-gradient(to left, #11d5ff 0%, #0089cd 100%);
  --gradient-color-banner: linear-gradient(to left, #00c9f5 0%, #00a4f5 100%);
  --layer: rgb(1 121 179 / 75%);
  --subscribe-footer-input: #fff;
}

/* dark theme */
[data-theme="dark"] {
  --primary-color: #fbb034;
  --secondary-color: #00a4f5;
  --bg-color: #08171e;
  --heading-color: #fdfffc;
  --a-color: #11d5ff;
  --font-color: #b7b7b7;
  --border-color-light: rgba(255, 255, 255, 0.2);
  --iframe-filter: grayscale(100%);
  --bg-grey: #040b0e;
  --bg-light: #131917;
  --box-shadow: 0 0.5rem 1rem rgb(5 14 18);
  --banner-layer: rgb(8 23 30 / 85%);
  --subscribe-footer-input: #040b0e;
}

body, html {
  margin: auto;
  padding: 5px;
  background: var(--bg-color);
  color: var(--font-color);
}

a { color: var(--a-color);  text-decoration: none; }
a:hover { color: lighten(var(--a-color), 10%);  text-decoration: underline; }
h1, h2 , h3 , h4 { color: var(--heading-color); }

h3.title-style {
  font-size: 45px;
  line-height: 55px;
  font-weight: bold;
}

p { line-height: 1.6; max-width: 800px; margin: auto; }
ul { text-align: left; display: inline-block; }

.leader { text-align: left; max-width: 800px; margin: 20px auto; padding: 15px; border-left: 5px solid #3498DB; }

/* container */
.container {
  width: 100%;
  padding-right: 0.25rem !important
  padding-left: 0.25rem !important
  padding-top: 0.25rem !important
  padding-bottom: 1rem !important
  margin-right: auto;
  margin-left: auto;
}

/* Text alignment  */
.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

/* Alert & Error Msg */
.alert {
  position: relative;
  padding: 1rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 3rem;
}

.alert-dismissible .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 1.25rem 1rem;
}

.alert-primary {
  color: #084298;
  background-color: #cfe2ff;
  border-color: #b6d4fe;
}

.alert-primary .alert-link {
  color: #06357a;
}

.alert-secondary {
  color: #41464b;
  background-color: #e2e3e5;
  border-color: #d3d6d8;
}

.alert-secondary .alert-link {
  color: #34383c;
}

.alert-success {
  color: #0f5132;
  background-color: #d1e7dd;
  border-color: #badbcc;
}

.alert-success .alert-link {
  color: #0c4128;
}

.alert-info {
  color: #055160;
  background-color: #cff4fc;
  border-color: #b6effb;
}

.alert-info .alert-link {
  color: #04414d;
}

.alert-warning {
  color: #664d03;
  background-color: #fff3cd;
  border-color: #ffecb5;
}

.alert-warning .alert-link {
  color: #523e02;
}

.alert-danger {
  color: #842029;
  background-color: #f8d7da;
  border-color: #f5c2c7;
}

.alert-danger .alert-link {
  color: #6a1a21;
}

.alert-light {
  color: #636464;
  background-color: #fefefe;
  border-color: #fdfdfe;
}

.alert-light .alert-link {
  color: #4f5050;
}

.alert-dark {
  color: #141619;
  background-color: #d3d3d4;
  border-color: #bcbebf;
}

.alert-dark .alert-link {
  color: #101214;
}

/* Row and Column Properties */
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) / -2);
  margin-left: calc(var(--bs-gutter-x) / -2);
}


.row>* {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) / 2);
  margin-top: var(--bs-gutter-y);
}

  .col {
      flex: 1 0 0%;
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-md-1 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-md-2 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-md-3 {
      flex: 0 0 auto;
      width: 70%;
  }

  .col-md-4 {
    flex: 0 0 auto;
    width: 80%;
  }

  .col-md-5 {
    flex: 0 0 auto;
    width: 100%;
  }


/* login section  - Use for Form  & User Input */
.login-block input,
.login-block select,
.login-block textarea {
  width: 90%;
  color: var(--heading-color);
  background: var(--bg-grey);
  font-size: 16px;
  padding: 14px;
  border: 2px solid var(--border-color-light);
  outline: none;
  margin-bottom: 20px;
  border-radius: var(--border-radius);
}

/* Add dropdown arrow manually */
.login-block select {
  -webkit-appearance: none; /* Safari/Chrome */
  -moz-appearance: none; /* Firefox */
  appearance: none; /* Standard */

  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><polygon points="0,0 20,0 10,10" fill="gray"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
  padding-right: 30px; /* Space for dropdown arrow */
}

.login-block textarea {
  height: 180px;
  margin: 0 0 20px 0;
}

.login-block input:focus,
.login-block textarea:focus {
  border: 2px solid var(--secondary-color);
  background: var(--bg-color);
}

.login-left {
  box-shadow: var(--box-shadow);
  padding: 40px;
}

.login-center {
    float: none;
    margin: auto;
}

.login-right {
    margin-left: auto;
    margin-right: 20px;
    box-shadow: var(--box-shadow);
    padding: 40px;
}

/* button style */
.btn {
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-style {
  padding: 12px 36px 14px;
  font-size: 16px;
  color: #fff;
  border-radius: var(--border-radius-full);
  font-weight: bold;
  outline: none;
  border: none;
  background: var(--primary-color);
  transition: all 1.8s ease-in-out;
}

.btn-style:hover {
  color: #fff;
  background: var(--secondary-color);
}

.btn-style-2 {
  color: var(--heading-color);
  background: var(--bg-color);
}

.btn-style-2:hover {
  color: #fff;
  background: var(--primary-color);
}

.btn-style-3 {
  background: var(--secondary-color);
}

.btn-style-3:hover {
  background: var(--primary-color);
}

.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-danger:hover {
  color: #fff;
  background-color: #bb2d3b;
  border-color: #b02a37;
}

.btn-check:focus+.btn-danger,
.btn-danger:focus {
  color: #fff;
  background-color: #bb2d3b;
  border-color: #b02a37;
  box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
}

.btn-success {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}

.btn-success:hover {
  color: #fff;
  background-color: #157347;
  border-color: #146c43;
}

.btn-check:focus+.btn-success,
.btn-success:focus {
  color: #fff;
  background-color: #157347;
  border-color: #146c43;
  box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);
}


.fixed-top {
  position: fixed;
  width: 100%;
  left: 50%; /* Center the header */
  transform: translateX(-50%); /* Adjust centering */
  z-index: 1030;
}

.fixed-bottom {
  position: relative;
  z-index: 1030;
  margin-top: 40px;
}

/* Team container and information about team members */
.team-container {
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: auto;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-width: 100%;
    transition: transform 0.5s ease-in-out;
}

.top-section {
    display: flex;
    align-items: center;
    width: 100%;
}

.team-img {
    width: 200px;
    height: auto;
    border-radius: 8px;
    margin-right: 20px;
}

.team-details {
    flex: 1;
}

.team-info {
  /*  padding-left: 20px;
    text-align: left;*/
    margin-top: 10px;
    padding: 10px;
    text-align: left;
    max-width: 600px;
}

.team-info h4 {
    margin-bottom: 5px;
    font-size: 20px;
}

.team-info p {
    margin: 5px 0;
}

.social-links a {
    margin-right: 10px;
    font-size: 20px;
    color: #007bff;
}

.team-navigation {
    text-align: center;
    margin-top: 15px;
}

.team-navigation button {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 18px;
    cursor: pointer;
    margin: 5px;
    border-radius: 5px;
}

.team-navigation button:hover {
    background: #0056b3;
}

.mission, .goals {
    padding: 10px 15px;
    text-align: center;
    font-size: 18px;
}

/* Navigation bar properties */
.navbar {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar>.container,
.navbar>.container-fluid,
.navbar>.container-sm,
.navbar>.container-md,
.navbar>.container-lg,
.navbar>.container-xl,
.navbar>.container-xxl {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  text-decoration: none;
  white-space: nowrap;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

.navbar-nav .dropdown-menu {
  position: static;
}

.navbar-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  transition: box-shadow 0.15s ease-in-out;
}


/* For screens below 768px (typically mobile screens) */
@media only screen and (max-width: 768px) {
      body {
        max-width: 100%; /* Remove max-width limitation for mobile */
        margin: 0; /* Remove margin */
      }
      .fixed-top {
          max-width: 100%; /* Use full width for mobile */
          left: 0;
          transform: none;
      }

      .navbar {
          flex-wrap: nowrap; /* Prevents wrapping */
          justify-content: space-between; /* Push logo left and menu right */
      }

    .navbar-brand img {
      width: 50px; /* Adjust logo size for mobile */
      height: auto;
    }

    .navbar-collapse {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background: white; /* Ensure visibility */
      text-align: center;
    }

    .navbar-toggler {
      order: 1; /* Keep toggle button on right */
    }

    .cont-ser-position {
      order: 2; /* Keep theme switch on right */
    }
}

/* Google login */
.google-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #4285F4;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.google-btn:hover {
    background-color: #3367D6;
}

.google-btn img {
    margin-right: 10px;
    width: 20px;
    height: 20px;
}