body {
  font-family: "ariels", sans-serif;
  margin: 0;
  padding: 0;
  background-color: white;
  overflow-x: hidden;
  width: 100%;
}

header {
  background: #ffffff;
  padding: 10px 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: auto;
  padding: 0 40px;
}

.logo {
  height: 50px;
  margin-right: 60px;
}

header nav {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 50px;
  margin: 0;
  padding: 0;
}

header nav ul li {
  display: inline-block;
}

header nav ul li a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-size: 1rem;
  transition: color 0.3s ease-in-out;
}

.cta-button {
  background: #fcc226;
  color: #36414f;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.3s ease-in-out;
  margin-left: 80px;
}

.cta-button:hover {
  background: rgba(74, 144, 226, 0.8);
  color: white;
}
@media screen and (max-width: 768px) {
  body {
    font-family: "Arial", sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
    overflow-x: hidden;
    width: 100%;
    position: relative;
  }

  header {
    background: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    height: 60px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    height: 60px;
  }

  .logo {
    height: 40px;
  }

  .nav-menu {
    display: flex;
    list-style: none;
    padding: 0;
  }

  .nav-menu li {
    display: inline-block;
  }

  .nav-menu a {
    text-decoration: none;
    color: #18346c;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
  }

  .nav-menu a:hover {
    color: #0056b3;
  }

  .burger-menu {
    display: none;
    position: fixed;
    left: 15px;
    top: 15px;
    z-index: 1001;
    background: none;
    border: none;
    width: 45px;
    height: 45px;
    cursor: pointer;
  }

  .burger-menu span {
    display: block;
    width: 35px;
    height: 4px;
    background-color: #18346c;
    margin: 6px 0;
    transition: all 0.3s ease-in-out;
  }

  .burger-menu {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 60%;
    max-width: 320px;
    height: 100vh;
    background: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: left 0.4s ease-in-out;
    overflow-y: auto;
    overflow: hidden;
    justify-content: start;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu ul {
    padding: 0;
    margin: 0;
    width: 100%;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    display: block;
    padding: 0;
    font-size: 1.2rem;
    color: #18346c;
    text-align: left;
    margin-top: 14%;
    width: 100%;
    transition: 0.3s ease-in-out;
  }

  .nav-menu .button-glass {
    width: 90%;
    margin-top: auto;
    padding: 15px;
    text-align: center;
    background: #fcc226;
    color: #18346c;
    font-weight: bold;
    border-radius: 10px;
  }

  html,
  body {
    overflow-x: hidden;
    width: 100%;
  }
}

.text-content h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.text-content h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.text-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1600px;
  margin: auto;
  padding: 0 20px;
  height: 60px;
}

.header-container nav {
  flex-grow: 1;
  text-align: center;
}

.header-container .button-primary {
  margin-left: auto;
  margin-right: 20px !important;
}

.logo {
  width: 120px;
  height: auto;
}

header nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 25px;
  margin: 0;
  align-items: center;
}

header nav ul li {
  position: relative;
  display: flex;
  align-items: center;
  padding: 5px 10px;
}

header nav ul li a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
  padding-bottom: 5px;
  position: relative;
  transition: color 0.3s ease;
}

header nav ul li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background-color: #18346c;
  transition: width 0.3s ease-in-out;
}

