 * {
      padding: 0;
      margin: 0;
      box-sizing: border-box;
    }


:root,
[data-bs-theme="default-theme"] {
  /* BS Main Colors */
  --bs-primary: hsl(0, 0%, 100%);
  --bs-secondary: #001D38;

  /* Background Color for the backmost level */
  --theme-backdrop-bg: #00000000;

  /* Default Background-Color and Color */
  --bs-body-bg: #00000000;
  --bs-body-color: #00000000;
  
  /* Theme Classes */
  --theme-page-main-bg: var(--bs-body-bg);
  --theme-breadcrumb-bg: var(--theme-page-main-bg);
  --theme-nav-bg: #fff;

  /* Override Link-Colors */
  --bs-nav-link-color: var(--bs-primary);
  --bs-link-color: var(--bs-primary);
  --bs-link-hover-color: var(--bs-body-color);

  /* Font Setting */
  --bs-font-sans-serif: "DM Sans", system-ui, -apple-system, "Segoe UI", "Roboto", "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
 
  /* Border Radius 
  --bs-border-radius: 0.375rem;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-xxl: 2rem;
  */

  /*Shadows
  --bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  --bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  */
  
  /* Main Button-Colors */
  .btn-primary {
    --bs-btn-color: var(--bs-white);
    --bs-btn-bg: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);
    
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: color-mix(in srgb, var(--bs-primary) 15%, #000);
    --bs-btn-hover-border-color: color-mix(in srgb, var(--bs-primary) 15%, #000);
    
    --bs-btn-active-color: var(--bs-white);
    --bs-btn-active-bg: color-mix(in srgb, var(--bs-primary) 15%, #000);
    --bs-btn-active-border-color: color-mix(in srgb, var(--bs-primary) 15%, #000);
    
    --bs-btn-disabled-color: var(--bs-white);
    --bs-btn-disabled-bg: var(--bs-primary);
    --bs-btn-disabled-border-color: var(--bs-primary);    
  }

  .btn-outline-primary {
    --bs-btn-color: var(--bs-primary);
    --bs-btn-bg: var(--bs-white);
    --bs-btn-border-color: var(--bs-primary);
    
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: var(--bs-primary);
    --bs-btn-hover-border-color: var(--bs-primary);

    --bs-btn-active-color: var(--bs-white);
    --bs-btn-active-bg: var(--bs-primary);
    --bs-btn-active-border-color: var(--bs-primary);

    --bs-btn-disabled-color: var(--bs-primary);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--bs-primary);
  }  

  .btn-secondary {
    --bs-btn-color: var(--bs-white);
    --bs-btn-bg: var(--bs-secondary);
    --bs-btn-border-color: var(--bs-secondary);

    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: color-mix(in srgb, var(--bs-secondary) 15%, #000);
    --bs-btn-hover-border-color: color-mix(in srgb, var(--bs-secondary) 15%, #000);
    
    --bs-btn-active-color: var(--bs-white);
    --bs-btn-active-bg: color-mix(in srgb, var(--bs-secondary) 15%, #000);
    --bs-btn-active-border-color: color-mix(in srgb, var(--bs-secondary) 15%, #000);
    
    --bs-btn-disabled-color: var(--bs-white);
    --bs-btn-disabled-bg: var(--bs-secondary);
    --bs-btn-disabled-border-color: var(--bs-secondary);    
  }

  .btn-outline-secondary {
    --bs-btn-color: var(--bs-secondary);
    --bs-btn-border-color: var(--bs-secondary);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--bs-secondary);
    --bs-btn-hover-border-color: var(--bs-secondary);
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--bs-secondary);
    --bs-btn-active-border-color: var(--bs-secondary);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--bs-secondary);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--bs-secondary);
    --bs-gradient: none;
  }

  .footer {
    --bs-link-color: var(--bs-white);
    --bs-link-hover-color: var(--bs-body-color);
  }
    
  .navbar-nav {
    --bs-nav-link-color: var(--bs-body-color); 
    --bs-nav-link-hover-color: var(--bs-primary);
    --bs-navbar-active-color: var(--bs-primary);
  }

  .table {
    --bs-table-bg: var(--bs-white);    
  }  
}






  @keyframes rotate {
    from {
      rotate: 0deg;
    }
    
    50% {
      scale: 1 1.5;
    }
    
    to {
      rotate: 360deg;
    }
  }
    #blob {
    background-color: white;
    height: 34vmax;
    aspect-ratio: 1;
    position: absolute;
    left: 50%;
    top: 50%;
    translate: -70% -70%;
    border-radius: 50%;
    background: linear-gradient(to right, rgb(90, 229, 190), rgb(255, 168, 122));

    animation: rotate 20s infinite;
    opacity: 0.8;
  }
  




.website__content {
    z-index: 20;
}


/* Header Navigation */



.header__wrapper {
    display: flex;
    align-items: center;
    padding: 20px;
    position: sticky;
    color: white;
    z-index: 3;

    background-color: #0000007f;
    backdrop-filter: blur(12vmax);

}

.header__logo {
    font-family: "MuseoModerno", sans-serif;
    font-size: 30px;
    font-weight: 600;
    padding-left: 20px;
    z-index: 3;
    color: white;
}

.header__logo a {
  text-decoration: none;
  color: white;
}
.header__logo a:hover {
  color: rgb(255, 255, 255);
}
.header__nav {
    display: flex;
    list-style: none;
    gap: 2vw;
    z-index: 3;
    padding: 0;
    margin-left: auto; /* ← Moves it all the way to the right */

}

.header__nav-item a {
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-weight: 200;
    text-decoration: none;
    color: white;

    background: linear-gradient(to right, #ffa13c 50%, white 50%);
    background-size: 200% 100%;
    background-position: 100% 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 0.3s ease-in-out;
}

.header__nav-item a:hover {
    background-position: 0 0;
}




.theme-page-main {
    width: 100vw;
    height: 100vh;
    overflow-x: hidden ;
}

  #blur {
    height: 100vh;
    width: 100vw;

    left: -0px;
    z-index: 2;
    backdrop-filter: blur(12vmax);
    position: absolute;
  }



/* test */

    /* Ensure the main section takes up the viewport */
    .homeHero_text {
        display: flex;
        flex-direction: column;
        justify-content: top;
        align-items: center;
        text-align: center;

        height: 130vh;
        width: 100%;
        padding: 0px;
        z-index: 5;
    }

    /* Styling for elements inside */
    .homeHero_text h2 {
        font-size: 2.5rem;
        margin-bottom: 10px;
        z-index: 2;
        font-family: "MuseoModerno", sans-serif;
        color: rgba(255, 255, 255, 0.462);



    }

    .homeHero_text p {
        font-size: 1.2rem;
        color: #ffffff82;
        max-width: 600px;
        z-index: 3;
        font-family: "Roboto", sans-serif;


    }

    .homeHero_text a {
        text-decoration: none;
        font-weight: 500;
        color: #0c0c0c;
        z-index: 3;
        background-color: #e7d2a3;
        padding: 15px;
        border-radius: 50px;


        font-family: "Roboto", sans-serif;
    }
    .homeHero_text a:hover {
        color:  #e7d2a3;
        background-color: #0c0c0c;

    
    }



    .main_content2 {
        z-index: 3;
        height: 70vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }



/* popup */
.popup {
    position: fixed;
    top: 7vh;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    z-index: 1000;
}

.popup__content {
    background: rgba(126, 126, 126, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 6px;
    border-radius: 40px;
    text-align: center;
    color: white;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    transition: transform 0.3s ease;

}

.popup__content:hover {
    animation: shakeConfetti 2s ease-in-out infinite;
}

.popup__content p {
  margin-top: auto;
  margin-bottom: auto;

  padding: 6px;
}
@keyframes shakeConfetti {
    0%   { transform: translate(0, 0) rotate(0deg); }
    10%  { transform: translate(-2px, -1px) rotate(-1deg); }
    20%  { transform: translate(3px, 2px) rotate(1.5deg); }
    30%  { transform: translate(-2px, 1px) rotate(-1.5deg); }
    40%  { transform: translate(1px, -2px) rotate(1deg); }
    50%  { transform: translate(0, 0) rotate(0deg); }
    60%  { transform: translate(2px, 1px) rotate(1deg); }
    70%  { transform: translate(-1px, -2px) rotate(-1deg); }
    80%  { transform: translate(2px, -1px) rotate(1.5deg); }
    90%  { transform: translate(-3px, 1px) rotate(-1.5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}



.popup__content a {
    color: #ffd4a8;
    text-decoration: none;
    font-weight: 500;
    
}

.popup__content a:hover {
    text-decoration: underline;
}

/* button lol */

.buttonHero_Readmore {
  background-color: #ffffff60;
  height: 50px;
  width: 50px;
  border-radius: 50px;
  z-index: 1000;
  position: sticky;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  margin-left: auto;
  margin-right: auto;

  top: 70%;

  align-items: center;
  justify-content: center;
  display: flex;

  transition: transform 0.2s ease;
}

.buttonHero_Readmore:hover {
  animation: buzz 0.3s linear infinite;
}

@keyframes buzz {
  0%   { transform: translate(1px, 1px) rotate(0deg); }
  10%  { transform: translate(-1px, -2px) rotate(-1deg); }
  20%  { transform: translate(-3px, 0px) rotate(1deg); }
  30%  { transform: translate(3px, 2px) rotate(0deg); }
  40%  { transform: translate(1px, -1px) rotate(1deg); }
  50%  { transform: translate(-1px, 2px) rotate(-1deg); }
  60%  { transform: translate(-3px, 1px) rotate(0deg); }
  70%  { transform: translate(3px, 1px) rotate(-1deg); }
  80%  { transform: translate(-1px, -1px) rotate(1deg); }
  90%  { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}

.mainContent__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    min-height: 60vh;
    overflow: hidden; /* Prevent outer scrolling */
}

.mainContent__box {
    height: 60vh;
    width: 70vw;
    background-color: rgb(255, 195, 125);
    transition: all 2.5s ease;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Hide any overflow */
}

.mainContent__box.resized {
    height: 100vh;
    width: 100vw;
    border-radius: 0;
}

.mainContent_box_trigger {
  height: 70vh;
  width: 60vw;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth; /* Smooth scrolling */
  scrollbar-width: none; /* Hide scrollbar (Firefox) */
  -ms-overflow-style: none; /* Hide scrollbar (IE/Edge) */
}

/* Hide scrollbar (Chrome/Safari) */
.mainContent_box_trigger::-webkit-scrollbar {
  display: none;
}

/* Ensure each section snaps properly */
.container_mainContentText, .Container_ExtendBox {
  scroll-snap-align: start;
  height: 100vh; /* Full viewport height */
  width: 100%;
}

/* Rest of your existing styles... */
.Container_ExtendBox {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 90vh;
    gap: 30px; 
    padding: 20px;
}

.ExtendBox_horizontal {
    display: flex;
    background-color: black;
    height: 60%; 
    width: 30%;
    border-radius: 20px;
    transition: width 0.6s ease, transform 0.6s ease; 
    cursor: pointer;
}

.ExtendBox_horizontal:hover {
    width: 45%;
    transform: scale(1.03);
}

.mainContentText {
    font-family: "MuseoModerno", sans-serif;
    font-size: 90px;
    font-weight: 600;
    padding-top: 10vh;
    padding-bottom: 10vh;
}



.container_mainContentText, .Container_ExtendBox {
  height: 100vh; /* Each section takes full viewport height */
  width: 100%;
  scroll-snap-align: start;
}




.footer_wrapper {
    background: linear-gradient(#00000000, #285d5e84);  color: white;
  font-family: sans-serif;

}


/* scroll logos */

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

.wrapperMovingLogos {
  width: 90%;
  max-width: 1536px;
  margin-inline: auto;
  position: relative;
  height: 100px;
  margin-top: 50px;
  margin-top: 50px;

  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 1) 20%,
    rgba(0, 0, 0, 1) 80%,
    rgba(0, 0, 0, 0)
  );
}

@keyframes scrollLeft {
  to {
    left: -200px;
  }
}

.wrapperMovingLogos .item {
  width: 200px;
  height: 100px;
  background-color: rgb(255, 255, 255);
  border-radius: 6px;
  position: absolute;
  left: max(calc(200px * 8), 100%);
  animation-name: scrollLeft;
  animation-duration: 30s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.wrapperMovingLogos.item1 {
  animation-delay: calc(30s / 8 * (8 - 1) * -1);
}

.wrapperMovingLogos .item2 {
  animation-delay: calc(30s / 8 * (8 - 2) * -1);
}

.wrapperMovingLogos .item3 {
  animation-delay: calc(30s / 8 * (8 - 3) * -1);
}

.wrapperMovingLogos .item4 {
  animation-delay: calc(30s / 8 * (8 - 4) * -1);
}

.wrapperMovingLogos .item5 {
  animation-delay: calc(30s / 8 * (8 - 5) * -1);
}

.wrapperMovingLogos .item6 {
  animation-delay: calc(30s / 8 * (8 - 6) * -1);
}

.item7 {
  animation-delay: calc(30s / 8 * (8 - 7) * -1);
}

.wrapperMovingLogos .item8 {
  animation-delay: calc(30s / 8 * (8 - 8) * -1);
}


/* blogbanner */
.headlinesBlogBanner {
  width: 100%;
  background: url('https://i.postimg.cc/QMnhms2L/Screenshot-2025-06-10-at-11-04-06.png') center/cover no-repeat;
  color: white;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  max-height: 200px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  position: relative;

  padding: 30px;

  margin-bottom: 30px;
}




.headlinesBlogBanner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  z-index: 1;
  pointer-events: none;
}

.headlinesBlogBanner h1 {
  margin: 0;
  font-size: 2rem;
  z-index: 2;
  position: relative;
  color: white;
}

.headlinesBlogBanner .content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.5s ease, max-height 0.5s ease;
  margin-top: 10px;
  color: white;
  z-index: 2;
  position: relative;
}

.headlinesBlogBanner:hover {
  max-height: 500px;
  padding-bottom: 40px;
}

.headlinesBlogBanner:hover .content {
  opacity: 1;
  max-height: 200px;
}


.questionmarkBackground {

  font-size: 35px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;

  position: absolute;
  right: 0;
  top: 0; 

  z-index: 1;



  background: linear-gradient( #458175, #75d6c3, #ffb85a,#0000007e ); /* Example gradient */
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  white-space: pre-wrap;




clip-path: polygon(100% 0, 2% 91%, 89% 89%);
}



    .clean-form {
     height: 50vh;
    width: 100vh;
    display: flex;
    flex-direction: column;
    gap: 16px; 


      margin-right:auto;
       margin-left:auto; 
  }

  .clean-form input,
  .clean-form select,
  .clean-form textarea {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;

  }

  .clean-form select option {
    padding: 10px;
    
  }

  select:hover,
  input:hover,
  textarea:hover {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.8);
    transition: 0.3s ease, box-shadow 0.3s ease;
  }

  select:focus option,
  select:hover option {
    transform: scale(1.05);
    transition: transform 0.2s ease;
  }

  .clean-form button[type="submit"] {
    padding: 15px;
    font-size: 1.1rem;
    background: linear-gradient(260deg, #454545, #000000);
    font-weight: 700;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(94, 122, 114, 0.5);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
  }

  .clean-form button[type="submit"]:hover {
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
  }

.museoFont {
        font-family: "MuseoModerno", sans-serif;
        font-weight: 500;

}
.RobotoFont {
         font-family: "Roboto", sans-serif;
}
.bold {
          font-weight: 500;
}

.bold2 {
          font-weight: 400;
          font-size: 25px;
}
.light {
          font-weight: 200;
}