:root {
  --vh: 100vh; /* fallback */
}

* {
  box-sizing: border-box; /* includes padding/border in width calculation */
}
body,
html {
  font-family: "Open Sans", sans-serif;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  color: #777;
  font-weight: 400;
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
}

h2,
h3,
h4 {
  font-family: "Raleway", sans-serif;
}

h2 {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 36px;
  color: #333;
}

h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
}

h4 {
  font-size: 18px;
  color: #333;
  font-weight: 600;
}

h5 {
  text-transform: uppercase;
  font-weight: 700;
  line-height: 20px;
}

p {
  font-size: 15px;
}

p.intro {
  margin: 12px 0 0;
  line-height: 24px;
}

a {
  color: #00e1d2;
  font-weight: 400;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #00e1d2;
}

ul,
ol {
  list-style: none;
}

ul,
ol {
  padding: 0;
  webkit-padding: 0;
  moz-padding: 0;
}

/* Navigation */
#menu {
  padding: 10px;
  transition: all 0.8s;
}

#menu.navbar-default {
  background-color: #fff;
  border-color: rgba(231, 231, 231, 0);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

#menu a.navbar-brand {
  font-family: "Raleway", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #00e1d2;
  text-transform: uppercase;
}

#menu.navbar-default .navbar-nav>li>a {
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
  color: #555;
  font-size: 15px;
  font-weight: 400;
  padding: 8px 2px;
  border-radius: 0;
  margin: 9px 20px 0;
}

#menu.navbar-default .navbar-nav>li>a:after {
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #00e1d2 0%, #00e1d2 100%);
  content: "";
  transition: width 0.2s;
}

#menu.navbar-default .navbar-nav>li>a:hover:after {
  width: 100%;
}

.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:hover,
.navbar-default .navbar-nav>.active>a:focus {
  background-color: transparent;
}


.navbar-toggle {
  border-radius: 0;
  margin-top: 25px;
}

/* Default hamburger icon color */
.navbar-default .navbar-toggle .icon-bar {
  background-color: #00e1d2;
}

/* When hovered or focused */
.navbar-default .navbar-toggle:hover .icon-bar,
.navbar-default .navbar-toggle:focus .icon-bar {
  background-color: #008f87; /* slightly darker shade */
}

/* Optional: change the border color of the button too */
.navbar-default .navbar-toggle {
  border-color: #00e1d2;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: white; /* or transparent */
  border-color: #008f87;
}

/* Ensure logo fits and aligns */
.navbar-brand img {
  position: relative;
  max-height: 60px;
  /* adjust to match link height */
  width: auto;
  display: inline-block;
  vertical-align: middle;
  bottom: 10px;
  /* aligns with nav links */
}

/* Align nav links vertically */
.navbar-nav>li>a {
  line-height: 30px;
  /* match logo max-height */
  vertical-align: middle;
  padding-top: 0;
  padding-bottom: 0;
}

.navbar .about-desc{
  color: #00e1d2;
}

.navbar-default {
  min-height: 90px;
  /* ensure enough space for logo and links */
}

@media (max-width: 768px) {
  .navbar-default {
    min-height: 70px;
  }

  .navbar-brand img {
    max-height: 50px;
    width: auto;
    vertical-align: middle;
    position: relative;
    bottom: 15px;
  }

  .navbar-toggle {
    margin-top: 12px;
  }
}

@media (max-width: 480px) {

  /* Reduce overall navbar height */
  .navbar-default {
    min-height: 60px;
    padding: 5px 0;
  }

  /* Shrink and align logo properly */
  .navbar-brand img {
    max-height: 50px;
    /* smaller logo */
    width: auto;
    vertical-align: middle;
    position: relative;
    bottom: 15px;
  }

  /* Adjust navbar toggle (hamburger) button position */
  .navbar-toggle {
    margin-top: 10px;
    /* less vertical space */
    margin-right: 10px;
  }

  /* Adjust nav links when menu expands */
  #menu.navbar-default .navbar-nav>li>a {
    font-size: 14px;
    margin: 4px 20px;
    line-height: 32px;
  }
}

/* Header container */
.header {
  /* Important for overlay positioning */
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* center content vertically */
  align-items: center;
  padding-bottom: 40px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  overflow: hidden;
  /* ensures overlay doesn’t spill */
}

/* Ensure content appears above overlay */
.header-title,
.carousel-wrapper,
.custom-dots-wrapper {
  position: relative;
  z-index: 2;
}