header nav ul li:hover::after {
  width: 100%;
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

#hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
#hero-video {
  width: 100%;
  height: auto;
  object-fit: cover;
  background: url("images/fallback.jpg") no-repeat center center;
  background-size: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.59);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  max-width: 60%;
  color: white;
  margin: auto;
}
.yellow-text {
  color: #fcc226;
  text-transform: uppercase;
}
.bloo-text {
  text-transform: uppercase;
  font-weight: bold;
  background: linear-gradient(45deg, #0074e4, #00a2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.blue-text {
  text-transform: uppercase;
  font-weight: bold;

  background: linear-gradient(45deg, #0074e4, #00a2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow: 0px 0px 10px rgba(0, 140, 255, 0.4);
}
.hero-content h2 {
  font-size: 2.3em;
  font-weight: bold;
}
.hero-content h3 {
  font-size: 1.6em;
  font-weight: bold;
}
.hero-content p {
  font-size: 1.2em;
  line-height: 1.6;
}
.button-ctaprimary {
  background: #fcc226;
  color: #36414f;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.button-ctaprimary:hover {
  background: rgba(74, 144, 226, 0.45);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(16.5px);
  -webkit-backdrop-filter: blur(16.5px);
  transform: scale(1.05);
  color: white;
}
.button-secondary {
  background: rgba(255, 255, 255, 0.8);
  color: #36414f;
  font-size: 1rem;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: bold;
  width: 30%;
  max-width: 220px;
  text-align: center;
  display: block;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.button-secondary:hover {
  background: rgba(74, 144, 226, 0.8);
  color: white;
  transform: scale(1.05);
}

.button-glass {
  background: #fcc226;
  color: #36414f;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
  box-shadow: 0 6px 28px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: inline-block;
  margin: 15px;
  width: auto;
  max-width: 260px;
  height: 20px;
}
.secondry {
  background: rgba(255, 255, 255, 0.8);
  margin-left: 5px;
}

.button-glass:hover {
  background: rgba(74, 144, 226, 0.8);
  color: white;
  transform: scale(1.05);
}

.hero p {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 600px;
  margin: auto;
  padding-bottom: 20px;
}

.hero .button {
  margin: 15px 10px;
}
@media (max-width: 768px) {
  .hero-content {
    max-width: 85%;
    padding: 15px;
  }

  .hero-content h2 {
    font-size: 1.4rem;
    line-height: 1.3;
  }

  .hero-content h3 {
    font-size: 1rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .hero-content .button {
    font-size: 0.9rem;
    padding: 8px 15px;
  }
  .hero-content .button-glass {
    font-size: 1rem;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: bold;
    width: 30%;
    max-width: 220px;
    text-align: center;
    display: block;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
  }
}

#hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  background: url("images/fallback.jpg") no-repeat center center;
  background-size: cover;
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

#hero-video {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  pointer-events: none;
  z-index: -1;
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

#hero-video {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  pointer-events: none;
  z-index: -1;
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .hero {
    height: 80vh;
  }

  #hero-video {
    height: auto;
    width: 100%;
    min-height: 100%;
  }

  .hero-content {
    max-width: 90%;
    padding: 10px;
  }

  .hero-content h2 {
    font-size: 1.6rem;
  }

  .hero-content h3 {
    font-size: 1.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

.features-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  padding: 40px;

  backdrop-filter: blur(16px) saturate(141%);
  -webkit-backdrop-filter: blur(16px) saturate(141%);
  background-color: #18346c;
  border-radius: 12px;
  border: 0px solid #18346c;
}
.features {
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.feature.show {
  opacity: 1;
  transform: translateX(0);
}

.features-wrapper {
  background: #18346c;
  padding: 10px 10px;
  display: relative;
}

.feature {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  transition: all 0.3s ease-in-out;
}

.feature img {
  width: 60px !important;
  height: 60px !important;
  margin-bottom: -10px;
}

.feature h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: -10px;
  color: White;
}

.feature p {
  font-size: 1rem;
  color: #f0f0f0;
  max-width: 250px;
  line-height: 1.5;
  position: relative;
  margin-bottom: -20px;
}

.feature p::after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: white;
  position: absolute;
  bottom: -5px;
  left: 0;
  transition: width 0.3s ease-in-out;
}

.feature:hover p::after {
  width: 100%;
}

.features-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  padding: 40px;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .features-content {
    display: block;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature {
  text-align: center;
  padding: 15px;
}

.feature img {
  max-width: 50px;
}

.features-content img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.content-section {
  background: white;
  padding: 20px 0px;
  text-align: center;
}

.slider-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 40px;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider {
  width: 45%;
  margin: 40px;
  padding: 20px;
  position: relative;

  border-radius: 93% 7% 88% 12% / 11% 90% 10% 89%;

  background: #18346c;

  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  transition: border-radius 0.5s ease-in-out, transform 0.3s ease-in-out;
}

/* 🚀 Hover Interaction */
.slider:hover {
  border-radius: 80% 20% 85% 15% / 15% 85% 20% 80%;
  transform: scale(1.05);
  border-radius: 80% 20% 85% 15% / 15% 85% 20% 80%;
}

.slick-prev {
  left: -50px;
}

.slick-next {
  right: -50px;
}

.slick-prev:hover,
.slick-next:hover {
  background-color: #1c9ad6 !important;
  opacity: 1;
}

.text-content {
  width: 100%;
  max-width: 1000px;
  font-size: 1.5rem;
  text-align: left;
  padding: 0 20px 100px 0;
  margin-left: -300px;
}

.slider .slide {
  color: white;
  padding: 40px;
  font-size: 1.2rem;
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.slider .slide img {
  width: 100px;
  height: auto;
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slider .slick-dots {
  margin-top: 20px;
}

.comparison-table {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  margin-bottom: 60px;
}

.table-container {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  max-width: 1200px;
  width: 95%;
  text-align: center;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 20px 0;
  font-size: 18px;
  text-align: left;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

th {
  background-color: #18346c;
  color: white;
  font-weight: bold;
  padding: 15px;
  font-size: 20px;
  text-align: center;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

td:first-child {
  background-color: #2b4a8b;
  font-weight: bold;
  color: white;
  text-align: left;
  padding-left: 20px;
}

.brand-check {
  font-weight: bold;
  color: white;
  padding: 15px;
  text-align: center;
}

tbody tr:nth-child(odd) .brand-check {
  background: #18346c;
}

tbody tr:nth-child(even) .brand-check {
  background: #2b4a8b;
}

tbody tr:nth-child(even) td:first-child {
  background-color: #3d5a99;
}

tbody tr:hover {
  background: #eef3ff;
  transition: 0.3s ease-in-out;
}

tbody tr:last-child td:first-child {
  border-bottom-left-radius: 12px;
}

tbody tr:last-child td:last-child {
  border-bottom-right-radius: 12px;
}

@media (max-width: 768px) {
  th,
  td {
    font-size: 0.9rem;
    padding: 10px;
  }
}

.cta-section {
  background: #18346c;
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.cta-section p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.cta-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  max-width: 800px;
  margin: 0 auto;
}

.cta-form input {
  flex: 1 1 200px;
  padding: 10px;
  font-size: 1rem;
  border-radius: 5px;
  border: none;
  outline: none;
  max-width: 240px;
}

.cta-form button {
  background: #fcc226;
  color: #36414f;
  border: 2px solid #18346c;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}
.cta-form button:hover {
  background: rgba(74, 144, 226, 0.8);
  color: white;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .glass-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

.testimonial-section {
  background: #f0f0f0;
  padding: 70px 0;
  text-align: center;
  overflow: hidden;
}

.testimonial-slider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 150px;
  overflow: hidden;
}

.testimonial-slider .slide {
  width: 100%;
  position: absolute;
  opacity: 0;
  animation: slideAnimation 9s linear infinite;
}

.testimonial-slider .slide:nth-child(1) {
  animation-delay: 0s; /* Start immediately */
}

.testimonial-slider .slide:nth-child(2) {
  animation-delay: 3s;
}

.testimonial-slider .slide:nth-child(3) {
  animation-delay: 6s;
}

@keyframes slideAnimation {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  10% {
    opacity: 1;
    transform: translateY(0);
  }
  30% {
    opacity: 1;
    transform: translateY(0);
  }
  40% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
  }
}

.testimonial-slider blockquote {
  font-size: 1.5rem;
  font-style: italic;
  margin: 0;
  line-height: 1.6;
}

.testimonial-slider .author {
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 15px;
}
/* Terms */
:root {
  --bg-color: White;
  --text-color: #333;
  --heading-color: #1a1a1a;
  --link-color: #0066cc;
  --section-bg: #ffffff;
  --border-color: #e0e0e0;
}

.terms-of-service {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  line-height: 1.6;
  background-color: var(--bg-color);
  color: var(--text-color);
}

.terms-of-service__header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border-color);
}

.terms-of-service__title {
  color: var(--heading-color);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.terms-of-service__last-updated {
  color: #666;
  font-size: 0.9rem;
}

.terms-of-service__section {
  background-color: var(--section-bg);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.terms-of-service__section-title {
  color: var(--heading-color);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
}

.terms-of-service__content {
  margin-bottom: 1rem;
}

.terms-of-service__list {
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.terms-of-service__list-item {
  margin-bottom: 0.5rem;
}

.terms-of-service__link {
  color: var(--link-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.terms-of-service__link:hover {
  text-decoration: underline;
}

@media screen and (max-width: 600px) {
  .terms-of-service {
    padding: 1rem;
    padding-top: 5rem;
  }

  .terms-of-service__title {
    font-size: 2rem;
  }

  .terms-of-service__section {
    padding: 1rem;
  }
}

.about-hero {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.full-width-banner {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: 100% 10%;
}

.about-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.5;
}

.about {
  padding-top: 20px !important;
  padding-bottom: 30px !important;
  padding-left: 5px !important;
  padding-right: 5px !important;
}
.team-section {
  padding: 10px 60px 60px;
  text-align: center;
  background-color: #f0f0f0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: auto;
}

.team-member {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.team-member img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.team-section h2 {
  color: #1e2a4a;
  padding: 20px;
}

.team {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.team-member {
  background-color: #1e2a4a;
  padding: 20px;
  border-radius: 10px;
  width: 250px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out;
}

.team-member:hover {
  transform: scale(1.05);
}

.team-member img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.team-member h3 {
  font-size: 1.2rem;
  color: #ffd700;
  margin-top: 10px;
}

.team-member p {
  font-size: 0.9rem;
  color: #f0f0f0;
}
/* List */

.custom-bullets {
  list-style-type: none;
  padding-left: 20px;
}

.custom-bullets li:before {
  content: "→";
  padding-right: 8px;
  color: #18346c;
}
.spaced-list li {
  margin-bottom: 10px;
}
.colored-list {
  color: #18346c;
}

footer {
  background: #36414f;
  color: #ffffff;
  padding: 10px 0;
  text-align: center;
}

footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 1200px;
  margin: auto;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  padding: 25px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: white;
  text-decoration: none;
}

.footer-column h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.footer-column p {
  font-size: 1rem;
}

.copyright {
  margin-top: 0px;
  font-size: 0.9rem;
  color: white;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-links a {
  text-decoration: none;
  font-size: 1.5rem;
  color: #ffffff;
}
.about {
  padding: 80px 10%;
  background: #18346c;
  text-align: center;
}

.about h2 {
  font-size: 38px;
  color: #ffffff;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-weight: bold;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 900px;
  margin: auto;
}

.about-content div {
  padding: 30px;
  background: #18346c;
  border-radius: 12px;

  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  text-align: left;
}

.about-content h3 {
  color: #18346c;
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: bold;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #ffffff;
}

@media screen and (max-width: 992px) {
  .about h2 {
    font-size: 32px;
  }

  .about-content {
    max-width: 100%;
  }
  #about_us_image {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .about-hero {
    margin-top: 80px;
  }

  #about_us_image {
    height: 150px;
  }
}
.burger-menu {
  display: none;
}

@media screen and (max-width: 768px) {
  .btnleft {
    display: none;
  }
  .burger-menu {
    display: block !important ;
  }
  .header-container {
    flex-direction: column;
    height: auto;
    padding: 10px;
  }

  header nav ul {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 10px 0;
  }

  .button-glass {
    width: 100%;
    margin: 10px 4px;
  }

  .hero-content {
    max-width: 90%;
    padding: 15px;
  }

  .hero-content h2 {
    font-size: 1.8em;
  }

  .hero-content h3 {
    font-size: 1.2em;
  }

  .hero-content p {
    font-size: 1em;
  }

  .features-content {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }

  .feature {
    padding: 15px;
  }

  .slider-container {
    flex-direction: column;
    padding: 20px 5px;
  }

  .slider {
    width: 90%;
    margin: 20px auto;
  }

  .text-content {
    width: 90%;
    margin: 0 auto;
    padding: 20px;
    font-size: 1.2rem;
  }

  .table-container {
    padding: 15px;
  }

  table {
    font-size: 14px;
  }

  th,
  td {
    padding: 8px;
  }

  .cta-form {
    flex-direction: column;
    align-items: center;
  }

  .cta-form input,
  .cta-form button {
    width: 90%;
    max-width: none;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .team-section {
    padding: 30px 20px;
  }

  .footer-column {
    flex: 100%;
    text-align: center;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .features-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .slider {
    width: 60%;
  }

  .text-content {
    font-size: 1.3rem;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-container {
    padding: 0 15px;
  }

  header nav ul {
    gap: 15px;
  }

  .hero-content {
    max-width: 80%;
  }

  .cta-form input {
    flex: 1 1 150px;
  }
}

img {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 480px) {
  body {
    font-size: 14px;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }
}
.inputText {
  width: 300px;
  height: 30px;
  border-radius: 10px solid #cccccc;
}
.btnText {
  height: 50px;
}
