* {
  box-sizing: border-box;
}

@font-face {
  font-family: RubikLight;
  src: url(../../assets/fonts/Rubik-Light.ttf);
}
@font-face {
  font-family: RubigRegular;
  src: url(../../assets/fonts/Rubik-Regular.ttf);
}
@font-face {
  font-family: RubikMedium;
  src: url(../../assets/fonts/Rubik-Medium.ttf);
}
@font-face {
  font-family: RubikSemiBold;
  src: url(../../assets/fonts/Rubik-SemiBold.ttf);
}

html, body {
  height: 100%;
  margin: 0;
  font-family: RubigRegular, Arial, sans-serif;
  background-color: #37226d;
}

body {
  display: flex;
  justify-content: center;
  align-items: top;
  background: linear-gradient(
    to bottom,
    #2a3b88 0%,
    #2a3b88 10%,
    #37226d 95%,
    #37226d 100%
  );
  position: relative;
}

h2 {
  margin-top: 0;
  margin-bottom: 30px;
}
h2.main-title {
  margin-left: 20px;
}

h2, h3 {
  color: #fcd13c;
  text-align: center;
}

ul {
  text-align: left;
  padding: 0;
  margin: 0;
  padding-left: 12px;
}

.secondary {
  color: #fcd13c;
}

.bg-pattern {
  position: fixed;
  inset: 0;
  background: url('../../assets/images/background.png') repeat;
  opacity: 0.20;
  mix-blend-mode: overlay;
  pointer-events: none;
  animation: move-pattern 60s linear infinite;
  z-index: 0;
}
@keyframes move-pattern {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1000px -1000px; /* northeast movement */
  }
}

.gradiend-1 {
  /*background: radial-gradient(circle, #ffcc00, #ff6600);*/
  background: radial-gradient(circle, #f50100, #810000);
  background-blend-mode: overlay;
  border-radius: 20px;
}
.gradiend-2 {
  background: radial-gradient(circle, #0159e9, #0b1f81);
  border-radius: 20px;
}

.gradiend-3 {
  background: radial-gradient(circle, #ffcc00, #ff6600);
  /*border-radius: 50%;*/
  border-radius: 20px;
}

.usecase-image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;  
}
.usecase-image img {
  border-radius: 10px;
  height: 190px;  
  padding: 20px;
  position: relative; 
}


.container {
  color: rgba(255, 255, 255, 0.9);
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-radius: 12px;
  flex: 1;
  position: relative;
}

.menu {
  position: absolute;
  border-radius: 8px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  top: 30px; 
  left: 20px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.0);
  padding: 0;
}
  .menu .logo img {
    height: 60px;
    width: 60px;
    padding: 10px;
    padding-bottom: 0;
    padding-top: 5px;
  }
  .menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    padding-bottom: 20px;
    padding:0;
  }
  .menu ul li {
    font-size: 16px;
  }
    .menu ul li a {
      text-decoration: none;
      padding: 20px 20px;
      display: inline-block;
      width: 100%;
      color: #fff;
    }
    /*.menu:hover,*/ .show {
      background: rgba(38, 54, 124, 0.95);
      border: 1px solid rgba(255, 255, 255, 0.15);
    }    
      /*.menu:hover ul,*/ .show ul{
        display: flex;
        flex-direction: column;
      }
      /*.menu:hover ul li a:hover,*/ .show ul li a:hover {
        color: #fff;
        background: rgba(255, 255, 255, 0.08);
      }



.info {
  display: flex;
  flex-direction: row;
  gap: 20px;
  word-break: break-all;
  word-wrap: break-word;
  text-align: left;
}
.info img {
  height: 100px;
  border-radius: 10px;
}

/* General row style */
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.column {
  /*background-color: rgba(255, 255, 255, 0.05);*/
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  min-height: 100px;
  width: 100%;
}

row-1
/* Default (mobile): row-2 has 2 columns per row */
.row-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.row-2 .column {
  padding: 10px;
  text-align: center;
  flex: 1 1 100%; /* Default: 1 column on small screens */
  vertical-align: top;
  font-size: 14px;
  line-height: 1.5;
}
.row-2 .column p {
  text-align: left;
}


/* Inner row container inside a column */
.inner-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Inner columns default to 50% (mobile) */
.inner-column {
  padding: 10px;
  flex: 1 1 calc(50% - 10px);
  border-radius: 20px;
}


/* Medium screens: 2 columns */
@media (min-width: 768px) and (max-width: 1023px) {
  .row-2 .column {
    flex: 1 1 calc(50% - 10px); /* 2 columns */
  }
}

/* Tablet and up: inner columns go full width */
@media (min-width: 768px) {
  body {
    font-size: 16px;    
  }
  h2.main-title {
    margin-left: 0;
  }  
  .menu {
    left: 30px;
    border-radius: 8px;
  }
  .info img {
    height: 150px;
  }
  .inner-column {
    flex: 1 1 100%;
  }
}

/* Large screens: 3 columns */
@media (min-width: 1024px) {
  .row-2 .column {
    flex: 1 1;
    font-size: 13px;
  }
  .column {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
  }

}