/* Title */
.header-title {
  font-size: 3rem;
  text-align: center;
  font-weight: bold;
  margin: 80px 20px 20px 20px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-size: clamp(20px, 6vw, 32px);
  font-weight: 700;
  text-align: center;
  z-index: 5;
}

/* Carousel wrapper */
.carousel-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Carousel container */
.carousel-container {
  width: 60%;
  /* default width */
  max-width: 900px;
  background-color: #fff;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  transition: all 0.3s ease;
}

/* Each carousel card */
.carousel-card {
  display: flex !important;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  aspect-ratio: 11 / 9;
}

/* Carousel image styling */
.carousel-card img {
  width: auto;
  /* keep natural width */
  height: 100%;
  /* fill container height */
  object-fit: contain;
  border-radius: 4px;
  display: block;
  margin: 0 auto;
}

.custom-dots-wrapper {
  margin-top: 20px;
}

.custom-dots-wrapper .dots-style {
  height: 10px;
  width: 10px;
  display: "inline-block";
  margin: "0 6px";
  border-radius: "50%";
  cursor: "pointer";
  z-index: 3;
}

/* Container */
.get-app-button-container {
  display: flex;
  justify-content: center;
  /* Center horizontally */
  align-items: center;
  margin-top: 20px;
  width: 100%;
}

/* Button styling */
.get-app-button-container button {
  background-color: #00e1d2;
  color: #fff;
  border: 2px solid #00e1d2;
  padding: 10px 65px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 123, 255, 0.1);
}

/* Hover effect */
.get-app-button-container button:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .get-app-button-container button {
    padding: 10px 42px;
    font-size: 14px;
  }
}


/* Media Queries for Responsiveness */
@media (max-width: 1200px) {
  .header {
    padding-bottom: 30px;
  }

  .carousel-container {
    width: 70%;
  }

  .custom-dots-wrapper .dots-style {
    height: 10px;
    width: 10px;
    display: "inline-block";
    margin: "0 6px";
    border-radius: "50%";
    cursor: "pointer";
  }
}

@media (max-width: 700px) {
  .header {
    padding-bottom: 20px;
  }

  .carousel-container {
    width: 85%;
  }

  .get-app-button-container button {
    margin-top: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 60px;
    padding-right: 60px;
    font-size: 18px;
  }

  .custom-dots-wrapper .dots-style {
    height: 8px;
    width: 8px;
  }
}
 
@media (max-width: 480px) {
  .header {
    min-height: calc(var(--vh) * 0.9);
    padding-bottom: 2px;
  }

  .get-app-button-container {
    margin-top: 10px;
  }

  .carousel-container {
    width: 95%;
  }

  /* Each carousel card */
  .carousel-card {
    aspect-ratio: 8 / 9;
  }

  .header-title {
    font-size: clamp(20px, 6vw, 20px);
    margin-left: 30px;
  }

  .custom-dots-wrapper .dots-style {
    height: 6px;
    width: 6px;
  }

  .get-app-button-container button {
    margin-top: 10px;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 60px;
    padding-right: 60px;
    font-size: 18px;
  }
}

/* --- DOWNLOAD SECTION --- */
#download {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100dvh;
  background: rgb(228, 228, 228);
  box-sizing: border-box;
}

#download .container{
  margin-top: 55px;
}

#download h1 {
  font-size: clamp(20px, 2.5vw, 28px);
  /* scales smoothly */
  font-weight: 700;
  color: #333;
  margin: 20px 20px;
  text-align: center;
}

#download p {
  font-size: clamp(14px, 1.8vw, 16px);
  color: #555;
  margin-bottom: 5px;
  text-align: center;
}

#download img {
  max-width: clamp(100px, 15vw, 150px);
  margin: 20px auto;
  display: block;
  transition: transform 0.3s ease;
}

#download img:hover {
  transform: scale(1.05);
}

/* --- BUTTON --- */
.download-btn {
  display: inline-block;
  background: #188e03;
  color: #fff;
  padding: clamp(8px, 1.5vw, 12px) clamp(18px, 3vw, 28px);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(14px, 1.8vw, 16px);
  transition: background 0.3s ease, transform 0.3s ease;
}

/* Increase horizontal padding on small screens */
@media (max-width: 480px) {
  .download-btn {
    padding: clamp(8px, 1.5vw, 12px) clamp(52px, 6vw, 62px);
  }
}

.download-btn:hover {
  background: #197d08;
  transform: translateY(-2px);
}

/* --- LAYOUT --- */
#download .middle {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 5vw, 50px);
  padding: 100px 0 0 0;
  text-align: center;
}

#download .middle-text h1 {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 700;
  color: #333;
  margin: 0;
}

