@charset "UTF-8";
.herowrapper .hero-title {
  position: relative;
}
html, body, main, .hero.with-background {
  background: var(--color-background);
}
.content {
  margin-bottom: 300px !important;
}
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: var(--color-background);
}
header {
  background-color: #0F1423;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}
header .logo {
  height: 50px;
  margin: auto;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
nav a {
  color: white;
  text-decoration: none;
}
.hero {
  background: #0F1423;
  color: white;
  text-align: center;
  padding: 150px 20px;
}
.parallax {
  background: url("https://assetcloudstore.com/content/brainsite/background.jpeg") no-repeat fixed center;
  background-size: cover;
  padding: 100px 20px;
  text-align: center;
  color: white;
  position: relative;
}
footer {
  background-color: var(--color-primary);
  color: white;
  text-align: center;
  padding: 1rem;
}
.learn-more-btn {
  background-color: var(--color-accent);
  color: white;
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.learn-more-btn:hover {
  background-color: #1C7C3C;
  /* A darker shade of accent color for hover effect */
}
.services-section {
  background-color: var(--color-background);
  color: var(--color-secondary);
  padding: 50px 20px;
}
.services-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0;
  flex-wrap: wrap;
  gap: 20px;
}
.services-content img {
  max-width: 100%;
  border-radius: 8px;
  flex: 1;
}
.service-text {
  max-width: 500px;
  flex: 1;
  text-align: left;
}
@media (max-width: 768px) {
  .services-content {
    flex-direction: column;
  }
  .service-text {
    text-align: center;
  }
}
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.with-background {
  position: relative;
  /* background-size: cover; */
  /* background-attachment: fixed; */
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}
.plx {
  position: absolute;
  top: 0;
  /* bottom: 0; */
  width: 100%;
  left: 0;
  /* right: 0; */
  height: 100%;
  overflow: hidden;
  object-fit: cover;
}
.plx::before {
  content: "";
  position: absolute;
  height: 50px;
  width: 100%;
  bottom: 0;
  left: 0;
  display: block;
  background: linear-gradient(to top, #f7fafc, transparent);
  z-index: 99;
}
.services-section {
  background-image: url("https://assetcloudstore.com/content/brainsite/2webp.webp");
  /* Placeholder URL */
}
#about {
  /*background-image: url('../assets/3.webp'); /* Placeholder URL */
}
.overlay-text {
  padding: 30px;
  border-radius: 10px;
  max-width: 800px;
  z-index: 99;
}
.overlay-text p, .overlay-text button {
  display: none;
}
.overlay-text h1 {
  color: white;
  display: inline;
}
.learn-more-btn {
  background-color: var(--color-accent);
  color: white;
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}
.learn-more-btn:hover {
  background-color: #1C7C3C;
}
.divider {
  height: 3px;
  background: linear-gradient(to right, var(--color-primary), var(--color-accent), var(--color-secondary));
  margin: 0;
}
.services-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}
.service-text {
  max-width: 300px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--color-secondary);
  padding: 20px;
  border-radius: 8px;
}
section.extra {
  height: 1000px;
  background: #0F1423;
}
.grid:has(.streaming-container) {
  grid-template-rows: repeat(1, 100%);
  overflow: hidden;
}
.grid:has(.streaming-container) .grid-item {
  height: 100%;
  overflow: hidden;
}
.grid:has(.vertical-left) {
  overflow: hidden;
}
.grid:has(.vertical-left) .grid-item {
  height: 100%;
  overflow: hidden;
}
.grid:has(.aigen) {
  overflow: hidden;
}
.grid:has(.aigen) .grid-item {
  height: 100%;
  overflow: hidden;
}
.content-section {
  /* width: 100%; */
  height: 100%;
  /* margin-top: 5rem; */
  /* overflow: hidden; */
  position: relative;
  /* padding: 0 48px; */
}
main.main-content {
  position: relative;
}
.content-section .content-page {
  /* width: 100%; */
  /* height: calc(100%); */
  top: 0;
  position: absolute;
  overflow-y: auto;
  /* overflow-x: hidden; */
  margin: 0;
  /* display: block; */
  /* box-sizing: border-box; */
  /* vertical-align: middle; */
  padding: 1.25rem 4rem;
  left: 0;
  bottom: 0;
  right: 0;
}
/* styles.scss */
/* Variables */
/* Mixins */
/* General Styles */
body, html {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  color: #333;
  background-color: #f7fafc;
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
}
.card.w-25 {
  width: 25%;
}
header, footer {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-family: "Poppins", sans-serif;
  width: auto;
}
footer {
  padding: 1rem;
  background-color: var(--color-secondary);
}
.navbar {
  background-color: #4A5568;
  padding: 0.5rem 2rem;
}
.navbar ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  justify-content: flex-start;
}
.navbar li {
  margin-right: 1rem;
}
.navbar a {
  text-decoration: none;
  color: #FFFFFF;
  transition: color 0.3s;
}
.navbar a:hover {
  color: #22C55E;
}
h1, h2, h3, h4 {
  font-family: "Poppins", sans-serif;
  color: var(--color-text);
}
p, ul, li {
  line-height: 1.5;
  margin-bottom: 1rem;
}
/* Button Styles */
.cta-button {
  background-color: #22C55E;
  color: white;
  padding: 1rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
}
.cta-button:hover {
  background-color: #1a9a49;
}
.secondary-button {
  background-color: #4A5568;
  color: white;
  padding: 1rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
}
.secondary-button:hover {
  background-color: #353d4a;
}
.disabled-button {
  background-color: #CCCCCC;
  color: #666666;
  padding: 1rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  cursor: not-allowed;
}
/* Form Styles */
form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}
input[type="text"], input[type="email"], select, textarea {
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid #4A5568;
  font-size: 1rem;
  margin-bottom: 1rem;
}
textarea {
  resize: vertical;
}
/* Table Styles */
table {
  width: 90%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}
