/* Common CSS for all pages */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&family=Karla:ital,wght@0,200..800;1,200..800&family=Sue+Ellen+Francisco&display=swap");

/* Global styles (no media queries) */
body {
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    "Open Sans",
    "Helvetica Neue",
    sans-serif,
    /* only *then* your imported web font(s) */
    "Inter";
  margin: 0;
  padding: 0;
  background-color: #fafafa;
}

section {
  min-height: 500px;
  margin-top: 80px;
}

.container {
  position: relative;
}

p {
  font-size: clamp(1.1rem, 1.4vw, 1.2rem);
  line-height: 1.4;
}

h1, h2, h3, h4, h5, h6 {
  /* 1) system-ui maps to the platform UI font (San Francisco on macOS) */
  /* 2) -apple-system & BlinkMacSystemFont for older Safari/Chrome */
  /* 3) then Windows, Linux UI fonts */
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    "Open Sans",
    "Helvetica Neue",
    sans-serif,
    /* only *then* your imported web font(s) */
    "Inter";
}

.red {
background-color: #FF0000 !important;
}

h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
}

h3 {
  font-size: clamp(1.8rem, 2.7vw, 2.5rem);
}

h3.Billy {
  font-family: "Sue Ellen Francisco", serif;
}

h4 {
  font-size: clamp(1.5rem, 2vw, 1.7rem);
  font-weight: 700;
}

sup {
  font-size: 45%;
  vertical-align: super;
  position: relative;
  top: 0px;
}

hr {
  color: #4f4f4f;
  margin: 20px 0;
}

.brand {
  font-family: "JetBrains Mono", monospace;
}

/* Primary elements */

.bg-primary {
background-color: #00A3FF !important;
}

.btn-primary {
  background: #00A3FF;
  color: white;
  padding: 10px 20px;
  border-radius: 7px;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: 3px solid #00A3FF;
}

.btn-primary:hover {
  background: transparent;
  color: #00A3FF;
  border: 3px solid #00A3FF;
}

.link-primary {
  color: #00A3FF !important;
  font-weight: 500;
  text-decoration: none;
}

.link-primary:hover {
  text-decoration: underline;
}

.link-primary:active {
  color: #00A3FF !important;
  text-decoration: underline;
}

/* Accordion */

/* Remove default borders and border-radius from the accordion button */
.accordion-button {
  border: none;
  border-radius: 0;
  box-shadow: none;
  font-size: 1.3rem;
  font-weight: 500;
}
/* Optional: Remove focus outline on the accordion button */
.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  font-weight: 400;
  margin: 5px auto 15px auto;
}

.accordion-button:not(.collapsed) {
  background-color: #e9ecef; /* Change to your desired color */
  color: #1f1f1f; /* Optionally adjust text color */
}

/* Hero */
.hero {
  background: linear-gradient(to right, #007bff, #00c6ff);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: (90vh-70px); /* Ensure full viewport minus navbar */
  padding-top: 60px; /* Push content below the navbar */
  width: 100%;
  position: relative;
}

.hero-img {
  max-width: 100%;
  height: auto;
  width: auto;
  max-height: 600px;
  animation: float 3s ease-in-out infinite;
}

.hero-img.move-up {
  margin-bottom: 40px;
  position: static; /* default, in flow */
  top: auto;
  right: auto;
}

/* .hero-img.move-up position in media screen */

.hero .btn {
  border: 3px solid white;
  color: white;
  background: transparent;
  border-radius: 7px;
  padding: 10px 30px;
  font-size: 1.2rem;
  transition: all 0.3s ease-in-out;
}

.hero .btn:hover {
  background: white;
  color: black;
}

/* Highlight circle */
.highlight {
  width: 10em;
  height: 10em;
  border-radius: 50%;
  background-color: #FF0004 !important;
  position: absolute;
  left: 5%;
  bottom: -50px;
  z-index: 10;
}

/* Hero frame animation */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1rem);
  }
  100% {
    transform: translateY(0);
  }
}

/* Coin animation */
@keyframes floatCoin {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(30px);
  }
  100% {
    transform: translateY(0);
  }
}

.hero-coin {
  width: 15% !important; /* Force coin to 80px */
  display: block; /* Ensure it's block-level */
}

.floating-coin {
  position: absolute;
  left: -10%; /* Overlap on the left side */
  bottom: 35%; /* Adjust vertical placement as needed */
  animation: floatCoin 5s ease-in-out infinite;
  z-index: 2; /* Bring it on top of other elements */
}

.hero-coin-2 {
  width: 12% !important; /* Force coin to 80px */
  display: block; /* Ensure it's block-level */
}

.floating-coin-2 {
  position: absolute;
  right: -10%; /* Overlap on the left side */
  top: -40%; /* Adjust vertical placement as needed */
  animation: floatCoin 4s ease-in-out infinite;
  z-index: 2; /* Bring it on top of other elements */
}

/* Header */

.header {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}


/* Icon Square */
.icon-square-div {
  width: 100%;
  max-width: 250px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  background: #333;
  border-radius: 45px;
  transition: transform 0.5s ease-in-out;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.icon-square-div:hover {
  transform: scale(1.07);
}

/* Features */
.square {
  /* aspect-ratio: 1 / 1; */
  min-height: 500px;
  border: 1px solid #ddd;
  background-color: #f3f3f3;
}

/* Positioning */
.position-relative {
  position: relative;
}

.fill-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background-color: #eee;
  border-radius: 0 0 10px 0;
  overflow: hidden;
}

.feature-icon {
  font-size: 3rem;
  color: #00A3FF;
}

/* AI Powered */
.side-fill {
  background-image: url('../img/ai-powered-app.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  right: 0;
  margin-right: -50vw;
  width: 49vw;
  height: 500px;
  border-radius: 20px 0 0 20px;
}


.builtforyou .btn {
  color: #ffffff;
  background: #00A3FF;
  border-radius: 7px;
  padding: 12px 24px;
  font-size: 1.3rem;
  transition: all 0.3s ease-in-out;
  font-weight: 500;
  border: 3px solid #00A3FF;
}

.builtforyou .btn:hover {
  background: white;
  color: #00A3FF;
  border: 3px solid #00A3FF;
}

/* Testimonial */
.testimonial {
  background: #fefefe;
  padding: 50px 0;
  display: flex;
  align-items: center;
}


/* Media Queries */
/* --- Min-width Media Queries --- */
/* Mobile */
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
  
}
/* Tablet */
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
  .hero-img.move-up {
    position: relative;
    top: -100px;
    right: -100px;
    margin-bottom: 0; 
  }
  section {
  padding:80px 0;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  .hero-img.move-up {
  position: relative;
  top: -100px;
  right: -100px;
}
}

/* --- Max-width Media Queries --- */

@media (max-width: 1200px) {
  .fill-bottom {
    height: 55%;
  }
}

@media (max-width: 992px) {
  section {
  padding-top: 20px;
  }
}

@media (max-width: 768px) {
  .icon-square-div {
    margin-top: 60px;
  }
  .side-fill {  
    width: 100%;
  }

@media (max-width: 576px) {
  .table-responsive table {
    font-size: 0.85rem !important;
  }
  .table-responsive th, 
  .table-responsive td {
    padding: 0.5rem;
  }
h1 {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(1.9rem, 5vw, 3.5rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 500;
}

h3.Billy {
  font-family: "Sue Ellen Francisco", serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

h4 {
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 700;
}
    }}