#download .middle-icon {
  font-size: clamp(20px, 3vw, 28px);
  color: #00e1d2;
  transition: transform 0.3s ease;
}

#download .middle-icon:hover {
  transform: scale(1.1);
}

/* --- SHOW/HIDE ELEMENTS --- */
.desktop-only {
  display: inline-block;
}

.mobile-only {
  display: none;
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 992px) {
  #download .col-md-5 {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  #download .middle {
    flex-direction: column;
    padding-top: 60px;
    gap: 20px;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: inline-block;
  }
}


/* Desktop/Mobile icon visibility */
.desktop-only {
  display: inline-block;
}

.mobile-only {
  display: none;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  #download .col-md-5 {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  #download h1 {
    font-size: 22px;
  }

  #download p {
    font-size: 14px;
  }

  #download img {
    max-width: 120px;
  }
}

/* Mobile: vertical layout for middle column */
@media (max-width: 992px) {
  #download .row {
    flex-direction: column;
    align-items: center;
  }

  #download .middle {
    flex-direction: column;
    /* vertical on mobile */
    gap: 15px;
    padding: 20px 0;
  }

  #download .middle-text {
    position: static;
    /* normal flow on mobile */
    transform: none;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: inline-block;
  }
}

@media (max-width: 680px) {
  #download h1 {
    font-size: 25px;
  }

  #download img {
    max-width: 100px;
  }

  #download .row {
    flex-direction: column;
    align-items: center;
  }

  #download .col-md-5 {
    margin-bottom: 20px;
  }

  #download h1 .pick-device-text{
    color: #0017CC;
  }

  #download .middle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(0px, 0vw, 10px);
    padding: 0 0 0 0;
    text-align: center;
  }

  #download .download-btn{
    width: 200px;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: inline-block;
  }
}

/* About Section */
#service {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100dvh;
  background: rgb(228, 228, 228);
  padding: 40px 20px;
  box-sizing: border-box;
}

#service h3 {
  font-size: 22px;
  margin: 0 0 20px;
}

#service .service-text {
  margin: 0 0;
}

#service h2 {
 text-align: center;
}

#service p{
  color: #000;
}

.steps-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
  padding: 5px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.steps-card {
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  flex: 1;
  max-width: 350px;
  min-width: 260px;
}

.steps-card h3 {
  text-align: center;
  margin-bottom: 20px;
}

.steps-view{
   min-width: max-content;
  }

.step-number {
  font-weight: bold;
  font-size: 16px;
}

#service .about-bullet-list{
  padding-left: 30px;
  color: #000;
  padding-bottom: 20px;
}

#service li{
 text-align: left;
 font-size: 15px;
}

/* MOBILE */
@media (max-width: 768px) {
  .steps-container {
    flex-direction: column;
    align-items: center;
  }

  .steps-view{
   min-width: max-content;
  }

  .steps-card {
    width: 90%;
    max-width: none;
  }
}

#about {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100dvh;
  padding: 40px 20px;
  box-sizing: border-box;
}

#about .service-desc {
  margin: 10px 10px 20px;
}

#about h2 {
  color: #000;
}

#about h4 {
  color: #000;
}


#about i.fa {
  font-size: 42px;
  width: 120px;
  height: 120px;
  padding: 40px 0;
  background: linear-gradient(to right, #87ece5 0%, #00e1d2 100%);
  border-radius: 50%;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.05);
}

#about h3 {
  font-weight: 500;
  padding: 5px 0;
  color: #000;
}

#about p {
  color: #000;
}

#about .about-desc {
  margin-bottom: 10px;
}

#about .about-bullet-list{
  padding-left: 30px;
  color: #000;
  padding-bottom: 20px;
}

#about li{
 text-align: left;
 font-size: 15px;
}




/* Section container */
#howto {
  display: flex;
  flex-direction: column; /* stack children vertically */
  justify-content: center; /* vertical centering */
  align-items: center;     /* horizontal centering */
  min-height: 100dvh;
  text-align: center;
}

.howto-container{
  padding: 40px 20px;
}

#howto h1 {
  display: flex;
  justify-content: center;
  color: #000;
}

#howto h4 {
  display: flex;
  color: #000;
  margin: 10px;
  align-self: flex-start;
  margin-bottom: 40px;
  font-size: 18px;
}

#howto h3 {
  color: #000;
}