table th, table td {
  padding: 1rem;
  border: 1px solid #4A5568;
  text-align: left;
}
table th {
  background-color: #1E3A5F;
  color: white;
}
/* Card Styles */
.card, .inner-card {
  background-color: white;
  border: 1px solid #1E3A5F;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}
/* Alert Styles */
.alert {
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  font-weight: bold;
}
.alert-success {
  background-color: #bff4d3;
  color: #22C55E;
}
.alert-warning {
  background-color: #b4bcca;
  color: #20242c;
}
.alert-error {
  background-color: #F8D7DA;
  color: #721C24;
}
.alert-info {
  background-color: #759ed4;
  color: #1E3A5F;
}
/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  padding-top: 60px;
}
.modal-content {
  background-color: #FFFFFF;
  margin: 5% auto;
  padding: 2rem;
  border: 1px solid #4A5568;
  width: 90%;
  border-radius: 0.5rem;
  max-width: 500px;
  position: relative;
}
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
.close:hover, .close:focus {
  color: #000;
  text-decoration: none;
}
/* Scrollbar Styles */
::-webkit-scrollbar {
  width: 0.5rem;
}
::-webkit-scrollbar-thumb {
  background-color: var(--color-primary);
  border-radius: 0;
}
::-webkit-scrollbar-track {
  display: none;
  width: 0;
}
/* Responsive Media Queries */
@media (max-width: 768px) {
  .flex {
    flex-direction: column;
  }
  main {
    padding: 1rem;
  }
  header, footer, nav {
    flex-direction: column;
    text-align: center;
  }
  .modal-content {
    width: 95%;
  }
}
/* Global Styles */
* {
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--color-background);
}
.hero {
  position: relative;
  height: 105vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: visible;
  --mask-image-content: linear-gradient(
        to bottom,
        transparent,
        black 42px,
        black calc(100% - 49px),
        transparent
    );
}
.with-background {
  background: #0F1423;
}
.plx {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  mask-image: linear-gradient(to bottom, transparent, #f7fafc 0px, #f7fafc calc(100% - 10rem), transparent);
}
.overlay-text {
  padding: 30px;
  border-radius: 10px;
  max-width: 1000px;
  z-index: 1;
  /* Ensure it sits above the background image */
  /* display: flex; */
  position: relative;
}
.hero-title {
  font-size: 6rem;
}
main {
  position: relative;
}
html, body {
  height: 100%;
}
/* Divider Styling */
.divider {
  height: 3px;
  background: linear-gradient(to right, var(--color-primary), var(--color-accent), var(--color-secondary));
  margin: 0;
}
/* Extra Section Styling */
.extra {
  min-height: 10000px;
  color: white;
  padding: 50px 20px;
}
.content {
  max-width: 1000px;
  margin: auto;
}
/* Footer Styling */
footer {
  background-color: var(--color-primary);
  color: white;
  text-align: center;
  padding: 1rem;
}
/* Fixed Header Styling */
.fixed-header {
  width: 100%;
  margin: 0;
  /* Semi-transparent background */
}
/* Adjustments for Fixed Header */
.fixed-header.scale-down {
  transform: translateX(-50%) scale(0.8);
  font-size: 1.2rem;
}
.overlay-text:has(.fixed-header) {
  padding: 0;
  position: relative;
  width: 100%;
  display: contents;
  justify-content: center;
  margin: auto;
}
.herowrapper:has(.fixed-header) {
  max-width: unset;
  position: fixed;
  transition: all 0.1s ease;
  top: 0;
  background: var(--color-primary);
  z-index: 9999;
  left: 0;
  width: 100%;
  /* padding: 10px 20px; */
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
/* Responsive Styles 
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .fixed-header {
    font-size: 1.2rem;
    padding: 8px 16px;
  }
  .fixed-header.scale-down {
    transform: translateX(-50%) scale(0.7);
    font-size: 1rem;
  }
}*/
.hero.fixed {
  padding-top: 60px;
  /* Adjust based on fixed header height */
}
/*******************************************************************/
/* ftrtch dino */
/* [type: CSS] [file:template-main] [11.81] DESIGN*/
/*******************************************************************/
/* 0.1 D>D */
/* db 88 */
/*******************************************************************/
/* ftrtch dino */
/* [type: CSS] [file:template-main] [11.81] DESIGN*/
/*******************************************************************/
/* 0.1 D>D */
/* db 86 */
.background-container {
  position: absolute;
  /* Changed from fixed to absolute */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  /* Ensure background doesn’t interfere with user interactions */
  overflow: hidden;
  z-index: 1;
  /* Place behind all other content */
}
.background-shape {
  position: absolute;
  width: 200px;
  /* Adjust size as needed */
  height: 200px;
  opacity: 0.2;
  /* Subtle visibility */
  will-change: transform;
}
.shape-hexagon {
  top: 20%;
  left: 15%;
}
.shape-circle {
  top: 60%;
  left: 70%;
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .background-shape {
    width: 150px;
    height: 150px;
  }
}
/*******************************************************************/
/* ftrtch dino */
/* [type: CSS] [file:template-main] [11.81] DESIGN*/
/*******************************************************************/
/* 0.1 D>D */
/* db 132 */
/*******************************************************************/
/* ftrtch dino */
/* [type: CSS] [file:template-main] [11.81] DESIGN*/
/*******************************************************************/
/* 0.1 D>D */
/* db 154 */
/*******************************************************************/
/* ftrtch dino */
/* [type: CSS] [file:template-main] [11.81] DESIGN*/
/*******************************************************************/
/* 0.1 D>D */
/* db 194 */
/*******************************************************************/
/* ftrtch dino */
/* [type: CSS] [file:template-main] [11.81] DESIGN*/
/*******************************************************************/
/* 0.1 D>D */
/* db 183 */
/*******************************************************************/
/* ftrtch dino */
/* [type: CSS] [file:template-main] [11.81] DESIGN*/
/*******************************************************************/
/* 0.1 D>D */
/* db 126 */

/*******************************************************************/
/* ftrtch dino */
/* [type: CSS] [file:template-main] [11.943] DESIGN*/
/*******************************************************************/
/* 0.3 P>P */
/* db 65 */