body{
    font-family: Arial, sans-serif; 
    margin: 0;
    padding: 5px;      
}
.logo{
    max-width: 180px;
}
section{
    margin: 25px 0;
}


.line1 {
    width: 133px;
    height: 47px;
    border-bottom: 15px solid #0a0505;
    -webkit-transform: translateY(20px) translateX(5px) rotate(-31deg);
    position: absolute;
    /* top: 10px; */
    top: -47px;
    left: -26px;
}

.line2 {
    width: 212px;
    height: 47px;
    border-bottom: 15px solid #990011;
    -webkit-transform: translateY(24px) translateX(1px) rotate(-32deg);
    position: absolute;
    top: -10px;
    left: -72px;
}



 /* Preloader full-screen overlay */
    #preloader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      transition: opacity 0.5s ease;
    }

    /* Hide preloader smoothly */
    #preloader.hidden {
      opacity: 0;
      pointer-events: none;
    }

    /* Spinner animation */
    .spinner {
      width: 50px;
      height: 50px;
      border: 6px solid #ccc;
      border-top: 6px solid #333;
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }

    @keyframes spin {
      to {
        transform: rotate(360deg);
      }
    }

    /* Main content initially hidden */
    #content {
      display: none;      
      /* padding: 1em;       */
    }
.curved {
  padding: 2em;
  position: relative;
  background: #fdfdfd;  
  border-bottom-left-radius: 50% 20%;
  border-bottom-right-radius: 50% 20%;
 border: 1px solid #ccc;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


.card-body {
    flex: 1 1 auto;
    padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
    color: var(--bs-card-color);
    background-color: #e3dede55;
}


.card-title{
    margin-bottom: 0.75rem;
    color: #990011 !important;
    font-weight: 600 !important;
    font-size: 1.25rem;

}

.card-text
{
  font-size: smaller !important;
}

.section-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}

.section-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