/* Carousel wrapper */
.video-carousel-wrapper {
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.video-carousel-container {
  margin: 0 -2rem; /* negative margin to counteract parent padding */
  padding: 0 2rem; /* add it back for internal spacing */
  overflow: visible !important;
}

.carousel .slider-wrapper {
  overflow: visible !important; /* show peek of next card */
}

/* Custom Arrow Buttons */
.custom-arrow {
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  z-index: 10;
}

.custom-arrow i {
  color: white;
  font-size: 20px;
}

.custom-arrow:hover {
  background: rgba(0, 0, 0, 0.75);
  transform: scale(1.1);
}

.custom-arrow:active {
  transform: scale(0.95);
}

.video-carousel-card {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 10px;
}

.video-card {
  width: 100%;
  background: #fff;
  border-radius: 12px;
  border: 4px solid #ccc;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.video-thumb {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 120%; /* portrait card ratio */
}

.video-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(0,0,0,0.55);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.2s ease;
}

.play-btn i {
  font-size: 32px;
  color: white;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(0,0,0,0.75);
}

/* Dots */
.video-custom-dots-wrapper {
  margin-top: 20px;
  margin-bottom: 20px;
}

.dots-style {
  width: 10px;
  height: 10px;
  background: #aaa;
  display: inline-block;
  margin: 0 6px;
  border-radius: 50%;
  cursor: pointer;
}

.dots-style.active {
  background: #333;
}

/* Video Modal */
.video-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
  box-sizing: border-box;
  overflow-y: auto;
}

.video-modal-content {
  position: relative;
  width: 100%;
  max-width: 900px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-modal-player {
  width: 100%;
  max-height: 80vh;
  border-radius: 8px;
  object-fit: contain;
}

.video-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 28px;
  cursor: pointer;
  z-index: 10;
}

/* Responsive */
@media (max-width: 768px) {
  .video-carousel-wrapper {
    gap: 0;
    padding: 0 15px;
  }
  .custom-arrow {
    display: none;
  }
  .video-carousel-container {
    margin: 0 -1rem;
    padding: 0 1rem;
  }
  .video-carousel .slider-wrapper {
    overflow: hidden !important;
  }
  .video-carousel .slider {
    padding: 0 !important;
  }
  .video-carousel-card {
    margin: 0 8px;
  }
  .video-modal-content { max-width: 95%; padding: 15px; }
  .video-modal-player { max-height: 60vh; }
  #howto h3{
    font-size: 19px;
  }
  #howto h4 {
    margin: 10px;
    margin-bottom: 20px;
  }
  #howto h1 {
    font-size: 25px;
    padding-top: 50px;
  }
  .video-custom-dots-wrapper {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .play-btn { width: 55px; height: 55px; }
  .play-btn i { font-size: 26px; }
  .dots-style {
    width: 8px;
    height: 8px;
  }
}

@media (max-width: 480px) {
  .video-thumb { padding-bottom: 140%; }
  .video-modal-player { max-height: 50vh; }
  .play-btn { width: 48px; height: 48px; }
  .play-btn i { font-size: 22px; }
  #howto h1 {
    font-size: 25px;
    justify-content: flex-start;
    margin-left: 100px;
  }
  #howto h3{
    font-size: 17px;
  }
 .video-carousel-wrapper {
    padding: 0 10px;
  }
  .video-carousel-container {
    margin: 0;
    padding: 0;
    overflow: visible !important;
  }  
  .video-carousel-container .carousel .slider-wrapper {
    overflow: visible !important;
  }
  .video-carousel-container .carousel .slider {
    padding-right: 65px !important; /* Add some right padding */
  }
  .video-carousel-card {
    margin: 0 5px;
  }
  .video-custom-dots-wrapper {
    display: flex;
    margin-top: 30px;
    margin-left: 125px;
    margin-bottom: 30px;
  }
}

/* Contact Section */
#contact {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100dvh;
  padding: 40px 20px;
  box-sizing: border-box;
  background: linear-gradient(to right, #6c6c6c 0%, #acacac 100%);
  color: rgba(255, 255, 255, 0.75);
}

#contact .section-title {
  margin-bottom: 0px;
}

#contact .section-title p {
  font-size: 16px;
}

#contact h2 {
  color: #fff;
  margin-top: 10px;
  margin-bottom: 15px;
  padding-bottom: 15px;
}

#contact .section-title h2::after {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.3);
  height: 4px;
  width: 60px;
  bottom: 0;
  left: 30px;
}

#contact h3 {
  color: #fff;
  margin-top: 80px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  font-weight: 400;
}

#contact form {
  padding-top: 20px;
}

#contact .text-danger {
  color: #cc0033;
  text-align: left;
}

