.logo-parent {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background-color: white;
  border-radius: 50%;
  padding: 30px;  /* reduced from 30px */
  width: 160px;   /* reduced from 200px */
  height: 160px;  /* reduced from 200px */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  overflow: hidden; /* crop image to circle */
}

.line-something {
        display: flex;
        width: 100%;
        height: 8px; /* You can adjust thickness */
    }

    .line-something > div {
        flex: 1;
    }

    .line-blue {
        background-color: #1109b4; /* Bootstrap blue */
    }

    .line-brown {
        background-color: #8b0807; /* SaddleBrown */
    }

    .line-yellow {
        background-color: #f5d917; /* Gold */
    }

.topic{
    color: #1109b4;
    font-weight: 900;
    font-size: 60px;
}

.team-card {
        border: none;
        background: transparent;
        text-align: center;
    }

    .team-img-wrapper {
        width: 150px;
        height: 150px;
        margin: 0 auto 0.5rem;
        border-radius: 50%;
        overflow: hidden;
        position: relative;
        box-shadow: inset -4px 4px 10px rgba(0, 0, 0, 0.2);
    }

    .team-img-wrapper img,
    .team-img-wrapper svg {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .team-name {
        color: #000000; /* Bootstrap gray */
        margin-bottom: 0.2rem;
        font-weight: 700;
    }

    .team-surname {
        color: #6c757d;
        text-transform: uppercase;
        font-size: 0.9rem;
        margin-bottom: 0.2rem;
        font-weight: 500;
    }

    .team-position {
        color: #8b0807; /* Bootstrap blue */
        font-size: 0.85rem;
        width: 100%;
        text-align: center;
    }

    .team-title{
        color: #1109b4;
        font-weight: 700;
        font-size: 20px;
        text-align: center;
    }

    .paragraph-text-1{
        width: 90%;
		font-size:18px;
    }

    @media (max-width: 768px) {
        .paragraph-text-1 {
            width: 95%;
        }
    }
	
	.hero-container {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  border-radius: 60px;
}

.hero-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  border-radius: 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-content > .col-12,
.hero-content > .col-md-6 {
  height: 100%; /* ensure column inherits height */
  display: flex;
  align-items: center; /* vertical centering within column */
}

.content-box {
  background: linear-gradient(to bottom right, #ffd124, #c82515, #003e92, #003e92, #003e92, #003e92);
  color: white;
  border-radius: 60px;
  width: 100%;
  height: 100%;
  padding: 5%;
}

.content-box-2 {
  background: linear-gradient(to bottom left, #ffd124, #ffd124, #ffd124, #ffd124, #ffa52e, #c82515, #1552c8);
  color: white;
  border-radius: 60px;
  width: 100%;
  height: 100%;
  padding: 5%;
}

.content-box-3 {
  background: linear-gradient(#fafafa);
  color: white;
  border-radius: 60px;
  width: 100%;
  height: 100%;
  padding: 5%;
  border: 4px solid #0400b7;
}

.button-link{
	
	padding:10px 30%;
	border-radius: 20px;
	text-decoration: none;
	color: #0400b7;
	font-weight: bold;
	
}
.full-width-button-container {
  width: 100%;
  display: flex;
  justify-content: center; /* centers the button horizontally */
  padding: 10px 0;
}

.space1{
	height: 10%;
}

.space2{
	height: 10%;
}

.space3{
	height: 15%;
}


    @media (max-width: 768px) {
      .content-box {
        background: linear-gradient(
  to bottom right,
  rgba(255, 209, 36, 0.8),   /* #ffd124 */
  rgba(200, 37, 21, 0.8),    /* #c82515 */
  rgba(0, 62, 146, 0.8),     /* #003e92 */
  rgba(0, 62, 146, 0.8),
  rgba(0, 62, 146, 0.8),
  rgba(0, 62, 146, 0.8)
);
        text-align: center;
      }
	  
	  .content-box-2 {
        background: linear-gradient(to bottom left,
  rgba(255, 209, 36, 0.8),
  rgba(255, 209, 36, 0.8),
  rgba(255, 209, 36, 0.8),
  rgba(255, 209, 36, 0.8),
  rgba(255, 165, 46, 0.8),
  rgba(200, 37, 21, 0.8),
  rgba(21, 82, 200, 0.8)
);
        text-align: center;
      }
	  
	  .content-box-3 {
        background-color: rgba(250, 250, 250, 0.8);
        text-align: center;
      }
	  
	  .hero-container {
  position: relative;
  width: 100%;
  min-height: 40vh; /* Only here */
  overflow: hidden;
}
    }