#contact .btn-custom {
  margin: 30px 0;
  background: transparent;
  border: 1px solid #fff;
  border-radius: 50px;
}

#contact .btn-custom:hover {
  color: #1f386e;
  background: #fff;
}

label {
  font-size: 12px;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  float: left;
}

#contact .form-control {
  display: block;
  width: 100%;
  padding: 6px 12px;
  font-size: 16px;
  line-height: 1.42857143;
  color: #444;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

#contact .form-control:focus {
  border-color: #999;
  outline: 0;
  -webkit-box-shadow: transparent;
  box-shadow: transparent;
}

.form-control::-webkit-input-placeholder {
  color: #777;
}

.form-control:-moz-placeholder {
  color: #777;
}

.form-control::-moz-placeholder {
  color: #777;
}

.form-control:-ms-input-placeholder {
  color: #777;
}

#contact .contact-item {
  margin: 20px 0;
}

#contact .contact-item span {
  color: rgba(255, 255, 255, 1);
  margin-bottom: 10px;
  display: block;
}

#contact .contact-item i.fa {
  margin-right: 10px;
}

#contact .social {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 50px;
  margin-top: 50px;
  text-align: center;
}

#contact .social ul li {
  display: inline-block;
  margin: 0 20px;
}

#contact .social i.fa {
  font-size: 22px;
  width: 48px;
  height: 48px;
  padding: 12px 0;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 50%;
  transition: all 0.3s;
}

#contact .social i.fa:hover {
  color: #608dfd;
  background: #fff;
}

.form-check {
  display: flex;
  align-items: center;
  /* Aligns items vertically in the center */
  margin-bottom: 10px;
  /* Space between radio buttons */
}

.form-check-input {
  margin-right: 10px;
  /* Space between radio button and label */
}

.form-check-label {
  margin-top: 10px;
}



/* Terms and Conditions button container */
.terms-button-container {
  display: flex;
  justify-content: flex-end;
  /* Right align */
  width: 100%;
  margin-top: 20px;
}

/* Make it look like a link, remove boxy appearance */
.terms-button {
  display: inline-flex;
  /* Inline so it doesn't take full width */
  align-items: center;
  background: none;
  /* Remove background */
  border: none;
  /* Remove border */
  padding: 0;
  /* Remove padding */
  margin: 0;
  /* Underline for link style */
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
}

.terms-button:hover {
  color: #0056b3;
  /* Darker on hover */
}

.terms-icon {
  font-size: 0.9rem;
  line-height: 1;
  margin-left: 4px;
}

@media (max-width: 768px) {
  #contact .container {
    padding-top: 100px;
  }
  .terms-button-container{
    padding-bottom: 50px;
  }
}

#tc {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100dvh;
  padding: 40px 20px;
  box-sizing: border-box;
  background: linear-gradient(to right, #e0e0e0 0%, #e0e0e0 100%);
}

#tc h1{
  color: #000;
  font-size: 16px;
}

#tc p{
  color: #000;
}

#tc .title-text{
  font-size: 20px;
  padding-top: 60px;
  padding-bottom: 40px;
}

#tc h2 {
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 15px;
  text-align: left;
  color: #000;
}

#tc .termsconditions-icon{
  justify-content: center;
  font-size: 24px;
  position: relative;
  top: 16px;
}

#tc p {
  line-height: 24px;
  margin: 30px 0;
}

#tc .company-name {
  padding-left: 100px;
}

#tc h3{
  font-family: 'Times New Roman';
  font-size: 18px;
}

#tc li {
  margin-bottom: 8px;
  padding-top: 10px;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.5;
  position: relative;
  color: #111827;
}

#tc li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.5em;
  width: 8px;
  height: 8px;
  background-color: #000; /* accent */
  border-radius: 50%;
  transform: translateY(-50%);
}

.scrollable {
  max-height: 800px;
  overflow-y: auto;
  overflow-x: hidden; /* hide horizontal line */
  padding: 10px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  #tc {
    padding: 20px 15px;
  }

  #tc .termsconditions-icon{
    top: 16px;
    font-size: 18px;
  }

  #tc .inner-title{
    font-size: 16px;
  }


  #tc .company-name {
    padding-left: 0;
    text-align: center;
  }
  #tc h1, #tc .title-text {
    font-size: 15px;
  }
  #tc h2 {
    font-size: 14px;
  }

  #tc p{
    font-size: 14px;
  }
  #tc h3 {
    font-size: 14px;
  }
  #tc li {
    font-size: 14px;
    padding-left: 16px;
  }
  #tc li:before {
  width: 6px;
  height: 6px;
}
}